diff --git a/TaikoFontAtlasTool/README.md b/TaikoFontAtlasTool/README.md
new file mode 100644
index 0000000..5a6e519
--- /dev/null
+++ b/TaikoFontAtlasTool/README.md
@@ -0,0 +1,16 @@
+# Taiko no Tatsujin - Font to Atlas Texture
+
+Usage: font_to_atlas.py [-h] ttf_path font_size image_width image_height {ascii,unicode} output_name
+
+Convert TTF font to texture and XML
+
+Positional arguments:
+ ttf_path Path to the TTF font file
+ font_size Font size
+ image_width Width of the texture image
+ image_height Height of the texture image
+ {ascii,unicode} Character range
+ output_name Output name (e.g., en_64)
+
+Should support any NU Library Taiko game which pairs a texture atlas and xml file for it's font. (NS1, PS4 and Arcade).
+Possibly may also support non-Taiko NU Library titles also.
\ No newline at end of file
diff --git a/TaikoSongConversionTool/README.md b/TaikoSongConversionTool/README.md
new file mode 100644
index 0000000..5ef0d53
--- /dev/null
+++ b/TaikoSongConversionTool/README.md
@@ -0,0 +1,26 @@
+# Taiko no Tatsujin - Song Conversion Tool
+
+Python based tool that can convert official songs over to some Taiko no Tatsujin games.
+
+Supported Titles:
+Nintendo Switch Version / Drum 'n' Fun v1.4.13 (Nintendo Switch)
+Drum Session (Any Update) (PlayStation 4)
+Pop Tap Beat (Any Update) (iOS/MacOS/Apple TV)
+
+Tool has over 2000 songs to choose from, including the ability to listen to each songs preview too.
+There's 3 options to sort songs by: ID (A-Z), Song Name (A-Z) and Genre
+
+This is still a work in-progress, so please report any issues found to me, along with suggestions for features or game support.
+
+Prerequisites:
+Python 3.12.3 or newer
+tkinter installed through pip `pip install tk`
+cryptography installed through pip `pip install cryptography`
+pydub installed through pip `pip install pydub`
+ffplay installed in `path`.
+Game Data properly converted to the format this tool expects, stored in a folder called `data`.
+
+Due to copyright reasons, etc. no song data will be provided with this tool, however template data can be found within the `data` folder, which should give an idea of what the tool requires.
+
+Currently, due to the nature of this relying on some Windows executables, this tool currently only supports Windows.
+I will be looking into getting it running on Unix-based operating systems. (Linux/macOS)
\ No newline at end of file
diff --git a/TaikoSongConversionTool/bin/AcbEditor.exe b/TaikoSongConversionTool/bin/AcbEditor.exe
new file mode 100644
index 0000000..2b71b72
Binary files /dev/null and b/TaikoSongConversionTool/bin/AcbEditor.exe differ
diff --git a/TaikoSongConversionTool/bin/SonicAudioLib.dll b/TaikoSongConversionTool/bin/SonicAudioLib.dll
new file mode 100644
index 0000000..9064202
Binary files /dev/null and b/TaikoSongConversionTool/bin/SonicAudioLib.dll differ
diff --git a/TaikoSongConversionTool/bin/VGAudio.dll b/TaikoSongConversionTool/bin/VGAudio.dll
new file mode 100644
index 0000000..815ee24
Binary files /dev/null and b/TaikoSongConversionTool/bin/VGAudio.dll differ
diff --git a/TaikoSongConversionTool/bin/VGAudioCli.exe b/TaikoSongConversionTool/bin/VGAudioCli.exe
new file mode 100644
index 0000000..91d1dfb
Binary files /dev/null and b/TaikoSongConversionTool/bin/VGAudioCli.exe differ
diff --git a/TaikoSongConversionTool/bin/at9tool.exe b/TaikoSongConversionTool/bin/at9tool.exe
new file mode 100644
index 0000000..c56eaf0
Binary files /dev/null and b/TaikoSongConversionTool/bin/at9tool.exe differ
diff --git a/TaikoSongConversionTool/bin/encode.exe b/TaikoSongConversionTool/bin/encode.exe
new file mode 100644
index 0000000..d77a33c
Binary files /dev/null and b/TaikoSongConversionTool/bin/encode.exe differ
diff --git a/TaikoSongConversionTool/config.json b/TaikoSongConversionTool/config.json
new file mode 100644
index 0000000..09a1890
--- /dev/null
+++ b/TaikoSongConversionTool/config.json
@@ -0,0 +1,3 @@
+{
+ "max_concurrent": 25
+}
diff --git a/TaikoSongConversionTool/conv.py b/TaikoSongConversionTool/conv.py
new file mode 100644
index 0000000..76b7159
--- /dev/null
+++ b/TaikoSongConversionTool/conv.py
@@ -0,0 +1,70 @@
+import argparse
+import subprocess
+import os
+import sys
+
+def convert_audio_to_nus3bank(input_audio, audio_type, game, preview_point, song_id):
+ # Determine the output filename for the nus3bank
+ output_filename = f"song_{song_id}.nus3bank"
+ converted_audio_file = f"{input_audio}.{audio_type}"
+
+ # Determine the path to the run.py script within the 'script' folder
+ templates_folder = os.path.join(os.path.dirname(__file__), 'script')
+ run_py_path = os.path.join(templates_folder, 'run.py')
+
+ # Prepare the command based on the audio type
+ if audio_type in ["bnsf", "at9", "idsp", "lopus", "wav"]:
+ # Construct the command to convert input audio to the specified type
+ conversion_command = ["python", run_py_path, audio_type, input_audio, f"{input_audio}.{audio_type}"]
+
+ # Construct the command to create the nus3bank
+ nus3_command = ["python", run_py_path, "nus3", game, f"{input_audio}.{audio_type}", str(preview_point), output_filename]
+
+ try:
+ # Execute the conversion command
+ subprocess.run(conversion_command, check=True)
+
+ # Execute the nus3 command
+ subprocess.run(nus3_command, check=True)
+
+ print(f"Conversion successful! Created {output_filename}")
+
+ # Delete the non-nus3bank file after successful conversion
+ if os.path.exists(converted_audio_file):
+ os.remove(converted_audio_file)
+ print(f"Deleted {converted_audio_file}")
+ except subprocess.CalledProcessError as e:
+ print(f"Error: {e}")
+ else:
+ print(f"Unsupported audio type: {audio_type}")
+
+def main():
+ # Create an argument parser
+ parser = argparse.ArgumentParser(description="Convert audio to nus3bank")
+
+ # Define command-line arguments
+ parser.add_argument("input_audio", type=str, nargs="?", help="Input audio file path.")
+ parser.add_argument("audio_type", type=str, nargs="?", help="Type of input audio (e.g., wav, bnsf, at9, idsp, lopus).")
+ parser.add_argument("game", type=str, nargs="?", help="Game type (e.g., nijiiro, ns1, ps4, wiiu3).")
+ parser.add_argument("preview_point", type=int, nargs="?", help="Audio preview point in ms.")
+ parser.add_argument("song_id", type=str, nargs="?", help="Song ID for the nus3bank file.")
+
+ # Parse the command-line arguments
+ args = parser.parse_args()
+
+ # If no arguments are provided, display usage information
+ if len(sys.argv) == 1:
+ parser.print_help()
+ sys.exit(0)
+
+ # Validate input audio file path
+ if not args.input_audio:
+ print("Error: Input audio file path is required.")
+ parser.print_help()
+ sys.exit(1)
+
+ # Call function to convert audio to nus3bank
+ convert_audio_to_nus3bank(args.input_audio, args.audio_type, args.game, args.preview_point, args.song_id)
+
+if __name__ == "__main__":
+ main()
diff --git a/TaikoSongConversionTool/data/_console/NX/datatable/wordlist.json b/TaikoSongConversionTool/data/_console/NX/datatable/wordlist.json
new file mode 100644
index 0000000..79e1f16
--- /dev/null
+++ b/TaikoSongConversionTool/data/_console/NX/datatable/wordlist.json
@@ -0,0 +1,58898 @@
+{"items":[
+ {
+ "key":"com_name_p1",
+ "japaneseText":"COM 1",
+ "englishUsText":"COM1",
+ "englishUsFontType":3,
+ "frenchText":"ORDI 1",
+ "frenchFontType":3,
+ "italianText":"COM1",
+ "italianFontType":3,
+ "germanText":"COM1",
+ "germanFontType":3,
+ "spanishText":"ORD1",
+ "spanishFontType":3,
+ "chineseTText":"COM 1",
+ "chineseTFontType":1,
+ "koreanText":"COM1",
+ "koreanFontType":2
+ },
+ {
+ "key":"com_name_p2",
+ "japaneseText":"COM 2",
+ "englishUsText":"COM2",
+ "englishUsFontType":3,
+ "frenchText":"ORDI 2",
+ "frenchFontType":3,
+ "italianText":"COM2",
+ "italianFontType":3,
+ "germanText":"COM2",
+ "germanFontType":3,
+ "spanishText":"ORD2",
+ "spanishFontType":3,
+ "chineseTText":"COM 2",
+ "chineseTFontType":1,
+ "koreanText":"COM2",
+ "koreanFontType":2
+ },
+ {
+ "key":"com_name_p3",
+ "japaneseText":"COM 3",
+ "englishUsText":"COM3",
+ "englishUsFontType":3,
+ "frenchText":"ORDI 3",
+ "frenchFontType":3,
+ "italianText":"COM3",
+ "italianFontType":3,
+ "germanText":"COM3",
+ "germanFontType":3,
+ "spanishText":"ORD3",
+ "spanishFontType":3,
+ "chineseTText":"COM 3",
+ "chineseTFontType":1,
+ "koreanText":"COM3",
+ "koreanFontType":2
+ },
+ {
+ "key":"com_name_p4",
+ "japaneseText":"COM 4",
+ "englishUsText":"COM4",
+ "englishUsFontType":3,
+ "frenchText":"ORDI 4",
+ "frenchFontType":3,
+ "italianText":"COM4",
+ "italianFontType":3,
+ "germanText":"COM4",
+ "germanFontType":3,
+ "spanishText":"ORD4",
+ "spanishFontType":3,
+ "chineseTText":"COM 4",
+ "chineseTFontType":1,
+ "koreanText":"COM4",
+ "koreanFontType":2
+ },
+ {
+ "key":"eula_lang_en_jp",
+ "japaneseText":"日本語",
+ "englishUsText":"Japanese",
+ "englishUsFontType":3,
+ "frenchText":"Japonais",
+ "frenchFontType":3,
+ "italianText":"Giapponese",
+ "italianFontType":3,
+ "germanText":"Japanisch",
+ "germanFontType":3,
+ "spanishText":"Japonés",
+ "spanishFontType":3,
+ "chineseTText":"日文",
+ "chineseTFontType":1,
+ "koreanText":"일본어",
+ "koreanFontType":2
+ },
+ {
+ "key":"eula_lang_ko",
+ "japaneseText":"韓国語",
+ "englishUsText":"Korean",
+ "englishUsFontType":3,
+ "frenchText":"Coréen",
+ "frenchFontType":3,
+ "italianText":"Coreano",
+ "italianFontType":3,
+ "germanText":"Koreanisch",
+ "germanFontType":3,
+ "spanishText":"Coreano",
+ "spanishFontType":3,
+ "chineseTText":"韓文",
+ "chineseTFontType":1,
+ "koreanText":"한국어",
+ "koreanFontType":2
+ },
+ {
+ "key":"eula_lang_ch",
+ "japaneseText":"中文(繁体字)",
+ "englishUsText":"Traditional Chinese",
+ "englishUsFontType":3,
+ "frenchText":"Chinois traditionnel",
+ "frenchFontType":3,
+ "italianText":"Cinese tradizionale",
+ "italianFontType":3,
+ "germanText":"Chinesisch (Traditionell)",
+ "germanFontType":3,
+ "spanishText":"Chino tradicional",
+ "spanishFontType":3,
+ "chineseTText":"中文 (繁體)",
+ "chineseTFontType":1,
+ "koreanText":"중국어(번체자)",
+ "koreanFontType":2
+ },
+ {
+ "key":"eula_lang_en_us",
+ "japaneseText":"英語",
+ "englishUsText":"English",
+ "englishUsFontType":3,
+ "frenchText":"Anglais",
+ "frenchFontType":3,
+ "italianText":"Inglese",
+ "italianFontType":3,
+ "germanText":"Englisch",
+ "germanFontType":3,
+ "spanishText":"Inglés",
+ "spanishFontType":3,
+ "chineseTText":"英文",
+ "chineseTFontType":1,
+ "koreanText":"영어",
+ "koreanFontType":2
+ },
+ {
+ "key":"eula_lang_fra",
+ "japaneseText":"フランス語",
+ "englishUsText":"French",
+ "englishUsFontType":3,
+ "frenchText":"Français",
+ "frenchFontType":3,
+ "italianText":"Francese",
+ "italianFontType":3,
+ "germanText":"Französisch",
+ "germanFontType":3,
+ "spanishText":"Francés",
+ "spanishFontType":3,
+ "chineseTText":"法文",
+ "chineseTFontType":1,
+ "koreanText":"프랑스어",
+ "koreanFontType":2
+ },
+ {
+ "key":"eula_lang_ita",
+ "japaneseText":"イタリア語",
+ "englishUsText":"Italian",
+ "englishUsFontType":3,
+ "frenchText":"Italien",
+ "frenchFontType":3,
+ "italianText":"Italiano",
+ "italianFontType":3,
+ "germanText":"Italienisch",
+ "germanFontType":3,
+ "spanishText":"Italiano",
+ "spanishFontType":3,
+ "chineseTText":"義大利文",
+ "chineseTFontType":1,
+ "koreanText":"이탈리아어",
+ "koreanFontType":2
+ },
+ {
+ "key":"eula_lang_ger",
+ "japaneseText":"ドイツ語",
+ "englishUsText":"German",
+ "englishUsFontType":3,
+ "frenchText":"Allemand",
+ "frenchFontType":3,
+ "italianText":"Tedesco",
+ "italianFontType":3,
+ "germanText":"Deutsch",
+ "germanFontType":3,
+ "spanishText":"Alemán",
+ "spanishFontType":3,
+ "chineseTText":"德文",
+ "chineseTFontType":1,
+ "koreanText":"독일어",
+ "koreanFontType":2
+ },
+ {
+ "key":"eula_lang_spa",
+ "japaneseText":"スペイン語",
+ "englishUsText":"Spanish",
+ "englishUsFontType":3,
+ "frenchText":"Espagnol",
+ "frenchFontType":3,
+ "italianText":"Spagnolo",
+ "italianFontType":3,
+ "germanText":"Spanisch",
+ "germanFontType":3,
+ "spanishText":"Español",
+ "spanishFontType":3,
+ "chineseTText":"西班牙文",
+ "chineseTFontType":1,
+ "koreanText":"스페인어",
+ "koreanFontType":2
+ },
+ {
+ "key":"eula_lang_bra",
+ "japaneseText":"ブラジルポルトガル語",
+ "englishUsText":"Brazilian\nPortuguese",
+ "englishUsFontType":3,
+ "frenchText":"Portugais\nbrésilien",
+ "frenchFontType":3,
+ "italianText":"Portoghese\nbrasiliano",
+ "italianFontType":3,
+ "germanText":"Brasilianisches\nPortugiesisch",
+ "germanFontType":3,
+ "spanishText":"Portugués\nde Brasil",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"language",
+ "japaneseText":"Language",
+ "englishUsText":"Language",
+ "englishUsFontType":3,
+ "frenchText":"Langue",
+ "frenchFontType":3,
+ "italianText":"Lingua",
+ "italianFontType":3,
+ "germanText":"Sprache",
+ "germanFontType":3,
+ "spanishText":"Idioma",
+ "spanishFontType":3,
+ "chineseTText":"語系",
+ "chineseTFontType":1,
+ "koreanText":"Language",
+ "koreanFontType":2
+ },
+ {
+ "key":"agree",
+ "japaneseText":"承諾する",
+ "englishUsText":"To accept",
+ "englishUsFontType":3,
+ "frenchText":"J’accepte",
+ "frenchFontType":3,
+ "italianText":"Accetto",
+ "italianFontType":3,
+ "germanText":"Ich stimme zu",
+ "germanFontType":3,
+ "spanishText":"Acepto",
+ "spanishFontType":3,
+ "chineseTText":"同意",
+ "chineseTFontType":1,
+ "koreanText":"동의한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"disagree",
+ "japaneseText":"承諾しない",
+ "englishUsText":"Do not accept",
+ "englishUsFontType":3,
+ "frenchText":"Je refuse",
+ "frenchFontType":3,
+ "italianText":"Rifiuto",
+ "italianFontType":3,
+ "germanText":"Ich widerspreche",
+ "germanFontType":3,
+ "spanishText":"No acepto",
+ "spanishFontType":3,
+ "chineseTText":"不同意",
+ "chineseTFontType":1,
+ "koreanText":"동의하지 않는다",
+ "koreanFontType":2
+ },
+ {
+ "key":"applet_title",
+ "japaneseText":"太鼓コントローラーを使う人は太鼓アイコンをえらんでね!",
+ "englishUsText":"Select the drum icon to use the drum controller!",
+ "englishUsFontType":3,
+ "frenchText":"Choisis les commandes que tu veux utiliser.",
+ "frenchFontType":3,
+ "italianText":"Seleziona l'icona del controller che vuoi usare!",
+ "italianFontType":3,
+ "germanText":"Wähle das Symbol für den Controller, den du benutzen willst.",
+ "germanFontType":3,
+ "spanishText":"¡Elige el icono del control que quieras utlizar!",
+ "spanishFontType":3,
+ "chineseTText":"使用太鼓控制器的人請選擇太鼓圖示喔!",
+ "chineseTFontType":1,
+ "koreanText":"북 컨트롤러를 쓸 사람은 북 아이콘을 선택해줘!",
+ "koreanFontType":2
+ },
+ {
+ "key":"applet_hosa_txt1",
+ "japaneseText":"Nintendo Switch Proコントローラーを使います",
+ "englishUsText":"Use Nintendo Switch Pro Controller",
+ "englishUsFontType":3,
+ "frenchText":"Manette Nintendo Switch Pro",
+ "frenchFontType":3,
+ "italianText":"Nintendo Switch Pro Controller",
+ "italianFontType":3,
+ "germanText":"Nintendo Switch Pro Controller",
+ "germanFontType":3,
+ "spanishText":"Mando Pro de Nintendo Switch",
+ "spanishFontType":3,
+ "chineseTText":"使用Nintendo Switch Pro控制器",
+ "chineseTFontType":1,
+ "koreanText":"Nintendo Switch Pro 컨트롤러를 사용합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"applet_hosa_txt2",
+ "japaneseText":"太鼓コントローラーを使います",
+ "englishUsText":"Use Drum Controller",
+ "englishUsFontType":3,
+ "frenchText":"Utilise le contrôleur tambour",
+ "frenchFontType":3,
+ "italianText":"Usa controller tamburo",
+ "italianFontType":3,
+ "germanText":"Trommel-Controller",
+ "germanFontType":3,
+ "spanishText":"Usar el mando tambor",
+ "spanishFontType":3,
+ "chineseTText":"使用太鼓控制器",
+ "chineseTFontType":1,
+ "koreanText":"북 컨트롤러를 사용합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"applet_dialog_msg",
+ "japaneseText":"みんなの使うコントローラーが決まったら、\n1Pは決定してね!",
+ "englishUsText":"Once controllers have been chosen, 1P can start the game!",
+ "englishUsFontType":3,
+ "frenchText":"Une fois les manettes choisies, J1 peut lancer la partie.",
+ "frenchFontType":3,
+ "italianText":"Una volta scelti i controller, G1 può avviare la partita!",
+ "italianFontType":3,
+ "germanText":"Nach Auswahl der Controller startet Spieler 1 das Spiel!",
+ "germanFontType":3,
+ "spanishText":"Una vez elegidos los mandos, el J1 puede empezar a jugar.",
+ "spanishFontType":3,
+ "chineseTText":"大家都選好控制器的話,就交由1P確定喔!",
+ "chineseTFontType":1,
+ "koreanText":"모두가 사용할 컨트롤러를 정하면\n1P는 결정을 눌러줘!",
+ "koreanFontType":2
+ },
+ {
+ "key":"applet_info01",
+ "japaneseText":"コントローラーをえらんでください",
+ "englishUsText":"1P starts the game once everyone else is ready!",
+ "englishUsFontType":3,
+ "frenchText":"Le J1 lance la partie quand tout le monde est prêt !",
+ "frenchFontType":3,
+ "italianText":"G1 inizierà la partita quando tutti sono pronti!",
+ "italianFontType":3,
+ "germanText":"Spieler 1 startet das Spiel, sobald alle bereit sind!",
+ "germanFontType":3,
+ "spanishText":"¡Cuando todos estén listos, empieza el J1!",
+ "spanishFontType":3,
+ "chineseTText":"請選擇控制器",
+ "chineseTFontType":1,
+ "koreanText":"컨트롤러를 선택해주세요",
+ "koreanFontType":2
+ },
+ {
+ "key":"controller_warning",
+ "japaneseText":"お使いのコントローラーとそうさタイプが\n合っていないかもしれません",
+ "englishUsText":"Your current controller may not match your control type.",
+ "englishUsFontType":3,
+ "frenchText":"Ton contrôleur actuel est incompatible\navec ton type de contrôleur.",
+ "frenchFontType":3,
+ "italianText":"Il controller attuale potrebbe non\nessere adeguato allo schema dei com.",
+ "italianFontType":3,
+ "germanText":"Dein aktueller Controller könnte\nnicht zum Steuerungstyp passen.",
+ "germanFontType":3,
+ "spanishText":"Tu mando no coincide con el tipo de control.",
+ "spanishFontType":3,
+ "chineseTText":"現正使用的控制器與操作類型,也許無法配合",
+ "chineseTFontType":1,
+ "koreanText":"사용 중인 컨트롤러와 조작 타입이\n맞지 않을 수도 있습니다.",
+ "koreanFontType":2
+ },
+ {
+ "key":"test_fukidashi_1",
+ "japaneseText":"はやすぎるドン!",
+ "englishUsText":"Too fast, don!",
+ "englishUsFontType":3,
+ "frenchText":"Trop rapide, don !",
+ "frenchFontType":3,
+ "italianText":"Troppo veloce, Don!",
+ "italianFontType":3,
+ "germanText":"Zu schnell, don!",
+ "germanFontType":3,
+ "spanishText":"¡Muy rápido, DON!",
+ "spanishFontType":3,
+ "chineseTText":"太快啦咚!",
+ "chineseTFontType":1,
+ "koreanText":"너무 빠르다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"test_fukidashi_2",
+ "japaneseText":"ちょっとはやいドン!",
+ "englishUsText":"A little too fast, don.",
+ "englishUsFontType":3,
+ "frenchText":"Un peu trop vite, don.",
+ "frenchFontType":3,
+ "italianText":"Un po' troppo veloce, Don.",
+ "italianFontType":3,
+ "germanText":"Ein bisschen zu schnell, don.",
+ "germanFontType":3,
+ "spanishText":"Corres mucho, DON.",
+ "spanishFontType":3,
+ "chineseTText":"有點太快了咚!",
+ "chineseTFontType":1,
+ "koreanText":"조금 빠르다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"test_fukidashi_3",
+ "japaneseText":"ぴったり~!",
+ "englishUsText":"Perfect!",
+ "englishUsFontType":3,
+ "frenchText":"Parfait !",
+ "frenchFontType":3,
+ "italianText":"Perfetto!",
+ "italianFontType":3,
+ "germanText":"Perfekt!",
+ "germanFontType":3,
+ "spanishText":"¡Perfecto!",
+ "spanishFontType":3,
+ "chineseTText":"剛剛好~",
+ "chineseTFontType":1,
+ "koreanText":"딱 맞아~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"test_fukidashi_4",
+ "japaneseText":"ちょっとおそいドン!",
+ "englishUsText":"A little slow, don.",
+ "englishUsFontType":3,
+ "frenchText":"Un peu lent, don.",
+ "frenchFontType":3,
+ "italianText":"Un po' troppo lento, Don.",
+ "italianFontType":3,
+ "germanText":"Ein bisschen zu langsam, don.",
+ "germanFontType":3,
+ "spanishText":"Algo lento, DON.",
+ "spanishFontType":3,
+ "chineseTText":"有點太慢了咚!",
+ "chineseTFontType":1,
+ "koreanText":"조금 느리다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"test_fukidashi_5",
+ "japaneseText":"おそすぎるドン!",
+ "englishUsText":"Too slow, don!",
+ "englishUsFontType":3,
+ "frenchText":"Trop lent, don !",
+ "frenchFontType":3,
+ "italianText":"Troppo lento, Don!",
+ "italianFontType":3,
+ "germanText":"Zu langsam, don!",
+ "germanFontType":3,
+ "spanishText":"¡Muy lento, DON!",
+ "spanishFontType":3,
+ "chineseTText":"太慢啦咚!",
+ "chineseTFontType":1,
+ "koreanText":"너무 느리다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"detarame",
+ "japaneseText":"でたらめ",
+ "englishUsText":"Messy",
+ "englishUsFontType":3,
+ "frenchText":"Chaotique",
+ "frenchFontType":3,
+ "italianText":"Caotico",
+ "italianFontType":3,
+ "germanText":"Wahllos",
+ "germanFontType":3,
+ "spanishText":"Caótico",
+ "spanishFontType":3,
+ "chineseTText":"隨意",
+ "chineseTFontType":1,
+ "koreanText":"대충",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_abekobe_off",
+ "japaneseText":"音符の「ドン」「カッ」を\n入れかえるオプション",
+ "englishUsText":"Option to swap between\nDon and Ka music notes.",
+ "englishUsFontType":3,
+ "frenchText":"Une option pour inverser\nles notes de musique\nDon et Ka.",
+ "frenchFontType":3,
+ "italianText":"Scambia le note Don e Ka.",
+ "italianFontType":3,
+ "germanText":"Option zum Tausch von\nDon- und Ka-Noten.",
+ "germanFontType":3,
+ "spanishText":"Una opción para alternar\nentre las notas Don y Ka.",
+ "spanishFontType":3,
+ "chineseTText":"替換音符「咚」「咔」的選項",
+ "chineseTFontType":1,
+ "koreanText":"음표 「쿵」 「딱」을\n바꾸는 옵션",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_abekobe_on",
+ "japaneseText":"音符の「ドン」「カッ」が\n全て入れかわる",
+ "englishUsText":"Swap all Don and\nKa music notes.",
+ "englishUsFontType":3,
+ "frenchText":"Inverser toutes les notes\nde musique Don et Ka.",
+ "frenchFontType":3,
+ "italianText":"Scambia tutte\nle note Don e Ka.",
+ "italianFontType":3,
+ "germanText":"Alle Don- und\nKa-Noten tauschen.",
+ "germanFontType":3,
+ "spanishText":"Intercambia todas las\nnotas Don y Ka.",
+ "spanishFontType":3,
+ "chineseTText":"音符「咚」「咔」全部替換",
+ "chineseTFontType":1,
+ "koreanText":"음표 「쿵」 「딱」이\n전부 바뀐다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_dron_off",
+ "japaneseText":"音符の表示を消せるオプション",
+ "englishUsText":"Option to turn off\nmusic notes display.",
+ "englishUsFontType":3,
+ "frenchText":"Une option pour cacher\nles notes de musique.",
+ "frenchFontType":3,
+ "italianText":"Opzione che nasconde le note.",
+ "italianFontType":3,
+ "germanText":"Option zum Ausschalten der Notenanzeige.",
+ "germanFontType":3,
+ "spanishText":"Una opción para esconder\nlas notas musicales.",
+ "spanishFontType":3,
+ "chineseTText":"取消音符顯示的選項",
+ "chineseTFontType":1,
+ "koreanText":"음표 표시를 지우는 옵션",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_dron_on",
+ "japaneseText":"音符を表示しない",
+ "englishUsText":"Do not display\nmusic notes.",
+ "englishUsFontType":3,
+ "frenchText":"Cacher les notes\nde musique.",
+ "frenchFontType":3,
+ "italianText":"Nascondi le note.",
+ "italianFontType":3,
+ "germanText":"Noten nicht anzeigen.",
+ "germanFontType":3,
+ "spanishText":"No se muestran las notas\nmusicales.",
+ "spanishFontType":3,
+ "chineseTText":"不顯示音符",
+ "chineseTFontType":1,
+ "koreanText":"음표를 표시하지 않는다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_neiro",
+ "japaneseText":"「ドン」「カッ」を入力したときの\n音色がかわる",
+ "englishUsText":"Change Don and\nKa instrument.",
+ "englishUsFontType":3,
+ "frenchText":"Changer les instruments\npour Don et Ka.",
+ "frenchFontType":3,
+ "italianText":"Scambia gli strumenti\nDon e Ka.",
+ "italianFontType":3,
+ "germanText":"Don- und\nKa-Instrument ändern.",
+ "germanFontType":3,
+ "spanishText":"Cambia el instrumento\nde Don y Ka.",
+ "spanishFontType":3,
+ "chineseTText":"改變輸入「咚」、「咔」時的音色",
+ "chineseTFontType":1,
+ "koreanText":"「쿵」 「딱」입력 시의\n효과음이 변한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_random_detarame",
+ "japaneseText":"音符の「ドン」「カッ」を\nたくさん入れかえる",
+ "englishUsText":"Swap majority of Don\nand Ka music notes.",
+ "englishUsFontType":3,
+ "frenchText":"Inverser la majorité\ndes notes de musique\nDon et Ka.",
+ "frenchFontType":3,
+ "italianText":"Scambia la maggior parte\ndelle note Don e Ka.",
+ "italianFontType":3,
+ "germanText":"Die meisten Don-\nund Ka-Noten tauschen.",
+ "germanFontType":3,
+ "spanishText":"Intercambia la mayoría de\nlas notas Don y Ka.",
+ "spanishFontType":3,
+ "chineseTText":"音符「咚」「咔」大幅替換",
+ "chineseTFontType":1,
+ "koreanText":"음표 「쿵」 「딱」을\n많이 섞는다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_random_kimagure",
+ "japaneseText":"音符の「ドン」「カッ」を\n少し入れかえる",
+ "englishUsText":"Swap a few Don and\nKa music notes.",
+ "englishUsFontType":3,
+ "frenchText":"Échanger quelques notes\nde musique Don et Ka.",
+ "frenchFontType":3,
+ "italianText":"Scambia alcune note\nDon e Ka.",
+ "italianFontType":3,
+ "germanText":"Einige Don- und\nKa-Noten tauschen.",
+ "germanFontType":3,
+ "spanishText":"Intercambia algunas notas\nDon y Ka.",
+ "spanishFontType":3,
+ "chineseTText":"音符「咚」「咔」微幅替換",
+ "chineseTFontType":1,
+ "koreanText":"음표 「쿵」 「딱」을\n조금 섞는다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_random_off",
+ "japaneseText":"音符の「ドン」「カッ」を\nランダムに入れかえるオプション",
+ "englishUsText":"Option to randomly swap\nDon and Ka music notes.",
+ "englishUsFontType":3,
+ "frenchText":"Une option pour inverser\nles notes de musique\nDon et Ka\nde façon aléatoire.",
+ "frenchFontType":3,
+ "italianText":"Scambia casualmente\nle note Don e Ka.",
+ "italianFontType":3,
+ "germanText":"Option zum zuf. Tauschen\nvon Don- u. Ka-Noten.",
+ "germanFontType":3,
+ "spanishText":"Una opción para\nintercambiar al azar las\nnotas Don y Ka.",
+ "spanishFontType":3,
+ "chineseTText":"隨機替換音符「咚」「咔」的選項",
+ "chineseTFontType":1,
+ "koreanText":"음표 「쿵」 「딱」을\n랜덤하게 바꾸는 옵션",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_score_normal",
+ "japaneseText":"コンボをつなぐと、より多くの\nスコアが加算されていく",
+ "englishUsText":"Points are awarded\nproportionally to\ncombo achieved.",
+ "englishUsFontType":3,
+ "frenchText":"Les points sont attribués\nproportionnellement\nau combo atteint.",
+ "frenchFontType":3,
+ "italianText":"Si ottengono punti\nin base alla lunghezza\ndelle combo.",
+ "italianFontType":3,
+ "germanText":"Punkte werden proportional zur erreichten Kombo vergeben.",
+ "germanFontType":3,
+ "spanishText":"Los puntos concedidos\nson proporcionales al\ncombo obtenido.",
+ "spanishFontType":3,
+ "chineseTText":"累積連段會加算更多的成績",
+ "chineseTFontType":1,
+ "koreanText":"콤보를 이어가면 보다 많은\n스코어가 가산된다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_score_shinuchi",
+ "japaneseText":"コンボに関係なく、\nタイミングよく音符をたたくことを\n重視した配点方式",
+ "englishUsText":"A grading system that\nfocuses on accurate\nnote timing while\nignoring combos.",
+ "englishUsFontType":3,
+ "frenchText":"Plus le timing\nest précis,\nplus le score est élevé,\npeu importe le combo.",
+ "frenchFontType":3,
+ "italianText":"Sistema di valutazione\nbasato sul tempismo,\nnon sulle combo.",
+ "italianFontType":3,
+ "germanText":"Ein Bewertungssystem,\nbei dem es aufs Timing an-\nkommt. Kombos werden\nignoriert.",
+ "germanFontType":3,
+ "spanishText":"Sistema de puntuación que\nse centra más en una\ncadencia precisa\ne ignora los combos.",
+ "spanishFontType":3,
+ "chineseTText":"與連段無關,\n重視配合節奏時機敲打音符的給分方式",
+ "chineseTFontType":1,
+ "koreanText":"콤보와 상관없이\n타이밍에 맞게 음표를 치는 것을\n중시한 배점 방식",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_special",
+ "japaneseText":"演奏のとくしゅな設定が\nできるオプション",
+ "englishUsText":"Options to manage\nspecial settings.",
+ "englishUsFontType":3,
+ "frenchText":"Des options pour gérer\nles paramètres spéciaux.",
+ "frenchFontType":3,
+ "italianText":"Opzioni relative a\nimpostazioni speciali.",
+ "italianFontType":3,
+ "germanText":"Optionen zur Verwaltung der Spezialeinstellungen.",
+ "germanFontType":3,
+ "spanishText":"Opciones para gestionar\nlos ajustes especiales.",
+ "spanishFontType":3,
+ "chineseTText":"可針對演奏進行特殊設定的選項",
+ "chineseTFontType":1,
+ "koreanText":"특수한 연주 설정을\n할 수 있는 옵션",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_special_auto",
+ "japaneseText":"オート演奏になる",
+ "englishUsText":"Auto-Play",
+ "englishUsFontType":3,
+ "frenchText":"Partie automatique",
+ "frenchFontType":3,
+ "italianText":"Sessione automatica",
+ "italianFontType":3,
+ "germanText":"Automatische Wiedergabe",
+ "germanFontType":3,
+ "spanishText":"Sesión automática",
+ "spanishFontType":3,
+ "chineseTText":"將會自動演奏",
+ "chineseTFontType":1,
+ "koreanText":"오토 연주를 한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_special_perfect",
+ "japaneseText":"「不可」1回で演奏終了",
+ "englishUsText":"End song on first BAD",
+ "englishUsFontType":3,
+ "frenchText":"Fin de la chanson\nau premier MAUVAIS",
+ "frenchFontType":3,
+ "italianText":"Termina sessione\nal primo MALE",
+ "italianFontType":3,
+ "germanText":"Song bei erstem ÜBEL beenden",
+ "germanFontType":3,
+ "spanishText":"Termina la canción al\nprimer MAL.",
+ "spanishFontType":3,
+ "chineseTText":"1次「不可」即結束演奏",
+ "chineseTFontType":1,
+ "koreanText":"「에구」가 1번 나오면\n연주 종료",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_special_training",
+ "japaneseText":"「不可」1回で演奏やり直し",
+ "englishUsText":"Restart song on first BAD",
+ "englishUsFontType":3,
+ "frenchText":"Redémarrage de la chanson\nau premier MAUVAIS",
+ "frenchFontType":3,
+ "italianText":"Ricomincia sessione\nal primo MALE",
+ "italianFontType":3,
+ "germanText":"Song bei erstem ÜBEL neu starten",
+ "germanFontType":3,
+ "spanishText":"Reinicia la canción al\nprimer MAL.",
+ "spanishFontType":3,
+ "chineseTText":"1次「不可」即從頭演奏",
+ "chineseTFontType":1,
+ "koreanText":"「에구」가 1번 나오면\n연주 다시 하기",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_speed_off",
+ "japaneseText":"音符の流れる速さを\nへんこうできるオプション",
+ "englishUsText":"Option to change\nmusic note speed.",
+ "englishUsFontType":3,
+ "frenchText":"Une option pour\nchanger la vitesse\ndes notes de musique.",
+ "frenchFontType":3,
+ "italianText":"Regola la velocità di\napparizione delle note.",
+ "italianFontType":3,
+ "germanText":"Option zum Ändern des Notentempos.",
+ "germanFontType":3,
+ "spanishText":"Opción para cambiar la\nvelocidad de las notas.",
+ "spanishFontType":3,
+ "chineseTText":"可變更音符流動速度的選項",
+ "chineseTFontType":1,
+ "koreanText":"음표가 이동하는 속도를\n변경하는 옵션",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_speed_x2",
+ "japaneseText":"音符速さ:2倍",
+ "englishUsText":"Music Note Speed: 2x",
+ "englishUsFontType":3,
+ "frenchText":"Vitesse des notes\nde musique : x2",
+ "frenchFontType":3,
+ "italianText":"Velocità note: x2",
+ "italianFontType":3,
+ "germanText":"Notentempo: x2",
+ "germanFontType":3,
+ "spanishText":"Velocidad notas: x2",
+ "spanishFontType":3,
+ "chineseTText":"音符速度:2倍",
+ "chineseTFontType":1,
+ "koreanText":"음표 속도 : 2배",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_speed_x3",
+ "japaneseText":"音符速さ:3倍",
+ "englishUsText":"Music Note Speed: 3x",
+ "englishUsFontType":3,
+ "frenchText":"Vitesse des notes\nde musique : x3",
+ "frenchFontType":3,
+ "italianText":"Velocità note: x3",
+ "italianFontType":3,
+ "germanText":"Notentempo: x3",
+ "germanFontType":3,
+ "spanishText":"Velocidad notas: x3",
+ "spanishFontType":3,
+ "chineseTText":"音符速度:3倍",
+ "chineseTFontType":1,
+ "koreanText":"음표 속도 : 3배",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_speed_x4",
+ "japaneseText":"音符速さ:4倍",
+ "englishUsText":"Music Note Speed: 4x",
+ "englishUsFontType":3,
+ "frenchText":"Vitesse des notes\nde musique : x4",
+ "frenchFontType":3,
+ "italianText":"Velocità note: x4",
+ "italianFontType":3,
+ "germanText":"Notentempo: x4",
+ "germanFontType":3,
+ "spanishText":"Velocidad notas: x4",
+ "spanishFontType":3,
+ "chineseTText":"音符速度:4倍",
+ "chineseTFontType":1,
+ "koreanText":"음표 속도 : 4배",
+ "koreanFontType":2
+ },
+ {
+ "key":"kimagure",
+ "japaneseText":"きまぐれ",
+ "englishUsText":"Whimsical",
+ "englishUsFontType":3,
+ "frenchText":"Capricieux",
+ "frenchFontType":3,
+ "italianText":"Capriccioso",
+ "italianFontType":3,
+ "germanText":"Unberechenbar",
+ "germanFontType":3,
+ "spanishText":"Caprichoso",
+ "spanishFontType":3,
+ "chineseTText":"隨興",
+ "chineseTFontType":1,
+ "koreanText":"변덕",
+ "koreanFontType":2
+ },
+ {
+ "key":"off",
+ "japaneseText":"オフ",
+ "englishUsText":"Off",
+ "englishUsFontType":3,
+ "frenchText":"Désactivé",
+ "frenchFontType":3,
+ "italianText":"No",
+ "italianFontType":3,
+ "germanText":"Aus",
+ "germanFontType":3,
+ "spanishText":"No",
+ "spanishFontType":3,
+ "chineseTText":"OFF",
+ "chineseTFontType":1,
+ "koreanText":"오프",
+ "koreanFontType":2
+ },
+ {
+ "key":"on",
+ "japaneseText":"オン",
+ "englishUsText":"On",
+ "englishUsFontType":3,
+ "frenchText":"Activé",
+ "frenchFontType":3,
+ "italianText":"Sì",
+ "italianFontType":3,
+ "germanText":"An",
+ "germanFontType":3,
+ "spanishText":"Sí",
+ "spanishFontType":3,
+ "chineseTText":"ON",
+ "chineseTFontType":1,
+ "koreanText":"온",
+ "koreanFontType":2
+ },
+ {
+ "key":"option_abekobe",
+ "japaneseText":"あべこべ",
+ "englishUsText":"Inverse",
+ "englishUsFontType":3,
+ "frenchText":"Inversion",
+ "frenchFontType":3,
+ "italianText":"Invertito",
+ "italianFontType":3,
+ "germanText":"Entgegengesetzt",
+ "germanFontType":3,
+ "spanishText":"Opuesto",
+ "spanishFontType":3,
+ "chineseTText":"顛倒",
+ "chineseTFontType":1,
+ "koreanText":"역전",
+ "koreanFontType":2
+ },
+ {
+ "key":"option_auto",
+ "japaneseText":"オート",
+ "englishUsText":"Auto",
+ "englishUsFontType":3,
+ "frenchText":"Auto",
+ "frenchFontType":3,
+ "italianText":"Automatico",
+ "italianFontType":3,
+ "germanText":"Automatisch",
+ "germanFontType":3,
+ "spanishText":"Automático",
+ "spanishFontType":3,
+ "chineseTText":"自動",
+ "chineseTFontType":1,
+ "koreanText":"오토",
+ "koreanFontType":2
+ },
+ {
+ "key":"option_dron",
+ "japaneseText":"ドロン",
+ "englishUsText":"Vanish",
+ "englishUsFontType":3,
+ "frenchText":"Disparition",
+ "frenchFontType":3,
+ "italianText":"Dissolvenza",
+ "italianFontType":3,
+ "germanText":"Verschwinden",
+ "germanFontType":3,
+ "spanishText":"Desvanecer",
+ "spanishFontType":3,
+ "chineseTText":"隱身",
+ "chineseTFontType":1,
+ "koreanText":"은신",
+ "koreanFontType":2
+ },
+ {
+ "key":"option_duet_using_sp",
+ "japaneseText":"※2人以上で演奏するとき「かんぺき」「とっくん」は使えません",
+ "englishUsText":"*Perfect & Spartan\nNA in Multiplayer",
+ "englishUsFontType":3,
+ "frenchText":"*Parfait/Spartiate\nindisponibles en multijoueur",
+ "frenchFontType":3,
+ "italianText":"*Perfetto e Spartano\nNo multigiocatore",
+ "italianFontType":3,
+ "germanText":"*Perfekt/Spartaner\nnicht in Mehrspieler",
+ "germanFontType":3,
+ "spanishText":"*Perfecto y Espartano\nNo disponibles en MJ.",
+ "spanishFontType":3,
+ "chineseTText":"※2人模式中,將無法使用完美、特訓功能",
+ "chineseTFontType":1,
+ "koreanText":"※2명 이상이 플레이할 때는\n「완벽」, 「특훈」을 할 수 없습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"option_perfect",
+ "japaneseText":"かんぺき",
+ "englishUsText":"Perfect",
+ "englishUsFontType":3,
+ "frenchText":"Parfait",
+ "frenchFontType":3,
+ "italianText":"Perfetto",
+ "italianFontType":3,
+ "germanText":"Perfekt",
+ "germanFontType":3,
+ "spanishText":"Perfecto",
+ "spanishFontType":3,
+ "chineseTText":"完美",
+ "chineseTFontType":1,
+ "koreanText":"완벽",
+ "koreanFontType":2
+ },
+ {
+ "key":"option_random",
+ "japaneseText":"ランダム",
+ "englishUsText":"Random",
+ "englishUsFontType":3,
+ "frenchText":"Aléatoire",
+ "frenchFontType":3,
+ "italianText":"Casuale",
+ "italianFontType":3,
+ "germanText":"Zufällig",
+ "germanFontType":3,
+ "spanishText":"Aleatorio",
+ "spanishFontType":3,
+ "chineseTText":"隨機",
+ "chineseTFontType":1,
+ "koreanText":"랜덤",
+ "koreanFontType":2
+ },
+ {
+ "key":"option_special",
+ "japaneseText":"とくしゅ",
+ "englishUsText":"Special",
+ "englishUsFontType":3,
+ "frenchText":"Spécial",
+ "frenchFontType":3,
+ "italianText":"Speciale",
+ "italianFontType":3,
+ "germanText":"Spezial",
+ "germanFontType":3,
+ "spanishText":"Especial",
+ "spanishFontType":3,
+ "chineseTText":"特殊",
+ "chineseTFontType":1,
+ "koreanText":"특수",
+ "koreanFontType":2
+ },
+ {
+ "key":"option_speed",
+ "japaneseText":"はやさ",
+ "englishUsText":"Speed",
+ "englishUsFontType":3,
+ "frenchText":"Vitesse",
+ "frenchFontType":3,
+ "italianText":"Velocità",
+ "italianFontType":3,
+ "germanText":"Tempo",
+ "germanFontType":3,
+ "spanishText":"Velocidad",
+ "spanishFontType":3,
+ "chineseTText":"速度",
+ "chineseTFontType":1,
+ "koreanText":"속도",
+ "koreanFontType":2
+ },
+ {
+ "key":"option_training",
+ "japaneseText":"とっくん",
+ "englishUsText":"Spartan",
+ "englishUsFontType":3,
+ "frenchText":"Spartiate",
+ "frenchFontType":3,
+ "italianText":"Spartano",
+ "italianFontType":3,
+ "germanText":"Spartaner",
+ "germanFontType":3,
+ "spanishText":"Espartano",
+ "spanishFontType":3,
+ "chineseTText":"特訓",
+ "chineseTFontType":1,
+ "koreanText":"특훈",
+ "koreanFontType":2
+ },
+ {
+ "key":"score_normal",
+ "japaneseText":"通常",
+ "englishUsText":"Normal",
+ "englishUsFontType":3,
+ "frenchText":"Normal",
+ "frenchFontType":3,
+ "italianText":"Normale",
+ "italianFontType":3,
+ "germanText":"Normal",
+ "germanFontType":3,
+ "spanishText":"Normal",
+ "spanishFontType":3,
+ "chineseTText":"一般",
+ "chineseTFontType":1,
+ "koreanText":"일반",
+ "koreanFontType":2
+ },
+ {
+ "key":"score_shinuchi",
+ "japaneseText":"真打",
+ "englishUsText":"Shin-Uchi",
+ "englishUsFontType":3,
+ "frenchText":"Shin-Uchi",
+ "frenchFontType":3,
+ "italianText":"Shin-Uchi",
+ "italianFontType":3,
+ "germanText":"Shin-Uchi",
+ "germanFontType":3,
+ "spanishText":"Shin-Uchi",
+ "spanishFontType":3,
+ "chineseTText":"真打",
+ "chineseTFontType":1,
+ "koreanText":"진타",
+ "koreanFontType":2
+ },
+ {
+ "key":"speed_x2",
+ "japaneseText":"ばいそく",
+ "englishUsText":"2x Speed",
+ "englishUsFontType":3,
+ "frenchText":"Vitesse x2",
+ "frenchFontType":3,
+ "italianText":"Velocità x2",
+ "italianFontType":3,
+ "germanText":"Tempo x2",
+ "germanFontType":3,
+ "spanishText":"Velocidad x2",
+ "spanishFontType":3,
+ "chineseTText":"二倍速",
+ "chineseTFontType":1,
+ "koreanText":"배속",
+ "koreanFontType":2
+ },
+ {
+ "key":"speed_x3",
+ "japaneseText":"さんばい",
+ "englishUsText":"3x Speed",
+ "englishUsFontType":3,
+ "frenchText":"Vitesse x3",
+ "frenchFontType":3,
+ "italianText":"Velocità x3",
+ "italianFontType":3,
+ "germanText":"Tempo x3",
+ "germanFontType":3,
+ "spanishText":"Velocidad x3",
+ "spanishFontType":3,
+ "chineseTText":"三倍速",
+ "chineseTFontType":1,
+ "koreanText":"세배",
+ "koreanFontType":2
+ },
+ {
+ "key":"speed_x4",
+ "japaneseText":"よんばい",
+ "englishUsText":"4x Speed",
+ "englishUsFontType":3,
+ "frenchText":"Vitesse x4",
+ "frenchFontType":3,
+ "italianText":"Velocità x4",
+ "italianFontType":3,
+ "germanText":"Tempo x4",
+ "germanFontType":3,
+ "spanishText":"Velocidad x4",
+ "spanishFontType":3,
+ "chineseTText":"四倍速",
+ "chineseTFontType":1,
+ "koreanText":"네배",
+ "koreanFontType":2
+ },
+ {
+ "key":"gameset_ttl",
+ "japaneseText":"ゲーム設定",
+ "englishUsText":"Game Settings",
+ "englishUsFontType":3,
+ "frenchText":"Paramètres de jeu",
+ "frenchFontType":3,
+ "italianText":"Impostazioni di gioco",
+ "italianFontType":3,
+ "germanText":"Spieloptionen",
+ "germanFontType":3,
+ "spanishText":"Ajustes del juego",
+ "spanishFontType":3,
+ "chineseTText":"遊戲設定",
+ "chineseTFontType":1,
+ "koreanText":"게임 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"gameset_menu_ctrl",
+ "japaneseText":"そうさタイプ設定",
+ "englishUsText":"Control Type Settings",
+ "englishUsFontType":3,
+ "frenchText":"Paramètres de type de contrôleur",
+ "frenchFontType":3,
+ "italianText":"Impostazioni schema comandi",
+ "italianFontType":3,
+ "germanText":"Steuerungstyp-Einstellungen",
+ "germanFontType":3,
+ "spanishText":"Ajustes del tipo de control",
+ "spanishFontType":3,
+ "chineseTText":"操作設定",
+ "chineseTFontType":1,
+ "koreanText":"조작 타입 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"gameset_menu_adjusttv",
+ "japaneseText":"マニュアル音符調整(TVモード)",
+ "englishUsText":"Manual Calibration (TV mode)",
+ "englishUsFontType":3,
+ "frenchText":"Calibrage manuel (mode TV)",
+ "frenchFontType":3,
+ "italianText":"Calibr. manuale (Modalità TV)",
+ "italianFontType":3,
+ "germanText":"Man. Kalibrierung (TV-Modus)",
+ "germanFontType":3,
+ "spanishText":"Calibración manual (modo TV)",
+ "spanishFontType":3,
+ "chineseTText":"手動音符調整(TV模式)",
+ "chineseTFontType":1,
+ "koreanText":"수동 음표 조정(TV 모드)",
+ "koreanFontType":2
+ },
+ {
+ "key":"gameset_menu_adjusttbl",
+ "japaneseText":"マニュアル音符調整(テーブルモード)",
+ "englishUsText":"Manual Calibration (Tabletop mode)",
+ "englishUsFontType":3,
+ "frenchText":"Calibrage manuel (mode sur table)",
+ "frenchFontType":3,
+ "italianText":"Calibr. manuale (Modalità da tavolo)",
+ "italianFontType":3,
+ "germanText":"Man. Kalibrierung (Tisch-Modus)",
+ "germanFontType":3,
+ "spanishText":"Calibración manual (modo sobremesa)",
+ "spanishFontType":3,
+ "chineseTText":"手動音符調整(桌上模式)",
+ "chineseTFontType":1,
+ "koreanText":"수동 음표 조정(테이블 모드/휴대 모드)",
+ "koreanFontType":2
+ },
+ {
+ "key":"gameset_menu_volume",
+ "japaneseText":"音量設定",
+ "englishUsText":"Volume",
+ "englishUsFontType":3,
+ "frenchText":"Volume",
+ "frenchFontType":3,
+ "italianText":"Volume",
+ "italianFontType":3,
+ "germanText":"Lautstärke",
+ "germanFontType":3,
+ "spanishText":"Volumen",
+ "spanishFontType":3,
+ "chineseTText":"音量設定",
+ "chineseTFontType":1,
+ "koreanText":"음량 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"gameset_menu_style",
+ "japaneseText":"「Joy-Con」でのそうさスタイル設定",
+ "englishUsText":"Joy-Con Control Settings",
+ "englishUsFontType":3,
+ "frenchText":"Paramètres de commandes Joy-Con",
+ "frenchFontType":3,
+ "italianText":"Impostazioni comandi Joy-Con",
+ "italianFontType":3,
+ "germanText":"Joy-Con Steuerungseinstellungen",
+ "germanFontType":3,
+ "spanishText":"Ajustes de control Joy-Con",
+ "spanishFontType":3,
+ "chineseTText":"使用「Joy-Con控制器」時的演奏風格設定",
+ "chineseTFontType":1,
+ "koreanText":"「Joy-Con」의 조작 스타일 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"gameset_menu_touch",
+ "japaneseText":"タッチ太鼓の表示設定",
+ "englishUsText":"Show/Hide Touch Drum",
+ "englishUsFontType":3,
+ "frenchText":"Afficher/Masquer tambour tactile",
+ "frenchFontType":3,
+ "italianText":"Mostra/nascondi tamburo touch",
+ "italianFontType":3,
+ "germanText":"Touch-Trommel anzeigen",
+ "germanFontType":3,
+ "spanishText":"Mostrar/Ocultar tambor táctil",
+ "spanishFontType":3,
+ "chineseTText":"觸控太鼓的顯示設定",
+ "chineseTFontType":1,
+ "koreanText":"터치 북 표시 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"gameset_desc_ctrl",
+ "japaneseText":"コントローラーのそうさタイプを設定します",
+ "englishUsText":"Set controller Control Type Settings.",
+ "englishUsFontType":3,
+ "frenchText":"Choisis les paramètres de type de contrôleur.",
+ "frenchFontType":3,
+ "italianText":"Imposta lo schema dei comandi del controller.",
+ "italianFontType":3,
+ "germanText":"Steuerungstyp-Einstellungen für Controller festlegen.",
+ "germanFontType":3,
+ "spanishText":"Establece los ajustes del tipo de control del mando.",
+ "spanishFontType":3,
+ "chineseTText":"設定太鼓的操作類型",
+ "chineseTFontType":1,
+ "koreanText":"컨트롤러의 조작 타입을 설정합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"gameset_desc_adjusttv",
+ "japaneseText":"音符位置と判定のタイミングを自由に調整します\n※調整値はパーティゲームにも反映されます",
+ "englishUsText":"Adjust music note position and recognition timing to your liking.\n*Calibrations also affect Party Games.",
+ "englishUsFontType":3,
+ "frenchText":"Ajuste la position et le timing des notes de musique\nà ta convenance.\n*Le calibrage affecte aussi les mini-jeux.",
+ "frenchFontType":3,
+ "italianText":"Regola come desideri la posizione delle note\ne la finestra di riconoscimento.\n*Le calibrazioni influiscono anche sulle\npartite in modalità Party.",
+ "italianFontType":3,
+ "germanText":"Noten-Positionierung und -Erkennung nach Vorliebe anpassen.\n*Kalibrierungen betreffen auch Party-Spiele.",
+ "germanFontType":3,
+ "spanishText":"Ajusta la posición de nota y la cadencia de reconocimiento a tu gusto.\n*La calibración también afecta a los juegos festivos.",
+ "spanishFontType":3,
+ "chineseTText":"自由調整音符位置與判定的時機\n※調整值也會反應於派對遊戲內",
+ "chineseTFontType":1,
+ "koreanText":"음표 위치와 판정 타이밍을 자유롭게 조정합니다\n※조정치는 파티 게임에도 반영됩니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"gameset_desc_adjusttbl",
+ "japaneseText":"音符位置と判定のタイミングを自由に調整します\n※調整値はパーティゲームにも反映されます",
+ "englishUsText":"Adjust music note position and recognition timing to your liking.\n*Calibrations also affect Party Games.",
+ "englishUsFontType":3,
+ "frenchText":"Ajuste la position et le timing des notes de musique\nà ta convenance.\n*Le calibrage affecte aussi les mini-jeux.",
+ "frenchFontType":3,
+ "italianText":"Regola come desideri la posizione delle note\ne la finestra di riconoscimento.\n*Le calibrazioni influiscono anche sulle\npartite in modalità Party.",
+ "italianFontType":3,
+ "germanText":"Noten-Positionierung und -Erkennung nach Vorliebe anpassen.\n*Kalibrierungen betreffen auch Party-Spiele.",
+ "germanFontType":3,
+ "spanishText":"Ajusta la posición de nota y la cadencia de reconocimiento a tu gusto.\n*La calibración también afecta a los juegos festivos.",
+ "spanishFontType":3,
+ "chineseTText":"自由調整音符位置與判定的時機\n※調整值也會反應於派對遊戲內",
+ "chineseTFontType":1,
+ "koreanText":"음표 위치와 판정 타이밍을 자유롭게 조정합니다\n※조정치는 파티 게임에도 반영됩니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"gameset_desc_volume",
+ "japaneseText":"BGM、効果音、ボイスの音量を調整します",
+ "englishUsText":"Adjust music, sound effect, and voice volume",
+ "englishUsFontType":3,
+ "frenchText":"Ajuste le volume de la musique,\ndes effets sonores et des voix.",
+ "frenchFontType":3,
+ "italianText":"Regola il volume di musica, effetti sonori e dialoghi.",
+ "italianFontType":3,
+ "germanText":"Musik-, Effekt- und Stimmenlautstärke anpassen.",
+ "germanFontType":3,
+ "spanishText":"Ajusta la música, los efectos de sonido y el volumen de voz.",
+ "spanishFontType":3,
+ "chineseTText":"調整背景音樂、效果音、語音音量",
+ "chineseTFontType":1,
+ "koreanText":"BGM, 효과음, 목소리의 음량을 설정합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"gameset_desc_style",
+ "japaneseText":"「Joy-Con」2本持ちのときの\nそうさスタイルの設定を行います",
+ "englishUsText":"Set control style when using the dual-controller grip.",
+ "englishUsFontType":3,
+ "frenchText":"Choisis le style de commandes à utiliser avec\nles Joy-Con quand tu n'es pas en mode portable.",
+ "frenchFontType":3,
+ "italianText":"Imposta lo stile dei comandi quando non sei in\nmodalità portatile.",
+ "italianFontType":3,
+ "germanText":"Steuerungsstil für die Joy-Con Benutzung festlegen,\nwenn du nicht im Handheld-Modus bist.",
+ "germanFontType":3,
+ "spanishText":"Establece el estilo de control cuando no usas\nel modo portátil.",
+ "spanishFontType":3,
+ "chineseTText":"進行在左右握著「Joy-Con控制器」時演奏風格的設定",
+ "chineseTFontType":1,
+ "koreanText":"「Joy-Con」 2개잡기로 플레이할 때의\n조작 스타일을 설정합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"gameset_desc_touch",
+ "japaneseText":"演奏ゲーム中にタッチする太鼓の表示設定を行います\n※タッチは携帯モードのときにできます",
+ "englishUsText":"Set whether to show or hide the touch drum\nduring Taiko Mode.\n*Touch drum is only available in Handheld mode.",
+ "englishUsFontType":3,
+ "frenchText":"Choisis si le tambour tactile doit être affiché\nou masqué en mode Taiko. *Le tambour tactile\nn'est disponible qu'en mode portable.",
+ "frenchFontType":3,
+ "italianText":"Scegli se mostrare o nascondere il tamburo touch\ndurante le sessioni in modalità Taiko.\n*Il tamburo touch è disponibile solo in modalità portatile.",
+ "italianFontType":3,
+ "germanText":"Einstellen, ob Touch-Trommel\nim Taiko-Modus angezeigt werden soll.\n*Touch-Trommel ist ausschließlich im Handheld-Modus verfügbar.",
+ "germanFontType":3,
+ "spanishText":"Establece si se muestra u oculta el tambor táctil\nen el modo Taiko.\n*El tambor táctil solo está disponible en el modo portátil.",
+ "spanishFontType":3,
+ "chineseTText":"進行在演奏遊戲中觸控太鼓的顯示設定\n※觸控演奏僅有在手提模式下才能使用",
+ "chineseTFontType":1,
+ "koreanText":"연주 모드에서 터치하는 북의 표시 설정을 실시합니다\n※터치 연주는 휴대 모드일 때만 가능합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"gameset_test_ttl",
+ "japaneseText":"演奏テスト",
+ "englishUsText":"Play Test",
+ "englishUsFontType":3,
+ "frenchText":"Test de jeu",
+ "frenchFontType":3,
+ "italianText":"Avvia prova",
+ "italianFontType":3,
+ "germanText":"Testen",
+ "germanFontType":3,
+ "spanishText":"Prueba de sonido",
+ "spanishFontType":3,
+ "chineseTText":"演奏測試",
+ "chineseTFontType":1,
+ "koreanText":"연주 테스트",
+ "koreanFontType":2
+ },
+ {
+ "key":"gameset_test_msg",
+ "japaneseText":"演奏ゲーム画面でかくにんしますか?",
+ "englishUsText":"Test in Taiko Mode?",
+ "englishUsFontType":3,
+ "frenchText":"Tester en mode Taiko ?",
+ "frenchFontType":3,
+ "italianText":"Provare in modalità Taiko?",
+ "italianFontType":3,
+ "germanText":"Im Taiko-Modus testen?",
+ "germanFontType":3,
+ "spanishText":"¿Probar en modo Taiko?",
+ "spanishFontType":3,
+ "chineseTText":"要在演奏遊戲畫面下進行確認嗎?",
+ "chineseTFontType":1,
+ "koreanText":"연주 화면에서 확인합니까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"ctrlset_ttl",
+ "japaneseText":"そうさタイプ設定",
+ "englishUsText":"Controls",
+ "englishUsFontType":3,
+ "frenchText":"Contrôleurs",
+ "frenchFontType":3,
+ "italianText":"Comandi",
+ "italianFontType":3,
+ "germanText":"Steuerung",
+ "germanFontType":3,
+ "spanishText":"Controles",
+ "spanishFontType":3,
+ "chineseTText":"操作類型設定",
+ "chineseTFontType":1,
+ "koreanText":"조작 타입 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"ctrlset_type_1",
+ "japaneseText":"タイプ1",
+ "englishUsText":"Type 1",
+ "englishUsFontType":3,
+ "frenchText":"Type 1",
+ "frenchFontType":3,
+ "italianText":"Schema 1",
+ "italianFontType":3,
+ "germanText":"Typ 1",
+ "germanFontType":3,
+ "spanishText":"Tipo 1",
+ "spanishFontType":3,
+ "chineseTText":"類型1",
+ "chineseTFontType":1,
+ "koreanText":"타입 1",
+ "koreanFontType":2
+ },
+ {
+ "key":"ctrlset_type_2",
+ "japaneseText":"タイプ2",
+ "englishUsText":"Type 2",
+ "englishUsFontType":3,
+ "frenchText":"Type 2",
+ "frenchFontType":3,
+ "italianText":"Schema 2",
+ "italianFontType":3,
+ "germanText":"Typ 2",
+ "germanFontType":3,
+ "spanishText":"Tipo 2",
+ "spanishFontType":3,
+ "chineseTText":"類型2",
+ "chineseTFontType":1,
+ "koreanText":"타입 2",
+ "koreanFontType":2
+ },
+ {
+ "key":"ctrlset_type_3",
+ "japaneseText":"タイプ3",
+ "englishUsText":"Type 3",
+ "englishUsFontType":3,
+ "frenchText":"Type 3",
+ "frenchFontType":3,
+ "italianText":"Schema 3",
+ "italianFontType":3,
+ "germanText":"Typ 3",
+ "germanFontType":3,
+ "spanishText":"Tipo 3",
+ "spanishFontType":3,
+ "chineseTText":"類型3",
+ "chineseTFontType":1,
+ "koreanText":"타입 3",
+ "koreanFontType":2
+ },
+ {
+ "key":"ctrlset_type_4",
+ "japaneseText":"タイプ4",
+ "englishUsText":"Type 4",
+ "englishUsFontType":3,
+ "frenchText":"Type 4",
+ "frenchFontType":3,
+ "italianText":"Schema 4",
+ "italianFontType":3,
+ "germanText":"Typ 4",
+ "germanFontType":3,
+ "spanishText":"Tipo 4",
+ "spanishFontType":3,
+ "chineseTText":"類型4",
+ "chineseTFontType":1,
+ "koreanText":"타입 4",
+ "koreanFontType":2
+ },
+ {
+ "key":"ctrlset_type4_desc",
+ "japaneseText":"「太鼓コントローラー判定調整」の値が有効になります",
+ "englishUsText":"Uses drum controller calibrations",
+ "englishUsFontType":3,
+ "frenchText":"Utilise le calibrage du contrôleur tambour",
+ "frenchFontType":3,
+ "italianText":"Usa le calibrazioni del controller tamburo",
+ "italianFontType":3,
+ "germanText":"Verwendet Trommel-Controller-Kalibrierung",
+ "germanFontType":3,
+ "spanishText":"Usa calibraciones de mando tambor.",
+ "spanishFontType":3,
+ "chineseTText":"讓「太鼓控制器判定調整」的值生效",
+ "chineseTFontType":1,
+ "koreanText":"「북 컨트롤러의 판정 조정」 수치가 유효해집니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"ctrlset_vib_ttl",
+ "japaneseText":"HD振動",
+ "englishUsText":"HD Rumble",
+ "englishUsFontType":3,
+ "frenchText":"Vibrations HD",
+ "frenchFontType":3,
+ "italianText":"Vibrazione",
+ "italianFontType":3,
+ "germanText":"HD-Vibration",
+ "germanFontType":3,
+ "spanishText":"Vibración HD",
+ "spanishFontType":3,
+ "chineseTText":"HD震動",
+ "chineseTFontType":1,
+ "koreanText":"HD 진동",
+ "koreanFontType":2
+ },
+ {
+ "key":"ctrlset_vib_on",
+ "japaneseText":"ON",
+ "englishUsText":"ON",
+ "englishUsFontType":3,
+ "frenchText":"OUI",
+ "frenchFontType":3,
+ "italianText":"SÌ",
+ "italianFontType":3,
+ "germanText":"AN",
+ "germanFontType":3,
+ "spanishText":"SÍ",
+ "spanishFontType":3,
+ "chineseTText":"ON",
+ "chineseTFontType":1,
+ "koreanText":"ON",
+ "koreanFontType":2
+ },
+ {
+ "key":"ctrlset_vib_off",
+ "japaneseText":"OFF",
+ "englishUsText":"OFF",
+ "englishUsFontType":3,
+ "frenchText":"NON",
+ "frenchFontType":3,
+ "italianText":"NO",
+ "italianFontType":3,
+ "germanText":"AUS",
+ "germanFontType":3,
+ "spanishText":"NO",
+ "spanishFontType":3,
+ "chineseTText":"OFF",
+ "chineseTFontType":1,
+ "koreanText":"OFF",
+ "koreanFontType":2
+ },
+ {
+ "key":"ctrlset_vib_guide",
+ "japaneseText":"HD振動 ON/OFF",
+ "englishUsText":"Toggle HD Rumble.",
+ "englishUsFontType":3,
+ "frenchText":"Activer/Désactiver vibrations HD",
+ "frenchFontType":3,
+ "italianText":"Rumble HD SÌ/NO",
+ "italianFontType":3,
+ "germanText":"HD-Vibration an/aus",
+ "germanFontType":3,
+ "spanishText":"Vibración HD sí/no",
+ "spanishFontType":3,
+ "chineseTText":"HD震動 ON/OFF",
+ "chineseTFontType":1,
+ "koreanText":"HD 진동 ON/OFF",
+ "koreanFontType":2
+ },
+ {
+ "key":"noteadj_ttl_tv",
+ "japaneseText":"マニュアル音符調整(TVモード)",
+ "englishUsText":"Manual Calibration (TV mode)",
+ "englishUsFontType":3,
+ "frenchText":"Calibrage manuel (mode TV)",
+ "frenchFontType":3,
+ "italianText":"Calibrazione manuale (modalità TV)",
+ "italianFontType":3,
+ "germanText":"Man. Kalibrierung (TV-Modus)",
+ "germanFontType":3,
+ "spanishText":"Calibración manual (modo TV)",
+ "spanishFontType":3,
+ "chineseTText":"手動音符調整(TV模式)",
+ "chineseTFontType":1,
+ "koreanText":"수동 음표 조정(TV 모드)",
+ "koreanFontType":2
+ },
+ {
+ "key":"noteadj_ttl_tbl",
+ "japaneseText":"マニュアル音符調整(テーブルモード)",
+ "englishUsText":"Manual Calibration (Tabletop mode)",
+ "englishUsFontType":3,
+ "frenchText":"Calibrage manuel (mode sur table)",
+ "frenchFontType":3,
+ "italianText":"Calibrazione manuale (modalità da tavolo)",
+ "italianFontType":3,
+ "germanText":"Man. Kalibrierung (Tisch-Modus)",
+ "germanFontType":3,
+ "spanishText":"Calibración manual (modo sobremesa)",
+ "spanishFontType":3,
+ "chineseTText":"手動音符調整(桌上模式)",
+ "chineseTFontType":1,
+ "koreanText":"수동 음표 조정(테이블 모드/휴대 모드)",
+ "koreanFontType":2
+ },
+ {
+ "key":"noteadj_disp_ttl",
+ "japaneseText":"音符位置調整",
+ "englishUsText":"Adjust Music Note Positions",
+ "englishUsFontType":3,
+ "frenchText":"Ajuster la position des notes",
+ "frenchFontType":3,
+ "italianText":"Regola posizione nota",
+ "italianFontType":3,
+ "germanText":"Notenpositionierung anpassen",
+ "germanFontType":3,
+ "spanishText":"Ajustar posiciones de notas",
+ "spanishFontType":3,
+ "chineseTText":"音符位置調整",
+ "chineseTFontType":1,
+ "koreanText":"음표 위치 조정",
+ "koreanFontType":2
+ },
+ {
+ "key":"noteadj_hit_ttl",
+ "japaneseText":"音符判定調整",
+ "englishUsText":"Adjust Music Note Recognition",
+ "englishUsFontType":3,
+ "frenchText":"Ajuster la reconnaissance\ndes notes",
+ "frenchFontType":3,
+ "italianText":"Regola riconoscimento nota",
+ "italianFontType":3,
+ "germanText":"Notenerkennung anpassen",
+ "germanFontType":3,
+ "spanishText":"Ajustar reconocimiento de notas",
+ "spanishFontType":3,
+ "chineseTText":"音符判定調整",
+ "chineseTFontType":1,
+ "koreanText":"음표 판정 조정",
+ "koreanFontType":2
+ },
+ {
+ "key":"noteadj_taiko_ttl",
+ "japaneseText":"太鼓コントローラー判定調整",
+ "englishUsText":"Drum Controller Calibration",
+ "englishUsFontType":3,
+ "frenchText":"Calibrage du contrôleur tambour",
+ "frenchFontType":3,
+ "italianText":"Calibrazione controller tamburo",
+ "italianFontType":3,
+ "germanText":"Trommel-Controller-Kalibrierung",
+ "germanFontType":3,
+ "spanishText":"Calibración del mando tambor",
+ "spanishFontType":3,
+ "chineseTText":"太鼓控制器判定調整",
+ "chineseTFontType":1,
+ "koreanText":"북 컨트롤러 판정 조정",
+ "koreanFontType":2
+ },
+ {
+ "key":"noteadj_hd_ttl",
+ "japaneseText":"HD振動を使って太鼓コントローラーの判定を調整する",
+ "englishUsText":"Adjust HD Rumble Recognition",
+ "englishUsFontType":3,
+ "frenchText":"Ajuster la reconnais. des vibrations HD",
+ "frenchFontType":3,
+ "italianText":"Regola riconoscimento Rumble HD",
+ "italianFontType":3,
+ "germanText":"Erkennung der HD-Vibration anpassen",
+ "germanFontType":3,
+ "spanishText":"Ajustar recon. vibración HD",
+ "spanishFontType":3,
+ "chineseTText":"調整使用HD震動時太鼓控制器的判定",
+ "chineseTFontType":1,
+ "koreanText":"HD 진동을 이용해 북 컨트롤러의 판정을 조정한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"noteadj_hd_desc",
+ "japaneseText":"HD振動を使った太鼓コントローラーの判定調整は\nマニュアル音符調整(TVモード)で利用できます",
+ "englishUsText":"Recognition adjustments for drum controllers that use \nHD Rumble can be made in Manual Calibration (TV mode)",
+ "englishUsFontType":3,
+ "frenchText":"Des ajustements peuvent être faits dans le menu Calibrage manuel (mode TV)\npour les contrôleurs tambour qui utilisent des vibrations HD",
+ "frenchFontType":3,
+ "italianText":"Le regolazioni di riconoscimento dei controller tamburo che sfruttano\nil Rumble HD possono essere fatte in Calibrazione manuale (modalità TV).",
+ "italianFontType":3,
+ "germanText":"Die Erkennung für Trommel-Controller mit HD-Vibration kann\nüber \"Man. Kalibrierung (TV-Modus)\" vorgenommen werden.",
+ "germanFontType":3,
+ "spanishText":"El reconocimiento de los mandos tambor \nque usan vibración HD se puede ajustar en Calibración manual (modo TV).",
+ "spanishFontType":3,
+ "chineseTText":"能夠在手動音符調整(TV模式)下進行使用HD震動的太鼓控制器的判定調整",
+ "chineseTFontType":1,
+ "koreanText":"HD 진동을 이용한 북 컨트롤러의 판정 조정은\n수동 음표 조정(TV 모드)에서 이용할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"noteadj_disp_help",
+ "japaneseText":"音符の表示位置を調整します\n+の数値が大きいほど音符の表示位置が右側に動きます\n-の数値が大きいほど音符の表示位置が左側に動きます",
+ "englishUsText":"Adjusts where music notes appear on the screen.\n+ values move notes to the right,\nand - values move notes to the left.",
+ "englishUsFontType":3,
+ "frenchText":"Ajuste l'endroit où les notes de musique apparaissent\nà l'écran. Les valeurs + déplacent les notes\nà droite, les valeurs - à gauche.",
+ "frenchFontType":3,
+ "italianText":"Regola la posizione delle note sullo schermo.\n+ indica uno spostamento della nota a destra,\n- indica uno spostamento a sinistra.",
+ "italianFontType":3,
+ "germanText":"Passe an, wo die Noten auf dem Bildschirm erscheinen.\nPositive Werte verschieben die Noten nach rechts,\nnegative nach links.",
+ "germanFontType":3,
+ "spanishText":"Ajusta dónde aparecen las notas.\nLos valores + mueven las notas hacia la derecha;\nlos valores -, hacia la izquierda.",
+ "spanishFontType":3,
+ "chineseTText":"配合螢幕的顯示延遲調整音符的判定時機\n+的數值越大就會讓音符判定位置的時機變快\n-的數值越大就會讓音符判定位置的時機變慢",
+ "chineseTFontType":1,
+ "koreanText":"음표가 표시되는 위치를 조정합니다\n+수치가 클수록 음표 표시 위치가 우측으로\n-수치가 클수록 음표 표시 위치가 좌측으로",
+ "koreanFontType":2
+ },
+ {
+ "key":"noteadj_hit_help",
+ "japaneseText":"音符の判定位置を調整します\n+の数値が大きいほど音符の判定位置のタイミングを早くします\n-の数値が大きいほど音符の判定位置のタイミングを遅くします",
+ "englishUsText":"Adjusts music note recognition timing to match display lag.\n+ values moves the note recognition timing to the right of the frame,\nand - values move it to the left of the frame.",
+ "englishUsFontType":3,
+ "frenchText":"Ajuste le timing de reconnaissance des notes de musique pour\ncompenser le lag d'affichage. Les valeurs + déplacent le timing\nde reconnaissance à droite du cadre, les valeurs - à gauche.",
+ "frenchFontType":3,
+ "italianText":"Regola la finestra di riconoscimento delle note per compensare\nil ritardo video. + indica uno spostamento verso destra,\n - indica uno spostamento verso sinistra.",
+ "italianFontType":3,
+ "germanText":"Passe das Timing der Notenerkennung an die Anzeigeverzögerung\nan. Positive Werte verschieben das Erkennungs-Timing nach\nrechts, negative nach links.",
+ "germanFontType":3,
+ "spanishText":"Ajusta el reconocimiento de notas para ajustarlo a la cadencia.\nLos valores + lo mueven hacia la derecha del marco\ny los valores - lo mueven hacia la izquierda.",
+ "spanishFontType":3,
+ "chineseTText":"配合螢幕的顯示延遲調整太鼓控制器的音符判定時機\n-的數值越大就會讓音符的判定位置朝框框的右側移動",
+ "chineseTFontType":1,
+ "koreanText":"음표의 판정 위치를 조정합니다\n+수치가 클수록 음표의 판정 위치의 타이밍이 빠릅니다\n-수치가 클수록 음표의 판정 위치의 타이밍이 느립니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"noteadj_taiko_help",
+ "japaneseText":"モニターの表示遅延に合わせて太鼓コントローラーの\n音符の判定タイミングを調整します\n-の数値が大きいほど音符をたたくタイミングがワクの右側に動きます",
+ "englishUsText":"Adjusts the drum controller’s music note recognition timing to match display lag.\n- values move the timing for hitting music notes to the right of the frame.",
+ "englishUsFontType":3,
+ "frenchText":"Ajuste le timing de reconnaissance des notes de musique du\ncontrôleur tambour pour compenser le lag d'affichage. Les\nvaleurs - déplacent le timing pour frapper les notes à droite.",
+ "frenchFontType":3,
+ "italianText":"Regola la finestra di riconoscimento delle note con\ni controller tamburo. - indica uno spostamento a destra.",
+ "italianFontType":3,
+ "germanText":"Passe das Timing der Notenerkennung des Trommel-Controllers an\ndie Anzeigeverzögerung an. Negative Werte verschieben das\nErkennungs-Timing nach rechts.",
+ "germanFontType":3,
+ "spanishText":"Ajusta el reconocimiento de notas del mando tambor para\najustarlo a la cadencia. Los valores + lo mueven a la derecha\ndel marco y los valores - lo mueven hacia la izquierda.",
+ "spanishFontType":3,
+ "chineseTText":"配合螢幕的顯示延遲調整太鼓控制器的音符判定時機\n+的數值越大就會讓音符的判定位置朝框框的右側移動\n-的數值越大就會讓音符的判定位置朝框框的左側移動",
+ "chineseTFontType":1,
+ "koreanText":"모니터의 표시 지연에 맞춰 북 컨트롤러의 음표 판정 타이밍을 조정합니다\n-수치가 클수록 음표를 치는 타이밍이 테두리의 우측으로",
+ "koreanFontType":2
+ },
+ {
+ "key":"noteadj_help_sub",
+ "japaneseText":"こちらの設定は「そうさタイプ設定」の「タイプ4」のみ有効になります",
+ "englishUsText":"Drum controller calibrations only take effect when the control type is set to Type 4.",
+ "englishUsFontType":3,
+ "frenchText":"Le calibrage du contrôleur tambour n'est effectif que si le type de contrôleur est sur type 4.",
+ "frenchFontType":3,
+ "italianText":"La calibrazione del controller tamburo viene applicata solo con lo Schema comandi 4.",
+ "italianFontType":3,
+ "germanText":"Die Kalibrierung des Controllers ist nur wirksam, wenn Steuerungstyp 4 gewählt wird.",
+ "germanFontType":3,
+ "spanishText":"La calibración del mando tambor solo es efectiva si el control está configurado en tipo 4.",
+ "spanishFontType":3,
+ "chineseTText":"這裡的調整值僅會在「操作類型設定」的「類型4」下發生作用",
+ "chineseTFontType":1,
+ "koreanText":"이 설정은 「조작 타입 설정」의 「타입 4」에서만 유효합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"noteadj_disp_min",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"noteadj_disp_max",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"noteadj_disp_cur",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"noteadj_hit_min",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"noteadj_hit_max",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"noteadj_hit_cur",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"noteadj_taiko_min",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"noteadj_taiko_max",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"noteadj_taiko_cur",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"hdvib_desc_ttl",
+ "japaneseText":"テレビの音と音符のタイミングのズレをHD振動で調整します",
+ "englishUsText":"Use HD Rumble to calibrate sound and notes for your TV.",
+ "englishUsFontType":3,
+ "frenchText":"Utiliser les vibrations HD pour calibrer le son et les notes.",
+ "frenchFontType":3,
+ "italianText":"Calibra suono e note sul tuo schermo con Rumble HD.",
+ "italianFontType":3,
+ "germanText":"HD-Vibration verwenden, um Klänge und Noten für deinen Fernseher zu kalibrieren.",
+ "germanFontType":3,
+ "spanishText":"Usa vibración HD para calibrar sonido y notas en tu TV.",
+ "spanishFontType":3,
+ "chineseTText":"以HD震動調整電視的聲音及音符的偏差",
+ "chineseTFontType":1,
+ "koreanText":"TV 소리와 음표 타이밍의 어긋남을 HD 진동으로 조정합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"hdvib_desc_msg1",
+ "japaneseText":"「HD振動による遅延測定」に進んで\n「Joy-Con」を2本持ちしてください\n\n\n",
+ "englishUsText":"Hold one Joy-Con\nin each hand.\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Prends un Joy-Con™\ndans chaque main.\n\n",
+ "frenchFontType":3,
+ "italianText":"Tieni un Joy-Con\nin ciascuna mano.\n\n",
+ "italianFontType":3,
+ "germanText":"Halte einen Joy-Con in jeder Hand.\n\n",
+ "germanFontType":3,
+ "spanishText":"Sujeta un Joy-Con™\nen cada mano.",
+ "spanishFontType":3,
+ "chineseTText":"為了進行「使用HD震動來測量延遲程度」\n請左右握著「Joy-Con控制器」",
+ "chineseTFontType":1,
+ "koreanText":"「HD 진동을 이용한 지연 측정」으로\n넘어가서 「Joy-Con」을 2개잡기로\n들어주세요",
+ "koreanFontType":2
+ },
+ {
+ "key":"hdvib_desc_msg2",
+ "japaneseText":"モニターの音をかくにんします\n\n\n",
+ "englishUsText":"Listen for the\nmonitor's sounds.\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Écoute les sons\nde l'écran.\n\n",
+ "frenchFontType":3,
+ "italianText":"Ascolta l'audio\ndella cassa spia.\n\n",
+ "italianFontType":3,
+ "germanText":"Höre dir die wiedergegebenen Klänge an.\n\n",
+ "germanFontType":3,
+ "spanishText":"Escucha los\nsonidos del monitor.",
+ "spanishFontType":3,
+ "chineseTText":"確認螢幕的聲音",
+ "chineseTFontType":1,
+ "koreanText":"모니터의 소리를 확인합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"hdvib_desc_msg3",
+ "japaneseText":"モニターの音と「Joy-Con(R)」の\nHD振動のタイミングが重なるように\n「Joy-Con(L)」の方向ボタンで\nゲージのツマミを動かしてください",
+ "englishUsText":"Use the left Joy-Con\ndirectional buttons to\nadjust the gauge so\nthat the sound matches\nthe right Joy-Con's\nHD Rumble timing.",
+ "englishUsFontType":3,
+ "frenchText":"Utilise les boutons directionnels\ndu Joy-Con™ gauche pour que le\nson corresponde aux vibrations HD\ndu Joy-Con™ droit.",
+ "frenchFontType":3,
+ "italianText":"Usa i pulsanti direzionali del Joy-Con\nsinistro per regolare l'indicatore in\nmodo che l'audio sia in sincrono con il\nRumble HD del Joy-Con destro.",
+ "italianFontType":3,
+ "germanText":"Benutze die Richtungsknöpfe\ndes linken Joy-Con, um die\nAnzeige so anzupassen, dass\nder Klang gleichzeitig mit\nder HD-Vibration des rechten\nJoy-Con wiedergegeben wird.",
+ "germanFontType":3,
+ "spanishText":"Ajusta con los botones de dirección\ndel Joy-Con™ izquierdo. El sonido\ndebe coincidir con la vibración HD\ndel Joy-Con™ derecho.",
+ "spanishFontType":3,
+ "chineseTText":"請以「Joy-Con(L)」的方向按鍵\n來移動量表的數值,\n讓螢幕的聲音與「Joy-Con(R)」\n產生HD震動的時機重疊",
+ "chineseTFontType":1,
+ "koreanText":"모니터 소리와 「Joy-Con(R)」의\nHD 진동의 타이밍이 겹치도록\n「Joy-Con(L)」의 방향 버튼으로\n게이지의 조정값을 움직이세요",
+ "koreanFontType":2
+ },
+ {
+ "key":"hdvib_adjust_ttl",
+ "japaneseText":"HD振動による遅延測定",
+ "englishUsText":"Measure Delay Using HD Rumble",
+ "englishUsFontType":3,
+ "frenchText":"Mesurer le timing à l'aide des vibrations HD",
+ "frenchFontType":3,
+ "italianText":"Misura il ritardo con il Rumble HD",
+ "italianFontType":3,
+ "germanText":"Verzögerung per HD-Vibration messen",
+ "germanFontType":3,
+ "spanishText":"Mide el retardo con la vibración HD.",
+ "spanishFontType":3,
+ "chineseTText":"使用HD震動來測量延遲程度",
+ "chineseTFontType":1,
+ "koreanText":"HD 진동을 이용한 지연 측정",
+ "koreanFontType":2
+ },
+ {
+ "key":"hdvib_adjust_main",
+ "japaneseText":"モニターの音と「Joy-Con(R)」のHD振動がピッタリ重なるように\n「Joy-Con(L)」の左ボタンと右ボタンでゲージの調整値を動かしてください",
+ "englishUsText":"Use the left Joy-Con directional buttons to adjust the\ngauge values so that the sound perfectly matches the\ntiming of the right Joy-Con's HD Rumble.",
+ "englishUsFontType":3,
+ "frenchText":"Utilise les boutons directionnels du Joy-Con™ gauche\npour ajuster la jauge afin que le son corresponde\nparfaitement aux vibrations HD du Joy-Con™ droit.",
+ "frenchFontType":3,
+ "italianText":"Usa i pulsanti direzionali del Joy-Con sinistro per regolare\nl'indicatore in modo che l'audio sia perfettamente in\nsincrono con il Rumble HD del Joy-Con destro.",
+ "italianFontType":3,
+ "germanText":"Benutze die Richtungsknöpfe des linken Joy-Con, um die\nAnzeigewerte so anzupassen, dass der Klang absolut gleichzeitig\nmit der HD-Vibration des rechten Joy-Con wiedergegeben wird.",
+ "germanFontType":3,
+ "spanishText":"Ajusta el indicador con los botones de dirección del\nJoy-Con™ izquierdo. El sonido debe coincidir perfectamente\ncon la cadencia de vibración HD del Joy-Con™ derecho.",
+ "spanishFontType":3,
+ "chineseTText":"請讓螢幕的聲音與「Joy-Con(R)」產生HD震動的時機確實重疊,\n以「Joy-Con(L)」的左、右鍵來移動量表的的調整值",
+ "chineseTFontType":1,
+ "koreanText":"모니터 소리와 「Joy-Con(R)」의 HD 진동의 타이밍이 딱 맞도록\n「Joy-Con(L)」의 왼쪽 버튼과 오른쪽 버튼으로\n게이지의 조정값을 움직이세요",
+ "koreanFontType":2
+ },
+ {
+ "key":"hdvib_adjust_sub",
+ "japaneseText":"こちらの設定は「そうさタイプ設定」の「タイプ4」のみ有効になります",
+ "englishUsText":"Drum controller calibrations only take effect when the control type is set to Type 4.",
+ "englishUsFontType":3,
+ "frenchText":"Le calibrage du contrôleur tambour n'est effectif que si le type de contrôleur est sur type 4.",
+ "frenchFontType":3,
+ "italianText":"La calibrazione del controller tamburo viene applicata solo con lo Schema comandi 4.",
+ "italianFontType":3,
+ "germanText":"Die Kalibrierung des T.-Controllers ist nur wirksam, wenn Steuerungstyp 4 gewählt wird.",
+ "germanFontType":3,
+ "spanishText":"La calibración del mando tambor solo es efectiva si el control está configurado en tipo 4.",
+ "spanishFontType":3,
+ "chineseTText":"這裡的調整值僅會在「操作類型設定」的「類型4」下發生作用",
+ "chineseTFontType":1,
+ "koreanText":"이 조정값은 「조작 타입 설정」의 「타입 4」에서만 유효합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"hdvib_result_fmt",
+ "japaneseText":"音符の判定調整値を%sにしました",
+ "englishUsText":"Calibrated music note recognition\nto %s.",
+ "englishUsFontType":3,
+ "frenchText":"Reconnaissance des notes de musique\ncalibrée sur %s.",
+ "frenchFontType":3,
+ "italianText":"Riconoscimento nota calibrato su\n%s.",
+ "italianFontType":3,
+ "germanText":"Notenerkennung auf %s angepasst.",
+ "germanFontType":3,
+ "spanishText":"Reconocimiento de notas calibrado\nen %s.",
+ "spanishFontType":3,
+ "chineseTText":"音符的判定調整值已變為%s",
+ "chineseTFontType":1,
+ "koreanText":"음표의 판정 조정값을 %s(으)로 했습니다 ",
+ "koreanFontType":2
+ },
+ {
+ "key":"hdvib_result",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"volset_ttl",
+ "japaneseText":"音量設定",
+ "englishUsText":"Volume",
+ "englishUsFontType":3,
+ "frenchText":"Volume",
+ "frenchFontType":3,
+ "italianText":"Volume",
+ "italianFontType":3,
+ "germanText":"Lautstärke",
+ "germanFontType":3,
+ "spanishText":"Volumen",
+ "spanishFontType":3,
+ "chineseTText":"音量設定",
+ "chineseTFontType":1,
+ "koreanText":"음량 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"volset_bgm_ttl",
+ "japaneseText":"BGM",
+ "englishUsText":"BGM",
+ "englishUsFontType":3,
+ "frenchText":"Musique",
+ "frenchFontType":3,
+ "italianText":"Musica",
+ "italianFontType":3,
+ "germanText":"Musik",
+ "germanFontType":3,
+ "spanishText":"Música",
+ "spanishFontType":3,
+ "chineseTText":"背景音樂",
+ "chineseTFontType":1,
+ "koreanText":"BGM",
+ "koreanFontType":2
+ },
+ {
+ "key":"volset_se_ttl",
+ "japaneseText":"効果音",
+ "englishUsText":"Sound Effects",
+ "englishUsFontType":3,
+ "frenchText":"Effets sonores",
+ "frenchFontType":3,
+ "italianText":"Effetti sonori",
+ "italianFontType":3,
+ "germanText":"Soundeffekte",
+ "germanFontType":3,
+ "spanishText":"Efectos",
+ "spanishFontType":3,
+ "chineseTText":"效果音",
+ "chineseTFontType":1,
+ "koreanText":"효과음",
+ "koreanFontType":2
+ },
+ {
+ "key":"volset_voice_ttl",
+ "japaneseText":"ボイス",
+ "englishUsText":"Voice",
+ "englishUsFontType":3,
+ "frenchText":"Voix",
+ "frenchFontType":3,
+ "italianText":"Dialoghi",
+ "italianFontType":3,
+ "germanText":"Stimme",
+ "germanFontType":3,
+ "spanishText":"Voz",
+ "spanishFontType":3,
+ "chineseTText":"語音",
+ "chineseTFontType":1,
+ "koreanText":"목소리",
+ "koreanFontType":2
+ },
+ {
+ "key":"styleset_ttl",
+ "japaneseText":"「Joy-Con」でのそうさスタイル設定",
+ "englishUsText":"Joy-Con Control Settings",
+ "englishUsFontType":3,
+ "frenchText":"Paramètres de commandes Joy-Con",
+ "frenchFontType":3,
+ "italianText":"Impostazioni comandi Joy-Con",
+ "italianFontType":3,
+ "germanText":"Joy-Con Steuerungseinstellungen",
+ "germanFontType":3,
+ "spanishText":"Ajustes de control Joy-Con",
+ "spanishFontType":3,
+ "chineseTText":"「Joy-Con控制器」的演奏風格設定",
+ "chineseTFontType":1,
+ "koreanText":"「Joy-Con」의 조작 스타일 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"styleset_headline",
+ "japaneseText":"「Joy-Con」2本持ちのときの\nそうさスタイルのえらびかたを設定できます",
+ "englishUsText":"Set how to select a control style\nwhen using the dual-controller grip.",
+ "englishUsFontType":3,
+ "frenchText":"Choisis quel style de commandes utiliser avec\nles Joy-Con quand tu n'es pas en mode portable.",
+ "frenchFontType":3,
+ "italianText":"Imposta come selezionare uno stile dei comandi\nquando non sei in modalità portatile.",
+ "italianFontType":3,
+ "germanText":"Einstellen, wie Steuerungsstil festgelegt wird,\nwenn du nicht im Handheld-Modus bist.",
+ "germanFontType":3,
+ "spanishText":"Establece cómo seleccionar un estilo de control\ncuando no usas el modo portátil.",
+ "spanishFontType":3,
+ "chineseTText":"可以設定左右握著「Joy-Con控制器」時的操作風格",
+ "chineseTFontType":1,
+ "koreanText":"「Joy-Con」 2개잡기로 플레이할 때의\n조작 스타일을 고르는 방식을 설정할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"styleset_opt_manual",
+ "japaneseText":"ボタンそうさ/フリフリ演奏",
+ "englishUsText":"Button Controls/Motion Controls",
+ "englishUsFontType":3,
+ "frenchText":"Commandes boutons/Commandes par mouvements",
+ "frenchFontType":3,
+ "italianText":"Pulsanti/Comandi di movimento",
+ "italianFontType":3,
+ "germanText":"Bewegungssteuerung & Knöpfe/Tasten",
+ "germanFontType":3,
+ "spanishText":"Control por botones/control por movimiento",
+ "spanishFontType":3,
+ "chineseTText":"按鍵操作/動態演奏",
+ "chineseTFontType":1,
+ "koreanText":"버튼 조작/모션 조작",
+ "koreanFontType":2
+ },
+ {
+ "key":"styleset_opt_auto_button",
+ "japaneseText":"ボタンそうさ",
+ "englishUsText":"Button Controls",
+ "englishUsFontType":3,
+ "frenchText":"Commandes boutons",
+ "frenchFontType":3,
+ "italianText":"Pulsanti",
+ "italianFontType":3,
+ "germanText":"Knopf- und Tastensteuerung",
+ "germanFontType":3,
+ "spanishText":"Control por botones",
+ "spanishFontType":3,
+ "chineseTText":"按鍵操作",
+ "chineseTFontType":1,
+ "koreanText":"버튼 조작",
+ "koreanFontType":2
+ },
+ {
+ "key":"styleset_opt_auto_motion",
+ "japaneseText":"フリフリ演奏",
+ "englishUsText":"Motion Controls",
+ "englishUsFontType":3,
+ "frenchText":"Commandes par mouvements",
+ "frenchFontType":3,
+ "italianText":"Comandi di movimento",
+ "italianFontType":3,
+ "germanText":"Bewegungssteuerung",
+ "germanFontType":3,
+ "spanishText":"Controles por movimiento",
+ "spanishFontType":3,
+ "chineseTText":"動態演奏",
+ "chineseTFontType":1,
+ "koreanText":"모션 조작",
+ "koreanFontType":2
+ },
+ {
+ "key":"styleset_desc_manual",
+ "japaneseText":"演奏ゲーム、パーティゲームをあそぶときに\nボタンでそうさするかフリフリ演奏でそうさするかをえらびます",
+ "englishUsText":"Select button controls or motion controls\nwhen playing Taiko Mode and Party Game.",
+ "englishUsFontType":3,
+ "frenchText":"Choisis les commandes boutons ou les commandes par\nmouvements quand tu joues en mode Taiko et Mini-jeu.",
+ "frenchFontType":3,
+ "italianText":"Seleziona i pulsanti o i comandi di movimento\nnelle modalità Taiko e Party.",
+ "italianFontType":3,
+ "germanText":"Knöpfe und Tasten sowie Bewegungssteuerung beim \nSpielen des Taiko-Modus und Party-Spiels festlegen.\n",
+ "germanFontType":3,
+ "spanishText":"Selecciona el control por botones o el control por movimiento\nal jugar en modo Taiko o juego festivo.",
+ "spanishFontType":3,
+ "chineseTText":"在遊玩演奏遊戲、派對遊戲時,\n可以選擇按鍵操作或動態演奏",
+ "chineseTFontType":1,
+ "koreanText":"연주 모드, 파티 모드로 플레이할 때\n버튼 조작을 할지 모션 조작을 할지 고릅니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"styleset_desc_auto_button",
+ "japaneseText":"演奏ゲーム、パーティゲームをいつもボタンでそうさします",
+ "englishUsText":"Always use buttons for Taiko Mode and Party Game.",
+ "englishUsFontType":3,
+ "frenchText":"Toujours utiliser les boutons pour le mode Taiko et Mini-jeu.",
+ "frenchFontType":3,
+ "italianText":"Usa sempre i pulsanti nelle modalità Taiko e Party.",
+ "italianFontType":3,
+ "germanText":"Immer Knöpfe/Tasten für Taiko-Modus und Party-Spiel verwenden.",
+ "germanFontType":3,
+ "spanishText":"Usa siempre botones para el modo Taiko\ny el juego festivo.",
+ "spanishFontType":3,
+ "chineseTText":"總是以按鍵操作演奏遊戲、派對遊戲",
+ "chineseTFontType":1,
+ "koreanText":"연주 모드, 파티 모드를 항상 버튼으로 조작합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"styleset_desc_auto_motion",
+ "japaneseText":"演奏ゲーム、パーティゲームをいつもフリフリ演奏でそうさします",
+ "englishUsText":"Always use motion controls for Taiko Mode and Party Game.",
+ "englishUsFontType":3,
+ "frenchText":"Toujours utiliser les commandes par mouvements\npour le mode Taiko et Mini-jeu.",
+ "frenchFontType":3,
+ "italianText":"Usa sempre i comandi di movimento nelle modalità Taiko e Party.",
+ "italianFontType":3,
+ "germanText":"Immer Bewegungssteuerung für Taiko-Modus und Party-Spiel verwenden.",
+ "germanFontType":3,
+ "spanishText":"Usa siempre control por movimiento para el modo Taiko\ny el juego festivo.",
+ "spanishFontType":3,
+ "chineseTText":"總是以動態演奏操作演奏遊戲、派對遊戲",
+ "chineseTFontType":1,
+ "koreanText":"연주 모드, 파티 모드를 항상 모션 조작으로 조작합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"touchset_ttl",
+ "japaneseText":"タッチ太鼓の表示設定",
+ "englishUsText":"Show/Hide Touch Drum",
+ "englishUsFontType":3,
+ "frenchText":"Afficher/Masquer tambour tactile",
+ "frenchFontType":3,
+ "italianText":"Mostra/nascondi tamburo touch",
+ "italianFontType":3,
+ "germanText":"Touch-Trommel anzeigen",
+ "germanFontType":3,
+ "spanishText":"Mostrar/Ocultar tambor táctil",
+ "spanishFontType":3,
+ "chineseTText":"觸控太鼓的顯示設定",
+ "chineseTFontType":1,
+ "koreanText":"터치 북 표시 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"touchset_headline",
+ "japaneseText":"携帯モードで演奏するときの\nタッチ太鼓を表示しますか?",
+ "englishUsText":"Show the touch drum when\nplaying in Handheld mode?",
+ "englishUsFontType":3,
+ "frenchText":"Montrer le tambour tactile lorsque\ntu joues en mode portable ?",
+ "frenchFontType":3,
+ "italianText":"Mostrare il tamburo touch\nnella modalità portatile?",
+ "italianFontType":3,
+ "germanText":"Die Touch-Trommel beim Spielen\nim Handheld-Modus anzeigen?",
+ "germanFontType":3,
+ "spanishText":"¿Mostrar el tambor táctil al\njugar en el modo portátil?",
+ "spanishFontType":3,
+ "chineseTText":"在手提模式下演奏時要顯示觸控太鼓嗎?",
+ "chineseTFontType":1,
+ "koreanText":"휴대 모드로 연주할 때\n터치 북을 표시합니까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"credits",
+ "japaneseText":"クレジット",
+ "englishUsText":"Credits",
+ "englishUsFontType":3,
+ "frenchText":"Crédits",
+ "frenchFontType":3,
+ "italianText":"Riconoscimenti",
+ "italianFontType":3,
+ "germanText":"Mitwirkende",
+ "germanFontType":3,
+ "spanishText":"Créditos",
+ "spanishFontType":3,
+ "chineseTText":"製作人員名單",
+ "chineseTFontType":1,
+ "koreanText":"크레딧",
+ "koreanFontType":2
+ },
+ {
+ "key":"hdvib_adjust_jcl",
+ "japaneseText":"Joy-Con(L)",
+ "englishUsText":"Joy-Con (L)",
+ "englishUsFontType":3,
+ "frenchText":"Joy-Con (L)",
+ "frenchFontType":3,
+ "italianText":"Joy-Con (L)",
+ "italianFontType":3,
+ "germanText":"Joy-Con (L)",
+ "germanFontType":3,
+ "spanishText":"Joy-Con (L)",
+ "spanishFontType":3,
+ "chineseTText":"Joy-Con(L)",
+ "chineseTFontType":1,
+ "koreanText":"Joy-Con(L)",
+ "koreanFontType":2
+ },
+ {
+ "key":"hdvib_adjust_jcr",
+ "japaneseText":"Joy-Con(R)",
+ "englishUsText":"Joy-Con (R)",
+ "englishUsFontType":3,
+ "frenchText":"Joy-Con (R)",
+ "frenchFontType":3,
+ "italianText":"Joy-Con (R)",
+ "italianFontType":3,
+ "germanText":"Joy-Con (R)",
+ "germanFontType":3,
+ "spanishText":"Joy-Con (R)",
+ "spanishFontType":3,
+ "chineseTText":"Joy-Con(R)",
+ "chineseTFontType":1,
+ "koreanText":"Joy-Con(R)",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips001",
+ "japaneseText":"大きな音符は両手で同時に入力すると高得点!\nフリフリ演奏は両方をふって、タッチそうさは画面の両側をタッチ",
+ "englishUsText":"Get more points from big notes! Buttons: Press with both hands.\nMotion: Shake with both hands. Touch: Both sides of screen.",
+ "englishUsFontType":3,
+ "frenchText":"Plus de points avec les grosses notes ! Utilise en simultané tes\n2 mains avec les Joy-Con ou touche l'écran tactile des 2 côtés.",
+ "frenchFontType":3,
+ "italianText":"Le note grandi valgono di più! Usa entrambe le mani\ncon i Joy-Con o tocca entrambi i lati dello schermo.",
+ "italianFontType":3,
+ "germanText":"Gr. Noten - mehr Punkte! Knöpfe/Tasten und Joy-Con zweihändig\nbedienen oder beide Seiten der Trommel gleichzeitig berühren.",
+ "germanFontType":3,
+ "spanishText":"Más puntos con notas grandes. Usa los Joy-Con y los botones\ncon ambas manos o toca ambos lados de la pantalla.",
+ "spanishFontType":3,
+ "chineseTText":"遇到大型音符時,雙手同時按下按鍵可以獲得高分!\n在動態演奏下為揮動兩支控制器,觸控則是觸碰畫面的兩側",
+ "chineseTFontType":1,
+ "koreanText":"큰 음표는, 양손으로 동시에 입력하면 고득점!\n모션 조작은 양쪽을 흔들고, 터치 조작은 화면 양쪽을 터치",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips002",
+ "japaneseText":"ふうせん音符はドンを速く連打!",
+ "englishUsText":"Hit Don rapidly during balloon music notes!",
+ "englishUsFontType":3,
+ "frenchText":"Martèle Don rapidement avec les notes ballon !",
+ "frenchFontType":3,
+ "italianText":"Premi ripetutamente Don per colpire le note a palloncino!",
+ "italianFontType":3,
+ "germanText":"Mach schnelle Dons bei Ballon-Noten!",
+ "germanFontType":3,
+ "spanishText":"Toca rápido con Don las notas con un globo.",
+ "spanishFontType":3,
+ "chineseTText":"遇到氣球音符時,快速連打「咚」!",
+ "chineseTFontType":1,
+ "koreanText":"풍선 음표는 쿵을 빨리 연타!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips003",
+ "japaneseText":"こづち音符はドンを速く連打!\n早く成功すると高得点!",
+ "englishUsText":"Hit Don rapidly during mallet music notes!\nThe faster you are, the more points you’ll earn!",
+ "englishUsFontType":3,
+ "frenchText":"Martèle Don rapidement avec les notes maillet !\nPlus tu es rapide, plus tu obtiendras de points !",
+ "frenchFontType":3,
+ "italianText":"Premi ripetutamente Don per colpire le note a martello.\nPiù sei veloce, più punti ottieni!",
+ "italianFontType":3,
+ "germanText":"Mach schnelle Dons bei Schlägel-Noten!\nJe schneller du bist, umso mehr Punkte erhältst du!\n",
+ "germanFontType":3,
+ "spanishText":"¡Toca rápido con Don las notas con un mazo!\n¡A mayor velocidad, más puntos ganarás!",
+ "spanishFontType":3,
+ "chineseTText":"遇到小槌音符時,快速連打「咚」!\n快速敲打完即可獲得高分!",
+ "chineseTFontType":1,
+ "koreanText":"금망치 음표는 쿵을 빨리 연타!\n빨리 성공하면 고득점!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips004",
+ "japaneseText":"音符をぴったりなタイミングで入力すると「良」になり\n「可」よりもスコアが多くもらえる!",
+ "englishUsText":"Hitting music notes at just the right time earns a GOOD,\nwhich awards more points than an OK!",
+ "englishUsFontType":3,
+ "frenchText":"Tambouriner les notes de musique au bon moment\nmarque un BON, qui octroie plus de points qu'un OK !",
+ "frenchFontType":3,
+ "italianText":"Se il tuo tempismo è perfetto, otterrai un \"BUONO\",\nche vale più punti di un \"OK\".",
+ "italianFontType":3,
+ "germanText":"Triffst du Noten genau, bekommst du ein \"Gut\", \ndas stets mehr Punkte bringt als ein \"OK\"!",
+ "germanFontType":3,
+ "spanishText":"Si tocas las notas en el momento preciso recibirás un BIEN,\nque concede más puntos que un VALE.",
+ "spanishFontType":3,
+ "chineseTText":"在合適的時機敲出「良」判定的音符時,\n將會獲得比「可」更多的成績!",
+ "chineseTFontType":1,
+ "koreanText":"음표를 정확한 타이밍에 입력하면 「얼쑤」가 되어\n「좋다」보다 스코어를 많이 받을 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips005",
+ "japaneseText":"音符をミスなく連続で演奏するとスコアにコンボボーナスが加わる!",
+ "englishUsText":"Keep drumming without missing music notes\nto get a combo bonus!",
+ "englishUsFontType":3,
+ "frenchText":"Continue à tambouriner sans rater de notes de musique\npour obtenir un bonus de combo !",
+ "frenchFontType":3,
+ "italianText":"Suona il tamburo senza sbagliare\nper ottenere punti combo!",
+ "italianFontType":3,
+ "germanText":"Trommle, ohne Noten zu verpassen,\num dir einen Kombo-Bonus zu sichern!",
+ "germanFontType":3,
+ "spanishText":"Sigue tocando sin fallar notas para\nconseguir una bonificación por combo.",
+ "spanishFontType":3,
+ "chineseTText":"零失誤連續敲打音符的話,會增加連段獎勵至成績上喔!",
+ "chineseTFontType":1,
+ "koreanText":"음표를 놓치지 않고 연속으로 연주하면,\n스코어에 콤보 보너스가 추가된다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips006",
+ "japaneseText":"「譜面分岐」の曲は、演奏中のスコアによって\n普通・玄人・達人のいずれかの譜面に変化する",
+ "englishUsText":"Songs with Diverge Notes switch between Normal, Professional,\nand Master versions depending on your score while playing.",
+ "englishUsFontType":3,
+ "frenchText":"Les chansons dotées de notes divergentes changent entre les\nversions Normal, Professionnel et Maître suivant ton score.",
+ "frenchFontType":3,
+ "italianText":"La versione usata delle canzoni con note divergenti (Normale,\nProfessionale, Maestro) dipende dal tuo punteggio.",
+ "italianFontType":3,
+ "germanText":"Songs mit Abweichungs-Noten wechseln je nach deiner \nPunktzahl zwischen Normal, Meister und Profi.",
+ "germanFontType":3,
+ "spanishText":"Las canciones con notas divergentes cambian entre Normal,\nProfesional y Maestro, en función de tu puntuación.",
+ "spanishFontType":3,
+ "chineseTText":"「譜面分歧」的樂曲,會依遊玩中的成績變化為\n普通‧進階‧達人等任一譜面",
+ "chineseTFontType":1,
+ "koreanText":"「악보 분기」 곡은, 연주 중의 스코어에 따라\n보통/현인/달인 중 하나의 악보로 변한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips007",
+ "japaneseText":"「曲のしぼりこみ」や「お気に入り」とうろくを使うと\n好きな曲が見つけやすくなる",
+ "englishUsText":"Favorite a song to check it any time.\nYou can also filter songs to change their list order.",
+ "englishUsFontType":3,
+ "frenchText":"Ajoute une chanson à tes favorites pour la voir\nquand tu veux. Tu peux également filtrer les chansons.",
+ "frenchFontType":3,
+ "italianText":"Aggiungi una canzone alle preferite per accedervi in qualsiasi\nmomento. Puoi anche ordinare le canzoni secondo diversi criteri.",
+ "italianFontType":3,
+ "germanText":"Lege einen Song als Favoriten fest, um ihn jederzeit auszuprobieren. \nDu kannst Songs auch filtern, um ihre Reihenfolge in der Liste zu ändern.",
+ "germanFontType":3,
+ "spanishText":"Marca una canción como favorita para tocarla cuando quieras.\nPuedes filtrarlas para cambiar su orden.",
+ "spanishFontType":3,
+ "chineseTText":"使用「樂曲的篩選」或登錄「中意樂曲」\n就能輕鬆找到喜歡的樂曲",
+ "chineseTFontType":1,
+ "koreanText":"「곡 분류」나 「즐겨찾기」 등록을 사용하면\n좋아하는 곡을 찾기 쉬워진다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips008",
+ "japaneseText":"「裏譜面」のある曲は「おに」にカーソルを合わせて右ボタンを入力すると出てくる",
+ "englishUsText":"Press Right button when the cursor is on\nExtreme to select a song’s secret version.",
+ "englishUsFontType":3,
+ "frenchText":"Appuie sur le bouton Droite lorsque le curseur est sur Extrême\npour sélectionner la version secrète d'une chanson.",
+ "frenchFontType":3,
+ "italianText":"Al livello Estremo, premi il pulsante Destra per \naccedere alla versione segreta della canzone.",
+ "italianFontType":3,
+ "germanText":"Drücke den Rechts-Knopf, wenn \"Extrem\" markiert ist,\num in manchen Songs die Geheimversion zu wählen.",
+ "germanFontType":3,
+ "spanishText":"Pulsa el botón derecha con el cursor sobre Extrema para\nseleccionar la versión secreta de una canción.",
+ "spanishFontType":3,
+ "chineseTText":"在有著「裏譜面」的樂曲裡,將游標移至「魔王」上按下右鍵\n就會出現裏譜面",
+ "chineseTFontType":1,
+ "koreanText":"「악보 뒷면」이 있는 곡은 「귀신」에 커서를 두고\n오른쪽 버튼을 입력하면 나온다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips009",
+ "japaneseText":"「曲をえらぶ」のサブメニューでは曲のしぼりこみができる",
+ "englishUsText":"You can filter songs from the Select Song sub-menu.",
+ "englishUsFontType":3,
+ "frenchText":"Tu peux filtrer les chansons depuis\nle sous-menu Choix de chanson.",
+ "frenchFontType":3,
+ "italianText":"È possibile filtrare le canzoni dal sottomenu Selez. canzone.",
+ "italianFontType":3,
+ "germanText":"Du kannst Songs im Untermenü \"Song wählen\" filtern.",
+ "germanFontType":3,
+ "spanishText":"Puedes filtrar canciones desde el submenú Elegir canción.",
+ "spanishFontType":3,
+ "chineseTText":"可從「選擇樂曲」的子選單設定進行樂曲的篩選",
+ "chineseTFontType":1,
+ "koreanText":"「곡 선택」의 서브 메뉴에서 곡을 분류할 수 있다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips010",
+ "japaneseText":"「むずかしさをえらぶ」のオプションでは\n音符の速さを変えたり、見えなくしたり、いろいろな楽しみかたができる",
+ "englishUsText":"You can adjust various options from Select Difficulty,\nsuch as making the song faster, hiding music notes, and more.",
+ "englishUsFontType":3,
+ "frenchText":"Tu peux ajuster différentes options depuis Choix de\nla difficulté pour accélérer la chanson, cacher les notes...",
+ "frenchFontType":3,
+ "italianText":"In Sel. difficoltà è possibile impostare varie opzioni per\nvelocizzare le canzoni, nascondere le note, ecc.",
+ "italianFontType":3,
+ "germanText":"Unter \"Schwierigkeit wählen\" kannst du verschiedene Optionen ändern\nund zum Beispiel den Song schneller wiedergeben oder Noten verbergen.",
+ "germanFontType":3,
+ "spanishText":"\"Elegir dificultad\" ofrece varias opciones, como\nacelerar la canción y ocultar las notas.",
+ "spanishFontType":3,
+ "chineseTText":"可在「選擇難度」的選項裡,設定讓音符\n速度變快或看不見等各式各樣的有趣玩法",
+ "chineseTFontType":1,
+ "koreanText":"「난이도 선택」의 옵션에서는\n음표의 속도를 바꾸거나 안 보이게 하는 등, 다양하게 즐길 수 있다.",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips011",
+ "japaneseText":"演奏のオプション「スコア - 真打」では、コンボ数に関係なくスコアを計算する\nまた、ゴーゴータイムの加点がなくスコアの上限が100万点に近づくように配点される",
+ "englishUsText":"Shin-Uchi disregards combos entirely, has no Go! Go! time\npoints, and grades upon reaching the 1 million point limit.",
+ "englishUsFontType":3,
+ "frenchText":"Shin-Uchi ignore les combos, n'a pas de points Go ! Go !\net attribue une note à partir d'un million de points.",
+ "frenchFontType":3,
+ "italianText":"Shin-Uchi non tiene conto delle combo, non prevede punti\n\"Forza!\" e valuta i giocatori a partire da 1 milione di punti.",
+ "italianFontType":3,
+ "germanText":"Shin-Uchi ignoriert Kombos, bekommt keine \"Los! Los!\"-\nZeitpunkte und wird ab 1 Million Punkte bewertet.",
+ "germanFontType":3,
+ "spanishText":"Shin-Uchi descarta los combos, no tiene puntos de tiempo\n¡Venga, vamos! y mejora al lograr 1 millón de puntos.",
+ "spanishFontType":3,
+ "chineseTText":"在演奏選項「成績 ─ 真打」中,連段數不會計算至成績內,\n另外還採用了非GOGO時間的加分制,讓成績上限僅接近100萬分的配分方式",
+ "chineseTFontType":1,
+ "koreanText":"연주 옵션 「스코어 - 진타」는, 콤보와 상관없이 스코어를 계산한다.\n또, 고고 타임의 가점 없이 스코어 상한이 100만 점에 가까워지게 배점된다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips012",
+ "japaneseText":"フリフリ演奏でLボタンかRボタンを押しながらふると\nいつでも「カッ」が入力できる",
+ "englishUsText":"When using Motion Controls, hold down the L or R buttons\nto hit a KA.",
+ "englishUsFontType":3,
+ "frenchText":"Quand tu utilises les commandes par mouvements,\nmaintiens le bouton L ou le bouton R pour frapper un KA.",
+ "frenchFontType":3,
+ "italianText":"Quando usi i comandi di movimento, tieni premuti L o R\nper colpire le note KA.",
+ "italianFontType":3,
+ "germanText":"Halte bei Verwendung der Bewegungssteuerung L oder R gedrückt, um ein KA zu treffen.",
+ "germanFontType":3,
+ "spanishText":"Al usar los controles por movimiento, mantén pulsado el\nbotón L o R para tocar un KA.",
+ "spanishFontType":3,
+ "chineseTText":"在動態演奏下,在按下L鍵或R鍵的同時,不論何時都能打出「咔」",
+ "chineseTFontType":1,
+ "koreanText":"모션 조작을 할 때, L이나 R 버튼을 누르며 흔들면\n전부 「딱」이 입력된다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips013",
+ "japaneseText":"「ゲーム設定」の「「Joy-Con」でのそうさスタイル設定」で\n「Joy-Con」2本持ちのときのそうさスタイルをお好みに合わせて決められます",
+ "englishUsText":"Use Game Settings > Joy-Con Control Settings to select\nthe dual-controller grip control style that best suits you.",
+ "englishUsFontType":3,
+ "frenchText":"Utilise Paramètres de jeu > Paramètres de commandes Joy-Con\npour choisir le type de commandes qui te convient le mieux.",
+ "frenchFontType":3,
+ "italianText":"Usa Imp. di gioco > Imp. comandi Joy-Con per selezionare\nlo stile dei comandi quando usi entrambi i controller.",
+ "italianFontType":3,
+ "germanText":"Unter Spieloptionen > Joy-Con Steuerungseinstellungen kannst du\ndeinen Lieblingsstil für die Doppel-Controller-Griffweise wählen.",
+ "germanFontType":3,
+ "spanishText":"Ve a Ajustes del juego > Ajustes de control Joy-Con\npara elegir el estilo de control al sujetar ambos mandos que quieras.",
+ "spanishFontType":3,
+ "chineseTText":"可在「遊戲設定」的『「Joy-Con控制器」下的演奏風格設定』裡,\n將左右握著Joy-Con控制器時的演奏風格設為喜好玩法",
+ "chineseTFontType":1,
+ "koreanText":"「게임 설정」의 「「Joy-Con」의 조작 스타일 설정」에서\n「Joy-Con」 2개잡기 때의 조작 스타일을 취향에 따라 고를 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips014",
+ "japaneseText":"「ヘルプ」の「フリフリ演奏をためす」から\nフリフリ演奏のそうさをれんしゅうすることができる",
+ "englishUsText":"You can try out the motion controls by going to Help and\nselecting “Try Motion Controls.”",
+ "englishUsFontType":3,
+ "frenchText":"Tu peux essayer les commandes par mouvements en allant\ndans Aide > Essayer les commandes par mouvements",
+ "frenchFontType":3,
+ "italianText":"Puoi provare i comandi di movimento con\nAiuto > Prova i comandi di movimento.",
+ "italianFontType":3,
+ "germanText":"Probiere die Bewegungssteuerung aus, indem du unter \"Hilfe\" \ndie Option \"Bewegungssteuerung testen\" aufrufst.",
+ "germanFontType":3,
+ "spanishText":"Para probar los controles por movimiento, ve a Ayuda\ny selecciona \"Probar control por movimiento\".",
+ "spanishFontType":3,
+ "chineseTText":"可在「操作說明」中的「體驗動態演奏」下,進行動態演奏的體驗",
+ "chineseTFontType":1,
+ "koreanText":"「도움말」의 「모션 조작을 해본다」에서,\n모션 조작을 연습할 수 있다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips015",
+ "japaneseText":"「ヘルプ」から、演奏ゲームのそうさ方法をかくにんすることができる",
+ "englishUsText":"You can see all the different ways to play in Help.",
+ "englishUsFontType":3,
+ "frenchText":"Tu peux voir toutes les manières de jouer dans le menu Aide.",
+ "frenchFontType":3,
+ "italianText":"In Aiuto sono descritti tutti i diversi modi di giocare.",
+ "italianFontType":3,
+ "germanText":"Unter \"Hilfe\" findest du alle verschiedenen Spielweisen.",
+ "germanFontType":3,
+ "spanishText":"En Ayuda puedes ver las distintas formas de jugar.",
+ "spanishFontType":3,
+ "chineseTText":"可在「操作說明」裡確認到各種演奏的玩法",
+ "chineseTFontType":1,
+ "koreanText":"「도움말」에서, 연주 모드의 조작 방법을 확인할 수 있다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips016",
+ "japaneseText":"他の「Nintendo Switch」本体とゲームソフトを持っている人と\n演奏ゲームをプレイしたいときは「ローカル通信演奏」をえらぼう",
+ "englishUsText":"Choose “Local Wireless Session” to play together\nwith other Nintendo Switch owners.",
+ "englishUsFontType":3,
+ "frenchText":"Choisis \"Session locale sans fil\" pour jouer\navec d'autres possesseurs de Nintendo Switch.",
+ "frenchFontType":3,
+ "italianText":"Seleziona \"Sessione wireless locale\" per giocare insieme\nad altri possessori di Nintendo Switch.",
+ "italianFontType":3,
+ "germanText":"Wähle \"Lokale Drahtlos-Session\", um mit anderen Benutzern\neiner Nintendo Switch-Konsole zu spielen.",
+ "germanFontType":3,
+ "spanishText":"Selecciona \"Sesión inalámbrica local\" para jugar\ncon otros propietarios de Nintendo Switch.",
+ "spanishFontType":3,
+ "chineseTText":"想跟其他持有「Nintendo Switch」主機與遊戲軟體的人同樂時,\n請選擇「鄰近主機通訊演奏」",
+ "chineseTFontType":1,
+ "koreanText":"다른 「Nintendo Switch」 본체 및 게임 소프트를 가진 사람과\n연주 모드를 플레이하고 싶을 때는 「로컬 통신 연주」를 선택하자",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips017",
+ "japaneseText":"「ローカル通信演奏」で人を集めたいときは「部屋をつくる」で部屋をつくって人を待とう\n人のつくった部屋に入りたいときは「部屋をさがす」をえらぼう",
+ "englishUsText":"When playing a Local Wireless Session, use Make a Room to\nhave nearby players join you, and Find a Room to join others.",
+ "englishUsFontType":3,
+ "frenchText":"Dans Session locale sans fil, utilise Créer un salon pour\nêtre rejoint ou Trouver un salon pour rejoindre des joueurs.",
+ "frenchFontType":3,
+ "italianText":"Quando giochi in una sessione wireless locale, seleziona Crea una stanza\nper far unire altri giocatori vicini o Cerca una stanza per unirti a loro.",
+ "italianFontType":3,
+ "germanText":"Benutze beim Spielen einer lokalen Drahtlos-Session die Option \"Einen Raum erstellen\", damit Spieler \nin der Nähe sich dir anschließen können, oder \"Einen Raum finden\", um dich anderen anzuschließen.",
+ "germanFontType":3,
+ "spanishText":"En una sesión inalámbrica local, elige \"Crear una sala\"\npara que se unan otros o \"Buscar una sala\" para unirte tú.",
+ "spanishFontType":3,
+ "chineseTText":"在遊玩「鄰近主機通訊演奏」,想要招募同伴時能以「建立房間」來招募他人,\n而想加入他人所建立的房間時則選擇「搜尋房間」",
+ "chineseTFontType":1,
+ "koreanText":"「로컬 통신 연주」에서 사람을 모으려면 「방을 만든다」를 선택하고 기다리자\n다른 사람이 만든 방에 참가할 때는 「방을 찾는다」를 선택하자",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips018",
+ "japaneseText":"パーティゲームをクリアすると、あそべるゲームがふえることがある",
+ "englishUsText":"When you clear a Party Game, additional games\nmay become available.",
+ "englishUsFontType":3,
+ "frenchText":"Une fois un mini-jeu terminé, d'autres manières\nde jouer peuvent être débloquées.",
+ "frenchFontType":3,
+ "italianText":"Una volta completata una modalità Party, avrai accesso a tante\naltre modalità.",
+ "italianFontType":3,
+ "germanText":"Nach dem Abschluss eines Party-Spiels werden\nzusätzliche Spielweisen verfügbar.",
+ "germanFontType":3,
+ "spanishText":"Una vez que hayas completado un juego festivo, podrás acceder\na más formas de juego.",
+ "spanishFontType":3,
+ "chineseTText":"通過派對遊戲後,就能讓可遊玩的遊戲增加",
+ "chineseTFontType":1,
+ "koreanText":"파티 모드 게임을 클리어하면,\n놀 수 있는 게임이 늘어나기도 한다.",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips019",
+ "japaneseText":"パーティゲームの「なかよくあそぶ」ルールは\nみんなでハイスコアをめざすあそびかた",
+ "englishUsText":"In Party Game’s “Co-Op” mode, all players work together\nto try and achieve high scores.",
+ "englishUsFontType":3,
+ "frenchText":"En mode \"Coop\", tous les joueurs jouent ensemble\npour essayer d'obtenir le meilleur score.",
+ "frenchFontType":3,
+ "italianText":"Nella modalità Coop della modalità Party, tutti i giocatori\ncollaborano per cercare di ottenere dei record.",
+ "italianFontType":3,
+ "germanText":"Im Koop-Modus des Partyspiels arbeiten alle Spieler zusammen, \num Höchstpunktzahlen zu erreichen.",
+ "germanFontType":3,
+ "spanishText":"En el modo \"Cooperativo\" del juego festivo, los jugadores\ntrabajan juntos para conseguir puntuaciones elevadas.",
+ "spanishFontType":3,
+ "chineseTText":"派對遊戲的「多人同樂」規則是大家一起挑戰高分的玩法",
+ "chineseTFontType":1,
+ "koreanText":"파티 모드 게임의 「사이좋게 논다」 룰은\n다 함께 하이 스코어를 목표로 하는 게임",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips020",
+ "japaneseText":"パーティゲームの「対決であそぶ」ルールは\nそれぞれのスコアの高さを競うあそびかた",
+ "englishUsText":"In Party Game’s “Versus” mode, players compete to see who can\nobtain the highest individual score.",
+ "englishUsFontType":3,
+ "frenchText":"En mode \"Versus\", les joueurs s'affrontent pour savoir\nqui obtiendra le meilleur score individuel.",
+ "frenchFontType":3,
+ "italianText":"Nella modalità Versus della modalità Party, vince chi ottiene\nil punteggio individuale più elevato.",
+ "italianFontType":3,
+ "germanText":"Im Party-Spielmodus \"Versus\" versuchen die Spieler,\njeweils die höchste Punktzahl zu erreichen.",
+ "germanFontType":3,
+ "spanishText":"En el modo \"Versus\" del juego festivo, los jugadores luchan\npara ver quién logra la mejor puntuación individual.",
+ "spanishFontType":3,
+ "chineseTText":"派對遊戲的「對決同樂」規則是分別比較個人成績高低的玩法",
+ "chineseTFontType":1,
+ "koreanText":"파티 모드 게임의 「대결하며 논다」 룰은\n각자의 스코어를 겨루는 게임",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips021",
+ "japaneseText":"パーティゲームの「チーム対決であそぶ」ルールは\n2チームに分かれてスコアを競うあそびかた",
+ "englishUsText":"In Party Game’s “Team Versus” mode, players split into two\ngroups and compete for high scores as a team.",
+ "englishUsFontType":3,
+ "frenchText":"En mode \"Versus par équipe\", les joueurs sont séparés en deux\ngroupes et cherchent à obtenir le meilleur score d'équipe.",
+ "frenchFontType":3,
+ "italianText":"Nella modalità Versus a squadre della modalità Party, tra le due\nvince la squadra con il punteggio più elevato.",
+ "italianFontType":3,
+ "germanText":"Im Party-Spielmodus \"Team Versus\" werden zwei Gruppen\ngebildet, die versuchen, die höchste Punktzahl zu erreichen.",
+ "germanFontType":3,
+ "spanishText":"En el modo Versus del juego festivo, los jugadores se dividen\nen dos grupos y luchan por la mejor puntuación en equipo.",
+ "spanishFontType":3,
+ "chineseTText":"派對遊戲的「隊伍對決同樂」規則是分為兩隊比較成績的玩法",
+ "chineseTFontType":1,
+ "koreanText":"파티 모드 게임의 「팀 대결로 논다」 룰은\n두 팀으로 나뉘어 스코어를 겨루는 게임",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips022",
+ "japaneseText":"パーティゲームのチュートリアルは、\n2回目からは-ボタン(+ボタン)でスキップすることができる",
+ "englishUsText":"The Party Game tutorial can be skipped with either\nthe - Button or + Button after playing it once.",
+ "englishUsFontType":3,
+ "frenchText":"Le didacticiel des mini-jeux peut être passé avec\nle bouton - ou le bouton + après avoir été fait une fois.",
+ "frenchFontType":3,
+ "italianText":"Dopo la prima volta, il tutorial della modalità Party può\nessere saltato premendo il pulsante + o il pulsante -.",
+ "italianFontType":3,
+ "germanText":"Überspringe das Party-Spiel-Tutorial mit dem Plus-Knopf oder\ndem Minus-Knopf, nachdem du es einmal abgeschlossen hast.",
+ "germanFontType":3,
+ "spanishText":"Puedes omitir el tutorial de juego festivo con\nel botón - o el botón + tras jugarlo una vez.",
+ "spanishFontType":3,
+ "chineseTText":"派對遊戲的教學,自第二次起就能以-鍵(+鍵)略過",
+ "chineseTFontType":1,
+ "koreanText":"파티 모드 게임의 튜토리얼은\n2번째부터는 -버튼(+버튼)으로 스킵할 수 있다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips023",
+ "japaneseText":"演奏キャラクターはそれぞれ「演奏スキル」を持っている\n苦手な曲も演奏キャラクターを上手に使ってクリアしよう!",
+ "englishUsText":"Each character has their own special Session Skill.\nTry using them to complete difficult songs.",
+ "englishUsFontType":3,
+ "frenchText":"Chaque personnage possède sa propre capacité de session.\nEssaie de les utiliser pour terminer les chansons difficiles.",
+ "frenchFontType":3,
+ "italianText":"Ciascun personaggio ha una propria Abilità sessione.\nUsala per completare le canzoni più difficili.",
+ "italianFontType":3,
+ "germanText":"Jeder Charakter hat einen eigenen Session-Skill.\nNutze sie, um schwierige Songs zu meistern.",
+ "germanFontType":3,
+ "spanishText":"Cada personaje tiene su propia habilidad de sesión.\nÚsalas para superar las canciones difíciles.",
+ "spanishFontType":3,
+ "chineseTText":"演奏角色分別具有特殊的「演奏技能」,就連不擅長\n的樂曲,也能妥善運用演奏角色來通關!",
+ "chineseTFontType":1,
+ "koreanText":"연주 캐릭터는 각자 「연주 스킬」을 가지고 있다\n잘 못 치는 곡도, 연주 캐릭터를 잘 이용해서 클리어하자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips024",
+ "japaneseText":"演奏キャラクターはパーティゲームをたくさんプレイするとふえていく",
+ "englishUsText":"You can unlock more characters\nby playing lots of Party Games.",
+ "englishUsFontType":3,
+ "frenchText":"Tu peux débloquer d'autres personnages\nen jouant beaucoup aux mini-jeux.",
+ "frenchFontType":3,
+ "italianText":"Gioca molte partite in modalità Party per sbloccare\npiù personaggi.",
+ "italianFontType":3,
+ "germanText":"Du kannst weitere Charaktere freischalten,\n indem du viele Party-Spiele spielst.",
+ "germanFontType":3,
+ "spanishText":"Desbloquea más personajes\njugando muchas veces a juego festivo.",
+ "spanishFontType":3,
+ "chineseTText":"演奏角色能藉由時常遊玩派對遊戲增加",
+ "chineseTFontType":1,
+ "koreanText":"연주 캐릭터는 파티 모드 게임을 많이 플레이하면 늘어난다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips025",
+ "japaneseText":"「ゲーム設定」の「タッチ太鼓の表示設定」から、\n携帯モードでタッチ太鼓を表示するか設定できる",
+ "englishUsText":"You can show the touch drum when playing in Handheld mode by\ngoing to Game Settings > Show/Hide Touch Drum.",
+ "englishUsFontType":3,
+ "frenchText":"Tu peux afficher le tamb. tactile quand tu joues en mode portable :\nParamètres de jeu > Afficher/Masquer tambour tactile.",
+ "frenchFontType":3,
+ "italianText":"Per visualizzare il tamburo touch nella modalità portatile,\nvai in Impostazioni > Mostra/nascondi tamburo touch.",
+ "italianFontType":3,
+ "germanText":"Einblenden der Touch-Trommel beim Spielen im Handheld-Modus über:\nSpieloptionen > Touch-Trommel anzeigen.",
+ "germanFontType":3,
+ "spanishText":"Puedes mostrar el tambor táctil al jugar en el modo portátil\nen Ajustes del juego > Mostrar/Ocultar el tambor táctil.",
+ "spanishFontType":3,
+ "chineseTText":"可從「遊戲設定」中的「觸控太鼓的顯示設定」,\n設定在手提模式下是否顯示觸控太鼓",
+ "chineseTFontType":1,
+ "koreanText":"「게임 설정」의 「터치 북 설정」에서\n휴대 모드에서 터치 북을 표시할지 설정할 수 있다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips026",
+ "japaneseText":"BGM、効果音、ボイスの音量は、「ゲーム設定」の「音量設定」から変えることができる",
+ "englishUsText":"You can adjust music, sound effect, and voice volume by going\nto Game Settings > Volume.",
+ "englishUsFontType":3,
+ "frenchText":"Tu peux ajuster le volume de la musique, des effets sonores\net des voix en allant dans Paramètres de jeu > Volume.",
+ "frenchFontType":3,
+ "italianText":"Per regolare il volume di musica, effetti sonori e dialoghi,\nvai in Impostazioni > Volume.",
+ "italianFontType":3,
+ "germanText":"Du kannst die Musik-, Effekt- und Stimmenlautstärke über\nSpieloptionen > Sound anpassen.",
+ "germanFontType":3,
+ "spanishText":"Ajusta la música, los efectos de sonido y el volumen de voz\nen Ajustes del juego > Volumen.",
+ "spanishFontType":3,
+ "chineseTText":"背景音樂、效果音、語音的音量,可從「遊戲設定」中的「音量設定」進行更改",
+ "chineseTFontType":1,
+ "koreanText":"BGM, 효과음, 목소리의 음량은\n「게임 설정」의 「음량 설정」에서 바꿀 수 있다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips027",
+ "japaneseText":"「みんなのきろく」では、本体にとうろくされている\n他のアカウントのきろくも見ることができる",
+ "englishUsText":"In Records, you can see the records of every\naccount on your console.",
+ "englishUsFontType":3,
+ "frenchText":"Dans le menu Records, tu peux consulter les records\n de tous les comptes sur ta console Nintendo Switch.",
+ "frenchFontType":3,
+ "italianText":"Il menu Record consente di vedere i record di tutti\n gli account utilizzati sulla tua console Nintendo Switch.",
+ "italianFontType":3,
+ "germanText":"Unter \"Statistiken\" werden dir die Daten zu sämtlichen\nKonten auf deiner Nintendo Switch-Konsole angezeigt.",
+ "germanFontType":3,
+ "spanishText":"En Récords, puedes ver los récords de todas\n las cuentas de tu consola Nintendo Switch.",
+ "spanishFontType":3,
+ "chineseTText":"在「大家的記錄」裡,可看到登錄於主機內其他帳戶的記錄",
+ "chineseTFontType":1,
+ "koreanText":"「모두의 기록」에서는, 본체에 등록된\n다른 어카운트의 기록도 볼 수 있다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips028",
+ "japaneseText":"フリフリ演奏のときの大音符は両手の「Joy-Con」を同時にふらなくても\n左右どちらかの「Joy-Con」を速くふると大入力になる",
+ "englishUsText":"When using motion controls, instead of shaking both Joy-Con\ncontrollers together for big music notes, you can just shake one rapidly.",
+ "englishUsFontType":3,
+ "frenchText":"En commandes par mouvements, au lieu de secouer les deux Joy-Con\npour les grosses notes, tu peux juste en secouer un rapidement.",
+ "frenchFontType":3,
+ "italianText":"Se usi i comandi di movimento, per colpire le note grandi\npuoi scuotere rapidamente un Joy-Con invece di scuoterli entrambi.",
+ "italianFontType":3,
+ "germanText":"Nutzt du die Bewegungssteuerung, kannst du dir große Noten\nschnappen, indem du einen der Joy-Con schnell schüttelst.",
+ "germanFontType":3,
+ "spanishText":"Al usar el control por movimiento, en lugar de agitar los Joy-Con\npara tocar notas grandes, puedes agitar solo uno rápidamente.",
+ "spanishFontType":3,
+ "chineseTText":"在動態演奏時的大音符,不需要同時揮動兩手的「Joy-Con控制器」,\n只要迅速揮動任一方的「Joy-Con控制器」就能變為大音符",
+ "chineseTFontType":1,
+ "koreanText":"모션 조작을 할 때 큰 음표는, 두 「Joy-Con」을 동시에 흔들지 않아도\n한쪽 「Joy-Con」을 빨리 흔들면 (대)로 입력된다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips029",
+ "japaneseText":"曲によっては2人プレイのときしかでてこない譜面がある",
+ "englishUsText":"Some songs have different single player and\ntwo player versions.",
+ "englishUsFontType":3,
+ "frenchText":"Certaines chansons ne sont pas identiques\nen mode solo et en mode deux joueurs.",
+ "frenchFontType":3,
+ "italianText":"La versione per due giocatori di alcune canzoni è diversa\nda quella per giocatore singolo.",
+ "italianFontType":3,
+ "germanText":"Für einige Songs gibt es unterschiedliche\nVersionen für einen und zwei Spieler.",
+ "germanFontType":3,
+ "spanishText":"Algunas canciones tienen versiones diferentes\npara un jugador y dos jugadores.",
+ "spanishFontType":3,
+ "chineseTText":"根據樂曲存在著在2人遊玩時才會出現的譜面",
+ "chineseTFontType":1,
+ "koreanText":"곡에 따라서는 둘이서 플레이할 때만 나오는 악보가 있다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips030",
+ "japaneseText":"手つなぎ音符は2人で演奏するときしか出てこない音符\n2人で同時にたたいて高得点! 2人とも「良」だとさらに得点アップ!",
+ "englishUsText":"Hand-Holding parts only appear for two players. Hit them\nsimultaneously for extra points, with a bonus for GOODs!",
+ "englishUsFontType":3,
+ "frenchText":"Les notes se tenant la main apparaissent avec deux joueurs.\nFrappez-les ensemble pour marquer plus de points !",
+ "frenchFontType":3,
+ "italianText":"Le note che si tengono per mano ci sono solo giocando in due.\nColpitele insieme per ricevere punti extra e bonus per BUONO!",
+ "italianFontType":3,
+ "germanText":"Händchen haltende Noten gibt es nur bei zwei Spielern.\nTrefft sie zugleich für Extrapunkte (GUT gibt Boni)!",
+ "germanFontType":3,
+ "spanishText":"Las notas que van de la mano son para dos jugadores. ¡Púlsalas\na la vez y gana puntos extra, con bonificación para BIENES!",
+ "spanishFontType":3,
+ "chineseTText":"牽手音譜,是只有在2人模式下才會出現的音譜,2人同時敲打會得到高分!\n2個人皆敲出「良」則會讓得分更為提升!",
+ "chineseTFontType":1,
+ "koreanText":"손잡기 음표는 둘이서 플레이할 때만 나오는 음표\n둘이서 동시에 치면 고득점! 둘 다 「얼쑤」면 더욱더 점수 업!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips031",
+ "japaneseText":"音とそうさのズレを感じたら「音符調整」で調整しよう\nイヤホンでプレイするのもオススメ!",
+ "englishUsText":"If you find yourself missing a lot of music notes, try\ncalibrating their timing. Playing with headphones helps too!",
+ "englishUsFontType":3,
+ "frenchText":"Si tu rates beaucoup de notes de musique, essaie de calibrer\nleur timing. Jouer avec des écouteurs peut aussi t'aider !",
+ "frenchFontType":3,
+ "italianText":"Se manchi diverse note musicali, prova a calibrare il gioco.\nInoltre, giocare con le cuffie aiuta a essere più precisi!",
+ "italianFontType":3,
+ "germanText":"Verfehlst du viele Noten, versuch, dein Timing zu verbessern.\nKopfhörer können beim Spielen ebenfalls hilfreich sein!",
+ "germanFontType":3,
+ "spanishText":"Si se te van muchas notas, intenta calibrar su cadencia.\n¡También ayuda jugar con auriculares!",
+ "spanishFontType":3,
+ "chineseTText":"當感覺音符的位置及聲音有偏差的話,就到「音符調整」裡\n進行調整吧,也推薦以耳機來遊玩!",
+ "chineseTFontType":1,
+ "koreanText":"소리와 조작이 어긋나는 것 같다면 「음표 조정」에서 조정하자\n이어폰을 끼고 플레이하는 것도 추천!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips032",
+ "japaneseText":"長時間プレイしすぎないように気をつけよう\n1時間あそんだら10分から20分くらい休もう",
+ "englishUsText":"Make sure to take a break if you’ve been playing for a while!\nWe recommend a 10-20 minute break for every hour of play.",
+ "englishUsFontType":3,
+ "frenchText":"Fais une pause si tu joues depuis longtemps ! Repose-toi\npendant 10 à 20 minutes pour chaque heure passée à jouer.",
+ "frenchFontType":3,
+ "italianText":"Fai una pausa ogni tanto!\nConsigliamo una pausa di 10-20 minuti dopo ogni ora di gioco.",
+ "italianFontType":3,
+ "germanText":"Mach eine Pause, wenn du länger spielst!\nWir empfehlen pro Stunde zehn bis 20 Minuten Pause.",
+ "germanFontType":3,
+ "spanishText":"¡Haz una pausa si llevas mucho tiempo jugando!\nSe aconseja descansar 10-20 minutos por cada hora de juego.",
+ "spanishFontType":3,
+ "chineseTText":"請注意不要長時間遊玩,遊玩1小時的話請休息10~20分鐘",
+ "chineseTFontType":1,
+ "koreanText":"너무 오래 플레이하지 않도록 조심하자\n1시간 놀았으면 10분에서 20분 정도 쉬자",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips033",
+ "japaneseText":"手ごたえのある演奏をしたい人は「立つドン」を演奏キャラクターにするのがオススメ!",
+ "englishUsText":"If you want a challenge, try playing with Standing DON!",
+ "englishUsFontType":3,
+ "frenchText":"Si tu veux un vrai défi, essaie de jouer avec DON debout !",
+ "frenchFontType":3,
+ "italianText":"Se vuoi una sfida vera, prova a giocare con DON in piedi!",
+ "italianFontType":3,
+ "germanText":"Wenn du eine Herausforderung suchst, spiel mit Stehender DON!",
+ "germanFontType":3,
+ "spanishText":"¡Si quieres un desafío, juega con DON de pie!",
+ "spanishFontType":3,
+ "chineseTText":"想挑戰高難度演奏的人,推薦可選擇「站立咚」作為演奏角色!",
+ "chineseTFontType":1,
+ "koreanText":"만만치 않은 연주를 하고 싶은 사람은\n「타츠동」을 연주 캐릭터로 선택하는 것을 추천!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips034",
+ "japaneseText":"連打で得点をかせぎたい人は「カレクッタ=ドンディー」を演奏キャラクターにするのがオススメ!",
+ "englishUsText":"If you want to earn lots of points on drumrolls,\ntry playing with Currycutta!",
+ "englishUsFontType":3,
+ "frenchText":"Si tu veux marquer beaucoup de points pendant les roulements\nde tambour, essaie de jouer avec Currycutta !",
+ "frenchFontType":3,
+ "italianText":"Se vuoi ottenere molti punti con i rulli di tamburo, prova a\ngiocare con Currycutta!",
+ "italianFontType":3,
+ "germanText":"Wenn du mit Trommelwirbeln viele Punkte\nmachen willst, spiel mit Currycutta!",
+ "germanFontType":3,
+ "spanishText":"¡Si quieres ganar muchos puntos en los redobles,\njuega con Currycutta!",
+ "spanishFontType":3,
+ "chineseTText":"想以連打賺取分數的人,推薦可選擇「咖哩‧咚迪」作為演奏角色!",
+ "chineseTFontType":1,
+ "koreanText":"연타로 득점을 쌓고 싶은 사람은\n「콜카레=동디」를 연주 캐릭터로 선택하는 것을 추천!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips035",
+ "japaneseText":"失敗したときの魂ゲージがへるのをおさえたいときは\n「よもぎまる」を演奏キャラクターにするのがオススメ!",
+ "englishUsText":"If you want to keep your Soul Gauge from going down if you\nmake a mistake, try playing with Yomogimaru!",
+ "englishUsFontType":3,
+ "frenchText":"Si tu veux empêcher ta jauge de baisser en cas d'erreur,\nessaie de jouer avec Yomogimaru !",
+ "frenchFontType":3,
+ "italianText":"Se non vuoi essere troppo penalizzato quando manchi le note,\nprova a giocare con Yomogimaru!",
+ "italianFontType":3,
+ "germanText":"Wenn deine Seelenanzeige durch einen Fehler nicht\nsinken soll, spiel mit Yomogimaru!",
+ "germanFontType":3,
+ "spanishText":"¡Si quieres evitar que tu indicador de Alma baje si cometes\nun error, juega con Yomogimaru!",
+ "spanishFontType":3,
+ "chineseTText":"想要抑制產生失誤讓魂量表的減少量時,\n推薦選擇「艾草丸」作為演奏角色!",
+ "chineseTFontType":1,
+ "koreanText":"실수했을 때 클리어 게이지가 줄어드는 걸 막고 싶을 때는\n「요모기마루」를 연주 캐릭터로 선택하는 것을 추천!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips036",
+ "japaneseText":"演奏スキルなしでプレイしたいときは、「どんちゃん」や「かっちゃん」を\n演奏キャラクターにするのがオススメ!",
+ "englishUsText":"If you want to keep it simple and not use Session Skills,\ntry playing with either DON-chan or KATSU-chan!",
+ "englishUsFontType":3,
+ "frenchText":"Si tu veux jouer simplement sans utiliser les capacités\nde session, essaie de jouer avec DON-chan ou KATSU-chan !",
+ "frenchFontType":3,
+ "italianText":"Se vuoi giocare senza usare le Abilità sessione,\nprova a giocare con DON-chan o KATSU-chan!",
+ "italianFontType":3,
+ "germanText":"Wenn du es einfach halten und auf Session-Skills verzichten\nwillst, spiel mit DON-chan oder KATSU-chan!",
+ "germanFontType":3,
+ "spanishText":"¡Si te va lo simple y no quieres usar habilidades de sesión,\njuega con DON-chan o KATSU-chan!",
+ "spanishFontType":3,
+ "chineseTText":"不想使用演奏技能來遊玩的時候,推薦選擇「小咚」或「小咔」\n作為演奏角色!",
+ "chineseTFontType":1,
+ "koreanText":"연주 스킬 없이 플레이하고 싶을 때는, 「동이」나 「딱이」를\n연주 캐릭터로 선택하는 것을 추천!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips037",
+ "japaneseText":"ドンとカッのたたきわけが苦手な人は「バチお先生」を演奏キャラクターにするのがオススメ!",
+ "englishUsText":"If you find switching between Dons and Kas to be tricky,\ntry playing with Master Bachio!",
+ "englishUsFontType":3,
+ "frenchText":"Si tu trouves qu'alterner entre les Don et les Ka\nest compliqué, essaie de jouer avec Maître Bachio !",
+ "frenchFontType":3,
+ "italianText":"Se incontri difficoltà a passare dalle note Don a quelle Ka,\nprova a giocare con Maestro Bachio!",
+ "italianFontType":3,
+ "germanText":"Fällt es dir schwer, zwischen DONs und KAs\nzu wechseln, spiel mit Meister Bachio!",
+ "germanFontType":3,
+ "spanishText":"¡Si cambiar entre las notas DON y KA te resulta difícil,\njuega con el Maestro Bachio!",
+ "spanishFontType":3,
+ "chineseTText":"對難以辨別咚與咔的人,推薦選擇「鼓棒師父」作為演奏角色!",
+ "chineseTFontType":1,
+ "koreanText":"쿵과 딱을 구별해서 치는 게 힘든 사람은\n「북채 선생」을 연주 캐릭터로 선택하는 것을 추천!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips038",
+ "japaneseText":"演奏で不可を出してしまう人は「どん子」や「なまはげ」を\n演奏キャラクターにするのがオススメ!",
+ "englishUsText":"If you find yourself getting BADs, try playing with\nDONko or Namahage!",
+ "englishUsFontType":3,
+ "frenchText":"Si tu obtiens beaucoup de MAUVAIS,\nessaie de jouer avec DONko ou Namahage !",
+ "frenchFontType":3,
+ "italianText":"Se ottieni spesso dei MALE, prova a giocare con\nDONko o Namahage!",
+ "italianFontType":3,
+ "germanText":"Wenn du oft \"ÜBEL\" kassierst, spiel mit\nDONko oder Namahage!",
+ "germanFontType":3,
+ "spanishText":"¡Si muchas notas te salen MAL, juega con\nDONko o Namahage!",
+ "spanishFontType":3,
+ "chineseTText":"對在演奏裡總是出現不可的人,推薦選擇「咚子」或「生剝鬼」作為演奏角色!",
+ "chineseTFontType":1,
+ "koreanText":"연주할 때 에구가 나오는 사람은 「동코」나 「나마하게」를\n연주 캐릭터로 선택하는 것을 추천!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips039",
+ "japaneseText":"魂ゲージをどんどんふやしたい場合は「和田イヌ」や「和田ジョン」を\n演奏キャラクターにするのがオススメ!",
+ "englishUsText":"If you want to fill your Soul Gauge as soon as possible,\ntry playing with Dog Wada or John Wada!",
+ "englishUsFontType":3,
+ "frenchText":"Si tu veux remplir ta jauge aussi vite que possible,\nessaie de jouer avec Chien Wada ou John Wada !",
+ "frenchFontType":3,
+ "italianText":"Se vuoi riempire l'indicatore Anima il prima possibile, prova\na giocare con Wada Cane o John Wada!",
+ "italianFontType":3,
+ "germanText":"Willst du deine Seelenanzeige schnell füllen,\nspiel mit Hund Wada oder John Wada!",
+ "germanFontType":3,
+ "spanishText":"¡Si quieres llenar tu indicador de Alma cuanto antes,\njuega con Perro Wada o John Wada!",
+ "spanishFontType":3,
+ "chineseTText":"當想持續增加魂量表時,推薦選擇「和田狗」或「和田約翰」作為演奏角色!",
+ "chineseTFontType":1,
+ "koreanText":"클리어 게이지를 팍팍 늘리고 싶은 경우에는 「와다 이누」나 「와다 존」을\n연주 캐릭터로 선택하는 것을 추천!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips040",
+ "japaneseText":"「お面小僧」たちを演奏キャラクターにすると、連打、ふうせん音符、こづち音符を\nサポートしてくれるので連打でスコアをかせぎやすい",
+ "englishUsText":"Masked Kid characters will help you with drumrolls, balloons,\nand mallets, making it easier to keep your combo going.",
+ "englishUsFontType":3,
+ "frenchText":"Les personnages d'oursons masqués peuvent t'aider avec les\nroulements de tambour, les notes ballon et les notes maillet.",
+ "frenchFontType":3,
+ "italianText":"Rulli di tamburo, note palloncino e note martello e quindi\nle combo, sono più semplici con i personaggi mascherati.",
+ "italianFontType":3,
+ "germanText":"Masken-Kinder helfen bei Trommelwirbeln, Ballons und\nSchlägeln, was es erleichtert, Kombos am Laufen zu halten.",
+ "germanFontType":3,
+ "spanishText":"Los personajes enmascarados te ayudan con los redobles,\nlos globos y los mazos. Así es más fácil mantener tu combo.",
+ "spanishFontType":3,
+ "chineseTText":"讓「面具小僧」們成為演奏角色後,由於會支援連打、氣球、小槌音譜,\n因此更容易以連打賺取成績",
+ "chineseTFontType":1,
+ "koreanText":"「가면 도령」들을 연주 캐릭터로 선택하면, 연타, 풍선, 금망치 음표를\n서포트해주기 때문에 연타에서 스코어를 얻기 쉽다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips041",
+ "japaneseText":"「たこやき」を演奏キャラクターにすると、魂ゲージが\n最初から半分たまっているのでクリアしやすい",
+ "englishUsText":"Takoyaki lets you start a song with the Soul Gauge halfway\nfilled, making it easier to beat the song.",
+ "englishUsFontType":3,
+ "frenchText":"Takoyaki te laisse commencer la chanson avec la jauge\nà moitié remplie, ce qui permet de réussir plus facilement.",
+ "frenchFontType":3,
+ "italianText":"Giocando con Takoyaki inizierai con l'indicatore Anima già pieno\na metà. Così sarà più facile completare la canzone.",
+ "italianFontType":3,
+ "germanText":"Mit Takoyaki ist deine Seelenanzeige von Anfang an halb\ngefüllt, sodass du Songs leichter abschließen kannst.",
+ "germanFontType":3,
+ "spanishText":"Takoyaki te permite iniciar una canción con el indicador de Alma\na medias, por lo que te será más fácil superar la canción.",
+ "spanishFontType":3,
+ "chineseTText":"讓「章魚燒」成為演奏角色後,由於會讓使魂量表在開始時就累積\n至一半,因此變得更為容易通關",
+ "chineseTFontType":1,
+ "koreanText":"「타코야키」를 연주 캐릭터로 선택하면, 클리어 게이지가\n절반 찬 상태에서 시작하기 때문에 클리어하기 쉽다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips042",
+ "japaneseText":"演奏がむずかしくなるスキルを持つ演奏キャラクターもいる",
+ "englishUsText":"Some characters also have skills that make the game\nmore difficult.",
+ "englishUsFontType":3,
+ "frenchText":"Certains personnages possèdent des capacités\nqui rendent le jeu plus difficile.",
+ "frenchFontType":3,
+ "italianText":"Alcuni personaggi hanno delle abilità\nche rendono il gioco più difficile.",
+ "italianFontType":3,
+ "germanText":"Die Skills einiger Charaktere machen das Spiel schwieriger.",
+ "germanFontType":3,
+ "spanishText":"Algunos personajes poseen habilidades que hacen\nque el juego resulte más difícil.",
+ "spanishFontType":3,
+ "chineseTText":"也有著能讓演奏變難的技能的演奏角色",
+ "chineseTFontType":1,
+ "koreanText":"연주가 어려워지는 스킬을 가진 연주 캐릭터도 있다",
+ "koreanFontType":2
+ },
+ {
+ "key":"guest_name_p1",
+ "japaneseText":"Guest 1",
+ "englishUsText":"Guest 1",
+ "englishUsFontType":3,
+ "frenchText":"Invité 1",
+ "frenchFontType":3,
+ "italianText":"Ospite 1",
+ "italianFontType":3,
+ "germanText":"Gast 1",
+ "germanFontType":3,
+ "spanishText":"Invitado 1",
+ "spanishFontType":3,
+ "chineseTText":"Guest 1",
+ "chineseTFontType":1,
+ "koreanText":"Guest 1",
+ "koreanFontType":2
+ },
+ {
+ "key":"guest_name_p2",
+ "japaneseText":"Guest 2",
+ "englishUsText":"Guest 2",
+ "englishUsFontType":3,
+ "frenchText":"Invité 2",
+ "frenchFontType":3,
+ "italianText":"Ospite 2",
+ "italianFontType":3,
+ "germanText":"Gast 2",
+ "germanFontType":3,
+ "spanishText":"Invitado 2",
+ "spanishFontType":3,
+ "chineseTText":"Guest 2",
+ "chineseTFontType":1,
+ "koreanText":"Guest 2",
+ "koreanFontType":2
+ },
+ {
+ "key":"guest_name_p3",
+ "japaneseText":"Guest 3",
+ "englishUsText":"Guest 3",
+ "englishUsFontType":3,
+ "frenchText":"Invité 3",
+ "frenchFontType":3,
+ "italianText":"Ospite 3",
+ "italianFontType":3,
+ "germanText":"Gast 3",
+ "germanFontType":3,
+ "spanishText":"Invitado 3",
+ "spanishFontType":3,
+ "chineseTText":"Guest 3",
+ "chineseTFontType":1,
+ "koreanText":"Guest 3",
+ "koreanFontType":2
+ },
+ {
+ "key":"guest_name_p4",
+ "japaneseText":"Guest 4",
+ "englishUsText":"Guest 4",
+ "englishUsFontType":3,
+ "frenchText":"Invité 4",
+ "frenchFontType":3,
+ "italianText":"Ospite 4",
+ "italianFontType":3,
+ "germanText":"Gast 4",
+ "germanFontType":3,
+ "spanishText":"Invitado 4",
+ "spanishFontType":3,
+ "chineseTText":"Guest 4",
+ "chineseTFontType":1,
+ "koreanText":"Guest 4",
+ "koreanFontType":2
+ },
+ {
+ "key":"course_all",
+ "japaneseText":"ぜんぶ",
+ "englishUsText":"All",
+ "englishUsFontType":3,
+ "frenchText":"Tout",
+ "frenchFontType":3,
+ "italianText":"Tutto",
+ "italianFontType":3,
+ "germanText":"Alle",
+ "germanFontType":3,
+ "spanishText":"Todo",
+ "spanishFontType":3,
+ "chineseTText":"全部",
+ "chineseTFontType":1,
+ "koreanText":"전부",
+ "koreanFontType":2
+ },
+ {
+ "key":"course_easy_txt",
+ "japaneseText":"「かんたん」の中からしぼりこみを行う\n",
+ "englishUsText":"Filter by Easy\n",
+ "englishUsFontType":3,
+ "frenchText":"Trier par Facile\n",
+ "frenchFontType":3,
+ "italianText":"Filtra per Facile\n",
+ "italianFontType":3,
+ "germanText":"Nach Leicht filtern\n",
+ "germanFontType":3,
+ "spanishText":"Filtrar por Fácil",
+ "spanishFontType":3,
+ "chineseTText":"以「簡單」為基準進行篩選",
+ "chineseTFontType":1,
+ "koreanText":"「쉬움」 중에서 분류한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"course_hard_txt",
+ "japaneseText":"「むずかしい」の中からしぼりこみを行う\n",
+ "englishUsText":"Filter by Hard\n",
+ "englishUsFontType":3,
+ "frenchText":"Trier par Difficile\n",
+ "frenchFontType":3,
+ "italianText":"Filtra per Difficile\n",
+ "italianFontType":3,
+ "germanText":"Nach Schwer filtern\n",
+ "germanFontType":3,
+ "spanishText":"Filtrar por Difícil",
+ "spanishFontType":3,
+ "chineseTText":"以「困難」為基準進行篩選",
+ "chineseTFontType":1,
+ "koreanText":"「어려움」 중에서 분류한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"course_mania_txt",
+ "japaneseText":"「おに」の中からしぼりこみを行う\n",
+ "englishUsText":"Filter by Extreme\n",
+ "englishUsFontType":3,
+ "frenchText":"Trier par Extrême\n",
+ "frenchFontType":3,
+ "italianText":"Filtra per Estremo\n",
+ "italianFontType":3,
+ "germanText":"Nach Extrem filtern\n",
+ "germanFontType":3,
+ "spanishText":"Filtrar por Extrema",
+ "spanishFontType":3,
+ "chineseTText":"以「魔王」為基準進行篩選",
+ "chineseTFontType":1,
+ "koreanText":"「귀신」 중에서 분류한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"course_normal_txt",
+ "japaneseText":"「ふつう」の中からしぼりこみを行う\n",
+ "englishUsText":"Filter by Normal\n",
+ "englishUsFontType":3,
+ "frenchText":"Trier par Normal\n",
+ "frenchFontType":3,
+ "italianText":"Filtra per Normale\n",
+ "italianFontType":3,
+ "germanText":"Nach Normal filtern\n",
+ "germanFontType":3,
+ "spanishText":"Filtrar por Normal",
+ "spanishFontType":3,
+ "chineseTText":"以「普通」為基準進行篩選",
+ "chineseTFontType":1,
+ "koreanText":"「보통」 중에서 분류한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"couse_all_txt",
+ "japaneseText":"「ならび順」によるならびかえ、「クリア状況」によるしぼりこみの\n中からむずかしさをえらぶ設定",
+ "englishUsText":"Filter song difficulty by Order or Clear State.\n",
+ "englishUsFontType":3,
+ "frenchText":"Trier la difficulté des chansons par Ordre ou Progression.",
+ "frenchFontType":3,
+ "italianText":"Ordina le canzoni per difficoltà con Ordine e Completamento.\n",
+ "italianFontType":3,
+ "germanText":"Song-Schwierigkeitsgrad nach Reihenfolge oder Abschluss-Status filtern.",
+ "germanFontType":3,
+ "spanishText":"Filtrar dificultad por Orden o Superación.",
+ "spanishFontType":3,
+ "chineseTText":"使用「排序順序」或篩選「通關狀況」時\n作為基準的難易度的設定",
+ "chineseTFontType":1,
+ "koreanText":"「정렬 순서」에 따른 정렬, 「클리어 상황」에 따른 분류\n중에서 난이도를 고르는 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"filter_no_star_txt",
+ "japaneseText":"お気に入り曲だけ表示する設定\n",
+ "englishUsText":"A setting to only show Favorite songs\n",
+ "englishUsFontType":3,
+ "frenchText":"Un paramètre pour ne montrer que les chansons favorites\n",
+ "frenchFontType":3,
+ "italianText":"Opzione che permette di mostrare solo le canzoni preferite\n",
+ "italianFontType":3,
+ "germanText":"Einstellung, um nur Favoriten anzuzeigen.\n",
+ "germanFontType":3,
+ "spanishText":"Este ajuste solo muestra las canciones favoritas.",
+ "spanishFontType":3,
+ "chineseTText":"僅顯示中意樂曲功能的設定",
+ "chineseTFontType":1,
+ "koreanText":"즐겨찾기한 곡만 표시하는 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"filter_no_txt",
+ "japaneseText":"クリア状況でしぼりこむ設定\n",
+ "englishUsText":"Filter by Clear State\n",
+ "englishUsFontType":3,
+ "frenchText":"Trier par Progression",
+ "frenchFontType":3,
+ "italianText":"Filtra per Completamento\n",
+ "italianFontType":3,
+ "germanText":"Nach Abschluss-Status filtern",
+ "germanFontType":3,
+ "spanishText":"Filtrar por superación",
+ "spanishFontType":3,
+ "chineseTText":"依通關狀況篩選的設定",
+ "chineseTFontType":1,
+ "koreanText":"클리어 상황으로 분류하는 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"filter_not_clear_txt",
+ "japaneseText":"クリアしていない曲だけ表示する\n",
+ "englishUsText":"Only show songs that haven’t been cleared\n",
+ "englishUsFontType":3,
+ "frenchText":"Ne montrer que les chansons non terminées\n",
+ "frenchFontType":3,
+ "italianText":"Mostra solo le canzoni che non sono state completate\n",
+ "italianFontType":3,
+ "germanText":"Nur Songs, die nicht abgeschlossen wurden\n",
+ "germanFontType":3,
+ "spanishText":"Mostrar solo canciones que no se hayan superado",
+ "spanishFontType":3,
+ "chineseTText":"僅顯示尚未通關樂曲",
+ "chineseTFontType":1,
+ "koreanText":"클리어하지 않은 곡만 표시한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"filter_not_fullcombo_txt",
+ "japaneseText":"フルコンボしていない曲だけ表示する\n",
+ "englishUsText":"Only show songs that haven’t been fully comboed\n",
+ "englishUsFontType":3,
+ "frenchText":"Ne montrer que les chansons n'ayant pas un combo max\n",
+ "frenchFontType":3,
+ "italianText":"Mostra solo le canzoni che non sono state completate con una combo",
+ "italianFontType":3,
+ "germanText":"Nur Songs ohne vollständige Kombo\n",
+ "germanFontType":3,
+ "spanishText":"Mostrar solo canciones con combos incompletos",
+ "spanishFontType":3,
+ "chineseTText":"僅顯示尚未全連段樂曲",
+ "chineseTFontType":1,
+ "koreanText":"풀 콤보를 달성하지 않은 곡만 표시한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"filter_not_play_txt",
+ "japaneseText":"プレイしたことのない曲だけ表示する\n",
+ "englishUsText":"Only show unplayed songs\n",
+ "englishUsFontType":3,
+ "frenchText":"Ne montrer que les chansons non jouées\n",
+ "frenchFontType":3,
+ "italianText":"Mostra solo le canzoni mai provate\n",
+ "italianFontType":3,
+ "germanText":"Nur ungespielte Songs\n",
+ "germanFontType":3,
+ "spanishText":"Mostrar solo canciones no tocadas",
+ "spanishFontType":3,
+ "chineseTText":"僅顯示尚未遊玩樂曲",
+ "chineseTFontType":1,
+ "koreanText":"플레이한 적이 없는 곡만 표시한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"filter_only_star_txt",
+ "japaneseText":"お気に入り曲だけ表示する\n",
+ "englishUsText":"Only show Favorite songs\n",
+ "englishUsFontType":3,
+ "frenchText":"Ne montrer que les chansons favorites\n",
+ "frenchFontType":3,
+ "italianText":"Mostra solo le canzoni preferite\n",
+ "italianFontType":3,
+ "germanText":"Nur Favoriten\n",
+ "germanFontType":3,
+ "spanishText":"Mostrar solo canciones favoritas",
+ "spanishFontType":3,
+ "chineseTText":"僅顯示中意樂曲",
+ "chineseTFontType":1,
+ "koreanText":"즐겨찾기한 곡만 표시한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"not_clear",
+ "japaneseText":"未クリア",
+ "englishUsText":"Not Cleared",
+ "englishUsFontType":3,
+ "frenchText":"Pas terminée",
+ "frenchFontType":3,
+ "italianText":"Non completata",
+ "italianFontType":3,
+ "germanText":"Nicht abgeschlossen",
+ "germanFontType":3,
+ "spanishText":"No superadas",
+ "spanishFontType":3,
+ "chineseTText":"尚未通關",
+ "chineseTFontType":1,
+ "koreanText":"미 클리어",
+ "koreanFontType":2
+ },
+ {
+ "key":"not_fullcombo",
+ "japaneseText":"未フルコンボ",
+ "englishUsText":"Not Full Comboed",
+ "englishUsFontType":3,
+ "frenchText":"Pas de c. max",
+ "frenchFontType":3,
+ "italianText":"Non compl. con combo",
+ "italianFontType":3,
+ "germanText":"Keine vollst. Kombo",
+ "germanFontType":3,
+ "spanishText":"Sin combos completos",
+ "spanishFontType":3,
+ "chineseTText":"尚未全連段",
+ "chineseTFontType":1,
+ "koreanText":"미 풀 콤보",
+ "koreanFontType":2
+ },
+ {
+ "key":"not_play",
+ "japaneseText":"未プレイ",
+ "englishUsText":"Not Played",
+ "englishUsFontType":3,
+ "frenchText":"Pas jouée",
+ "frenchFontType":3,
+ "italianText":"Mai provata",
+ "italianFontType":3,
+ "germanText":"Nicht gespielt",
+ "germanFontType":3,
+ "spanishText":"No tocadas",
+ "spanishFontType":3,
+ "chineseTText":"尚未遊玩",
+ "chineseTFontType":1,
+ "koreanText":"미 플레이",
+ "koreanFontType":2
+ },
+ {
+ "key":"setting_off",
+ "japaneseText":"設定しない",
+ "englishUsText":"OFF",
+ "englishUsFontType":3,
+ "frenchText":"DÉSACTIVÉ",
+ "frenchFontType":3,
+ "italianText":"NO",
+ "italianFontType":3,
+ "germanText":"AUS",
+ "germanFontType":3,
+ "spanishText":"No",
+ "spanishFontType":3,
+ "chineseTText":"不設定",
+ "chineseTFontType":1,
+ "koreanText":"설정 안 한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"setting_on",
+ "japaneseText":"設定する",
+ "englishUsText":"ON",
+ "englishUsFontType":3,
+ "frenchText":"ACTIVÉ",
+ "frenchFontType":3,
+ "italianText":"SÌ",
+ "italianFontType":3,
+ "germanText":"AN",
+ "germanFontType":3,
+ "spanishText":"Sí",
+ "spanishFontType":3,
+ "chineseTText":"設定",
+ "chineseTFontType":1,
+ "koreanText":"설정한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"sort_genre",
+ "japaneseText":"ジャンル順",
+ "englishUsText":"Genre",
+ "englishUsFontType":3,
+ "frenchText":"Genre",
+ "frenchFontType":3,
+ "italianText":"Genere",
+ "italianFontType":3,
+ "germanText":"Genre",
+ "germanFontType":3,
+ "spanishText":"Género",
+ "spanishFontType":3,
+ "chineseTText":"依類型",
+ "chineseTFontType":1,
+ "koreanText":"장르 순",
+ "koreanFontType":2
+ },
+ {
+ "key":"sort_genre_txt",
+ "japaneseText":"ジャンルの順にならべる\n",
+ "englishUsText":"Sort by Genre\n",
+ "englishUsFontType":3,
+ "frenchText":"Trier par genre\n",
+ "frenchFontType":3,
+ "italianText":"Ordina per genere\n",
+ "italianFontType":3,
+ "germanText":"Nach Genre sortieren\n",
+ "germanFontType":3,
+ "spanishText":"Ordenar por género",
+ "spanishFontType":3,
+ "chineseTText":"依類型排序",
+ "chineseTFontType":1,
+ "koreanText":"장르 순으로 정렬한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"sort_star",
+ "japaneseText":"★の数順",
+ "englishUsText":"Sort by ★ no.",
+ "englishUsFontType":3,
+ "frenchText":"★ (croissant)",
+ "frenchFontType":3,
+ "italianText":"Per numero di ★",
+ "italianFontType":3,
+ "germanText":"★ aufsteigend",
+ "germanFontType":3,
+ "spanishText":"★ (ascendente)",
+ "spanishFontType":3,
+ "chineseTText":"依★數量",
+ "chineseTFontType":1,
+ "koreanText":"★숫자 순",
+ "koreanFontType":2
+ },
+ {
+ "key":"sort_star_txt",
+ "japaneseText":"★の数が少ない順にならべる\n",
+ "englishUsText":"Ascending ★",
+ "englishUsFontType":3,
+ "frenchText":"Trier par nombre de ★",
+ "frenchFontType":3,
+ "italianText":"Per ★ (ascendente)",
+ "italianFontType":3,
+ "germanText":"Nach ★-Anzahl sortieren",
+ "germanFontType":3,
+ "spanishText":"Ordenar por número de ★",
+ "spanishFontType":3,
+ "chineseTText":"依★數量升序",
+ "chineseTFontType":1,
+ "koreanText":"★의 개수가 적은 순으로 정렬한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"sortfilter_add_txt",
+ "japaneseText":"※むずかしさを「ぜんぶ」にしていると「ならび順」「クリア状況」はえらべません",
+ "englishUsText":"※Cannot select Sort type or Clear State when difficulty is set to All.",
+ "englishUsFontType":3,
+ "frenchText":"*Ordre/Progression indisponibles lorsque la difficulté est réglée sur Tout.",
+ "frenchFontType":3,
+ "italianText":"*Impossibile selez. Ordine o Completamento se la difficoltà è Tutto.",
+ "italianFontType":3,
+ "germanText":"*Sortierung und Abschluss-Status nicht wählbar bei \"Schwierigkeitsgrad - Alle\".",
+ "germanFontType":3,
+ "spanishText":"*No puedes seleccionar Orden o Superación cuando la dificultad es Todo.",
+ "spanishFontType":3,
+ "chineseTText":"※若是將難度設為「全部」,將無法選擇「排序順序」「通關狀況」",
+ "chineseTFontType":1,
+ "koreanText":"※난이도가 「전부」면 「정렬 순서」「클리어 상황」은 고를 수 없습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"submenu_course",
+ "japaneseText":"むずかしさ",
+ "englishUsText":"Difficulty",
+ "englishUsFontType":3,
+ "frenchText":"Difficulté",
+ "frenchFontType":3,
+ "italianText":"Difficoltà",
+ "italianFontType":3,
+ "germanText":"Schwierigkeitsgrad",
+ "germanFontType":3,
+ "spanishText":"Dificultad",
+ "spanishFontType":3,
+ "chineseTText":"難度",
+ "chineseTFontType":1,
+ "koreanText":"난이도",
+ "koreanFontType":2
+ },
+ {
+ "key":"submenu_filter_clear",
+ "japaneseText":"クリア状況",
+ "englishUsText":"Clear State",
+ "englishUsFontType":3,
+ "frenchText":"Progression",
+ "frenchFontType":3,
+ "italianText":"Completamento",
+ "italianFontType":3,
+ "germanText":"Abschluss-Status",
+ "germanFontType":3,
+ "spanishText":"Superación",
+ "spanishFontType":3,
+ "chineseTText":"通關狀況",
+ "chineseTFontType":1,
+ "koreanText":"클리어 상황",
+ "koreanFontType":2
+ },
+ {
+ "key":"submenu_filter_favorite",
+ "japaneseText":"お気に入りだけ表示",
+ "englishUsText":"Favs. Only",
+ "englishUsFontType":3,
+ "frenchText":"Fav. uniquement",
+ "frenchFontType":3,
+ "italianText":"Solo preferite",
+ "italianFontType":3,
+ "germanText":"Nur Favoriten",
+ "germanFontType":3,
+ "spanishText":"Solo favoritas",
+ "spanishFontType":3,
+ "chineseTText":"僅顯示中意樂曲",
+ "chineseTFontType":1,
+ "koreanText":"즐겨찾기만 표시",
+ "koreanFontType":2
+ },
+ {
+ "key":"submenu_sort_type",
+ "japaneseText":"ならび順",
+ "englishUsText":"Order",
+ "englishUsFontType":3,
+ "frenchText":"Ordre",
+ "frenchFontType":3,
+ "italianText":"Ordine",
+ "italianFontType":3,
+ "germanText":"Reihenfolge",
+ "germanFontType":3,
+ "spanishText":"Orden",
+ "spanishFontType":3,
+ "chineseTText":"排序順序",
+ "chineseTFontType":1,
+ "koreanText":"정렬 순서",
+ "koreanFontType":2
+ },
+ {
+ "key":"submenu_title_sort",
+ "japaneseText":"曲しぼりこみ設定",
+ "englishUsText":"Song Filters",
+ "englishUsFontType":3,
+ "frenchText":"Filtres de chanson",
+ "frenchFontType":3,
+ "italianText":"Filtri canzoni",
+ "italianFontType":3,
+ "germanText":"Song-Filter",
+ "germanFontType":3,
+ "spanishText":"Filtros de canción",
+ "spanishFontType":3,
+ "chineseTText":"分類篩選設定",
+ "chineseTFontType":1,
+ "koreanText":"곡 분류 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"style_select_button",
+ "japaneseText":"ボタンそうさ",
+ "englishUsText":"Button Controls",
+ "englishUsFontType":3,
+ "frenchText":"Commandes boutons",
+ "frenchFontType":3,
+ "italianText":"Pulsanti",
+ "italianFontType":3,
+ "germanText":"Knopf- und Tastensteuerung",
+ "germanFontType":3,
+ "spanishText":"Control por botones",
+ "spanishFontType":3,
+ "chineseTText":"按鍵操作",
+ "chineseTFontType":1,
+ "koreanText":"버튼 조작",
+ "koreanFontType":2
+ },
+ {
+ "key":"style_select_motion",
+ "japaneseText":"フリフリそうさ",
+ "englishUsText":"Motion Controls",
+ "englishUsFontType":3,
+ "frenchText":"Commandes par mouvements",
+ "frenchFontType":3,
+ "italianText":"Comandi di movimento",
+ "italianFontType":3,
+ "germanText":"Bewegungssteuerung",
+ "germanFontType":3,
+ "spanishText":"Controles por movimiento",
+ "spanishFontType":3,
+ "chineseTText":"動態演奏",
+ "chineseTFontType":1,
+ "koreanText":"모션 조작",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_apeal",
+ "japaneseText":"キャラかくにん",
+ "englishUsText":"Check",
+ "englishUsFontType":3,
+ "frenchText":"Vérifier",
+ "frenchFontType":3,
+ "italianText":"Verifica",
+ "italianFontType":3,
+ "germanText":"Überprüfen",
+ "germanFontType":3,
+ "spanishText":"Comprobar",
+ "spanishFontType":3,
+ "chineseTText":"角色確認",
+ "chineseTFontType":1,
+ "koreanText":"캐릭터 확인",
+ "koreanFontType":2
+ },
+ {
+ "key":"random_game",
+ "japaneseText":"ランダム",
+ "englishUsText":"Random",
+ "englishUsFontType":3,
+ "frenchText":"Aléatoire",
+ "frenchFontType":3,
+ "italianText":"Casuale",
+ "italianFontType":3,
+ "germanText":"Zufällig",
+ "germanFontType":3,
+ "spanishText":"Aleatorio",
+ "spanishFontType":3,
+ "chineseTText":"亂數",
+ "chineseTFontType":1,
+ "koreanText":"랜덤",
+ "koreanFontType":2
+ },
+ {
+ "key":"title_game_version",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"title_unagasi_txt",
+ "japaneseText":"スタート!",
+ "englishUsText":"Start!",
+ "englishUsFontType":3,
+ "frenchText":"Commencer !",
+ "frenchFontType":3,
+ "italianText":"Via!",
+ "italianFontType":3,
+ "germanText":"Start!",
+ "germanFontType":3,
+ "spanishText":"¡Empieza!",
+ "spanishFontType":3,
+ "chineseTText":"開始!",
+ "chineseTFontType":1,
+ "koreanText":"시작!",
+ "koreanFontType":2
+ },
+ {
+ "key":"dummy_word",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"not_found",
+ "japaneseText":"見つからない!!",
+ "englishUsText":"Not found!",
+ "englishUsFontType":3,
+ "frenchText":"Non trouvé !",
+ "frenchFontType":3,
+ "italianText":"Non trovato!",
+ "italianFontType":3,
+ "germanText":"Nicht gefunden!",
+ "germanFontType":3,
+ "spanishText":"見つからない!!",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"user_name_p1",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"user_name_p2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"user_name_p3",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"user_name_p4",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_name",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_ttl",
+ "japaneseText":"ヘルプ",
+ "englishUsText":"Help",
+ "englishUsFontType":3,
+ "frenchText":"Aide",
+ "frenchFontType":3,
+ "italianText":"Aiuto",
+ "italianFontType":3,
+ "germanText":"Hilfe",
+ "germanFontType":3,
+ "spanishText":"Ayuda",
+ "spanishFontType":3,
+ "chineseTText":"說明",
+ "chineseTFontType":1,
+ "koreanText":"도움말",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_menu_button",
+ "japaneseText":"ボタンのあそびかた",
+ "englishUsText":"Using Button Controls",
+ "englishUsFontType":3,
+ "frenchText":"Utiliser les commandes boutons",
+ "frenchFontType":3,
+ "italianText":"Usare i pulsanti",
+ "italianFontType":3,
+ "germanText":"Knöpfe und Tasten verwenden",
+ "germanFontType":3,
+ "spanishText":"Usar control por botones",
+ "spanishFontType":3,
+ "chineseTText":"按鍵的玩法",
+ "chineseTFontType":1,
+ "koreanText":"버튼 플레이 방법",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_menu_touch",
+ "japaneseText":"タッチのあそびかた",
+ "englishUsText":"Using Touch Controls",
+ "englishUsFontType":3,
+ "frenchText":"Utiliser les commandes tactiles",
+ "frenchFontType":3,
+ "italianText":"Usare i comandi touch",
+ "italianFontType":3,
+ "germanText":"Berührungssteuerung verwenden",
+ "germanFontType":3,
+ "spanishText":"Usar control táctil",
+ "spanishFontType":3,
+ "chineseTText":"觸控的玩法",
+ "chineseTFontType":1,
+ "koreanText":"터치 플레이 방법",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_menu_furifuri",
+ "japaneseText":"フリフリ演奏のあそびかた",
+ "englishUsText":"Using Motion Controls",
+ "englishUsFontType":3,
+ "frenchText":"Utiliser les commandes par mouvements",
+ "frenchFontType":3,
+ "italianText":"Usare i comandi di movimento",
+ "italianFontType":3,
+ "germanText":"Bewegungssteuerung verwenden",
+ "germanFontType":3,
+ "spanishText":"Usar control por movimiento",
+ "spanishFontType":3,
+ "chineseTText":"動態演奏的玩法",
+ "chineseTFontType":1,
+ "koreanText":"모션 조작 플레이 방법",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_menu_tatacon",
+ "japaneseText":"太鼓コントローラーのあそびかた",
+ "englishUsText":"Using the Drum Controller",
+ "englishUsFontType":3,
+ "frenchText":"Utiliser le contrôleur tambour",
+ "frenchFontType":3,
+ "italianText":"Usare il controller tamburo",
+ "italianFontType":3,
+ "germanText":"Trommel-Controller verwenden",
+ "germanFontType":3,
+ "spanishText":"Usar el mando tambor",
+ "spanishFontType":3,
+ "chineseTText":"太鼓控制器的玩法",
+ "chineseTFontType":1,
+ "koreanText":"북 컨트롤러의 플레이 방법",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_menu_test",
+ "japaneseText":"フリフリ演奏をためす",
+ "englishUsText":"Try Motion Controls",
+ "englishUsFontType":3,
+ "frenchText":"Essayer les commandes par mouvements",
+ "frenchFontType":3,
+ "italianText":"Prova i comandi di movimento",
+ "italianFontType":3,
+ "germanText":"Bewegungssteuerung testen",
+ "germanFontType":3,
+ "spanishText":"Probar control por movimiento",
+ "spanishFontType":3,
+ "chineseTText":"體驗動態演奏",
+ "chineseTFontType":1,
+ "koreanText":"모션 조작을 해본다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_desc_button",
+ "japaneseText":"ボタンでのあそびかたを説明します",
+ "englishUsText":"Explains how to play the game using button controls.",
+ "englishUsFontType":3,
+ "frenchText":"Explique comment jouer au jeu en utilisant les commandes boutons.",
+ "frenchFontType":3,
+ "italianText":"Impara a giocare usando i pulsanti.",
+ "italianFontType":3,
+ "germanText":"Erläutert, wie du mit Knöpfen und Tasten spielst.",
+ "germanFontType":3,
+ "spanishText":"Aprende a jugar utilizando el control por botones.",
+ "spanishFontType":3,
+ "chineseTText":"說明按鍵的玩法",
+ "chineseTFontType":1,
+ "koreanText":"버튼 플레이 방법을 설명합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_desc_touch",
+ "japaneseText":"タッチでのあそびかたを説明します\n※タッチは携帯モードのときにできます",
+ "englishUsText":"Explains how to play the game using touch controls.\n*Touch controls are only available in Handheld mode.",
+ "englishUsFontType":3,
+ "frenchText":"Explique comment jouer au jeu en utilisant les commandes tactiles.\n*Les commandes tactiles ne sont disponibles qu'en mode portable.",
+ "frenchFontType":3,
+ "italianText":"Impara a giocare usando i comandi touch.\n*I comandi touch sono disponibili solo nella modalità portatile.",
+ "italianFontType":3,
+ "germanText":"Erläutert, wie du mit Berührungssteuerung spielst.\n*Berührungssteuerung ist ausschließlich im Handheld-Modus verfügbar.",
+ "germanFontType":3,
+ "spanishText":"Aprende a jugar utilizando el control táctil.\n*Control táctil solo disponible en modo portátil.",
+ "spanishFontType":3,
+ "chineseTText":"說明觸控的玩法\n※觸控僅有在手提模式下才能使用",
+ "chineseTFontType":1,
+ "koreanText":"터치 플레이 방법을 설명합니다\n※터치는 휴대 모드일 때 가능합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_desc_furifuri",
+ "japaneseText":"「Joy-Con」を使った、フリフリ演奏のあそびかたを説明します\n※番号順でのプレイをオススメします",
+ "englishUsText":"Explains how to play the game using the Joy-Con motion controls.\nWe recommend following the order provided.",
+ "englishUsFontType":3,
+ "frenchText":"Explique comment jouer au jeu en utilisant les commandes par mouvements\navec les Joy-Con. Il est recommandé de suivre l'ordre donné.",
+ "frenchFontType":3,
+ "italianText":"Impara a giocare usando i comandi di movimento del Joy-Con.\nSi consiglia di seguire l'ordine indicato.",
+ "italianFontType":3,
+ "germanText":"Erläutert, wie du mit der Bewegungssteuerung der Joy-Con spielst.\nWir empfehlen die angegebene Reihenfolge.",
+ "germanFontType":3,
+ "spanishText":"Explica cómo jugar usando el control por movimiento del Joy-Con.\nRecomendamos seguir el orden estipulado.",
+ "spanishFontType":3,
+ "chineseTText":"說明使用「Joy-Con控制器」的動態演奏玩法\n※建議按照編號順序進行遊玩",
+ "chineseTFontType":1,
+ "koreanText":"「Joy-Con」을 이용한 모션 조작 플레이 방법을 설명합니다\n※번호 순서대로 플레이하는 것을 추천합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_desc_tatacon",
+ "japaneseText":"太鼓コントローラーでのあそびかたを説明します",
+ "englishUsText":"Explains how to play the game using the drum controller.",
+ "englishUsFontType":3,
+ "frenchText":"Explique comment jouer au jeu en utilisant le contrôleur tambour.",
+ "frenchFontType":3,
+ "italianText":"Impara a giocare usando il controller tamburo.",
+ "italianFontType":3,
+ "germanText":"Erläutert, wie du mit dem Trommel-Controller spielst.",
+ "germanFontType":3,
+ "spanishText":"Aprende a jugar utilizando el mando tambor.",
+ "spanishFontType":3,
+ "chineseTText":"說明太鼓控制器的玩法",
+ "chineseTFontType":1,
+ "koreanText":"북 컨트롤러의 플레이 방법을 설명합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_desc_test",
+ "japaneseText":"「Joy-Con」をふってフリフリ演奏をためしてみます\n※番号順でのプレイをオススメします",
+ "englishUsText":"Try the Joy-Con motion controls for yourself.\nWe recommend following the order provided.",
+ "englishUsFontType":3,
+ "frenchText":"Essaie toi-même les commandes par mouvements avec les Joy-Con.\nIl est recommandé de suivre l'ordre donné.",
+ "frenchFontType":3,
+ "italianText":"Prova i comandi di movimento del Joy-Con.\nSi consiglia di seguire l'ordine indicato.",
+ "italianFontType":3,
+ "germanText":"Probiere die Bewegungssteuerung der Joy-Con aus.\nWir empfehlen die angegebene Reihenfolge.",
+ "germanFontType":3,
+ "spanishText":"Prueba el control por movimiento del Joy-Con.\nRecomendamos seguir el orden estipulado.",
+ "spanishFontType":3,
+ "chineseTText":"體驗揮動「Joy-Con控制器」的動態演奏\n※建議按照編號順序進行遊玩",
+ "chineseTFontType":1,
+ "koreanText":"「Joy-Con」을 흔들어서 모션 조작을 해봅니다\n※번호 순서대로 플레이하는 것을 추천합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_test_don",
+ "japaneseText":"ドンをためす",
+ "englishUsText":"Try Don",
+ "englishUsFontType":3,
+ "frenchText":"Essayer Don",
+ "frenchFontType":3,
+ "italianText":"Prova note Don",
+ "italianFontType":3,
+ "germanText":"Probier Don aus",
+ "germanFontType":3,
+ "spanishText":"Probar Don",
+ "spanishFontType":3,
+ "chineseTText":"咚的體驗",
+ "chineseTFontType":1,
+ "koreanText":"쿵을 해본다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_test_katsu",
+ "japaneseText":"カッをためす",
+ "englishUsText":"Try Ka",
+ "englishUsFontType":3,
+ "frenchText":"Essayer Ka",
+ "frenchFontType":3,
+ "italianText":"Prova note Ka",
+ "italianFontType":3,
+ "germanText":"Probier Ka aus",
+ "germanFontType":3,
+ "spanishText":"Probar Ka",
+ "spanishFontType":3,
+ "chineseTText":"咔的體驗",
+ "chineseTFontType":1,
+ "koreanText":"딱을 해본다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_test_iroiro",
+ "japaneseText":"ドンとカッをためす",
+ "englishUsText":"Try Don & Ka",
+ "englishUsFontType":3,
+ "frenchText":"Essayer Don et Ka",
+ "frenchFontType":3,
+ "italianText":"Prova note Don e Ka",
+ "italianFontType":3,
+ "germanText":"Probier Don & Ka",
+ "germanFontType":3,
+ "spanishText":"Probar Don y Ka",
+ "spanishFontType":3,
+ "chineseTText":"混雜咚與咔的體驗",
+ "chineseTFontType":1,
+ "koreanText":"쿵과 딱을 해본다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_notice_ttl",
+ "japaneseText":"大事なお知らせ",
+ "englishUsText":"Important Notice",
+ "englishUsFontType":3,
+ "frenchText":"Remarque importante",
+ "frenchFontType":3,
+ "italianText":"Avviso importante",
+ "italianFontType":3,
+ "germanText":"Wichtiger Hinweis",
+ "germanFontType":3,
+ "spanishText":"Aviso importante",
+ "spanishFontType":3,
+ "chineseTText":"重要通知",
+ "chineseTFontType":1,
+ "koreanText":"중요한 정보",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_setting_ttl",
+ "japaneseText":"そうさタイプの設定",
+ "englishUsText":"Control Type Settings",
+ "englishUsFontType":3,
+ "frenchText":"Paramètres de type de contrôleur",
+ "frenchFontType":3,
+ "italianText":"Impostazioni schemi comandi",
+ "italianFontType":3,
+ "germanText":"Steuerungstyp-Einstellungen",
+ "germanFontType":3,
+ "spanishText":"Ajustes del tipo de control",
+ "spanishFontType":3,
+ "chineseTText":"操作類型設定",
+ "chineseTFontType":1,
+ "koreanText":"조작 타입 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_adjust_ttl",
+ "japaneseText":"音符調整について",
+ "englishUsText":"Calibrating Music Notes",
+ "englishUsFontType":3,
+ "frenchText":"Calibrage des notes de musique",
+ "frenchFontType":3,
+ "italianText":"Calibrare le note musicali",
+ "italianFontType":3,
+ "germanText":"Noten kalibrieren",
+ "germanFontType":3,
+ "spanishText":"Calibrar notas musicales",
+ "spanishFontType":3,
+ "chineseTText":"關於音符調整",
+ "chineseTFontType":1,
+ "koreanText":"음표 조정에 대해서",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_button_ttl",
+ "japaneseText":"ボタンのあそびかた",
+ "englishUsText":"Using Button Controls",
+ "englishUsFontType":3,
+ "frenchText":"Utiliser les commandes boutons",
+ "frenchFontType":3,
+ "italianText":"Usare i pulsanti",
+ "italianFontType":3,
+ "germanText":"Knöpfe und Tasten verwenden",
+ "germanFontType":3,
+ "spanishText":"Usar control por botones",
+ "spanishFontType":3,
+ "chineseTText":"按鍵的玩法",
+ "chineseTFontType":1,
+ "koreanText":"버튼 플레이 방법",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_button_page1",
+ "japaneseText":"ボタンそうさのあそびかたを説明するよ",
+ "englishUsText":"Here’s how to play the game with button controls!",
+ "englishUsFontType":3,
+ "frenchText":"Voici comment jouer au jeu\navec les commandes boutons !",
+ "frenchFontType":3,
+ "italianText":"Ecco come si gioca usando i pulsanti!",
+ "italianFontType":3,
+ "germanText":"So spielst du mit Knöpfen und Tasten!",
+ "germanFontType":3,
+ "spanishText":"¡Así se juega usando el control por botones!",
+ "spanishFontType":3,
+ "chineseTText":"我來介紹按鍵操作的玩法吧",
+ "chineseTFontType":1,
+ "koreanText":"버튼 조작으로 플레이하는 법을 설명할게",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_button_page2",
+ "japaneseText":"流れてくる音符がワクに重なったら\nボタンをおしてね",
+ "englishUsText":"When a note overlaps the frame,\nthat’s your cue to press the button.",
+ "englishUsFontType":3,
+ "frenchText":"Tu dois appuyer sur le bouton\nau moment où la note\npasse sur le cadre.",
+ "frenchFontType":3,
+ "italianText":"Premi il pulsante quando\nuna nota tocca la linea.",
+ "italianFontType":3,
+ "germanText":"Wandert eine Note über den Rahmen,\nmusst du in dem Moment den Knopf \noder die Taste drücken.",
+ "germanFontType":3,
+ "spanishText":"Cuando una nota entra en el\nmarco, hay que pulsar el botón.",
+ "spanishFontType":3,
+ "chineseTText":"當流動的音符與框框重疊時就按下按鍵吧",
+ "chineseTFontType":1,
+ "koreanText":"이동하는 음표가 테두리와 겹쳐졌을 때\n버튼을 누르자",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_button_page3",
+ "japaneseText":"赤い音符は、このボタンをおすんだ!",
+ "englishUsText":"Press these buttons for red notes!",
+ "englishUsFontType":3,
+ "frenchText":"Appuie sur un de ces boutons\npour les notes rouges !",
+ "frenchFontType":3,
+ "italianText":"Premi uno di questi pulsanti\nse la nota è rossa!",
+ "italianFontType":3,
+ "germanText":"Drücke diese Knöpfe für rote Noten!",
+ "germanFontType":3,
+ "spanishText":"Pulsa uno de estos botones\nsi la nota es roja.",
+ "spanishFontType":3,
+ "chineseTText":"遇到紅色音符要按下這個鍵!",
+ "chineseTFontType":1,
+ "koreanText":"빨간 음표는 이 버튼을 눌러!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_button_page4",
+ "japaneseText":"青い音符は、このボタンをおすんだ!",
+ "englishUsText":"Press these buttons for blue notes!",
+ "englishUsFontType":3,
+ "frenchText":"Appuie sur un de ces boutons\npour les notes bleues !",
+ "frenchFontType":3,
+ "italianText":"Premi uno di quest'altri pulsanti\nse la nota è blu!",
+ "italianFontType":3,
+ "germanText":"Drücke diese Knöpfe für blaue Noten!",
+ "germanFontType":3,
+ "spanishText":"Pulsa uno de estos botones\nsi la nota es azul.",
+ "spanishFontType":3,
+ "chineseTText":"遇到藍色音符則按下這個鍵!",
+ "chineseTFontType":1,
+ "koreanText":"파란 음표는 이 버튼을 눌러!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_button_page5",
+ "japaneseText":"大きな音符は左右同時にたたくと\n高得点だ!",
+ "englishUsText":"For big notes, press buttons on\nboth sides simultaneously to get\nextra points!",
+ "englishUsFontType":3,
+ "frenchText":"Pour les grosses notes,\nappuie sur un bouton de chaque\ncôté à la fois pour obtenir\ndes points supplémentaires !",
+ "frenchFontType":3,
+ "italianText":"Per le note grandi, premi\ncontemporaneamente i pulsanti\nda entrambe le parti per ottenere\npunti extra!",
+ "italianFontType":3,
+ "germanText":"Drücke bei großen Noten die\nentsprechenden Knöpfe oder Tasten\nauf beiden Seiten gleichzeitig, um\ndir Extrapunkte zu sichern!",
+ "germanFontType":3,
+ "spanishText":"¡Pulsa un botón de cada lado a\nla vez para las notas grandes y\nconsigue puntos adicionales!",
+ "spanishFontType":3,
+ "chineseTText":"遇到大型音符時,左右同時按下\n可獲得高分!",
+ "chineseTFontType":1,
+ "koreanText":"커다란 음표는 좌우를 동시에 두드리면\n고득점이야!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_button_page6",
+ "japaneseText":"黄色い音符は、ひたすら連打しよう!",
+ "englishUsText":"Yellow music notes are your\ncue to do a drumroll!",
+ "englishUsFontType":3,
+ "frenchText":"Quand tu vois des notes jaunes,\nfais un roulement de tambour !",
+ "frenchFontType":3,
+ "italianText":"Se la nota è gialla,\nesegui un rullo di tamburo!",
+ "italianFontType":3,
+ "germanText":"Gelbe Noten \nsignalisieren einen Trommelwirbel!",
+ "germanFontType":3,
+ "spanishText":"Las notas amarillas\nindican un redoble.",
+ "spanishFontType":3,
+ "chineseTText":"遇到黃色音符就拼命連打!",
+ "chineseTFontType":1,
+ "koreanText":"노란 음표는 계속 연타하자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_button_page7",
+ "japaneseText":"「ふうせん音符」と「こづち音符」も\nとにかく連打しよう!",
+ "englishUsText":"Balloon notes and mallet notes\ncall for a drumroll too!",
+ "englishUsFontType":3,
+ "frenchText":"Les notes ballon et maillet\nnécessitent aussi\nun roulement de tambour !",
+ "frenchFontType":3,
+ "italianText":"Anche le note a palloncino e a martello\nrichiedono il rullo di tamburo!",
+ "italianFontType":3,
+ "germanText":"Bei Ballon- und Schlägel-Noten\nmuss auch ein Trommelwirbel folgen!",
+ "germanFontType":3,
+ "spanishText":"¡Las notas con un mazo\no un globo también!",
+ "spanishFontType":3,
+ "chineseTText":"遇到「氣球音符」與「小槌音符」時\n連打就對了~!",
+ "chineseTFontType":1,
+ "koreanText":"「풍선 음표」와 「금망치 음표」도\n아무튼 연타하자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_button_page8",
+ "japaneseText":"タイミングよくたたけば\n魂(たましい)ゲージがアップ!",
+ "englishUsText":"Hit the notes at just the right time\nto fill up your Soul gauge!",
+ "englishUsFontType":3,
+ "frenchText":"Frappe les notes au bon moment\npour remplir ta jauge d'âme !",
+ "frenchFontType":3,
+ "italianText":"Suona le note al momento giusto\nper riempire l'indicatore Anima!",
+ "italianFontType":3,
+ "germanText":"Triffst du Noten genau richtig,\nfüllt sich die Seelenanzeige!",
+ "germanFontType":3,
+ "spanishText":"Toca las notas en el momento justo\npara llenar el indicador de Alma.",
+ "spanishFontType":3,
+ "chineseTText":"抓準時機按鍵的話,會提升魂量表!",
+ "chineseTFontType":1,
+ "koreanText":"타이밍에 맞춰 두드리면\n혼 게이지가 업!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_button_page9",
+ "japaneseText":"うまく演奏してノルマクリアを目指そう!",
+ "englishUsText":"Stay on rhythm and\ntry to finish the song!",
+ "englishUsFontType":3,
+ "frenchText":"Garde le rythme et\nessaie de finir la chanson !",
+ "frenchFontType":3,
+ "italianText":"Segui il ritmo e cerca di\narrivare alla fine!",
+ "italianFontType":3,
+ "germanText":"Bleib im Takt und\nversuch den Song abzuschließen!",
+ "germanFontType":3,
+ "spanishText":"¡Sigue el ritmo\ne intenta acabar la canción!",
+ "spanishFontType":3,
+ "chineseTText":"以順利按鍵通關為目標!",
+ "chineseTFontType":1,
+ "koreanText":"잘 연주해서 클리어를 노리자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_touch_ttl",
+ "japaneseText":"タッチのあそびかた",
+ "englishUsText":"Using Touch Controls",
+ "englishUsFontType":3,
+ "frenchText":"Utiliser les commandes tactiles",
+ "frenchFontType":3,
+ "italianText":"Usare i comandi touch",
+ "italianFontType":3,
+ "germanText":"Berührungssteuerung verwenden",
+ "germanFontType":3,
+ "spanishText":"Usar control táctil",
+ "spanishFontType":3,
+ "chineseTText":"觸控的玩法",
+ "chineseTFontType":1,
+ "koreanText":"터치 플레이 방법",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_touch_page1",
+ "japaneseText":"タッチそうさのあそびかたを説明するよ!",
+ "englishUsText":"Here’s how to play the game with touch controls!",
+ "englishUsFontType":3,
+ "frenchText":"Voici comment jouer au jeu\navec les commandes tactiles !",
+ "frenchFontType":3,
+ "italianText":"Ecco come si gioca usando\ni comandi touch!",
+ "italianFontType":3,
+ "germanText":"So spielst du mit Berührungssteuerung!",
+ "germanFontType":3,
+ "spanishText":"¡Aprende a jugar con el\ncontrol táctil!",
+ "spanishFontType":3,
+ "chineseTText":"我來介紹觸控操作的玩法吧!",
+ "chineseTFontType":1,
+ "koreanText":"터치 조작으로 플레이하는 법을 설명할게!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_touch_page2",
+ "japaneseText":"流れてくる音符がワクに重なったら\n画面をタッチしてね",
+ "englishUsText":"When a note overlaps the frame,\nthat’s your cue to\ntouch the screen.",
+ "englishUsFontType":3,
+ "frenchText":"Tu dois toucher l'écran tactile\nau moment où la note\npasse sur le cadre.",
+ "frenchFontType":3,
+ "italianText":"Tocca lo schermo quando\nuna nota tocca la linea.",
+ "italianFontType":3,
+ "germanText":"Wandert eine Note über den Rahmen,\nmusst du in dem Moment\nden Touchscreen berühren.",
+ "germanFontType":3,
+ "spanishText":"Cuando una nota entra en el\nmarco, hay que\ntocar la pantalla.",
+ "spanishFontType":3,
+ "chineseTText":"當流動的音符與框框重疊時就點擊畫面吧",
+ "chineseTFontType":1,
+ "koreanText":"이동하는 음표가 테두리와 겹쳐졌을 때\n화면을 터치해줘",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_touch_page3",
+ "japaneseText":"赤い音符は、ここをタッチしよう",
+ "englishUsText":"Touch here for red notes",
+ "englishUsFontType":3,
+ "frenchText":"Touche ici pour les notes rouges.",
+ "frenchFontType":3,
+ "italianText":"Tocca qui se la nota è rossa.",
+ "italianFontType":3,
+ "germanText":"Hier bei roten Noten berühren.",
+ "germanFontType":3,
+ "spanishText":"Notas rojas: toca aquí.",
+ "spanishFontType":3,
+ "chineseTText":"遇到紅色音符要點擊這裡",
+ "chineseTFontType":1,
+ "koreanText":"빨간 음표는 여기를 터치하자",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_touch_page4",
+ "japaneseText":"青い音符は、ここをタッチしよう",
+ "englishUsText":"Touch here for blue notes",
+ "englishUsFontType":3,
+ "frenchText":"Touche ici pour les notes bleues.",
+ "frenchFontType":3,
+ "italianText":"Tocca qui se la nota è blu.",
+ "italianFontType":3,
+ "germanText":"Hier bei blauen Noten berühren.",
+ "germanFontType":3,
+ "spanishText":"Notas azules: toca aquí.",
+ "spanishFontType":3,
+ "chineseTText":"遇到藍色音符則點擊這裡",
+ "chineseTFontType":1,
+ "koreanText":"파란 음표는 여기를 터치하자",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_touch_page5",
+ "japaneseText":"大きな音符は左右同時にタッチで高得点だ!",
+ "englishUsText":"For big notes, touch both areas\ntogether to get extra points!",
+ "englishUsFontType":3,
+ "frenchText":"Pour les grosses notes,\ntouche les deux zones\nà la fois pour obtenir\ndes points supplémentaires !",
+ "frenchFontType":3,
+ "italianText":"Tocca entrambe le aree per le note grandi\nper ottenere punti extra!",
+ "italianFontType":3,
+ "germanText":"Berühre bei großen Noten beide Bereiche \ngleichzeitig, um dir Extrapunkte zu sichern!",
+ "germanFontType":3,
+ "spanishText":"¡Toca las dos zonas para las\nnotas grandes\ny consigue puntos adicionales!",
+ "spanishFontType":3,
+ "chineseTText":"遇到大型音符時,左右同時點擊可獲得高分!",
+ "chineseTFontType":1,
+ "koreanText":"커다란 음표는 좌우를 동시에 터치하면\n고득점이야!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_touch_page6",
+ "japaneseText":"黄色い音符は、ひたすら連タッチしよう!",
+ "englishUsText":"Yellow music notes are your\ncue to do a touch drumroll!",
+ "englishUsFontType":3,
+ "frenchText":"Quand tu vois des notes jaunes,\nfais un roulement\nde tambour tactile !",
+ "frenchFontType":3,
+ "italianText":"Se la nota è gialla,\nesegui un rullo di tamburo touch!",
+ "italianFontType":3,
+ "germanText":"Gelbe Noten \nsignalisieren einen Touch-Trommelwirbel!",
+ "germanFontType":3,
+ "spanishText":"Las notas amarillas indican\ncuándo tocar un redoble.",
+ "spanishFontType":3,
+ "chineseTText":"遇到黃色音符就拼命連點!",
+ "chineseTFontType":1,
+ "koreanText":"노란 음표는 계속 연속 터치하자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_touch_page7",
+ "japaneseText":"「ふうせん音符」と「こづち音符」も\nとにかく連タッチ~!!",
+ "englishUsText":"Balloon notes and mallet notes\ncall for a drumroll too!",
+ "englishUsFontType":3,
+ "frenchText":"Les notes ballon et maillet\nnécessitent aussi\nun roulement de tambour !",
+ "frenchFontType":3,
+ "italianText":"Anche le note a palloncino e a martello\nrichiedono il rullo di tamburo!",
+ "italianFontType":3,
+ "germanText":"Bei Ballon- und Schlägel-Noten\nmuss auch ein Trommelwirbel folgen!",
+ "germanFontType":3,
+ "spanishText":"¡Las notas con un mazo\no un globo también!",
+ "spanishFontType":3,
+ "chineseTText":"遇到「氣球音符」與「小槌音符」時\n連點就對了~!",
+ "chineseTFontType":1,
+ "koreanText":"「풍선 음표」와 「금망치 음표」도\n아무튼 연속 터치~!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_touch_page8",
+ "japaneseText":"タイミングよくタッチすれば\n魂(たましい)ゲージがアップ!",
+ "englishUsText":"Touch the notes at just the right time\nto fill up your Soul Gauge!",
+ "englishUsFontType":3,
+ "frenchText":"Touche les notes au bon moment\npour remplir ta jauge d'âme !",
+ "frenchFontType":3,
+ "italianText":"Suona le note al momento giusto\nper riempire l'indicatore Anima!",
+ "italianFontType":3,
+ "germanText":"Berührst du Noten zur richtigen Zeit,\nfüllt sich die Seelenanzeige!",
+ "germanFontType":3,
+ "spanishText":"Toca las notas en el momento justo\npara llenar el indicador de Alma.",
+ "spanishFontType":3,
+ "chineseTText":"抓準時機點擊的話,就會讓魂量表提升!",
+ "chineseTFontType":1,
+ "koreanText":"타이밍에 맞춰 터치하면\n혼 게이지가 업!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_touch_page9",
+ "japaneseText":"うまくタッチしてノルマクリアを目指そう!",
+ "englishUsText":"Stay on rhythm and\ntry to finish the song!",
+ "englishUsFontType":3,
+ "frenchText":"Garde le rythme et\nessaie de finir la chanson !",
+ "frenchFontType":3,
+ "italianText":"Segui il ritmo e cerca di\narrivare alla fine!",
+ "italianFontType":3,
+ "germanText":"Bleib im Takt und \nversuch den Song abzuschließen!",
+ "germanFontType":3,
+ "spanishText":"¡Sigue el ritmo\ne intenta acabar la canción!",
+ "spanishFontType":3,
+ "chineseTText":"以順利觸控通關為目標!",
+ "chineseTFontType":1,
+ "koreanText":"잘 터치해서 클리어를 노리자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_furifuri_ttl",
+ "japaneseText":"フリフリ演奏のあそびかた",
+ "englishUsText":"Using Motion Controls",
+ "englishUsFontType":3,
+ "frenchText":"Utiliser les commandes par mouvements",
+ "frenchFontType":3,
+ "italianText":"Usare i comandi di movimento",
+ "italianFontType":3,
+ "germanText":"Bewegungssteuerung verwenden",
+ "germanFontType":3,
+ "spanishText":"Usar control por movimiento",
+ "spanishFontType":3,
+ "chineseTText":"動態演奏的玩法",
+ "chineseTFontType":1,
+ "koreanText":"모션 조작 플레이 방법",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_furifuri_page1",
+ "japaneseText":"フリフリ演奏のあそびかたを説明するよ!",
+ "englishUsText":"Here’s how to play the game using motion controls!",
+ "englishUsFontType":3,
+ "frenchText":"Voici comment jouer au jeu avec\nles commandes par mouvements !",
+ "frenchFontType":3,
+ "italianText":"Ecco come si gioca usando\ni comandi di movimento!",
+ "italianFontType":3,
+ "germanText":"So spielst du mit Bewegungssteuerung!",
+ "germanFontType":3,
+ "spanishText":"¡Así se juega usando el control por movimiento!",
+ "spanishFontType":3,
+ "chineseTText":"我來介紹動態操作的玩法吧!",
+ "chineseTFontType":1,
+ "koreanText":"모션 조작으로 플레이하는 법을 설명할게!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_furifuri_page2",
+ "japaneseText":"流れてくる音符がワクに重なったら\n「Joy-Con」をふってね",
+ "englishUsText":"When a note overlaps the frame,\nthat’s your cue to\nshake the Joy-Con.",
+ "englishUsFontType":3,
+ "frenchText":"Tu dois secouer le Joy-Con\nau moment où la note\npasse sur le cadre.",
+ "frenchFontType":3,
+ "italianText":"Scuoti il Joy-Con quando\nuna nota tocca la linea.",
+ "italianFontType":3,
+ "germanText":"Wandert eine Note über den Rahmen,\nmusst du in dem Moment den Joy-Con \nbewegen.",
+ "germanFontType":3,
+ "spanishText":"Cuando una nota entra en el\nmarco, hay que\nagitar el mando Joy-Con.",
+ "spanishFontType":3,
+ "chineseTText":"當流動的音符與框框重疊時就揮動「Joy-Con控制器」吧",
+ "chineseTFontType":1,
+ "koreanText":"이동하는 음표가 테두리와 겹쳐졌을 때\n「Joy-Con」을 흔들자",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_furifuri_page3",
+ "japaneseText":"赤い音符は、まっすぐふり下ろそう!",
+ "englishUsText":"Swing straight down for red notes!",
+ "englishUsFontType":3,
+ "frenchText":"Secoue bien droit\npour les notes rouges !",
+ "frenchFontType":3,
+ "italianText":"Fallo oscillare\nverso il basso\nse la nota è rossa!",
+ "italianFontType":3,
+ "germanText":"Bei roten Noten\ngerade runterbewegen.",
+ "germanFontType":3,
+ "spanishText":"¡Notas rojas: mueve hacia abajo!",
+ "spanishFontType":3,
+ "chineseTText":"遇到紅色音符要垂直向下揮",
+ "chineseTFontType":1,
+ "koreanText":"빨간 음표는 똑바로 아래로 흔들자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_furifuri_page4",
+ "japaneseText":"青い音符は、ななめにふり下ろそう!",
+ "englishUsText":"Swing diagonally down\nfor blue notes!",
+ "englishUsFontType":3,
+ "frenchText":"Secoue en diagonale\npour les notes bleues !",
+ "frenchFontType":3,
+ "italianText":"Fallo oscillare\nverso il basso\nin diagonale se la nota è blu!",
+ "italianFontType":3,
+ "germanText":"Bei blauen Noten\ndiagonal runterbewegen.",
+ "germanFontType":3,
+ "spanishText":"¡Notas azules: mueve en diagonal!",
+ "spanishFontType":3,
+ "chineseTText":"遇到藍色音符要傾斜向下揮",
+ "chineseTFontType":1,
+ "koreanText":"파란 음표는 비스듬하게 아래로 흔들자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_furifuri_page5",
+ "japaneseText":"大きな音符は左右同時にふるか\nすばやく手をうごかすと高得点!",
+ "englishUsText":"For big notes, shake one hand\nquickly or shake left and right\ntogether to get extra points!",
+ "englishUsFontType":3,
+ "frenchText":"Pour les grosses notes, secoue\nune main rapidement ou secoue\nà gauche et à droite en simultané\npour obtenir plus de points !",
+ "frenchFontType":3,
+ "italianText":"Muovi rapidamente una mano\no scuoti mano sinistra e destra\ninsieme per le note grandi\nper ottenere punti extra!",
+ "italianFontType":3,
+ "germanText":"Um bei großen Noten Extrapunkte zu \nsammeln, kannst du eine schnelle \nHandbewegung machen oder beide \nHände zugleich bewegen!",
+ "germanFontType":3,
+ "spanishText":"¡En notas grandes, agita rápido\nuna mano o las dos a la vez\npara ganar puntos extra!",
+ "spanishFontType":3,
+ "chineseTText":"遇到大型音符時,左右同時揮動可獲得高分!\n迅速揮動一邊也OK",
+ "chineseTFontType":1,
+ "koreanText":"커다란 음표는 좌우를 동시에 흔들거나\n빠르게 손을 움직이면 고득점!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_furifuri_page6",
+ "japaneseText":"黄色い音符は、ひたすらふってみよう!",
+ "englishUsText":"Yellow music notes are your\ncue to shake like crazy!",
+ "englishUsFontType":3,
+ "frenchText":"Quand tu vois des notes jaunes,\nsecoue à fond !",
+ "frenchFontType":3,
+ "italianText":"Se la nota è gialla,\nscuotilo rapidamente!",
+ "italianFontType":3,
+ "germanText":"Gelbe Noten signalisieren einen \nTrommelwirbel, zu dem du beide \nHände schnell bewegen musst!",
+ "germanFontType":3,
+ "spanishText":"¡Las notas amarillas señalan\nque hay que empezar a agitar!",
+ "spanishFontType":3,
+ "chineseTText":"遇到黃色音符就拼命連揮!",
+ "chineseTFontType":1,
+ "koreanText":"노란 음표는 계속 흔들자!\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_furifuri_page7",
+ "japaneseText":"ふうせん音符と、こづち音符も\nとにかくふりまくろう!!",
+ "englishUsText":"Balloon notes and mallet notes\ncall for lots of shaking too!",
+ "englishUsFontType":3,
+ "frenchText":"Les notes ballon et maillet\nnécessitent aussi\nde secouer à fond !",
+ "frenchFontType":3,
+ "italianText":"Scuoti rapidamente anche per le\nnote a palloncino e a martello!",
+ "italianFontType":3,
+ "germanText":"Auch Ballon- und Schlägel-Noten\nsignalisieren einen Trommelwirbel,\nzu dem du beide Hände wie dargestellt\nbewegen musst!",
+ "germanFontType":3,
+ "spanishText":"¡Las notas con un mazo\no un globo también!",
+ "spanishFontType":3,
+ "chineseTText":"遇到「氣球音符」與「小槌音符」時\n連揮就對了~!",
+ "chineseTFontType":1,
+ "koreanText":"풍선 음표와 금망치 음표도\n아무튼 마구 흔들자!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_furifuri_page8",
+ "japaneseText":"上手に演奏できれば\n魂(たましい)ゲージがアップ!",
+ "englishUsText":"Perform well to fill up\nyour Soul gauge!",
+ "englishUsFontType":3,
+ "frenchText":"Concentre-toi et joue bien\npour remplir ta jauge d'âme !",
+ "frenchFontType":3,
+ "italianText":"Suona le note al momento giusto\nper riempire l'indicatore Anima!",
+ "italianFontType":3,
+ "germanText":"Machst du es gut,\nfüllt sich die Seelenanzeige!",
+ "germanFontType":3,
+ "spanishText":"¡Hazlo bien para llenar\nel indicador de Alma!",
+ "spanishFontType":3,
+ "chineseTText":"抓準時機揮動的話,就會讓魂量表提升!",
+ "chineseTFontType":1,
+ "koreanText":"잘 연주하면 혼 게이지가 업!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_furifuri_page9",
+ "japaneseText":"うまくふってノルマクリアを目指そう!",
+ "englishUsText":"Stay in rhythm and try\nto finish the song!",
+ "englishUsFontType":3,
+ "frenchText":"Garde le rythme et\nessaie de finir la chanson !",
+ "frenchFontType":3,
+ "italianText":"Segui il ritmo e cerca di\narrivare alla fine!",
+ "italianFontType":3,
+ "germanText":"Bleib im Takt und\nversuch den Song abzuschließen!",
+ "germanFontType":3,
+ "spanishText":"¡Sigue el ritmo\ne intenta acabar la canción!",
+ "spanishFontType":3,
+ "chineseTText":"以順利揮動通關為目標!",
+ "chineseTFontType":1,
+ "koreanText":"잘 흔들어서 클리어를 노리자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_tatacon_ttl",
+ "japaneseText":"太鼓コントローラーのあそびかた",
+ "englishUsText":"Using the Drum Controller",
+ "englishUsFontType":3,
+ "frenchText":"Utiliser le contrôleur tambour",
+ "frenchFontType":3,
+ "italianText":"Usare il controller tamburo",
+ "italianFontType":3,
+ "germanText":"Trommel-Controller verwenden",
+ "germanFontType":3,
+ "spanishText":"Usar el mando tambor",
+ "spanishFontType":3,
+ "chineseTText":"太鼓控制器的玩法",
+ "chineseTFontType":1,
+ "koreanText":"북 컨트롤러 플레이 방법",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_tatacon_page1",
+ "japaneseText":"太鼓コントローラーのあそびかたを説明するよ!",
+ "englishUsText":"Here’s how to play the game\nusing the drum controller!",
+ "englishUsFontType":3,
+ "frenchText":"Voici comment jouer\nau jeu en utilisant\nle contrôleur tambour !",
+ "frenchFontType":3,
+ "italianText":"Ecco come si gioca usando\nil controller tamburo!",
+ "italianFontType":3,
+ "germanText":"So spielst du mit dem\nTrommel-Controller!",
+ "germanFontType":3,
+ "spanishText":"¡Así se juega\nusando el mando tambor!",
+ "spanishFontType":3,
+ "chineseTText":"我來介紹太鼓控制器的玩法吧!",
+ "chineseTFontType":1,
+ "koreanText":"북 컨트롤러로 플레이하는 법을 설명할게!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_tatacon_page2",
+ "japaneseText":"流れてくる音符がワクに重なったら\nバチで太鼓をたたこう!",
+ "englishUsText":"When a note overlaps the frame,\nthat’s your cue to hit the drum!",
+ "englishUsFontType":3,
+ "frenchText":"Tu dois tambouriner au moment\noù la note passe sur le cadre.",
+ "frenchFontType":3,
+ "italianText":"Batti sul tamburo quando\nuna nota tocca la linea.",
+ "italianFontType":3,
+ "germanText":"Wandert eine Note über den Rahmen,\nmusst du in dem Moment auf die Trommel schlagen.",
+ "germanFontType":3,
+ "spanishText":"Cuando una nota entra en el marco,\nhay que tocar el tambor.",
+ "spanishFontType":3,
+ "chineseTText":"當流動的音符將與框框重疊時\n就用鼓棒敲打太鼓吧",
+ "chineseTFontType":1,
+ "koreanText":"이동하는 음표가 테두리와 겹쳐졌을 때\n북채로 태고를 두드리자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_tatacon_page3",
+ "japaneseText":"赤い音符は面をたたこう",
+ "englishUsText":"Hit the surface for red notes.",
+ "englishUsFontType":3,
+ "frenchText":"Tambourine la surface\npour les notes rouges.",
+ "frenchFontType":3,
+ "italianText":"Batti sulla superficie\nse la nota è rossa.",
+ "italianFontType":3,
+ "germanText":"Rote Noten: Oberfläche.",
+ "germanFontType":3,
+ "spanishText":"Notas rojas: toca la superficie.",
+ "spanishFontType":3,
+ "chineseTText":"遇到紅色音符要敲打鼓面",
+ "chineseTFontType":1,
+ "koreanText":"빨간 음표는 면을 두드리자",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_tatacon_page4",
+ "japaneseText":"青い音符はフチをたたこう",
+ "englishUsText":"Hit the rim for blue notes.",
+ "englishUsFontType":3,
+ "frenchText":"Tambourine le rebord\npour les notes bleues.",
+ "frenchFontType":3,
+ "italianText":"Batti sul bordo\nse la nota è blu.",
+ "italianFontType":3,
+ "germanText":"Blaue Noten: Rand.",
+ "germanFontType":3,
+ "spanishText":"Notas azules: toca el borde.",
+ "spanishFontType":3,
+ "chineseTText":"遇到藍色音符則敲打鼓邊",
+ "chineseTFontType":1,
+ "koreanText":"파란 음표는 테를 두드리자",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_tatacon_page5",
+ "japaneseText":"大きな音符は左右同時にたたくと\n高得点だ!",
+ "englishUsText":"For big notes,\nhit both sides at once\nto get extra points!",
+ "englishUsFontType":3,
+ "frenchText":"Pour les grosses notes,\nfrappe les deux côtés\nà la fois pour obtenir\ndes points supplémentaires !",
+ "frenchFontType":3,
+ "italianText":"Premi entrambi i pulsanti\nper le note grandi per ottenere\npunti extra!",
+ "italianFontType":3,
+ "germanText":"Drücke bei großen Noten\nbeide Seiten gleichzeitig,\num dir Extrapunkte zu sichern!",
+ "germanFontType":3,
+ "spanishText":"¡Toca los dos lados a la vez\npara las notas grandes\ny consigue puntos adicionales!",
+ "spanishFontType":3,
+ "chineseTText":"遇到大型音符時,左右同時敲打可以獲得高分!",
+ "chineseTFontType":1,
+ "koreanText":"커다란 음표는 좌우를 동시에 두드리면\n고득점이야!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_tatacon_page6",
+ "japaneseText":"黄色い音符は、ひたすら連打しよう!",
+ "englishUsText":"Yellow music notes are your\ncue to do a drumroll!",
+ "englishUsFontType":3,
+ "frenchText":"Quand tu vois des notes jaunes,\nfais un roulement de tambour !",
+ "frenchFontType":3,
+ "italianText":"Se la nota è gialla,\nesegui un rullo di tamburo!",
+ "italianFontType":3,
+ "germanText":"Gelbe Noten \nsignalisieren einen Trommelwirbel!",
+ "germanFontType":3,
+ "spanishText":"Las notas amarillas\nindican un redoble.",
+ "spanishFontType":3,
+ "chineseTText":"遇到黃色音符就拼命連打!",
+ "chineseTFontType":1,
+ "koreanText":"노란 음표는 계속 연타하자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_tatacon_page7",
+ "japaneseText":"「ふうせん音符」と「こづち音符」も\nとにかく連打しよう!",
+ "englishUsText":"Balloon notes and mallet notes\ncall for a drumroll too!",
+ "englishUsFontType":3,
+ "frenchText":"Les notes ballon et maillet\nnécessitent aussi\nun roulement de tambour !",
+ "frenchFontType":3,
+ "italianText":"Anche le note a palloncino e a martello\nrichiedono il rullo di tamburo!",
+ "italianFontType":3,
+ "germanText":"Bei Ballon- und Schlägel-Noten\nmuss auch ein Trommelwirbel folgen!",
+ "germanFontType":3,
+ "spanishText":"¡Las notas con un mazo\no un globo también!",
+ "spanishFontType":3,
+ "chineseTText":"遇到氣球音符、還有小槌音符時\n連打就對了~!",
+ "chineseTFontType":1,
+ "koreanText":"「풍선 음표」와 「금망치 음표」도\n아무튼 연타하자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_tatacon_page8",
+ "japaneseText":"タイミングよくたたけば\n魂(たましい)ゲージがアップ!",
+ "englishUsText":"Hit the notes at just the right time\nto fill up your Soul gauge!",
+ "englishUsFontType":3,
+ "frenchText":"Frappe les notes au bon moment\npour remplir ta jauge d'âme !",
+ "frenchFontType":3,
+ "italianText":"Suona le note al momento giusto\nper riempire l'indicatore Anima!",
+ "italianFontType":3,
+ "germanText":"Triffst du Noten genau richtig,\nfüllt sich die Seelenanzeige!",
+ "germanFontType":3,
+ "spanishText":"Toca las notas en el momento justo\npara llenar el indicador de Alma.",
+ "spanishFontType":3,
+ "chineseTText":"抓準時機敲打的話\n會累積魂量表!",
+ "chineseTFontType":1,
+ "koreanText":"타이밍에 맞춰 두드리면\n혼 게이지가 업!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_tatacon_page9",
+ "japaneseText":"うまくたたいてノルマクリアを目指そう!",
+ "englishUsText":"Stay on rhythm and\ntry to finish the song!",
+ "englishUsFontType":3,
+ "frenchText":"Garde le rythme et\nessaie de finir la chanson !",
+ "frenchFontType":3,
+ "italianText":"Segui il ritmo e cerca di\narrivare alla fine!",
+ "italianFontType":3,
+ "germanText":"Bleib im Takt und \nversuch den Song abzuschließen!",
+ "germanFontType":3,
+ "spanishText":"¡Sigue el ritmo\ne intenta acabar la canción!",
+ "spanishFontType":3,
+ "chineseTText":"以順利敲打通關為目標!",
+ "chineseTFontType":1,
+ "koreanText":"잘 두드려서 클리어를 노리자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_notice_msg",
+ "japaneseText":"テレビによっては えいぞうや音声におくれがあり \n正しいタイミングで演奏をしても\n失敗してしまうことがあります\n\nもし、そのような場合は\n「ゲーム設定」の「音符調整」でタイミングを調整してください",
+ "englishUsText":"Certain TVs may introduce lag in the game's audio\nand visuals, which can cause note timing to fall\nout of sync and result in failure.\n\nIf you encounter lag issues like this,\ntry calibrating the game by\ngoing to Game Settings > Calibration.",
+ "englishUsFontType":3,
+ "frenchText":"Certaines TV peuvent introduire du lag\ndans les sons et images du jeu,\nce qui peut provoquer une désynchronisation\ndu timing des notes et te faire échouer.\n\nSi tu rencontres des problèmes de lag,\nessaie de calibrer le jeu en passant par\nParamètres de jeu > Calibrage.",
+ "frenchFontType":3,
+ "italianText":"Alcuni schermi possono introdurre un ritardo\ntra grafica e audio, facendo apparire le note\nfuori sincrono e inducendo all'errore.\n\nSe è il tuo caso, calibra il gioco\nselezionando Impost. di gioco > Calibrazione.",
+ "italianFontType":3,
+ "germanText":"Bei bestimmten Fernsehern kann es\nzu Ton- und Bildverzögerungen kommen,\nsodass das Noten-Timing asynchron wird\nund du scheiterst.\n\nTritt dieses Problem auf, kalibriere das Spiel\nüber Spieloptionen > Kalibrierung.",
+ "germanFontType":3,
+ "spanishText":"Ciertos televisores pueden retardar la imagen y el\nsonido del juego. Esto puede provocar que la\ncadencia de las notas se desincronice y dé errores.\n\nEn tal caso, prueba a calibrar el juego en\nAjustes del juego > Calibración.",
+ "spanishFontType":3,
+ "chineseTText":"根據您的電視,有可能出現影像或聲音延遲的現象,\n即使在正確的時機下敲打太鼓,也會讓演奏失敗\n\n萬一發生這種情況時,請前往「遊戲設定」中的\n「音符調整」裡進行時機的調整\n",
+ "chineseTFontType":1,
+ "koreanText":"TV에 따라서는 영상이나 음성이 늦어져서\n올바른 타이밍에 북을 쳐도\n연주에 실패하는 경우가 있습니다.\n\n만약 그런 일이 일어나고 있다면\n「게임 설정」의 「음표 조정」에서 타이밍을 조정해주세요",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_setting_msg",
+ "japaneseText":"「そうさタイプ設定」は「タイプ1」が初期設定です\n「ゲーム設定」からいつでもへんこうできます",
+ "englishUsText":"Button Type is set to Type 1 by default,\nbut this can be changed in Game Settings\nat any time.",
+ "englishUsFontType":3,
+ "frenchText":"Le type de contrôleur est paramétré sur Type 1\npar défaut, mais cela peut être changé\nà tout moment dans les paramètres de jeu.",
+ "frenchFontType":3,
+ "italianText":"L'impostazione predefinita dello schema\ndei comandi è lo Schema 1, ma puoi\nsceglierne un altro in Impostazioni di gioco\nin qualsiasi momento.",
+ "italianFontType":3,
+ "germanText":"Der Steuerungstyp ist standardmäßig auf Typ 1\ngesetzt, dies kannst du jedoch jederzeit in\nden Spieloptionen ändern.",
+ "germanFontType":3,
+ "spanishText":"El tipo de control predeterminado es el Tipo 1,\naunque puedes cambiarlo en Ajustes del juego\ncuando quieras.",
+ "spanishFontType":3,
+ "chineseTText":"按鍵類型的設定,一開始預設為「類型1」,\n不過能從「遊戲設定」的操作設定下進行更改",
+ "chineseTFontType":1,
+ "koreanText":"「조작 타입 설정」은 「타입 1」이 초기 설정입니다.\n「게임 설정」에서 언제든지 변경할 수 있습니다.",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_adjust_msg",
+ "japaneseText":"テレビによっては えいぞうや音声におくれがあり \n正しいタイミングで演奏をしても\n失敗してしまうことがあります\n\nもし、そのような場合は\n「ゲーム設定」の「音符調整」でタイミングを調整してください\nゲーム設定にいどうしますか?",
+ "englishUsText":"On some TVs, notes may not always match\nyour input. If you experience this, try\ngoing to Game Settings > Calibration.",
+ "englishUsFontType":3,
+ "frenchText":"Suivant ta TV, les notes peuvent ne pas\ncorrespondre à tes actions. Si c'est\nle cas : Paramètres de jeu > Calibrage.",
+ "frenchFontType":3,
+ "italianText":"In base allo schermo, le note non sempre\ncombaciano con i comandi. Usa Impost.\ndi gioco > Calibrazione per regolarli.",
+ "italianFontType":3,
+ "germanText":"Je nach Fernseher können gespielte Noten\nvon gedrückten Knöpfen/Tasten abweichen.\nSpieloptionen > Kalibrierung hilft.",
+ "germanFontType":3,
+ "spanishText":"En algunos televisores, las notas pueden\nno coincidir con lo pulsado. En tal caso\nve a Ajustes del juego > Calibración.",
+ "spanishFontType":3,
+ "chineseTText":"根據您的電視,音符位置或聲音可能會與操作有所偏差\n\n萬一發生這種情況時,請前往「遊戲設定」中的\n中的「音符調整」裡進行時機的調整\n要移動至遊戲設定嗎?",
+ "chineseTFontType":1,
+ "koreanText":"TV에 따라서는 영상이나 음성이 늦어져서\n올바른 타이밍에 북을 쳐도\n연주에 실패하는 경우가 있습니다\n\n만약 그런 일이 일어나고 있다면\n「게임 설정」의 「음표 조정」에서 타이밍을 조정해주세요\n게임 설정으로 이동합니까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_joycon2_ttl",
+ "japaneseText":"フリフリ演奏をためしてみましょう",
+ "englishUsText":"Try out Motion Controls",
+ "englishUsFontType":3,
+ "frenchText":"Essayer les commandes par mouvements",
+ "frenchFontType":3,
+ "italianText":"Prova i comandi di movimento",
+ "italianFontType":3,
+ "germanText":"Bewegungssteuerung ausprobieren",
+ "germanFontType":3,
+ "spanishText":"Prueba el control por movimiento",
+ "spanishFontType":3,
+ "chineseTText":"來體驗動態演奏吧",
+ "chineseTFontType":1,
+ "koreanText":"모션 조작을 해봅시다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_joycon2_msg",
+ "japaneseText":"「Joy-Con」2本持ちのじょうたいにして\nじゅんびができたら決定してください\nフリフリ演奏のテストを行います\n\nまた、フリフリ演奏のテストは「ヘルプ」の\n「フリフリ演奏をためす」から何度でもできます\n",
+ "englishUsText":"Hold one Joy-Con in each hand,\nthen Confirm when ready\nto begin the motion control test.\n\nYou can try the motion control test as many times as you want\nby going to Help > Try Motion Controls.\n",
+ "englishUsFontType":3,
+ "frenchText":"Tiens un Joy-Con dans chaque main,\npuis confirme lorsque tu es prêt pour lancer\nle test des commandes par mouvements.\n\nTu peux essayer les commandes par mouvements\nautant de fois que tu veux en allant dans\nAide > Essayer les commandes par mouvements.",
+ "frenchFontType":3,
+ "italianText":"Tieni un Joy-Con in ciascuna mano\ne conferma quando sei pronto\nper iniziare la prova dei comandi.\n\nPuoi provare i comandi di movimento tutte le volte che vuoi\nselezionando Aiuto > Prova i comandi di movimento.\n",
+ "italianFontType":3,
+ "germanText":"Halte einen Joy-Con in jeder Hand\nund bestätige, wenn du bereit bist,\nden Test der Bewegungssteuerung zu starten.\nDu kannst die Bewegungssteuerung beliebig oft testen, indem du\nHilfe > Bewegungssteuerung testen aufrufst.",
+ "germanFontType":3,
+ "spanishText":"Sujeta un Joy-Con en cada mano\ny confirma cuando tengas todo listo\npara iniciar la prueba de control por movimiento.\n\nPuedes probar el control por movimiento cuanto\nquieras en Ayuda > Probar control por movimiento.\n",
+ "spanishFontType":3,
+ "chineseTText":"將「Joy-Con控制器」切換為左右握著的狀態,\n如準備完成請按下決定,將進行動態演奏的測試\n\n另外動態演奏的測試可在「操作說明」中的\n「體驗動態演奏」裡不斷重複進行\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"「Joy-Con」 2개잡기 상태로\n준비가 되면 결정해주세요.\n모션 조작을 테스트합니다.\n\n또한, 모션 조작 테스트는 「도움말」의\n「모션 조작을 해본다」에서 몇 번이든 할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_joycon2b_msg",
+ "japaneseText":"\n「Joy-Con」2本持ちのじょうたいにして、\nじゅんびができたら決定してください",
+ "englishUsText":"\nHold one Joy-Con in each hand,\nthen Confirm when ready.",
+ "englishUsFontType":3,
+ "frenchText":"\nTiens un Joy-Con dans chaque main,\npuis confirme lorsque tu es prêt.",
+ "frenchFontType":3,
+ "italianText":"\nTieni un Joy-Con in ciascuna mano\ne conferma quando sei pronto.",
+ "italianFontType":3,
+ "germanText":"\nHalte einen Joy-Con in jeder Hand\nund bestätige, wenn du bereit bist.",
+ "germanFontType":3,
+ "spanishText":"\nSujeta un Joy-Con en cada mano\ny confirma cuando puedas empezar.",
+ "spanishFontType":3,
+ "chineseTText":"將「Joy-Con控制器」切換為左右握著的狀態,\n如準備完成請按下決定",
+ "chineseTFontType":1,
+ "koreanText":"「Joy-Con」 2개잡기 상태로\n준비가 되면 결정해주세요.",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_start_ttl",
+ "japaneseText":"フリフリ演奏について",
+ "englishUsText":"Motion Controls",
+ "englishUsFontType":3,
+ "frenchText":"Commandes par mouvements",
+ "frenchFontType":3,
+ "italianText":"Comandi di movimento",
+ "italianFontType":3,
+ "germanText":"Bewegungssteuerung",
+ "germanFontType":3,
+ "spanishText":"Controles por movimiento",
+ "spanishFontType":3,
+ "chineseTText":"關於動態演奏",
+ "chineseTFontType":1,
+ "koreanText":"모션 조작에 대해서",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_start_msg",
+ "japaneseText":"本作では「Joy-Con(L)/(R)」を使った\n「フリフリ演奏」であそぶことができます\nフリフリ演奏についてかくにんしますか?",
+ "englishUsText":"This game allows for motion controls with the\nleft and right Joy-Con controllers. Would you\nlike to learn more about motion controls?",
+ "englishUsFontType":3,
+ "frenchText":"Ce jeu permet d'utiliser des commandes par mouvements\navec les Joy-Con gauche et droit. Veux-tu en savoir plus\nsur les commandes par mouvements ?",
+ "frenchFontType":3,
+ "italianText":"Questo gioco permette i comandi di movimento\ncon i Joy-Con di sinistra e destra. Vuoi ulteriori\ninformazioni sui comandi di movimento?",
+ "italianFontType":3,
+ "germanText":"Das Spiel erlaubt Bewegungssteuerung mit\ndem linken und dem rechten Joy-Con. Willst du mehr\nüber Bewegungssteuerung erfahren?",
+ "germanFontType":3,
+ "spanishText":"Este juego permite el control por movimiento\ncon los Joy-Con derecho e izquierdo.\n¿Quieres más información acerca de esta opción?",
+ "spanishFontType":3,
+ "chineseTText":"在本作品裡能使用「Joy-Con(L)/(R)」遊玩「動態演奏」\n要確認關於動態演奏的內容嗎?",
+ "chineseTFontType":1,
+ "koreanText":"본 작품에서는 「Joy-Con(L)/(R)」을 사용한\n「모션 조작」으로 플레이할 수 있습니다\n모션 조작에 대해 확인하겠습니까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_help_ttl",
+ "japaneseText":"フリフリ演奏以外のあそびかたについて",
+ "englishUsText":"Non-Motion Control Options",
+ "englishUsFontType":3,
+ "frenchText":"Options sans commandes par mouvements",
+ "frenchFontType":3,
+ "italianText":"Opzioni senza comandi di movimento",
+ "italianFontType":3,
+ "germanText":"Nicht bewegungsbezogene Steuerungsoptionen",
+ "germanFontType":3,
+ "spanishText":"Opciones sin control por movimiento",
+ "spanishFontType":3,
+ "chineseTText":"關於動態演奏之外的玩法",
+ "chineseTFontType":1,
+ "koreanText":"모션 조작 이외의 플레이 방법에 대해서",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_help_msg",
+ "japaneseText":"ヘルプ画面で、フリフリ演奏以外の\nあそびかたもかくにんできます\nヘルプ画面にいどうしますか?",
+ "englishUsText":"You can learn more about other ways to play the\ngame besides motion controls in the help menu.\nWould you like to go to the help menu now?",
+ "englishUsFontType":3,
+ "frenchText":"Tu peux en savoir plus sur les autres façons\nde jouer au jeu dans le menu d'aide.\nVeux-tu consulter cette rubrique maintenant ?",
+ "frenchFontType":3,
+ "italianText":"Nel menu di aiuto puoi scoprire altri modi di\ngiocare senza i comandi di movimento.\nVuoi aprire il menu di aiuto?",
+ "italianFontType":3,
+ "germanText":"Erfahre mehr über andere\nSteuerungsoptionen im Hilfemenü.\nWillst du dir das Hilfemenü jetzt ansehen?",
+ "germanFontType":3,
+ "spanishText":"Si quieres jugar sin control por movimiento,\npuedes ver las otras opciones disponibles\nen el menú de ayuda. ¿Quieres ir a ese menú?",
+ "spanishFontType":3,
+ "chineseTText":"在說明畫面下也能夠確認動態演奏之外的玩法。\n要移動至說明畫面嗎?",
+ "chineseTFontType":1,
+ "koreanText":"도움말 화면에서, 모션 조작 이외의\n플레이 방법도 확인할 수 있습니다\n도움말 화면으로 이동하겠습니까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"dialog_later",
+ "japaneseText":"あとでためす",
+ "englishUsText":"Try Later",
+ "englishUsFontType":3,
+ "frenchText":"Plus tard",
+ "frenchFontType":3,
+ "italianText":"Prova dopo",
+ "italianFontType":3,
+ "germanText":"Später vers.",
+ "germanFontType":3,
+ "spanishText":"Más tarde",
+ "spanishFontType":3,
+ "chineseTText":"之後再試",
+ "chineseTFontType":1,
+ "koreanText":"나중에 해본다",
+ "koreanFontType":2
+ },
+ {
+ "key":"dialog_try",
+ "japaneseText":"ためす",
+ "englishUsText":"Try",
+ "englishUsFontType":3,
+ "frenchText":"Essayer",
+ "frenchFontType":3,
+ "italianText":"Prova",
+ "italianFontType":3,
+ "germanText":"Versuchen",
+ "germanFontType":3,
+ "spanishText":"Ahora",
+ "spanishFontType":3,
+ "chineseTText":"試試看",
+ "chineseTFontType":1,
+ "koreanText":"해본다",
+ "koreanFontType":2
+ },
+ {
+ "key":"mg_tut_pause_close",
+ "japaneseText":"ゲームを続ける",
+ "englishUsText":"Continue",
+ "englishUsFontType":3,
+ "frenchText":"Continuer",
+ "frenchFontType":3,
+ "italianText":"Continua",
+ "italianFontType":3,
+ "germanText":"Fortfahren",
+ "germanFontType":3,
+ "spanishText":"Continuar",
+ "spanishFontType":3,
+ "chineseTText":"繼續遊戲",
+ "chineseTFontType":1,
+ "koreanText":"게임을 계속한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_cmn_1",
+ "japaneseText":"リズムの合わせかた",
+ "englishUsText":"Matching the Rhythm",
+ "englishUsFontType":3,
+ "frenchText":"Coller au rythme",
+ "frenchFontType":3,
+ "italianText":"Seguire il ritmo",
+ "italianFontType":3,
+ "germanText":"Dem Rhythmus anpassen",
+ "germanFontType":3,
+ "spanishText":"Seguir el ritmo",
+ "spanishFontType":3,
+ "chineseTText":"配合節奏的方法",
+ "chineseTFontType":1,
+ "koreanText":"리듬을 맞추는 법",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_cmn_2",
+ "japaneseText":"そうさ説明",
+ "englishUsText":"Description of Controls",
+ "englishUsFontType":3,
+ "frenchText":"Description des commandes",
+ "frenchFontType":3,
+ "italianText":"Descrizione dei comandi",
+ "italianFontType":3,
+ "germanText":"Die Steuerung",
+ "germanFontType":3,
+ "spanishText":"Descripción de controles",
+ "spanishFontType":3,
+ "chineseTText":"操作說明",
+ "chineseTFontType":1,
+ "koreanText":"조작 설명",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_cmn_3",
+ "japaneseText":"大入力のそうさ説明",
+ "englishUsText":"Hitting Big Notes",
+ "englishUsFontType":3,
+ "frenchText":"Frapper les grosses notes",
+ "frenchFontType":3,
+ "italianText":"Colpire note grosse",
+ "italianFontType":3,
+ "germanText":"Große Noten treffen",
+ "germanFontType":3,
+ "spanishText":"Acertar notas grandes",
+ "spanishFontType":3,
+ "chineseTText":"大音符的操作說明",
+ "chineseTFontType":1,
+ "koreanText":"(대) 입력의 조작 설명",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_cmn_4",
+ "japaneseText":"左右打ち分けのそうさ説明",
+ "englishUsText":"Hitting Left and Right Notes",
+ "englishUsFontType":3,
+ "frenchText":"Frapper les notes g. et d.",
+ "frenchFontType":3,
+ "italianText":"Colpire note a sx e dx",
+ "italianFontType":3,
+ "germanText":"Linke und rechte Noten treffen",
+ "germanFontType":3,
+ "spanishText":"Acertar notas izq. y der.",
+ "spanishFontType":3,
+ "chineseTText":"左右敲打的操作說明",
+ "chineseTFontType":1,
+ "koreanText":"좌우 나눠 치기의 조작 설명",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_cmn_none",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_cnt_1",
+ "japaneseText":"赤ワクのボタン 面のどれかを入力\n「バチ持ち」のときはどちらかをふろう\n ",
+ "englishUsText":"Press any of the red-framed buttons or surfaces!\nIf you're using the Drumstick Grip,\nshake either one of the Joy-Con controllers.",
+ "englishUsFontType":3,
+ "frenchText":"Appuie sur un des boutons ou surfaces encadrés en rouge !\nSi tu utilises le support baguettes,\nsecoue l'un des Joy-Con.",
+ "frenchFontType":3,
+ "italianText":"Premi qualsiasi pulsante o superficie\nrossi! Se usi l'impugnatura a bacchetta,\nscuoti uno dei due Joy-Con!",
+ "italianFontType":3,
+ "germanText":"Drücke einen der rot umrandeten Knöpfe oder eine\nder rot markierten Oberflächen! Falls du den Schlägelgriff\nverwendest, bewege einen der Joy-Con zum Takt!",
+ "germanFontType":3,
+ "spanishText":"¡Pulsa cualquier superficie o botón marcado en rojo!\nSi estás usando el Control de baqueta,\nagita un Joy-Con.",
+ "spanishFontType":3,
+ "chineseTText":"輸入紅框鍵敲打任一鼓面!\n當使用「鼓棒握法」時,隨意揮動一邊的控制器",
+ "chineseTFontType":1,
+ "koreanText":"빨간 테두리의 버튼 또는 면을 입력\n「북채 잡기」일 때는 어느 한 쪽을 흔들자\n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_cnt_2",
+ "japaneseText":"赤ワクと青ワクのボタン 面のどれかを同時入力\n「バチ持ち」のときは両方同時にふろう\n ",
+ "englishUsText":"Press any of the blue-framed buttons or surfaces!\nIf you're using the Drumstick Grip,\nshake both Joy-Con controllers.",
+ "englishUsFontType":3,
+ "frenchText":"Appuie sur un des boutons ou surfaces encadrés en bleu\net en rouge ensemble ! Si tu utilises le support\nbaguettes, secoue les deux Joy-Con.",
+ "frenchFontType":3,
+ "italianText":"Usa i comandi blu e rossi nello stesso momento! Se\nusi i comandi di movimento, scuoti entrambi i Joy-Con!",
+ "italianFontType":3,
+ "germanText":"Betätige gleichzeitig jeweils eine der rot und blau\nmarkierten Eingabemöglichkeiten! Falls du den\nSchlägelgriff verwendest, bewege beide Joy-Con im Takt!",
+ "germanFontType":3,
+ "spanishText":"¡Pulsa una opción en azul y otra en rojo a la vez!\nSi estás usando el Control de baqueta,\nagita ambos Joy-Con.",
+ "spanishFontType":3,
+ "chineseTText":"同時輸入紅框與藍框鍵敲打任一鼓面!\n當使用「鼓棒握法」時,同時揮動兩邊的控制器",
+ "chineseTFontType":1,
+ "koreanText":"빨간 테두리와 파란 테두리의 버튼 또는 면을 동시 입력\n「북채 잡기」일 때는 양쪽을 동시에 흔들자\n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_cnt_3",
+ "japaneseText":"赤ワクのボタン 面のどれかを入力!\n「バチ持ち」のときは右側をふろう\n ",
+ "englishUsText":"Press any of the red-framed buttons or surfaces!\nIf you're using the Drumstick Grip, shake the\nright-side Joy-Con.",
+ "englishUsFontType":3,
+ "frenchText":"Appuie sur un des boutons ou surfaces encadrés en rouge !\nSi tu utilises le support baguettes,\nsecoue le Joy-Con droit.",
+ "frenchFontType":3,
+ "italianText":"Premi qualsiasi pulsante o superficie\nrossi! Se usi l'impugnatura a bacchetta,\nscuoti il Joy-Con destro!",
+ "italianFontType":3,
+ "germanText":"Drücke einen der rot umrandeten Knöpfe oder eine\nder rot markierten Oberflächen! Falls du den Schlägelgriff\nverwendest, bewege den rechten Joy-Con zum Takt!",
+ "germanFontType":3,
+ "spanishText":"¡Pulsa cualquier superficie o botón marcado en rojo!\nSi estás usando el Control de baqueta,\nagita el Joy-Con derecho.",
+ "spanishFontType":3,
+ "chineseTText":"輸入紅框鍵敲打任一鼓面!\n當使用「鼓棒握法」時,揮動右邊的控制器",
+ "chineseTFontType":1,
+ "koreanText":"빨간 테두리의 버튼 또는 면을 입력!\n「북채 잡기」일 때는 오른쪽을 흔들자\n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_cnt_4",
+ "japaneseText":"青ワクのボタン 面のどれかを入力!\n「バチ持ち」のときは左側をふろう\n ",
+ "englishUsText":"Press any of the blue-framed buttons or surfaces!\nIf you're using the Drumstick Grip, shake the\nleft-side Joy-Con.",
+ "englishUsFontType":3,
+ "frenchText":"Appuie sur un des boutons ou surfaces encadrés en bleu !\nSi tu utilises le support baguettes,\nsecoue le Joy-Con gauche.",
+ "frenchFontType":3,
+ "italianText":"Premi qualsiasi pulsante o superficie\nblu! Se usi l'impugnatura a bacchetta,\nscuoti il Joy-Con del lato blu!",
+ "italianFontType":3,
+ "germanText":"Drücke einen der blau umrandeten Knöpfe oder eine\nder blau markierten Oberflächen! Falls du den Schlägelgriff\nverwendest, bewege den linken Joy-Con zum Takt!",
+ "germanFontType":3,
+ "spanishText":"¡Pulsa cualquier superficie o botón marcado en azul!\nSi estás usando el Control de baqueta,\nagita el Joy-Con izquierdo.",
+ "spanishFontType":3,
+ "chineseTText":"輸入藍框鍵敲打任一鼓面!\n當使用「鼓棒握法」時,揮動左邊的控制器",
+ "chineseTFontType":1,
+ "koreanText":"파란 테두리의 버튼 또는 면을 입력!\n「북채 잡기」일 때는 왼쪽을 흔들자\n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_1_1",
+ "japaneseText":"おみこしバトル",
+ "englishUsText":"Carry the Shrine!",
+ "englishUsFontType":3,
+ "frenchText":"Combat de temple",
+ "frenchFontType":3,
+ "italianText":"Scontro tra altari",
+ "italianFontType":3,
+ "germanText":"Schreinkampf",
+ "germanFontType":3,
+ "spanishText":"Batalla de altar",
+ "spanishFontType":3,
+ "chineseTText":"神轎對決",
+ "chineseTFontType":1,
+ "koreanText":"가마 배틀",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_1_1",
+ "japaneseText":"リズムに合わせて「おみこし」をかつごう!\n\n「おみこし」が光ったらゲキトツの合図!\nゲキトツ中は連打入力で相手チームをふき飛ばせ!\n \n \n \n \n ",
+ "englishUsText":"Listen to the rhythm and carry the shrine! When\nit glows, that's your cue to crash! Drum roll\nwhile crashing to send the other team flying!\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Écoute le rythme et transporte le temple !\nLorsqu'il brille, c'est le bon moment ! Fais un\nroulement pour envoyer valser l'autre équipe !",
+ "frenchFontType":3,
+ "italianText":"Trasporta il tempio tenendo il tempo! Quando\ns'illumina, ci si deve schiantare: esegui un\nrullo di tamburo per far volare l'altra squadra!",
+ "italianFontType":3,
+ "germanText":"Höre auf den Rhythmus und trag den Schrein! Wenn\ner leuchtet, wird's Zeit für den Crash! Ein\nTrommelwirbel schießt das andere Team ins Aus!",
+ "germanFontType":3,
+ "spanishText":"¡Escucha el ritmo y lleva el templo! ¡Cuando\nbrille, a chocar! ¡Haz un redoble mientras\nchocas para lanzar al otro equipo por los aires!",
+ "spanishFontType":3,
+ "chineseTText":"配合節奏,以「神轎」來祈願吧!\n\n「神轎」一旦發光就是衝撞的訊號!\n在衝撞中輸入連打撞飛敵隊吧!",
+ "chineseTFontType":1,
+ "koreanText":"리듬에 맞춰서 「가마」를 메자!\n\n「가마」가 빛나면 부딪칠 거라는 신호!\n부딪칠 때는 연타 입력으로 상대팀을 날려버리자!\n \n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_2_1",
+ "japaneseText":"ちょうちんうなぎ寿司",
+ "englishUsText":"Lantern Eel Sushi",
+ "englishUsFontType":3,
+ "frenchText":"Sushi de l'anguille lanterne",
+ "frenchFontType":3,
+ "italianText":"Sushi di anguilla lanterna",
+ "italianFontType":3,
+ "germanText":"Laternen-Aal-Sushi",
+ "germanFontType":3,
+ "spanishText":"Sushi de anguila linterna",
+ "spanishFontType":3,
+ "chineseTText":"提燈鰻壽司",
+ "chineseTFontType":1,
+ "koreanText":"초롱 장어 초밥",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_2_1",
+ "japaneseText":"ちょうちんうなぎの「おすしのリズム」を覚えたら\nリズム通りに注文してお寿司をゲットしよう!\n\nイカスミでちょうちんうなぎの「おすしのリズム」が\n見えなくなることもあるから気をつけて!\n \n \n \n ",
+ "englishUsText":"Once you've learned the lantern eel's \"sushi\nrhythm\", order sushi to the rhythm! But watch\nout for the squid ink obstructing the rhythm!\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Une fois le \"rythme sushi\" de l'anguille\nlanterne appris, essaie de commander des\nsushis de la même manière ! Fais attention\ncar l'encre de seiche t'empêche de voir !",
+ "frenchFontType":3,
+ "italianText":"Impara il \"ritmo sushi\" dell'anguilla\nlanterna e ordina il sushi\ntenendo il ritmo! Fai attenzione al nero\ndi seppia che nasconde il ritmo.",
+ "italianFontType":3,
+ "germanText":"Lerne den Rhythmus des Laternen-Aals und halte \nihn, während du bei ihm Sushi bestellst! Nimm dich \ndabei vor den Tintenfischen in acht!",
+ "germanFontType":3,
+ "spanishText":"Cuando aprendas el \"ritmo sushi\" de la Anguila\nlinterna, mantén el ritmo para pedir sushi.\n¡Cuidado con la tinta de calamar que te impedirá seguirlo!\n",
+ "spanishFontType":3,
+ "chineseTText":"如果記住了提燈鰻的「壽司節奏」,\n就按照節奏點餐,取得壽司吧!\n\n也會有因為烏賊的墨汁而看不到\n提燈鰻的「壽司節奏」。請多加注意!",
+ "chineseTFontType":1,
+ "koreanText":"초롱 장어의 「초밥 리듬」을 기억하고,\n리듬에 맞게 주문해서 초밥을 받자!\n\n먹물로 초롱 장어의 「초밥 리듬」이\n보이지 않을 때도 있으니까 조심해!\n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_3_1",
+ "japaneseText":"ニンジャ修行",
+ "englishUsText":"Ninja Training",
+ "englishUsFontType":3,
+ "frenchText":"Entraînement ninja",
+ "frenchFontType":3,
+ "italianText":"Allenamento ninja",
+ "italianFontType":3,
+ "germanText":"Ninja-Training",
+ "germanFontType":3,
+ "spanishText":"Entrenamiento ninja",
+ "spanishFontType":3,
+ "chineseTText":"忍者修行",
+ "chineseTFontType":1,
+ "koreanText":"닌자 수행",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_3_2",
+ "japaneseText":"ニンジャ修行",
+ "englishUsText":"Ninja Training",
+ "englishUsFontType":3,
+ "frenchText":"Entraînement ninja",
+ "frenchFontType":3,
+ "italianText":"Allenamento ninja",
+ "italianFontType":3,
+ "germanText":"Ninja-Training",
+ "germanFontType":3,
+ "spanishText":"Entrenamiento ninja",
+ "spanishFontType":3,
+ "chineseTText":"忍者修行",
+ "chineseTFontType":1,
+ "koreanText":"닌자 수행",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_3_1",
+ "japaneseText":"和田イヌが「木のえだ」や「鉄アレイ」を投げてくるよ!\n\nリズムに合わせてタイミングよく入力しよう!\n\n\n\n\n\n",
+ "englishUsText":"Cut the branches and iron dumbbells that Dog\nWada tosses to you at just the right time!\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Coupe les branches et les haltères que\nt'envoie Chien Wada pile au bon moment !",
+ "frenchFontType":3,
+ "italianText":"Taglia al momento giusto i rami e i pesi\nche Wada Cane ti lancia addosso!\n\n\n\n\n\n\n",
+ "italianFontType":3,
+ "germanText":"Zerteile im richtigen Moment die Zweige und\nEisenhanteln, die dir Hund Wada zuwirft!",
+ "germanFontType":3,
+ "spanishText":"¡Corta las ramas y las pesas de hierro que te\nlanza Perro Wada en el momento justo!",
+ "spanishFontType":3,
+ "chineseTText":"和田狗會丟出「樹枝」與「啞鈴」!\n\n配合節奏抓準時機輸入!",
+ "chineseTFontType":1,
+ "koreanText":"와다 이누가 「나뭇가지」나 「철 아령」을 던질 거야!\n\n리듬에 맞춰 타이밍 좋게 입력하자!\n\n \n \n \n \n",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_3_2",
+ "japaneseText":"「鉄アレイ」のときは同時入力だよ!\n\n気をつけてね!\n\n\n\n\n\n",
+ "englishUsText":"When he tosses you an iron dumbbell,\nhit left and right together to cut it!\n",
+ "englishUsFontType":3,
+ "frenchText":"Lorsqu'il te lance un haltère, appuie rouge\net bleu en même temps pour le découper !",
+ "frenchFontType":3,
+ "italianText":"Quando ti lancia dei pesi, usa i comadi\nrossi e blu allo stesso tempo per tagliarli!",
+ "italianFontType":3,
+ "germanText":"Kommt die Eisenhantel, betätige gleichzeitig \neine der linken und eine der rechten \nEingabemöglichkeiten, um sie zu zerteilen!",
+ "germanFontType":3,
+ "spanishText":"Cuando te lance una pesa de hierro, ¡toca\nsobre rojo y azul a la vez para detenerla!",
+ "spanishFontType":3,
+ "chineseTText":"面對「啞鈴」時,以大音符來擊落!\n\n要注意喔!",
+ "chineseTFontType":1,
+ "koreanText":"「철 아령」은 좌우를 동시에 눌러!\n\n조심해야 해!\n\n\n\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_4_1",
+ "japaneseText":"なぎさのビーチボール",
+ "englishUsText":"Nagisa’s Beach Ball",
+ "englishUsFontType":3,
+ "frenchText":"Beach-volley de Nagisa",
+ "frenchFontType":3,
+ "italianText":"Beach volley",
+ "italianFontType":3,
+ "germanText":"Beach-Volleyball",
+ "germanFontType":3,
+ "spanishText":"Pelota de playa de Nagisa",
+ "spanishFontType":3,
+ "chineseTText":"沙灘排球",
+ "chineseTFontType":1,
+ "koreanText":"물가의 비치볼",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_4_2",
+ "japaneseText":"なぎさのビーチボール",
+ "englishUsText":"Nagisa’s Beach Ball",
+ "englishUsFontType":3,
+ "frenchText":"Beach-volley de Nagisa",
+ "frenchFontType":3,
+ "italianText":"Beach volley",
+ "italianFontType":3,
+ "germanText":"Beach-Volleyball",
+ "germanFontType":3,
+ "spanishText":"Pelota de playa de Nagisa",
+ "spanishFontType":3,
+ "chineseTText":"沙灘排球",
+ "chineseTFontType":1,
+ "koreanText":"물가의 비치볼",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_4_1",
+ "japaneseText":"ビーチボールをリズムに合わせてタイミングよくトス!\nみんなでラリーをつなげていこう!\n\nどんちゃんたちがかまえたらトス!\nタイミングが合わせやすくなるぞ!\n \n全員のラリーがつながったら得点ゲット!\n \n ",
+ "englishUsText":"Toss the beach balls at the right time and keep\nthe rally going! Watch for DON-chan to get ready\nright before the ball comes in. That’s your cue!\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Lance les ballons de volley au bon moment !\nTon perso. se préparera juste avant que la balle\nn'arrive, c'est le timing auquel tu dois penser.",
+ "frenchFontType":3,
+ "italianText":"Lancia le palle col giusto tempismo per far\nproseguire il rally! Osserva il tuo personaggio,\nsi preparerà poco prima dell'arrivo della palla!",
+ "italianFontType":3,
+ "germanText":"Wirf Strandbälle im Takt, und halte die Zusammen-\nkunft am Laufen! Jeder macht sich bereit, bevor \nder Ball bei ihm ankommt. Da ist dein Einsatz!",
+ "germanFontType":3,
+ "spanishText":"¡Lanza la pelota en el momento justo y que siga \nel juego! Procura que tu personaje esté listo\nantes de que llegue la pelota. ¡Es la señal!",
+ "spanishFontType":3,
+ "chineseTText":"抓準時機托起排球,儘可能讓傳接持續下去!\n\n當小咚等人擺出姿勢後就托球!\n會較容易抓到時機喔!\n\n如果全體能順利傳接一輪即可得分!",
+ "chineseTFontType":1,
+ "koreanText":"비치볼을 리듬에 맞춰 좋은 타이밍에 토스!\n다 함께 랠리를 이어가자!\n\n동이와 캐릭터들이 자세를 잡으면 토스!\n타이밍을 맞추기 쉬울 거야!\n \n모두 랠리가 이어지면 득점!\n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_4_2",
+ "japaneseText":"ボールの数は変わっていくので注意してね!\n\nまどわされないようにボールの流れをつかもう!\n \n \n \n\n\n ",
+ "englishUsText":"The balls will change in number, so stay alert!\nJust keep the rhythm and you'll be fine!\n",
+ "englishUsFontType":3,
+ "frenchText":"Les balles peuvent varier en nombre,\nalors reste concentré !\nGarde le rythme et tout ira bien !",
+ "frenchFontType":3,
+ "italianText":"Il numero delle palle cambierà, quindi occhio!\nMantieni il ritmo e andrà tutto bene.",
+ "italianFontType":3,
+ "germanText":"Die Zahl der Bälle ändert sich, also pass auf!\nBleib einfach im Takt und alles wird gut.",
+ "germanFontType":3,
+ "spanishText":"El número de pelotas cambiará.\n¡Sigue el ritmo y todo irá bien!",
+ "spanishFontType":3,
+ "chineseTText":"要注意球的數量會改變喔!\n盡可能別被擾亂,掌握球的動向吧!",
+ "chineseTFontType":1,
+ "koreanText":"공의 갯수는 변하니까 주의해줘!\n\n헷갈리지 않도록 공의 흐름을 알아내자!\n \n \n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_5_1",
+ "japaneseText":"ながなわジャンプ",
+ "englishUsText":"Long Jump Rope",
+ "englishUsFontType":3,
+ "frenchText":"Long saut à la corde",
+ "frenchFontType":3,
+ "italianText":"Corda lunga",
+ "italianFontType":3,
+ "germanText":"Langes Springseil",
+ "germanFontType":3,
+ "spanishText":"Comba larga",
+ "spanishFontType":3,
+ "chineseTText":"跳繩",
+ "chineseTFontType":1,
+ "koreanText":"줄줄 넘기",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_5_2",
+ "japaneseText":"ながなわジャンプ",
+ "englishUsText":"Long Jump Rope",
+ "englishUsFontType":3,
+ "frenchText":"Long saut à la corde",
+ "frenchFontType":3,
+ "italianText":"Corda lunga",
+ "italianFontType":3,
+ "germanText":"Langes Springseil",
+ "germanFontType":3,
+ "spanishText":"Comba larga",
+ "spanishFontType":3,
+ "chineseTText":"跳繩",
+ "chineseTFontType":1,
+ "koreanText":"줄줄 넘기",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_5_1",
+ "japaneseText":"リズムに合わせてタイミングよく\nながなわをジャンプしよう!\n\nながなわが風を切る音に合わせると\nうまくジャンプができるよ!\n\n全員成功で得点ゲット!\n \n ",
+ "englishUsText":"Jump right when the rope touches the ground!\nIt’s easier if you keep time with\nthe rope swish!\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Saute pile au moment où la corde touche le sol !\nC'est plus facile si tu gardes le rythme\navec le bruit de la corde !",
+ "frenchFontType":3,
+ "italianText":"Salta a destra quando la corda tocca per terra!\nIncontrerai meno difficoltà tenendo\nil tempo con il rumore della corda!\n\n\n\n\n",
+ "italianFontType":3,
+ "germanText":"Spring, wenn das Seil den Boden berührt!\nEs ist leichter, wenn du dich am\nGeräusch des Seils orientierst!",
+ "germanFontType":3,
+ "spanishText":"¡Salta cuando la cuerda toque el suelo!\n¡Es más fácil si mantienes el compás\ncon el movimiento de la cuerda!",
+ "spanishFontType":3,
+ "chineseTText":"抓準繩子甩向地面的時機跳起吧!\n\n把節奏與繩子甩出的風聲合在一起,\n就能夠順利地跳過!\n\n全體成功即可得分!",
+ "chineseTFontType":1,
+ "koreanText":"리듬에 맞춰 좋은 타이밍에\n점프해서 줄을 넘자!\n\n줄이 바람을 가르는 소리에 맞추면\n잘 넘을 수 있어!\n \n모두가 성공하면 득점!\n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_5_2",
+ "japaneseText":"ホイッスルの音が鳴ったら、\n3回連続でジャンプしてね!\n \n \n \n \n \n \n ",
+ "englishUsText":"Jump three times in a row when you\nhear the whistle!\n\n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Saute trois fois d'affilée\nlorsque tu entends le sifflet !",
+ "frenchFontType":3,
+ "italianText":"Quando senti il fischio,\nsalta tre volte di seguito!",
+ "italianFontType":3,
+ "germanText":"Hörst du die Pfeife, spring drei\nMal hintereinander!",
+ "germanFontType":3,
+ "spanishText":"¡Salta tres veces seguidas al oír el silbato!",
+ "spanishFontType":3,
+ "chineseTText":"當聽到哨聲時,就要連跳3次喔!",
+ "chineseTFontType":1,
+ "koreanText":"호루라기 소리가 들리면\n3번 연속으로 점프하자!\n \n \n \n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_6_1",
+ "japaneseText":"だるま落とし",
+ "englishUsText":"Daruma Knockdown",
+ "englishUsFontType":3,
+ "frenchText":"KO de Daruma",
+ "frenchFontType":3,
+ "italianText":"Daruma KO",
+ "italianFontType":3,
+ "germanText":"Daruma-Niederschlag",
+ "germanFontType":3,
+ "spanishText":"Derribo de darumas",
+ "spanishFontType":3,
+ "chineseTText":"達摩不倒翁",
+ "chineseTFontType":1,
+ "koreanText":"다루마 빼내기",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_6_2",
+ "japaneseText":"だるま落とし",
+ "englishUsText":"Daruma Knockdown",
+ "englishUsFontType":3,
+ "frenchText":"KO de Daruma",
+ "frenchFontType":3,
+ "italianText":"Daruma KO",
+ "italianFontType":3,
+ "germanText":"Daruma-Niederschlag",
+ "germanFontType":3,
+ "spanishText":"Derribo de darumas",
+ "spanishFontType":3,
+ "chineseTText":"達摩不倒翁",
+ "chineseTFontType":1,
+ "koreanText":"다루마 빼내기",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_6_1",
+ "japaneseText":"リズムに合わせて自分と同じ色のだるまをたたこう!\n\nハンマーをふりかぶったタイミングで\n入力するとだるまをふき飛ばせるよ! \n \n \n \n \n ",
+ "englishUsText":"Press the button right when the hammer goes up\nto send a Daruma flying! Hit the one with the\nsame color as you in time with the rhythm!\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Appuie pile lorsque le marteau va vers\nle haut pour propulser le Daruma !\nFrappe ceux correspondant à ta couleur !",
+ "frenchFontType":3,
+ "italianText":"Fai volare il daruma premendo proprio \nquando il martello sale in alto! Colpisci\nil daruma del tuo colore seguendo il ritmo!",
+ "italianFontType":3,
+ "germanText":"Reagiere genau dann, wenn der Hammer sich nach oben \nbewegt, um den Daruma in die Luft zu schleudern! \nSchlage im Takt den mit der dir zugeordneten Farbe!",
+ "germanFontType":3,
+ "spanishText":"¡Pulsa cuando el martillo suba para lanzar al \ndaruma por los aires! ¡Golpea al que sea de tu \nmismo color siguiendo el ritmo!",
+ "spanishFontType":3,
+ "chineseTText":"\n配合節奏敲打與自己同樣顏色的達摩!\n\n在鎚子揮起時輸入,把達摩打飛吧!",
+ "chineseTFontType":1,
+ "koreanText":"리듬에 맞춰서 자신과 같은 색의 다루마를 두드리자!\n\n망치를 치켜드는 타이밍에\n입력하면 다루마를 빼낼 수 있어!\n \n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_6_2",
+ "japaneseText":"大きいだるまが出てきたら\n2人で同時にたたこう!\n\n \n \n \n \n \n ",
+ "englishUsText":"Sometimes a big Daruma will show up, so be ready\nto work together to send it flying!\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Parfois un gros Daruma apparaîtra,\nalors préparez-vous bien pour\nl'envoyer voler dans les airs !",
+ "frenchFontType":3,
+ "italianText":"A volte potrebbe apparire un grande daruma.\nSiate pronti a far gioco di squadra\nper farlo volare!",
+ "italianFontType":3,
+ "germanText":"Manchmal erscheint ein großer Daruma, den ihr\nam besten zusammen in die Luft schleudert!",
+ "germanFontType":3,
+ "spanishText":"Puede aparecer un gran daruma.\n¡Colaborad para lanzarlo por los aires!",
+ "spanishFontType":3,
+ "chineseTText":"有時會出現大型的達摩!\n2人同心協力打飛它吧!",
+ "chineseTFontType":1,
+ "koreanText":"큰 다루마가 나오면\n둘이서 동시에 두드리자!\n \n \n \n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_7_1",
+ "japaneseText":"金魚すくい",
+ "englishUsText":"Goldfish-Scooping",
+ "englishUsFontType":3,
+ "frenchText":"Pêche de poisson rouge",
+ "frenchFontType":3,
+ "italianText":"Pesca del pesciolino",
+ "italianFontType":3,
+ "germanText":"Goldfisch-Fangen",
+ "germanFontType":3,
+ "spanishText":"Pesca de pececillos",
+ "spanishFontType":3,
+ "chineseTText":"撈金魚",
+ "chineseTFontType":1,
+ "koreanText":"금붕어 건지기",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_7_2",
+ "japaneseText":"金魚すくい",
+ "englishUsText":"Goldfish-Scooping",
+ "englishUsFontType":3,
+ "frenchText":"Pêche de poisson rouge",
+ "frenchFontType":3,
+ "italianText":"Pesca del pesciolino",
+ "italianFontType":3,
+ "germanText":"Goldfisch-Fangen",
+ "germanFontType":3,
+ "spanishText":"Pesca de pececillos",
+ "spanishFontType":3,
+ "chineseTText":"撈金魚",
+ "chineseTFontType":1,
+ "koreanText":"금붕어 건지기",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_7_1",
+ "japaneseText":"金魚が目の前に来たタイミングで\nリズムよく入力すると金魚をゲットできるよ!\n \n \n \n \n \n \n ",
+ "englishUsText":"Press the button when the goldfish is right\nin front of you to scoop it up!\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Appuie quand le poisson rouge\nest pile devant toi pour le pêcher !",
+ "frenchFontType":3,
+ "italianText":"Premi quando il pesciolino si\ntrova davanti a te per pescarlo!",
+ "italianFontType":3,
+ "germanText":"Reagiere dann, wenn der Goldfisch genau\nvor dir ist, um ihn zu fangen!",
+ "germanFontType":3,
+ "spanishText":"¡Pulsa cuando el pececillo rojo esté\ndelante de ti para pescarlo!",
+ "spanishFontType":3,
+ "chineseTText":"在金魚來到眼前的時候,配合節奏出手就能夠抓到金魚!",
+ "chineseTFontType":1,
+ "koreanText":"금붕어가 눈앞에 온 타이밍에\n리듬에 맞춰 입력하면 금붕어를 건질 수 있어!\n \n \n \n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_7_2",
+ "japaneseText":"金魚がおよぐ「ポチャ」という音をよく聞くと\nタイミングを合わせやすいよ!\n\n赤い金魚は速く、青い金魚はゆっくり来るよ!\nリズムを覚えてどんどんゲットしよう!\n \n \n \n ",
+ "englishUsText":"Listen to their splashes to figure out the\ntiming! Red goldfish swim quickly, and black\nones swim slowly, so learn their rhythms!",
+ "englishUsFontType":3,
+ "frenchText":"Écoute leurs éclaboussures pour comprendre\nle timing ! Les rouges nagent vite et les noirs\nlentement, alors apprends leurs rythmes !",
+ "frenchFontType":3,
+ "italianText":"Ascolta il rumore del tonfo in acqua\nper regolare il tuo tempismo! I pesci rossi\nnuotano più rapidamente, quelli neri più lentamente.",
+ "italianFontType":3,
+ "germanText":"Orientiere dich an ihrem Platschen, um ihr\nTiming zu verstehen! Rote Goldfische schwimmen schneller, schwarze\nlangsamer, also merke dir den Rhythmus!",
+ "germanFontType":3,
+ "spanishText":"¡Escucha cuando salpiquen para averiguar\nel momento justo! Los pececillos rojos nadan rápido. Los negros\nvan despacio. ¡Aprende sus ritmos!",
+ "spanishFontType":3,
+ "chineseTText":"仔細聆聽金魚游泳時的「噗通」聲就能較為容易掌握時機!\n\n紅色的金魚游得快,藍色的金魚游的慢!\n記住節奏滿載而歸吧!",
+ "chineseTFontType":1,
+ "koreanText":"금붕어가 헤엄치는 「첨벙」 소리를 잘 들으면\n타이밍을 맞추기 쉬워!\n\n빨간 금붕어는 빨리, 파란 금붕어는 천천히 와!\n리듬을 기억해서 팍팍 건져내자!\n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_8_1",
+ "japaneseText":"まねっこハタアゲ隊",
+ "englishUsText":"Flag-Raising Contest",
+ "englishUsFontType":3,
+ "frenchText":"Lever de drapeau",
+ "frenchFontType":3,
+ "italianText":"Gara dell'alzabandiera",
+ "italianFontType":3,
+ "germanText":"Flaggenhiss-Wettbewerb",
+ "germanFontType":3,
+ "spanishText":"Concurso de izar banderas",
+ "spanishFontType":3,
+ "chineseTText":"舉旗體操隊",
+ "chineseTFontType":1,
+ "koreanText":"따라쟁이 깃발들고싶대",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_8_2",
+ "japaneseText":"まねっこハタアゲ隊",
+ "englishUsText":"Flag-Raising Contest",
+ "englishUsFontType":3,
+ "frenchText":"Lever de drapeau",
+ "frenchFontType":3,
+ "italianText":"Gara dell'alzabandiera",
+ "italianFontType":3,
+ "germanText":"Flaggenhiss-Wettbewerb",
+ "germanFontType":3,
+ "spanishText":"Concurso de izar banderas",
+ "spanishFontType":3,
+ "chineseTText":"舉旗體操隊",
+ "chineseTFontType":1,
+ "koreanText":"따라쟁이 깃발들고싶대",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_8_1",
+ "japaneseText":"ネコと杓子のハタアゲの動きを覚えて\nホイッスルの音が鳴ったら覚えたとおりに\n赤と白のハタをアゲていこう!\n\n赤いハタは右側の入力でアゲるよ!\n\n \n \n ",
+ "englishUsText":"Copy Cat and Shaxy's flag-raising rhythm!\n\nOnce you hear the whistle blow, raise the flags!\nUse the right-side input for the red flag!\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Imite le rythme de lever de\ndrapeau de Chat et Shaxy !\nQuand le sifflet retentit, lève les drapeaux !\nAppuie du côté rouge pour le drapeau rouge !",
+ "frenchFontType":3,
+ "italianText":"Imita il ritmo dell'alzabandiera di\nNeko e Shaxy!\n\nQuando senti il fischio, issa la bandiera!\nUsa i comandi rossi per la bandiera rossa!\n",
+ "italianFontType":3,
+ "germanText":"Lerne Katzes und Shaxys Flaggenhiss-Rhythmus!\nKommt der Pfiff, hisse deine Flagge genauso wie \nsie! Rechte Eingabemöglichkeiten hissen rot!",
+ "germanFontType":3,
+ "spanishText":"¡Imita el ritmo de Cat y Shaxy al izar banderas!\n\nCuando oigas el pitido, iza las banderas. Usa \nlas opciones en rojo para la bandera roja.\n",
+ "spanishFontType":3,
+ "chineseTText":"記住貓與飯匙舉旗的動作,當哨聲響起時\n就按照記憶舉起紅色與白色的旗子吧!\n\n紅旗是輸入右邊喔!",
+ "chineseTFontType":1,
+ "koreanText":"고양이와 주걱이 깃발을 올리는 움직임을 기억했다가\n호루라기 소리가 나면 기억한 대로\n빨간 깃발과 하얀 깃발을 들자!\n\n빨간 깃발은 오른쪽 입력으로 들어!\n\n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_8_2",
+ "japaneseText":"白いハタは左側の入力でアゲるよ!\n\nネコと杓子が後ろを向いたら注意!\nハタの色をしっかり見てね!\n \n \n \n \n ",
+ "englishUsText":"Use the left-side input for the white flag!\n\nWatch out for when Cat and Shaxy turn their\nbacks, and pay attention to the flag colors!\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Appuie du côté bleu pour le drapeau blanc !\nFais attention quand Chat et Shaxy tournent\nle dos et observe bien la couleur du drapeau !",
+ "frenchFontType":3,
+ "italianText":"Usa i comandi blu per la bandiera bianca!\n\nFai attenzione a quando Neko e Shaxy\nti voltano le spalle e al colore della bandiera!",
+ "italianFontType":3,
+ "germanText":"Linke Eingabemöglichkeiten hissen weiß! Pass\nauf, wenn Katze und Shaxy sich umdrehen, und \nachte dabei auf die Flaggenfarbe!",
+ "germanFontType":3,
+ "spanishText":"Usa las opciones en azul para la blanca.\n\nCuidado cuando Cat y Shaxy se den la vuelta. \n¡Presta atención al color de las banderas!",
+ "spanishFontType":3,
+ "chineseTText":"白旗是輸入左邊喔!\n\n要是貓與飯匙背對我們的話就得當心!\n要確實看清楚旗子的顏色!",
+ "chineseTFontType":1,
+ "koreanText":"하얀 깃발은 왼쪽 입력으로 들어!\n\n고양이와 주걱이 뒤를 돌면 주의!\n깃발 색을 잘 봐!\n \n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_bon_1",
+ "japaneseText":"みんなでぼんおどり",
+ "englishUsText":"DON KA Obon Dance",
+ "englishUsFontType":3,
+ "frenchText":"Danse Obon DON ET KA",
+ "frenchFontType":3,
+ "italianText":"Danza obon di DON e KA",
+ "italianFontType":3,
+ "germanText":"DON-/KA-Obon-Tanz",
+ "germanFontType":3,
+ "spanishText":"Danza Obon de DON y KA.",
+ "spanishFontType":3,
+ "chineseTText":"大家來跳盆踊",
+ "chineseTFontType":1,
+ "koreanText":"다 함께 백중맞이춤",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_bon_2",
+ "japaneseText":"みんなでぼんおどり",
+ "englishUsText":"DON KA Obon Dance",
+ "englishUsFontType":3,
+ "frenchText":"Danse Obon DON ET KA",
+ "frenchFontType":3,
+ "italianText":"Danza obon di DON e KA",
+ "italianFontType":3,
+ "germanText":"DON-/KA-Obon-Tanz",
+ "germanFontType":3,
+ "spanishText":"Danza Obon de DON y KA.",
+ "spanishFontType":3,
+ "chineseTText":"大家來跳盆踊",
+ "chineseTFontType":1,
+ "koreanText":"다 함께 백중맞이춤",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_bon_1",
+ "japaneseText":"リズムに合わせて入力して、\n前へ後ろへ楽しくおどっちゃおう!\n\n左に回るときはドン・ドン・ドン・ドン!\n右に回るときはドン・休み・ドン・休み!\n \n全員成功で得点ゲット!\n \n ",
+ "englishUsText":"Dance back and forth in time with the rhythm!\nHit four Dons to turn left,\nand go Don-stop-Don-stop to turn right!\n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Danse en rythme d'avant en arrière !\nFais Don-Don-Don-Don en sens anti-horaire,\net fais Don-stop-Don-stop en sens horaire !",
+ "frenchFontType":3,
+ "italianText":"Danza andando avanti e indietro seguendo il\nritmo! Suona quattro Don in senso antiorario\ne fai Don-stop-Don-stop in senso orario!",
+ "italianFontType":3,
+ "germanText":"Tanze im Takt vor und zurück! Triff vier kurze \nDons für eine Drehung nach links und mach \nDon-stop-Don-stop für eine Drehung nach rechts!",
+ "germanFontType":3,
+ "spanishText":"¡Baila adelante y atrás siguiendo el ritmo!\n¡Toca Don-alto-Don-alto para ir en el sentido de\nlas agujas y 4 Don para ir en sentido contrario!",
+ "spanishFontType":3,
+ "chineseTText":"配合節奏輸入,向前向後愉快地跳舞吧!\n\n向左轉時為咚、咚、咚、咚!\n向右轉時為咚~、咚 ~!\n\n全體成功即可得分!",
+ "chineseTFontType":1,
+ "koreanText":"리듬에 맞게 입력해서\n앞으로 뒤로 즐겁게 춤추자!\n\n왼쪽으로 돌 때는 쿵, 쿵, 쿵, 쿵!\n오른쪽으로 돌 때는 쿵, 쉬고, 쿵, 쉬고!\n \n모두가 성공하면 득점!\n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_bon_2",
+ "japaneseText":"回る方向が変わるときは「カカカッカッ」と鳴るから\n聞きのがさないように注意!\n\n2種類のリズムをたたきわけて\n輪になってもりあがれ! \n \n\n \n ",
+ "englishUsText":"\"K-K-Ka-Ka\" plays to mark direction changes,\nso keep your ears peeled! Use both rhythm\ntypes correctly to keep the dance going!\n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"\"K-K-Ka-Ka\" indique les changements de\ndirection, alors écoute bien ! Reproduis\nles deux rythmes autant de fois qu'il\nle faut pour continuer à danser !",
+ "frenchFontType":3,
+ "italianText":"Il cambio di direzione è indicato dal suono\n\"K-K-Ka-Ka\", orecchie aperte quindi! Riproduci\ni due diversi ritmi per far proseguire la danza!",
+ "italianFontType":3,
+ "germanText":"Nutze beide Rhythmen richtig, um den Tanz am \nLaufen zu halten! \"K-K-Ka-Ka\" signalisiert den \nRichtungswechsel, also halte die Ohren offen! ",
+ "germanFontType":3,
+ "spanishText":"¡\"K-K-Ka-Ka\" indica los cambios de dirección,\nasí que escucha atentamente! ¡Sigue ambos tipos\nde ritmo correctamente para seguir bailando!",
+ "spanishFontType":3,
+ "chineseTText":"由於改變迴轉方向時會發出「咔咔咔~咔~」的聲音,\n請注意別聽漏了!\n\n按照2種節奏,繞圈跳舞來炒熱氣氛吧!",
+ "chineseTFontType":1,
+ "koreanText":"도는 방향이 바뀔 때는 북을 연타하는 소리가 나니까\n소리를 놓치지 않도록 주의해!\n\n2종류의 리듬을 구별해서\n둥글게 서서 신나게 춤추자!\n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_batting_1",
+ "japaneseText":"ホームランバッター ",
+ "englishUsText":"Batting Center",
+ "englishUsFontType":3,
+ "frenchText":"Coup de batte",
+ "frenchFontType":3,
+ "italianText":"Area di battuta",
+ "italianFontType":3,
+ "germanText":"Im Rhythmus der Bälle",
+ "germanFontType":3,
+ "spanishText":"Centro de combate",
+ "spanishFontType":3,
+ "chineseTText":"全壘打好手",
+ "chineseTFontType":1,
+ "koreanText":"홈런 타자",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_batting_2",
+ "japaneseText":"ホームランバッター ",
+ "englishUsText":"Batting Center",
+ "englishUsFontType":3,
+ "frenchText":"Coup de batte",
+ "frenchFontType":3,
+ "italianText":"Area di battuta",
+ "italianFontType":3,
+ "germanText":"Im Rhythmus der Bälle",
+ "germanFontType":3,
+ "spanishText":"Centro de combate",
+ "spanishFontType":3,
+ "chineseTText":"全壘打好手",
+ "chineseTFontType":1,
+ "koreanText":"홈런 타자",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_batting_1",
+ "japaneseText":"ボールが来るタイミングで\nリズムに合わせてバットをふろう!\n\nストレートはまっすぐのはやい球!\n \n \n \n \n ",
+ "englishUsText":"When the ball comes,\nswing your bat in time with the rhythm!\n\nFastballs come in straight and quick!\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Lorsque la balle arrive, donne\ndes coups de batte en rythme !\nLes balles rapides arrivent tout droit !",
+ "frenchFontType":3,
+ "italianText":"Quando arriva la pallina, colpiscila con la \nmazza seguendo il ritmo!\n\nI lanci veloci arrivano dritti e rapidi!",
+ "italianFontType":3,
+ "germanText":"Wenn der Ball kommt, schwing deinen Schläger im \nTakt! \nFastbälle fliegen unberechenbar schnell! ",
+ "germanFontType":3,
+ "spanishText":"¡Golpea con el bate siguiendo el ritmo\ncuando se acerque la bola!\nLas bolas rápidas vienen con rapidez y \nen línea recta.",
+ "spanishFontType":3,
+ "chineseTText":"在球飛來時,配合節奏揮棒吧!\n\n直球為直線快速球!",
+ "chineseTFontType":1,
+ "koreanText":"공이 날아오는 타이밍에\n리듬에 맞춰 방망이를 휘두르자!\n\n직구는 똑바로 빨리 날아오는 공!\n \n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_batting_2",
+ "japaneseText":"分身魔球はおそい球!\n火の玉ストレートはすごくはやい球だ!\n\nタイミングに気をつけて!\n \n \n \n \n ",
+ "englishUsText":"Curveballs clone themselves and come in slowly,\nand fire fastballs come in really fast!\nWatch the ball and aim for a home run!\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Les balles courbes se multiplient en arrivant\ndoucement et les balles rapides enflammées\nvont très vite ! Vise pour faire un home run !",
+ "frenchFontType":3,
+ "italianText":"I lanci lenti si clonano e arrivano lentamente,\nmentre quelli veloci arrivano dritti e rapidi!\nSegui la pallina e punta a fare un fuori campo!",
+ "italianFontType":3,
+ "germanText":"Curveballs klonen sich und fliegen langsam, \naber Fastballs fliegen direkt und schnell!\nFokussiere den Ball und lande einen Homerun!",
+ "germanFontType":3,
+ "spanishText":"¡Las bolas curvas se clonan y llegan lentamente\ny las bolas de fuego llegan muy rápido!\n¡Observa la bola y consigue un home run!",
+ "spanishFontType":3,
+ "chineseTText":"曲球為會分身的慢速球!\n火焰直球是非常快速的球!\n\n要注意時機!",
+ "chineseTFontType":1,
+ "koreanText":"분신 마구는 느린 공!\n불꽃 직구는 무지 빠른 공이야!\n\n타이밍에 주의해!\n \n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_21_1",
+ "japaneseText":"のびのびもちつき",
+ "englishUsText":"Stretchy Mochi Pounding",
+ "englishUsFontType":3,
+ "frenchText":"Préparation du mochi",
+ "frenchFontType":3,
+ "italianText":"Pesta il mochi",
+ "italianFontType":3,
+ "germanText":"Schlag den Mochi",
+ "germanFontType":3,
+ "spanishText":"Machacando mochis elásticos",
+ "spanishFontType":3,
+ "chineseTText":"快樂搗麻糬",
+ "chineseTFontType":1,
+ "koreanText":"쭉쭉 방아 찧기",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_21_1",
+ "japaneseText":"どんちゃんがふりかぶったタイミングで\nモチをついていこう!\n\n2人交代でモチをついていくよ!\n \n \n \n \n ",
+ "englishUsText":"Match your mallet to DON-chan's movements\nand pound the mochi at the right time!\n\nTake turns pounding it together as a team!\n",
+ "englishUsFontType":3,
+ "frenchText":"Synchronise tes coups de maillet avec\nles mouvements du personnage et\nécrase le mochi tour à tour en rythme !",
+ "frenchFontType":3,
+ "italianText":"Colpisci col martello tenendo il tempo dei\nmovimenti del personaggio per pestare il mochi!\n\nSiete una squadra, quindi colpite a turno!",
+ "italianFontType":3,
+ "germanText":"Passe den Schlägel an deine Bewegungen\nan und schlag den Mochi im richtigen Moment!\nLöst euch ab und schlagt ihn in Teamarbeit!",
+ "germanFontType":3,
+ "spanishText":"¡Sincroniza tu mazo con los movimientos de\ntu personaje y aporrea al mochi en el momento\npreciso!\n¡Sois un equipo, así que dad golpes por turnos!\n",
+ "spanishFontType":3,
+ "chineseTText":"在小咚舉起鎚子時搗麻糬吧!\n\n以2人交替的方式搗麻糬!",
+ "chineseTFontType":1,
+ "koreanText":"동이가 휘두르는 타이밍에 맞춰\n떡방아를 찧자!\n\n둘이서 교대로 방아를 찧을 거야!\n \n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_22_1",
+ "japaneseText":"打ち上げ花火",
+ "englishUsText":"Fireworks",
+ "englishUsFontType":3,
+ "frenchText":"Feux d'artifice",
+ "frenchFontType":3,
+ "italianText":"Fuochi d'artificio",
+ "italianFontType":3,
+ "germanText":"Feuerwerk",
+ "germanFontType":3,
+ "spanishText":"Fuegos artificiales",
+ "spanishFontType":3,
+ "chineseTText":"放煙火",
+ "chineseTFontType":1,
+ "koreanText":"불꽃 쏘아올리기",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_22_1",
+ "japaneseText":"リズムに合わせて夜空に花火を打ち上げよう!\n\n花火玉がつつに入った数をよく見て\n同じ数だけリズムよく入力しよう!\n \n \n\n\n",
+ "englishUsText":"Hit the switch in time with the rhythm to launch\nfireworks into the night sky! Pay attention to\nhow many fireworks are in the container!\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Active l'interrupteur bien en rythme pour\nlancer les feux d'artifice dans le ciel étoilé !\nSois attentif au nombre de mortiers chargés !",
+ "frenchFontType":3,
+ "italianText":"Colpisci l'interruttore seguendo il ritmo\nper illuminare il cielo notturno con\ni fuochi d'artificio! Fai attenzione a quanti \nfuochi d'artificio ci sono nel contenitore.",
+ "italianFontType":3,
+ "germanText":"Drück den Auslöser im Takt, um ein Feuerwerk\nin den Nachthimmel zu schießen! Achte auf die \nAnzahl an Feuerwerkskörpern in den Röhren!",
+ "germanFontType":3,
+ "spanishText":"¡Toca la palanca siguiendo el ritmo para llenar\nde fuegos artificiales el cielo! Atención con el\nnúmero de artefactos en los recipientes.",
+ "spanishFontType":3,
+ "chineseTText":"配合節奏朝夜空施放煙火吧!\n\n看清楚煙火球放入發射筒的數量,\n再依同樣次數的節奏來輸入!",
+ "chineseTFontType":1,
+ "koreanText":"리듬에 맞춰 밤하늘에 불꽃을 쏘아 올리자!\n\n발사대에 들어간 불꽃 폭죽의 수를 잘 보고\n같은 수만큼 리듬에 맞춰 입력하자!\n \n \n \n \n",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_23_1",
+ "japaneseText":"KABUKI",
+ "englishUsText":"Kabuki",
+ "englishUsFontType":3,
+ "frenchText":"Kabuki",
+ "frenchFontType":3,
+ "italianText":"Kabuki",
+ "italianFontType":3,
+ "germanText":"Kabuki",
+ "germanFontType":3,
+ "spanishText":"Kabuki",
+ "spanishFontType":3,
+ "chineseTText":"歌舞伎",
+ "chineseTFontType":1,
+ "koreanText":"KABUKI",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_23_2",
+ "japaneseText":"KABUKI",
+ "englishUsText":"Kabuki",
+ "englishUsFontType":3,
+ "frenchText":"Kabuki",
+ "frenchFontType":3,
+ "italianText":"Kabuki",
+ "italianFontType":3,
+ "germanText":"Kabuki",
+ "germanFontType":3,
+ "spanishText":"Kabuki",
+ "spanishFontType":3,
+ "chineseTText":"歌舞伎",
+ "chineseTFontType":1,
+ "koreanText":"KABUKI",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_23_1",
+ "japaneseText":"ひよこの動きを覚えてお手本通りにおどろう!\n\nイカがつづみをたたいたら入力の合図だよ!\n \n\n\n \n\n ",
+ "englishUsText":"Watch how the chick dances and copy it!\n\nWhen the squid hits the drum, that's your cue!\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Observe le poussin danser et imite-le !\nC'est à toi quand les calamars\ndonnent un coup de tambour !\n",
+ "frenchFontType":3,
+ "italianText":"Osserva i movimenti della gallina e imitali!\n\nI colpi di tamburo del calamaro sono il tuo \nsegnale!",
+ "italianFontType":3,
+ "germanText":"Schau wie das Küken tanzt und mach es ihm nach!\nWenn die Tintenfische auf die Trommel schlagen,\nist das dein Zeichen!",
+ "germanFontType":3,
+ "spanishText":"¡Observa los movimientos del pollo e imítalos!\nLos golpes de tambor del calamar indican que es\ntu turno.",
+ "spanishFontType":3,
+ "chineseTText":"記好小雞的動作,來隨雞起舞吧!\n\n一旦烏賊發出聲音,\n就是開始跳舞的訊號喔!",
+ "chineseTFontType":1,
+ "koreanText":"병아리의 움직임을 기억해서 시범대로 춤추자!\n\n오징어가 북을 치면, 입력하라는 신호야!\n\n \n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_23_2",
+ "japaneseText":"ジャンプの動きは着地のタイミングで同時入力!\n両手に花をさかせよう!\n \n \n \n \n \n \n ",
+ "englishUsText":"When the chick jumps, hit left and right\ntogether when it lands!\nMake sure it has flowers in both hands!\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Lorsqu'il faut sauter, appuie rouge et\nbleu ensemble au moment d'atterrir\net des fleurs apparaîtront !",
+ "frenchFontType":3,
+ "italianText":"Quando la gallina salta, usa i comadi rossi e\nblu insieme nel momento in cui atterra!\nDeve avere dei fiori in entrambe le mani!",
+ "italianFontType":3,
+ "germanText":"Sobald aus dem Sprung zur Landung angesetzt \nwird, betätige gleichzeitig die linke und rechte \nEingabeoption. Machst du es gut, gibt es Blumen!",
+ "germanFontType":3,
+ "spanishText":"¡Si el pollo salta, toca sobre rojo y azul\na la vez cuando toque el suelo y aparecerán\nflores!",
+ "spanishFontType":3,
+ "chineseTText":"跳躍的動作是在著地的同時輸入大音符!\n以雙手讓花綻放吧!",
+ "chineseTFontType":1,
+ "koreanText":"점프하는 움직임은 착지 타이밍에 동시 입력하면 돼!\n양손에 꽃을 피우자!\n \n \n \n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_24_1",
+ "japaneseText":"ジャンジャンわんこそば",
+ "englishUsText":"Noodle Bowls",
+ "englishUsFontType":3,
+ "frenchText":"Bols de nouilles",
+ "frenchFontType":3,
+ "italianText":"Ciotole di noodle",
+ "italianFontType":3,
+ "germanText":"Nudelschalen",
+ "germanFontType":3,
+ "spanishText":"Bol de fideos",
+ "spanishFontType":3,
+ "chineseTText":"吸吸蕎麥麵",
+ "chineseTFontType":1,
+ "koreanText":"척척 한입 소바",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_24_2",
+ "japaneseText":"ジャンジャンわんこそば",
+ "englishUsText":"Noodle Bowls",
+ "englishUsFontType":3,
+ "frenchText":"Bols de nouilles",
+ "frenchFontType":3,
+ "italianText":"Ciotole di noodle",
+ "italianFontType":3,
+ "germanText":"Nudelschalen",
+ "germanFontType":3,
+ "spanishText":"Bol de fideos",
+ "spanishFontType":3,
+ "chineseTText":"吸吸蕎麥麵",
+ "chineseTFontType":1,
+ "koreanText":"척척 한입 소바",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_24_1",
+ "japaneseText":"おわんにおそばが入ったリズムに合わせて\nズルズル食べていこう!\n\nおそば1玉入ると1回入力!\n2玉入ると2回連続で入力!\n \n \n \n ",
+ "englishUsText":"Keep the rhythm and slurp the noodles right as\nthey go in the bowls! Make sure to slurp the\nsame number of times as there are noodle bowls!\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Garde le rythme et avale les nouilles\npile quand elles arrivent dans ton bol !\nAssure-toi d'avaler autant de fois\nqu'il y a de bols de nouilles servis !",
+ "frenchFontType":3,
+ "italianText":"Segui il ritmo risucchiando i noodle\nproprio quando vengono versati\nnelle ciotole! Ricorda di risucchiare i noodle\ntante volte quante sono le ciotole!",
+ "italianFontType":3,
+ "germanText":"Bleib im Takt und schlürfe die Nudeln,\nwenn sie in die Schalen kommen! Schlürfe auch so \noft wie da Nudelschalen serviert werden!",
+ "germanFontType":3,
+ "spanishText":"¡Sigue el ritmo y sorbe los fideos\na medida que caen en los boles! \nSorbe tantas veces como boles haya.",
+ "spanishFontType":3,
+ "chineseTText":"配合節奏來迅速吃掉碗裡的蕎麥麵!\n\n放入一團麵輸入1次!\n放入兩團麵就連續輸入2次!",
+ "chineseTFontType":1,
+ "koreanText":"그릇에 소바가 들어간 타이밍에 맞춰서\n후루룩 먹자!\n\n소바 사리 1개가 들어가면 1번 입력!\n2개가 들어가면 2번 연속 입력!\n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_24_2",
+ "japaneseText":"ラーメンが出て来たらフーフーフーズルッ!\n4回連続で入力しよう!\n \n \n \n \n \n \n ",
+ "englishUsText":"If you get ramen instead,\nbe sure to blow on it four times first!\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Si tu as des ramen, n'oublie pas\nde souffler quatre fois dessus d'abord !",
+ "frenchFontType":3,
+ "italianText":"Se invece ti arriva una ciotola di ramen,\nsoffiaci sopra quattro volte.",
+ "italianFontType":3,
+ "germanText":"Bekommst du stattdessen Ramen serviert, vergiss\nnicht, als erstes viermal kräftig draufzupusten.",
+ "germanFontType":3,
+ "spanishText":"Si, por el contrario, te sirven ramen, \nsopla primero cuatro veces.",
+ "spanishFontType":3,
+ "chineseTText":"當出現拉麵的話,就要呼~呼~呼~吸!\n得連續輸入4次!",
+ "chineseTFontType":1,
+ "koreanText":"라면이 나오면 후~후~후~ 후루룩!\n4번 연속으로 입력하자!\n \n \n \n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_25_1",
+ "japaneseText":"スイーツマウンテン",
+ "englishUsText":"Cake Tower",
+ "englishUsFontType":3,
+ "frenchText":"Tour gâteau",
+ "frenchFontType":3,
+ "italianText":"Torre di tortini",
+ "italianFontType":3,
+ "germanText":"Tortenturm",
+ "germanFontType":3,
+ "spanishText":"Torre de tarta",
+ "spanishFontType":3,
+ "chineseTText":"甜點山",
+ "chineseTFontType":1,
+ "koreanText":"스위트 마운틴",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_25_1",
+ "japaneseText":"チームでリズムに合わせて\nケーキタワーを登っていこう!\n\nだんだんと登るスピードが速くなっていくから注意!\n \n \n \n \n ",
+ "englishUsText":"Climb the cake tower while keeping\nthe rhythm in your team! But watch out,\nbecause the pace picks up the higher you climb!\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Escalade la tour gâteau tout en gardant\nle rythme avec ton équipe ! Fais attention,\ncar le rythme s'accélère au fil de la montée !",
+ "frenchFontType":3,
+ "italianText":"Arrampicati sulla torre di tortini\nmantenendo il ritmo della tua\nsquadra! Ma fai attenzione: il ritmo\naumenta mano a mano che sali.",
+ "italianFontType":3,
+ "germanText":"Klettere auf den Tortenturm, während du mit \ndeinem Team im Takt bleibst! Pass aber auf, weil\ndie Geschwindigkeit mit der Kletterhöhe zunimmt!",
+ "germanFontType":3,
+ "spanishText":"¡Escala la torre de tarta sin perder\nel ritmo de tu equipo! Pero cuidado:\nel ritmo aumenta a medida que asciendes.",
+ "spanishFontType":3,
+ "chineseTText":"讓隊伍配合節奏登上蛋糕塔吧!\n\n要注意越爬速度會越快!",
+ "chineseTFontType":1,
+ "koreanText":"팀으로 리듬에 맞춰\n케이크 타워를 올라가자!\n\n올라가는 속도가 점점 빨라지니까 조심해!\n \n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_26_1",
+ "japaneseText":"なまはげがころんだ",
+ "englishUsText":"Red Light Green Light",
+ "englishUsFontType":3,
+ "frenchText":"Un deux trois soleil",
+ "frenchFontType":3,
+ "italianText":"Un, due, tre, stella!",
+ "italianFontType":3,
+ "germanText":"Ochs am Berg",
+ "germanFontType":3,
+ "spanishText":"Escondite inglés",
+ "spanishFontType":3,
+ "chineseTText":"123木頭人",
+ "chineseTFontType":1,
+ "koreanText":"나마하게 꽃이 피었습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_26_1",
+ "japaneseText":"「なまはげ」が「た・い・こ・の・た・つ・じ・ん」と\n言ってる間に連打で前に進もう!\n\n「なまはげ」にタッチできたら成功!\nこっちを向いているときは動いちゃダメだよ!\n \n \n \n ",
+ "englishUsText":"Use drumrolls to move forward while Namahage is\nsaying \"Taiko no Tatsujin\", but don't move when\nhe's looking this way! Touch him to win!\n",
+ "englishUsFontType":3,
+ "frenchText":"Fais des roulements de tambour pour avancer\npendant que Namahage dit \"Taiko no Tatsujin\",\nmais reste immobile lorsqu'il se retourne !\nTouche-le avant les autres pour gagner !",
+ "frenchFontType":3,
+ "italianText":"Per avanzare, esegui un rullo di tamburo mentre\nNamahage dice \"Taiko no Tatsujin\", ma non\nmuoverti quando si gira! Toccalo per vincere.",
+ "italianFontType":3,
+ "germanText":"Hüpfe vorwärts mit Trommelwirbeln, während \nNamahage \"Taiko no Tatsujin\" sagt, doch bleibe\nsofort stehen, sobald er sich umdreht! Erreiche\nihn vor den anderen, um zu gewinnen!",
+ "germanFontType":3,
+ "spanishText":"Haz redobles para avanzar mientras Namahage\ndice \"Taiko no Tatsujin\". ¡Pero no cuando se dé\nla vuelta! Tócalo para ganar.\n",
+ "spanishFontType":3,
+ "chineseTText":"在「生剝鬼」喊出「太、鼓、之、達、人」的期間\n以連打向前衝吧!\n\n如果碰到「生剝鬼」就算成功!\n當他轉過頭來時就不可以動喔!",
+ "chineseTFontType":1,
+ "koreanText":"「나마하게」가 「ta・i・ko・no・ta・tsu・ji・n」이라고\n말하는 동안 연타 입력을 해서 앞으로 가자!\n\n「나마하게」를 터치하면 성공!\n이쪽을 보고 있을 때는 움직이면 안 돼!\n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_27_1",
+ "japaneseText":"まんぷくランナー",
+ "englishUsText":"Full-Bellied Runner",
+ "englishUsFontType":3,
+ "frenchText":"Coureur affamé",
+ "frenchFontType":3,
+ "italianText":"Chi ha fame, salti!",
+ "italianFontType":3,
+ "germanText":"Voller Bauch",
+ "germanFontType":3,
+ "spanishText":"Corredor saciado",
+ "spanishFontType":3,
+ "chineseTText":"大胃王跑者",
+ "chineseTFontType":1,
+ "koreanText":"배부른 러너",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_27_1",
+ "japaneseText":"タイミングよくジャンプして、\n屋台の食べ物をゲットしよう!\n\nジャンプするかどうかは、\n食べ物の高さをしっかり見てね!\n \n \n \n ",
+ "englishUsText":"Jump at the right time to get food from the food\nstall! Be sure to look at how high up the item\nis before deciding whether to jump!\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Saute au bon moment pour prendre la nourriture !\nRegarde bien à quelle hauteur elle se trouve\navant de décider si tu dois sauter ou non !",
+ "frenchFontType":3,
+ "italianText":"Salta al momento giusto per ottenere\nil cibo dalla bancarella! Fai attenzione\nall'altezza dell'oggetto prima di saltare!",
+ "italianFontType":3,
+ "germanText":"Spring im richtigen Moment, um Essen vom Imbiss-\nstand zu erhalten! Schau wie hoch es hängt, bevor \ndu entscheidest, ob ein Sprung nötig ist.",
+ "germanFontType":3,
+ "spanishText":"¡Salta en el momento justo para coger comida\ndel puesto! Mira bien la altura del objeto antes\nde saltar.\n",
+ "spanishFontType":3,
+ "chineseTText":"抓準時機跳躍,\n取得攤子的食物吧!\n\n得先確定道具的高度,\n才知道要怎樣跳躍喔!",
+ "chineseTFontType":1,
+ "koreanText":"타이밍에 맞게 점프해서\n노점의 음식을 먹자!\n\n점프할지 말지는\n음식의 높이를 잘 보고 결정하자!\n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_28_1",
+ "japaneseText":"ケンケンパ",
+ "englishUsText":"Hopskotch",
+ "englishUsFontType":3,
+ "frenchText":"Marelle",
+ "frenchFontType":3,
+ "italianText":"Gioco della campana",
+ "italianFontType":3,
+ "germanText":"Hickelkasten",
+ "germanFontType":3,
+ "spanishText":"Rayuela",
+ "spanishFontType":3,
+ "chineseTText":"跳格子",
+ "chineseTFontType":1,
+ "koreanText":"사방치기",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_28_2",
+ "japaneseText":"ケンケンパ",
+ "englishUsText":"Hopskotch",
+ "englishUsFontType":3,
+ "frenchText":"Marelle",
+ "frenchFontType":3,
+ "italianText":"Gioco della campana",
+ "italianFontType":3,
+ "germanText":"Hickelkasten",
+ "germanFontType":3,
+ "spanishText":"Rayuela",
+ "spanishFontType":3,
+ "chineseTText":"跳格子",
+ "chineseTFontType":1,
+ "koreanText":"사방치기",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_28_1",
+ "japaneseText":"リズムに合わせてジャンプして\nケンケンパをしよう!\n \nわっかが1つのときは赤ワクのどれかを入力しよう!\n\n \n \n\n\n ",
+ "englishUsText":"Hop, skip, and jump in time with the rhythm!\nIf there's only one hoop,\nhit any of the red frames!\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Saute et bondis en rythme !\nS'il n'y a qu'un seul cerceau, appuie sur\nn'importe quelle zone encadrée en rouge !",
+ "frenchFontType":3,
+ "italianText":"Saltella, schiva e salta seguendo il ritmo!\nQuando c'è solo un cerchio, usa i comandi\nrossi!",
+ "italianFontType":3,
+ "germanText":"Hops, hüpf und spring im Takt! Wenn \nes nur einen Reifen gibt, betätige eine \nder rot markierten Eingabemöglichkeiten!",
+ "germanFontType":3,
+ "spanishText":"¡Salta a la pata coja y avanza con el ritmo!\nSi solo hay un aro, toca cualquier opción\nmarcada en rojo.",
+ "spanishFontType":3,
+ "chineseTText":"配合節奏跳起來吧!\n\n當出現一個圓環時輸入任一紅框!",
+ "chineseTFontType":1,
+ "koreanText":"리듬에 맞춰 점프해서\n사방치기를 하자!\n \n발판이 1개일 때는\n빨간 테두리로 표시된 것 중 아무거나 입력하자! \n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_28_2",
+ "japaneseText":"わっかが2つのときは同時入力だよ!\n\n\n\n \n \n \n \n ",
+ "englishUsText":"If there are two hoops,\nhit left and right together!\n\n",
+ "englishUsFontType":3,
+ "frenchText":"S'il y a deux cerceaux, appuie\nrouge et bleu ensemble !",
+ "frenchFontType":3,
+ "italianText":"Quando ci sono due cerchi, usa i comadi\nrossi e blu allo stesso tempo!",
+ "italianFontType":3,
+ "germanText":"Wenn es zwei Reifen gibt, betätige gleichzeitig \neine der linken und rechten Eingabemöglichkeiten!",
+ "germanFontType":3,
+ "spanishText":"¡Si hay dos aros,\ntoca sobre azul y rojo a la vez!",
+ "spanishFontType":3,
+ "chineseTText":"當出現兩個圓環時輸入大音符!",
+ "chineseTFontType":1,
+ "koreanText":"발판이 두 개 있을 때는 좌우를 동시에 입력!\n\n\n\n \n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_29_1",
+ "japaneseText":"はちみつ大作戦",
+ "englishUsText":"Honeybee",
+ "englishUsFontType":3,
+ "frenchText":"Abeille",
+ "frenchFontType":3,
+ "italianText":"L'ape e il nettare",
+ "italianFontType":3,
+ "germanText":"Fleißiges Bienchen",
+ "germanFontType":3,
+ "spanishText":"Abeja",
+ "spanishFontType":3,
+ "chineseTText":"蜂蜜大作戰",
+ "chineseTFontType":1,
+ "koreanText":"벌꿀 대작전",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_29_1",
+ "japaneseText":"花が開くタイミングをみきわめて\nミツをゲットしよう!\n\n大きく花が開いたらチャンス!\n音楽をよく聞いていればゲットしやすいよ!\n \n \n \n ",
+ "englishUsText":"Wait for the flower to bloom, then go for the\nnectar! When the flower blooms big, that’s your\nchance! Don't forget to listen to the music!\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Attends que la fleur éclose, puis va chercher\nle nectar quand elle est grande ouverte !\nReste attentif à la musique !",
+ "frenchFontType":3,
+ "italianText":"Aspetta che il fiore sbocci, quindi cerca di\nsucchiare il nettare al momento giusto! Quando\nil fiore diventa grande, è il momento giusto!\nNon dimenticarti di ascoltare la musica.",
+ "italianFontType":3,
+ "germanText":"Warte, bis die Blume blüht und am weitesten \ngeöffnet ist, um dir den Nektar zu holen! \nVergiss dabei nicht, auf die Musik zu achten!",
+ "germanFontType":3,
+ "spanishText":"¡Espera a que la flor se abra al máximo y ve a \npor el néctar! No te olvides de escuchar la \nmúsica.",
+ "spanishFontType":3,
+ "chineseTText":"抓準開花的時機,取得花蜜吧!\n\n當大朵的花綻開時便是好機會!\n只要能仔細聆聽音樂就能夠輕鬆取得喔!",
+ "chineseTFontType":1,
+ "koreanText":"꽃이 피는 타이밍을 알아내서\n꿀을 얻자!\n\n꽃이 크게 피면 찬스!\n음악을 잘 들으면 얻기 쉬워!\n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_30_1",
+ "japaneseText":"コロドラゴンの焼き焼き屋台",
+ "englishUsText":"Coro Dragon’s Iron Griddle",
+ "englishUsFontType":3,
+ "frenchText":"Grill du dragon Coro",
+ "frenchFontType":3,
+ "italianText":"Grigliata col drago di Coro",
+ "italianFontType":3,
+ "germanText":"Grillmeister Coro",
+ "germanFontType":3,
+ "spanishText":"La parrilla del dragón Coro",
+ "spanishFontType":3,
+ "chineseTText":"格樂龍的烤烤攤",
+ "chineseTFontType":1,
+ "koreanText":"코로 드래곤의 숯불구이점",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_30_2",
+ "japaneseText":"コロドラゴンの焼き焼き屋台",
+ "englishUsText":"Coro Dragon’s Iron Griddle",
+ "englishUsFontType":3,
+ "frenchText":"Grill du dragon Coro",
+ "frenchFontType":3,
+ "italianText":"Grigliata col drago di Coro",
+ "italianFontType":3,
+ "germanText":"Grillmeister Coro",
+ "germanFontType":3,
+ "spanishText":"La parrilla del dragón Coro",
+ "spanishFontType":3,
+ "chineseTText":"格樂龍的烤烤攤",
+ "chineseTFontType":1,
+ "koreanText":"코로 드래곤의 숯불구이점",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_30_1",
+ "japaneseText":"アミの上に置かれた食べ物をリズムに合わせて\nコロドラゴンのほのおで焼いていこう!\n\nコロコロコミックをもやすと、\n全ての食べ物がきえちゃうから\n気をつけてね!\n \n \n\n ",
+ "englishUsText":"Cook the food on the grill with Coro Dragon’s\nflames! Once the food is all lined up, make sure\nto match the number of flames to the food!\n",
+ "englishUsFontType":3,
+ "frenchText":"Cuis la nourriture du grill avec les flammes\ndu dragon Coro ! Une fois la nourriture alignée,\nassure-toi d'avoir le même nombre de flammes !",
+ "frenchFontType":3,
+ "italianText":"Cuoci il cibo sulla griglia usando le fiammate\ndel drago di Coro! Una volta allineato il cibo,\nlancia un numero corrispondente di fiammate!",
+ "italianFontType":3,
+ "germanText":"Bereite mit den Flammen des Drachen Coro das \nEssen auf dem Grill zu! Sobald das Essen aufgereiht ist, \nverwende die entsprechende Anzahl an Flammen!",
+ "germanFontType":3,
+ "spanishText":"¡Cocina la comida de la parrilla con las llamas\ndel dragón Coro! ¡Cuando la comida esté alineada,\nhaz coincidir el número de llamas con los alimentos!",
+ "spanishFontType":3,
+ "chineseTText":"網子上放著的食物,\n就用格樂龍的火焰來烤熟吧!\n\n另外當快樂快樂月刊被燒掉後,\n所有的食物就會全沒了!得要注意喔!",
+ "chineseTFontType":1,
+ "koreanText":"석쇠 위에 올라간 음식을 리듬에 맞춰서\n코로 드래곤의 불꽃으로 굽자!\n\n코로코로 코믹을 태우면\n음식이 전부 타버리니까\n조심하자!\n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_30_2",
+ "japaneseText":"最後はみんなでマグロを焼くよ!\n連打入力でこんがり焼いちゃおう!\n\n\n\n\n\n \n ",
+ "englishUsText":"Finish up by cooking a tuna! Use drumrolls to\nroast it till it’s just right! Be careful not to\ncook a Coro Coro Comic, or the food will burn!\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Termine en faisant cuire un thon ! Utilise les\nr. de tambour pour le rôtir ! Ne cuis pas un\nCoro Coro Comic, ou la nourriture sera brûlée !",
+ "frenchFontType":3,
+ "italianText":"Termina cucinando il tonno! Usa i rulli\ndi tamburo per arrostirlo a puntino!\nNon bruciare i fumetti Coro Coro però,\naltrimenti brucerai anche il tonno!",
+ "italianFontType":3,
+ "germanText":"Grille zum Schluss einen Thunfisch! Trommelwirbel\nhelfen, ihn gut durchzubraten! Erwische dabei aber\nkeinen Coro Coro Comic, sonst verkohlt das Essen!",
+ "germanFontType":3,
+ "spanishText":"¡Termina cocinando un atún! ¡Usa los redobles\npara dejarlo en su punto! ¡Procura no cocinar\nun cómic Coro Coro o la comida se quemará!",
+ "spanishFontType":3,
+ "chineseTText":"最後大家來烤鮪魚吧!\n輸入連打將鮪魚烤熟吧!\n",
+ "chineseTFontType":1,
+ "koreanText":"마지막에는 다 함께 참치를 구울 거야!\n연타 입력으로 노릇노릇 굽자!\n\n\n \n \n \n \n ",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_controller1",
+ "japaneseText":"「Joy-Con」横持ち",
+ "englishUsText":"Solo Horizontal Grip",
+ "englishUsFontType":3,
+ "frenchText":"Commandes boutons (multi.)",
+ "frenchFontType":3,
+ "italianText":"Pulsanti (multigiocatore)",
+ "italianFontType":3,
+ "germanText":"Knopfsteuerung (Mehrspieler)",
+ "germanFontType":3,
+ "spanishText":"Control por botones (multi.)",
+ "spanishFontType":3,
+ "chineseTText":"橫握「Joy-Con控制器」",
+ "chineseTFontType":1,
+ "koreanText":"「Joy-Con」 가로 잡기",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_controller2",
+ "japaneseText":"バチ持ち",
+ "englishUsText":"Drumstick Grip",
+ "englishUsFontType":3,
+ "frenchText":"Support baguettes",
+ "frenchFontType":3,
+ "italianText":"Impugnatura a bacchetta",
+ "italianFontType":3,
+ "germanText":"Schlägelgriff",
+ "germanFontType":3,
+ "spanishText":"Control de baqueta",
+ "spanishFontType":3,
+ "chineseTText":"鼓棒握法",
+ "chineseTFontType":1,
+ "koreanText":"북채 잡기",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_controller3",
+ "japaneseText":"「Joy-Con」2本持ち",
+ "englishUsText":"Dual-Controller Grip",
+ "englishUsFontType":3,
+ "frenchText":"Commandes boutons",
+ "frenchFontType":3,
+ "italianText":"Pulsanti",
+ "italianFontType":3,
+ "germanText":"Knopf- und Tastensteuerung",
+ "germanFontType":3,
+ "spanishText":"Control por botones",
+ "spanishFontType":3,
+ "chineseTText":"左右握著「Joy-Con控制器」",
+ "chineseTFontType":1,
+ "koreanText":"「Joy-Con」 2개잡기",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_controller4",
+ "japaneseText":"太鼓コントローラー",
+ "englishUsText":"Drum Controller",
+ "englishUsFontType":3,
+ "frenchText":"Contrôleur tambour",
+ "frenchFontType":3,
+ "italianText":"Contr. tamburo",
+ "italianFontType":3,
+ "germanText":"Trommel-Controller",
+ "germanFontType":3,
+ "spanishText":"Mando tambor",
+ "spanishFontType":3,
+ "chineseTText":"太鼓控制器",
+ "chineseTFontType":1,
+ "koreanText":"북 컨트롤러",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_inp_skip",
+ "japaneseText":"スキップ",
+ "englishUsText":"Skip",
+ "englishUsFontType":3,
+ "frenchText":"Passer",
+ "frenchFontType":3,
+ "italianText":"Salta",
+ "italianFontType":3,
+ "germanText":"Überspringen",
+ "germanFontType":3,
+ "spanishText":"Omitir",
+ "spanishFontType":3,
+ "chineseTText":"略過",
+ "chineseTFontType":1,
+ "koreanText":"스킵",
+ "koreanFontType":2
+ },
+ {
+ "key":"mg_tut_pause_continue",
+ "japaneseText":"続ける",
+ "englishUsText":"Continue",
+ "englishUsFontType":3,
+ "frenchText":"Continuer",
+ "frenchFontType":3,
+ "italianText":"Continua",
+ "italianFontType":3,
+ "germanText":"Fortfahren",
+ "germanFontType":3,
+ "spanishText":"Continuar",
+ "spanishFontType":3,
+ "chineseTText":"繼續",
+ "chineseTFontType":1,
+ "koreanText":"계속하기",
+ "koreanFontType":2
+ },
+ {
+ "key":"mg_tut_pause_start",
+ "japaneseText":"本番スタート",
+ "englishUsText":"Start",
+ "englishUsFontType":3,
+ "frenchText":"Commencer",
+ "frenchFontType":3,
+ "italianText":"Avvia",
+ "italianFontType":3,
+ "germanText":"Start",
+ "germanFontType":3,
+ "spanishText":"Empezar",
+ "spanishFontType":3,
+ "chineseTText":"正式開始",
+ "chineseTFontType":1,
+ "koreanText":"본 게임 시작",
+ "koreanFontType":2
+ },
+ {
+ "key":"mg_tut_pause_restart",
+ "japaneseText":"初めからやり直す",
+ "englishUsText":"Retry",
+ "englishUsFontType":3,
+ "frenchText":"Réessayer",
+ "frenchFontType":3,
+ "italianText":"Riprova",
+ "italianFontType":3,
+ "germanText":"Erneut versuchen",
+ "germanFontType":3,
+ "spanishText":"Reintentar",
+ "spanishFontType":3,
+ "chineseTText":"重頭開始",
+ "chineseTFontType":1,
+ "koreanText":"처음부터 다시 한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"mg_tut_pause_mselbk",
+ "japaneseText":"「ゲームをえらぶ」にもどる",
+ "englishUsText":"Back to Select Game",
+ "englishUsFontType":3,
+ "frenchText":"Retour au choix du jeu",
+ "frenchFontType":3,
+ "italianText":"Torna a Sel. partita",
+ "italianFontType":3,
+ "germanText":"Zurück zur Spielwahl",
+ "germanFontType":3,
+ "spanishText":"Volver a Elegir partida",
+ "spanishFontType":3,
+ "chineseTText":"返回「選擇遊戲」",
+ "chineseTFontType":1,
+ "koreanText":"「게임 선택」으로 돌아간다",
+ "koreanFontType":2
+ },
+ {
+ "key":"mg_tut_pause_modbk",
+ "japaneseText":"「モードをえらぶ」にもどる",
+ "englishUsText":"Back to Select Mode",
+ "englishUsFontType":3,
+ "frenchText":"Retour au choix du mode",
+ "frenchFontType":3,
+ "italianText":"Torna a Sel. modalità",
+ "italianFontType":3,
+ "germanText":"Zurück zur Moduswahl",
+ "germanFontType":3,
+ "spanishText":"Volver a Elegir modo",
+ "spanishFontType":3,
+ "chineseTText":"返回「選擇模式」",
+ "chineseTFontType":1,
+ "koreanText":"「모드 선택」으로 돌아간다",
+ "koreanFontType":2
+ },
+ {
+ "key":"minigame_score_hidden",
+ "japaneseText":"???",
+ "englishUsText":"???",
+ "englishUsFontType":3,
+ "frenchText":"???",
+ "frenchFontType":3,
+ "italianText":"???",
+ "italianFontType":3,
+ "germanText":"???",
+ "germanFontType":3,
+ "spanishText":"???",
+ "spanishFontType":3,
+ "chineseTText":"???",
+ "chineseTFontType":1,
+ "koreanText":"???",
+ "koreanFontType":2
+ },
+ {
+ "key":"minires_title",
+ "japaneseText":"結果発表",
+ "englishUsText":"Results",
+ "englishUsFontType":3,
+ "frenchText":"Résultats",
+ "frenchFontType":3,
+ "italianText":"Risultati",
+ "italianFontType":3,
+ "germanText":"Ergebn.",
+ "germanFontType":3,
+ "spanishText":"Resultados",
+ "spanishFontType":3,
+ "chineseTText":"結果發表",
+ "chineseTFontType":1,
+ "koreanText":"결과 발표",
+ "koreanFontType":2
+ },
+ {
+ "key":"minires_total",
+ "japaneseText":"合計スコア",
+ "englishUsText":"Total Score",
+ "englishUsFontType":3,
+ "frenchText":"Score total",
+ "frenchFontType":3,
+ "italianText":"Punteggio totale",
+ "italianFontType":3,
+ "germanText":"Gesamtpunktzahl",
+ "germanFontType":3,
+ "spanishText":"Puntuación total",
+ "spanishFontType":3,
+ "chineseTText":"合計成績",
+ "chineseTFontType":1,
+ "koreanText":"합계 스코어",
+ "koreanFontType":2
+ },
+ {
+ "key":"minigame_result_perfect",
+ "japaneseText":"パーフェクト!",
+ "englishUsText":"Perfect!",
+ "englishUsFontType":3,
+ "frenchText":"Parfait !",
+ "frenchFontType":3,
+ "italianText":"Perfetto!",
+ "italianFontType":3,
+ "germanText":"Perfekt!",
+ "germanFontType":3,
+ "spanishText":"¡Perfecto!",
+ "spanishFontType":3,
+ "chineseTText":"PERFECT!",
+ "chineseTFontType":1,
+ "koreanText":"퍼펙트!",
+ "koreanFontType":2
+ },
+ {
+ "key":"minisel_charsel_msg1",
+ "japaneseText":"使いたいキャラクターをえらんでね!",
+ "englishUsText":"Select the character you want to use!",
+ "englishUsFontType":3,
+ "frenchText":"Choisis le personnage que tu veux utiliser !",
+ "frenchFontType":3,
+ "italianText":"Seleziona il personaggio da usare!",
+ "italianFontType":3,
+ "germanText":"Wähle den Charakter, den du benutzen möchtest!",
+ "germanFontType":3,
+ "spanishText":"¡Elige el personaje que quieras usar!",
+ "spanishFontType":3,
+ "chineseTText":"請選擇想要使用的角色!",
+ "chineseTFontType":1,
+ "koreanText":"사용할 캐릭터를 선택해줘!",
+ "koreanFontType":2
+ },
+ {
+ "key":"minisel_charsel_msg2",
+ "japaneseText":"チーム対決のときは「どんちゃん・かっちゃんチーム」と\n「カレクッタ=ドンディー・よもぎまるチーム」で対決します",
+ "englishUsText":"Team battles pit DON-chan, KATSU-chan,\nCurrycutta, and Yomogimaru against each other.",
+ "englishUsFontType":3,
+ "frenchText":"Les combats d'équipe font s'affronter DON-chan\net KATSU-chan contre Currycutta et Yomogimaru.",
+ "frenchFontType":3,
+ "italianText":"Negli incontri a squadre, DON-chan e KATSU-chan se\nla vedono contro Currycutta e Yomogimaru.",
+ "italianFontType":3,
+ "germanText":"In Team-Kämpfen treten DON-chan und KATSU-chan und\nCurrycutta und Yomogimaru gegeneinander an.",
+ "germanFontType":3,
+ "spanishText":"En las batallas por equipos, DON-chan y KATSU-chan\nse enfrentan a Currycutta y a Yomogimaru.",
+ "spanishFontType":3,
+ "chineseTText":"在隊伍對決時將分為「小咚與小咔隊」與\n「咖哩‧咚迪與艾草丸隊」進行對決",
+ "chineseTFontType":1,
+ "koreanText":"팀 대결을 할 때는 「동이&딱이 팀」과\n「콜카레=동디&요모기마루 팀」으로 대결합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"minisel_char_conf",
+ "japaneseText":"みんなのキャラクターが決まったので\n1Pは決定してね!",
+ "englishUsText":"Everyone’s chosen a character, 1P! Start the game!",
+ "englishUsFontType":3,
+ "frenchText":"Personnages tous choisis, J1 ! Lance la partie !",
+ "frenchFontType":3,
+ "italianText":"Hanno tutti scelto un personaggio, G1! Avvia la partita!",
+ "italianFontType":3,
+ "germanText":"Alle haben ihren Charakter, Sp1! Starte das Spiel!",
+ "germanFontType":3,
+ "spanishText":"¡Todos tienen personaje, J1! ¡Inicia la partida!",
+ "spanishFontType":3,
+ "chineseTText":"大家選好角色後,\n就交由1P確定!",
+ "chineseTFontType":1,
+ "koreanText":"모두의 캐릭터가 결정되었으니까\n1P는 결정을 눌러줘!",
+ "koreanFontType":2
+ },
+ {
+ "key":"minisel_charchange",
+ "japaneseText":"キャラチェンジ",
+ "englishUsText":"Change Character",
+ "englishUsFontType":3,
+ "frenchText":"Changer de personnage",
+ "frenchFontType":3,
+ "italianText":"Cambia person.",
+ "italianFontType":3,
+ "germanText":"Charakter ändern",
+ "germanFontType":3,
+ "spanishText":"Cambiar personaje",
+ "spanishFontType":3,
+ "chineseTText":"切換角色",
+ "chineseTFontType":1,
+ "koreanText":"캐릭터 체인지",
+ "koreanFontType":2
+ },
+ {
+ "key":"minisel_clr_ttl",
+ "japaneseText":"ノルマスコア",
+ "englishUsText":"Clear Score",
+ "englishUsFontType":3,
+ "frenchText":"Objectif de score",
+ "frenchFontType":3,
+ "italianText":"Punti traguardo",
+ "italianFontType":3,
+ "germanText":"Punkte-Ziel",
+ "germanFontType":3,
+ "spanishText":"Objetivo de puntos",
+ "spanishFontType":3,
+ "chineseTText":"通關成績",
+ "chineseTFontType":1,
+ "koreanText":"클리어 스코어",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_0",
+ "japaneseText":"ま・ぐ・ろ",
+ "englishUsText":"ma-gu-ro",
+ "englishUsFontType":3,
+ "frenchText":"ma・gu・ro",
+ "frenchFontType":3,
+ "italianText":"ma・gu・ro",
+ "italianFontType":3,
+ "germanText":"ma・gu・ro",
+ "germanFontType":3,
+ "spanishText":"ma・gu・ro",
+ "spanishFontType":3,
+ "chineseTText":"ma・gu・ro",
+ "chineseTFontType":1,
+ "koreanText":"ma・gu・ro",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_1",
+ "japaneseText":"サー・モン",
+ "englishUsText":"sal-mon",
+ "englishUsFontType":3,
+ "frenchText":"sa・mon",
+ "frenchFontType":3,
+ "italianText":"sa・mon",
+ "italianFontType":3,
+ "germanText":"sa・mon",
+ "germanFontType":3,
+ "spanishText":"sa・mon",
+ "spanishFontType":3,
+ "chineseTText":"sa・mon",
+ "chineseTFontType":1,
+ "koreanText":"sa・mon",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_3",
+ "japaneseText":"た・こ",
+ "englishUsText":"ta-ko",
+ "englishUsFontType":3,
+ "frenchText":"ta・ko",
+ "frenchFontType":3,
+ "italianText":"ta・ko",
+ "italianFontType":3,
+ "germanText":"ta・ko",
+ "germanFontType":3,
+ "spanishText":"ta・ko",
+ "spanishFontType":3,
+ "chineseTText":"ta・ko",
+ "chineseTFontType":1,
+ "koreanText":"ta・ko",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_4",
+ "japaneseText":"おお・と・ろ",
+ "englishUsText":"o-to-ro",
+ "englishUsFontType":3,
+ "frenchText":"o-・to・ro",
+ "frenchFontType":3,
+ "italianText":"o-・to・ro",
+ "italianFontType":3,
+ "germanText":"o-・to・ro",
+ "germanFontType":3,
+ "spanishText":"o-・to・ro",
+ "spanishFontType":3,
+ "chineseTText":"o-・to・ro",
+ "chineseTFontType":1,
+ "koreanText":"o-・to・ro",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_5",
+ "japaneseText":"づ・け・ま・ぐ・ろ",
+ "englishUsText":"zu-ke-ma-gu-ro",
+ "englishUsFontType":3,
+ "frenchText":"du・ke・ma・gu・ro",
+ "frenchFontType":3,
+ "italianText":"du・ke・ma・gu・ro",
+ "italianFontType":3,
+ "germanText":"du・ke・ma・gu・ro",
+ "germanFontType":3,
+ "spanishText":"du・ke・ma・gu・ro",
+ "spanishFontType":3,
+ "chineseTText":"du・ke・ma・gu・ro",
+ "chineseTFontType":1,
+ "koreanText":"du・ke・ma・gu・ro",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_7",
+ "japaneseText":"かっ・ぱ・ま・き",
+ "englishUsText":"kap-pa-ma-ki",
+ "englishUsFontType":3,
+ "frenchText":"ka'・pa・ma・ki",
+ "frenchFontType":3,
+ "italianText":"ka'・pa・ma・ki",
+ "italianFontType":3,
+ "germanText":"ka'・pa・ma・ki",
+ "germanFontType":3,
+ "spanishText":"ka'・pa・ma・ki",
+ "spanishFontType":3,
+ "chineseTText":"ka'・pa・ma・ki",
+ "chineseTFontType":1,
+ "koreanText":"ka'・pa・ma・ki",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_8",
+ "japaneseText":"ぼ・たん・え・び",
+ "englishUsText":"but-ton-e-bi",
+ "englishUsFontType":3,
+ "frenchText":"bo・tan・e・bi",
+ "frenchFontType":3,
+ "italianText":"bo・tan・e・bi",
+ "italianFontType":3,
+ "germanText":"bo・tan・e・bi",
+ "germanFontType":3,
+ "spanishText":"bo・tan・e・bi",
+ "spanishFontType":3,
+ "chineseTText":"bo・tan・e・bi",
+ "chineseTFontType":1,
+ "koreanText":"bo・tan・e・bi",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_11",
+ "japaneseText":"た・ま・ご・や・き",
+ "englishUsText":"ta-ma-go-ya-ki",
+ "englishUsFontType":3,
+ "frenchText":"tama・goya・ki",
+ "frenchFontType":3,
+ "italianText":"tama・goya・ki",
+ "italianFontType":3,
+ "germanText":"tama・goya・ki",
+ "germanFontType":3,
+ "spanishText":"tama・goya・ki",
+ "spanishFontType":3,
+ "chineseTText":"tama・goya・ki",
+ "chineseTFontType":1,
+ "koreanText":"tama・goya・ki",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_12",
+ "japaneseText":"か・ん・ぱ・ち",
+ "englishUsText":"ka-n-pa-chi",
+ "englishUsFontType":3,
+ "frenchText":"ka・n・pa・chi",
+ "frenchFontType":3,
+ "italianText":"ka・n・pa・chi",
+ "italianFontType":3,
+ "germanText":"ka・n・pa・chi",
+ "germanFontType":3,
+ "spanishText":"ka・n・pa・chi",
+ "spanishFontType":3,
+ "chineseTText":"ka・n・pa・chi",
+ "chineseTFontType":1,
+ "koreanText":"ka・n・pa・chi",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_0_0",
+ "japaneseText":"ま",
+ "englishUsText":"ma",
+ "englishUsFontType":3,
+ "frenchText":"ma",
+ "frenchFontType":3,
+ "italianText":"ma",
+ "italianFontType":3,
+ "germanText":"ma",
+ "germanFontType":3,
+ "spanishText":"ma",
+ "spanishFontType":3,
+ "chineseTText":"ma",
+ "chineseTFontType":1,
+ "koreanText":"ma",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_0_1",
+ "japaneseText":"ぐ",
+ "englishUsText":"gu",
+ "englishUsFontType":3,
+ "frenchText":"gu",
+ "frenchFontType":3,
+ "italianText":"gu",
+ "italianFontType":3,
+ "germanText":"gu",
+ "germanFontType":3,
+ "spanishText":"gu",
+ "spanishFontType":3,
+ "chineseTText":"gu",
+ "chineseTFontType":1,
+ "koreanText":"gu",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_0_2",
+ "japaneseText":"ろ",
+ "englishUsText":"ro",
+ "englishUsFontType":3,
+ "frenchText":"ro",
+ "frenchFontType":3,
+ "italianText":"ro",
+ "italianFontType":3,
+ "germanText":"ro",
+ "germanFontType":3,
+ "spanishText":"ro",
+ "spanishFontType":3,
+ "chineseTText":"ro",
+ "chineseTFontType":1,
+ "koreanText":"ro",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_1_0",
+ "japaneseText":"サー",
+ "englishUsText":"sal",
+ "englishUsFontType":3,
+ "frenchText":"sa",
+ "frenchFontType":3,
+ "italianText":"sa",
+ "italianFontType":3,
+ "germanText":"sa",
+ "germanFontType":3,
+ "spanishText":"sa",
+ "spanishFontType":3,
+ "chineseTText":"sa",
+ "chineseTFontType":1,
+ "koreanText":"sa",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_1_1",
+ "japaneseText":"モン",
+ "englishUsText":"mon",
+ "englishUsFontType":3,
+ "frenchText":"mon",
+ "frenchFontType":3,
+ "italianText":"mon",
+ "italianFontType":3,
+ "germanText":"mon",
+ "germanFontType":3,
+ "spanishText":"mon",
+ "spanishFontType":3,
+ "chineseTText":"mon",
+ "chineseTFontType":1,
+ "koreanText":"mon",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_2_4",
+ "japaneseText":"ろ",
+ "englishUsText":"ro",
+ "englishUsFontType":3,
+ "frenchText":"ro",
+ "frenchFontType":3,
+ "italianText":"ro",
+ "italianFontType":3,
+ "germanText":"ro",
+ "germanFontType":3,
+ "spanishText":"ro",
+ "spanishFontType":3,
+ "chineseTText":"ro",
+ "chineseTFontType":1,
+ "koreanText":"ro",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_3_0",
+ "japaneseText":"た",
+ "englishUsText":"ta",
+ "englishUsFontType":3,
+ "frenchText":"ta",
+ "frenchFontType":3,
+ "italianText":"ta",
+ "italianFontType":3,
+ "germanText":"ta",
+ "germanFontType":3,
+ "spanishText":"ta",
+ "spanishFontType":3,
+ "chineseTText":"ta",
+ "chineseTFontType":1,
+ "koreanText":"ta",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_3_1",
+ "japaneseText":"こ",
+ "englishUsText":"ko",
+ "englishUsFontType":3,
+ "frenchText":"ko",
+ "frenchFontType":3,
+ "italianText":"ko",
+ "italianFontType":3,
+ "germanText":"ko",
+ "germanFontType":3,
+ "spanishText":"ko",
+ "spanishFontType":3,
+ "chineseTText":"ko",
+ "chineseTFontType":1,
+ "koreanText":"ko",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_4_0",
+ "japaneseText":"おお",
+ "englishUsText":"o",
+ "englishUsFontType":3,
+ "frenchText":"o-",
+ "frenchFontType":3,
+ "italianText":"o-",
+ "italianFontType":3,
+ "germanText":"o-",
+ "germanFontType":3,
+ "spanishText":"o-",
+ "spanishFontType":3,
+ "chineseTText":"o-",
+ "chineseTFontType":1,
+ "koreanText":"o-",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_4_1",
+ "japaneseText":"と",
+ "englishUsText":"to",
+ "englishUsFontType":3,
+ "frenchText":"to",
+ "frenchFontType":3,
+ "italianText":"to",
+ "italianFontType":3,
+ "germanText":"to",
+ "germanFontType":3,
+ "spanishText":"to",
+ "spanishFontType":3,
+ "chineseTText":"to",
+ "chineseTFontType":1,
+ "koreanText":"to",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_4_2",
+ "japaneseText":"ろ",
+ "englishUsText":"ro",
+ "englishUsFontType":3,
+ "frenchText":"ro",
+ "frenchFontType":3,
+ "italianText":"ro",
+ "italianFontType":3,
+ "germanText":"ro",
+ "germanFontType":3,
+ "spanishText":"ro",
+ "spanishFontType":3,
+ "chineseTText":"ro",
+ "chineseTFontType":1,
+ "koreanText":"ro",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_5_0",
+ "japaneseText":"づ",
+ "englishUsText":"zu",
+ "englishUsFontType":3,
+ "frenchText":"du",
+ "frenchFontType":3,
+ "italianText":"du",
+ "italianFontType":3,
+ "germanText":"du",
+ "germanFontType":3,
+ "spanishText":"du",
+ "spanishFontType":3,
+ "chineseTText":"du",
+ "chineseTFontType":1,
+ "koreanText":"du",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_5_1",
+ "japaneseText":"け",
+ "englishUsText":"ke",
+ "englishUsFontType":3,
+ "frenchText":"ke",
+ "frenchFontType":3,
+ "italianText":"ke",
+ "italianFontType":3,
+ "germanText":"ke",
+ "germanFontType":3,
+ "spanishText":"ke",
+ "spanishFontType":3,
+ "chineseTText":"ke",
+ "chineseTFontType":1,
+ "koreanText":"ke",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_5_2",
+ "japaneseText":"ま",
+ "englishUsText":"ma",
+ "englishUsFontType":3,
+ "frenchText":"ma",
+ "frenchFontType":3,
+ "italianText":"ma",
+ "italianFontType":3,
+ "germanText":"ma",
+ "germanFontType":3,
+ "spanishText":"ma",
+ "spanishFontType":3,
+ "chineseTText":"ma",
+ "chineseTFontType":1,
+ "koreanText":"ma",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_5_3",
+ "japaneseText":"ぐ",
+ "englishUsText":"gu",
+ "englishUsFontType":3,
+ "frenchText":"gu",
+ "frenchFontType":3,
+ "italianText":"gu",
+ "italianFontType":3,
+ "germanText":"gu",
+ "germanFontType":3,
+ "spanishText":"gu",
+ "spanishFontType":3,
+ "chineseTText":"gu",
+ "chineseTFontType":1,
+ "koreanText":"gu",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_5_4",
+ "japaneseText":"ろ",
+ "englishUsText":"ro",
+ "englishUsFontType":3,
+ "frenchText":"ro",
+ "frenchFontType":3,
+ "italianText":"ro",
+ "italianFontType":3,
+ "germanText":"ro",
+ "germanFontType":3,
+ "spanishText":"ro",
+ "spanishFontType":3,
+ "chineseTText":"ro",
+ "chineseTFontType":1,
+ "koreanText":"ro",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_7_0",
+ "japaneseText":"かっ",
+ "englishUsText":"kap",
+ "englishUsFontType":3,
+ "frenchText":"ka'",
+ "frenchFontType":3,
+ "italianText":"ka'",
+ "italianFontType":3,
+ "germanText":"ka'",
+ "germanFontType":3,
+ "spanishText":"ka'",
+ "spanishFontType":3,
+ "chineseTText":"ka'",
+ "chineseTFontType":1,
+ "koreanText":"ka'",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_7_1",
+ "japaneseText":"ぱ",
+ "englishUsText":"pa",
+ "englishUsFontType":3,
+ "frenchText":"pa",
+ "frenchFontType":3,
+ "italianText":"pa",
+ "italianFontType":3,
+ "germanText":"pa",
+ "germanFontType":3,
+ "spanishText":"pa",
+ "spanishFontType":3,
+ "chineseTText":"pa",
+ "chineseTFontType":1,
+ "koreanText":"pa",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_7_2",
+ "japaneseText":"ま",
+ "englishUsText":"ma",
+ "englishUsFontType":3,
+ "frenchText":"ma",
+ "frenchFontType":3,
+ "italianText":"ma",
+ "italianFontType":3,
+ "germanText":"ma",
+ "germanFontType":3,
+ "spanishText":"ma",
+ "spanishFontType":3,
+ "chineseTText":"ma",
+ "chineseTFontType":1,
+ "koreanText":"ma",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_7_3",
+ "japaneseText":"き",
+ "englishUsText":"ki",
+ "englishUsFontType":3,
+ "frenchText":"ki",
+ "frenchFontType":3,
+ "italianText":"ki",
+ "italianFontType":3,
+ "germanText":"ki",
+ "germanFontType":3,
+ "spanishText":"ki",
+ "spanishFontType":3,
+ "chineseTText":"ki",
+ "chineseTFontType":1,
+ "koreanText":"ki",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_8_0",
+ "japaneseText":"ぼ",
+ "englishUsText":"but",
+ "englishUsFontType":3,
+ "frenchText":"bo",
+ "frenchFontType":3,
+ "italianText":"bo",
+ "italianFontType":3,
+ "germanText":"bo",
+ "germanFontType":3,
+ "spanishText":"bo",
+ "spanishFontType":3,
+ "chineseTText":"bo",
+ "chineseTFontType":1,
+ "koreanText":"bo",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_8_1",
+ "japaneseText":"たん",
+ "englishUsText":"ton",
+ "englishUsFontType":3,
+ "frenchText":"tan",
+ "frenchFontType":3,
+ "italianText":"tan",
+ "italianFontType":3,
+ "germanText":"tan",
+ "germanFontType":3,
+ "spanishText":"tan",
+ "spanishFontType":3,
+ "chineseTText":"tan",
+ "chineseTFontType":1,
+ "koreanText":"tan",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_8_2",
+ "japaneseText":"え",
+ "englishUsText":"e",
+ "englishUsFontType":3,
+ "frenchText":"e",
+ "frenchFontType":3,
+ "italianText":"e",
+ "italianFontType":3,
+ "germanText":"e",
+ "germanFontType":3,
+ "spanishText":"e",
+ "spanishFontType":3,
+ "chineseTText":"e",
+ "chineseTFontType":1,
+ "koreanText":"e",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_8_3",
+ "japaneseText":"び",
+ "englishUsText":"bi",
+ "englishUsFontType":3,
+ "frenchText":"bi",
+ "frenchFontType":3,
+ "italianText":"bi",
+ "italianFontType":3,
+ "germanText":"bi",
+ "germanFontType":3,
+ "spanishText":"bi",
+ "spanishFontType":3,
+ "chineseTText":"bi",
+ "chineseTFontType":1,
+ "koreanText":"bi",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_11_0",
+ "japaneseText":"た",
+ "englishUsText":"ta",
+ "englishUsFontType":3,
+ "frenchText":"tama",
+ "frenchFontType":3,
+ "italianText":"tama",
+ "italianFontType":3,
+ "germanText":"tama",
+ "germanFontType":3,
+ "spanishText":"tama",
+ "spanishFontType":3,
+ "chineseTText":"tama",
+ "chineseTFontType":1,
+ "koreanText":"tama",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_11_1",
+ "japaneseText":"ま",
+ "englishUsText":"ma",
+ "englishUsFontType":3,
+ "frenchText":"goya",
+ "frenchFontType":3,
+ "italianText":"goya",
+ "italianFontType":3,
+ "germanText":"goya",
+ "germanFontType":3,
+ "spanishText":"goya",
+ "spanishFontType":3,
+ "chineseTText":"goya",
+ "chineseTFontType":1,
+ "koreanText":"goya",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_11_2",
+ "japaneseText":"ご",
+ "englishUsText":"go",
+ "englishUsFontType":3,
+ "frenchText":"ki",
+ "frenchFontType":3,
+ "italianText":"ki",
+ "italianFontType":3,
+ "germanText":"ki",
+ "germanFontType":3,
+ "spanishText":"ki",
+ "spanishFontType":3,
+ "chineseTText":"ki",
+ "chineseTFontType":1,
+ "koreanText":"ki",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_11_3",
+ "japaneseText":"や",
+ "englishUsText":"ya",
+ "englishUsFontType":3,
+ "frenchText":"ya",
+ "frenchFontType":3,
+ "italianText":"ya",
+ "italianFontType":3,
+ "germanText":"ya",
+ "germanFontType":3,
+ "spanishText":"ya",
+ "spanishFontType":3,
+ "chineseTText":"ya",
+ "chineseTFontType":1,
+ "koreanText":"ya",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_11_4",
+ "japaneseText":"き",
+ "englishUsText":"ki",
+ "englishUsFontType":3,
+ "frenchText":"ki",
+ "frenchFontType":3,
+ "italianText":"ki",
+ "italianFontType":3,
+ "germanText":"ki",
+ "germanFontType":3,
+ "spanishText":"ki",
+ "spanishFontType":3,
+ "chineseTText":"ki",
+ "chineseTFontType":1,
+ "koreanText":"ki",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_12_0",
+ "japaneseText":"か",
+ "englishUsText":"ka",
+ "englishUsFontType":3,
+ "frenchText":"ka",
+ "frenchFontType":3,
+ "italianText":"ka",
+ "italianFontType":3,
+ "germanText":"ka",
+ "germanFontType":3,
+ "spanishText":"ka",
+ "spanishFontType":3,
+ "chineseTText":"ka",
+ "chineseTFontType":1,
+ "koreanText":"ka",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_12_1",
+ "japaneseText":"ん",
+ "englishUsText":"n",
+ "englishUsFontType":3,
+ "frenchText":"n",
+ "frenchFontType":3,
+ "italianText":"n",
+ "italianFontType":3,
+ "germanText":"n",
+ "germanFontType":3,
+ "spanishText":"n",
+ "spanishFontType":3,
+ "chineseTText":"b",
+ "chineseTFontType":1,
+ "koreanText":"b",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_12_2",
+ "japaneseText":"ぱ",
+ "englishUsText":"pa",
+ "englishUsFontType":3,
+ "frenchText":"pa",
+ "frenchFontType":3,
+ "italianText":"pa",
+ "italianFontType":3,
+ "germanText":"pa",
+ "germanFontType":3,
+ "spanishText":"pa",
+ "spanishFontType":3,
+ "chineseTText":"pa",
+ "chineseTFontType":1,
+ "koreanText":"pa",
+ "koreanFontType":2
+ },
+ {
+ "key":"sushi_fukidashi_12_3",
+ "japaneseText":"ち",
+ "englishUsText":"chi",
+ "englishUsFontType":3,
+ "frenchText":"chi",
+ "frenchFontType":3,
+ "italianText":"chi",
+ "italianFontType":3,
+ "germanText":"chi",
+ "germanFontType":3,
+ "spanishText":"chi",
+ "spanishFontType":3,
+ "chineseTText":"chi",
+ "chineseTFontType":1,
+ "koreanText":"chi",
+ "koreanFontType":2
+ },
+ {
+ "key":"minisel_tle_1",
+ "japaneseText":"ゲームをえらぶ",
+ "englishUsText":"Select Game",
+ "englishUsFontType":3,
+ "frenchText":"Choix du jeu",
+ "frenchFontType":3,
+ "italianText":"Sel. partita",
+ "italianFontType":3,
+ "germanText":"Spiel wählen",
+ "germanFontType":3,
+ "spanishText":"Elegir partida",
+ "spanishFontType":3,
+ "chineseTText":"選擇遊戲",
+ "chineseTFontType":1,
+ "koreanText":"게임 선택",
+ "koreanFontType":2
+ },
+ {
+ "key":"minisel_gen_1",
+ "japaneseText":"なかよくあそぶ",
+ "englishUsText":"Co-Op",
+ "englishUsFontType":3,
+ "frenchText":"Coop",
+ "frenchFontType":3,
+ "italianText":"Coop",
+ "italianFontType":3,
+ "germanText":"Koop",
+ "germanFontType":3,
+ "spanishText":"Cooperativa",
+ "spanishFontType":3,
+ "chineseTText":"多人同樂",
+ "chineseTFontType":1,
+ "koreanText":"사이좋게 논다",
+ "koreanFontType":2
+ },
+ {
+ "key":"minisel_gen_2",
+ "japaneseText":"対決であそぶ",
+ "englishUsText":"Versus",
+ "englishUsFontType":3,
+ "frenchText":"Versus",
+ "frenchFontType":3,
+ "italianText":"Versus",
+ "italianFontType":3,
+ "germanText":"Versus",
+ "germanFontType":3,
+ "spanishText":"Versus",
+ "spanishFontType":3,
+ "chineseTText":"對決同樂",
+ "chineseTFontType":1,
+ "koreanText":"대결하며 논다",
+ "koreanFontType":2
+ },
+ {
+ "key":"minisel_gen_3",
+ "japaneseText":"チーム対決であそぶ",
+ "englishUsText":"Team Versus",
+ "englishUsFontType":3,
+ "frenchText":"Versus par équipe",
+ "frenchFontType":3,
+ "italianText":"Versus a squadre",
+ "italianFontType":3,
+ "germanText":"Team Versus",
+ "germanFontType":3,
+ "spanishText":"Equipo Versus",
+ "spanishFontType":3,
+ "chineseTText":"隊伍對決同樂",
+ "chineseTFontType":1,
+ "koreanText":"팀 대결로 논다",
+ "koreanFontType":2
+ },
+ {
+ "key":"minisel_announce1",
+ "japaneseText":"あそべるゲームがふえたよ!",
+ "englishUsText":"New game now available!",
+ "englishUsFontType":3,
+ "frenchText":"Nouveau jeu disponible !",
+ "frenchFontType":3,
+ "italianText":"Nuova partita disponibile!",
+ "italianFontType":3,
+ "germanText":"Neues Spiel verfügbar!",
+ "germanFontType":3,
+ "spanishText":"¡Nuevo juego disponible!",
+ "spanishFontType":3,
+ "chineseTText":"可以玩的遊戲增加了!",
+ "chineseTFontType":1,
+ "koreanText":"놀 수 있는 게임이 늘어났어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"minisel_announce2",
+ "japaneseText":"演奏キャラクターがふえたよ!",
+ "englishUsText":"New character now available!",
+ "englishUsFontType":3,
+ "frenchText":"Nouveau perso. disponible !",
+ "frenchFontType":3,
+ "italianText":"Nuovo person. disponibile!",
+ "italianFontType":3,
+ "germanText":"Neuer Charakter verfügbar!",
+ "germanFontType":3,
+ "spanishText":"¡Nuevo personaje disponible!",
+ "spanishFontType":3,
+ "chineseTText":"演奏角色增加了!",
+ "chineseTFontType":1,
+ "koreanText":"연주 캐릭터가 늘어났어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"minisel_announce3",
+ "japaneseText":"楽曲がふえたよ!",
+ "englishUsText":"New song now available!",
+ "englishUsFontType":3,
+ "frenchText":"Nouv. chanson disponible !",
+ "frenchFontType":3,
+ "italianText":"Sono disponibili nuove canzoni!",
+ "italianFontType":3,
+ "germanText":"Neuer Song verfügbar!",
+ "germanFontType":3,
+ "spanishText":"¡Nueva canción disponible!",
+ "spanishFontType":3,
+ "chineseTText":"樂曲增加了!",
+ "chineseTFontType":1,
+ "koreanText":"곡이 늘었어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"minisel_back_conf",
+ "japaneseText":"「モードをえらぶ」にいどうしますか?",
+ "englishUsText":"Go to “Select Mode”?",
+ "englishUsFontType":3,
+ "frenchText":"Aller au \"Choix du mode\" ?",
+ "frenchFontType":3,
+ "italianText":"Andare a Sel. modalità?",
+ "italianFontType":3,
+ "germanText":"Zur Moduswahl?",
+ "germanFontType":3,
+ "spanishText":"¿Ir a Elegir modo?",
+ "spanishFontType":3,
+ "chineseTText":"要移動至「選擇模式」嗎?",
+ "chineseTFontType":1,
+ "koreanText":"「모드 선택」으로 이동합니까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"minisel_lock_title",
+ "japaneseText":"????????",
+ "englishUsText":"????????",
+ "englishUsFontType":3,
+ "frenchText":"????????",
+ "frenchFontType":3,
+ "italianText":"????????",
+ "italianFontType":3,
+ "germanText":"????????",
+ "germanFontType":3,
+ "spanishText":"????????",
+ "spanishFontType":3,
+ "chineseTText":"????????",
+ "chineseTFontType":1,
+ "koreanText":"????????",
+ "koreanFontType":2
+ },
+ {
+ "key":"minisel_lock_clrscore",
+ "japaneseText":"???",
+ "englishUsText":"???",
+ "englishUsFontType":3,
+ "frenchText":"???",
+ "frenchFontType":3,
+ "italianText":"???",
+ "italianFontType":3,
+ "germanText":"???",
+ "germanFontType":3,
+ "spanishText":"???",
+ "spanishFontType":3,
+ "chineseTText":"???",
+ "chineseTFontType":1,
+ "koreanText":"???",
+ "koreanFontType":2
+ },
+ {
+ "key":"minisel_chrsel_ttl",
+ "japaneseText":"キャラクターをえらぶ",
+ "englishUsText":"Select a Character",
+ "englishUsFontType":3,
+ "frenchText":"Choix du personnage",
+ "frenchFontType":3,
+ "italianText":"Seleziona un personaggio",
+ "italianFontType":3,
+ "germanText":"Charakter wählen",
+ "germanFontType":3,
+ "spanishText":"Elige un personaje",
+ "spanishFontType":3,
+ "chineseTText":"選擇角色",
+ "chineseTFontType":1,
+ "koreanText":"캐릭터 선택",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_01_mikoshi",
+ "japaneseText":"おみこしバトル",
+ "englishUsText":"Shrine Battle",
+ "englishUsFontType":3,
+ "frenchText":"Combat de temple",
+ "frenchFontType":3,
+ "italianText":"Scontro tra altari",
+ "italianFontType":3,
+ "germanText":"Schreinkampf",
+ "germanFontType":30,
+ "spanishText":"Batalla de altar",
+ "spanishFontType":3,
+ "chineseTText":"神轎對決",
+ "chineseTFontType":1,
+ "koreanText":"가마 배틀",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_02_sushi",
+ "japaneseText":"ちょうちんうなぎ寿司",
+ "englishUsText":"Lantern Eel Sushi",
+ "englishUsFontType":3,
+ "frenchText":"Sushi de l'anguille lanterne",
+ "frenchFontType":3,
+ "italianText":"Sushi di anguilla lanterna",
+ "italianFontType":3,
+ "germanText":"Laternen-Aal-Sushi",
+ "germanFontType":30,
+ "spanishText":"Sushi de anguila linterna",
+ "spanishFontType":3,
+ "chineseTText":"提燈鰻壽司",
+ "chineseTFontType":1,
+ "koreanText":"초롱 장어 초밥",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_03_ninja",
+ "japaneseText":"ニンジャ修行",
+ "englishUsText":"Ninja Training",
+ "englishUsFontType":3,
+ "frenchText":"Entraînement ninja",
+ "frenchFontType":3,
+ "italianText":"Allenamento ninja",
+ "italianFontType":3,
+ "germanText":"Ninja-Training",
+ "germanFontType":30,
+ "spanishText":"Entrenamiento ninja",
+ "spanishFontType":3,
+ "chineseTText":"忍者修行",
+ "chineseTFontType":1,
+ "koreanText":"닌자 수행",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_mochi",
+ "japaneseText":"のびのびもちつき",
+ "englishUsText":"Mochi Pounding",
+ "englishUsFontType":3,
+ "frenchText":"Préparation du mochi",
+ "frenchFontType":3,
+ "italianText":"Pesta il mochi",
+ "italianFontType":3,
+ "germanText":"Schlag den Mochi",
+ "germanFontType":30,
+ "spanishText":"Machacando mochis",
+ "spanishFontType":3,
+ "chineseTText":"快樂搗麻糬",
+ "chineseTFontType":1,
+ "koreanText":"쭉쭉 방아 찧기",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_04_volley",
+ "japaneseText":"なぎさのビーチボール",
+ "englishUsText":"Nagisa Beach Ball",
+ "englishUsFontType":3,
+ "frenchText":"Beach-volley de Nagisa",
+ "frenchFontType":3,
+ "italianText":"Beach volley",
+ "italianFontType":3,
+ "germanText":"Nagisas Beachball",
+ "germanFontType":30,
+ "spanishText":"Pelota de playa Nagisa",
+ "spanishFontType":3,
+ "chineseTText":"沙灘排球",
+ "chineseTFontType":1,
+ "koreanText":"물가의 비치볼",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_hanabi",
+ "japaneseText":"打ち上げ花火",
+ "englishUsText":"Fireworks",
+ "englishUsFontType":3,
+ "frenchText":"Feux d'artifice",
+ "frenchFontType":3,
+ "italianText":"Fuochi d'artificio",
+ "italianFontType":3,
+ "germanText":"Feuerwerk",
+ "germanFontType":30,
+ "spanishText":"Fuegos artificiales",
+ "spanishFontType":3,
+ "chineseTText":"放煙火",
+ "chineseTFontType":1,
+ "koreanText":"불꽃 쏘아올리기",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_kabuki",
+ "japaneseText":"KABUKI",
+ "englishUsText":"Kabuki",
+ "englishUsFontType":3,
+ "frenchText":"Kabuki",
+ "frenchFontType":3,
+ "italianText":"Kabuki",
+ "italianFontType":3,
+ "germanText":"Kabuki",
+ "germanFontType":30,
+ "spanishText":"Kabuki",
+ "spanishFontType":3,
+ "chineseTText":"歌舞伎",
+ "chineseTFontType":1,
+ "koreanText":"KABUKI",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_99_test",
+ "japaneseText":"ミニゲーム実験用",
+ "englishUsText":"For Minigame Experiment",
+ "englishUsFontType":3,
+ "frenchText":"Test de mini-jeu",
+ "frenchFontType":3,
+ "italianText":"Minigioco sperimentale",
+ "italianFontType":3,
+ "germanText":"Für Minispiel-Experiment",
+ "germanFontType":30,
+ "spanishText":"Experimento minijuegos",
+ "spanishFontType":3,
+ "chineseTText":"迷你遊戲實驗用",
+ "chineseTFontType":1,
+ "koreanText":"미니게임 실험용",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_05_naganawa",
+ "japaneseText":"ながなわジャンプ",
+ "englishUsText":"Long Jump Rope",
+ "englishUsFontType":3,
+ "frenchText":"Long saut à la corde",
+ "frenchFontType":3,
+ "italianText":"Corda lunga",
+ "italianFontType":3,
+ "germanText":"Langes Springseil",
+ "germanFontType":30,
+ "spanishText":"Comba larga",
+ "spanishFontType":3,
+ "chineseTText":"跳繩",
+ "chineseTFontType":1,
+ "koreanText":"줄줄 넘기",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_07_kingyo",
+ "japaneseText":"金魚すくい",
+ "englishUsText":"Goldfish-Scooping",
+ "englishUsFontType":3,
+ "frenchText":"Pêche de poisson rouge",
+ "frenchFontType":3,
+ "italianText":"Pesca del pesciolino",
+ "italianFontType":3,
+ "germanText":"Goldfisch-Fangen",
+ "germanFontType":30,
+ "spanishText":"Pesca de pececillos",
+ "spanishFontType":3,
+ "chineseTText":"撈金魚",
+ "chineseTFontType":1,
+ "koreanText":"금붕어 건지기",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_08_bon",
+ "japaneseText":"みんなでぼんおどり",
+ "englishUsText":"DON KA Obon Dance",
+ "englishUsFontType":3,
+ "frenchText":"Danse Obon DON ET KA",
+ "frenchFontType":3,
+ "italianText":"Danza obon di DON e KA",
+ "italianFontType":3,
+ "germanText":"DON-/KA-Obon-Tanz",
+ "germanFontType":30,
+ "spanishText":"Danza Obon de DON y KA.",
+ "spanishFontType":3,
+ "chineseTText":"大家來跳盆踊",
+ "chineseTFontType":1,
+ "koreanText":"다 함께 백중맞이춤",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_wankosoba",
+ "japaneseText":"ジャンジャンわんこそば",
+ "englishUsText":"Noodle Bowls",
+ "englishUsFontType":3,
+ "frenchText":"Bols de nouilles",
+ "frenchFontType":3,
+ "italianText":"Ciotole di noodle",
+ "italianFontType":3,
+ "germanText":"Nudelschalen",
+ "germanFontType":30,
+ "spanishText":"Bol de fideos",
+ "spanishFontType":3,
+ "chineseTText":"吸吸蕎麥麵",
+ "chineseTFontType":1,
+ "koreanText":"척척 한입 소바",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_06_daruma",
+ "japaneseText":"だるま落とし",
+ "englishUsText":"Daruma Knockdown",
+ "englishUsFontType":3,
+ "frenchText":"KO de Daruma",
+ "frenchFontType":3,
+ "italianText":"Daruma KO",
+ "italianFontType":3,
+ "germanText":"Daruma-Niederschlag",
+ "germanFontType":30,
+ "spanishText":"Derribo de darumas",
+ "spanishFontType":3,
+ "chineseTText":"達摩不倒翁",
+ "chineseTFontType":1,
+ "koreanText":"다루마 빼내기",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_caketower",
+ "japaneseText":"スイーツマウンテン",
+ "englishUsText":"Cake Tower",
+ "englishUsFontType":3,
+ "frenchText":"Tour gâteau",
+ "frenchFontType":3,
+ "italianText":"Torre di tortini",
+ "italianFontType":3,
+ "germanText":"Tortenturm",
+ "germanFontType":30,
+ "spanishText":"Torre de tarta",
+ "spanishFontType":3,
+ "chineseTText":"甜點山",
+ "chineseTFontType":1,
+ "koreanText":"스위트 마운틴",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_darumasan",
+ "japaneseText":"なまはげがころんだ",
+ "englishUsText":"RLGL",
+ "englishUsFontType":3,
+ "frenchText":"Un deux trois soleil",
+ "frenchFontType":3,
+ "italianText":"Un, due, tre, stella!",
+ "italianFontType":3,
+ "germanText":"Ochs am Berg",
+ "germanFontType":30,
+ "spanishText":"Escondite inglés",
+ "spanishFontType":3,
+ "chineseTText":"123木頭人",
+ "chineseTFontType":1,
+ "koreanText":"나마하게 꽃이 피었습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_kenkenpa",
+ "japaneseText":"ケンケンパ",
+ "englishUsText":"Hopskotch",
+ "englishUsFontType":3,
+ "frenchText":"Marelle",
+ "frenchFontType":3,
+ "italianText":"Gioco della campana",
+ "italianFontType":3,
+ "germanText":"Hickelkasten",
+ "germanFontType":30,
+ "spanishText":"Rayuela",
+ "spanishFontType":3,
+ "chineseTText":"跳格子",
+ "chineseTFontType":1,
+ "koreanText":"사방치기",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_dot_action",
+ "japaneseText":"まんぷくランナー",
+ "englishUsText":"Full Runner",
+ "englishUsFontType":3,
+ "frenchText":"Coureur affamé",
+ "frenchFontType":3,
+ "italianText":"Chi ha fame, salti!",
+ "italianFontType":3,
+ "germanText":"Voller Bauch",
+ "germanFontType":3,
+ "spanishText":"Corredor saciado",
+ "spanishFontType":3,
+ "chineseTText":"大胃王跑者",
+ "chineseTFontType":1,
+ "koreanText":"배부른 러너",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_hata",
+ "japaneseText":"まねっこハタアゲ隊",
+ "englishUsText":"Flag-Raising",
+ "englishUsFontType":3,
+ "frenchText":"Lever de drapeau",
+ "frenchFontType":3,
+ "italianText":"Gara dell'alzabandiera",
+ "italianFontType":3,
+ "germanText":"Flaggenhissen",
+ "germanFontType":30,
+ "spanishText":"Concurso de izar banderas ",
+ "spanishFontType":3,
+ "chineseTText":"舉旗體操隊",
+ "chineseTFontType":1,
+ "koreanText":"따라쟁이 깃발들고싶대",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_batting",
+ "japaneseText":"ホームランバッター",
+ "englishUsText":"Batting Center",
+ "englishUsFontType":3,
+ "frenchText":"Coup de batte ",
+ "frenchFontType":3,
+ "italianText":"Area di battuta ",
+ "italianFontType":3,
+ "germanText":"Im Rhythmus der Bälle ",
+ "germanFontType":30,
+ "spanishText":"Centro de combate ",
+ "spanishFontType":3,
+ "chineseTText":"全壘打好手",
+ "chineseTFontType":1,
+ "koreanText":"홈런 타자",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_mitsubachi",
+ "japaneseText":"はちみつ大作戦",
+ "englishUsText":"Honeybee",
+ "englishUsFontType":3,
+ "frenchText":"Abeille",
+ "frenchFontType":3,
+ "italianText":"L'ape e il nettare",
+ "italianFontType":3,
+ "germanText":"Fleißiges Bienchen",
+ "germanFontType":30,
+ "spanishText":"Abeja",
+ "spanishFontType":3,
+ "chineseTText":"蜂蜜大作戰",
+ "chineseTFontType":1,
+ "koreanText":"벌꿀 대작전",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_corodora",
+ "japaneseText":"コロドラゴンの焼き焼き屋台",
+ "englishUsText":"Coro’s Griddle",
+ "englishUsFontType":3,
+ "frenchText":"Grill du dragon Coro",
+ "frenchFontType":3,
+ "italianText":"Grigliata col drago di Coro",
+ "italianFontType":3,
+ "germanText":"Grillmeister Coro",
+ "germanFontType":3,
+ "spanishText":"La parrilla del dragón Coro",
+ "spanishFontType":3,
+ "chineseTText":"格樂龍的烤烤攤",
+ "chineseTFontType":1,
+ "koreanText":"코로 드래곤의 숯불구이점",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_coroteppan",
+ "japaneseText":"コロドラゴンの焼き焼き屋台",
+ "englishUsText":"Coro’s Griddle",
+ "englishUsFontType":3,
+ "frenchText":"Grill du dragon Coro",
+ "frenchFontType":3,
+ "italianText":"Grigliata col drago di Coro",
+ "italianFontType":3,
+ "germanText":"Grillmeister Coro",
+ "germanFontType":30,
+ "spanishText":"La parrilla del dragón Coro",
+ "spanishFontType":3,
+ "chineseTText":"格樂龍的烤烤攤",
+ "chineseTFontType":1,
+ "koreanText":"코로 드래곤의 숯불구이점",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_dotjump",
+ "japaneseText":"まんぷくランナー",
+ "englishUsText":"Full Runner",
+ "englishUsFontType":3,
+ "frenchText":"Coureur affamé",
+ "frenchFontType":3,
+ "italianText":"Chi ha fame, salti!",
+ "italianFontType":3,
+ "germanText":"Voller Bauch",
+ "germanFontType":30,
+ "spanishText":"Corredor saciado",
+ "spanishFontType":3,
+ "chineseTText":"大胃王跑者",
+ "chineseTFontType":1,
+ "koreanText":"배부른 러너",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_11_mikoshi",
+ "japaneseText":"おみこしバトル・辛口",
+ "englishUsText":"Shrine Battle - Expert",
+ "englishUsFontType":3,
+ "frenchText":"Combat de temple - Expert",
+ "frenchFontType":3,
+ "italianText":"Scontro tra altari - Esperto",
+ "italianFontType":3,
+ "germanText":"Schreinkampf – Experte",
+ "germanFontType":3,
+ "spanishText":"Batalla de altar - Exp.",
+ "spanishFontType":3,
+ "chineseTText":"神轎對決‧嗆辣",
+ "chineseTFontType":1,
+ "koreanText":"가마 배틀(매운맛)",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_12_sushi",
+ "japaneseText":"ちょうちんうなぎ寿司・辛口",
+ "englishUsText":"Lantern Eel Sushi - Expert",
+ "englishUsFontType":3,
+ "frenchText":"Sushi de l'anguille lanterne - Expert",
+ "frenchFontType":3,
+ "italianText":"Sushi di anguilla lanterna - Esperto",
+ "italianFontType":3,
+ "germanText":"Laternen-Aal-Sushi – Exp.",
+ "germanFontType":3,
+ "spanishText":"Sushi de anguila linterna - Exp.",
+ "spanishFontType":3,
+ "chineseTText":"提燈鰻壽司‧嗆辣",
+ "chineseTFontType":1,
+ "koreanText":"초롱 장어 초밥(매운맛)",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_13_ninja2",
+ "japaneseText":"ニンジャ修行・辛口",
+ "englishUsText":"Ninja Training - Expert",
+ "englishUsFontType":3,
+ "frenchText":"Entraînement ninja - Expert",
+ "frenchFontType":3,
+ "italianText":"Allenamento ninja - Esperto",
+ "italianFontType":3,
+ "germanText":"Ninja-Training - Experte",
+ "germanFontType":3,
+ "spanishText":"Entrenamiento ninja - Exp.",
+ "spanishFontType":3,
+ "chineseTText":"忍者修行‧嗆辣",
+ "chineseTFontType":1,
+ "koreanText":"닌자 수행(매운맛)",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_14_volley2",
+ "japaneseText":"なぎさのビーチボール・辛口",
+ "englishUsText":"Nagisa Beach Ball - Expert",
+ "englishUsFontType":3,
+ "frenchText":"Beach-volley de Nagisa - Expert",
+ "frenchFontType":3,
+ "italianText":"Beach volley - Esperto",
+ "italianFontType":3,
+ "germanText":"Nagisas Beachball – Exp.",
+ "germanFontType":3,
+ "spanishText":"Pelota de playa Nagisa - Exp.",
+ "spanishFontType":3,
+ "chineseTText":"沙灘排球‧嗆辣",
+ "chineseTFontType":1,
+ "koreanText":"물가의 비치볼(매운맛)",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_15_naganawa2",
+ "japaneseText":"ながなわジャンプ・辛口",
+ "englishUsText":"Long Jump Rope - Expert",
+ "englishUsFontType":3,
+ "frenchText":"Long saut à la corde - Expert",
+ "frenchFontType":3,
+ "italianText":"Corda lunga - Esperto",
+ "italianFontType":3,
+ "germanText":"Langes Springseil - Experte",
+ "germanFontType":3,
+ "spanishText":"Comba larga - Exp.",
+ "spanishFontType":3,
+ "chineseTText":"跳繩‧嗆辣",
+ "chineseTFontType":1,
+ "koreanText":"줄줄 넘기(매운맛)",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_16_daruma2",
+ "japaneseText":"だるま落とし・辛口",
+ "englishUsText":"Daruma Knockdown -Expert",
+ "englishUsFontType":3,
+ "frenchText":"KO de Daruma - Expert",
+ "frenchFontType":3,
+ "italianText":"Daruma KO - Esperto",
+ "italianFontType":3,
+ "germanText":"Daruma-Niederschlag – Exp.",
+ "germanFontType":3,
+ "spanishText":"Derribo de darumas - Exp.",
+ "spanishFontType":3,
+ "chineseTText":"達摩不倒翁‧嗆辣",
+ "chineseTFontType":1,
+ "koreanText":"다루마 빼내기(매운맛)",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_17_kingyo2",
+ "japaneseText":"金魚すくい・辛口",
+ "englishUsText":"Goldfish-Scooping - Expert",
+ "englishUsFontType":3,
+ "frenchText":"Pêche de poisson rouge - Expert",
+ "frenchFontType":3,
+ "italianText":"Pesca del pesciolino - Esperto",
+ "italianFontType":3,
+ "germanText":"Goldfisch-Fangen – Exp.",
+ "germanFontType":3,
+ "spanishText":"Pesca pececillos - Exp.",
+ "spanishFontType":3,
+ "chineseTText":"撈金魚‧嗆辣",
+ "chineseTFontType":1,
+ "koreanText":"금붕어 건지기(매운맛)",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_18_bon2",
+ "japaneseText":"みんなでぼんおどり・辛口",
+ "englishUsText":"DON KA Obon Dance - Expert",
+ "englishUsFontType":3,
+ "frenchText":"Danse Obon DON ET KA - Expert",
+ "frenchFontType":3,
+ "italianText":"Danza obon DON e KA - Esperto",
+ "italianFontType":3,
+ "germanText":"DON-/KA-Obon-Tanz – Exp.",
+ "germanFontType":3,
+ "spanishText":"Danza Obon DON KA - Exp.",
+ "spanishFontType":3,
+ "chineseTText":"大家來跳盆踊‧嗆辣",
+ "chineseTFontType":1,
+ "koreanText":"다 함께 백중맞이춤(매운맛)",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_hata2",
+ "japaneseText":"まねっこハタアゲ隊・辛口",
+ "englishUsText":"Flag-Raising - Expert",
+ "englishUsFontType":3,
+ "frenchText":"Lever de drapeau - Expert",
+ "frenchFontType":3,
+ "italianText":"Gara dell'alzabandiera - Esperto",
+ "italianFontType":3,
+ "germanText":"Flaggenhissen – Experte",
+ "germanFontType":3,
+ "spanishText":"Concurso de izar banderas - Exp.",
+ "spanishFontType":3,
+ "chineseTText":"舉旗體操隊‧嗆辣",
+ "chineseTFontType":1,
+ "koreanText":"따라쟁이 깃발들고싶대(매운맛)",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_batting2",
+ "japaneseText":"ホームランバッター・辛口",
+ "englishUsText":"Batting Center - Expert",
+ "englishUsFontType":3,
+ "frenchText":"Coup de batte - Expert",
+ "frenchFontType":3,
+ "italianText":"Area di battuta - Esperto",
+ "italianFontType":3,
+ "germanText":"Im Rhythmus der Bälle - Experte",
+ "germanFontType":3,
+ "spanishText":"Centro de combate - Exp.",
+ "spanishFontType":3,
+ "chineseTText":"全壘打好手‧嗆辣",
+ "chineseTFontType":1,
+ "koreanText":"홈런 타자(매운맛)",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_mochi_A",
+ "japaneseText":"のびのびもちつき・辛口",
+ "englishUsText":"Mochi Pounding - Expert",
+ "englishUsFontType":3,
+ "frenchText":"Préparation du mochi - Expert",
+ "frenchFontType":3,
+ "italianText":"Pesta il mochi - Esperto",
+ "italianFontType":3,
+ "germanText":"Schlag den Mochi – Experte",
+ "germanFontType":3,
+ "spanishText":"Machacando mochis - Exp.",
+ "spanishFontType":3,
+ "chineseTText":"快樂搗麻糬‧嗆辣",
+ "chineseTFontType":1,
+ "koreanText":"쭉쭉 방아 찧기(매운맛)",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_hanabi_A",
+ "japaneseText":"打ち上げ花火・辛口",
+ "englishUsText":"Fireworks - Expert",
+ "englishUsFontType":3,
+ "frenchText":"Feux d'artifice - Expert",
+ "frenchFontType":3,
+ "italianText":"Fuochi d'artificio - Esperto",
+ "italianFontType":3,
+ "germanText":"Feuerwerk - Experte",
+ "germanFontType":3,
+ "spanishText":"Fuegos artificiales - Exp.",
+ "spanishFontType":3,
+ "chineseTText":"放煙火‧嗆辣",
+ "chineseTFontType":1,
+ "koreanText":"불꽃 쏘아올리기(매운맛)",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_kabuki_A",
+ "japaneseText":"KABUKI・辛口",
+ "englishUsText":"Kabuki - Expert",
+ "englishUsFontType":3,
+ "frenchText":"Kabuki - Expert",
+ "frenchFontType":3,
+ "italianText":"Kabuki - Esperto",
+ "italianFontType":3,
+ "germanText":"Kabuki - Experte",
+ "germanFontType":3,
+ "spanishText":"Kabuki - Exp.",
+ "spanishFontType":3,
+ "chineseTText":"歌舞伎‧嗆辣",
+ "chineseTFontType":1,
+ "koreanText":"KABUKI(매운맛)",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_wankosoba_A",
+ "japaneseText":"ジャンジャンわんこそば・辛口",
+ "englishUsText":"Noodle Bowls - Expert",
+ "englishUsFontType":3,
+ "frenchText":"Bols de nouilles - Expert",
+ "frenchFontType":3,
+ "italianText":"Ciotole di noodle - Esperto",
+ "italianFontType":3,
+ "germanText":"Nudelschalen - Experte",
+ "germanFontType":3,
+ "spanishText":"Bol de fideos - Exp.",
+ "spanishFontType":3,
+ "chineseTText":"吸吸蕎麥麵‧嗆辣",
+ "chineseTFontType":1,
+ "koreanText":"척척 한입 소바(매운맛)",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_caketower_A",
+ "japaneseText":"スイーツマウンテン・辛口",
+ "englishUsText":"Cake Tower - Expert",
+ "englishUsFontType":3,
+ "frenchText":"Tour gâteau - Expert",
+ "frenchFontType":3,
+ "italianText":"Torre di tortini - Esperto",
+ "italianFontType":3,
+ "germanText":"Tortenturm - Experte",
+ "germanFontType":3,
+ "spanishText":"Torre de tarta - Exp.",
+ "spanishFontType":3,
+ "chineseTText":"甜點山‧嗆辣",
+ "chineseTFontType":1,
+ "koreanText":"스위트 마운틴(매운맛)",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_darumasan_A",
+ "japaneseText":"なまはげがころんだ・辛口",
+ "englishUsText":"RLGL - Expert",
+ "englishUsFontType":3,
+ "frenchText":"Un deux trois soleil - Expert",
+ "frenchFontType":3,
+ "italianText":"Un, due, tre, stella! - Esperto",
+ "italianFontType":3,
+ "germanText":"Ochs am Berg – Experte",
+ "germanFontType":3,
+ "spanishText":"Escondite inglés - Exp.",
+ "spanishFontType":3,
+ "chineseTText":"123木頭人‧嗆辣",
+ "chineseTFontType":1,
+ "koreanText":"나마하게 꽃이 피었습니다(매운맛)",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_kenkenpa_A",
+ "japaneseText":"ケンケンパ・辛口",
+ "englishUsText":"Hopskotch - Expert",
+ "englishUsFontType":3,
+ "frenchText":"Marelle - Expert",
+ "frenchFontType":3,
+ "italianText":"Gioco della campana - Esperto",
+ "italianFontType":3,
+ "germanText":"Hickelkasten - Experte",
+ "germanFontType":3,
+ "spanishText":"Rayuela - Exp.",
+ "spanishFontType":3,
+ "chineseTText":"跳格子‧嗆辣",
+ "chineseTFontType":1,
+ "koreanText":"사방치기(매운맛)",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_dotjump_A",
+ "japaneseText":"まんぷくランナー・辛口",
+ "englishUsText":"Full Runner - Expert",
+ "englishUsFontType":3,
+ "frenchText":"Coureur affamé - Expert",
+ "frenchFontType":3,
+ "italianText":"Chi ha fame, salti! - Esperto",
+ "italianFontType":3,
+ "germanText":"Voller Bauch – Experte",
+ "germanFontType":3,
+ "spanishText":"Corredor saciado - Exp.",
+ "spanishFontType":3,
+ "chineseTText":"大胃王跑者‧嗆辣",
+ "chineseTFontType":1,
+ "koreanText":"배부른 러너(매운맛)",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_mitsubachi_A",
+ "japaneseText":"はちみつ大作戦・辛口",
+ "englishUsText":"Honeybee - Expert",
+ "englishUsFontType":3,
+ "frenchText":"Abeille - Expert",
+ "frenchFontType":3,
+ "italianText":"L'ape e il nettare - Esperto",
+ "italianFontType":3,
+ "germanText":"Fleißiges Bienchen - Experte",
+ "germanFontType":3,
+ "spanishText":"Abeja - Exp.",
+ "spanishFontType":3,
+ "chineseTText":"蜂蜜大作戰‧嗆辣",
+ "chineseTFontType":1,
+ "koreanText":"벌꿀 대작전(매운맛)",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_coroteppan_A",
+ "japaneseText":"コロドラゴンの焼き焼き屋台・辛口",
+ "englishUsText":"Coro’s Griddle - Expert",
+ "englishUsFontType":3,
+ "frenchText":"Grill du dragon Coro - Expert",
+ "frenchFontType":3,
+ "italianText":"Grigliata col drago di Coro - Esperto",
+ "italianFontType":3,
+ "germanText":"Grillmeister Coro – Exp.",
+ "germanFontType":3,
+ "spanishText":"La parrilla del dragón Coro - Exp.",
+ "spanishFontType":3,
+ "chineseTText":"格樂龍的烤烤攤‧嗆辣",
+ "chineseTFontType":1,
+ "koreanText":"코로 드래곤의 숯불구이점(매운맛)",
+ "koreanFontType":2
+ },
+ {
+ "key":"record_title",
+ "japaneseText":"みんなのきろく",
+ "englishUsText":"Records",
+ "englishUsFontType":3,
+ "frenchText":"Records",
+ "frenchFontType":3,
+ "italianText":"Record",
+ "italianFontType":3,
+ "germanText":"Statistiken",
+ "germanFontType":3,
+ "spanishText":"Récords",
+ "spanishFontType":3,
+ "chineseTText":"大家的記錄",
+ "chineseTFontType":1,
+ "koreanText":"모두의 기록",
+ "koreanFontType":2
+ },
+ {
+ "key":"play_num",
+ "japaneseText":"プレイ回数",
+ "englishUsText":"Sessions",
+ "englishUsFontType":3,
+ "frenchText":"Sessions",
+ "frenchFontType":3,
+ "italianText":"Sessioni",
+ "italianFontType":3,
+ "germanText":"Sessions",
+ "germanFontType":3,
+ "spanishText":"Sesiones",
+ "spanishFontType":3,
+ "chineseTText":"遊玩次數",
+ "chineseTFontType":1,
+ "koreanText":"플레이 횟수",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_record_easy",
+ "japaneseText":"演奏ゲーム(かんたん)",
+ "englishUsText":"Taiko Mode (Easy)",
+ "englishUsFontType":3,
+ "frenchText":"Mode Taiko (Facile)",
+ "frenchFontType":3,
+ "italianText":"Modalità Taiko (Facile)",
+ "italianFontType":3,
+ "germanText":"Taiko-Modus (Leicht)",
+ "germanFontType":3,
+ "spanishText":"Modo Taiko (Fácil)",
+ "spanishFontType":3,
+ "chineseTText":"演奏遊戲(簡單)",
+ "chineseTFontType":1,
+ "koreanText":"연주 모드(쉬움)",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_record_normal",
+ "japaneseText":"演奏ゲーム(ふつう)",
+ "englishUsText":"Taiko Mode (Normal)",
+ "englishUsFontType":3,
+ "frenchText":"Mode Taiko (Normal)",
+ "frenchFontType":3,
+ "italianText":"Modalità Taiko (Normale)",
+ "italianFontType":3,
+ "germanText":"Taiko-Modus (Normal)",
+ "germanFontType":3,
+ "spanishText":"Modo Taiko (Normal)",
+ "spanishFontType":3,
+ "chineseTText":"演奏遊戲(普通)",
+ "chineseTFontType":1,
+ "koreanText":"연주 모드(보통)",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_record_difficult",
+ "japaneseText":"演奏ゲーム(むずかしい)",
+ "englishUsText":"Taiko Mode (Hard)",
+ "englishUsFontType":3,
+ "frenchText":"Mode Taiko (Difficile)",
+ "frenchFontType":3,
+ "italianText":"Modalità Taiko (Difficile)",
+ "italianFontType":3,
+ "germanText":"Taiko-Modus (Schwer)",
+ "germanFontType":3,
+ "spanishText":"Modo Taiko (Difícil)",
+ "spanishFontType":3,
+ "chineseTText":"演奏遊戲(困難)",
+ "chineseTFontType":1,
+ "koreanText":"연주 모드(어려움)",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_record_oni",
+ "japaneseText":"演奏ゲーム(おに)",
+ "englishUsText":"Taiko Mode (Extreme)",
+ "englishUsFontType":3,
+ "frenchText":"Mode Taiko (Extrême)",
+ "frenchFontType":3,
+ "italianText":"Modalità Taiko (Estrema)",
+ "italianFontType":3,
+ "germanText":"Taiko-Modus (Extrem)",
+ "germanFontType":3,
+ "spanishText":"Modo Taiko (Extremo)",
+ "spanishFontType":3,
+ "chineseTText":"演奏遊戲(魔王)",
+ "chineseTFontType":1,
+ "koreanText":"연주 모드(귀신)",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_record_oniura",
+ "japaneseText":"演奏ゲーム(おに)",
+ "englishUsText":"Taiko Mode (Extreme)",
+ "englishUsFontType":3,
+ "frenchText":"Mode Taiko (Extrême)",
+ "frenchFontType":3,
+ "italianText":"Modalità Taiko (Estrema)",
+ "italianFontType":3,
+ "germanText":"Taiko-Modus (Extrem)",
+ "germanFontType":3,
+ "spanishText":"Modo Taiko (Extremo)",
+ "spanishFontType":3,
+ "chineseTText":"演奏遊戲(魔王)",
+ "chineseTFontType":1,
+ "koreanText":"연주 모드(귀신)",
+ "koreanFontType":2
+ },
+ {
+ "key":"party_record",
+ "japaneseText":"パーティゲーム",
+ "englishUsText":"Party Mode",
+ "englishUsFontType":3,
+ "frenchText":"Mini-jeu",
+ "frenchFontType":3,
+ "italianText":"Modalità Party",
+ "italianFontType":3,
+ "germanText":"Party-Spiel",
+ "germanFontType":3,
+ "spanishText":"Juego festivo",
+ "spanishFontType":3,
+ "chineseTText":"派對模式",
+ "chineseTFontType":1,
+ "koreanText":"파티 모드",
+ "koreanFontType":2
+ },
+ {
+ "key":"party_play_num",
+ "japaneseText":"パーティゲームプレイ回数",
+ "englishUsText":"Party Mode Sessions",
+ "englishUsFontType":3,
+ "frenchText":"Sessions Mini-jeu",
+ "frenchFontType":3,
+ "italianText":"Sessioni modalità Party",
+ "italianFontType":3,
+ "germanText":"Party-Spiel-Sessions",
+ "germanFontType":3,
+ "spanishText":"Sesiones juego festivo",
+ "spanishFontType":3,
+ "chineseTText":"派對遊戲遊玩次數",
+ "chineseTFontType":1,
+ "koreanText":"파티 모드 플레이 횟수",
+ "koreanFontType":2
+ },
+ {
+ "key":"normal_or_shin",
+ "japaneseText":"通常スコア/真打スコア",
+ "englishUsText":"Normal Score/Shin-Uchi",
+ "englishUsFontType":3,
+ "frenchText":"Score normal/Shin-Uchi",
+ "frenchFontType":3,
+ "italianText":"Punteggio normale/Shin-Uchi",
+ "italianFontType":3,
+ "germanText":"Normale Punkte/Shin-Uchi",
+ "germanFontType":3,
+ "spanishText":"Punt. normal/Shin-Uchi",
+ "spanishFontType":3,
+ "chineseTText":"一般成績/真打成績",
+ "chineseTFontType":1,
+ "koreanText":"일반 스코어 / 진타 스코어",
+ "koreanFontType":2
+ },
+ {
+ "key":"now_user_name_p1",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"now_user_name_p2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"now_user_name_p3",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"now_user_name_p4",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"party_user_name_p1",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"party_user_name_p2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"party_user_name_p3",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"party_user_name_p4",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"party_user_name_p5",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"party_user_name_p6",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"party_user_name_p7",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"party_user_name_p8",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"party_user_name_p9",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"party_user_name_p10",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"party_user_name_p11",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"party_user_name_p12",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_user_name_p1",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_user_name_p2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_user_name_p3",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_user_name_p4",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_user_name_p1",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_user_name_p2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_user_name_p3",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_user_name_p4",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select",
+ "japaneseText":"モードをえらぶ",
+ "englishUsText":"Select Mode.",
+ "englishUsFontType":3,
+ "frenchText":"Choix du mode",
+ "frenchFontType":3,
+ "italianText":"Seleziona la modalità",
+ "italianFontType":3,
+ "germanText":"Modus wählen",
+ "germanFontType":3,
+ "spanishText":"Elegir modo",
+ "spanishFontType":3,
+ "chineseTText":"選擇模式",
+ "chineseTFontType":1,
+ "koreanText":"모드 선택",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_comment_enso",
+ "japaneseText":"Nintendo Switch本体1台で、1人から2人であそぶことができます\n2人の場合は、なかよく演奏や演奏対決であそぶことができます",
+ "englishUsText":"Play with one or two players on a single Nintendo Switch.\nTwo players can play together in a Co-Op Session,\nor against each other in a VS Match.",
+ "englishUsFontType":3,
+ "frenchText":"Joue à un ou deux joueurs sur une seule console Nintendo Switch.\nDeux joueurs peuvent jouer ensemble en Session coop\nou bien s'affronter en Match VS.",
+ "frenchFontType":3,
+ "italianText":"Gioca una sessione cooperativa (Coop)\no competitiva (Partita Versus) con 1-2\ngiocatori su una console Nintendo Switch.",
+ "italianFontType":3,
+ "germanText":"Spiele mit einem oder zwei Spielern auf einer einzigen Nintendo Switch-Konsole.\nZwei Spieler können in einer Koop-Session zusammenspielen\noder in einer VS-Partie gegeneinander antreten.",
+ "germanFontType":3,
+ "spanishText":"Juega con uno o dos jugadores en una consola Nintendo Switch.\nPueden jugar dos jugadores juntos en Partida colaborativa\no competir entre sí en Combate.",
+ "spanishFontType":3,
+ "chineseTText":"可用1台Nintendo Switch主機,讓1~2人遊玩遊戲\n在2人遊玩的情況下可遊玩同樂演奏或演奏對決",
+ "chineseTFontType":1,
+ "koreanText":"Nintendo Switch 본체 1대로 1~2명이 즐길 수 있습니다.\n2명일 때는, 사이좋게 연주하거나 연주 대결을 할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_comment_config",
+ "japaneseText":"色々な設定をへんこうできます",
+ "englishUsText":"Adjust various settings.",
+ "englishUsFontType":3,
+ "frenchText":"Ajuste divers paramètres.",
+ "frenchFontType":3,
+ "italianText":"Per regolare varie impostazioni.",
+ "italianFontType":3,
+ "germanText":"Diverse Einstellungen ändern.",
+ "germanFontType":3,
+ "spanishText":"Modifica diversos ajustes.",
+ "spanishFontType":3,
+ "chineseTText":"能調整各種設定",
+ "chineseTFontType":1,
+ "koreanText":"다양한 설정을 변경할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_enso",
+ "japaneseText":"演奏ゲーム",
+ "englishUsText":"Taiko Mode",
+ "englishUsFontType":3,
+ "frenchText":"Mode Taiko",
+ "frenchFontType":3,
+ "italianText":"Modalità Taiko",
+ "italianFontType":3,
+ "germanText":"Taiko-Modus",
+ "germanFontType":3,
+ "spanishText":"Modo Taiko",
+ "spanishFontType":3,
+ "chineseTText":"演奏遊戲",
+ "chineseTFontType":1,
+ "koreanText":"연주 모드",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_minigame",
+ "japaneseText":"パーティゲーム",
+ "englishUsText":"Party Game",
+ "englishUsFontType":3,
+ "frenchText":"Mini-jeu",
+ "frenchFontType":3,
+ "italianText":"Modalità Party",
+ "italianFontType":3,
+ "germanText":"Party-Spiel",
+ "germanFontType":3,
+ "spanishText":"Juego festivo",
+ "spanishFontType":3,
+ "chineseTText":"派對遊戲",
+ "chineseTFontType":1,
+ "koreanText":"파티 모드",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_local",
+ "japaneseText":"ローカル通信演奏",
+ "englishUsText":"Local Wireless Session",
+ "englishUsFontType":3,
+ "frenchText":"Session locale sans fil",
+ "frenchFontType":3,
+ "italianText":"Sessione wireless locale",
+ "italianFontType":3,
+ "germanText":"Lokale Drahtlos-Session",
+ "germanFontType":3,
+ "spanishText":"Sesión inalámbrica local",
+ "spanishFontType":3,
+ "chineseTText":"鄰近主機通訊演奏",
+ "chineseTFontType":1,
+ "koreanText":"로컬 통신 연주",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_save",
+ "japaneseText":"みんなのきろく",
+ "englishUsText":"Records",
+ "englishUsFontType":3,
+ "frenchText":"Records",
+ "frenchFontType":3,
+ "italianText":"Record",
+ "italianFontType":3,
+ "germanText":"Statistiken",
+ "germanFontType":3,
+ "spanishText":"Récords",
+ "spanishFontType":3,
+ "chineseTText":"大家的記錄",
+ "chineseTFontType":1,
+ "koreanText":"모두의 기록",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_config",
+ "japaneseText":"ゲーム設定",
+ "englishUsText":"Game Settings",
+ "englishUsFontType":3,
+ "frenchText":"Paramètres de jeu",
+ "frenchFontType":3,
+ "italianText":"Impostazioni di gioco",
+ "italianFontType":3,
+ "germanText":"Spieloptionen",
+ "germanFontType":3,
+ "spanishText":"Ajustes del juego",
+ "spanishFontType":3,
+ "chineseTText":"遊戲設定",
+ "chineseTFontType":1,
+ "koreanText":"게임 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_add",
+ "japaneseText":"ニンテンドーeショップ",
+ "englishUsText":"Nintendo eShop",
+ "englishUsFontType":3,
+ "frenchText":"Nintendo eShop",
+ "frenchFontType":3,
+ "italianText":"Nintendo eShop",
+ "italianFontType":3,
+ "germanText":"Nintendo eShop",
+ "germanFontType":3,
+ "spanishText":"Nintendo eShop",
+ "spanishFontType":3,
+ "chineseTText":"Nintendo eShop",
+ "chineseTFontType":1,
+ "koreanText":"닌텐도 e숍",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_play",
+ "japaneseText":"ヘルプ",
+ "englishUsText":"Help",
+ "englishUsFontType":3,
+ "frenchText":"Aide",
+ "frenchFontType":3,
+ "italianText":"Aiuto",
+ "italianFontType":3,
+ "germanText":"Hilfe",
+ "germanFontType":3,
+ "spanishText":"Ayuda",
+ "spanishFontType":3,
+ "chineseTText":"操作說明",
+ "chineseTFontType":1,
+ "koreanText":"도움말",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_play1p",
+ "japaneseText":"1人であそぶ",
+ "englishUsText":"1-Player",
+ "englishUsFontType":3,
+ "frenchText":"1 joueur",
+ "frenchFontType":3,
+ "italianText":"1 giocatore",
+ "italianFontType":3,
+ "germanText":"1 Spieler",
+ "germanFontType":3,
+ "spanishText":"1 jugador",
+ "spanishFontType":3,
+ "chineseTText":"1人遊玩",
+ "chineseTFontType":1,
+ "koreanText":"1인 플레이",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_play2p",
+ "japaneseText":"2人であそぶ",
+ "englishUsText":"2-Player",
+ "englishUsFontType":3,
+ "frenchText":"2 joueurs",
+ "frenchFontType":3,
+ "italianText":"2 giocatori",
+ "italianFontType":3,
+ "germanText":"2 Spieler",
+ "germanFontType":3,
+ "spanishText":"2 jugadores",
+ "spanishFontType":3,
+ "chineseTText":"2人遊玩",
+ "chineseTFontType":1,
+ "koreanText":"2인 플레이",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_play3p",
+ "japaneseText":"3人であそぶ",
+ "englishUsText":"3-Player",
+ "englishUsFontType":3,
+ "frenchText":"3 joueurs",
+ "frenchFontType":3,
+ "italianText":"3 giocatori",
+ "italianFontType":3,
+ "germanText":"3 Spieler",
+ "germanFontType":3,
+ "spanishText":"3 jugadores",
+ "spanishFontType":3,
+ "chineseTText":"3人遊玩",
+ "chineseTFontType":1,
+ "koreanText":"3인 플레이",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_play4p",
+ "japaneseText":"4人であそぶ",
+ "englishUsText":"4-Player",
+ "englishUsFontType":3,
+ "frenchText":"4 joueurs",
+ "frenchFontType":3,
+ "italianText":"4 giocatori",
+ "italianFontType":3,
+ "germanText":"4 Spieler",
+ "germanFontType":3,
+ "spanishText":"4 jugadores",
+ "spanishFontType":3,
+ "chineseTText":"4人遊玩",
+ "chineseTFontType":1,
+ "koreanText":"4인 플레이",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_comment_minigame",
+ "japaneseText":"Nintendo Switch本体1台で、1人から4人でリズムゲームであそぶことができます\nいろいろなルールで、なかよくあそんだり、対決したりできます",
+ "englishUsText":"Play rhythm games with 1-4 players on a single Nintendo Switch.\nPlayers can choose from a variety of rules\nfor both cooperative and competitive games.",
+ "englishUsFontType":3,
+ "frenchText":"Joue à des jeux de rythme de 1 à 4 joueurs sur une seule console Nintendo Switch.\nLes joueurs peuvent choisir diverses règles pour jouer\naussi bien en coopération qu'en compétition.",
+ "frenchFontType":3,
+ "italianText":"Gioca una partita cooperativa, competitiva o a squadre\nper 1-4 giocatori su un solo Nintendo Switch\nscegliendo le regole da applicare.",
+ "italianFontType":3,
+ "germanText":"Spiele Rhythmusspiele mit einem bis vier Spielern auf einer\neinzelnen Nintendo Switch-Konsole. Hierbei ist eine Vielzahl von Regeln\nvorhanden, um gemeinsam oder gegeneinander zu spielen.",
+ "germanFontType":3,
+ "spanishText":"Juega partidas de ritmo con 1-4 jugadores en una consola Nintendo Switch.\nLos jugadores pueden elegir entre una variedad de reglas\nen las partidas cooperativas y competitivas.",
+ "spanishFontType":3,
+ "chineseTText":"可用1台Nintendo Switch主機,讓1~4人遊玩節奏遊戲\n能在各種規則下同樂或是進行對決",
+ "chineseTFontType":1,
+ "koreanText":"Nintendo Switch 본체 1대로 1~4명이 리듬 게임을 즐길 수 있습니다.\n다양한 룰로, 사이좋게 놀거나 대결할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_comment_local",
+ "japaneseText":"Nintendo Switch本体を2台から4台使って、ゲームソフトを持っている近くの人と\nローカル通信で演奏してあそぶことができます",
+ "englishUsText":"Play a session with nearby players over local wireless using 2-4\nNintendo Switch™ consoles. Each player must have their own copy\nof the game.",
+ "englishUsFontType":3,
+ "frenchText":"Participe à une session avec des joueurs à proximité grâce\nau réseau local sans fil en utilisant 2 à 4 consoles Nintendo Switch.\nChaque joueur doit posséder un exemplaire du jeu.",
+ "frenchFontType":3,
+ "italianText":"Gioca una sessione insieme ad altri giocatori vicini sfruttando\nuna rete wireless locale su 2-4 Nintendo Switch.\nCiascun giocatore deve possedere una copia del gioco.",
+ "italianFontType":3,
+ "germanText":"Spiele mit Spielern in der Nähe per lokaler Drahtlos-Session\nauf zwei bis vier Nintendo Switch-Konsolen.\nJeder Spieler benötigt sein eigenes Exemplar des Spiels.",
+ "germanFontType":3,
+ "spanishText":"Juega una sesión inalámbrica local con jugadores cercanos usando 2-4\nconsolas Nintendo Switch. Cada jugador debe tener su\npropia copia del juego.",
+ "spanishFontType":3,
+ "chineseTText":"可用2~4台Nintendo Switch主機,與附近擁有遊戲的人\n以鄰近主機通訊進行演奏",
+ "chineseTFontType":1,
+ "koreanText":"Nintendo Switch 본체 2~4대로, 게임 소프트를 가지고 있는 근처 사람과\n로컬 통신으로 연주를 즐길 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_comment_save",
+ "japaneseText":"みんなのプレイきろくを見ることができます",
+ "englishUsText":"View everyone’s play records.",
+ "englishUsFontType":3,
+ "frenchText":"Consulte les records de tout le monde.",
+ "frenchFontType":3,
+ "italianText":"Visualizza i record di gioco di tutti.",
+ "italianFontType":3,
+ "germanText":"Die Statistiken der Spieler ansehen.",
+ "germanFontType":3,
+ "spanishText":"Consulta los récords de todo el mundo.",
+ "spanishFontType":3,
+ "chineseTText":"可觀看大家的遊玩記錄",
+ "chineseTFontType":1,
+ "koreanText":"모두의 플레이 기록을 볼 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_comment_add",
+ "japaneseText":"ニンテンドーeショップで新しい曲などをふやせます",
+ "englishUsText":"You can download new songs and more from the Nintendo eShop.",
+ "englishUsFontType":3,
+ "frenchText":"Tu peux obtenir de nouvelles chansons et\nbien d'autres choses sur le Nintendo eShop.",
+ "frenchFontType":3,
+ "italianText":"Puoi scaricare nuove canzoni e altro ancora da Nintendo eShop.",
+ "italianFontType":3,
+ "germanText":"Neue Songs und mehr gibt es im Nintendo eShop.",
+ "germanFontType":3,
+ "spanishText":"En Nintendo eShop puedes conseguir nuevas canciones y más.",
+ "spanishFontType":3,
+ "chineseTText":"可前往Nintendo eShop下載新的樂曲",
+ "chineseTFontType":1,
+ "koreanText":"닌텐도 e숍에서 새로운 곡 등을 늘릴 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_comment_add_trial",
+ "japaneseText":"製品の情報はこちら!",
+ "englishUsText":"Go here for more info!",
+ "englishUsFontType":3,
+ "frenchText":"Viens ici pour plus d’infos !",
+ "frenchFontType":3,
+ "italianText":"Maggiori informazioni qui!",
+ "italianFontType":3,
+ "germanText":"Hier findest du mehr Informationen!",
+ "germanFontType":3,
+ "spanishText":"¡Más información aquí!",
+ "spanishFontType":3,
+ "chineseTText":"遊戲產品情報請參照這裡!",
+ "chineseTFontType":1,
+ "koreanText":"제품 정보는 이쪽에서!",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_comment_play",
+ "japaneseText":"フリフリ演奏やボタンでのあそびかた、\nそうさのしかたなどをかくにんできます",
+ "englishUsText":"See how to play the game using motion controls or buttons.",
+ "englishUsFontType":3,
+ "frenchText":"Découvre comment jouer au jeu en utilisant les\ncommandes par mouvements ou les boutons.",
+ "frenchFontType":3,
+ "italianText":"Scopri come si gioca usando i comandi di movimento o i pulsanti.",
+ "italianFontType":3,
+ "germanText":"So spielst du mit Bewegungssteuerung oder Knöpfen und Tasten.",
+ "germanFontType":3,
+ "spanishText":"Mira cómo se juega con botones o controles por movimiento.",
+ "spanishFontType":3,
+ "chineseTText":"可確認動態演奏或按鍵的玩法,\n以及操作設定等內容",
+ "chineseTFontType":1,
+ "koreanText":"모션 조작이나 버튼 조작 플레이 방법,\n조작 방법 등을 확인할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"controller_warning_dialog",
+ "japaneseText":"お使いのコントローラーとそうさタイプが\n合っていないかもしれません\nそうさタイプを変えますか?",
+ "englishUsText":"Your current controller may not match your control type.\nWould you like to change your control type?",
+ "englishUsFontType":3,
+ "frenchText":"Ton contrôleur actuel est incompatible avec ton type de contrôleur.\nVeux-tu changer ton type de contrôleur ?",
+ "frenchFontType":3,
+ "italianText":"Il controller attuale potrebbe non essere adeguato allo schema dei comandi.\nModificare lo schema dei comandi?",
+ "italianFontType":3,
+ "germanText":"Dein aktueller Controller könnte nicht zum Steuerungstyp passen.\nWillst du den Steuerungstyp anpassen?",
+ "germanFontType":3,
+ "spanishText":"Tu mando no coincide con el tipo de control.\n¿Quieres cambiar el tipo de control?",
+ "spanishFontType":3,
+ "chineseTText":"現正使用的控制器與操作類型,\n也許無法配合,要更改操作類型嗎?",
+ "chineseTFontType":1,
+ "koreanText":"사용 중인 컨트롤러와 조작 타입이\n맞지 않을 수도 있습니다.\n조작 타입을 바꾸겠습니까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"rule_select",
+ "japaneseText":"ルールをえらぶ",
+ "englishUsText":"Select Rules",
+ "englishUsFontType":3,
+ "frenchText":"Choisir les règles",
+ "frenchFontType":3,
+ "italianText":"Seleziona regole",
+ "italianFontType":3,
+ "germanText":"Regeln wählen",
+ "germanFontType":3,
+ "spanishText":"Seleccionar reglas",
+ "spanishFontType":3,
+ "chineseTText":"選擇玩法",
+ "chineseTFontType":1,
+ "koreanText":"룰 선택",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_rule01",
+ "japaneseText":"なかよく演奏",
+ "englishUsText":"Co-Op Session",
+ "englishUsFontType":3,
+ "frenchText":"Session coop",
+ "frenchFontType":3,
+ "italianText":"Sessione Coop",
+ "italianFontType":3,
+ "germanText":"Koop-Session",
+ "germanFontType":3,
+ "spanishText":"Partida colaborativa",
+ "spanishFontType":3,
+ "chineseTText":"同樂演奏",
+ "chineseTFontType":1,
+ "koreanText":"사이좋게 연주",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_rule02",
+ "japaneseText":"スコア対決",
+ "englishUsText":"Score Match",
+ "englishUsFontType":3,
+ "frenchText":"Match de score",
+ "frenchFontType":3,
+ "italianText":"Vittoria per punteggio",
+ "italianFontType":3,
+ "germanText":"Punkte-Partie",
+ "germanFontType":3,
+ "spanishText":"Partida de puntos",
+ "spanishFontType":3,
+ "chineseTText":"成績對決",
+ "chineseTFontType":1,
+ "koreanText":"스코어 대결",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_rule03",
+ "japaneseText":"最終コンボ対決",
+ "englishUsText":"Final Combo Match",
+ "englishUsFontType":3,
+ "frenchText":"Match de combo final",
+ "frenchFontType":3,
+ "italianText":"Vittoria per combo finale",
+ "italianFontType":3,
+ "germanText":"Letzte-Kombo-Partie",
+ "germanFontType":3,
+ "spanishText":"Partida de combo final",
+ "spanishFontType":3,
+ "chineseTText":"最終連段對決",
+ "chineseTFontType":1,
+ "koreanText":"최종 콤보 대결",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_rule04",
+ "japaneseText":"良の数対決",
+ "englishUsText":"GOOD Match",
+ "englishUsFontType":3,
+ "frenchText":"Match de BONS",
+ "frenchFontType":3,
+ "italianText":"Vittoria per BUONO totali",
+ "italianFontType":3,
+ "germanText":"GUT-Partie",
+ "germanFontType":3,
+ "spanishText":"Partida BIEN",
+ "spanishFontType":3,
+ "chineseTText":"良的數量對決",
+ "chineseTFontType":1,
+ "koreanText":"얼쑤 횟수 대결",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_rule05",
+ "japaneseText":"たたけた数対決",
+ "englishUsText":"Hit Rate Match",
+ "englishUsFontType":3,
+ "frenchText":"Match de taux de frappe",
+ "frenchFontType":3,
+ "italianText":"Vittoria per note a segno",
+ "italianFontType":3,
+ "germanText":"Trefferraten-Partie",
+ "germanFontType":3,
+ "spanishText":"Partida de aciertos",
+ "spanishFontType":3,
+ "chineseTText":"敲打數對決",
+ "chineseTFontType":1,
+ "koreanText":"두드린 횟수 대결",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_rule06",
+ "japaneseText":"ランダム対決",
+ "englishUsText":"Random Match",
+ "englishUsFontType":3,
+ "frenchText":"Match aléatoire",
+ "frenchFontType":3,
+ "italianText":"Casuale",
+ "italianFontType":3,
+ "germanText":"Zufällige Partie",
+ "germanFontType":3,
+ "spanishText":"Partida aleatoria",
+ "spanishFontType":3,
+ "chineseTText":"隨機對決",
+ "chineseTFontType":1,
+ "koreanText":"랜덤 대결",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_rule_info01",
+ "japaneseText":"みんなでなかよく演奏しよう!\n王冠やハイスコアのきろくがつくよ!",
+ "englishUsText":"Everyone plays together!\nGet crowns and high scores!",
+ "englishUsFontType":3,
+ "frenchText":"Tout le monde joue ensemble !\nObtiens des couronnes et fais des super scores !",
+ "frenchFontType":3,
+ "italianText":"Si gioca tutti insieme!\nOttenete corone e stabilite il record!",
+ "italianFontType":3,
+ "germanText":"Alle spielen zusammen!\nSchnappt euch Kronen und Highscores!",
+ "germanFontType":3,
+ "spanishText":"¡Todos juegan juntos!\n¡Consigue coronas y récords!",
+ "spanishFontType":3,
+ "chineseTText":"大家一起開心演奏吧!\n創造王冠或高成績記錄!",
+ "chineseTFontType":1,
+ "koreanText":"다 함께 사이좋게 연주하자!\n왕관이나 하이 스코어 기록이 붙어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_rule_info01_pm",
+ "japaneseText":"みんなでなかよく演奏しよう!",
+ "englishUsText":"Everyone plays together!",
+ "englishUsFontType":3,
+ "frenchText":"Tout le monde joue ensemble !",
+ "frenchFontType":3,
+ "italianText":"Si gioca tutti insieme!",
+ "italianFontType":3,
+ "germanText":"Alle spielen zusammen!",
+ "germanFontType":3,
+ "spanishText":"¡Todos juegan juntos!",
+ "spanishFontType":3,
+ "chineseTText":"大家一起開心演奏吧!",
+ "chineseTFontType":1,
+ "koreanText":"다 함께 사이좋게 연주하자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_rule_info02",
+ "japaneseText":"スコアで勝負! コンボをつなげてかせごう",
+ "englishUsText":"Compete for the highest score! Try to string combos together!",
+ "englishUsFontType":3,
+ "frenchText":"Essaie d'obtenir le meilleur score et d'accumuler des combos !",
+ "frenchFontType":3,
+ "italianText":"Termina con il punteggio più alto! Cerca di realizzare delle combo!",
+ "italianFontType":3,
+ "germanText":"Kämpft um den Highscore! Versucht, Kombos aneinanderzureihen!",
+ "germanFontType":3,
+ "spanishText":"¡Compite por la máxima puntuación! ¡Intenta encadenar combos!",
+ "spanishFontType":3,
+ "chineseTText":"以成績來分個高下! 持續連段賺取成績",
+ "chineseTFontType":1,
+ "koreanText":"스코어로 승부! 콤보를 이어서 점수를 쌓자",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_rule_info03",
+ "japaneseText":"演奏が終了したときのコンボ数で勝負!",
+ "englishUsText":"Compete to get the most combos before the song ends!",
+ "englishUsFontType":3,
+ "frenchText":"Essaie d'obtenir le plus de combos possible\navant la fin de la chanson !",
+ "frenchFontType":3,
+ "italianText":"Vince chi realizza più combo!",
+ "italianFontType":3,
+ "germanText":"Schafft die meisten Kombos, bevor der Song endet!",
+ "germanFontType":3,
+ "spanishText":"¡Compite por conseguir más combos\nantes de que termine la canción!",
+ "spanishFontType":3,
+ "chineseTText":"以演奏結束時的連段數來分個高下!",
+ "chineseTFontType":1,
+ "koreanText":"연주가 종료됐을 때의 콤보 수로 승부!",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_rule_info04",
+ "japaneseText":"良の数で勝負!",
+ "englishUsText":"Compete to see who can get more GOODs!",
+ "englishUsFontType":3,
+ "frenchText":"Essaie d'obtenir le plus de BONS possible !",
+ "frenchFontType":3,
+ "italianText":"Vince chi ottiene più BUONO!",
+ "italianFontType":3,
+ "germanText":"Mal sehen, wer mehr GUT schafft!",
+ "germanFontType":3,
+ "spanishText":"¡Compite por conseguir más BIEN!",
+ "spanishFontType":3,
+ "chineseTText":"以良的數量來分個高下!",
+ "chineseTFontType":1,
+ "koreanText":"얼쑤의 횟수로 승부!",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_rule_info05",
+ "japaneseText":"音符のたたけた数で勝負!",
+ "englishUsText":"Compete to see who can hit the most notes!",
+ "englishUsFontType":3,
+ "frenchText":"Essaie de frapper le plus de notes possible !",
+ "frenchFontType":3,
+ "italianText":"Vince chi riesce a cogliere più note!",
+ "italianFontType":3,
+ "germanText":"Mal sehen, wer die meisten Noten trifft!",
+ "germanFontType":3,
+ "spanishText":"¡Compite por acertar más notas!",
+ "spanishFontType":3,
+ "chineseTText":"以敲打音符的次數來分個高下!",
+ "chineseTFontType":1,
+ "koreanText":"음표를 두드린 횟수로 승부!",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_rule_info06",
+ "japaneseText":"対決ルールをランダムで決定!",
+ "englishUsText":"Compete under randomly chosen rules!",
+ "englishUsFontType":3,
+ "frenchText":"Les règles du match sont choisies au hasard !",
+ "frenchFontType":3,
+ "italianText":"Il criterio per la vittoria è assegnato casualmente!",
+ "italianFontType":3,
+ "germanText":"Tretet mit zufälligen Regeln gegeneinander an!",
+ "germanFontType":3,
+ "spanishText":"¡Compite con reglas elegidas de forma aleatoria!",
+ "spanishFontType":3,
+ "chineseTText":"隨機決定對決玩法!",
+ "chineseTFontType":1,
+ "koreanText":"대결 룰을 랜덤으로 결정!",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_rule_info07",
+ "japaneseText":"対決ルールのアイテム音符\n「あり」「なし」をえらべるよ",
+ "englishUsText":"You can turn item notes\non or off in competition rules.",
+ "englishUsFontType":3,
+ "frenchText":"Tu peux activer ou désactiver les objets\npour les matchs de compétition.",
+ "frenchFontType":3,
+ "italianText":"Nelle partite competitive è possibile\nattivare o disattivare le note oggetto.",
+ "italianFontType":3,
+ "germanText":"Du kannst Gegenstandsnoten\nunter den Regeln an-/ausschalten.",
+ "germanFontType":3,
+ "spanishText":"Puedes activar o desactivar las notas con objetos\nen las reglas de la competición.",
+ "spanishFontType":3,
+ "chineseTText":"可選擇對決玩法下道具音符的「有」、「無」",
+ "chineseTFontType":1,
+ "koreanText":"대결 룰의 아이템 음표\n「있음」 「없음」을 선택할 수 있어",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_rule_item_base",
+ "japaneseText":"アイテム",
+ "englishUsText":"Items",
+ "englishUsFontType":3,
+ "frenchText":"Objets",
+ "frenchFontType":3,
+ "italianText":"Note oggetto",
+ "italianFontType":3,
+ "germanText":"Gegenstände",
+ "germanFontType":3,
+ "spanishText":"Objetos",
+ "spanishFontType":3,
+ "chineseTText":"道具",
+ "chineseTFontType":1,
+ "koreanText":"아이템",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_rule_item01",
+ "japaneseText":"なし",
+ "englishUsText":"Off",
+ "englishUsFontType":3,
+ "frenchText":"Désactivé",
+ "frenchFontType":3,
+ "italianText":"No",
+ "italianFontType":3,
+ "germanText":"Aus",
+ "germanFontType":3,
+ "spanishText":"No",
+ "spanishFontType":3,
+ "chineseTText":"無",
+ "chineseTFontType":1,
+ "koreanText":"없음",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_rule_item02",
+ "japaneseText":"あり",
+ "englishUsText":"On",
+ "englishUsFontType":3,
+ "frenchText":"Activé",
+ "frenchFontType":3,
+ "italianText":"Sì",
+ "italianFontType":3,
+ "germanText":"An",
+ "germanFontType":3,
+ "spanishText":"Sí",
+ "spanishFontType":3,
+ "chineseTText":"有",
+ "chineseTFontType":1,
+ "koreanText":"있음",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_rule_caution",
+ "japaneseText":"※全員が真打のときに真打の加算方式でスコア対決を行えます",
+ "englishUsText":"*Shin-Uchi mode can be selected in Score Match",
+ "englishUsFontType":3,
+ "frenchText":"*Shin-Uchi disponible si sélectionné par tous les joueurs",
+ "frenchFontType":3,
+ "italianText":"*Shin-Uchi disponibile solo se selezionato da tutti i giocatori",
+ "italianFontType":3,
+ "germanText":"*Shin-Uchi nur aktiv wenn von allen Spielern gewählt",
+ "germanFontType":3,
+ "spanishText":"*Shin-Uchi disponible solo si todos lo seleccionan",
+ "spanishFontType":3,
+ "chineseTText":"※全體選擇真打時會以真打的加算方式進行成績對決",
+ "chineseTFontType":1,
+ "koreanText":"※전원이 진타일 때 진타의 가산 방식으로 스코어 대결이 가능합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_play_conf_close_room_msg",
+ "japaneseText":"部屋をかいさんします\nよろしいですか?",
+ "englishUsText":"Are you sure you want to disband the room?",
+ "englishUsFontType":3,
+ "frenchText":"Veux-tu vraiment fermer ce salon ?",
+ "frenchFontType":3,
+ "italianText":"Eliminare la stanza?",
+ "italianFontType":3,
+ "germanText":"Möchtest du den Raum wirklich auflösen?",
+ "germanFontType":3,
+ "spanishText":"¿Seguro que quieres disolver la sala?",
+ "spanishFontType":3,
+ "chineseTText":"要解散房間嗎?",
+ "chineseTFontType":1,
+ "koreanText":"방을 해산합니다\n괜찮겠습니까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_play_conf_to_exit_msg",
+ "japaneseText":"この部屋から出ますか?",
+ "englishUsText":"Leave this room?",
+ "englishUsFontType":3,
+ "frenchText":"Quitter ce salon ?",
+ "frenchFontType":3,
+ "italianText":"Abbandonare la stanza?",
+ "italianFontType":3,
+ "germanText":"Diesen Raum verlassen?",
+ "germanFontType":3,
+ "spanishText":"¿Salir de la sala?",
+ "spanishFontType":3,
+ "chineseTText":"要離開這個房間嗎?",
+ "chineseTFontType":1,
+ "koreanText":"이 방에서 나갑니까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_connect_caution",
+ "japaneseText":"※ローカル通信中はHOMEボタンを押すと通信が切断されます",
+ "englishUsText":"*You will be disconnected if you\npress the HOME button.",
+ "englishUsFontType":3,
+ "frenchText":"*Tu seras déconnecté si tu appuies sur le bouton HOME.",
+ "frenchFontType":3,
+ "italianText":"*Premendo il pulsante HOME sarai disconnesso.",
+ "italianFontType":3,
+ "germanText":"*Die Verbindung wird unterbrochen, wenn du den HOME-Knopf drückst.",
+ "germanFontType":3,
+ "spanishText":"*Si pulsas el botón HOME, te desconectarás.",
+ "spanishFontType":3,
+ "chineseTText":"※在鄰近主機通訊中按下HOME鍵將會切斷連線",
+ "chineseTFontType":1,
+ "koreanText":"※로컬 통신 중에는 HOME 버튼을 누르면 연결이 끊어집니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_play_entrance_title",
+ "japaneseText":"ローカル通信演奏",
+ "englishUsText":"Local Wireless Session",
+ "englishUsFontType":3,
+ "frenchText":"Session locale sans fil",
+ "frenchFontType":3,
+ "italianText":"Sessione wireless locale",
+ "italianFontType":3,
+ "germanText":"Lokale Drahtlos-Session",
+ "germanFontType":3,
+ "spanishText":"Sesión inalámbrica local",
+ "spanishFontType":3,
+ "chineseTText":"鄰近主機通訊演奏",
+ "chineseTFontType":1,
+ "koreanText":"로컬 통신 연주",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_play_select_1",
+ "japaneseText":"部屋をつくる",
+ "englishUsText":"Make a Room",
+ "englishUsFontType":3,
+ "frenchText":"Créer un salon",
+ "frenchFontType":3,
+ "italianText":"Crea una stanza",
+ "italianFontType":3,
+ "germanText":"Einen Raum erstellen",
+ "germanFontType":3,
+ "spanishText":"Crear una sala",
+ "spanishFontType":3,
+ "chineseTText":"建立房間",
+ "chineseTFontType":1,
+ "koreanText":"방을 만든다",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_play_select_2",
+ "japaneseText":"部屋をさがす",
+ "englishUsText":"Find a Room",
+ "englishUsFontType":3,
+ "frenchText":"Trouver un salon",
+ "frenchFontType":3,
+ "italianText":"Cerca una stanza",
+ "italianFontType":3,
+ "germanText":"Einen Raum finden",
+ "germanFontType":3,
+ "spanishText":"Buscar una sala",
+ "spanishFontType":3,
+ "chineseTText":"搜尋房間",
+ "chineseTFontType":1,
+ "koreanText":"방을 찾는다",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_play_help_1",
+ "japaneseText":"近くのプレイヤーといっしょにあそぶ部屋をつくります",
+ "englishUsText":"Create a local wireless session room\nto play with nearby players.",
+ "englishUsFontType":3,
+ "frenchText":"Crée un salon de session locale sans fil\npour jouer avec des joueurs à proximité.",
+ "frenchFontType":3,
+ "italianText":"Crea una stanza per una sessione wireless locale\nper giocare con giocatori vicini.",
+ "italianFontType":3,
+ "germanText":"Einen Raum für eine lokale Drahtlos-Session erstellen, um mit Spielern in der Nähe zu spielen.",
+ "germanFontType":3,
+ "spanishText":"Crea una sala de sesión inalámbrica local\npara jugar con jugadores cercanos.",
+ "spanishFontType":3,
+ "chineseTText":"建立與附近玩家一起遊玩的房間",
+ "chineseTFontType":1,
+ "koreanText":"근처 플레이어와 함께 연주할 방을 만듭니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_play_help_2",
+ "japaneseText":"近くのプレイヤーがつくった部屋をさがしていっしょにあそびます",
+ "englishUsText":"Search for and join local wireless session rooms\nmade by nearby players.",
+ "englishUsFontType":3,
+ "frenchText":"Cherche des salons de session locale sans fil\nà rejoindre créés par des joueurs à proximité.",
+ "frenchFontType":3,
+ "italianText":"Cerca stanze create da giocatori vicini e unisciti\na sessioni wireless locali.",
+ "italianFontType":3,
+ "germanText":"Von Spielern in der Nähe erstellte lokale Drahtlos-Session-Räume suchen und beitreten.",
+ "germanFontType":3,
+ "spanishText":"Busca salas de sesión inalámbrica local creadas\npor jugadores cercanos y únete.",
+ "spanishFontType":3,
+ "chineseTText":"搜尋附近玩家建立的房間,並一起遊玩",
+ "chineseTFontType":1,
+ "koreanText":"근처 플레이어가 만든 방을 찾아서 함께 플레이합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_play_wait_room_title",
+ "japaneseText":"他のプレイヤーを待つ",
+ "englishUsText":"Wait for Other Players",
+ "englishUsFontType":3,
+ "frenchText":"Attends d'autres joueurs",
+ "frenchFontType":3,
+ "italianText":"Attendi altri giocatori",
+ "italianFontType":3,
+ "germanText":"Auf andere Spieler warten",
+ "germanFontType":3,
+ "spanishText":"Espera a otros jugadores",
+ "spanishFontType":3,
+ "chineseTText":"等待參加者",
+ "chineseTFontType":1,
+ "koreanText":"다른 플레이어를 기다린다",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_play_room_serch_title",
+ "japaneseText":"部屋をさがす",
+ "englishUsText":"Find a Room",
+ "englishUsFontType":3,
+ "frenchText":"Trouver un salon",
+ "frenchFontType":3,
+ "italianText":"Cerca una stanza",
+ "italianFontType":3,
+ "germanText":"Einen Raum finden",
+ "germanFontType":3,
+ "spanishText":"Buscar una sala",
+ "spanishFontType":3,
+ "chineseTText":"搜尋房間",
+ "chineseTFontType":1,
+ "koreanText":"방을 찾는다",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_play_wait_room_serch",
+ "japaneseText":"部屋をさがしています",
+ "englishUsText":"Searching for room...",
+ "englishUsFontType":3,
+ "frenchText":"Recherche d'un salon...",
+ "frenchFontType":3,
+ "italianText":"Ricerca della stanza in corso...",
+ "italianFontType":3,
+ "germanText":"Suche nach Raum ...",
+ "germanFontType":3,
+ "spanishText":"Buscando sala...",
+ "spanishFontType":3,
+ "chineseTText":"正在搜尋房間",
+ "chineseTFontType":1,
+ "koreanText":"방을 찾고 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_play_room_select",
+ "japaneseText":"入りたい部屋をえらんでください",
+ "englishUsText":"Select which room you’d like to join.",
+ "englishUsFontType":3,
+ "frenchText":"Choisis le salon que tu voudrais rejoindre.",
+ "frenchFontType":3,
+ "italianText":"Seleziona la stanza a cui desideri unirti.",
+ "italianFontType":3,
+ "germanText":"Wähle den Raum, dem du beitreten möchtest.",
+ "germanFontType":3,
+ "spanishText":"Elige a qué sala quieres unirte.",
+ "spanishFontType":3,
+ "chineseTText":"請選擇想加入的房間",
+ "chineseTFontType":1,
+ "koreanText":"들어가고 싶은 방을 선택해주세요",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_play_room_space_1",
+ "japaneseText":"あと1人",
+ "englishUsText":"Need 1 more player",
+ "englishUsFontType":3,
+ "frenchText":"Besoin d'un joueur supplémentaire",
+ "frenchFontType":3,
+ "italianText":"Occorre un altro giocatore",
+ "italianFontType":3,
+ "germanText":"1 weiterer Spieler benötigt.",
+ "germanFontType":3,
+ "spanishText":"Falta 1 jugador más",
+ "spanishFontType":3,
+ "chineseTText":"還剩1人",
+ "chineseTFontType":1,
+ "koreanText":"앞으로 1명",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_play_room_space_2",
+ "japaneseText":"あと2人",
+ "englishUsText":"Need 2 more players",
+ "englishUsFontType":3,
+ "frenchText":"Besoin de 2 joueurs supplémentaires",
+ "frenchFontType":3,
+ "italianText":"Occorrono altri due giocatori",
+ "italianFontType":3,
+ "germanText":"2 weitere Spieler benötigt.",
+ "germanFontType":3,
+ "spanishText":"Faltan 2 jugadores más",
+ "spanishFontType":3,
+ "chineseTText":"還剩2人",
+ "chineseTFontType":1,
+ "koreanText":"앞으로 2명",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_play_room_space_3",
+ "japaneseText":"あと3人",
+ "englishUsText":"Need 3 more players",
+ "englishUsFontType":3,
+ "frenchText":"Besoin de 3 joueurs supplémentaires",
+ "frenchFontType":3,
+ "italianText":"Occorrono altri tre giocatori",
+ "italianFontType":3,
+ "germanText":"3 weitere Spieler benötigt.",
+ "germanFontType":3,
+ "spanishText":"Faltan 3 jugadores más",
+ "spanishFontType":3,
+ "chineseTText":"還剩3人",
+ "chineseTFontType":1,
+ "koreanText":"앞으로 3명",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_play_wait_message",
+ "japaneseText":"しばらくお待ちください",
+ "englishUsText":"Please wait",
+ "englishUsFontType":3,
+ "frenchText":"Merci de patienter",
+ "frenchFontType":3,
+ "italianText":"Attendi",
+ "italianFontType":3,
+ "germanText":"Bitte warten.",
+ "germanFontType":3,
+ "spanishText":"Espera, por favor",
+ "spanishFontType":3,
+ "chineseTText":"請稍待片刻",
+ "chineseTFontType":1,
+ "koreanText":"잠시 기다려주세요",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_play_wait_info",
+ "japaneseText":"みんなのじゅんびができたら1Pは決定してね!",
+ "englishUsText":"1P starts the game once everyone else is ready!",
+ "englishUsFontType":3,
+ "frenchText":"Le J1 lance la partie quand tout le monde est prêt !",
+ "frenchFontType":3,
+ "italianText":"G1 inizierà la partita quando tutti i giocatori saranno pronti!",
+ "italianFontType":3,
+ "germanText":"Spieler 1 startet das Spiel, sobald alle bereit sind!",
+ "germanFontType":3,
+ "spanishText":"¡Cuando todos estén listos, empieza el J1!",
+ "spanishFontType":3,
+ "chineseTText":"大家準備好的話,就交由1P確定喔!",
+ "chineseTFontType":1,
+ "koreanText":"모두 준비가 되면 1P는 결정을 눌러줘!",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_play_not_enter_message",
+ "japaneseText":"部屋に入れませんでした",
+ "englishUsText":"Unable to enter room",
+ "englishUsFontType":3,
+ "frenchText":"Impossible d'entrer dans le salon",
+ "frenchFontType":3,
+ "italianText":"Impossibile entrare nella stanza",
+ "italianFontType":3,
+ "germanText":"Betreten des Raums nicht möglich",
+ "germanFontType":3,
+ "spanishText":"Imposible entrar en la sala",
+ "spanishFontType":3,
+ "chineseTText":"無法進入房間",
+ "chineseTFontType":1,
+ "koreanText":"방에 들어가지 못했습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_play_not_find_message",
+ "japaneseText":"部屋が見つかりませんでした",
+ "englishUsText":"Could not find a room",
+ "englishUsFontType":3,
+ "frenchText":"Impossible de trouver un salon",
+ "frenchFontType":3,
+ "italianText":"Nessuna stanza trovata",
+ "italianFontType":3,
+ "germanText":"Raum konnte nicht gefunden werden",
+ "germanFontType":3,
+ "spanishText":"No se ha encontrado ninguna sala.",
+ "spanishFontType":3,
+ "chineseTText":"找不到房間",
+ "chineseTFontType":1,
+ "koreanText":"방을 찾지 못했습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_play_dissolution_message",
+ "japaneseText":"部屋がかいさんされました",
+ "englishUsText":"Room disbanded",
+ "englishUsFontType":3,
+ "frenchText":"Salon fermé",
+ "frenchFontType":3,
+ "italianText":"Stanza eliminata",
+ "italianFontType":3,
+ "germanText":"Raum aufgelöst",
+ "germanFontType":3,
+ "spanishText":"Sala disuelta",
+ "spanishFontType":3,
+ "chineseTText":"房間已解散",
+ "chineseTFontType":1,
+ "koreanText":"방이 해산되었습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_play_error_message",
+ "japaneseText":"不明なエラーです",
+ "englishUsText":"Unknown error",
+ "englishUsFontType":3,
+ "frenchText":"Erreur inconnue",
+ "frenchFontType":3,
+ "italianText":"Errore ignoto",
+ "italianFontType":3,
+ "germanText":"Unbekannter Fehler",
+ "germanFontType":3,
+ "spanishText":"Error desconocido.",
+ "spanishFontType":3,
+ "chineseTText":"未知的錯誤",
+ "chineseTFontType":1,
+ "koreanText":"알 수 없는 에러입니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_play_error_disconnect",
+ "japaneseText":"エラーが発生したため\nローカル通信演奏をしゅうりょうします",
+ "englishUsText":"An error has occurred.\nEnding Local Wireless Session.",
+ "englishUsFontType":3,
+ "frenchText":"Une erreur est survenue.\nFin de la session locale sans fil.",
+ "frenchFontType":3,
+ "italianText":"Si è verificato un errore.\nChiusura della sessione wireless locale\nin corso...",
+ "italianFontType":3,
+ "germanText":"Ein Fehler ist aufgetreten.\nLokale Drahtlos-Session wird beendet.",
+ "germanFontType":3,
+ "spanishText":"Se ha producido un error.\nFinalizando sesión inalámbrica local.",
+ "spanishFontType":3,
+ "chineseTText":"由於發生錯誤,將結束鄰近主機通訊演奏",
+ "chineseTFontType":1,
+ "koreanText":"에러가 발생했으므로\n로컬 통신 연주를 종료합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_play_wait_force_message",
+ "japaneseText":"他のプレイヤーのそうさを待っています",
+ "englishUsText":"Waiting for other player’s input...",
+ "englishUsFontType":3,
+ "frenchText":"En attente d'une saisie\nde l'autre joueur...",
+ "frenchFontType":3,
+ "italianText":"In attesa di input dell'altro giocatore...",
+ "italianFontType":3,
+ "germanText":"Warte auf anderen Spieler ...",
+ "germanFontType":3,
+ "spanishText":"Esperando a otros jugadores...",
+ "spanishFontType":3,
+ "chineseTText":"等待其他玩家的操作",
+ "chineseTFontType":1,
+ "koreanText":"다른 플레이어의 조작을 기다리고 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_play_wait_guest_message",
+ "japaneseText":"1Pのそうさが終わるまで待ってください",
+ "englishUsText":"Please wait for 1P",
+ "englishUsFontType":3,
+ "frenchText":"Merci d'attendre J1",
+ "frenchFontType":3,
+ "italianText":"Attendi G1",
+ "italianFontType":3,
+ "germanText":"Bitte auf Sp1 warten.",
+ "germanFontType":3,
+ "spanishText":"Espera al J1",
+ "spanishFontType":3,
+ "chineseTText":"1P操作中",
+ "chineseTFontType":1,
+ "koreanText":"1P의 조작이 종료될 때까지 기다려주세요",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_play_reserch",
+ "japaneseText":"もういちど部屋をさがす",
+ "englishUsText":"Find another room",
+ "englishUsFontType":3,
+ "frenchText":"Trouver un autre salon",
+ "frenchFontType":3,
+ "italianText":"Cerca un'altra stanza",
+ "italianFontType":3,
+ "germanText":"Einen anderen Raum finden",
+ "germanFontType":3,
+ "spanishText":"Buscar otra sala",
+ "spanishFontType":3,
+ "chineseTText":"再次搜尋房間",
+ "chineseTFontType":1,
+ "koreanText":"다시 방을 찾는다",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_host_name_p1",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_host_name_p2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_host_name_p3",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"local_host_name_p4",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"hint",
+ "japaneseText":"ゲームのヒント",
+ "englishUsText":"Hints",
+ "englishUsFontType":3,
+ "frenchText":"Astuces",
+ "frenchFontType":3,
+ "italianText":"Suggerimenti",
+ "italianFontType":3,
+ "germanText":"Hinweise",
+ "germanFontType":3,
+ "spanishText":"Consejos",
+ "spanishFontType":3,
+ "chineseTText":"遊戲的提示",
+ "chineseTFontType":1,
+ "koreanText":"게임의 힌트",
+ "koreanFontType":2
+ },
+ {
+ "key":"loading",
+ "japaneseText":"ロード中",
+ "englishUsText":"Loading",
+ "englishUsFontType":3,
+ "frenchText":"Chargement",
+ "frenchFontType":3,
+ "italianText":"Caricamento",
+ "italianFontType":3,
+ "germanText":"Ladevorgang",
+ "germanFontType":3,
+ "spanishText":"Cargando",
+ "spanishFontType":3,
+ "chineseTText":"讀取中",
+ "chineseTFontType":1,
+ "koreanText":"로딩 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"load_furifuri",
+ "japaneseText":"「バチ持ち」だドン!",
+ "englishUsText":"Use the Drumstick Grip!",
+ "englishUsFontType":3,
+ "frenchText":"Utilise le support baguettes !",
+ "frenchFontType":3,
+ "italianText":"Usa l'impugnatura a bacchetta!",
+ "italianFontType":3,
+ "germanText":"Verwende den Schlägelgriff!",
+ "germanFontType":3,
+ "spanishText":"¡Usa el Control de baqueta!",
+ "spanishFontType":3,
+ "chineseTText":"用「鼓棒握法」咚!",
+ "chineseTFontType":1,
+ "koreanText":"「북채 잡기」다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"loading_tv_attention_title",
+ "japaneseText":"テレビの映像モードをご確認ください",
+ "englishUsText":"Please check your TV's picture mode.",
+ "englishUsFontType":3,
+ "frenchText":"Vérifiez le mode d'image de votre téléviseur.",
+ "frenchFontType":3,
+ "italianText":"Verifica la modalità video del tuo televisore.",
+ "italianFontType":3,
+ "germanText":"Bitte überprüfe den Anzeigemodus deines Fernsehers.",
+ "germanFontType":3,
+ "spanishText":"Comprueba el modo de visualización de tu televisor.",
+ "spanishFontType":3,
+ "chineseTText":"請確認電視的影像模式",
+ "chineseTFontType":1,
+ "koreanText":"TV의 영상 모드를 확인해주세요",
+ "koreanFontType":2
+ },
+ {
+ "key":"loading_tv_attention",
+ "japaneseText":"テレビによっては 映像や音声に遅れがあり\n正しいタイミングで演奏をしても、うまくいかないことがあります\n\nそのような時はテレビの「ゲームモード」等の\n表示設定に変えることで改善される場合があります",
+ "englishUsText":"Some TVs lag the picture or sound, making it\ndifficult to play the game correctly. \n\nIf you experience lags, try switching to\n\"game mode\" or other available display modes.\nThis may help resolve the problem.",
+ "englishUsFontType":3,
+ "frenchText":"Certaines TV présentent un décalage de l'image\nou du son, ce qui peut empêcher de jouer\ncorrectement.\n\nEn cas de latence, essayez de basculer votre TV\nen « mode jeu », ou d'autres modes d'affichage\ndisponibles. Cela pourrait aider à résoudre le\nproblème.\n",
+ "frenchFontType":3,
+ "italianText":"Alcuni televisori potrebbero causare ritardi\nnelle immagini o nell'audio, rendendo\ndifficile il corretto utilizzo del gioco.\n\nSe riscontri un simile ritardo, prova a utilizzare\nla \"modalità gioco\" o altre modalità del tuo\ntelevisore. Ciò potrebbe risolvere il problema.",
+ "italianFontType":3,
+ "germanText":"Manche Fernseher verzögern Bild- oder\nTonanzeige und machen es deshalb schwierig,\ndas Spiel richtig zu spielen.\n\nSollte eine Verzögerung vorliegen, probiere den\n\"Spiel-Modus\" oder einen anderen Modus\ndeines Fernsehers aus. So kann das Problem in\nvielen Fällen gelöst werden.",
+ "germanFontType":3,
+ "spanishText":"Algunos televisores experimentan retardo de\nimagen o sonido, lo que hace que sea difícil\njugar adecuadamente.\n\nSi sufres estos retardos, intenta usar el \"modo\njuego\" o cualquier otro modo disponible.\nEsto podría resolver el problema.",
+ "spanishFontType":3,
+ "chineseTText":"根據電視的機種會出現影像或聲音產生延遲的情況\n即使在正確的時機下演奏,仍會無法好好演奏\n\n在這種時候可試著將電視的顯示設定調整為\n「遊戲模式」等選項,有可能讓情況因此獲得改善",
+ "chineseTFontType":1,
+ "koreanText":"TV에 따라선 영상이나 음성이 늦게 나오는 경우가 있어\n정확한 타이밍으로 연주를 해도 잘 되지 않을 때가 있습니다\n\n이런 때에는 TV의 「게임 모드」 등으로\n표시 설정을 바꾸면 개선되는 경우가 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"entory_autosave",
+ "japaneseText":"このゲームはオートセーブに対応しています\n右上のセーブアイコンが表示されている間は\n電源を切らないでください",
+ "englishUsText":"This game supports autosave. Please make sure to never turn\noff the Nintendo Switch console or close this application when\nyou see the upper-right save icon.",
+ "englishUsFontType":3,
+ "frenchText":"Ce jeu sauvegarde automatiquement. N'éteins pas\nla console Nintendo Switch ou l'application si\ntu vois l'icône de sauvegarde en haut à droite.",
+ "frenchFontType":3,
+ "italianText":"Il gioco supporta il salvataggio automatico.\nNon spegnere la console Nintendo Switch e non uscire dal\ngioco quando vedi l'icona di salvataggio in alto a destra.",
+ "italianFontType":3,
+ "germanText":"Das Spiel speichert automatisch. Schalte die\nNintendo Switch-Konsole nicht ab und beende das Spiel nicht,\nwenn das Speichersymbol rechts oben erscheint.",
+ "germanFontType":3,
+ "spanishText":"Este juego tiene una función de guardado automático.\nNo apagues la consola Nintendo Switch ni cierres la aplicación\ncuando veas el icono de guardado superior derecho.",
+ "spanishFontType":3,
+ "chineseTText":"本遊戲支援自動儲存\n當右上角顯示儲存圖示的時候\n請勿關閉電源",
+ "chineseTFontType":1,
+ "koreanText":"이 게임은 자동 저장 기능을 사용합니다\n오른쪽 위의 세이브 아이콘이 표시 중일 때는\n전원을 끄지 마십시오",
+ "koreanFontType":2
+ },
+ {
+ "key":"entry_furifuri_title",
+ "japaneseText":"フリフリ演奏のときは「バチ持ち」だドン!",
+ "englishUsText":"Use the Drumstick Grip when using motion controls!",
+ "englishUsFontType":3,
+ "frenchText":"Utilise les commandes par mouvements pour le support baguettes !",
+ "frenchFontType":3,
+ "italianText":"Quando usi i comandi di movimento, usa l'impugnatura a bacchetta!",
+ "italianFontType":3,
+ "germanText":"Nutze die Bewegungssteuerung für den Schlägelgriff!",
+ "germanFontType":3,
+ "spanishText":"¡Usa control por movimiento para control de baqueta!",
+ "spanishFontType":3,
+ "chineseTText":"在動態演奏時要用「鼓棒握法」咚!",
+ "chineseTFontType":1,
+ "koreanText":"모션 조작을 할 때는 「북채 잡기」다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"entry_furifuri_left",
+ "japaneseText":"バチにみたてた「Joy-Con」を\nたてに にぎって「バチ持ち」だ!",
+ "englishUsText":"Hold the Joy-Con™ upwards\nfor the Drumstick Grip!",
+ "englishUsFontType":3,
+ "frenchText":"Tiens les Joy-Con™ verticalement comme\ndes baguettes pour le support baguettes !",
+ "frenchFontType":3,
+ "italianText":"Imp. a bacchetta: impugna\ni Joy-Con™ in verticale!",
+ "italianFontType":3,
+ "germanText":"Halte die Joy-Con™ senkrecht, um den\nSchlägelgriff zu verwenden!",
+ "germanFontType":3,
+ "spanishText":"¡Joy-Con™ hacia arriba\nen el Control de baqueta!",
+ "spanishFontType":3,
+ "chineseTText":"是將「Joy-Con 控制器」當成鼓棒,\n舉起並握住的「鼓棒握法」!",
+ "chineseTFontType":1,
+ "koreanText":"「Joy-Con」을 북채처럼\n세로로 쥐어서 「북채 잡기」!",
+ "koreanFontType":2
+ },
+ {
+ "key":"entry_furifuri_center",
+ "japaneseText":"まっすぐ ふり下ろすと「ドン」!",
+ "englishUsText":"Swing them straight down\nto do a Don!",
+ "englishUsFontType":3,
+ "frenchText":"Abaisse-les tout droit\npour faire un Don !",
+ "frenchFontType":3,
+ "italianText":"Falli oscillare in verticale\nper suonare un DON!",
+ "italianFontType":3,
+ "germanText":"Bewege sie nach unten\nfür einen Don!",
+ "germanFontType":3,
+ "spanishText":"¡Muévelos hacia abajo\npara hacer un Don!",
+ "spanishFontType":3,
+ "chineseTText":"直直向下揮為「咚」!",
+ "chineseTFontType":1,
+ "koreanText":"똑바로 아래로 흔들면 「쿵」!",
+ "koreanFontType":2
+ },
+ {
+ "key":"entry_furifuri_right",
+ "japaneseText":"ななめに ふり下ろすと「カッ」!",
+ "englishUsText":"Swing them diagonally\ndown to do a Ka!",
+ "englishUsFontType":3,
+ "frenchText":"Abaisse-les en diagonale\npour faire un Ka !",
+ "frenchFontType":3,
+ "italianText":"Falli oscillare in diagonale\nper suonare un Ka!",
+ "italianFontType":3,
+ "germanText":"Bewege sie diagonal\nnach unten für ein Ka!",
+ "germanFontType":3,
+ "spanishText":"¡Muévelos en diagonal\ny abajo para hacer un KA!",
+ "spanishFontType":3,
+ "chineseTText":"傾斜向下揮為「咔」!",
+ "chineseTFontType":1,
+ "koreanText":"비스듬하게 아래로 흔들면 「딱」!",
+ "koreanFontType":2
+ },
+ {
+ "key":"entry_furifuri_rightsml",
+ "japaneseText":"「※LボタンかRボタンを押しながらふっても「カッ」になるよ!」",
+ "englishUsText":"*Hold down L or R when swinging to do a Ka!",
+ "englishUsFontType":3,
+ "frenchText":"*Maintiens L ou R en ↓ pour faire un Ka !",
+ "frenchFontType":3,
+ "italianText":"*Tieni premuto L o R durante il movimento.",
+ "italianFontType":3,
+ "germanText":"*Du kannst in der Bewegung L oder R drücken für ein Ka!",
+ "germanFontType":3,
+ "spanishText":"*¡Mantén L o R para hacer un Ka!",
+ "spanishFontType":3,
+ "chineseTText":"「※按住L鍵或R鍵的同時揮動也會變成『咔』!」",
+ "chineseTFontType":1,
+ "koreanText":"「※L 버튼이나 R 버튼을 누르며 흔들어도 「딱」이 돼!」",
+ "koreanFontType":2
+ },
+ {
+ "key":"entry_furifuri_bottom",
+ "japaneseText":"フリフリ演奏で あそぶときは\nまわりの 人・もの に気をつけて\nストラップを 取り付けて\nしっかりにぎって はなさないでね",
+ "englishUsText":"When using Joy-Con controllers, please make sure\nto fasten the controller's straps, hold onto them\ntightly, and check that you have enough room\naround you.",
+ "englishUsFontType":3,
+ "frenchText":"Lorsque tu joues avec une\nmanette Joy-Con, attache la dragonne\ncomme indiqué. Tiens fermement la\nmanette Joy-Con et ne la laisse pas tomber.",
+ "frenchFontType":3,
+ "italianText":"Se usi i controller Joy-Con, attacca i\nlaccetti come indicato. Tieni i controller\nJoy-Con saldi e non farli cadere.",
+ "italianFontType":3,
+ "germanText":"Wenn du mit den Joy-Con spielst,\nverwende die Handgelenksschlaufe\nwie dargestellt.\nHalte die Joy-Con fest und lasse\nsie nicht los.",
+ "germanFontType":3,
+ "spanishText":"Al jugar con un mando Joy-Con, fija la\ncorrea del mando como se muestra en la\nimagen. Sujeta bien el mando Joy-Con y\nno lo sueltes.",
+ "spanishFontType":3,
+ "chineseTText":"在遊玩動態演奏時,需要注意周遭的人或是東西,\n並請繫上腕帶並確實握緊控制器喔",
+ "chineseTFontType":1,
+ "koreanText":"모션 조작으로 플레이할 때는\n주변의 사람, 물건을 조심하고\n스트랩을 손목에 걸어서\n꽉 쥐고 놓지 말아줘",
+ "koreanFontType":2
+ },
+ {
+ "key":"entry_furifuri_chuikanki_p2",
+ "japaneseText":"目の前に太鼓がおいてあるイメージで\nまっすぐふり下ろそう!",
+ "englishUsText":"Imagine there's a drum in front of you,\nand swing it straight down!",
+ "englishUsFontType":3,
+ "frenchText":"Imagine qu'il y a un tambour face à toi,\nensuite, déplace le Joy-Con vers le bas !",
+ "frenchFontType":3,
+ "italianText":"Immagina un tamburo davanti a te\ne fai oscillare il Joy-Con verticalmente!",
+ "italianFontType":3,
+ "germanText":"Stell dir direkt vor dir eine Trommel vor\nund bewege den Joy-Con gerade nach unten!",
+ "germanFontType":3,
+ "spanishText":"Imagina que tienes un tambor delante.\nAhora, ¡mueve el Joy-Con hacia abajo!",
+ "spanishFontType":3,
+ "chineseTText":"想像面前有個太鼓,\n把控制器垂直向下揮動吧!",
+ "chineseTFontType":1,
+ "koreanText":"눈앞에 북이 놓여있는 걸 상상하면서\n똑바로 아래로 흔들자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"entry_furifuri_chuikanki_p3",
+ "japaneseText":"目の前に太鼓がおいてあるイメージで\nななめにひねりながら、ふり下ろそう!",
+ "englishUsText":"Imagine there's a drum in front of you,\nand swing it down with a diagonal twist!",
+ "englishUsFontType":3,
+ "frenchText":"Imagine qu'il y a un tambour face à toi, ensuite,\ndéplace le Joy-Con en diagonale vers le bas !",
+ "frenchFontType":3,
+ "italianText":"Immagina un tamburo davanti a te\ne fai oscillare il Joy-Con diagonalmente!",
+ "italianFontType":3,
+ "germanText":"Stell dir direkt vor dir eine Trommel vor\nund bewege den Joy-Con diagonal nach unten!",
+ "germanFontType":3,
+ "spanishText":"Imagina que tienes un tambor delante.\nAhora, ¡mueve el Joy-Con en diagonal!",
+ "spanishFontType":3,
+ "chineseTText":"想像面前有個太鼓,\n把控制器傾斜向下揮動吧!",
+ "chineseTFontType":1,
+ "koreanText":"눈앞에 북이 놓여있는 걸 상상하면서\n비스듬히 틀어서 아래로 흔들자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_chara_select",
+ "japaneseText":"演奏キャラクターをえらぶ",
+ "englishUsText":"Select a character.",
+ "englishUsFontType":3,
+ "frenchText":"Choix du personnage",
+ "frenchFontType":3,
+ "italianText":"Seleziona un personaggio",
+ "italianFontType":3,
+ "germanText":"Charakter wählen",
+ "germanFontType":3,
+ "spanishText":"Elige un personaje",
+ "spanishFontType":3,
+ "chineseTText":"選擇演奏角色",
+ "chineseTFontType":1,
+ "koreanText":"연주 캐릭터 선택",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_skill_0",
+ "japaneseText":"スキルなしで演奏する",
+ "englishUsText":"Play Without Skills",
+ "englishUsFontType":3,
+ "frenchText":"Jouer sans capacités",
+ "frenchFontType":3,
+ "italianText":"Gioca senza abilità",
+ "italianFontType":3,
+ "germanText":"Normale Session",
+ "germanFontType":3,
+ "spanishText":"Jugar sin habilidades",
+ "spanishFontType":3,
+ "chineseTText":"不使用技能進行演奏",
+ "chineseTFontType":1,
+ "koreanText":"스킬 없이 연주한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_skill_1",
+ "japaneseText":"オート演奏になる",
+ "englishUsText":"Auto-Play",
+ "englishUsFontType":3,
+ "frenchText":"Partie automatique",
+ "frenchFontType":3,
+ "italianText":"Sessione automatica",
+ "italianFontType":3,
+ "germanText":"Automatische Wiedergabe",
+ "germanFontType":3,
+ "spanishText":"Sesión automática",
+ "spanishFontType":3,
+ "chineseTText":"變為自動演奏",
+ "chineseTFontType":1,
+ "koreanText":"오토 연주를 한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_skill_2",
+ "japaneseText":"たたくタイミングやさしい",
+ "englishUsText":"Easier Timing",
+ "englishUsFontType":3,
+ "frenchText":"Timing plus souple",
+ "frenchFontType":3,
+ "italianText":"Valut. tempismo clemente",
+ "italianFontType":3,
+ "germanText":"Einfacheres Timing",
+ "germanFontType":3,
+ "spanishText":"Cadencia sencilla",
+ "spanishFontType":3,
+ "chineseTText":"讓演奏時機變得較好掌握",
+ "chineseTFontType":1,
+ "koreanText":"치는 타이밍이 쉽다",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_skill_3",
+ "japaneseText":"たたくタイミングむずかしい",
+ "englishUsText":"Harder Timing",
+ "englishUsFontType":3,
+ "frenchText":"Timing plus serré",
+ "frenchFontType":3,
+ "italianText":"Valut. tempismo rigida",
+ "italianFontType":3,
+ "germanText":"Schwierigeres Timing",
+ "germanFontType":3,
+ "spanishText":"Cadencia difícil",
+ "spanishFontType":3,
+ "chineseTText":"讓演奏時機變得較難掌握",
+ "chineseTFontType":1,
+ "koreanText":"치는 타이밍이 어렵다",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_skill_4",
+ "japaneseText":"魂ゲージがへらなくなる",
+ "englishUsText":"No Soul Gauge drop",
+ "englishUsFontType":3,
+ "frenchText":"Jauge ne diminue pas",
+ "frenchFontType":3,
+ "italianText":"Indic. Anima non si riduce",
+ "italianFontType":3,
+ "germanText":"Quotenanzeige fällt nicht.",
+ "germanFontType":3,
+ "spanishText":"Sin bajada del indicador de Alma",
+ "spanishFontType":3,
+ "chineseTText":"讓魂量表不會減少",
+ "chineseTFontType":1,
+ "koreanText":"혼 게이지가 줄지 않는다",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_skill_5",
+ "japaneseText":"魂ゲージがへりにくくなる",
+ "englishUsText":"Less Soul Gauge drop",
+ "englishUsFontType":3,
+ "frenchText":"Jauge diminue moins",
+ "frenchFontType":3,
+ "italianText":"Riduz. indic. Anima minore",
+ "italianFontType":3,
+ "germanText":"Quotenanzeige fällt weniger leicht.",
+ "germanFontType":3,
+ "spanishText":"Menor bajada del indicador de Alma",
+ "spanishFontType":3,
+ "chineseTText":"讓魂量表不易減少",
+ "chineseTFontType":1,
+ "koreanText":"혼 게이지가 덜 줄어든다",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_skill_6",
+ "japaneseText":"魂ゲージがふえにくくなる",
+ "englishUsText":"Less Soul Gauge rise",
+ "englishUsFontType":3,
+ "frenchText":"Jauge augmente moins",
+ "frenchFontType":3,
+ "italianText":"Aumento indic. Anima minore",
+ "italianFontType":3,
+ "germanText":"Quotenanzeige steigt weniger leicht.",
+ "germanFontType":3,
+ "spanishText":"Menor subida del indicador de Alma",
+ "spanishFontType":3,
+ "chineseTText":"讓魂量表不易增加",
+ "chineseTFontType":1,
+ "koreanText":"혼 게이지가 덜 늘어난다",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_skill_7",
+ "japaneseText":"魂ゲージふえやすい Lv.1",
+ "englishUsText":"Faster Soul Gauge Lv1",
+ "englishUsFontType":3,
+ "frenchText":"Jauge plus rapide Niv1",
+ "frenchFontType":3,
+ "italianText":"Indicat. Anima più veloce Liv. 1",
+ "italianFontType":3,
+ "germanText":"Schnellere Seelenanzeige St. 1",
+ "germanFontType":3,
+ "spanishText":"Indicador de Alma más rápido 1",
+ "spanishFontType":3,
+ "chineseTText":"讓魂量表容易增加 LV.1",
+ "chineseTFontType":1,
+ "koreanText":"혼 게이지 늘어난다 Lv.1",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_skill_8",
+ "japaneseText":"魂ゲージふえやすい Lv.2",
+ "englishUsText":"Faster Soul Gauge Lv2",
+ "englishUsFontType":3,
+ "frenchText":"Jauge plus rapide Niv2",
+ "frenchFontType":3,
+ "italianText":"Indic. Anima più veloce Liv. 1",
+ "italianFontType":3,
+ "germanText":"Schnellere Seelenanzeige St. 2",
+ "germanFontType":3,
+ "spanishText":"Indicador de Alma más rápido 2",
+ "spanishFontType":3,
+ "chineseTText":"讓魂量表容易增加 LV.2",
+ "chineseTFontType":1,
+ "koreanText":"혼 게이지 늘어난다 Lv.2",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_skill_9",
+ "japaneseText":"ドンカッ区別なし",
+ "englishUsText":"Don/Ka Treated Same",
+ "englishUsFontType":3,
+ "frenchText":"Même traitement DON/KA",
+ "frenchFontType":3,
+ "italianText":"No differenza tra note DON e KA",
+ "italianFontType":3,
+ "germanText":"Don/Ka gleichwertig",
+ "germanFontType":3,
+ "spanishText":"Don/Ka tratadas igual",
+ "spanishFontType":3,
+ "chineseTText":"咚、咔變得沒有分別",
+ "chineseTFontType":1,
+ "koreanText":"쿵딱 구별 없음",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_skill_10",
+ "japaneseText":"連打音符サポート Lv.1",
+ "englishUsText":"Drumroll Support Lv1",
+ "englishUsFontType":3,
+ "frenchText":"Soutien roulement Niv1",
+ "frenchFontType":3,
+ "italianText":"Assistenza nota rullo Liv. 1",
+ "italianFontType":3,
+ "germanText":"Trommelwirbel-Hilfe St. 1",
+ "germanFontType":3,
+ "spanishText":"Apoyo de redoble 1",
+ "spanishFontType":3,
+ "chineseTText":"連打音符支援 LV.1",
+ "chineseTFontType":1,
+ "koreanText":"연타 음표 서포트 Lv.1",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_skill_11",
+ "japaneseText":"ふうせん音符サポート Lv.1",
+ "englishUsText":"Balloon Support Lv1",
+ "englishUsFontType":3,
+ "frenchText":"Soutien ballon Niv1",
+ "frenchFontType":3,
+ "italianText":"Assist. nota palloncino Liv. 1",
+ "italianFontType":3,
+ "germanText":"Ballon-Hilfe St. 1",
+ "germanFontType":3,
+ "spanishText":"Apoyo de globo 1",
+ "spanishFontType":3,
+ "chineseTText":"氣球音符支援 LV.1",
+ "chineseTFontType":1,
+ "koreanText":"풍선 음표 서포트 Lv.1",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_skill_12",
+ "japaneseText":"こづち音符サポート Lv.1",
+ "englishUsText":"Mallet Support Lv1",
+ "englishUsFontType":3,
+ "frenchText":"Soutien maillet Niv1",
+ "frenchFontType":3,
+ "italianText":"Assist. nota martello Liv. 1",
+ "italianFontType":3,
+ "germanText":"Schlägel-Hilfe St. 1",
+ "germanFontType":3,
+ "spanishText":"Apoyo de mazo 1",
+ "spanishFontType":3,
+ "chineseTText":"小槌音符支援 LV.1",
+ "chineseTFontType":1,
+ "koreanText":"금망치 음표 서포트 Lv.1",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_skill_13",
+ "japaneseText":"連打音符サポート Lv.2",
+ "englishUsText":"Drumroll Support Lv2",
+ "englishUsFontType":3,
+ "frenchText":"Soutien roulement Niv2",
+ "frenchFontType":3,
+ "italianText":"Assistenza nota rullo Liv. 2",
+ "italianFontType":3,
+ "germanText":"Trommelwirbel-Hilfe St. 2",
+ "germanFontType":3,
+ "spanishText":"Apoyo de redoble 2",
+ "spanishFontType":3,
+ "chineseTText":"連打音符支援 LV.2",
+ "chineseTFontType":1,
+ "koreanText":"연타 음표 서포트 Lv.2",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_skill_14",
+ "japaneseText":"ふうせん音符サポート Lv.2",
+ "englishUsText":"Balloon Support Lv2",
+ "englishUsFontType":3,
+ "frenchText":"Soutien ballon Niv2",
+ "frenchFontType":3,
+ "italianText":"Assist. nota palloncino Liv. 2",
+ "italianFontType":3,
+ "germanText":"Ballon-Hilfe St. 2",
+ "germanFontType":3,
+ "spanishText":"Apoyo de globo 2",
+ "spanishFontType":3,
+ "chineseTText":"氣球音符支援 LV.2",
+ "chineseTFontType":1,
+ "koreanText":"풍선 음표 서포트 Lv.2",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_skill_15",
+ "japaneseText":"こづち音符サポート Lv.2",
+ "englishUsText":"Mallet Support Lv2",
+ "englishUsFontType":3,
+ "frenchText":"Soutien maillet Niv2",
+ "frenchFontType":3,
+ "italianText":"Assist. nota martello Liv. 2",
+ "italianFontType":3,
+ "germanText":"Schlägel-Hilfe St. 2",
+ "germanFontType":3,
+ "spanishText":"Apoyo de mazo 2",
+ "spanishFontType":3,
+ "chineseTText":"小槌音符支援 LV.2",
+ "chineseTFontType":1,
+ "koreanText":"금망치 음표 서포트 Lv.2",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_skill_16",
+ "japaneseText":"大音符入力サポート",
+ "englishUsText":"DON/KA Support",
+ "englishUsFontType":3,
+ "frenchText":"Soutien DON/KA",
+ "frenchFontType":3,
+ "italianText":"Assistenza DON/KA",
+ "italianFontType":3,
+ "germanText":"DON-/KA-Hilfe",
+ "germanFontType":3,
+ "spanishText":"Apoyo de DON/KA",
+ "spanishFontType":3,
+ "chineseTText":"大音符輸入支援",
+ "chineseTFontType":1,
+ "koreanText":"큰 음표 입력 서포트",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_skill_17",
+ "japaneseText":"魂ゲージ50%スタート",
+ "englishUsText":"Half Full Soul Gauge",
+ "englishUsFontType":3,
+ "frenchText":"Jauge à moitié pleine",
+ "frenchFontType":3,
+ "italianText":"Indic. Anima mezzo pieno",
+ "italianFontType":3,
+ "germanText":"Halbvolle Seelenanzeige",
+ "germanFontType":3,
+ "spanishText":"Indicador de Alma medio lleno",
+ "spanishFontType":3,
+ "chineseTText":"讓魂量表以 50% 的狀態開始遊戲 ",
+ "chineseTFontType":1,
+ "koreanText":"클리어 게이지 50% 시작",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_skill_18",
+ "japaneseText":"不可判定がなくなる",
+ "englishUsText":"No More Bads",
+ "englishUsFontType":3,
+ "frenchText":"Jamais de MAUVAIS",
+ "frenchFontType":3,
+ "italianText":"I MALE non appaiono",
+ "italianFontType":3,
+ "germanText":"Kein ÜBEL",
+ "germanFontType":3,
+ "spanishText":"No más MAL",
+ "spanishFontType":3,
+ "chineseTText":"不會出現不可判定",
+ "chineseTFontType":1,
+ "koreanText":"에구 판정이 없어진다",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_chara_skill",
+ "japaneseText":"演奏スキル",
+ "englishUsText":"Session Skill",
+ "englishUsFontType":3,
+ "frenchText":"Capacité de session",
+ "frenchFontType":3,
+ "italianText":"Abilità sessione",
+ "italianFontType":3,
+ "germanText":"Session-Skill",
+ "germanFontType":3,
+ "spanishText":"Habilidad de sesión",
+ "spanishFontType":3,
+ "chineseTText":"演奏技能",
+ "chineseTFontType":1,
+ "koreanText":"연주 스킬",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_chara_asterisk",
+ "japaneseText":"???",
+ "englishUsText":"???",
+ "englishUsFontType":3,
+ "frenchText":"???",
+ "frenchFontType":3,
+ "italianText":"???",
+ "italianFontType":3,
+ "germanText":"???",
+ "germanFontType":3,
+ "spanishText":"???",
+ "spanishFontType":3,
+ "chineseTText":"???",
+ "chineseTFontType":1,
+ "koreanText":"???",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_chara_detail_asterisk",
+ "japaneseText":"???\n\n\n\n\n\n",
+ "englishUsText":"???\n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"???\n\n\n\n\n\n",
+ "frenchFontType":3,
+ "italianText":"???\n\n\n\n\n\n",
+ "italianFontType":3,
+ "germanText":"???\n\n\n\n\n\n",
+ "germanFontType":3,
+ "spanishText":"???\n\n\n\n\n\n",
+ "spanishFontType":3,
+ "chineseTText":"???\n\n\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"???\n\n\n\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_041_dummy",
+ "japaneseText":"ダミー041",
+ "englishUsText":"Dummy 041",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_042_dummy",
+ "japaneseText":"ダミー042",
+ "englishUsText":"Dummy 042",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_043_dummy",
+ "japaneseText":"ダミー043",
+ "englishUsText":"Dummy 043",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_044_dummy",
+ "japaneseText":"ダミー044",
+ "englishUsText":"Dummy 044",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_045_dummy",
+ "japaneseText":"ダミー045",
+ "englishUsText":"Dummy 045",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_046_dummy",
+ "japaneseText":"ダミー046",
+ "englishUsText":"Dummy 046",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_047_dummy",
+ "japaneseText":"ダミー047",
+ "englishUsText":"Dummy 047",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_048_dummy",
+ "japaneseText":"ダミー048",
+ "englishUsText":"Dummy 048",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_049_dummy",
+ "japaneseText":"ダミー049",
+ "englishUsText":"Dummy 049",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_050_dummy",
+ "japaneseText":"ダミー050",
+ "englishUsText":"Dummy 050",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_051_dummy",
+ "japaneseText":"ダミー051",
+ "englishUsText":"Dummy 051",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_052_dummy",
+ "japaneseText":"ダミー052",
+ "englishUsText":"Dummy 052",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_053_dummy",
+ "japaneseText":"ダミー053",
+ "englishUsText":"Dummy 053",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_054_dummy",
+ "japaneseText":"ダミー054",
+ "englishUsText":"Dummy 054",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_055_dummy",
+ "japaneseText":"ダミー055",
+ "englishUsText":"Dummy 055",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_056_dummy",
+ "japaneseText":"ダミー056",
+ "englishUsText":"Dummy 056",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_057_dummy",
+ "japaneseText":"ダミー057",
+ "englishUsText":"Dummy 057",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_058_dummy",
+ "japaneseText":"ダミー058",
+ "englishUsText":"Dummy 058",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_059_dummy",
+ "japaneseText":"ダミー059",
+ "englishUsText":"Dummy 059",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_060_dummy",
+ "japaneseText":"ダミー060",
+ "englishUsText":"Dummy 060",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_061_dummy",
+ "japaneseText":"ダミー061",
+ "englishUsText":"Dummy 061",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_062_dummy",
+ "japaneseText":"ダミー062",
+ "englishUsText":"Dummy 062",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_063_dummy",
+ "japaneseText":"ダミー063",
+ "englishUsText":"Dummy 063",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_064_dummy",
+ "japaneseText":"ダミー064",
+ "englishUsText":"Dummy 064",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_065_dummy",
+ "japaneseText":"ダミー065",
+ "englishUsText":"Dummy 065",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_066_dummy",
+ "japaneseText":"ダミー066",
+ "englishUsText":"Dummy 066",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_067_dummy",
+ "japaneseText":"ダミー067",
+ "englishUsText":"Dummy 067",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_068_dummy",
+ "japaneseText":"ダミー068",
+ "englishUsText":"Dummy 068",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_069_dummy",
+ "japaneseText":"ダミー069",
+ "englishUsText":"Dummy 069",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_070_dummy",
+ "japaneseText":"ダミー070",
+ "englishUsText":"Dummy 070",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_071_dummy",
+ "japaneseText":"ダミー071",
+ "englishUsText":"Dummy 071",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_072_dummy",
+ "japaneseText":"ダミー072",
+ "englishUsText":"Dummy 072",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_073_dummy",
+ "japaneseText":"ダミー073",
+ "englishUsText":"Dummy 073",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_074_dummy",
+ "japaneseText":"ダミー074",
+ "englishUsText":"Dummy 074",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_075_dummy",
+ "japaneseText":"ダミー075",
+ "englishUsText":"Dummy 075",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_076_dummy",
+ "japaneseText":"ダミー076",
+ "englishUsText":"Dummy 076",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_077_dummy",
+ "japaneseText":"ダミー077",
+ "englishUsText":"Dummy 077",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_078_dummy",
+ "japaneseText":"ダミー078",
+ "englishUsText":"Dummy 078",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_079_dummy",
+ "japaneseText":"ダミー079",
+ "englishUsText":"Dummy 079",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_080_dummy",
+ "japaneseText":"ダミー080",
+ "englishUsText":"Dummy 080",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_081_dummy",
+ "japaneseText":"ダミー081",
+ "englishUsText":"Dummy 081",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_082_dummy",
+ "japaneseText":"ダミー082",
+ "englishUsText":"Dummy 082",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_083_dummy",
+ "japaneseText":"ダミー083",
+ "englishUsText":"Dummy 083",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_084_dummy",
+ "japaneseText":"ダミー084",
+ "englishUsText":"Dummy 084",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_085_dummy",
+ "japaneseText":"ダミー085",
+ "englishUsText":"Dummy 085",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_086_dummy",
+ "japaneseText":"ダミー086",
+ "englishUsText":"Dummy 086",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_087_dummy",
+ "japaneseText":"ダミー087",
+ "englishUsText":"Dummy 087",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_088_dummy",
+ "japaneseText":"ダミー088",
+ "englishUsText":"Dummy 088",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_089_dummy",
+ "japaneseText":"ダミー089",
+ "englishUsText":"Dummy 089",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_090_dummy",
+ "japaneseText":"ダミー090",
+ "englishUsText":"Dummy 090",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_091_dummy",
+ "japaneseText":"ダミー091",
+ "englishUsText":"Dummy 091",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_092_dummy",
+ "japaneseText":"ダミー092",
+ "englishUsText":"Dummy 092",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_093_dummy",
+ "japaneseText":"ダミー093",
+ "englishUsText":"Dummy 093",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_094_dummy",
+ "japaneseText":"ダミー094",
+ "englishUsText":"Dummy 094",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_095_dummy",
+ "japaneseText":"ダミー095",
+ "englishUsText":"Dummy 095",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_096_dummy",
+ "japaneseText":"ダミー096",
+ "englishUsText":"Dummy 096",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_097_dummy",
+ "japaneseText":"ダミー097",
+ "englishUsText":"Dummy 097",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_098_dummy",
+ "japaneseText":"ダミー098",
+ "englishUsText":"Dummy 098",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_099_dummy",
+ "japaneseText":"ダミー099",
+ "englishUsText":"Dummy 099",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_100_dummy",
+ "japaneseText":"ダミー100",
+ "englishUsText":"Dummy 100",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_041_dummy",
+ "japaneseText":"ダミー041説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 041 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_042_dummy",
+ "japaneseText":"ダミー042説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 042 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_043_dummy",
+ "japaneseText":"ダミー043説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 043 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_044_dummy",
+ "japaneseText":"ダミー044説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 044 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_045_dummy",
+ "japaneseText":"ダミー045説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 045 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_046_dummy",
+ "japaneseText":"ダミー046説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 046 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_047_dummy",
+ "japaneseText":"ダミー047説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 047 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_048_dummy",
+ "japaneseText":"ダミー048説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 048 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_049_dummy",
+ "japaneseText":"ダミー049説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 049 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_050_dummy",
+ "japaneseText":"ダミー050説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 050 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_051_dummy",
+ "japaneseText":"ダミー051説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 051 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_052_dummy",
+ "japaneseText":"ダミー052説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 052 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_053_dummy",
+ "japaneseText":"ダミー053説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 053 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_054_dummy",
+ "japaneseText":"ダミー054説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 054 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_055_dummy",
+ "japaneseText":"ダミー055説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 055 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_056_dummy",
+ "japaneseText":"ダミー056説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 056 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_057_dummy",
+ "japaneseText":"ダミー057説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 057 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_058_dummy",
+ "japaneseText":"ダミー058説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 058 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_059_dummy",
+ "japaneseText":"ダミー059説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 059 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_060_dummy",
+ "japaneseText":"ダミー060説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 060 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_061_dummy",
+ "japaneseText":"ダミー061説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 061 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_062_dummy",
+ "japaneseText":"ダミー062説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 062 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_063_dummy",
+ "japaneseText":"ダミー063説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 063 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_064_dummy",
+ "japaneseText":"ダミー064説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 064 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_065_dummy",
+ "japaneseText":"ダミー065説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 065 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_066_dummy",
+ "japaneseText":"ダミー066説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 066 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_067_dummy",
+ "japaneseText":"ダミー067説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 067 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_068_dummy",
+ "japaneseText":"ダミー068説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 068 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_069_dummy",
+ "japaneseText":"ダミー069説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 069 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_070_dummy",
+ "japaneseText":"ダミー070説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 070 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_071_dummy",
+ "japaneseText":"ダミー071説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 071 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_072_dummy",
+ "japaneseText":"ダミー072説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 072 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_073_dummy",
+ "japaneseText":"ダミー073説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 073 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_074_dummy",
+ "japaneseText":"ダミー074説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 074 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_075_dummy",
+ "japaneseText":"ダミー075説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 075 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_076_dummy",
+ "japaneseText":"ダミー076説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 076 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_077_dummy",
+ "japaneseText":"ダミー077説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 077 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_078_dummy",
+ "japaneseText":"ダミー078説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 078 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_079_dummy",
+ "japaneseText":"ダミー079説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 079 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_080_dummy",
+ "japaneseText":"ダミー080説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 080 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_081_dummy",
+ "japaneseText":"ダミー081説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 081 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_082_dummy",
+ "japaneseText":"ダミー082説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 082 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_083_dummy",
+ "japaneseText":"ダミー083説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 083 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_084_dummy",
+ "japaneseText":"ダミー084説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 084 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_085_dummy",
+ "japaneseText":"ダミー085説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 085 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_086_dummy",
+ "japaneseText":"ダミー086説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 086 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_087_dummy",
+ "japaneseText":"ダミー087説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 087 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_088_dummy",
+ "japaneseText":"ダミー088説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 088 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_089_dummy",
+ "japaneseText":"ダミー089説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 089 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_090_dummy",
+ "japaneseText":"ダミー090説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 090 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_091_dummy",
+ "japaneseText":"ダミー091説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 091 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_092_dummy",
+ "japaneseText":"ダミー092説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 092 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_093_dummy",
+ "japaneseText":"ダミー093説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 093 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_094_dummy",
+ "japaneseText":"ダミー094説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 094 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_095_dummy",
+ "japaneseText":"ダミー095説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 095 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_096_dummy",
+ "japaneseText":"ダミー096説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 096 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_097_dummy",
+ "japaneseText":"ダミー097説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 097 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_098_dummy",
+ "japaneseText":"ダミー098説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 098 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_099_dummy",
+ "japaneseText":"ダミー099説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 099 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_100_dummy",
+ "japaneseText":"ダミー100説明\n\n\n\n\n\n",
+ "englishUsText":"Dummy 100 Description \n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_001_don",
+ "japaneseText":"赤い顔がトレードマーク\n楽しいことが大好きで\nこまった人をほっとけない\nむずかしいことを考えるのが苦手\n\n\n",
+ "englishUsText":"Best known for his trademark\nred face. He loves having\nfun and is compelled to\nhelp those in need.\nDoesn't care for thinking\nabout complex topics.\n",
+ "englishUsFontType":3,
+ "frenchText":"Bien connu pour son célèbre\nvisage rouge. Il adore\ns'amuser et aider ceux dans\nle besoin. Les sujets\ncompliqués ne l'intéressent\nabsolument pas.\n",
+ "frenchFontType":3,
+ "italianText":"Noto per la sua caratteristica\nfaccia rossa, ama divertirsi\ne soccorre sempre chi\nha bisogno di aiuto.\nGli argomenti complessi\nnon gli interessano.\n",
+ "italianFontType":3,
+ "germanText":"Am besten an seinem\nroten Gesicht zu erkennen. Hat\ngerne Spaß und hilft\nBedürftigen.\nDenkt nicht gerne über\nschwere Themen nach.\n",
+ "germanFontType":3,
+ "spanishText":"Conocido por su cara roja.\nLe gusta divertirse y\nayudar a los necesitados.\nNo le gusta pensar en\ncosas complicadas.\n\n",
+ "spanishFontType":3,
+ "chineseTText":"紅色臉孔就是它的象徵。個性天真無邪,\n最喜歡快樂的事,無法放著有困難的人不管\n不擅思考複雜的事\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"빨간 얼굴이 트레이드마크\n즐거운 것을 좋아하고\n곤란한 사람을 그냥 두지 못한다\n어려운 생각을 하는 걸 싫어한다\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_002_katsu",
+ "japaneseText":"青い顔がトレードマーク\nどんちゃんのふたごの弟\n冷静だがどこか抜けている\n\n\n\n",
+ "englishUsText":"Best known for his\ntrademark blue face.\nDON-chan’s twin brother.\nCool and collected, but\nalso a bit of an airhead.\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Bien connu pour son célèbre\nvisage bleu. Frère jumeau\nde DON-chan.\nCalme et serein, il manque\nparfois d'attention.\n\n",
+ "frenchFontType":3,
+ "italianText":"Noto per la sua caratteristica\nfaccia blu. Fratello\ngemello di DON.\nSempre calmo e tranquillo,\na volte sembra avere la\ntesta vuota.\n",
+ "italianFontType":3,
+ "germanText":"Am besten an seinem blauen \nGesicht zu erkennen. DON-chans \nZwillingsbruder. Ruhig und gelassen, \nmanchmal aber etwas dusselig.\n\n\n",
+ "germanFontType":3,
+ "spanishText":"Conocido por su cara azul.\nEs el hermano gemelo de\nDON-chan. Es tranquilo y\nreservado, pero también un\npoco atolondrado.\n\n",
+ "spanishFontType":3,
+ "chineseTText":"藍色臉孔就是它的象徵,\n是小咚的雙胞胎弟弟\n個性冷靜卻少根筋\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"파란 얼굴이 트레이드마크\n동이의 쌍둥이 남동생\n냉정하지만 어딘가 맹하다\n\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_003_kare",
+ "japaneseText":"インドのマハラジャの宝物である太鼓に\n魂がやどって生まれた\nどんちゃんたちの仲間\n特技のインド風ダンスで今日も\nもり上げるドン!\n\n",
+ "englishUsText":"Born when the Maharaja of\nIndia's prized drum gained a\nsoul. Friend of DON-\nchan and KA-chan.\nLoves to liven things up\nwith his Indian dance moves!\n",
+ "englishUsFontType":3,
+ "frenchText":"Né lorsque le tambour du\nMaharajah d'Inde a obtenu\nune âme. Ami de\nDON-chan et KATSU-chan.\nIl adore mettre l'ambiance\navec sa danse indienne !\n",
+ "frenchFontType":3,
+ "italianText":"Questo prezioso tamburo\ndel Maharaja d'India,\ndivenuto amico di DON-chan e\nKATSU-chan, ama ravvivare\nogni situazione con le sue\nmosse di danza indiane!\n",
+ "italianFontType":3,
+ "germanText":"Geboren, als die geliebte\nTrommel des Maharadschas\nvon Indien eine Seele bekam.\nFreund von DON-chan und KATSU-chan.\nTanzt gerne indische Tänze.\n\n",
+ "germanFontType":3,
+ "spanishText":"Este amigo de DON-chan y de\nKATSU-chan nació cuando el\nmejor tambor del marajá de\nla India obtuvo un alma.\nLe encanta animar las\ncosas con sus bailes indios.\n",
+ "spanishFontType":3,
+ "chineseTText":"是靈魂依附在身為印度摩訶羅闍收藏之寶物\n的太鼓上所誕生,小咚等人的同伴\n今天也以擅長的印度風舞蹈炒熱了氣氛咚!\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"인도 마하라자의 보물인 북에\n혼이 깃들어 태어난\n동이 일행의 친구\n특기인 인도풍 댄스로\n오늘도 분위기 띄운다쿵!\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_004_yomo",
+ "japaneseText":"戦国時代の太鼓に魂がやどって生まれた\nせいぎ感が強く曲がったことがゆるせない\n毎日の太鼓修行を欠かさない\n\n\n\n",
+ "englishUsText":"Born when a drum from\nJapan's Sengoku period\ngained a soul. Possesses a\nstrong sense of justice, and\ntrains hard every day.\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Né lorsqu'un tambour de\nl'ère Sengoku au Japon a\ngagné une âme. Défenseur\nde la justice, il s'entraîne\ndur tous les jours.\n\n",
+ "frenchFontType":3,
+ "italianText":"Tamburo giapponese del\nperiodo Sengoku. Possiede un\nforte senso di giustizia e\nsi allena duramente tutti\ni giorni.\n\n",
+ "italianFontType":3,
+ "germanText":"Geboren, als eine Trommel\naus der Sengoku-Ära\neine Seele bekam.\nStarker Sinn für Gerechtigkeit,\ntrainiert jeden Tag.\n\n",
+ "germanFontType":3,
+ "spanishText":"Nació cuando un tambor del\nperiodo Sengoku japonés\nobtuvo un alma. Tiene un\ngran sentido de la justicia\ny entrena duro a diario.\n\n",
+ "spanishFontType":3,
+ "chineseTText":"是靈魂依附在戰國時代的太鼓上誕生的存在,\n誠實且具有強烈的正義感!\n每天都不疏於太鼓的修行!\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"전국시대의 북에\n혼이 깃들어서 태어났다\n정의감이 강헤서\n옳지 않은 것을 용서하지 못한다\n매일 북 수행을 빼먹지 않는다\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_005_bachio",
+ "japaneseText":"2人で1人というふしぎな生き物\n太鼓の打ちかたを親切に教えてくれる先生\n\n\n\n\n",
+ "englishUsText":"A strange creature that's\nactually two creatures in\none. Together, they kindly\nteach people how to play\nthe drum.\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Une étrange créature en fait\nconstituée de deux créatures\ndistinctes. Ensemble, elles\napprennent gentiment aux\ngens comment jouer\ndu tambour.\n",
+ "frenchFontType":3,
+ "italianText":"Una strana creatura, formata\nin realtà da due creature\ndiverse. Insieme, insegnano\ncon gentilezza a suonare il tamburo\na chi lo desidera.\n\n",
+ "italianFontType":3,
+ "germanText":"Eine seltsame Kreatur,\ndie eigentlich zwei Kreaturen in\neiner ist. Gemeinsam bringen\nsie den Leuten\ndas Trommeln bei.\n\n",
+ "germanFontType":3,
+ "spanishText":"Una extraña criatura que en\nverdad son dos criaturas en\nuna. Enseñan amablemente a\nla gente a tocar el tambor.\n\n\n",
+ "spanishFontType":3,
+ "chineseTText":"為2人就是1人的神祕生物,\n是個親切傳授敲打太鼓方法的師父\n\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"둘이서 하나인 신기한 생물\n북 치는 법을 친절하게\n가르쳐주는 선생님\n\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_006_wadainu",
+ "japaneseText":"れいぎ正しい「しばいぬ」\nほっかむりがチャームポイント\nそうじせんたくなんでもやってくれる\n\n\n\n",
+ "englishUsText":"A polite and courteous shiba\ninu. Its bandanna\nis especially cute.\nDoes all sorts of things for\nits master, including\ncleaning and laundry.\n",
+ "englishUsFontType":3,
+ "frenchText":"Un shiba inu poli et\ncourtois. Son bandana est\ntrop mignon. Fait toutes\nsortes de choses pour\nson maître, comme le ménage\net la lessive.\n",
+ "frenchFontType":3,
+ "italianText":"Un cane shiba educato e\nrispettoso, dalla bandana\nmolto carina. Per il suo\npadrone fa di tutto, compresi\nil bucato e le pulizie.\n\n",
+ "italianFontType":3,
+ "germanText":"Ein höflicher und zuvorkommender Shiba Inu. \nSein Bandana ist besonders süß. \nÜbernimmt für seinen Besitzer alle möglichen \nAufgaben, unter anderem auch Putzen und \nWäschewaschen.\n\n",
+ "germanFontType":3,
+ "spanishText":"Un shiba inu amable y\ncortés. El pañuelo es una\nmonada. Hace de todo por su\ndueño, incluido limpiar y\nlavar la ropa.\n\n",
+ "spanishFontType":3,
+ "chineseTText":"恪守禮節的「柴犬」,\n綁著頭巾是其迷人之處。\n一手包辦掃地、洗衣服等家務\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"예의 바른 「시바견」\n뒤집어쓴 보자기가 매력 포인트\n청소 세탁, 뭐든 해준다\n\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_007_wadajohn",
+ "japaneseText":"和田イヌの弟\n赤いほっかむりをかぶり世界中を\n飛びまわり旅するワイルドドッグ\n\n\n\n",
+ "englishUsText":"Dog Wada's younger brother.\nA wild dog with a red\nbandanna that travels all\nover the world.\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Le petit frère de Chien\nWada. Un chien sauvage avec\nun bandana rouge qui voyage\npartout dans le monde.\n\n\n",
+ "frenchFontType":3,
+ "italianText":"Fratello minore di Wada Cane.\nUn cane scavezzacollo e\namante dei viaggi, dalla\ncaratteristica bandana rossa.\n\n\n",
+ "italianFontType":3,
+ "germanText":"Der jüngere Bruder von Hund Wada. \nEin wilder Rabauke mit rotem Bandana, \nder die ganze Welt bereist.\n\n\n\n",
+ "germanFontType":3,
+ "spanishText":"El hermano pequeño de Perro\nWada. Un perro salvaje con\nun pañuelo rojo que viaja\npor todo el mundo.\n\n\n",
+ "spanishFontType":3,
+ "chineseTText":"和田狗的弟弟。綁著紅色的頭巾,\n是隻跑遍全世界旅行的狂野之犬\n\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"와다 이누의 남동생\n빨간 보자기를 뒤집어쓰고\n전 세계를 여행하는 와일드 독\n\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_008_unagi",
+ "japaneseText":"頭にちょうちんがついている\nナゾの生きもの\n子分の「かめ」とともに全国の\nお祭りをじゅんぎょうしている\n\n\n",
+ "englishUsText":"A mysterious creature with\na lantern on its head.\nTravels around the\ncountry with his hireling\nTurtle while running his\nfestival stall.\n",
+ "englishUsFontType":3,
+ "frenchText":"Une créature mystérieuse\navec une lanterne sur\nla tête. Il voyage à\ntravers le pays avec son\nstand de festival et\nsa fidèle Tortue.\n",
+ "frenchFontType":3,
+ "italianText":"Una misteriosa creatura\ncon una lanterna sulla testa.\nAttraversa il paese portando\ncon sé la bancarella\nda festival e Tartaruga,\nsuo dipendente.\n",
+ "italianFontType":3,
+ "germanText":"Eine seltsame Kreatur mit\neiner Laterne auf dem Kopf.\nReist mit seinem Gehilfen \nSchildkröte durchs Land und\nstellt seinen Festival-Stand auf.\n\n",
+ "germanFontType":3,
+ "spanishText":"Una criatura misteriosa que\nlleva una linterna en la\ncabeza. Viaja por el país\ncon su ayudante Tortuga\nmientras dirige su puesto\nde feria.\n",
+ "spanishFontType":3,
+ "chineseTText":"頭上帶有提燈的神祕生物,與徒弟「烏龜」\n一同巡迴於全國的祭典裡做生意\n\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"머리에 초롱이 달린\n수수께끼의 생물\n부하인 「거북」과 함께\n전국의 축제를 돌아다닌다\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_009_kitsune",
+ "japaneseText":"「きつね」のお面をかぶっている\nクマのぬいぐるみ\nどんなときでもお面ははずさない\nとってもシャイだが音楽が流れると\nはげしいダンスを見せてくれる\n\n",
+ "englishUsText":"A teddy bear wearing a fox\nmask. It is very shy and\nnever takes off its mask for\nanything, but when music\nstarts playing, it dances\nlike nothing else.\n",
+ "englishUsFontType":3,
+ "frenchText":"Un ours en peluche portant\nun masque de renard. Il est\ntrès timide et n'enlève\njamais son masque, mais\nil danse comme jamais quand\nil entend de la musique.\n",
+ "frenchFontType":3,
+ "italianText":"Un orsacchiotto che indossa\nuna maschera da volpe.\nMolto timido, non la\ntoglie mai dal viso,\nma se sente una musica\nnon resiste e comincia a\nballare con passione!",
+ "italianFontType":3,
+ "germanText":"Ein Teddybär mit einer Fuchsmaske, \ndie er wegen seiner Schüchternheit \nnie abnimmt. Wenn er jedoch Musik \nhört, steppt er ganz schön ab.\n\n\n",
+ "germanFontType":3,
+ "spanishText":"Un osito de peluche con una\nmáscara de zorro. Es muy\ntímido y no se quita la\nmáscara para nada, pero en\ncuanto suena la música,\nbaila como si no le\nimportara nada más.",
+ "spanishFontType":3,
+ "chineseTText":"戴著「狐狸」面具的熊型布偶。\n有著無論在何種情況下都不會拿下面具,\n這種相當害羞的個性,不過當音樂響起,\n就會跳起激烈的舞蹈\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"「키츠네」 가면을 쓴 곰 인형\n어떤 때에도 가면을 벗지 않고\n굉장히 수줍음이 많지만 음악이\n나오면 격렬한 춤을 보여준다\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_010_hyottoko",
+ "japaneseText":"「ひょっとこ」のお面をかぶっている\nクマのぬいぐるみ\nダンスが大好きで3人でいっしょに\nいつもおどっている\n\n\n",
+ "englishUsText":"A teddy bear wearing a\nHyottoko mask. Loves to\ndance, and is always dancing\nwith its two masked friends.\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Un ours en peluche portant\nun masque Hyottoko.\nAdore danser et danse\ntoujours avec ses deux\namis masqués.\n\n",
+ "frenchFontType":3,
+ "italianText":"Un orsacchiotto che indossa\nuna maschera da Hyottoko.\nAma ballare e infatti\nnon fa altro insieme ai\nsuoi due amici mascherati.\n\n",
+ "italianFontType":3,
+ "germanText":"Ein Teddybär, der eine Hyottoko-Maske trägt. \nTanzt unglaublich gerne, was er auch ständig \nmit seinen beiden maskierten Freunden tut.\n\n\n\n",
+ "germanFontType":3,
+ "spanishText":"Un osito de peluche que\nlleva una máscara de\nHyottoko. Le encanta bailar\ny siempre lo hace con sus\ndos amigos enmascarados.\n\n",
+ "spanishFontType":3,
+ "chineseTText":"戴著「醜男」面具的熊型布偶。\n很喜歡跳舞,三個人總是在一起跳舞\n\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"「횻토코」 가면을 쓴 곰 인형\n춤을 좋아해서\n셋이 함께 항상 춤을 춘다\n\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_011_okame",
+ "japaneseText":"「おかめ」のお面をかぶっている\nクマのぬいぐるみ\nお面の下がどうなってるか\nまだだれも知らない\n\n\n",
+ "englishUsText":"A teddy bear wearing an\nOkame mask.\nNobody knows what's\nunderneath the mask.\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Un ours en peluche portant\nun masque Okame.\nPersonne ne sait\nqui se cache dessous.\n\n\n",
+ "frenchFontType":3,
+ "italianText":"Un orsacchiotto che indossa\nuna maschera di Okame.\nNessuno sa cosa ci sia\nsotto quella maschera.\n\n\n",
+ "italianFontType":3,
+ "germanText":"Ein Teddybär, der eine \nOkame-Maske trägt.\nNiemand weiß, was sich\nunter der Maske befindet.\n\n\n",
+ "germanFontType":3,
+ "spanishText":"Un osito de peluche que\nlleva una máscara Okame.\nNadie sabe qué hay\nbajo la máscara.\n\n\n",
+ "spanishFontType":3,
+ "chineseTText":"戴著「醜女」面具的熊型布偶。\n面具下的樣貌如何,仍舊沒人知道\n\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"「오카메」 가면을 쓴 곰 인형\n가면 아래가 어떻게 되어있는지\n아직 아무도 모른다\n\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_012_mimizu",
+ "japaneseText":"どんちゃんのかわいいペット\nきれいなお花が大好きな女の子\nおうちは庭のうえきばち\n\n\n\n",
+ "englishUsText":"DON-chan's adorable pet.\nLoves pretty flowers, and\nlives in a potted plant pot.\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Le petit animal de compagnie\nadorable de DON-chan.\nIl adore les fleurs\net vit dans un pot.\n\n\n",
+ "frenchFontType":3,
+ "italianText":"L'adorabile animale da\ncompagnia di DON-chan.\nAma i bei fiori e vive\nsu una pianta in un vaso.\n\n\n",
+ "italianFontType":3,
+ "germanText":"DON-chans süßes Haustier. \nMag hübsche Blumen und lebt \nin einem Pflanzentopf.\n\n\n\n",
+ "germanFontType":3,
+ "spanishText":"La adorable mascota de\nDON-chan. Le encantan las\nflores bonitas y vive en\nuna maceta.\n\n\n",
+ "spanishFontType":3,
+ "chineseTText":"小咚的可愛寵物,由於是女生因此喜歡\n漂亮的花朵,以庭院的花盆為家\n\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"동이의 귀여운 애완동물\n귀여운 꽃을 좋아하는 여자아이\n집은 정원의 화분\n\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_013_kame",
+ "japaneseText":"ちょうちんうなぎの一番弟子\nすなおで努力家\nいつかちょうちんうなぎの親分のように\nりっぱなお店を持ちたいと思っている\n\n\n",
+ "englishUsText":"Number one apprentice to\nLantern Eel. Straightforward\nand a hard worker. Dreams of\nfollowing in Lantern Eel's\nslither-steps and owning his\nown business someday.\n",
+ "englishUsFontType":3,
+ "frenchText":"Élève numéro 1 de l'anguille\nlanterne. Travaille dur et\nespère avoir un jour sa\npropre affaire comme\nl'anguille lanterne.\n\n",
+ "frenchFontType":3,
+ "italianText":"Apprendista numero uno\ndi Anguilla lanterna.\nSchietto e gran lavoratore.\nSogna di seguire le orme\ndi Anguilla lanterna e\npossedere un giorno\nuna propria attività.",
+ "italianFontType":3,
+ "germanText":"Der beste Schüler des Laternen-Aals. \nEhrlich und fleißig. Träumt davon, \neines Tages in die Glitschspuren des \nLaternen-Aals zu treten und sein eigenes \nGeschäft zu besitzen.\n\n",
+ "germanFontType":3,
+ "spanishText":"El mejor aprendiz de Anguila\nlinterna. Es sincero y\ntrabaja duro. Sueña con\nseguir los pasos de Anguila\nlinterna y tener su propio\nnegocio algún día.\n",
+ "spanishFontType":3,
+ "chineseTText":"提燈鰻的頭號弟子\n是個直率且努力不懈的人\n想著總有一天要擁有像提燈鰻師傅那樣\n擁有氣派的店\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"초롱 장어의 수제자\n솔직하고 노력가\n언젠가 초롱 장어처럼 훌륭한\n가게를 가지고 싶다고 생각한다\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_014_neko",
+ "japaneseText":"2人はいつもいっしょでなかよし\n楽しいことも悲しいことも\nいつも2人ではんぶんこ\n\n\n\n",
+ "englishUsText":"These two inseparable\nfriends share everything,\nwhether good or bad, fun or\nsad, in equal measure.\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Ces deux amis inséparables\npartagent tout, les bonnes\nchoses comme les mauvaises,\nen toute égalité.\n\n\n",
+ "frenchFontType":3,
+ "italianText":"Questi due inseparabili\namici condividono tutto,\nbello o brutto, triste\no allegro che sia,\nin egual misura.\n\n",
+ "italianFontType":3,
+ "germanText":"Bei diesen beiden unzertrennlichen \nFreunden wird alles gerecht geteilt, \nob gut oder schlecht, lustig oder traurig.\n\n\n\n",
+ "germanFontType":3,
+ "spanishText":"Estos dos amigos\ninseparables lo comparten\ntodo, ya sea bueno o malo,\ndivertido o triste,\nen la misma medida.\n\n",
+ "spanishFontType":3,
+ "chineseTText":"兩個人感情好到總是形影不離\n不論是開心還是悲傷,\n兩個人總是一起共享\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"둘은 늘 함께 있는 친한 친구\n즐거운 일도 슬픈 일도\n늘 둘이서 반으로 나눈다\n\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_015_namahage",
+ "japaneseText":"見た目はこわいけどとてもいいやつ\n子供を見るとついつい\n「わりぃ~子はいね~が~」と\nおどろかせてしまう\n\n\n",
+ "englishUsText":"Looks scary, but is actually\na really good guy, despite\nhis tendency to scare any\nchildren he sees with his\nspooky voice.\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Il a l'air effrayant mais\nest en réalité très sympa,\nmalgré sa tendance à faire\npeur aux enfants qu'il voit\navec sa voix caverneuse.\n\n",
+ "frenchFontType":3,
+ "italianText":"Il suo aspetto può spaventare,\nma in realtà è un\nuomo buono, anche se\ncon la sua voce tende\na terrorizzare i bambini\nche gli si avvicinano…\n",
+ "italianFontType":3,
+ "germanText":"Sieht furchterregend aus, ist aber \nherzensgut. Schafft es allerdings häufig, \nKindern mit seiner unheimlichen \nStimme Angst zu machen.\n\n\n",
+ "germanFontType":3,
+ "spanishText":"Aunque dé un poco de miedo,\nen verdad es un buen tipo.\nLos niños suelen asustarse\nal oír su voz espeluznante.\n\n\n",
+ "spanishFontType":3,
+ "chineseTText":"雖然外表很可怕,但實際上卻是個大好人。\n看到小朋友總是忍不住用\n「有~沒有~壞孩子啊~」\n的口吻來嚇唬他們\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"외모는 무섭지만 무척 좋은 녀석\n아이를 보면 무심코\n「나쁜 아이는 누구냐~」라고\n겁을 주고 만다.\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_016_mizumariko",
+ "japaneseText":"屋台の水ふうせん\n下がったまゆげがとってもキュート\n元気がなくなるとしぼんじゃうらしい\n\n\n\n",
+ "englishUsText":"A stall water balloon\nwith cute turned-down\neyebrows. Supposedly\nshrivels up when feeling\ndown.\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Une bombe à eau avec\ndes sourcils inversés très\nmignons. Il se ratatine\nquand il est triste.\n\n\n",
+ "frenchFontType":3,
+ "italianText":"Un gavettone d'acqua\ncon delle carinissime\nsopracciglia all'ingiù.\nPare che avvizzisca\nquando è giù di morale.\n\n",
+ "italianFontType":3,
+ "germanText":"Ein Wasserballon mit süßen, nach\nunten zeigenden Augenbrauen.\nSchrumpft angeblich zusammen,\nwenn er niedergeschlagen ist.\n\n\n",
+ "germanFontType":3,
+ "spanishText":"Un globo de agua del puesto con\nunas bonitas cejas.\nAl parecer, cuando se\ndeprime se seca.\n\n\n",
+ "spanishFontType":3,
+ "chineseTText":"廟會日的水氣球\n往下垂的眉毛非常的可愛,\n沒精神時似乎會萎縮\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"축제 노점의 물풍선\n처진 눈썹이 굉장히 귀엽다\n기운이 없으면 쪼그라든다고 한다\n\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_017_suzudon",
+ "japaneseText":"神社でありがたい音をひびかせている\nそーっと歩こうとしてもガランガランと\n大きな音がなってしまうのがなやみ\n\n\n\n",
+ "englishUsText":"Responsible for ringing the\nbell at Japanese shrines.\nAlways worries about making\nloud clanging sounds even\nwhen trying to walk quietly.\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Fait sonner les cloches dans\nles temples japonais.\nA toujours peur de faire\nde gros bruits même en\nmarchant doucement.\n\n",
+ "frenchFontType":3,
+ "italianText":"È lui a suonare le campane\nin tutti i templi giapponesi.\nHa il terrore di produrre\nfastidiosi rumori metallici\nanche quando si sforza\ndi camminare silenziosamente.\n",
+ "italianFontType":3,
+ "germanText":"Verantwortlich für das Läuten der Glocke \nin japanischen Schreinen. \nHat immer Angst, laut zu scheppern, \nwenn er versucht, leise zu gehen.\n\n\n",
+ "germanFontType":3,
+ "spanishText":"Se encarga de tocar la\ncampana en los santuarios\njaponeses. Siempre se\npreocupa por emitir fuertes\nsonidos metálicos, incluso\ncuando intenta caminar en\nsilencio.",
+ "spanishFontType":3,
+ "chineseTText":"負責在神社裡發出謝意的聲響。\n對即使靜悄悄地走動,仍會發出咔啦咔啦\n的大聲響感到困擾\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"신사에서 고마운 소리를 울린다\n살~짝 걸으려고 해도 딸랑딸랑\n큰 소리가 나는 게 고민\n\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_018_takoyaki",
+ "japaneseText":"大阪出身の10人兄弟\nしゃべりだしたら止まらない\nタコが入ってないときはとってもふきげん\n\n\n\n",
+ "englishUsText":"Ten brothers all from Osaka.\nOnce they start chatting,\nthere's no stopping them.\nThey get very grumpy if\nthey don't have any\noctopus inside them.\n",
+ "englishUsFontType":3,
+ "frenchText":"Dix frères provenant tous\nd'Osaka. Quand ils se\nmettent à bavarder, rien ne\npeut les arrêter. Ils sont\ngrognons quand ils ne\nmangent pas de poulpe.\n",
+ "frenchFontType":3,
+ "italianText":"Dieci fratelli provenienti\nda Osaka. Quando cominciano\na chiacchierare, non c'è\nmodo di fermarli. Se non\npossono mangiare polipo\ndiventano di pessimo umore.\n",
+ "italianFontType":3,
+ "germanText":"Zehn Brüder, die alle aus Osaka stammen. \nWenn sie einmal anfangen zu plaudern, \nkann sie nichts stoppen. \nSie werden ziemlich grantig, wenn \nsie keinen Tintenfisch hatten.\n\n",
+ "germanFontType":3,
+ "spanishText":"Diez hermanos de Osaka. En\ncuanto empiezan a hablar, no\nhay quien los pare. Se ponen\nmuy gruñones si no tienen\nningún pulpo dentro.\n\n",
+ "spanishFontType":3,
+ "chineseTText":"出身於大阪的十兄弟\n一旦講起話來就停不下來\n在沒放入章魚時會感到非常不悅\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"오사카 출신인 10형제\n말하기 시작하면 멈추지 않는다\n문어가 들어있지 않을 때는\n굉장히 기분이 안 좋다\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_019_tatsudon",
+ "japaneseText":"何者なのかどこから来たのか\nすべてがナゾの生命体\nいつも何かと戦っている\n\n\n\n",
+ "englishUsText":"Everything about this being,\nincluding what they are or\nwhere they come from, is a\nmystery. All we know for\nsure is that they're always\nin battle with something.\n",
+ "englishUsFontType":3,
+ "frenchText":"Tout ce qui concerne ces\ncréatures, y compris d'où\nelles viennent et ce\nqu'elles sont, est un\nmystère. Mais elles sont\ntoujours en train de se\nbattre contre quelque chose.",
+ "frenchFontType":3,
+ "italianText":"Cos'è? Da dove viene?\nTutto ciò che riguarda\nquesto essere è un mistero.\nDi certo sappiamo soltanto\nche è sempre in lotta\ncontro qualcosa.\n",
+ "italianFontType":3,
+ "germanText":"Was dieses Wesen ist oder woher \nes kommt, ist ein Mysterium. \nWir wissen nur, dass es sich immer \nmit irgendetwas im Kampf befindet.\n\n\n",
+ "germanFontType":3,
+ "spanishText":"Todo lo que rodea a este\nser, incluido qué es o de\ndónde procede, es un\nmisterio. Solo sabemos con\ncerteza que siempre está\nluchando por algo.\n",
+ "spanishFontType":3,
+ "chineseTText":"不知是誰,不知從何而來,\n一切皆佈滿謎團的生命體,\n總是與某種存在交戰著\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"누구인지 어디에서 왔는지\n모든 것이 수수께끼인 생명체\n항상 무언가와 싸우고 있다\n\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_020_donko",
+ "japaneseText":"こいの話とあまいものとどんちゃんが\nとっても大好きな女の子\nおこらせるとこわいらしい\n\n\n\n",
+ "englishUsText":"Loves DON-chan, sweets, and\ntalking about relationships.\nSupposedly very scary when\nshe gets upset.\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Adore DON-chan, les bonbons\net parler de relations.\nDevient très effrayante\nlorsqu'elle se met\nen colère.\n\n",
+ "frenchFontType":3,
+ "italianText":"Ama Don-chan, i dolci\ne parlare di rapporti personali.\nPare che quando si arrabbi\ndiventi terribile.\n\n\n",
+ "italianFontType":3,
+ "germanText":"Mag DON-chan, Süßigkeiten und \ndas Plaudern über Beziehungen. \nWird angeblich recht furchterregend, \nwenn sie sich ärgert.\n\n\n",
+ "germanFontType":3,
+ "spanishText":"Le encanta DON-chan, los\ndulces y hablar sobre\nrelaciones. Al parecer, da\nmucho miedo cuando\nse enfada.\n\n",
+ "spanishFontType":3,
+ "chineseTText":"最喜歡戀愛話題、甜食、小咚的女孩子。\n生氣起來似乎很恐怖\n\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"연애 이야기와 단 음식과 동이를\n굉장히 좋아하는 여자아이\n화나면 무섭다고 한다\n\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_021_Kirby",
+ "japaneseText":"「星のカービィ」よりゲスト参加!\nお祭りを盛り上げるため\nプププランドからやってきた!\n\n\n\n",
+ "englishUsText":"Originally from the games of\nhis own name, Kirby came\nhere from Dream Land to\nliven up the festival!\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Venant de la série de jeux\nà son nom, Kirby débarque\ntout droit de Dream Land\npour offrir sa bonne humeur.\n\n\n",
+ "frenchFontType":3,
+ "italianText":"Il protagonista dei giochi\nispirati a Kirby, venuto\ndirettamente dalla\nTerra dei Sogni\nper ravvivare il festival!\n\n",
+ "italianFontType":3,
+ "germanText":"Ursprünglich aus den gleichnamigen \nKirby-Spielen. Kirby kommt aus dem \nTraumland, um das Festival zu beleben!\n\n\n\n",
+ "germanFontType":3,
+ "spanishText":"¡Kirby, procedente de los\njuegos que llevan su nombre\nha venido desde Dream Land\npara animar el festival!\n\n\n",
+ "spanishFontType":3,
+ "chineseTText":"自「星之卡比」前來客串演出!\n為了炒熱祭典的氣氛而從噗噗噗之國前來!\n\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"「별의 커비」에서 게스트 참가!\n축제 분위기를 띄우기 위해\n푸푸푸 랜드에서 왔다!\n\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_022_dummy",
+ "japaneseText":"コラボ用ダミースペース2\n\n\n\n\n\n",
+ "englishUsText":"DUMMY 022 Description\n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_023_dummy",
+ "japaneseText":"コラボ用ダミースペース3\n\n\n\n\n\n",
+ "englishUsText":"DUMMY 023 Description\n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_024_dummy",
+ "japaneseText":"コラボ用ダミースペース4\n\n\n\n\n\n",
+ "englishUsText":"DUMMY 024 Description\n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_025_dummy",
+ "japaneseText":"コラボ用ダミースペース5\n\n\n\n\n\n",
+ "englishUsText":"DUMMY 025 Description\n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_026_dummy",
+ "japaneseText":"ダミー026説明\n\n\n\n\n\n",
+ "englishUsText":"DUMMY 026 Description\n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_027_dummy",
+ "japaneseText":"ダミー027説明\n\n\n\n\n\n",
+ "englishUsText":"DUMMY 027 Description\n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_028_dummy",
+ "japaneseText":"ダミー028説明\n\n\n\n\n\n",
+ "englishUsText":"DUMMY 028 Description\n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_029_dummy",
+ "japaneseText":"ダミー029説明\n\n\n\n\n\n",
+ "englishUsText":"DUMMY 029 Description\n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_030_dummy",
+ "japaneseText":"ダミー030説明\n\n\n\n\n\n",
+ "englishUsText":"DUMMY 030 Description\n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_031_dummy",
+ "japaneseText":"ダミー031説明\n\n\n\n\n\n",
+ "englishUsText":"DUMMY 031 Description\n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_032_dummy",
+ "japaneseText":"ダミー032説明\n\n\n\n\n\n",
+ "englishUsText":"DUMMY 032 Description\n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_033_dummy",
+ "japaneseText":"ダミー033説明\n\n\n\n\n\n",
+ "englishUsText":"DUMMY 033 Description\n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_034_dummy",
+ "japaneseText":"ダミー034説明\n\n\n\n\n\n",
+ "englishUsText":"DUMMY 034 Description\n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_035_dummy",
+ "japaneseText":"ダミー035説明\n\n\n\n\n\n",
+ "englishUsText":"DUMMY 035 Description\n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_036_dummy",
+ "japaneseText":"ダミー036説明\n\n\n\n\n\n",
+ "englishUsText":"DUMMY 036 Description\n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_037_dummy",
+ "japaneseText":"ダミー037説明\n\n\n\n\n\n",
+ "englishUsText":"DUMMY 037 Description\n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_038_dummy",
+ "japaneseText":"ダミー038説明\n\n\n\n\n\n",
+ "englishUsText":"DUMMY 038 Description\n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_039_dummy",
+ "japaneseText":"ダミー039説明\n\n\n\n\n\n",
+ "englishUsText":"DUMMY 039 Description\n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_040_dummy",
+ "japaneseText":"ダミー040説明\n\n\n\n\n\n",
+ "englishUsText":"DUMMY 040 Description\n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_022_golddon",
+ "japaneseText":"金色にかがやくどんちゃん\nメッキというウワサもあるが24Kらしい\n\n\n\n\n",
+ "englishUsText":"DON-chan gleaming a\nglittering golden color.\nSome say it’s only plating,\nbut it’s apparently solid 24k.\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"DON-chan recouvert d'une\nfine pellicule dorée et\nbrillante. Certains disent\nque c'est du toc, mais on\ndirait vraiment de l'or\n24 carats.\n",
+ "frenchFontType":3,
+ "italianText":"DON-chan in una variante dorata.\nC'è chi dice che sia soltanto placcato,\nma a quanto pare è oro massiccio a 24 carati.\n\n\n\n",
+ "italianFontType":3,
+ "germanText":"DON-chan in strahlendem Gold.\nManche behaupten, es wäre nur ein\nÜberzug, in Wirklichkeit besteht er\njedoch aus 24-Karat-Massivgold.\n\n\n",
+ "germanFontType":3,
+ "spanishText":"Un DON-chan que brilla en dorado.\nHay quien dice que solo es un baño de oro,\npero al parecer es oro sólido de 24 quilates.\n\n\n\n",
+ "spanishFontType":3,
+ "chineseTText":"金光閃閃的小咚\n也有它是鍍金的傳聞,不過似乎是24K金製的\n\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"금색으로 빛나는 동이.\n도금이라는 소문도 있지만\n24K라고 한다\n\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_023_spla2ika",
+ "japaneseText":"「スプラトゥーン2」よりゲスト参加!\nイカしたプレイでフルコンボを目指せ!\n\n\n\n\n",
+ "englishUsText":"Straight from Splatoon 2!\nGo for an inkredible\nfull combo!\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Provient tout droit de\nSplatoon 2 !\nDonne tout et fais des\ncombos encr-oyables !\n\n\n",
+ "frenchFontType":3,
+ "italianText":"Direttamente da Splatoon 2!\nCompleta le canzoni\ncon la combo unica\npiù schizzata di sempre!\n\n\n",
+ "italianFontType":3,
+ "germanText":"Direkt aus Splatoon 2!\nSorgt klar wie dicke Tinte für eine\nvollständige Kombo!\n\n\n\n",
+ "germanFontType":3,
+ "spanishText":"¡De Splatoon 2!\n¡Consigue un combo completo\ntentacular!\n\n\n\n",
+ "spanishFontType":3,
+ "chineseTText":"「Splatoon 2」的角色客串演出! \n化身為Squid以全連段為目標邁進!\n\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"「Splatoon 2」에서 게스트 참가!\n징한 플레이로 풀 콤보를 노려라!\n\n\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_024_shinkalion",
+ "japaneseText":"テレビアニメ\n「新幹線変形ロボ シンカリオン」より\nゲスト参加!\nこの車両は「太鼓の達人」行きです\nシンカリオン E5はやぶさ出発進行!\n\n",
+ "englishUsText":"テレビアニメ\n「新幹線変形ロボ シンカリオン」より\nゲスト参加!\nこの車両は「太鼓の達人」行きです\nシンカリオン E5はやぶさ出発進行!\n\n",
+ "englishUsFontType":0,
+ "frenchText":"テレビアニメ\n「新幹線変形ロボ シンカリオン」より\nゲスト参加!\nこの車両は「太鼓の達人」行きです\nシンカリオン E5はやぶさ出発進行!\n\n",
+ "frenchFontType":0,
+ "italianText":"テレビアニメ\n「新幹線変形ロボ シンカリオン」より\nゲスト参加!\nこの車両は「太鼓の達人」行きです\nシンカリオン E5はやぶさ出発進行!\n\n",
+ "italianFontType":0,
+ "germanText":"テレビアニメ\n「新幹線変形ロボ シンカリオン」より\nゲスト参加!\nこの車両は「太鼓の達人」行きです\nシンカリオン E5はやぶさ出発進行!\n\n",
+ "germanFontType":0,
+ "spanishText":"テレビアニメ\n「新幹線変形ロボ シンカリオン」より\nゲスト参加!\nこの車両は「太鼓の達人」行きです\nシンカリオン E5はやぶさ出発進行!\n\n",
+ "spanishFontType":0,
+ "chineseTText":"テレビアニメ\n「新幹線変形ロボ シンカリオン」より\nゲスト参加!\nこの車両は「太鼓の達人」行きです\nシンカリオン E5はやぶさ出発進行!\n\n",
+ "chineseTFontType":0,
+ "koreanText":"テレビアニメ\n「新幹線変形ロボ シンカリオン」より\nゲスト参加!\nこの車両は「太鼓の達人」行きです\nシンカリオン E5はやぶさ出発進行!\n\n",
+ "koreanFontType":0
+ },
+ {
+ "key":"chara_detail_025_miku",
+ "japaneseText":"世界の歌姫「初音ミク」がゲスト参加!\n魅惑の歌声でお祭り会場も大盛り上がり!\n\n\n\n\n",
+ "englishUsText":"The world-renowned HATSUNE MIKU\nmakes a guest appearance!\nWatch her dazzle the festival hall\nwith her enchanting singing voice!\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"La mondialement connue HATSUNE MIKU\nsera là en tant qu’invitée !\nRegarde-la éblouir toute l’assistance\nde sa voix enchanteresse !\n\n\n",
+ "frenchFontType":3,
+ "italianText":"La nota HATSUNE MIKU farà la sua\ncomparsa come ospite!\nGuardala ammaliare l'intero festival\ncon la sua incantevole voce!\n\n\n",
+ "italianFontType":3,
+ "germanText":"Die weltberühmte HATSUNE MIKU\nhat einen Gastauftritt!\nErlebe, wie sie die Festhalle mit\nihrer bezaubernden Stimme verzückt!\n\n\n",
+ "germanFontType":3,
+ "spanishText":"¡La famosa HATSUNE MIKU\nhace su aparición estelar!\n¡Mira cómo deslumbra en el escenario\ncon su encantadora voz!\n\n\n",
+ "spanishFontType":3,
+ "chineseTText":"世界級歌姬「初音未來」前來客串演出!\n其魅惑的歌聲也讓祭典會場嗨翻天!\n\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"세계의 가희 「하츠네 미쿠」가\n게스트 참가! 매혹적인 노랫소리에\n축제 분위기도 매우 고조될 거야!\n\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_001_don",
+ "japaneseText":"どんちゃん",
+ "englishUsText":"DON-chan",
+ "englishUsFontType":3,
+ "frenchText":"DON-chan",
+ "frenchFontType":3,
+ "italianText":"DON-chan",
+ "italianFontType":3,
+ "germanText":"DON-chan",
+ "germanFontType":3,
+ "spanishText":"DON-chan",
+ "spanishFontType":3,
+ "chineseTText":"小咚",
+ "chineseTFontType":1,
+ "koreanText":"동이",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_002_katsu",
+ "japaneseText":"かっちゃん",
+ "englishUsText":"KATSU-chan",
+ "englishUsFontType":3,
+ "frenchText":"KATSU-chan",
+ "frenchFontType":3,
+ "italianText":"KATSU-chan",
+ "italianFontType":3,
+ "germanText":"KATSU-chan",
+ "germanFontType":3,
+ "spanishText":"KATSU-chan",
+ "spanishFontType":3,
+ "chineseTText":"小咔",
+ "chineseTFontType":1,
+ "koreanText":"딱이",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_003_kare",
+ "japaneseText":"カレクッタ=ドンディー",
+ "englishUsText":"Currycutta-DONdy",
+ "englishUsFontType":3,
+ "frenchText":"Currycutta-DONdy",
+ "frenchFontType":3,
+ "italianText":"Currycutta-DONdy",
+ "italianFontType":3,
+ "germanText":"Currycutta-DONdy",
+ "germanFontType":3,
+ "spanishText":"Currycutta-DONdy",
+ "spanishFontType":3,
+ "chineseTText":"咖哩‧咚迪",
+ "chineseTFontType":1,
+ "koreanText":"콜카레=동디",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_004_yomo",
+ "japaneseText":"よもぎまる",
+ "englishUsText":"Yomogimaru",
+ "englishUsFontType":3,
+ "frenchText":"Yomogimaru",
+ "frenchFontType":3,
+ "italianText":"Yomogimaru",
+ "italianFontType":3,
+ "germanText":"Yomogimaru",
+ "germanFontType":3,
+ "spanishText":"Yomogimaru",
+ "spanishFontType":3,
+ "chineseTText":"艾草丸",
+ "chineseTFontType":1,
+ "koreanText":"요모기마루",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_005_bachio",
+ "japaneseText":"バチお先生",
+ "englishUsText":"Master Bachio",
+ "englishUsFontType":3,
+ "frenchText":"Maître Bachio",
+ "frenchFontType":3,
+ "italianText":"Maestro Bachio",
+ "italianFontType":3,
+ "germanText":"Meister Bachio",
+ "germanFontType":3,
+ "spanishText":"Maestro Bachio",
+ "spanishFontType":3,
+ "chineseTText":"鼓棒師父",
+ "chineseTFontType":1,
+ "koreanText":"북채 선생",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_006_wadainu",
+ "japaneseText":"和田イヌ",
+ "englishUsText":"Dog Wada",
+ "englishUsFontType":3,
+ "frenchText":"Chien Wada",
+ "frenchFontType":3,
+ "italianText":"Wada Cane",
+ "italianFontType":3,
+ "germanText":"Hund Wada",
+ "germanFontType":3,
+ "spanishText":"Perro Wada",
+ "spanishFontType":3,
+ "chineseTText":"和田狗",
+ "chineseTFontType":1,
+ "koreanText":"와다 이누",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_007_wadajohn",
+ "japaneseText":"和田ジョン",
+ "englishUsText":"John Wada",
+ "englishUsFontType":3,
+ "frenchText":"John Wada",
+ "frenchFontType":3,
+ "italianText":"John Wada",
+ "italianFontType":3,
+ "germanText":"John Wada",
+ "germanFontType":3,
+ "spanishText":"John Wada",
+ "spanishFontType":3,
+ "chineseTText":"和田約翰",
+ "chineseTFontType":1,
+ "koreanText":"와다 존",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_008_unagi",
+ "japaneseText":"ちょうちんうなぎ",
+ "englishUsText":"Lantern Eel",
+ "englishUsFontType":3,
+ "frenchText":"Anguille lanterne",
+ "frenchFontType":3,
+ "italianText":"Anguilla lanterna",
+ "italianFontType":3,
+ "germanText":"Laternen-Aal",
+ "germanFontType":3,
+ "spanishText":"Anguila linterna",
+ "spanishFontType":3,
+ "chineseTText":"提燈鰻",
+ "chineseTFontType":1,
+ "koreanText":"초롱 장어",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_009_kitsune",
+ "japaneseText":"お面小僧(きつね)",
+ "englishUsText":"Masked Kid (fox)",
+ "englishUsFontType":3,
+ "frenchText":"Ourson masqué (renard)",
+ "frenchFontType":3,
+ "italianText":"Maschera da volpe",
+ "italianFontType":3,
+ "germanText":"Masken-Kind (Fuchs)",
+ "germanFontType":3,
+ "spanishText":"Enmascarado (zorro)",
+ "spanishFontType":3,
+ "chineseTText":"面具小僧(狐狸)",
+ "chineseTFontType":1,
+ "koreanText":"가면 도령(키츠네)",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_010_hyottoko",
+ "japaneseText":"お面小僧(ひょっとこ)",
+ "englishUsText":"Masked Kid Hyottoko",
+ "englishUsFontType":3,
+ "frenchText":"Ourson masqué (Hyottoko)",
+ "frenchFontType":3,
+ "italianText":"Maschera da Hyottoko",
+ "italianFontType":3,
+ "germanText":"Masken-Kind (Hyottoko)",
+ "germanFontType":3,
+ "spanishText":"Enmascarado (Hyottoko)",
+ "spanishFontType":3,
+ "chineseTText":"面具小僧(醜男)",
+ "chineseTFontType":1,
+ "koreanText":"가면 도령(횻토코)",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_011_okame",
+ "japaneseText":"お面小僧(おかめ)",
+ "englishUsText":"Masked Kid (Okame)",
+ "englishUsFontType":3,
+ "frenchText":"Ourson masqué (Okame)",
+ "frenchFontType":3,
+ "italianText":"Maschera di Okame",
+ "italianFontType":3,
+ "germanText":"Masken-Kind (Okame)",
+ "germanFontType":3,
+ "spanishText":"Enmascarado (Okame)",
+ "spanishFontType":3,
+ "chineseTText":"面具小僧(醜女)",
+ "chineseTFontType":1,
+ "koreanText":"가면 도령(오카메)",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_012_mimizu",
+ "japaneseText":"和田ミミズ",
+ "englishUsText":"Worm Wada",
+ "englishUsFontType":3,
+ "frenchText":"Ver Wada",
+ "frenchFontType":3,
+ "italianText":"Wada Verme",
+ "italianFontType":3,
+ "germanText":"Wurm Wada",
+ "germanFontType":3,
+ "spanishText":"Gusano Wada",
+ "spanishFontType":3,
+ "chineseTText":"和田蚯蚓",
+ "chineseTFontType":1,
+ "koreanText":"와다 미미즈",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_013_kame",
+ "japaneseText":"かめ",
+ "englishUsText":"Turtle",
+ "englishUsFontType":3,
+ "frenchText":"Tortue",
+ "frenchFontType":3,
+ "italianText":"Tartaruga",
+ "italianFontType":3,
+ "germanText":"Schildkröte",
+ "germanFontType":3,
+ "spanishText":"Tortuga",
+ "spanishFontType":3,
+ "chineseTText":"烏龜",
+ "chineseTFontType":1,
+ "koreanText":"거북",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_014_neko",
+ "japaneseText":"ネコと杓子",
+ "englishUsText":"Cat and Shaxy",
+ "englishUsFontType":3,
+ "frenchText":"Chat et Shaxy",
+ "frenchFontType":3,
+ "italianText":"Neko e Shaxy",
+ "italianFontType":3,
+ "germanText":"Katze und Shaxy",
+ "germanFontType":3,
+ "spanishText":"Gato y Shaxy",
+ "spanishFontType":3,
+ "chineseTText":"貓與飯匙",
+ "chineseTFontType":1,
+ "koreanText":"고양이와 주걱",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_015_namahage",
+ "japaneseText":"なまはげ",
+ "englishUsText":"Namahage",
+ "englishUsFontType":3,
+ "frenchText":"Namahage",
+ "frenchFontType":3,
+ "italianText":"Namahage",
+ "italianFontType":3,
+ "germanText":"Namahage",
+ "germanFontType":3,
+ "spanishText":"Namahage",
+ "spanishFontType":3,
+ "chineseTText":"生剝鬼",
+ "chineseTFontType":1,
+ "koreanText":"나마하게",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_016_mizumariko",
+ "japaneseText":"水マリ子",
+ "englishUsText":"Water Mariko",
+ "englishUsFontType":3,
+ "frenchText":"Mariko d'eau",
+ "frenchFontType":3,
+ "italianText":"Mariko Acqua",
+ "italianFontType":3,
+ "germanText":"Wasser-Mariko",
+ "germanFontType":3,
+ "spanishText":"Mariko de agua",
+ "spanishFontType":3,
+ "chineseTText":"水真理子",
+ "chineseTFontType":1,
+ "koreanText":"미즈마리코",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_017_suzudon",
+ "japaneseText":"すずどん",
+ "englishUsText":"Bell DON",
+ "englishUsFontType":3,
+ "frenchText":"DON cloche",
+ "frenchFontType":3,
+ "italianText":"DON-Campana",
+ "italianFontType":3,
+ "germanText":"Glocken-DON",
+ "germanFontType":3,
+ "spanishText":"DON campana",
+ "spanishFontType":3,
+ "chineseTText":"鈴咚",
+ "chineseTFontType":1,
+ "koreanText":"방울동",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_018_takoyaki",
+ "japaneseText":"たこやき",
+ "englishUsText":"Takoyaki",
+ "englishUsFontType":3,
+ "frenchText":"Takoyaki",
+ "frenchFontType":3,
+ "italianText":"Takoyaki",
+ "italianFontType":3,
+ "germanText":"Takoyaki",
+ "germanFontType":3,
+ "spanishText":"Takoyaki",
+ "spanishFontType":3,
+ "chineseTText":"章魚燒",
+ "chineseTFontType":1,
+ "koreanText":"타코야키",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_019_tatsudon",
+ "japaneseText":"立つドン",
+ "englishUsText":"Standing DON",
+ "englishUsFontType":3,
+ "frenchText":"DON debout",
+ "frenchFontType":3,
+ "italianText":"DON in piedi",
+ "italianFontType":3,
+ "germanText":"Stehender DON",
+ "germanFontType":3,
+ "spanishText":"DON de pie",
+ "spanishFontType":3,
+ "chineseTText":"站立咚",
+ "chineseTFontType":1,
+ "koreanText":"타츠동",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_020_donko",
+ "japaneseText":"どん子",
+ "englishUsText":"DONko",
+ "englishUsFontType":3,
+ "frenchText":"DONko",
+ "frenchFontType":3,
+ "italianText":"DONko",
+ "italianFontType":3,
+ "germanText":"DONko",
+ "germanFontType":3,
+ "spanishText":"DONko",
+ "spanishFontType":3,
+ "chineseTText":"咚子",
+ "chineseTFontType":1,
+ "koreanText":"동코",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_021_Kirby",
+ "japaneseText":"カービィ",
+ "englishUsText":"Kirby",
+ "englishUsFontType":3,
+ "frenchText":"Kirby",
+ "frenchFontType":3,
+ "italianText":"Kirby",
+ "italianFontType":3,
+ "germanText":"Kirby",
+ "germanFontType":3,
+ "spanishText":"Kirby",
+ "spanishFontType":3,
+ "chineseTText":"卡比",
+ "chineseTFontType":1,
+ "koreanText":"커비",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_022_dummy",
+ "japaneseText":"ダミー022",
+ "englishUsText":"Dummy 022",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_023_dummy",
+ "japaneseText":"ダミー023",
+ "englishUsText":"Dummy 023",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_024_dummy",
+ "japaneseText":"ダミー024",
+ "englishUsText":"Dummy 024",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_025_dummy",
+ "japaneseText":"ダミー025",
+ "englishUsText":"Dummy 025",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_026_dummy",
+ "japaneseText":"ダミー026",
+ "englishUsText":"Dummy 026",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_027_dummy",
+ "japaneseText":"ダミー027",
+ "englishUsText":"Dummy 027",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_028_dummy",
+ "japaneseText":"ダミー028",
+ "englishUsText":"Dummy 028",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_029_dummy",
+ "japaneseText":"ダミー029",
+ "englishUsText":"Dummy 029",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_030_dummy",
+ "japaneseText":"ダミー030",
+ "englishUsText":"Dummy 030",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_031_dummy",
+ "japaneseText":"ダミー031",
+ "englishUsText":"Dummy 031",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_032_dummy",
+ "japaneseText":"ダミー032",
+ "englishUsText":"Dummy 032",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_033_dummy",
+ "japaneseText":"ダミー033",
+ "englishUsText":"Dummy 033",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_034_dummy",
+ "japaneseText":"ダミー034",
+ "englishUsText":"Dummy 034",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_035_dummy",
+ "japaneseText":"ダミー035",
+ "englishUsText":"Dummy 035",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_036_dummy",
+ "japaneseText":"ダミー036",
+ "englishUsText":"Dummy 036",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_037_dummy",
+ "japaneseText":"ダミー037",
+ "englishUsText":"Dummy 037",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_038_dummy",
+ "japaneseText":"ダミー038",
+ "englishUsText":"Dummy 038",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_039_dummy",
+ "japaneseText":"ダミー039",
+ "englishUsText":"Dummy 039",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_040_dummy",
+ "japaneseText":"ダミー040",
+ "englishUsText":"Dummy 040",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_022_golddon",
+ "japaneseText":"ゴールドどんちゃん",
+ "englishUsText":"Gold DON-chan",
+ "englishUsFontType":3,
+ "frenchText":"DON-chan doré",
+ "frenchFontType":3,
+ "italianText":"DON-chan dorato",
+ "italianFontType":3,
+ "germanText":"Goldener DON-chan",
+ "germanFontType":3,
+ "spanishText":"DON-chan dorado",
+ "spanishFontType":3,
+ "chineseTText":"黃金小咚",
+ "chineseTFontType":1,
+ "koreanText":"골드 동이",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_023_spla2ika",
+ "japaneseText":"イカ",
+ "englishUsText":"Squid",
+ "englishUsFontType":3,
+ "frenchText":"Calamar",
+ "frenchFontType":3,
+ "italianText":"Calamaro",
+ "italianFontType":3,
+ "germanText":"Tintenfisch",
+ "germanFontType":3,
+ "spanishText":"Calamar",
+ "spanishFontType":3,
+ "chineseTText":"Squid",
+ "chineseTFontType":1,
+ "koreanText":"Squid",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_024_shinkalion",
+ "japaneseText":"シンカリオン E5はやぶさ",
+ "englishUsText":"E5HAYABUSA",
+ "englishUsFontType":3,
+ "frenchText":"E5HAYABUSA",
+ "frenchFontType":3,
+ "italianText":"E5HAYABUSA",
+ "italianFontType":3,
+ "germanText":"E5HAYABUSA",
+ "germanFontType":3,
+ "spanishText":"E5HAYABUSA",
+ "spanishFontType":3,
+ "chineseTText":"E5HAYABUSA",
+ "chineseTFontType":1,
+ "koreanText":"E5HAYABUSA",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_025_miku",
+ "japaneseText":"初音ミク",
+ "englishUsText":"HATSUNE MIKU",
+ "englishUsFontType":3,
+ "frenchText":"HATSUNE MIKU",
+ "frenchFontType":3,
+ "italianText":"HATSUNE MIKU",
+ "italianFontType":3,
+ "germanText":"HATSUNE MIKU",
+ "germanFontType":3,
+ "spanishText":"HATSUNE MIKU",
+ "spanishFontType":3,
+ "chineseTText":"初音未來",
+ "chineseTFontType":1,
+ "koreanText":"하츠네 미쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"bunki_down",
+ "japaneseText":"レベルダウン",
+ "englishUsText":"▼Level Down",
+ "englishUsFontType":3,
+ "frenchText":"▼Niveau inf.",
+ "frenchFontType":3,
+ "italianText":"▼Livello perso",
+ "italianFontType":3,
+ "germanText":"▼Level verloren",
+ "germanFontType":3,
+ "spanishText":"▼Pérdida de nivel",
+ "spanishFontType":3,
+ "chineseTText":"降級",
+ "chineseTFontType":1,
+ "koreanText":"레벨 다운",
+ "koreanFontType":2
+ },
+ {
+ "key":"bunki_expert",
+ "japaneseText":"達人譜面",
+ "englishUsText":"Master",
+ "englishUsFontType":3,
+ "frenchText":"Maître",
+ "frenchFontType":3,
+ "italianText":"Maestro",
+ "italianFontType":3,
+ "germanText":"Meister",
+ "germanFontType":3,
+ "spanishText":"Maestro",
+ "spanishFontType":3,
+ "chineseTText":"達人譜面",
+ "chineseTFontType":1,
+ "koreanText":"달인 악보",
+ "koreanFontType":2
+ },
+ {
+ "key":"bunki_normal",
+ "japaneseText":"普通譜面",
+ "englishUsText":"Normal",
+ "englishUsFontType":3,
+ "frenchText":"Normal",
+ "frenchFontType":3,
+ "italianText":"Normale",
+ "italianFontType":3,
+ "germanText":"Normal",
+ "germanFontType":3,
+ "spanishText":"Normal",
+ "spanishFontType":3,
+ "chineseTText":"一般譜面",
+ "chineseTFontType":1,
+ "koreanText":"보통 악보",
+ "koreanFontType":2
+ },
+ {
+ "key":"bunki_pro",
+ "japaneseText":"玄人譜面",
+ "englishUsText":"Professional",
+ "englishUsFontType":3,
+ "frenchText":"Professionnel",
+ "frenchFontType":3,
+ "italianText":"Professionista",
+ "italianFontType":3,
+ "germanText":"Profi",
+ "germanFontType":3,
+ "spanishText":"Profesional",
+ "spanishFontType":3,
+ "chineseTText":"進階譜面",
+ "chineseTFontType":1,
+ "koreanText":"현인 악보",
+ "koreanFontType":2
+ },
+ {
+ "key":"bunki_up",
+ "japaneseText":"レベルアップ",
+ "englishUsText":"▲Level Up",
+ "englishUsFontType":3,
+ "frenchText":"▲Niveau sup.",
+ "frenchFontType":3,
+ "italianText":"▲Livello ottenuto",
+ "italianFontType":3,
+ "germanText":"▲Neue Stufe",
+ "germanFontType":3,
+ "spanishText":"▲Subida de nivel",
+ "spanishFontType":3,
+ "chineseTText":"升級",
+ "chineseTFontType":1,
+ "koreanText":"레벨 업",
+ "koreanFontType":2
+ },
+ {
+ "key":"clear",
+ "japaneseText":"クリア",
+ "englishUsText":"Clear",
+ "englishUsFontType":3,
+ "frenchText":"Terminé",
+ "frenchFontType":3,
+ "italianText":"Completata",
+ "italianFontType":3,
+ "germanText":"Abschluss",
+ "germanFontType":3,
+ "spanishText":"Superada",
+ "spanishFontType":3,
+ "chineseTText":"通關",
+ "chineseTFontType":1,
+ "koreanText":"클리어",
+ "koreanFontType":2
+ },
+ {
+ "key":"combo",
+ "japaneseText":"コンボ",
+ "englishUsText":"Combo",
+ "englishUsFontType":3,
+ "frenchText":"Combo",
+ "frenchFontType":3,
+ "italianText":"Combo",
+ "italianFontType":3,
+ "germanText":"Kombo",
+ "germanFontType":3,
+ "spanishText":"Combo",
+ "spanishFontType":3,
+ "chineseTText":"連段",
+ "chineseTFontType":1,
+ "koreanText":"콤보",
+ "koreanFontType":2
+ },
+ {
+ "key":"combo_fukidasi",
+ "japaneseText":"コンボ!",
+ "englishUsText":"Combo!",
+ "englishUsFontType":3,
+ "frenchText":"Combo !",
+ "frenchFontType":3,
+ "italianText":"Combo!",
+ "italianFontType":3,
+ "germanText":"Kombo!",
+ "germanFontType":3,
+ "spanishText":"¡Combo!",
+ "spanishFontType":3,
+ "chineseTText":"連段!",
+ "chineseTFontType":1,
+ "koreanText":"콤보!",
+ "koreanFontType":2
+ },
+ {
+ "key":"course_easy",
+ "japaneseText":"かんたん",
+ "englishUsText":"Easy",
+ "englishUsFontType":3,
+ "frenchText":"Facile",
+ "frenchFontType":3,
+ "italianText":"Facile",
+ "italianFontType":3,
+ "germanText":"Leicht",
+ "germanFontType":3,
+ "spanishText":"Fácil",
+ "spanishFontType":3,
+ "chineseTText":"簡單",
+ "chineseTFontType":1,
+ "koreanText":"쉬움",
+ "koreanFontType":2
+ },
+ {
+ "key":"course_hard",
+ "japaneseText":"むずかしい",
+ "englishUsText":"Hard",
+ "englishUsFontType":3,
+ "frenchText":"Difficile",
+ "frenchFontType":3,
+ "italianText":"Difficile",
+ "italianFontType":3,
+ "germanText":"Schwer",
+ "germanFontType":3,
+ "spanishText":"Difícil",
+ "spanishFontType":3,
+ "chineseTText":"困難",
+ "chineseTFontType":1,
+ "koreanText":"어려움",
+ "koreanFontType":2
+ },
+ {
+ "key":"course_mania",
+ "japaneseText":"おに",
+ "englishUsText":"Extreme",
+ "englishUsFontType":3,
+ "frenchText":"Extrême",
+ "frenchFontType":3,
+ "italianText":"Estrema",
+ "italianFontType":3,
+ "germanText":"Extrem",
+ "germanFontType":3,
+ "spanishText":"Extrema",
+ "spanishFontType":3,
+ "chineseTText":"魔王",
+ "chineseTFontType":1,
+ "koreanText":"귀신",
+ "koreanFontType":2
+ },
+ {
+ "key":"course_normal",
+ "japaneseText":"ふつう",
+ "englishUsText":"Normal",
+ "englishUsFontType":3,
+ "frenchText":"Normal",
+ "frenchFontType":3,
+ "italianText":"Normale",
+ "italianFontType":3,
+ "germanText":"Normal",
+ "germanFontType":3,
+ "spanishText":"Normal",
+ "spanishFontType":3,
+ "chineseTText":"普通",
+ "chineseTFontType":1,
+ "koreanText":"보통",
+ "koreanFontType":2
+ },
+ {
+ "key":"course_ura",
+ "japaneseText":"おに",
+ "englishUsText":"Extreme",
+ "englishUsFontType":3,
+ "frenchText":"Extrême",
+ "frenchFontType":3,
+ "italianText":"Estrema",
+ "italianFontType":3,
+ "germanText":"Extrem",
+ "germanFontType":3,
+ "spanishText":"Extrema",
+ "spanishFontType":3,
+ "chineseTText":"魔王",
+ "chineseTFontType":1,
+ "koreanText":"귀신",
+ "koreanFontType":2
+ },
+ {
+ "key":"gavel",
+ "japaneseText":"速くドン連打!",
+ "englishUsText":"Drumroll rapidly!",
+ "englishUsFontType":3,
+ "frenchText":"Roulement de tambour rapide !",
+ "frenchFontType":3,
+ "italianText":"Rullo rapido!",
+ "italianFontType":3,
+ "germanText":"Schneller Trommelwirbel!",
+ "germanFontType":3,
+ "spanishText":"¡Redobla rápido!",
+ "spanishFontType":3,
+ "chineseTText":"快速咚連打",
+ "chineseTFontType":1,
+ "koreanText":"빠르게 쿵 연타!",
+ "koreanFontType":2
+ },
+ {
+ "key":"genre_anime",
+ "japaneseText":"アニメ",
+ "englishUsText":"Anime",
+ "englishUsFontType":3,
+ "frenchText":"Anime",
+ "frenchFontType":3,
+ "italianText":"Anime",
+ "italianFontType":3,
+ "germanText":"Anime",
+ "germanFontType":3,
+ "spanishText":"Anime",
+ "spanishFontType":3,
+ "chineseTText":"卡通動畫音樂",
+ "chineseTFontType":1,
+ "koreanText":"애니메이션",
+ "koreanFontType":2
+ },
+ {
+ "key":"genre_classic",
+ "japaneseText":"クラシック",
+ "englishUsText":"Classical",
+ "englishUsFontType":3,
+ "frenchText":"Classique",
+ "frenchFontType":3,
+ "italianText":"Classica",
+ "italianFontType":3,
+ "germanText":"Klassik",
+ "germanFontType":3,
+ "spanishText":"Clásico",
+ "spanishFontType":3,
+ "chineseTText":"古典音樂",
+ "chineseTFontType":1,
+ "koreanText":"클래식",
+ "koreanFontType":2
+ },
+ {
+ "key":"genre_game",
+ "japaneseText":"ゲームミュージック",
+ "englishUsText":"Game Music",
+ "englishUsFontType":3,
+ "frenchText":"Musique de jeu",
+ "frenchFontType":3,
+ "italianText":"Videogiochi",
+ "italianFontType":3,
+ "germanText":"Spielmusik",
+ "germanFontType":3,
+ "spanishText":"Música de juegos",
+ "spanishFontType":3,
+ "chineseTText":"遊戲音樂",
+ "chineseTFontType":1,
+ "koreanText":"게임",
+ "koreanFontType":2
+ },
+ {
+ "key":"genre_namco",
+ "japaneseText":"ナムコオリジナル",
+ "englishUsText":"NAMCO Original",
+ "englishUsFontType":3,
+ "frenchText":"NAMCO Original",
+ "frenchFontType":3,
+ "italianText":"Originali Namco",
+ "italianFontType":3,
+ "germanText":"NAMCO-Originale",
+ "germanFontType":3,
+ "spanishText":"Namco original",
+ "spanishFontType":3,
+ "chineseTText":"NAMCO原創音樂",
+ "chineseTFontType":1,
+ "koreanText":"남코 오리지널",
+ "koreanFontType":2
+ },
+ {
+ "key":"genre_pops",
+ "japaneseText":"ポップス",
+ "englishUsText":"POP",
+ "englishUsFontType":3,
+ "frenchText":"Pop",
+ "frenchFontType":3,
+ "italianText":"Pop",
+ "italianFontType":3,
+ "germanText":"POP",
+ "germanFontType":3,
+ "spanishText":"Pop",
+ "spanishFontType":3,
+ "chineseTText":"流行音樂",
+ "chineseTFontType":1,
+ "koreanText":"POP",
+ "koreanFontType":2
+ },
+ {
+ "key":"genre_variety",
+ "japaneseText":"バラエティ",
+ "englishUsText":"Variety",
+ "englishUsFontType":3,
+ "frenchText":"Variétés",
+ "frenchFontType":3,
+ "italianText":"Varia",
+ "italianFontType":3,
+ "germanText":"Versch.",
+ "germanFontType":3,
+ "spanishText":"Varios",
+ "spanishFontType":3,
+ "chineseTText":"綜合音樂",
+ "chineseTFontType":1,
+ "koreanText":"버라이어티",
+ "koreanFontType":2
+ },
+ {
+ "key":"genre_vocalo",
+ "japaneseText":"ボーカロイド™曲",
+ "englishUsText":"VOCALOID™ Music",
+ "englishUsFontType":3,
+ "frenchText":"VOCALOID™ Music",
+ "frenchFontType":3,
+ "italianText":"VOCALOID™ Music",
+ "italianFontType":3,
+ "germanText":"VOCALOID™ Music",
+ "germanFontType":3,
+ "spanishText":"VOCALOID™ Music",
+ "spanishFontType":3,
+ "chineseTText":"VOCALOID™ Music",
+ "chineseTFontType":1,
+ "koreanText":"VOCALOID™ Music",
+ "koreanFontType":2
+ },
+ {
+ "key":"hiscore_update",
+ "japaneseText":"自己ベスト更新",
+ "englishUsText":"New High Score",
+ "englishUsFontType":3,
+ "frenchText":"Meilleur score !",
+ "frenchFontType":3,
+ "italianText":"Nuovo record",
+ "italianFontType":3,
+ "germanText":"Neuer Highscore",
+ "germanFontType":3,
+ "spanishText":"Nuevo récord",
+ "spanishFontType":3,
+ "chineseTText":"刷新自我紀錄",
+ "chineseTFontType":1,
+ "koreanText":"마이 베스트 경신",
+ "koreanFontType":2
+ },
+ {
+ "key":"pause_continue",
+ "japaneseText":"演奏を続ける",
+ "englishUsText":"Continue",
+ "englishUsFontType":3,
+ "frenchText":"Continuer",
+ "frenchFontType":3,
+ "italianText":"Continua",
+ "italianFontType":3,
+ "germanText":"Fortfahren",
+ "germanFontType":3,
+ "spanishText":"Continuar",
+ "spanishFontType":3,
+ "chineseTText":"繼續演奏",
+ "chineseTFontType":1,
+ "koreanText":"연주 계속하기",
+ "koreanFontType":2
+ },
+ {
+ "key":"pause_menu",
+ "japaneseText":"ポーズメニュー",
+ "englishUsText":"Pause Menu",
+ "englishUsFontType":3,
+ "frenchText":"Menu pause",
+ "frenchFontType":3,
+ "italianText":"Menu di pausa",
+ "italianFontType":3,
+ "germanText":"Pausemenü",
+ "germanFontType":3,
+ "spanishText":"Menú de pausa",
+ "spanishFontType":3,
+ "chineseTText":"暫停選單",
+ "chineseTFontType":1,
+ "koreanText":"일시정지 메뉴",
+ "koreanFontType":2
+ },
+ {
+ "key":"pause_mode_select",
+ "japaneseText":"「モードをえらぶ」にもどる",
+ "englishUsText":"Back to Select Mode",
+ "englishUsFontType":3,
+ "frenchText":"Retour au choix du mode",
+ "frenchFontType":3,
+ "italianText":"Torna a Sel. modalità",
+ "italianFontType":3,
+ "germanText":"Zurück zur Moduswahl",
+ "germanFontType":3,
+ "spanishText":"Volver a Elegir modo",
+ "spanishFontType":3,
+ "chineseTText":"返回「選擇模式」",
+ "chineseTFontType":1,
+ "koreanText":"「모드 선택」으로",
+ "koreanFontType":2
+ },
+ {
+ "key":"pause_retry",
+ "japaneseText":"初めからやり直す",
+ "englishUsText":"Retry",
+ "englishUsFontType":3,
+ "frenchText":"Réessayer",
+ "frenchFontType":3,
+ "italianText":"Riprova",
+ "italianFontType":3,
+ "germanText":"Erneut versuchen",
+ "germanFontType":3,
+ "spanishText":"Reintentar",
+ "spanishFontType":3,
+ "chineseTText":"從頭開始",
+ "chineseTFontType":1,
+ "koreanText":"처음부터 다시",
+ "koreanFontType":2
+ },
+ {
+ "key":"pause_song_select",
+ "japaneseText":"「曲をえらぶ」にもどる",
+ "englishUsText":"Back to Select song",
+ "englishUsFontType":3,
+ "frenchText":"Retour au choix de la chanson",
+ "frenchFontType":3,
+ "italianText":"Torna a Selez. canzone",
+ "italianFontType":3,
+ "germanText":"Zurück zur Songwahl",
+ "germanFontType":3,
+ "spanishText":"Volver a Elegir canción",
+ "spanishFontType":3,
+ "chineseTText":"返回「選擇樂曲」",
+ "chineseTFontType":1,
+ "koreanText":"「곡 선택」으로",
+ "koreanFontType":2
+ },
+ {
+ "key":"renda",
+ "japaneseText":"連打!!",
+ "englishUsText":"Drum Roll!!",
+ "englishUsFontType":3,
+ "frenchText":"Roul. tambour !",
+ "frenchFontType":3,
+ "italianText":"Rullo di tamburo!",
+ "italianFontType":3,
+ "germanText":"Trommelwirbel!",
+ "germanFontType":3,
+ "spanishText":"¡Redoble!",
+ "spanishFontType":3,
+ "chineseTText":"連打!!",
+ "chineseTFontType":1,
+ "koreanText":"연타!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_style_select",
+ "japaneseText":"そうさスタイル設定",
+ "englishUsText":"Control Style Settings",
+ "englishUsFontType":3,
+ "frenchText":"Paramètres de style de commandes",
+ "frenchFontType":3,
+ "italianText":"Scegli lo stile dei comandi",
+ "italianFontType":3,
+ "germanText":"Steuerungsart-Einstellungen",
+ "germanFontType":3,
+ "spanishText":"Ajustes del estilo de control",
+ "spanishFontType":3,
+ "chineseTText":"演奏風格設定",
+ "chineseTFontType":1,
+ "koreanText":"조작 스타일 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_style_furifuri",
+ "japaneseText":"フリフリ演奏でそうさします",
+ "englishUsText":"Use Motion Controls.",
+ "englishUsFontType":3,
+ "frenchText":"Utilise les commandes par mouvements",
+ "frenchFontType":3,
+ "italianText":"Usa comandi di movimento",
+ "italianFontType":3,
+ "germanText":"Bewegungssteuerung",
+ "germanFontType":3,
+ "spanishText":"Usar el control por movimiento",
+ "spanishFontType":3,
+ "chineseTText":"以動態演奏來遊玩",
+ "chineseTFontType":1,
+ "koreanText":"모션으로 조작합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_style_button",
+ "japaneseText":"ボタンでそうさします",
+ "englishUsText":"Use Button Controls.",
+ "englishUsFontType":3,
+ "frenchText":"Utilise les commandes boutons",
+ "frenchFontType":3,
+ "italianText":"Usa pulsanti",
+ "italianFontType":3,
+ "germanText":"Knöpfe und Tasten",
+ "germanFontType":3,
+ "spanishText":"Usar el control por botones",
+ "spanishFontType":3,
+ "chineseTText":"以按鍵操作來遊玩",
+ "chineseTFontType":1,
+ "koreanText":"버튼으로 조작합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_style_info01",
+ "japaneseText":"「Joy-Con」2本持ちの人は、そうさスタイルをえらんでね!",
+ "englishUsText":"Select which dual-controller grip style you prefer!",
+ "englishUsFontType":3,
+ "frenchText":"Choisis ton style de commandes préféré avec les Joy-Con !",
+ "frenchFontType":3,
+ "italianText":"Seleziona lo stile dei comandi Joy-Con che preferisci!",
+ "italianFontType":3,
+ "germanText":"Lege fest, welche Joy-Con Steuerung du einsetzen willst!",
+ "germanFontType":3,
+ "spanishText":"¡Elige el estilo de control de los Joy-Con que prefieras!",
+ "spanishFontType":3,
+ "chineseTText":"由左右握著Joy-Con控制器的人選擇演奏風格!",
+ "chineseTFontType":1,
+ "koreanText":"「Joy-Con」을 2개 잡은 사람은 조작 스타일을 선택해줘!",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_style_info02",
+ "japaneseText":"フリフリ演奏か、ボタンそうさのどちらかをえらんでください",
+ "englishUsText":"1P starts the game once everyone else is ready!",
+ "englishUsFontType":3,
+ "frenchText":"Le J1 lance la partie quand tout le monde est prêt !",
+ "frenchFontType":3,
+ "italianText":"G1 inizierà la partita quando tutti i giocatori saranno pronti!",
+ "italianFontType":3,
+ "germanText":"Spieler 1 startet das Spiel, sobald alle bereit sind!",
+ "germanFontType":3,
+ "spanishText":"¡Cuando todos estén listos, empieza el J1!",
+ "spanishFontType":3,
+ "chineseTText":"請從動態演奏、按鍵操作中選擇一種",
+ "chineseTFontType":1,
+ "koreanText":"모션 조작, 버튼 조작 중에서 선택해주세요",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_style_info03",
+ "japaneseText":"みんなのそうさスタイルが決まったので\n1Pは決定してね!",
+ "englishUsText":"Everyone’s chosen a control type, 1P! Start the game!",
+ "englishUsFontType":3,
+ "frenchText":"Styles de commandes tous choisis. J1 ! Lance la partie !",
+ "frenchFontType":3,
+ "italianText":"Tutti hanno scelto uno stile sessione. G1, avvia la partita!",
+ "italianFontType":3,
+ "germanText":"Jeder hat seinen Steuerungsstil, Sp1! Starte das Spiel!",
+ "germanFontType":3,
+ "spanishText":"¡Todos han elegido un estilo, J1! ¡Inicia la partida!",
+ "spanishFontType":3,
+ "chineseTText":"大家決定好演奏風格後,就交由1P確定喔!",
+ "chineseTFontType":1,
+ "koreanText":"모두 조작 스타일을 정했으니까\n1P는 결정을 눌러줘!",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_taiko",
+ "japaneseText":"太鼓",
+ "englishUsText":"Drum",
+ "englishUsFontType":3,
+ "frenchText":"Tambour",
+ "frenchFontType":3,
+ "italianText":"Tamburo",
+ "italianFontType":3,
+ "germanText":"Trommel",
+ "germanFontType":3,
+ "spanishText":"Tambor",
+ "spanishFontType":3,
+ "chineseTText":"太鼓",
+ "chineseTFontType":1,
+ "koreanText":"태고",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_drumkit",
+ "japaneseText":"ドラム",
+ "englishUsText":"Drumkit",
+ "englishUsFontType":3,
+ "frenchText":"Batterie",
+ "frenchFontType":3,
+ "italianText":"Batteria",
+ "italianFontType":3,
+ "germanText":"Drum-Kit",
+ "germanFontType":3,
+ "spanishText":"Batería",
+ "spanishFontType":3,
+ "chineseTText":"爵士鼓",
+ "chineseTFontType":1,
+ "koreanText":"드럼",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_tanba",
+ "japaneseText":"タンバリン",
+ "englishUsText":"Tamborine",
+ "englishUsFontType":3,
+ "frenchText":"Tambourin",
+ "frenchFontType":3,
+ "italianText":"Tamburello",
+ "italianFontType":3,
+ "germanText":"Tamburin",
+ "germanFontType":3,
+ "spanishText":"Pandereta",
+ "spanishFontType":3,
+ "chineseTText":"鈴鼓",
+ "chineseTFontType":1,
+ "koreanText":"탬버린",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_conga",
+ "japaneseText":"コンガ",
+ "englishUsText":"Conga",
+ "englishUsFontType":3,
+ "frenchText":"Conga",
+ "frenchFontType":3,
+ "italianText":"Conga",
+ "italianFontType":3,
+ "germanText":"Conga",
+ "germanFontType":3,
+ "spanishText":"Conga",
+ "spanishFontType":3,
+ "chineseTText":"康加鼓",
+ "chineseTFontType":1,
+ "koreanText":"콩가",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_bit-tuned",
+ "japaneseText":"8ビット太鼓",
+ "englishUsText":"8-bit Drum",
+ "englishUsFontType":3,
+ "frenchText":"Tambour 8-bit",
+ "frenchFontType":3,
+ "italianText":"Tamburo 8-bit",
+ "italianFontType":3,
+ "germanText":"8-Bit-Drum",
+ "germanFontType":3,
+ "spanishText":"Tambor 8 bits",
+ "spanishFontType":3,
+ "chineseTText":"8bit太鼓",
+ "chineseTFontType":1,
+ "koreanText":"8비트 태고",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_tudumi",
+ "japaneseText":"つづみ",
+ "englishUsText":"Hand Drum",
+ "englishUsFontType":3,
+ "frenchText":"Tambour à main",
+ "frenchFontType":3,
+ "italianText":"Tamb. a mano",
+ "italianFontType":3,
+ "germanText":"Handtrommel",
+ "germanFontType":3,
+ "spanishText":"Timbal",
+ "spanishFontType":3,
+ "chineseTText":"日本小鼓",
+ "chineseTFontType":1,
+ "koreanText":"꾸러미",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_kodaiko",
+ "japaneseText":"小太鼓",
+ "englishUsText":"Small Drum",
+ "englishUsFontType":3,
+ "frenchText":"Petit tambour",
+ "frenchFontType":3,
+ "italianText":"Tamburo piccolo",
+ "italianFontType":3,
+ "germanText":"Kleine Trommel",
+ "germanFontType":3,
+ "spanishText":"Tambor pequeño",
+ "spanishFontType":3,
+ "chineseTText":"小太鼓",
+ "chineseTFontType":1,
+ "koreanText":"작은북",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_gorgeous",
+ "japaneseText":"ごうかな太鼓",
+ "englishUsText":"Deluxe Drum",
+ "englishUsFontType":3,
+ "frenchText":"Tambour de luxe",
+ "frenchFontType":3,
+ "italianText":"Tamb. deluxe",
+ "italianFontType":3,
+ "germanText":"Deluxe-Trommel",
+ "germanFontType":3,
+ "spanishText":"Tambor de lujo",
+ "spanishFontType":3,
+ "chineseTText":"豪華太鼓",
+ "chineseTFontType":1,
+ "koreanText":"화려한 태고",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_dogcat",
+ "japaneseText":"いぬねこ",
+ "englishUsText":"Dogs & Cats",
+ "englishUsFontType":3,
+ "frenchText":"Chiens et chats",
+ "frenchFontType":3,
+ "italianText":"Cani e gatti",
+ "italianFontType":3,
+ "germanText":"Hunde & Katzen",
+ "germanFontType":3,
+ "spanishText":"Perros y gatos",
+ "spanishFontType":3,
+ "chineseTText":"狗與貓",
+ "chineseTFontType":1,
+ "koreanText":"멍멍야옹",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_taiho",
+ "japaneseText":"大砲",
+ "englishUsText":"Cannon",
+ "englishUsFontType":3,
+ "frenchText":"Canon",
+ "frenchFontType":3,
+ "italianText":"Cannone",
+ "italianFontType":3,
+ "germanText":"Kanone",
+ "germanFontType":3,
+ "spanishText":"Cañón",
+ "spanishFontType":3,
+ "chineseTText":"大砲",
+ "chineseTFontType":1,
+ "koreanText":"대포",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_cooking",
+ "japaneseText":"料理",
+ "englishUsText":"Cooking",
+ "englishUsFontType":3,
+ "frenchText":"Cuisine",
+ "frenchFontType":3,
+ "italianText":"Cucina",
+ "italianFontType":3,
+ "germanText":"Kochen",
+ "germanFontType":3,
+ "spanishText":"Cocina",
+ "spanishFontType":3,
+ "chineseTText":"烹飪",
+ "chineseTFontType":1,
+ "koreanText":"요리",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_soiya",
+ "japaneseText":"ソイヤ",
+ "englishUsText":"Heave-Ho",
+ "englishUsFontType":3,
+ "frenchText":"Oh hisse !",
+ "frenchFontType":3,
+ "italianText":"Oh issa",
+ "italianFontType":3,
+ "germanText":"Hau-ruck",
+ "germanFontType":3,
+ "spanishText":"Esfuerzo",
+ "spanishFontType":3,
+ "chineseTText":"使勁聲",
+ "chineseTFontType":1,
+ "koreanText":"이얍",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_mokugyo",
+ "japaneseText":"もくぎょ",
+ "englishUsText":"Wooden Fish",
+ "englishUsFontType":3,
+ "frenchText":"Poisson en bois",
+ "frenchFontType":3,
+ "italianText":"Mokugyo",
+ "italianFontType":3,
+ "germanText":"Holzfisch",
+ "germanFontType":3,
+ "spanishText":"Pez de madera",
+ "spanishFontType":3,
+ "chineseTText":"木魚",
+ "chineseTFontType":1,
+ "koreanText":"목탁",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_pacman",
+ "japaneseText":"パックマン",
+ "englishUsText":"Pac-Man",
+ "englishUsFontType":3,
+ "frenchText":"Pac-Man",
+ "frenchFontType":3,
+ "italianText":"Pac-Man",
+ "italianFontType":3,
+ "germanText":"Pac-Man",
+ "germanFontType":3,
+ "spanishText":"Pac-Man",
+ "spanishFontType":3,
+ "chineseTText":"小精靈",
+ "chineseTFontType":1,
+ "koreanText":"팩맨",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_kakegoe",
+ "japaneseText":"おっかけ",
+ "englishUsText":"Cheer",
+ "englishUsFontType":3,
+ "frenchText":"Encouragement",
+ "frenchFontType":3,
+ "italianText":"Tifo",
+ "italianFontType":3,
+ "germanText":"Jubel",
+ "germanFontType":3,
+ "spanishText":"Ánimos",
+ "spanishFontType":3,
+ "chineseTText":"日式伴唱聲",
+ "chineseTFontType":1,
+ "koreanText":"기합",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_bike",
+ "japaneseText":"バイク",
+ "englishUsText":"Motorcycle",
+ "englishUsFontType":3,
+ "frenchText":"Moto",
+ "frenchFontType":3,
+ "italianText":"Motocicletta",
+ "italianFontType":3,
+ "germanText":"Motorrad",
+ "germanFontType":3,
+ "spanishText":"Motocicleta",
+ "spanishFontType":3,
+ "chineseTText":"摩托車",
+ "chineseTFontType":1,
+ "koreanText":"오토바이",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_syuri",
+ "japaneseText":"手裏剣",
+ "englishUsText":"Shuriken",
+ "englishUsFontType":3,
+ "frenchText":"Shuriken",
+ "frenchFontType":3,
+ "italianText":"Shuriken",
+ "italianFontType":3,
+ "germanText":"Shuriken",
+ "germanFontType":3,
+ "spanishText":"Shuriken",
+ "spanishFontType":3,
+ "chineseTText":"手裡劍",
+ "chineseTFontType":1,
+ "koreanText":"수리검",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_kendo",
+ "japaneseText":"剣道",
+ "englishUsText":"Kendo",
+ "englishUsFontType":3,
+ "frenchText":"Kendo",
+ "frenchFontType":3,
+ "italianText":"Kendo",
+ "italianFontType":3,
+ "germanText":"Kendo",
+ "germanFontType":3,
+ "spanishText":"Kendo",
+ "spanishFontType":3,
+ "chineseTText":"劍道",
+ "chineseTFontType":1,
+ "koreanText":"검도",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_donvoice",
+ "japaneseText":"どんちゃん",
+ "englishUsText":"DON-chan",
+ "englishUsFontType":3,
+ "frenchText":"DON-chan",
+ "frenchFontType":3,
+ "italianText":"DON-chan",
+ "italianFontType":3,
+ "germanText":"DON-chan",
+ "germanFontType":3,
+ "spanishText":"DON-chan",
+ "spanishFontType":3,
+ "chineseTText":"小咚",
+ "chineseTFontType":1,
+ "koreanText":"동이",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_silent",
+ "japaneseText":"音なし",
+ "englishUsText":"Silent",
+ "englishUsFontType":3,
+ "frenchText":"Silence",
+ "frenchFontType":3,
+ "italianText":"Silenzio",
+ "italianFontType":3,
+ "germanText":"Stumm",
+ "germanFontType":3,
+ "spanishText":"Silencio",
+ "spanishFontType":3,
+ "chineseTText":"靜音",
+ "chineseTFontType":1,
+ "koreanText":"무음",
+ "koreanFontType":2
+ },
+ {
+ "key":"unlock_play_minigame",
+ "japaneseText":"パーティゲームを%s回プレイ!",
+ "englishUsText":"Played Party Game %s Times!",
+ "englishUsFontType":3,
+ "frenchText":"Joué aux mini-jeux %s fois !",
+ "frenchFontType":3,
+ "italianText":"Hai giocato nella modalità Party\n%s volte!",
+ "italianFontType":3,
+ "germanText":"Party-Spiel %s-mal gespielt!",
+ "germanFontType":3,
+ "spanishText":"¡Has jugado en Juego festivo %s veces!",
+ "spanishFontType":3,
+ "chineseTText":"遊玩派對遊戲%s次!",
+ "chineseTFontType":1,
+ "koreanText":"파티 모드를 %s회 플레이!",
+ "koreanFontType":2
+ },
+ {
+ "key":"unlock_clear_minigame",
+ "japaneseText":"%sをクリア!",
+ "englishUsText":"%s Clear!",
+ "englishUsFontType":3,
+ "frenchText":"%s terminé !",
+ "frenchFontType":3,
+ "italianText":"%s completata!",
+ "italianFontType":3,
+ "germanText":"%s abgeschlossen!",
+ "germanFontType":3,
+ "spanishText":"¡%s superado!",
+ "spanishFontType":3,
+ "chineseTText":"通關派對遊戲%s次!",
+ "chineseTFontType":1,
+ "koreanText":"%s 클리어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"unlock_play_enso_minigame",
+ "japaneseText":"演奏ゲーム、パーティゲームを合計%s回プレイ!",
+ "englishUsText":"Played Taiko Mode and Party Game %s times!",
+ "englishUsFontType":3,
+ "frenchText":"Joué en mode Taiko et Mini-jeu %s fois !",
+ "frenchFontType":3,
+ "italianText":"Hai giocato nella modalità Taiko\ne nella modalità Party %s volte!",
+ "italianFontType":3,
+ "germanText":"Taiko-Modus und Party-Spiel %s-mal gespielt!",
+ "germanFontType":3,
+ "spanishText":"¡Has jugado en modo Taiko y\nJuego festivo %s veces!",
+ "spanishFontType":3,
+ "chineseTText":"演奏遊戲與派對遊戲的合計遊玩次數為%s次!",
+ "chineseTFontType":1,
+ "koreanText":"연주 모드, 파티 모드를 합계 %s회 플레이!",
+ "koreanFontType":2
+ },
+ {
+ "key":"unlock_clear_enso_minigame",
+ "japaneseText":"演奏ゲーム、パーティゲームを合計%s回クリア!",
+ "englishUsText":"Cleared Taiko Mode and Party Game %s times!",
+ "englishUsFontType":3,
+ "frenchText":"Terminé le mode Taiko et Mini-jeu %s fois !",
+ "frenchFontType":3,
+ "italianText":"Hai completato la modalità Taiko\ne la modalità Party %s volte!",
+ "italianFontType":3,
+ "germanText":"Taiko-Modus und Party-Spiel %s-mal abgeschlossen!",
+ "germanFontType":3,
+ "spanishText":"¡Has superado el modo Taiko\ny Juego festivo %s veces!",
+ "spanishFontType":3,
+ "chineseTText":"演奏遊戲與派對遊戲的合計通關次數為%s次!",
+ "chineseTFontType":1,
+ "koreanText":"연주 모드, 파티 모드를 합계 %s회 클리어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"unlock_terms_shared",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_zense",
+ "japaneseText":"映画「君の名は。」より",
+ "englishUsText":"From \" Your name. \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Your name. \"",
+ "frenchFontType":3,
+ "italianText":"da \" Your name. \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Your name. \"",
+ "germanFontType":3,
+ "spanishText":"De \" Your name. \"",
+ "spanishFontType":3,
+ "chineseTText":"來自電影「你的名字。」",
+ "chineseTFontType":1,
+ "koreanText":"영화 \"너의 이름은.\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_natsu",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_skorpg",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ryusei",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_train",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_kekka2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_draond",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_kim100",
+ "japaneseText":"「クレヨンしんちゃん」より",
+ "englishUsText":"From \" Crayon Shin-chan \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Crayon Shin-chan \"",
+ "frenchFontType":3,
+ "italianText":"da \" Crayon Shin-chan \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Crayon Shin-chan \"",
+ "germanFontType":3,
+ "spanishText":"De \" Crayon Shin-chan \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「蠟筆小新」",
+ "chineseTFontType":1,
+ "koreanText":"\"짱구는 못말려\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_krbld",
+ "japaneseText":"「仮面ライダービルド」より",
+ "englishUsText":"From \" Kamen Rider Build \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Kamen Rider Build \"",
+ "frenchFontType":3,
+ "italianText":"da \" Kamen Rider Build \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Kamen Rider Build \"",
+ "germanFontType":3,
+ "spanishText":"De \" Kamen Rider Build \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「假面騎士Build」",
+ "chineseTFontType":1,
+ "koreanText":"\"가면라이더 빌드\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_chala",
+ "japaneseText":"「ドラゴンボールZ」より",
+ "englishUsText":"From \" Dragon Ball Z \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Dragon Ball Z \"",
+ "frenchFontType":3,
+ "italianText":"da \" Dragon Ball Z \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Dragon Ball Z \"",
+ "germanFontType":3,
+ "spanishText":"De \" Dragon Ball Z \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「七龍珠Z」",
+ "chineseTFontType":1,
+ "koreanText":"\"드래곤볼Z\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_weare0",
+ "japaneseText":"「ワンピース」より",
+ "englishUsText":"From \" One Piece \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" One Piece \"",
+ "frenchFontType":3,
+ "italianText":"da \" One Piece \"",
+ "italianFontType":3,
+ "germanText":"Aus \" One Piece \"",
+ "germanFontType":3,
+ "spanishText":"De \" One Piece \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「航海王」",
+ "chineseTFontType":1,
+ "koreanText":"\"원피스\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_eva",
+ "japaneseText":"「新世紀エヴァンゲリオン」より",
+ "englishUsText":"From \" Neon Genesis EVANGELION \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Neon Genesis EVANGELION \"",
+ "frenchFontType":3,
+ "italianText":"da \" Neon Genesis EVANGELION \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Neon Genesis EVANGELION \"",
+ "germanFontType":3,
+ "spanishText":"De \" Neon Genesis EVANGELION \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「新世紀福音戰士」",
+ "chineseTFontType":1,
+ "koreanText":"\"신세기 에반게리온\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_pkalol",
+ "japaneseText":"「ポケットモンスター サン&ムーン」より",
+ "englishUsText":"From \" Pokémon Sun & Moon \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Pokémon Sun & Moon \"",
+ "frenchFontType":3,
+ "italianText":"da \" Pokémon Sun & Moon \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Pokémon Sun & Moon \"",
+ "germanFontType":3,
+ "spanishText":"De \" Pokémon Sun & Moon \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「精靈寶可夢 太陽&月亮」",
+ "chineseTFontType":1,
+ "koreanText":"\"포켓몬스터 썬&문\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_sentoc",
+ "japaneseText":"「千と千尋の神隠し」より",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"來自「神隱少女」",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_odoru",
+ "japaneseText":"「ちびまる子ちゃん」より",
+ "englishUsText":"From \" Chibi Maruko-chan \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Chibi Maruko-chan \"",
+ "frenchFontType":3,
+ "italianText":"da \" Chibi Maruko-chan \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Chibi Maruko-chan \"",
+ "germanFontType":3,
+ "spanishText":"De \" Chibi Maruko-chan \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「櫻桃小丸子」",
+ "chineseTFontType":1,
+ "koreanText":"\"마루코는 아홉살\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_anp",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_yokait",
+ "japaneseText":"「妖怪ウォッチ」より",
+ "englishUsText":"From \" Yo-kai Watch \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Yo-kai Watch \"",
+ "frenchFontType":3,
+ "italianText":"da \" Yo-kai Watch \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Yo-kai Watch \"",
+ "germanFontType":3,
+ "spanishText":"De \" Yo-kai Watch \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「妖怪手錶」",
+ "chineseTFontType":1,
+ "koreanText":"\"요괴워치\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_gumidp",
+ "japaneseText":"kemu",
+ "englishUsText":"kemu",
+ "englishUsFontType":3,
+ "frenchText":"kemu",
+ "frenchFontType":3,
+ "italianText":"kemu",
+ "italianFontType":3,
+ "germanText":"kemu",
+ "germanFontType":3,
+ "spanishText":"kemu",
+ "spanishFontType":3,
+ "chineseTText":"kemu",
+ "chineseTFontType":1,
+ "koreanText":"kemu",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_gumi10",
+ "japaneseText":"YM",
+ "englishUsText":"YM",
+ "englishUsFontType":3,
+ "frenchText":"YM",
+ "frenchFontType":3,
+ "italianText":"YM",
+ "italianFontType":3,
+ "germanText":"YM",
+ "germanFontType":3,
+ "spanishText":"YM",
+ "spanishFontType":3,
+ "chineseTText":"YM",
+ "chineseTFontType":1,
+ "koreanText":"YM",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_onigir",
+ "japaneseText":"よみぃ",
+ "englishUsText":"Yomi",
+ "englishUsFontType":3,
+ "frenchText":"Yomi",
+ "frenchFontType":3,
+ "italianText":"Yomi",
+ "italianFontType":3,
+ "germanText":"Yomi",
+ "germanFontType":3,
+ "spanishText":"Yomi",
+ "spanishFontType":3,
+ "chineseTText":"Yomi",
+ "chineseTFontType":1,
+ "koreanText":"Yomi",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_clstrk",
+ "japaneseText":"ベートーヴェン",
+ "englishUsText":"Ludwig van Beethoven",
+ "englishUsFontType":3,
+ "frenchText":"Ludwig van Beethoven",
+ "frenchFontType":3,
+ "italianText":"Ludwig van Beethoven",
+ "italianFontType":3,
+ "germanText":"Ludwig van Beethoven",
+ "germanFontType":3,
+ "spanishText":"Ludwig van Beethoven",
+ "spanishFontType":3,
+ "chineseTText":"貝多芬",
+ "chineseTFontType":1,
+ "koreanText":"루트비히 판 베토벤",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_spl2md",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_trance",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_6ne9om",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_souryu",
+ "japaneseText":"世阿弥",
+ "englishUsText":"Xeami",
+ "englishUsFontType":3,
+ "frenchText":"Xeami",
+ "frenchFontType":3,
+ "italianText":"Xeami",
+ "italianFontType":3,
+ "germanText":"Xeami",
+ "germanFontType":3,
+ "spanishText":"Xeami",
+ "spanishFontType":3,
+ "chineseTText":"世阿弥",
+ "chineseTFontType":1,
+ "koreanText":"Xeami",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_kakunin",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_tmap4",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mario4",
+ "japaneseText":"「スーパーマリオ オデッセイ」より",
+ "englishUsText":"From \" Super Mario Odyssey \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Super Mario Odyssey \"",
+ "frenchFontType":3,
+ "italianText":"da \" Super Mario Odyssey \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Super Mario Odyssey \"",
+ "germanFontType":3,
+ "spanishText":"De \"Super Mario Odyssey\"",
+ "spanishFontType":3,
+ "chineseTText":"來自「超級瑪利歐 奧德賽」",
+ "chineseTFontType":1,
+ "koreanText":"\"슈퍼 마리오 오디세이\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_furiall",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_furidon",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_furikatsu",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_kishi2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_bn875",
+ "japaneseText":"back number",
+ "englishUsText":"back number",
+ "englishUsFontType":3,
+ "frenchText":"back number",
+ "frenchFontType":3,
+ "italianText":"back number",
+ "italianFontType":3,
+ "germanText":"back number",
+ "germanFontType":3,
+ "spanishText":"back number",
+ "spanishFontType":3,
+ "chineseTText":"back number",
+ "chineseTFontType":1,
+ "koreanText":"back number",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_w2mtom",
+ "japaneseText":"WANIMA",
+ "englishUsText":"WANIMA",
+ "englishUsFontType":3,
+ "frenchText":"WANIMA",
+ "frenchFontType":3,
+ "italianText":"WANIMA",
+ "italianFontType":3,
+ "germanText":"WANIMA",
+ "germanFontType":3,
+ "spanishText":"WANIMA",
+ "spanishFontType":3,
+ "chineseTText":"WANIMA",
+ "chineseTFontType":1,
+ "koreanText":"WANIMA",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mnkesk",
+ "japaneseText":"au 三太郎サッカー応援 CMソング",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_tairik",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_th1682",
+ "japaneseText":"東方Projectアレンジ 幽閉サテライト",
+ "englishUsText":"Toho Project Arrange / Yu-Hei Satellite",
+ "englishUsFontType":3,
+ "frenchText":"Toho Project Arrange / Yu-Hei Satellite",
+ "frenchFontType":3,
+ "italianText":"Toho Project Arrange / Yu-Hei Satellite",
+ "italianFontType":3,
+ "germanText":"Toho Project Arrange / Yu-Hei Satellite",
+ "germanFontType":3,
+ "spanishText":"Toho Project Arrange / Yu-Hei Satellite",
+ "spanishFontType":3,
+ "chineseTText":"東方Project Arrange / 幽閉星光",
+ "chineseTFontType":1,
+ "koreanText":"Toho Project Arrange / Yu-Hei Satellite",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_umtube",
+ "japaneseText":"HIKAKIN & SEIKIN",
+ "englishUsText":"HIKAKIN & SEIKIN",
+ "englishUsFontType":3,
+ "frenchText":"HIKAKIN & SEIKIN",
+ "frenchFontType":3,
+ "italianText":"HIKAKIN & SEIKIN",
+ "italianFontType":3,
+ "germanText":"HIKAKIN & SEIKIN",
+ "germanFontType":3,
+ "spanishText":"HIKAKIN & SEIKIN",
+ "spanishFontType":3,
+ "chineseTText":"HIKAKIN & SEIKIN",
+ "chineseTFontType":1,
+ "koreanText":"HIKAKIN & SEIKIN",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_cls10",
+ "japaneseText":"オッフェンバック",
+ "englishUsText":"Jacques Offenbach",
+ "englishUsFontType":3,
+ "frenchText":"Jacques Offenbach",
+ "frenchFontType":3,
+ "italianText":"Jacques Offenbach",
+ "italianFontType":3,
+ "germanText":"Jacques Offenbach",
+ "germanFontType":3,
+ "spanishText":"Jacques Offenbach",
+ "spanishFontType":3,
+ "chineseTText":"奧芬巴哈",
+ "chineseTFontType":1,
+ "koreanText":"자크 오펜바흐",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_clsine",
+ "japaneseText":"モーツァルト",
+ "englishUsText":"Wolfgang Amadeus Mozart",
+ "englishUsFontType":3,
+ "frenchText":"Wolfgang Amadeus Mozart",
+ "frenchFontType":3,
+ "italianText":"Wolfgang Amadeus Mozart",
+ "italianFontType":3,
+ "germanText":"Wolfgang Amadeus Mozart",
+ "germanFontType":3,
+ "spanishText":"Wolfgang Amadeus Mozart",
+ "spanishFontType":3,
+ "chineseTText":"莫札特",
+ "chineseTFontType":1,
+ "koreanText":"볼프강 아마데우스 모차르트",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_clskum",
+ "japaneseText":"リムスキー=コルサコフ",
+ "englishUsText":"Nikolai Rimsky-Korsakov",
+ "englishUsFontType":3,
+ "frenchText":"Nikolai Rimsky-Korsakov",
+ "frenchFontType":3,
+ "italianText":"Nikolai Rimsky-Korsakov",
+ "italianFontType":3,
+ "germanText":"Nikolai Rimsky-Korsakov",
+ "germanFontType":3,
+ "spanishText":"Nikolai Rimsky-Korsakov",
+ "spanishFontType":3,
+ "chineseTText":"林姆斯基-高沙可夫",
+ "chineseTFontType":1,
+ "koreanText":"니콜라이 림스키코르사코프",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_kirby",
+ "japaneseText":"「星のカービィ Wii」より",
+ "englishUsText":"From \" Kirby's Return to Dream Land \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Kirby's Adventure Wii \"",
+ "frenchFontType":3,
+ "italianText":"da \" Kirby's Adventure Wii \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Kirby's Adventure Wii \"",
+ "germanFontType":3,
+ "spanishText":"De \" Kirby's Adventure Wii \"",
+ "spanishFontType":3,
+ "chineseTText":" 來自「Kirby’s Return to Dream Land」",
+ "chineseTFontType":1,
+ "koreanText":"\"별의 커비 Wii\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_rr1",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_aslt",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_opng2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_espera",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_antoni",
+ "japaneseText":"ゆるめるモ!",
+ "englishUsText":"You'll Melt More!",
+ "englishUsFontType":3,
+ "frenchText":"You'll Melt More!",
+ "frenchFontType":3,
+ "italianText":"You'll Melt More!",
+ "italianFontType":3,
+ "germanText":"You'll Melt More!",
+ "germanFontType":3,
+ "spanishText":"You'll Melt More!",
+ "spanishFontType":3,
+ "chineseTText":"You’ll Melt More!",
+ "chineseTFontType":1,
+ "koreanText":"You’ll Melt More!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_carniv",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ramen",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_butou5",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_kuzure",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_hi4kko",
+ "japaneseText":"つよみー",
+ "englishUsText":"TSUYOMY",
+ "englishUsFontType":3,
+ "frenchText":"TSUYOMY",
+ "frenchFontType":3,
+ "italianText":"TSUYOMY",
+ "italianFontType":3,
+ "germanText":"TSUYOMY",
+ "germanFontType":3,
+ "spanishText":"TSUYOMY",
+ "spanishFontType":3,
+ "chineseTText":"TSUYOMY",
+ "chineseTFontType":1,
+ "koreanText":"TSUYOMY",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mgwrt2",
+ "japaneseText":"~GEAR UP~",
+ "englishUsText":"~GEAR UP~",
+ "englishUsFontType":3,
+ "frenchText":"~GEAR UP~",
+ "frenchFontType":3,
+ "italianText":"~GEAR UP~",
+ "italianFontType":3,
+ "germanText":"~GEAR UP~",
+ "germanFontType":3,
+ "spanishText":"~GEAR UP~",
+ "spanishFontType":3,
+ "chineseTText":"~GEAR UP~",
+ "chineseTFontType":1,
+ "koreanText":"~GEAR UP~",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_carnat",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_iamsyn",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_invara",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_twctt",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_memesi",
+ "japaneseText":"ゴールデンボンバー",
+ "englishUsText":"Goldenbomber",
+ "englishUsFontType":3,
+ "frenchText":"Goldenbomber",
+ "frenchFontType":3,
+ "italianText":"Goldenbomber",
+ "italianFontType":3,
+ "germanText":"Goldenbomber",
+ "germanFontType":3,
+ "spanishText":"Goldenbomber",
+ "spanishFontType":3,
+ "chineseTText":"Goldenbomber",
+ "chineseTFontType":1,
+ "koreanText":"Goldenbomber",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_xjapa2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_poptep",
+ "japaneseText":"TVアニメ「ポプテピピック」OPテーマ",
+ "englishUsText":"From \" POP TEAM EPIC \"",
+ "englishUsFontType":3,
+ "frenchText":"de \" POP TEAM EPIC \"",
+ "frenchFontType":3,
+ "italianText":"da \" POP TEAM EPIC \"",
+ "italianFontType":3,
+ "germanText":"Aus \" POP TEAM EPIC \"",
+ "germanFontType":3,
+ "spanishText":"De \" POP TEAM EPIC \"",
+ "spanishFontType":3,
+ "chineseTText":"電視動畫「POP TEAM EPIC」片頭曲",
+ "chineseTFontType":1,
+ "koreanText":"TV 애니메이션 \"팝 팀 에픽\" 여는 곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_lupatr",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_moana",
+ "japaneseText":"「モアナと伝説の海」より",
+ "englishUsText":"From \" Moana \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Moana \"",
+ "frenchFontType":3,
+ "italianText":"da \" Moana \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Moana \"",
+ "germanFontType":3,
+ "spanishText":"De \" Moana \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「海洋奇緣」",
+ "chineseTFontType":1,
+ "koreanText":"\"모아나\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_sanpo",
+ "japaneseText":"「となりのトトロ」より",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_doyo",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_thgrip",
+ "japaneseText":"東方Projectアレンジ SOUND HOLIC feat.Nana Takahashi",
+ "englishUsText":"Toho Project Arrange / SOUND HOLIC feat.Nana Takahashi",
+ "englishUsFontType":3,
+ "frenchText":"Toho Project Arrange / SOUND HOLIC feat.Nana Takahashi",
+ "frenchFontType":3,
+ "italianText":"Toho Project Arrange / SOUND HOLIC feat.Nana Takahashi",
+ "italianFontType":3,
+ "germanText":"Toho Project Arrange / SOUND HOLIC feat.Nana Takahashi",
+ "germanFontType":3,
+ "spanishText":"Toho Project Arrange / SOUND HOLIC feat.Nana Takahashi",
+ "spanishFontType":3,
+ "chineseTText":"東方Project Arrange / SOUND HOLIC feat.Nana Takahashi",
+ "chineseTFontType":1,
+ "koreanText":"Toho Project Arrange / SOUND HOLIC feat.Nana Takahashi",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_thbad",
+ "japaneseText":"東方Projectアレンジ Alstroemeria Records",
+ "englishUsText":"Toho Project Arrange / Alstroemeria Records",
+ "englishUsFontType":3,
+ "frenchText":"Toho Project Arrange / Alstroemeria Records",
+ "frenchFontType":3,
+ "italianText":"Toho Project Arrange / Alstroemeria Records",
+ "italianFontType":3,
+ "germanText":"Toho Project Arrange / Alstroemeria Records",
+ "germanFontType":3,
+ "spanishText":"Toho Project Arrange / Alstroemeria Records",
+ "spanishFontType":3,
+ "chineseTText":"東方Project Arrange / Alstroemeria Records",
+ "chineseTFontType":1,
+ "koreanText":"Toho Project Arrange / Alstroemeria Records",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_imcanz",
+ "japaneseText":"「アイドルマスター シンデレラガールズ」より",
+ "englishUsText":"From \" THE iDOLM@STER CINDERELLA GIRLS \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" THE iDOLM@STER CINDERELLA GIRLS \"",
+ "frenchFontType":3,
+ "italianText":"da \" THE iDOLM@STER CINDERELLA GIRLS \"",
+ "italianFontType":3,
+ "germanText":"Aus \" THE iDOLM@STER CINDERELLA GIRLS \"",
+ "germanFontType":3,
+ "spanishText":"De \" THE iDOLM@STER CINDERELLA GIRLS \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「偶像大師灰姑娘女孩」",
+ "chineseTFontType":1,
+ "koreanText":"\" THE iDOLM@STER CINDERELLA GIRLS \"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_clstoy",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_cls25",
+ "japaneseText":"モーツァルト",
+ "englishUsText":"Wolfgang Amadeus Mozart",
+ "englishUsFontType":3,
+ "frenchText":"Wolfgang Amadeus Mozart",
+ "frenchFontType":3,
+ "italianText":"Wolfgang Amadeus Mozart",
+ "italianFontType":3,
+ "germanText":"Wolfgang Amadeus Mozart",
+ "germanFontType":3,
+ "spanishText":"Wolfgang Amadeus Mozart",
+ "spanishFontType":3,
+ "chineseTText":"莫札特",
+ "chineseTFontType":1,
+ "koreanText":"볼프강 아마데우스 모차르트",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_cls7",
+ "japaneseText":"ベートーヴェン",
+ "englishUsText":"Ludwig van Beethoven",
+ "englishUsFontType":3,
+ "frenchText":"Ludwig van Beethoven",
+ "frenchFontType":3,
+ "italianText":"Ludwig van Beethoven",
+ "italianFontType":3,
+ "germanText":"Ludwig van Beethoven",
+ "germanFontType":3,
+ "spanishText":"Ludwig van Beethoven",
+ "spanishFontType":3,
+ "chineseTText":"貝多芬",
+ "chineseTFontType":1,
+ "koreanText":"루트비히 판 베토벤",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_clscam",
+ "japaneseText":"リスト",
+ "englishUsText":"Franz Liszt",
+ "englishUsFontType":3,
+ "frenchText":"Franz Liszt",
+ "frenchFontType":3,
+ "italianText":"Franz Liszt",
+ "italianFontType":3,
+ "germanText":"Franz Liszt",
+ "germanFontType":3,
+ "spanishText":"Franz Liszt",
+ "spanishFontType":3,
+ "chineseTText":"李斯特",
+ "chineseTFontType":1,
+ "koreanText":"프란츠 리스트",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_clsh",
+ "japaneseText":"ブラームス",
+ "englishUsText":"Johannes Brahms",
+ "englishUsFontType":3,
+ "frenchText":"Johannes Brahms",
+ "frenchFontType":3,
+ "italianText":"Johannes Brahms",
+ "italianFontType":3,
+ "germanText":"Johannes Brahms",
+ "germanFontType":3,
+ "spanishText":"Johannes Brahms",
+ "spanishFontType":3,
+ "chineseTText":"布拉姆斯",
+ "chineseTFontType":1,
+ "koreanText":"요하네스 브람스",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_clsika",
+ "japaneseText":"ヴェルディ",
+ "englishUsText":"Giuseppe Verdi",
+ "englishUsFontType":3,
+ "frenchText":"Giuseppe Verdi",
+ "frenchFontType":3,
+ "italianText":"Giuseppe Verdi",
+ "italianFontType":3,
+ "germanText":"Giuseppe Verdi",
+ "germanFontType":3,
+ "spanishText":"Giuseppe Verdi",
+ "spanishFontType":3,
+ "chineseTText":"威爾第",
+ "chineseTFontType":1,
+ "koreanText":"주세페 베르디",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_clsnut",
+ "japaneseText":"チャイコフスキー",
+ "englishUsText":"Pyotr Ilyich Tchaikovsky",
+ "englishUsFontType":3,
+ "frenchText":"Pyotr Ilyich Tchaikovsky",
+ "frenchFontType":3,
+ "italianText":"Pyotr Ilyich Tchaikovsky",
+ "italianFontType":3,
+ "germanText":"Pyotr Ilyich Tchaikovsky",
+ "germanFontType":3,
+ "spanishText":"Pyotr Ilyich Tchaikovsky",
+ "spanishFontType":3,
+ "chineseTText":"柴可夫斯基",
+ "chineseTFontType":1,
+ "koreanText":"표트르 일리치 차이콥스키",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_jupt",
+ "japaneseText":"ホルスト",
+ "englishUsText":"Gustav Holst",
+ "englishUsFontType":3,
+ "frenchText":"Gustav Holst",
+ "frenchFontType":3,
+ "italianText":"Gustav Holst",
+ "italianFontType":3,
+ "germanText":"Gustav Holst",
+ "germanFontType":3,
+ "spanishText":"Gustav Holst",
+ "spanishFontType":3,
+ "chineseTText":"霍爾斯特",
+ "chineseTFontType":1,
+ "koreanText":"구스타브 홀스트",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_clsoft",
+ "japaneseText":"プロコフィエフ",
+ "englishUsText":"Sergei Prokofiev",
+ "englishUsFontType":3,
+ "frenchText":"Sergei Prokofiev",
+ "frenchFontType":3,
+ "italianText":"Sergei Prokofiev",
+ "italianFontType":3,
+ "germanText":"Sergei Prokofiev",
+ "germanFontType":3,
+ "spanishText":"Sergei Prokofiev",
+ "spanishFontType":3,
+ "chineseTText":"普羅高菲夫",
+ "chineseTFontType":1,
+ "koreanText":"세르게이 프로코피예프",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_howlin",
+ "japaneseText":"「七つの大罪 戒めの復活」より",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"來自「七大罪 戒律的復活」",
+ "chineseTFontType":1,
+ "koreanText":"\"일곱 개의 대죄 - 계명의 부활\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_butamn",
+ "japaneseText":"おやつカンパニー & ザ・ぷー",
+ "englishUsText":"OYATSU COMPANY & The Puh",
+ "englishUsFontType":3,
+ "frenchText":"OYATSU COMPANY & The Puh",
+ "frenchFontType":3,
+ "italianText":"OYATSU COMPANY & The Puh",
+ "italianFontType":3,
+ "germanText":"OYATSU COMPANY & The Puh",
+ "germanFontType":3,
+ "spanishText":"OYATSU COMPANY & The Puh",
+ "spanishFontType":3,
+ "chineseTText":"OYATSU COMPANY & The Puh",
+ "chineseTFontType":1,
+ "koreanText":"OYATSU COMPANY & The Puh",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_clscpl",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_pacmce",
+ "japaneseText":"PAC TOY-BOX",
+ "englishUsText":"PAC TOY-BOX",
+ "englishUsFontType":3,
+ "frenchText":"PAC TOY-BOX",
+ "frenchFontType":3,
+ "italianText":"PAC TOY-BOX",
+ "italianFontType":3,
+ "germanText":"PAC TOY-BOX",
+ "germanFontType":3,
+ "spanishText":"PAC TOY-BOX",
+ "spanishFontType":3,
+ "chineseTText":"PAC TOY-BOX",
+ "chineseTFontType":1,
+ "koreanText":"PAC TOY-BOX",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_nekotm",
+ "japaneseText":"「ネコ・トモ」テーマ曲",
+ "englishUsText":"From \" Neko Tomo \"",
+ "englishUsFontType":3,
+ "frenchText":"de \" Neko Tomo \"",
+ "frenchFontType":3,
+ "italianText":"da \"Neko Tomo\"",
+ "italianFontType":3,
+ "germanText":"Aus \" Neko Tomo \"",
+ "germanFontType":3,
+ "spanishText":"De \" Neko Tomo \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「NEKO・TOMO」",
+ "chineseTFontType":1,
+ "koreanText":"\" NEKO・TOMO \"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_tecdrv",
+ "japaneseText":"「テクノドライブ」より",
+ "englishUsText":"From \" Techno Drive \"",
+ "englishUsFontType":3,
+ "frenchText":"de \" Techno Drive \"",
+ "frenchFontType":3,
+ "italianText":"da \" Techno Drive \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Techno Drive \"",
+ "germanFontType":3,
+ "spanishText":"De \" Techno Drive \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「Techno Drive」",
+ "chineseTFontType":1,
+ "koreanText":"\" Techno Drive \"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_crtrcs",
+ "japaneseText":"「クリティカルベロシティ」より",
+ "englishUsText":"From \" CRITICAL VELOCITY \"",
+ "englishUsFontType":3,
+ "frenchText":"de \" CRITICAL VELOCITY \"",
+ "frenchFontType":3,
+ "italianText":"da \" CRITICAL VELOCITY \"",
+ "italianFontType":3,
+ "germanText":"Aus \" CRITICAL VELOCITY \"",
+ "germanFontType":3,
+ "spanishText":"De \" CRITICAL VELOCITY \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「致命極速」",
+ "chineseTFontType":1,
+ "koreanText":"\" CRITICAL VELOCITY \"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_sw1op",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_isan",
+ "japaneseText":"feat.団地ノ宮弥子",
+ "englishUsText":"feat.Yako from Danchinomiya",
+ "englishUsFontType":3,
+ "frenchText":"feat.Yako from Danchinomiya",
+ "frenchFontType":3,
+ "italianText":"feat.Yako from Danchinomiya",
+ "italianFontType":3,
+ "germanText":"feat.Yako from Danchinomiya",
+ "germanFontType":3,
+ "spanishText":"feat.Yako from Danchinomiya",
+ "spanishFontType":3,
+ "chineseTText":"feat.団地ノ宮弥子",
+ "chineseTFontType":1,
+ "koreanText":"feat.Yako from Danchinomiya",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_tabetm",
+ "japaneseText":"☆しょーじ☆ feat.ほのか♡えりか",
+ "englishUsText":"☆syoji☆ feat.Honoka♡Erika",
+ "englishUsFontType":3,
+ "frenchText":"☆syoji☆ feat.Honoka♡Erika",
+ "frenchFontType":3,
+ "italianText":"☆syoji☆ feat.Honoka♡Erika",
+ "italianFontType":3,
+ "germanText":"☆syoji☆ feat.Honoka♡Erika",
+ "germanFontType":3,
+ "spanishText":"☆syoji☆ feat.Honoka♡Erika",
+ "spanishFontType":3,
+ "chineseTText":"☆syoji☆ feat.Honoka♡Erika",
+ "chineseTFontType":1,
+ "koreanText":"☆syoji☆ feat.Honoka♡Erika",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_voidse",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_eigas",
+ "japaneseText":"辻林美穂",
+ "englishUsText":"Miho Tsujibayashi",
+ "englishUsFontType":3,
+ "frenchText":"Miho Tsujibayashi",
+ "frenchFontType":3,
+ "italianText":"Miho Tsujibayashi",
+ "italianFontType":3,
+ "germanText":"Miho Tsujibayashi",
+ "germanFontType":3,
+ "spanishText":"Miho Tsujibayashi",
+ "spanishFontType":3,
+ "chineseTText":"辻林美穂",
+ "chineseTFontType":1,
+ "koreanText":"Miho Tsujibayashi",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_tondem",
+ "japaneseText":"横川理彦 feat.団地ノ宮弥子",
+ "englishUsText":"Tadahiko Yokogawa feat.Yako from Danchinomiya",
+ "englishUsFontType":3,
+ "frenchText":"Tadahiko Yokogawa feat.Yako from Danchinomiya",
+ "frenchFontType":3,
+ "italianText":"Tadahiko Yokogawa feat.Yako from Danchinomiya",
+ "italianFontType":3,
+ "germanText":"Tadahiko Yokogawa feat.Yako from Danchinomiya",
+ "germanFontType":3,
+ "spanishText":"Tadahiko Yokogawa feat.Yako from Danchinomiya",
+ "spanishFontType":3,
+ "chineseTText":"横川理彦 feat.団地ノ宮弥子",
+ "chineseTFontType":1,
+ "koreanText":"Tadahiko Yokogawa feat.Yako from Danchinomiya",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_zense",
+ "japaneseText":"",
+ "englishUsText":"前前前世",
+ "englishUsFontType":0,
+ "frenchText":"前前前世",
+ "frenchFontType":0,
+ "italianText":"前前前世",
+ "italianFontType":0,
+ "germanText":"前前前世",
+ "germanFontType":0,
+ "spanishText":"前前前世",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"前前前世",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_natsu",
+ "japaneseText":"",
+ "englishUsText":"夏祭り",
+ "englishUsFontType":0,
+ "frenchText":"夏祭り",
+ "frenchFontType":0,
+ "italianText":"夏祭り",
+ "italianFontType":0,
+ "germanText":"夏祭り",
+ "germanFontType":0,
+ "spanishText":"夏祭り",
+ "spanishFontType":0,
+ "chineseTText":"夏祭り",
+ "chineseTFontType":0,
+ "koreanText":"夏祭り",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_skorpg",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_ryusei",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_train",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_kekka2",
+ "japaneseText":"",
+ "englishUsText":"シュガーソングとビターステップ",
+ "englishUsFontType":0,
+ "frenchText":"シュガーソングとビターステップ",
+ "frenchFontType":0,
+ "italianText":"シュガーソングとビターステップ",
+ "italianFontType":0,
+ "germanText":"シュガーソングとビターステップ",
+ "germanFontType":0,
+ "spanishText":"シュガーソングとビターステップ",
+ "spanishFontType":0,
+ "chineseTText":"シュガーソングとビターステップ",
+ "chineseTFontType":0,
+ "koreanText":"シュガーソングとビターステップ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_draond",
+ "japaneseText":"",
+ "englishUsText":"踊れ・どれ・ドラ ドラえもん音頭",
+ "englishUsFontType":0,
+ "frenchText":"踊れ・どれ・ドラ ドラえもん音頭",
+ "frenchFontType":0,
+ "italianText":"踊れ・どれ・ドラ ドラえもん音頭",
+ "italianFontType":0,
+ "germanText":"踊れ・どれ・ドラ ドラえもん音頭",
+ "germanFontType":0,
+ "spanishText":"踊れ・どれ・ドラ ドラえもん音頭",
+ "spanishFontType":0,
+ "chineseTText":"踊れ・どれ・ドラ ドラえもん音頭",
+ "chineseTFontType":0,
+ "koreanText":"踊れ・どれ・ドラ ドラえもん音頭",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_kim100",
+ "japaneseText":"",
+ "englishUsText":"キミに100パーセント",
+ "englishUsFontType":0,
+ "frenchText":"キミに100パーセント",
+ "frenchFontType":0,
+ "italianText":"キミに100パーセント",
+ "italianFontType":0,
+ "germanText":"キミに100パーセント",
+ "germanFontType":0,
+ "spanishText":"キミに100パーセント",
+ "spanishFontType":0,
+ "chineseTText":"キミに100パーセント",
+ "chineseTFontType":0,
+ "koreanText":"キミに100パーセント",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_krbld",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_chala",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_weare0",
+ "japaneseText":"",
+ "englishUsText":"ウィーアー!",
+ "englishUsFontType":0,
+ "frenchText":"ウィーアー!",
+ "frenchFontType":0,
+ "italianText":"ウィーアー!",
+ "italianFontType":0,
+ "germanText":"ウィーアー!",
+ "germanFontType":0,
+ "spanishText":"ウィーアー!",
+ "spanishFontType":0,
+ "chineseTText":"ウィーアー!",
+ "chineseTFontType":0,
+ "koreanText":"ウィーアー!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_eva",
+ "japaneseText":"",
+ "englishUsText":"残酷な天使のテーゼ",
+ "englishUsFontType":0,
+ "frenchText":"残酷な天使のテーゼ",
+ "frenchFontType":0,
+ "italianText":"残酷な天使のテーゼ",
+ "italianFontType":0,
+ "germanText":"残酷な天使のテーゼ",
+ "germanFontType":0,
+ "spanishText":"残酷な天使のテーゼ",
+ "spanishFontType":0,
+ "chineseTText":"残酷な天使のテーゼ",
+ "chineseTFontType":0,
+ "koreanText":"残酷な天使のテーゼ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_pkalol",
+ "japaneseText":"",
+ "englishUsText":"アローラ!!",
+ "englishUsFontType":0,
+ "frenchText":"アローラ!!",
+ "frenchFontType":0,
+ "italianText":"アローラ!!",
+ "italianFontType":0,
+ "germanText":"アローラ!!",
+ "germanFontType":0,
+ "spanishText":"アローラ!!",
+ "spanishFontType":0,
+ "chineseTText":"アローラ!!",
+ "chineseTFontType":0,
+ "koreanText":"アローラ!!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_sentoc",
+ "japaneseText":"",
+ "englishUsText":"いつも何度でも",
+ "englishUsFontType":0,
+ "frenchText":"いつも何度でも",
+ "frenchFontType":0,
+ "italianText":"いつも何度でも",
+ "italianFontType":0,
+ "germanText":"いつも何度でも",
+ "germanFontType":0,
+ "spanishText":"いつも何度でも",
+ "spanishFontType":0,
+ "chineseTText":"いつも何度でも",
+ "chineseTFontType":0,
+ "koreanText":"いつも何度でも",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_odoru",
+ "japaneseText":"",
+ "englishUsText":"おどるポンポコリン",
+ "englishUsFontType":0,
+ "frenchText":"おどるポンポコリン",
+ "frenchFontType":0,
+ "italianText":"おどるポンポコリン",
+ "italianFontType":0,
+ "germanText":"おどるポンポコリン",
+ "germanFontType":0,
+ "spanishText":"おどるポンポコリン",
+ "spanishFontType":0,
+ "chineseTText":"おどるポンポコリン",
+ "chineseTFontType":0,
+ "koreanText":"おどるポンポコリン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_anp",
+ "japaneseText":"",
+ "englishUsText":"アンパンマンのマーチ",
+ "englishUsFontType":0,
+ "frenchText":"アンパンマンのマーチ",
+ "frenchFontType":0,
+ "italianText":"アンパンマンのマーチ",
+ "italianFontType":0,
+ "germanText":"アンパンマンのマーチ",
+ "germanFontType":0,
+ "spanishText":"アンパンマンのマーチ",
+ "spanishFontType":0,
+ "chineseTText":"アンパンマンのマーチ",
+ "chineseTFontType":0,
+ "koreanText":"アンパンマンのマーチ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_yokait",
+ "japaneseText":"",
+ "englishUsText":"ようかい体操第一",
+ "englishUsFontType":0,
+ "frenchText":"ようかい体操第一",
+ "frenchFontType":0,
+ "italianText":"ようかい体操第一",
+ "italianFontType":0,
+ "germanText":"ようかい体操第一",
+ "germanFontType":0,
+ "spanishText":"ようかい体操第一",
+ "spanishFontType":0,
+ "chineseTText":"ようかい体操第一",
+ "chineseTFontType":0,
+ "koreanText":"ようかい体操第一",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_gumidp",
+ "japaneseText":"",
+ "englishUsText":"拝啓ドッペルゲンガー",
+ "englishUsFontType":0,
+ "frenchText":"拝啓ドッペルゲンガー",
+ "frenchFontType":0,
+ "italianText":"拝啓ドッペルゲンガー",
+ "italianFontType":0,
+ "germanText":"拝啓ドッペルゲンガー",
+ "germanFontType":0,
+ "spanishText":"拝啓ドッペルゲンガー",
+ "spanishFontType":0,
+ "chineseTText":"拝啓ドッペルゲンガー",
+ "chineseTFontType":0,
+ "koreanText":"拝啓ドッペルゲンガー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_gumi10",
+ "japaneseText":"",
+ "englishUsText":"十面相 colorful ver.",
+ "englishUsFontType":0,
+ "frenchText":"十面相 colorful ver.",
+ "frenchFontType":0,
+ "italianText":"十面相 colorful ver.",
+ "italianFontType":0,
+ "germanText":"十面相 colorful ver.",
+ "germanFontType":0,
+ "spanishText":"十面相 colorful ver.",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"十面相 colorful ver.",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_onigir",
+ "japaneseText":"",
+ "englishUsText":"おにぎりはどこかしら♪",
+ "englishUsFontType":0,
+ "frenchText":"おにぎりはどこかしら♪",
+ "frenchFontType":0,
+ "italianText":"おにぎりはどこかしら♪",
+ "italianFontType":0,
+ "germanText":"おにぎりはどこかしら♪",
+ "germanFontType":0,
+ "spanishText":"おにぎりはどこかしら♪",
+ "spanishFontType":0,
+ "chineseTText":"おにぎりはどこかしら♪",
+ "chineseTFontType":0,
+ "koreanText":"おにぎりはどこかしら♪",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_clstrk",
+ "japaneseText":"",
+ "englishUsText":"トルコ行進曲",
+ "englishUsFontType":0,
+ "frenchText":"トルコ行進曲",
+ "frenchFontType":0,
+ "italianText":"トルコ行進曲",
+ "italianFontType":0,
+ "germanText":"トルコ行進曲",
+ "germanFontType":0,
+ "spanishText":"トルコ行進曲",
+ "spanishFontType":0,
+ "chineseTText":"トルコ行進曲",
+ "chineseTFontType":0,
+ "koreanText":"トルコ行進曲",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_spl2md",
+ "japaneseText":"",
+ "englishUsText":"スプラトゥーン2 メドレー",
+ "englishUsFontType":0,
+ "frenchText":"スプラトゥーン2 メドレー",
+ "frenchFontType":0,
+ "italianText":"スプラトゥーン2 メドレー",
+ "italianFontType":0,
+ "germanText":"スプラトゥーン2 メドレー",
+ "germanFontType":0,
+ "spanishText":"スプラトゥーン2 メドレー",
+ "spanishFontType":0,
+ "chineseTText":"スプラトゥーン2 メドレー",
+ "chineseTFontType":0,
+ "koreanText":"スプラトゥーン2 メドレー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_trance",
+ "japaneseText":"",
+ "englishUsText":"エンジェル ドリーム",
+ "englishUsFontType":0,
+ "frenchText":"エンジェル ドリーム",
+ "frenchFontType":0,
+ "italianText":"エンジェル ドリーム",
+ "italianFontType":0,
+ "germanText":"エンジェル ドリーム",
+ "germanFontType":0,
+ "spanishText":"エンジェル ドリーム",
+ "spanishFontType":0,
+ "chineseTText":"エンジェル ドリーム",
+ "chineseTFontType":0,
+ "koreanText":"エンジェル ドリーム",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_6ne9om",
+ "japaneseText":"",
+ "englishUsText":"ドキドキ胸きゅん おまつりタイム",
+ "englishUsFontType":0,
+ "frenchText":"ドキドキ胸きゅん おまつりタイム",
+ "frenchFontType":0,
+ "italianText":"ドキドキ胸きゅん おまつりタイム",
+ "italianFontType":0,
+ "germanText":"ドキドキ胸きゅん おまつりタイム",
+ "germanFontType":0,
+ "spanishText":"ドキドキ胸きゅん おまつりタイム",
+ "spanishFontType":0,
+ "chineseTText":"ドキドキ胸きゅん おまつりタイム",
+ "chineseTFontType":0,
+ "koreanText":"ドキドキ胸きゅん おまつりタイム",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_souryu",
+ "japaneseText":"",
+ "englishUsText":"双竜ノ乱",
+ "englishUsFontType":0,
+ "frenchText":"双竜ノ乱",
+ "frenchFontType":0,
+ "italianText":"双竜ノ乱",
+ "italianFontType":0,
+ "germanText":"双竜ノ乱",
+ "germanFontType":0,
+ "spanishText":"双竜ノ乱",
+ "spanishFontType":0,
+ "chineseTText":"双竜ノ乱",
+ "chineseTFontType":0,
+ "koreanText":"双竜ノ乱",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_kakunin",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_tmap4",
+ "japaneseText":"",
+ "englishUsText":"tmap4",
+ "englishUsFontType":0,
+ "frenchText":"tmap4",
+ "frenchFontType":0,
+ "italianText":"tmap4",
+ "italianFontType":0,
+ "germanText":"tmap4",
+ "germanFontType":0,
+ "spanishText":"tmap4",
+ "spanishFontType":0,
+ "chineseTText":"tmap4",
+ "chineseTFontType":0,
+ "koreanText":"tmap4",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_mario4",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_furiall",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_furidon",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_furikatsu",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_kishi2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_bn875",
+ "japaneseText":"",
+ "englishUsText":"高嶺の花子さん",
+ "englishUsFontType":0,
+ "frenchText":"高嶺の花子さん",
+ "frenchFontType":0,
+ "italianText":"高嶺の花子さん",
+ "italianFontType":0,
+ "germanText":"高嶺の花子さん",
+ "germanFontType":0,
+ "spanishText":"高嶺の花子さん",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"高嶺の花子さん",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_w2mtom",
+ "japaneseText":"",
+ "englishUsText":"ともに",
+ "englishUsFontType":0,
+ "frenchText":"ともに",
+ "frenchFontType":0,
+ "italianText":"ともに",
+ "italianFontType":0,
+ "germanText":"ともに",
+ "germanFontType":0,
+ "spanishText":"ともに",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"ともに",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_mnkesk",
+ "japaneseText":"",
+ "englishUsText":"見たこともない景色",
+ "englishUsFontType":0,
+ "frenchText":"見たこともない景色",
+ "frenchFontType":0,
+ "italianText":"見たこともない景色",
+ "italianFontType":0,
+ "germanText":"見たこともない景色",
+ "germanFontType":0,
+ "spanishText":"見たこともない景色",
+ "spanishFontType":0,
+ "chineseTText":"見たこともない景色",
+ "chineseTFontType":0,
+ "koreanText":"見たこともない景色",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_tairik",
+ "japaneseText":"",
+ "englishUsText":"情熱大陸",
+ "englishUsFontType":0,
+ "frenchText":"情熱大陸",
+ "frenchFontType":0,
+ "italianText":"情熱大陸",
+ "italianFontType":0,
+ "germanText":"情熱大陸",
+ "germanFontType":0,
+ "spanishText":"情熱大陸",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"情熱大陸",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_th1682",
+ "japaneseText":"",
+ "englishUsText":"色は匂へど散りぬるを",
+ "englishUsFontType":0,
+ "frenchText":"色は匂へど散りぬるを",
+ "frenchFontType":0,
+ "italianText":"色は匂へど散りぬるを",
+ "italianFontType":0,
+ "germanText":"色は匂へど散りぬるを",
+ "germanFontType":0,
+ "spanishText":"色は匂へど散りぬるを",
+ "spanishFontType":0,
+ "chineseTText":"色は匂へど散りぬるを",
+ "chineseTFontType":0,
+ "koreanText":"色は匂へど散りぬるを",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_umtube",
+ "japaneseText":"",
+ "englishUsText":"YouTubeテーマソング",
+ "englishUsFontType":0,
+ "frenchText":"YouTubeテーマソング",
+ "frenchFontType":0,
+ "italianText":"YouTubeテーマソング",
+ "italianFontType":0,
+ "germanText":"YouTubeテーマソング",
+ "germanFontType":0,
+ "spanishText":"YouTubeテーマソング",
+ "spanishFontType":0,
+ "chineseTText":"YouTubeテーマソング",
+ "chineseTFontType":0,
+ "koreanText":"YouTubeテーマソング",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_cls10",
+ "japaneseText":"",
+ "englishUsText":"天国と地獄 序曲",
+ "englishUsFontType":0,
+ "frenchText":"天国と地獄 序曲",
+ "frenchFontType":0,
+ "italianText":"天国と地獄 序曲",
+ "italianFontType":0,
+ "germanText":"天国と地獄 序曲",
+ "germanFontType":0,
+ "spanishText":"天国と地獄 序曲",
+ "spanishFontType":0,
+ "chineseTText":"天国と地獄 序曲",
+ "chineseTFontType":0,
+ "koreanText":"天国と地獄 序曲",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_clsine",
+ "japaneseText":"",
+ "englishUsText":"アイネクライネナハトムジーク",
+ "englishUsFontType":0,
+ "frenchText":"アイネクライネナハトムジーク",
+ "frenchFontType":0,
+ "italianText":"アイネクライネナハトムジーク",
+ "italianFontType":0,
+ "germanText":"アイネクライネナハトムジーク",
+ "germanFontType":0,
+ "spanishText":"アイネクライネナハトムジーク",
+ "spanishFontType":0,
+ "chineseTText":"アイネクライネナハトムジーク",
+ "chineseTFontType":0,
+ "koreanText":"アイネクライネナハトムジーク",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_clskum",
+ "japaneseText":"",
+ "englishUsText":"熊蜂の飛行",
+ "englishUsFontType":0,
+ "frenchText":"熊蜂の飛行",
+ "frenchFontType":0,
+ "italianText":"熊蜂の飛行",
+ "italianFontType":0,
+ "germanText":"熊蜂の飛行",
+ "germanFontType":0,
+ "spanishText":"熊蜂の飛行",
+ "spanishFontType":0,
+ "chineseTText":"熊蜂の飛行",
+ "chineseTFontType":0,
+ "koreanText":"熊蜂の飛行",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_kirby",
+ "japaneseText":"",
+ "englishUsText":"星のカービィメドレー",
+ "englishUsFontType":0,
+ "frenchText":"星のカービィメドレー",
+ "frenchFontType":0,
+ "italianText":"星のカービィメドレー",
+ "italianFontType":0,
+ "germanText":"星のカービィメドレー",
+ "germanFontType":0,
+ "spanishText":"星のカービィメドレー",
+ "spanishFontType":0,
+ "chineseTText":"星のカービィメドレー",
+ "chineseTFontType":0,
+ "koreanText":"星のカービィメドレー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_rr1",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_aslt",
+ "japaneseText":"",
+ "englishUsText":"アサルト BGM1",
+ "englishUsFontType":0,
+ "frenchText":"アサルト BGM1",
+ "frenchFontType":0,
+ "italianText":"アサルト BGM1",
+ "italianFontType":0,
+ "germanText":"アサルト BGM1",
+ "germanFontType":0,
+ "spanishText":"アサルト BGM1",
+ "spanishFontType":0,
+ "chineseTText":"アサルト BGM1",
+ "chineseTFontType":0,
+ "koreanText":"アサルト BGM1",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_opng2",
+ "japaneseText":"",
+ "englishUsText":"虹色・夢色・太鼓色",
+ "englishUsFontType":0,
+ "frenchText":"虹色・夢色・太鼓色",
+ "frenchFontType":0,
+ "italianText":"虹色・夢色・太鼓色",
+ "italianFontType":0,
+ "germanText":"虹色・夢色・太鼓色",
+ "germanFontType":0,
+ "spanishText":"虹色・夢色・太鼓色",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"虹色・夢色・太鼓色",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_espera",
+ "japaneseText":"",
+ "englishUsText":"願いはエスペラント",
+ "englishUsFontType":0,
+ "frenchText":"願いはエスペラント",
+ "frenchFontType":0,
+ "italianText":"願いはエスペラント",
+ "italianFontType":0,
+ "germanText":"願いはエスペラント",
+ "germanFontType":0,
+ "spanishText":"願いはエスペラント",
+ "spanishFontType":0,
+ "chineseTText":"願いはエスペラント",
+ "chineseTFontType":0,
+ "koreanText":"願いはエスペラント",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_antoni",
+ "japaneseText":"",
+ "englishUsText":"アントニオ",
+ "englishUsFontType":0,
+ "frenchText":"アントニオ",
+ "frenchFontType":0,
+ "italianText":"アントニオ",
+ "italianFontType":0,
+ "germanText":"アントニオ",
+ "germanFontType":0,
+ "spanishText":"アントニオ",
+ "spanishFontType":0,
+ "chineseTText":"アントニオ",
+ "chineseTFontType":0,
+ "koreanText":"アントニオ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_carniv",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_ramen",
+ "japaneseText":"",
+ "englishUsText":"ラーメン de Yo-Men!!",
+ "englishUsFontType":0,
+ "frenchText":"ラーメン de Yo-Men!!",
+ "frenchFontType":0,
+ "italianText":"ラーメン de Yo-Men!!",
+ "italianFontType":0,
+ "germanText":"ラーメン de Yo-Men!!",
+ "germanFontType":0,
+ "spanishText":"ラーメン de Yo-Men!!",
+ "spanishFontType":0,
+ "chineseTText":"ラーメン de Yo-Men!!",
+ "chineseTFontType":0,
+ "koreanText":"ラーメン de Yo-Men!!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_butou5",
+ "japaneseText":"",
+ "englishUsText":"百花繚乱",
+ "englishUsFontType":0,
+ "frenchText":"百花繚乱",
+ "frenchFontType":0,
+ "italianText":"百花繚乱",
+ "italianFontType":0,
+ "germanText":"百花繚乱",
+ "germanFontType":0,
+ "spanishText":"百花繚乱",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"百花繚乱",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_kuzure",
+ "japaneseText":"",
+ "englishUsText":"鳳凰天舞無限崩れ",
+ "englishUsFontType":0,
+ "frenchText":"鳳凰天舞無限崩れ",
+ "frenchFontType":0,
+ "italianText":"鳳凰天舞無限崩れ",
+ "italianFontType":0,
+ "germanText":"鳳凰天舞無限崩れ",
+ "germanFontType":0,
+ "spanishText":"鳳凰天舞無限崩れ",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"鳳凰天舞無限崩れ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_hi4kko",
+ "japaneseText":"",
+ "englishUsText":"ひよっこファンタジー",
+ "englishUsFontType":0,
+ "frenchText":"ひよっこファンタジー",
+ "frenchFontType":0,
+ "italianText":"ひよっこファンタジー",
+ "italianFontType":0,
+ "germanText":"ひよっこファンタジー",
+ "germanFontType":0,
+ "spanishText":"ひよっこファンタジー",
+ "spanishFontType":0,
+ "chineseTText":"ひよっこファンタジー",
+ "chineseTFontType":0,
+ "koreanText":"ひよっこファンタジー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_mgwrt2",
+ "japaneseText":"",
+ "englishUsText":"蓄勢",
+ "englishUsFontType":0,
+ "frenchText":"蓄勢",
+ "frenchFontType":0,
+ "italianText":"蓄勢",
+ "italianFontType":0,
+ "germanText":"蓄勢",
+ "germanFontType":0,
+ "spanishText":"蓄勢",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"蓄勢",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_carnat",
+ "japaneseText":"",
+ "englishUsText":"和蘭撫子",
+ "englishUsFontType":0,
+ "frenchText":"和蘭撫子",
+ "frenchFontType":0,
+ "italianText":"和蘭撫子",
+ "italianFontType":0,
+ "germanText":"和蘭撫子",
+ "germanFontType":0,
+ "spanishText":"和蘭撫子",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"和蘭撫子",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_iamsyn",
+ "japaneseText":"",
+ "englishUsText":"ボクハシンセ",
+ "englishUsFontType":0,
+ "frenchText":"ボクハシンセ",
+ "frenchFontType":0,
+ "italianText":"ボクハシンセ",
+ "italianFontType":0,
+ "germanText":"ボクハシンセ",
+ "germanFontType":0,
+ "spanishText":"ボクハシンセ",
+ "spanishFontType":0,
+ "chineseTText":"ボクハシンセ",
+ "chineseTFontType":0,
+ "koreanText":"ボクハシンセ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_invara",
+ "japaneseText":"",
+ "englishUsText":"女帝 ~インバラトゥーラ~",
+ "englishUsFontType":0,
+ "frenchText":"女帝 ~インバラトゥーラ~",
+ "frenchFontType":0,
+ "italianText":"女帝 ~インバラトゥーラ~",
+ "italianFontType":0,
+ "germanText":"女帝 ~インバラトゥーラ~",
+ "germanFontType":0,
+ "spanishText":"女帝 ~インバラトゥーラ~",
+ "spanishFontType":0,
+ "chineseTText":"女帝 ~インバラトゥーラ~",
+ "chineseTFontType":0,
+ "koreanText":"女帝 ~インバラトゥーラ~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_twctt",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_memesi",
+ "japaneseText":"",
+ "englishUsText":"女々しくて",
+ "englishUsFontType":0,
+ "frenchText":"女々しくて",
+ "frenchFontType":0,
+ "italianText":"女々しくて",
+ "italianFontType":0,
+ "germanText":"女々しくて",
+ "germanFontType":0,
+ "spanishText":"女々しくて",
+ "spanishFontType":0,
+ "chineseTText":"女々しくて",
+ "chineseTFontType":0,
+ "koreanText":"女々しくて",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_xjapa2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_poptep",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_lupatr",
+ "japaneseText":"",
+ "englishUsText":"ルパンレンジャーVSパトレンジャー",
+ "englishUsFontType":0,
+ "frenchText":"ルパンレンジャーVSパトレンジャー",
+ "frenchFontType":0,
+ "italianText":"ルパンレンジャーVSパトレンジャー",
+ "italianFontType":0,
+ "germanText":"ルパンレンジャーVSパトレンジャー",
+ "germanFontType":0,
+ "spanishText":"ルパンレンジャーVSパトレンジャー",
+ "spanishFontType":0,
+ "chineseTText":"ルパンレンジャーVSパトレンジャー",
+ "chineseTFontType":0,
+ "koreanText":"ルパンレンジャーVSパトレンジャー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_moana",
+ "japaneseText":"",
+ "englishUsText":"どこまでも~How Far I’ll Go~",
+ "englishUsFontType":0,
+ "frenchText":"どこまでも~How Far I’ll Go~",
+ "frenchFontType":0,
+ "italianText":"どこまでも~How Far I’ll Go~",
+ "italianFontType":0,
+ "germanText":"どこまでも~How Far I’ll Go~",
+ "germanFontType":0,
+ "spanishText":"どこまでも~How Far I’ll Go~",
+ "spanishFontType":0,
+ "chineseTText":"どこまでも~How Far I’ll Go~",
+ "chineseTFontType":0,
+ "koreanText":"どこまでも~How Far I’ll Go~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_sanpo",
+ "japaneseText":"",
+ "englishUsText":"さんぽ",
+ "englishUsFontType":0,
+ "frenchText":"さんぽ",
+ "frenchFontType":0,
+ "italianText":"さんぽ",
+ "italianFontType":0,
+ "germanText":"さんぽ",
+ "germanFontType":0,
+ "spanishText":"さんぽ",
+ "spanishFontType":0,
+ "chineseTText":"さんぽ",
+ "chineseTFontType":0,
+ "koreanText":"さんぽ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_doyo",
+ "japaneseText":"",
+ "englishUsText":"ABCの歌",
+ "englishUsFontType":0,
+ "frenchText":"ABCの歌",
+ "frenchFontType":0,
+ "italianText":"ABCの歌",
+ "italianFontType":0,
+ "germanText":"ABCの歌",
+ "germanFontType":0,
+ "spanishText":"ABCの歌",
+ "spanishFontType":0,
+ "chineseTText":"ABCの歌",
+ "chineseTFontType":0,
+ "koreanText":"ABCの歌",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_thgrip",
+ "japaneseText":"",
+ "englishUsText":"Grip & Break down !! -達人Edit.-",
+ "englishUsFontType":0,
+ "frenchText":"Grip & Break down !! -達人Edit.-",
+ "frenchFontType":0,
+ "italianText":"Grip & Break down !! -達人Edit.-",
+ "italianFontType":0,
+ "germanText":"Grip & Break down !! -達人Edit.-",
+ "germanFontType":0,
+ "spanishText":"Grip & Break down !! -達人Edit.-",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"Grip & Break down !! -達人Edit.-",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_thbad",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_imcanz",
+ "japaneseText":"",
+ "englishUsText":"あんずのうた",
+ "englishUsFontType":0,
+ "frenchText":"あんずのうた",
+ "frenchFontType":0,
+ "italianText":"あんずのうた",
+ "italianFontType":0,
+ "germanText":"あんずのうた",
+ "germanFontType":0,
+ "spanishText":"あんずのうた",
+ "spanishFontType":0,
+ "chineseTText":"あんずのうた",
+ "chineseTFontType":0,
+ "koreanText":"あんずのうた",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_clstoy",
+ "japaneseText":"",
+ "englishUsText":"おもちゃのシンフォニー",
+ "englishUsFontType":0,
+ "frenchText":"おもちゃのシンフォニー",
+ "frenchFontType":0,
+ "italianText":"おもちゃのシンフォニー",
+ "italianFontType":0,
+ "germanText":"おもちゃのシンフォニー",
+ "germanFontType":0,
+ "spanishText":"おもちゃのシンフォニー",
+ "spanishFontType":0,
+ "chineseTText":"おもちゃのシンフォニー",
+ "chineseTFontType":0,
+ "koreanText":"おもちゃのシンフォニー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_cls25",
+ "japaneseText":"",
+ "englishUsText":"交響曲第25番ト短調第一楽章",
+ "englishUsFontType":0,
+ "frenchText":"交響曲第25番ト短調第一楽章",
+ "frenchFontType":0,
+ "italianText":"交響曲第25番ト短調第一楽章",
+ "italianFontType":0,
+ "germanText":"交響曲第25番ト短調第一楽章",
+ "germanFontType":0,
+ "spanishText":"交響曲第25番ト短調第一楽章",
+ "spanishFontType":0,
+ "chineseTText":"交響曲第25番ト短調第一楽章",
+ "chineseTFontType":0,
+ "koreanText":"交響曲第25番ト短調第一楽章",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_cls7",
+ "japaneseText":"",
+ "englishUsText":"交響曲第7番から",
+ "englishUsFontType":0,
+ "frenchText":"交響曲第7番から",
+ "frenchFontType":0,
+ "italianText":"交響曲第7番から",
+ "italianFontType":0,
+ "germanText":"交響曲第7番から",
+ "germanFontType":0,
+ "spanishText":"交響曲第7番から",
+ "spanishFontType":0,
+ "chineseTText":"交響曲第7番から",
+ "chineseTFontType":0,
+ "koreanText":"交響曲第7番から",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_clscam",
+ "japaneseText":"",
+ "englishUsText":"ラ・カンパネラ",
+ "englishUsFontType":0,
+ "frenchText":"ラ・カンパネラ",
+ "frenchFontType":0,
+ "italianText":"ラ・カンパネラ",
+ "italianFontType":0,
+ "germanText":"ラ・カンパネラ",
+ "germanFontType":0,
+ "spanishText":"ラ・カンパネラ",
+ "spanishFontType":0,
+ "chineseTText":"ラ・カンパネラ",
+ "chineseTFontType":0,
+ "koreanText":"ラ・カンパネラ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_clsh",
+ "japaneseText":"",
+ "englishUsText":"ハンガリー舞曲第5番",
+ "englishUsFontType":0,
+ "frenchText":"ハンガリー舞曲第5番",
+ "frenchFontType":0,
+ "italianText":"ハンガリー舞曲第5番",
+ "italianFontType":0,
+ "germanText":"ハンガリー舞曲第5番",
+ "germanFontType":0,
+ "spanishText":"ハンガリー舞曲第5番",
+ "spanishFontType":0,
+ "chineseTText":"ハンガリー舞曲第5番",
+ "chineseTFontType":0,
+ "koreanText":"ハンガリー舞曲第5番",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_clsika",
+ "japaneseText":"",
+ "englishUsText":"レクイエム 怒りの日より",
+ "englishUsFontType":0,
+ "frenchText":"レクイエム 怒りの日より",
+ "frenchFontType":0,
+ "italianText":"レクイエム 怒りの日より",
+ "italianFontType":0,
+ "germanText":"レクイエム 怒りの日より",
+ "germanFontType":0,
+ "spanishText":"レクイエム 怒りの日より",
+ "spanishFontType":0,
+ "chineseTText":"レクイエム 怒りの日より",
+ "chineseTFontType":0,
+ "koreanText":"レクイエム 怒りの日より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_clsnut",
+ "japaneseText":"",
+ "englishUsText":"行進曲「くるみ割り人形」から",
+ "englishUsFontType":0,
+ "frenchText":"行進曲「くるみ割り人形」から",
+ "frenchFontType":0,
+ "italianText":"行進曲「くるみ割り人形」から",
+ "italianFontType":0,
+ "germanText":"行進曲「くるみ割り人形」から",
+ "germanFontType":0,
+ "spanishText":"行進曲「くるみ割り人形」から",
+ "spanishFontType":0,
+ "chineseTText":"行進曲「くるみ割り人形」から",
+ "chineseTFontType":0,
+ "koreanText":"行進曲「くるみ割り人形」から",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_jupt",
+ "japaneseText":"",
+ "englishUsText":"木星",
+ "englishUsFontType":0,
+ "frenchText":"木星",
+ "frenchFontType":0,
+ "italianText":"木星",
+ "italianFontType":0,
+ "germanText":"木星",
+ "germanFontType":0,
+ "spanishText":"木星",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"木星",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_clsoft",
+ "japaneseText":"",
+ "englishUsText":"モンタギュー家とキャピュレット家",
+ "englishUsFontType":0,
+ "frenchText":"モンタギュー家とキャピュレット家",
+ "frenchFontType":0,
+ "italianText":"モンタギュー家とキャピュレット家",
+ "italianFontType":0,
+ "germanText":"モンタギュー家とキャピュレット家",
+ "germanFontType":0,
+ "spanishText":"モンタギュー家とキャピュレット家",
+ "spanishFontType":0,
+ "chineseTText":"モンタギュー家とキャピュレット家",
+ "chineseTFontType":0,
+ "koreanText":"モンタギュー家とキャピュレット家",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_howlin",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_butamn",
+ "japaneseText":"",
+ "englishUsText":"おまえブタメン!",
+ "englishUsFontType":0,
+ "frenchText":"おまえブタメン!",
+ "frenchFontType":0,
+ "italianText":"おまえブタメン!",
+ "italianFontType":0,
+ "germanText":"おまえブタメン!",
+ "germanFontType":0,
+ "spanishText":"おまえブタメン!",
+ "spanishFontType":0,
+ "chineseTText":"おまえブタメン!",
+ "chineseTFontType":0,
+ "koreanText":"おまえブタメン!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_clscpl",
+ "japaneseText":"",
+ "englishUsText":"クラポルポルスカ",
+ "englishUsFontType":0,
+ "frenchText":"クラポルポルスカ",
+ "frenchFontType":0,
+ "italianText":"クラポルポルスカ",
+ "italianFontType":0,
+ "germanText":"クラポルポルスカ",
+ "germanFontType":0,
+ "spanishText":"クラポルポルスカ",
+ "spanishFontType":0,
+ "chineseTText":"クラポルポルスカ",
+ "chineseTFontType":0,
+ "koreanText":"クラポルポルスカ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_pacmce",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_nekotm",
+ "japaneseText":"",
+ "englishUsText":"ほんわか家族~ネコトモのうた~",
+ "englishUsFontType":0,
+ "frenchText":"ほんわか家族~ネコトモのうた~",
+ "frenchFontType":0,
+ "italianText":"ほんわか家族~ネコトモのうた~",
+ "italianFontType":0,
+ "germanText":"ほんわか家族~ネコトモのうた~",
+ "germanFontType":0,
+ "spanishText":"ほんわか家族~ネコトモのうた~",
+ "spanishFontType":0,
+ "chineseTText":"ほんわか家族~ネコトモのうた~",
+ "chineseTFontType":0,
+ "koreanText":"ほんわか家族~ネコトモのうた~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_tecdrv",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_crtrcs",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_sw1op",
+ "japaneseText":"",
+ "englishUsText":"フリフリ♪ノリノリ♪",
+ "englishUsFontType":0,
+ "frenchText":"フリフリ♪ノリノリ♪",
+ "frenchFontType":0,
+ "italianText":"フリフリ♪ノリノリ♪",
+ "italianFontType":0,
+ "germanText":"フリフリ♪ノリノリ♪",
+ "germanFontType":0,
+ "spanishText":"フリフリ♪ノリノリ♪",
+ "spanishFontType":0,
+ "chineseTText":"フリフリ♪ノリノリ♪",
+ "chineseTFontType":0,
+ "koreanText":"フリフリ♪ノリノリ♪",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_isan",
+ "japaneseText":"",
+ "englishUsText":"和有るど経りて維持・序",
+ "englishUsFontType":0,
+ "frenchText":"和有るど経りて維持・序",
+ "frenchFontType":0,
+ "italianText":"和有るど経りて維持・序",
+ "italianFontType":0,
+ "germanText":"和有るど経りて維持・序",
+ "germanFontType":0,
+ "spanishText":"和有るど経りて維持・序",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"和有るど経りて維持・序",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_tabetm",
+ "japaneseText":"",
+ "englishUsText":"タベテモタベテモ",
+ "englishUsFontType":0,
+ "frenchText":"タベテモタベテモ",
+ "frenchFontType":0,
+ "italianText":"タベテモタベテモ",
+ "italianFontType":0,
+ "germanText":"タベテモタベテモ",
+ "germanFontType":0,
+ "spanishText":"タベテモタベテモ",
+ "spanishFontType":0,
+ "chineseTText":"タベテモタベテモ",
+ "chineseTFontType":0,
+ "koreanText":"タベテモタベテモ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_voidse",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_eigas",
+ "japaneseText":"",
+ "englishUsText":"エクラン ルブラン",
+ "englishUsFontType":0,
+ "frenchText":"エクラン ルブラン",
+ "frenchFontType":0,
+ "italianText":"エクラン ルブラン",
+ "italianFontType":0,
+ "germanText":"エクラン ルブラン",
+ "germanFontType":0,
+ "spanishText":"エクラン ルブラン",
+ "spanishFontType":0,
+ "chineseTText":"エクラン ルブラン",
+ "chineseTFontType":0,
+ "koreanText":"エクラン ルブラン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_tondem",
+ "japaneseText":"",
+ "englishUsText":"トンデ・ミテ",
+ "englishUsFontType":0,
+ "frenchText":"トンデ・ミテ",
+ "frenchFontType":0,
+ "italianText":"トンデ・ミテ",
+ "italianFontType":0,
+ "germanText":"トンデ・ミテ",
+ "germanFontType":0,
+ "spanishText":"トンデ・ミテ",
+ "spanishFontType":0,
+ "chineseTText":"トンデ・ミテ",
+ "chineseTFontType":0,
+ "koreanText":"トンデ・ミテ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_zense",
+ "japaneseText":"前前前世",
+ "englishUsText":"Zenzenzense",
+ "englishUsFontType":3,
+ "frenchText":"Zenzenzense",
+ "frenchFontType":3,
+ "italianText":"Zenzenzense",
+ "italianFontType":3,
+ "germanText":"Zenzenzense",
+ "germanFontType":3,
+ "spanishText":"Zenzenzense",
+ "spanishFontType":3,
+ "chineseTText":"前前前世",
+ "chineseTFontType":1,
+ "koreanText":"전 전 전생",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_natsu",
+ "japaneseText":"夏祭り",
+ "englishUsText":"Natsumatsuri",
+ "englishUsFontType":3,
+ "frenchText":"Natsumatsuri",
+ "frenchFontType":3,
+ "italianText":"Natsumatsuri",
+ "italianFontType":3,
+ "germanText":"Natsumatsuri",
+ "germanFontType":3,
+ "spanishText":"Natsumatsuri",
+ "spanishFontType":3,
+ "chineseTText":"夏祭",
+ "chineseTFontType":1,
+ "koreanText":"나츠마츠리",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_skorpg",
+ "japaneseText":"RPG",
+ "englishUsText":"RPG",
+ "englishUsFontType":3,
+ "frenchText":"RPG",
+ "frenchFontType":3,
+ "italianText":"RPG",
+ "italianFontType":3,
+ "germanText":"RPG",
+ "germanFontType":3,
+ "spanishText":"RPG",
+ "spanishFontType":3,
+ "chineseTText":"RPG",
+ "chineseTFontType":1,
+ "koreanText":"RPG",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_ryusei",
+ "japaneseText":"R.Y.U.S.E.I.",
+ "englishUsText":"R.Y.U.S.E.I.",
+ "englishUsFontType":3,
+ "frenchText":"R.Y.U.S.E.I.",
+ "frenchFontType":3,
+ "italianText":"R.Y.U.S.E.I.",
+ "italianFontType":3,
+ "germanText":"R.Y.U.S.E.I.",
+ "germanFontType":3,
+ "spanishText":"R.Y.U.S.E.I.",
+ "spanishFontType":3,
+ "chineseTText":"R.Y.U.S.E.I.",
+ "chineseTFontType":1,
+ "koreanText":"R.Y.U.S.E.I.",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_train",
+ "japaneseText":"TRAIN-TRAIN",
+ "englishUsText":"TRAIN-TRAIN",
+ "englishUsFontType":3,
+ "frenchText":"TRAIN-TRAIN",
+ "frenchFontType":3,
+ "italianText":"TRAIN-TRAIN",
+ "italianFontType":3,
+ "germanText":"TRAIN-TRAIN",
+ "germanFontType":3,
+ "spanishText":"TRAIN-TRAIN",
+ "spanishFontType":3,
+ "chineseTText":"TRAIN-TRAIN",
+ "chineseTFontType":1,
+ "koreanText":"TRAIN-TRAIN",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_kekka2",
+ "japaneseText":"シュガーソングとビターステップ",
+ "englishUsText":"Sugar Song & Bitter Step",
+ "englishUsFontType":3,
+ "frenchText":"Sugar Song & Bitter Step",
+ "frenchFontType":3,
+ "italianText":"Sugar Song & Bitter Step",
+ "italianFontType":3,
+ "germanText":"Sugar Song & Bitter Step",
+ "germanFontType":3,
+ "spanishText":"Sugar Song & Bitter Step",
+ "spanishFontType":3,
+ "chineseTText":"Sugar Song & Bitter Step",
+ "chineseTFontType":1,
+ "koreanText":"Sugar Song & Bitter Step",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_draond",
+ "japaneseText":"踊れ・どれ・ドラ ドラえもん音頭",
+ "englishUsText":"Odore Dore Dora Doraemon Ondo",
+ "englishUsFontType":3,
+ "frenchText":"Odore Dore Dora Doraemon Ondo",
+ "frenchFontType":3,
+ "italianText":"Odore Dore Dora Doraemon Ondo",
+ "italianFontType":3,
+ "germanText":"Odore Dore Dora Doraemon Ondo",
+ "germanFontType":3,
+ "spanishText":"Odore Dore Dora Doraemon Ondo",
+ "spanishFontType":3,
+ "chineseTText":"Odore Dore Dora Doraemon Ondo",
+ "chineseTFontType":1,
+ "koreanText":"Odore Dore Dora Doraemon Ondo",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_kim100",
+ "japaneseText":"キミに100パーセント",
+ "englishUsText":"Kimi ni 100 PERCENT",
+ "englishUsFontType":3,
+ "frenchText":"Kimi ni 100 PERCENT",
+ "frenchFontType":3,
+ "italianText":"Kimi ni 100 PERCENT",
+ "italianFontType":3,
+ "germanText":"Kimi ni 100 PERCENT",
+ "germanFontType":3,
+ "spanishText":"Kimi ni 100 PERCENT",
+ "spanishFontType":3,
+ "chineseTText":"Kimi ni 100 PERCENT",
+ "chineseTFontType":1,
+ "koreanText":"Kimi ni 100 PERCENT",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_krbld",
+ "japaneseText":"Be The One",
+ "englishUsText":"Be The One",
+ "englishUsFontType":3,
+ "frenchText":"Be The One",
+ "frenchFontType":3,
+ "italianText":"Be The One",
+ "italianFontType":3,
+ "germanText":"Be The One",
+ "germanFontType":3,
+ "spanishText":"Be The One",
+ "spanishFontType":3,
+ "chineseTText":"Be The One",
+ "chineseTFontType":1,
+ "koreanText":"Be The One",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_chala",
+ "japaneseText":"CHA-LA HEAD-CHA-LA",
+ "englishUsText":"CHA-LA HEAD-CHA-LA",
+ "englishUsFontType":3,
+ "frenchText":"CHA-LA HEAD-CHA-LA",
+ "frenchFontType":3,
+ "italianText":"CHA-LA HEAD-CHA-LA",
+ "italianFontType":3,
+ "germanText":"CHA-LA HEAD-CHA-LA",
+ "germanFontType":3,
+ "spanishText":"CHA-LA HEAD-CHA-LA",
+ "spanishFontType":3,
+ "chineseTText":"CHA-LA HEAD-CHA-LA",
+ "chineseTFontType":1,
+ "koreanText":"CHA-LA HEAD-CHA-LA",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_weare0",
+ "japaneseText":"ウィーアー!",
+ "englishUsText":"We Are!",
+ "englishUsFontType":3,
+ "frenchText":"We Are!",
+ "frenchFontType":3,
+ "italianText":"We Are!",
+ "italianFontType":3,
+ "germanText":"We Are!",
+ "germanFontType":3,
+ "spanishText":"We Are!",
+ "spanishFontType":3,
+ "chineseTText":"We are!",
+ "chineseTFontType":1,
+ "koreanText":"We are!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_eva",
+ "japaneseText":"残酷な天使のテーゼ",
+ "englishUsText":"A Cruel Angel's Thesis",
+ "englishUsFontType":3,
+ "frenchText":"A Cruel Angel's Thesis",
+ "frenchFontType":3,
+ "italianText":"A Cruel Angel's Thesis",
+ "italianFontType":3,
+ "germanText":"A Cruel Angel's Thesis",
+ "germanFontType":3,
+ "spanishText":"A Cruel Angel's Thesis",
+ "spanishFontType":3,
+ "chineseTText":"殘酷天使的行動綱領",
+ "chineseTFontType":1,
+ "koreanText":"잔코쿠나텐시노테제",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_pkalol",
+ "japaneseText":"アローラ!!",
+ "englishUsText":"Alola!",
+ "englishUsFontType":3,
+ "frenchText":"Alola!",
+ "frenchFontType":3,
+ "italianText":"Alola!",
+ "italianFontType":3,
+ "germanText":"Alola!",
+ "germanFontType":3,
+ "spanishText":"Alola!",
+ "spanishFontType":3,
+ "chineseTText":"阿羅拉!!",
+ "chineseTFontType":1,
+ "koreanText":"알로라!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sentoc",
+ "japaneseText":"いつも何度でも",
+ "englishUsText":"Itsumo Nandodemo",
+ "englishUsFontType":3,
+ "frenchText":"Itsumo Nandodemo",
+ "frenchFontType":3,
+ "italianText":"Itsumo Nandodemo",
+ "italianFontType":3,
+ "germanText":"Itsumo Nandodemo",
+ "germanFontType":3,
+ "spanishText":"Itsumo Nandodemo",
+ "spanishFontType":3,
+ "chineseTText":"Itsumo Nandodemo",
+ "chineseTFontType":1,
+ "koreanText":"Itsumo Nandodemo",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_odoru",
+ "japaneseText":"おどるポンポコリン",
+ "englishUsText":"Odoru Ponpokorin",
+ "englishUsFontType":3,
+ "frenchText":"Odoru Ponpokorin",
+ "frenchFontType":3,
+ "italianText":"Odoru Ponpokorin",
+ "italianFontType":3,
+ "germanText":"Odoru Ponpokorin",
+ "germanFontType":3,
+ "spanishText":"Odoru Ponpokorin",
+ "spanishFontType":3,
+ "chineseTText":"大家來跳舞",
+ "chineseTFontType":1,
+ "koreanText":"춤추는 폼포코린",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_anp",
+ "japaneseText":"アンパンマンのマーチ",
+ "englishUsText":"ANPANMAN'S MARCH",
+ "englishUsFontType":3,
+ "frenchText":"ANPANMAN'S MARCH",
+ "frenchFontType":3,
+ "italianText":"ANPANMAN’S MARCH",
+ "italianFontType":3,
+ "germanText":"ANPANMAN’S MARCH",
+ "germanFontType":3,
+ "spanishText":"ANPANMAN’S MARCH",
+ "spanishFontType":3,
+ "chineseTText":"麵包超人進行曲",
+ "chineseTFontType":1,
+ "koreanText":"ANPANMAN’S MARCH",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_yokait",
+ "japaneseText":"ようかい体操第一",
+ "englishUsText":"Yo-kai Exercise No. 1",
+ "englishUsFontType":3,
+ "frenchText":"Yo-kai Exercise No. 1",
+ "frenchFontType":3,
+ "italianText":"Yo-kai Exercise No. 1",
+ "italianFontType":3,
+ "germanText":"Yo-kai Exercise No. 1",
+ "germanFontType":3,
+ "spanishText":"Yo-kai Exercise No. 1",
+ "spanishFontType":3,
+ "chineseTText":"妖怪體操第一",
+ "chineseTFontType":1,
+ "koreanText":"요우카이 타이소 다이이치",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_gumidp",
+ "japaneseText":"拝啓ドッペルゲンガー",
+ "englishUsText":"Haikei Doppelganger",
+ "englishUsFontType":3,
+ "frenchText":"Haikei Doppelganger",
+ "frenchFontType":3,
+ "italianText":"Haikei Doppelganger",
+ "italianFontType":3,
+ "germanText":"Haikei Doppelganger",
+ "germanFontType":3,
+ "spanishText":"Haikei Doppelganger",
+ "spanishFontType":3,
+ "chineseTText":"Haikei Doppelganger",
+ "chineseTFontType":1,
+ "koreanText":"Haikei Doppelganger",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_gumi10",
+ "japaneseText":"十面相 colorful ver.",
+ "englishUsText":"Jumenso - Colorful Version",
+ "englishUsFontType":3,
+ "frenchText":"Jumenso - Colorful Version",
+ "frenchFontType":3,
+ "italianText":"Jumenso - Colorful Version",
+ "italianFontType":3,
+ "germanText":"Jumenso - Colorful Version",
+ "germanFontType":3,
+ "spanishText":"Jumenso - Colorful Version",
+ "spanishFontType":3,
+ "chineseTText":"十面相 colorful ver.",
+ "chineseTFontType":1,
+ "koreanText":"쥬우멘소우 colorful ver.",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_onigir",
+ "japaneseText":"おにぎりはどこかしら♪",
+ "englishUsText":"ONIGIRI WA DOKOKASHIRA♪",
+ "englishUsFontType":3,
+ "frenchText":"ONIGIRI WA DOKOKASHIRA♪",
+ "frenchFontType":3,
+ "italianText":"ONIGIRI WA DOKOKASHIRA♪",
+ "italianFontType":3,
+ "germanText":"ONIGIRI WA DOKOKASHIRA♪",
+ "germanFontType":3,
+ "spanishText":"ONIGIRI WA DOKOKASHIRA♪",
+ "spanishFontType":3,
+ "chineseTText":"飯糰到哪裡去了♪",
+ "chineseTFontType":1,
+ "koreanText":"오니기리와 도코카시라♪",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_clstrk",
+ "japaneseText":"トルコ行進曲",
+ "englishUsText":"Turkish March",
+ "englishUsFontType":3,
+ "frenchText":"Marche turque",
+ "frenchFontType":3,
+ "italianText":"Marcia alla turca",
+ "italianFontType":3,
+ "germanText":"Türkischer Marsch",
+ "germanFontType":3,
+ "spanishText":"Marcha Turca",
+ "spanishFontType":3,
+ "chineseTText":"土耳其進行曲",
+ "chineseTFontType":1,
+ "koreanText":"터키 행진곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_spl2md",
+ "japaneseText":"スプラトゥーン2 メドレー",
+ "englishUsText":"Splatoon 2 Medley",
+ "englishUsFontType":3,
+ "frenchText":"Splatoon 2 Medley",
+ "frenchFontType":3,
+ "italianText":"Splatoon 2 Medley",
+ "italianFontType":3,
+ "germanText":"Splatoon 2 Medley",
+ "germanFontType":3,
+ "spanishText":"Splatoon 2 Medley",
+ "spanishFontType":3,
+ "chineseTText":"漆彈大作戰2組曲",
+ "chineseTFontType":1,
+ "koreanText":"Splatoon 2 Medley",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_trance",
+ "japaneseText":"エンジェル ドリーム",
+ "englishUsText":"Angel Dream",
+ "englishUsFontType":3,
+ "frenchText":"Angel Dream",
+ "frenchFontType":3,
+ "italianText":"Angel Dream",
+ "italianFontType":3,
+ "germanText":"Angel Dream",
+ "germanFontType":3,
+ "spanishText":"Angel Dream",
+ "spanishFontType":3,
+ "chineseTText":"Angel Dream",
+ "chineseTFontType":1,
+ "koreanText":"Angel Dream",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_6ne9om",
+ "japaneseText":"ドキドキ胸きゅん おまつりタイム",
+ "englishUsText":"Doki-Doki Mune-Kyun Omatsuri TIME",
+ "englishUsFontType":3,
+ "frenchText":"Doki-Doki Mune-Kyun Omatsuri TIME",
+ "frenchFontType":3,
+ "italianText":"Doki-Doki Mune-Kyun Omatsuri TIME",
+ "italianFontType":3,
+ "germanText":"Doki-Doki Mune-Kyun Omatsuri TIME",
+ "germanFontType":3,
+ "spanishText":"Doki-Doki Mune-Kyun Omatsuri TIME",
+ "spanishFontType":3,
+ "chineseTText":"心動亂跳祭典Time",
+ "chineseTFontType":1,
+ "koreanText":"도키도키무네큐웅 오마쓰리 타임",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_souryu",
+ "japaneseText":"双竜ノ乱",
+ "englishUsText":"SOURYU NO RAN",
+ "englishUsFontType":3,
+ "frenchText":"SOURYU NO RAN",
+ "frenchFontType":3,
+ "italianText":"SOURYU NO RAN",
+ "italianFontType":3,
+ "germanText":"SOURYU NO RAN",
+ "germanFontType":3,
+ "spanishText":"SOURYU NO RAN",
+ "spanishFontType":3,
+ "chineseTText":"雙龍之亂",
+ "chineseTFontType":1,
+ "koreanText":"소우류우노 란",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_kakunin",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_tmap4",
+ "japaneseText":"tmap4",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_mario4",
+ "japaneseText":"Jump Up, Super Star! Short Version",
+ "englishUsText":"Jump Up, Super Star! Short Version",
+ "englishUsFontType":3,
+ "frenchText":"Jump Up, Super Star! Short Version",
+ "frenchFontType":3,
+ "italianText":"Jump Up, Super Star! Short Version",
+ "italianFontType":3,
+ "germanText":"Jump Up, Super Star! Short Version",
+ "germanFontType":3,
+ "spanishText":"Jump Up, Super Star! Short Version",
+ "spanishFontType":3,
+ "chineseTText":"Jump Up, Super Star! Short Version",
+ "chineseTFontType":1,
+ "koreanText":"Jump Up, Super Star! Short Version",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_furiall",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_furidon",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_furikatsu",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_kishi2",
+ "japaneseText":"One Night Carnival",
+ "englishUsText":"One Night Carnival",
+ "englishUsFontType":3,
+ "frenchText":"One Night Carnival",
+ "frenchFontType":3,
+ "italianText":"One Night Carnival",
+ "italianFontType":3,
+ "germanText":"One Night Carnival",
+ "germanFontType":3,
+ "spanishText":"One Night Carnival",
+ "spanishFontType":3,
+ "chineseTText":"One Night Carnival",
+ "chineseTFontType":1,
+ "koreanText":"One Night Carnival",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_bn875",
+ "japaneseText":"高嶺の花子さん",
+ "englishUsText":"Takaneno Hanakosan",
+ "englishUsFontType":3,
+ "frenchText":"Takaneno Hanakosan",
+ "frenchFontType":3,
+ "italianText":"Takaneno Hanakosan",
+ "italianFontType":3,
+ "germanText":"Takaneno Hanakosan",
+ "germanFontType":3,
+ "spanishText":"Takaneno Hanakosan",
+ "spanishFontType":3,
+ "chineseTText":"高嶺の花子さん",
+ "chineseTFontType":1,
+ "koreanText":"Takaneno Hanakosan",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_w2mtom",
+ "japaneseText":"ともに",
+ "englishUsText":"Tomoni",
+ "englishUsFontType":3,
+ "frenchText":"Tomoni",
+ "frenchFontType":3,
+ "italianText":"Tomoni",
+ "italianFontType":3,
+ "germanText":"Tomoni",
+ "germanFontType":3,
+ "spanishText":"Tomoni",
+ "spanishFontType":3,
+ "chineseTText":"ともに",
+ "chineseTFontType":1,
+ "koreanText":"Tomoni",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_mnkesk",
+ "japaneseText":"見たこともない景色",
+ "englishUsText":"Mita Koto mo Nai Keshiki",
+ "englishUsFontType":3,
+ "frenchText":"Mita Koto mo Nai Keshiki",
+ "frenchFontType":3,
+ "italianText":"Mita Koto mo Nai Keshiki",
+ "italianFontType":3,
+ "germanText":"Mita Koto mo Nai Keshiki",
+ "germanFontType":3,
+ "spanishText":"Mita Koto mo Nai Keshiki",
+ "spanishFontType":3,
+ "chineseTText":"從未見過的景色",
+ "chineseTFontType":1,
+ "koreanText":"한 번도 본 적 없는 풍경",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_tairik",
+ "japaneseText":"情熱大陸",
+ "englishUsText":"JONETSU - TAIRIKU",
+ "englishUsFontType":3,
+ "frenchText":"JONETSU - TAIRIKU",
+ "frenchFontType":3,
+ "italianText":"JONETSU - TAIRIKU",
+ "italianFontType":3,
+ "germanText":"JONETSU - TAIRIKU",
+ "germanFontType":3,
+ "spanishText":"JONETSU - TAIRIKU",
+ "spanishFontType":3,
+ "chineseTText":"情熱大陸",
+ "chineseTFontType":1,
+ "koreanText":"정열대륙",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_th1682",
+ "japaneseText":"色は匂へど散りぬるを",
+ "englishUsText":"Iro wa Niho e do Chiri nuru o",
+ "englishUsFontType":3,
+ "frenchText":"Iro wa Niho e do Chiri nuru o",
+ "frenchFontType":3,
+ "italianText":"Iro wa Niho e do Chiri nuru o",
+ "italianFontType":3,
+ "germanText":"Iro wa Niho e do Chiri nuru o",
+ "germanFontType":3,
+ "spanishText":"Iro wa Niho e do Chiri nuru o",
+ "spanishFontType":3,
+ "chineseTText":"花開艷麗終散落",
+ "chineseTFontType":1,
+ "koreanText":"이로와 니호헤도 치리누루오",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_umtube",
+ "japaneseText":"YouTubeテーマソング",
+ "englishUsText":"YouTube Theme Song",
+ "englishUsFontType":3,
+ "frenchText":"YouTube Theme Song",
+ "frenchFontType":3,
+ "italianText":"YouTube Theme Song",
+ "italianFontType":3,
+ "germanText":"YouTube Theme Song",
+ "germanFontType":3,
+ "spanishText":"YouTube Theme Song",
+ "spanishFontType":3,
+ "chineseTText":"YouTube主題曲",
+ "chineseTFontType":1,
+ "koreanText":"YouTube Theme Song",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_cls10",
+ "japaneseText":"天国と地獄 序曲",
+ "englishUsText":"Overture from 'Orpheus in the Underworld'",
+ "englishUsFontType":3,
+ "frenchText":"Overture from 'Orpheus in the Underworld'",
+ "frenchFontType":3,
+ "italianText":"Overture from 'Orpheus in the Underworld'",
+ "italianFontType":3,
+ "germanText":"Overture from 'Orpheus in the Underworld'",
+ "germanFontType":3,
+ "spanishText":"Overture from 'Orpheus in the Underworld'",
+ "spanishFontType":3,
+ "chineseTText":"天堂與地獄序曲",
+ "chineseTFontType":1,
+ "koreanText":"천국과 지옥 서곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_clsine",
+ "japaneseText":"アイネクライネナハトムジーク",
+ "englishUsText":"A Little Serenade",
+ "englishUsFontType":3,
+ "frenchText":"Une petite musique de nuit",
+ "frenchFontType":3,
+ "italianText":"Piccola serenata notturna",
+ "italianFontType":3,
+ "germanText":"Eine kleine Nachtmusik",
+ "germanFontType":3,
+ "spanishText":"Pequeña serenata nocturna",
+ "spanishFontType":3,
+ "chineseTText":"弦樂小夜曲",
+ "chineseTFontType":1,
+ "koreanText":"아이네 클라이네 나흐트무지크",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_clskum",
+ "japaneseText":"熊蜂の飛行",
+ "englishUsText":"Flight of the Bumblebee",
+ "englishUsFontType":3,
+ "frenchText":"Le Vol du Bourdon",
+ "frenchFontType":3,
+ "italianText":"Il volo del calabrone",
+ "italianFontType":3,
+ "germanText":"Hummelflug",
+ "germanFontType":3,
+ "spanishText":"El vuelo del moscardón",
+ "spanishFontType":3,
+ "chineseTText":"大黃蜂的飛行",
+ "chineseTFontType":1,
+ "koreanText":"왕벌의 비행",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_kirby",
+ "japaneseText":"星のカービィメドレー",
+ "englishUsText":"Kirby Medley",
+ "englishUsFontType":3,
+ "frenchText":"Kirby Medley",
+ "frenchFontType":3,
+ "italianText":"Kirby Medley",
+ "italianFontType":3,
+ "germanText":"Kirby Medley",
+ "germanFontType":3,
+ "spanishText":"Kirby Medley",
+ "spanishFontType":3,
+ "chineseTText":"星之卡比組曲",
+ "chineseTFontType":1,
+ "koreanText":"별의 커비 메들리",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_rr1",
+ "japaneseText":"Ridge Racer",
+ "englishUsText":"Ridge Racer",
+ "englishUsFontType":3,
+ "frenchText":"Ridge Racer",
+ "frenchFontType":3,
+ "italianText":"Ridge Racer",
+ "italianFontType":3,
+ "germanText":"Ridge Racer",
+ "germanFontType":3,
+ "spanishText":"Ridge Racer",
+ "spanishFontType":3,
+ "chineseTText":"Ridge Racer",
+ "chineseTFontType":1,
+ "koreanText":"Ridge Racer",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_aslt",
+ "japaneseText":"アサルト BGM1",
+ "englishUsText":"ASSAULT BGM1",
+ "englishUsFontType":3,
+ "frenchText":"ASSAULT BGM1",
+ "frenchFontType":3,
+ "italianText":"ASSAULT BGM1",
+ "italianFontType":3,
+ "germanText":"ASSAULT BGM1",
+ "germanFontType":3,
+ "spanishText":"ASSAULT BGM1",
+ "spanishFontType":3,
+ "chineseTText":"ASSAULT BGM1",
+ "chineseTFontType":1,
+ "koreanText":"Assault BGM1",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_opng2",
+ "japaneseText":"虹色・夢色・太鼓色",
+ "englishUsText":"Nijiiro Yumeiro Taikoiro",
+ "englishUsFontType":3,
+ "frenchText":"Nijiiro Yumeiro Taikoiro",
+ "frenchFontType":3,
+ "italianText":"Nijiiro Yumeiro Taikoiro",
+ "italianFontType":3,
+ "germanText":"Nijiiro Yumeiro Taikoiro",
+ "germanFontType":3,
+ "spanishText":"Nijiiro Yumeiro Taikoiro",
+ "spanishFontType":3,
+ "chineseTText":"虹色・夢色・太鼓色",
+ "chineseTFontType":1,
+ "koreanText":"니지이로・유메이로・타이코이로",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_espera",
+ "japaneseText":"願いはエスペラント",
+ "englishUsText":"Negai Wa Esperanto",
+ "englishUsFontType":3,
+ "frenchText":"Negai Wa Esperanto",
+ "frenchFontType":3,
+ "italianText":"Negai Wa Esperanto",
+ "italianFontType":3,
+ "germanText":"Negai Wa Esperanto",
+ "germanFontType":3,
+ "spanishText":"Negai Wa Esperanto",
+ "spanishFontType":3,
+ "chineseTText":"願望是世界語",
+ "chineseTFontType":1,
+ "koreanText":"네가이와 에스페란토",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_antoni",
+ "japaneseText":"アントニオ",
+ "englishUsText":"Antonio",
+ "englishUsFontType":3,
+ "frenchText":"Antonio",
+ "frenchFontType":3,
+ "italianText":"Antonio",
+ "italianFontType":3,
+ "germanText":"Antonio",
+ "germanFontType":3,
+ "spanishText":"Antonio",
+ "spanishFontType":3,
+ "chineseTText":"安東尼",
+ "chineseTFontType":1,
+ "koreanText":"안토니오",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_carniv",
+ "japaneseText":"The Carnivorous Carnival",
+ "englishUsText":"The Carnivorous Carnival",
+ "englishUsFontType":3,
+ "frenchText":"The Carnivorous Carnival",
+ "frenchFontType":3,
+ "italianText":"The Carnivorous Carnival",
+ "italianFontType":3,
+ "germanText":"The Carnivorous Carnival",
+ "germanFontType":3,
+ "spanishText":"The Carnivorous Carnival",
+ "spanishFontType":3,
+ "chineseTText":"The Carnivorous Carnival",
+ "chineseTFontType":1,
+ "koreanText":"The Carnivorous Carnival",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_ramen",
+ "japaneseText":"ラーメン de Yo-Men!!",
+ "englishUsText":"RAMEN de Yo-Men!!",
+ "englishUsFontType":3,
+ "frenchText":"RAMEN de Yo-Men!!",
+ "frenchFontType":3,
+ "italianText":"RAMEN de Yo-Men!!",
+ "italianFontType":3,
+ "germanText":"RAMEN de Yo-Men!!",
+ "germanFontType":3,
+ "spanishText":"RAMEN de Yo-Men!!",
+ "spanishFontType":3,
+ "chineseTText":"拉麵 de Yo-Men!!",
+ "chineseTFontType":1,
+ "koreanText":"라멘 de Yo-Men!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_butou5",
+ "japaneseText":"百花繚乱",
+ "englishUsText":"Hyakka Ryoran",
+ "englishUsFontType":3,
+ "frenchText":"Hyakka Ryoran",
+ "frenchFontType":3,
+ "italianText":"Hyakka Ryoran",
+ "italianFontType":3,
+ "germanText":"Hyakka Ryoran",
+ "germanFontType":3,
+ "spanishText":"Hyakka Ryoran",
+ "spanishFontType":3,
+ "chineseTText":"百花繚乱",
+ "chineseTFontType":1,
+ "koreanText":"햐악카료우란",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_kuzure",
+ "japaneseText":"鳳凰天舞無限崩れ",
+ "englishUsText":"Ho-oh Tenbu Mugen Kuzure",
+ "englishUsFontType":3,
+ "frenchText":"Ho-oh Tenbu Mugen Kuzure",
+ "frenchFontType":3,
+ "italianText":"Ho-oh Tenbu Mugen Kuzure",
+ "italianFontType":3,
+ "germanText":"Ho-oh Tenbu Mugen Kuzure",
+ "germanFontType":3,
+ "spanishText":"Ho-oh Tenbu Mugen Kuzure",
+ "spanishFontType":3,
+ "chineseTText":"鳳凰天舞無限崩れ",
+ "chineseTFontType":1,
+ "koreanText":"호우오우텐부무겐쿠즈레",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_hi4kko",
+ "japaneseText":"ひよっこファンタジー",
+ "englishUsText":"Hiyokko Fantasy",
+ "englishUsFontType":3,
+ "frenchText":"Hiyokko Fantasy",
+ "frenchFontType":3,
+ "italianText":"Hiyokko Fantasy",
+ "italianFontType":3,
+ "germanText":"Hiyokko Fantasy",
+ "germanFontType":3,
+ "spanishText":"Hiyokko Fantasy",
+ "spanishFontType":3,
+ "chineseTText":"雛鳥幻想曲",
+ "chineseTFontType":1,
+ "koreanText":"히욧코 판타지",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_mgwrt2",
+ "japaneseText":"蓄勢",
+ "englishUsText":"Chikuzei",
+ "englishUsFontType":3,
+ "frenchText":"Chikuzei",
+ "frenchFontType":3,
+ "italianText":"Chikuzei",
+ "italianFontType":3,
+ "germanText":"Chikuzei",
+ "germanFontType":3,
+ "spanishText":"Chikuzei",
+ "spanishFontType":3,
+ "chineseTText":"蓄勢",
+ "chineseTFontType":1,
+ "koreanText":"치쿠제이",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_carnat",
+ "japaneseText":"和蘭撫子",
+ "englishUsText":"Carnation",
+ "englishUsFontType":3,
+ "frenchText":"Carnation",
+ "frenchFontType":3,
+ "italianText":"Carnation",
+ "italianFontType":3,
+ "germanText":"Carnation",
+ "germanFontType":3,
+ "spanishText":"Carnation",
+ "spanishFontType":3,
+ "chineseTText":"和蘭撫子",
+ "chineseTFontType":1,
+ "koreanText":"오란다 나데시코",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_iamsyn",
+ "japaneseText":"ボクハシンセ",
+ "englishUsText":"BOKU WA Synth",
+ "englishUsFontType":3,
+ "frenchText":"BOKU WA Synth",
+ "frenchFontType":3,
+ "italianText":"BOKU WA Synth",
+ "italianFontType":3,
+ "germanText":"BOKU WA Synth",
+ "germanFontType":3,
+ "spanishText":"BOKU WA Synth",
+ "spanishFontType":3,
+ "chineseTText":"我是合成器",
+ "chineseTFontType":1,
+ "koreanText":"보쿠와신세",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_invara",
+ "japaneseText":"女帝 ~インバラトゥーラ~",
+ "englishUsText":"Jotei -Imbiratula-",
+ "englishUsFontType":3,
+ "frenchText":"Jotei -Imbiratula-",
+ "frenchFontType":3,
+ "italianText":"Jotei -Imbiratula-",
+ "italianFontType":3,
+ "germanText":"Jotei -Imbiratula-",
+ "germanFontType":3,
+ "spanishText":"Jotei -Imbiratula-",
+ "spanishFontType":3,
+ "chineseTText":"女帝~Imbiratula~",
+ "chineseTFontType":1,
+ "koreanText":"죠테이~인바라투라~",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_twctt",
+ "japaneseText":"TT -Japanese ver.-",
+ "englishUsText":"TT -Japanese ver.-",
+ "englishUsFontType":3,
+ "frenchText":"TT -Japanese ver.-",
+ "frenchFontType":3,
+ "italianText":"TT -Japanese ver.-",
+ "italianFontType":3,
+ "germanText":"TT -Japanese ver.-",
+ "germanFontType":3,
+ "spanishText":"TT -Japanese ver.-",
+ "spanishFontType":3,
+ "chineseTText":"TT -Japanese ver.-",
+ "chineseTFontType":1,
+ "koreanText":"TT -Japanese ver.-",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_memesi",
+ "japaneseText":"女々しくて",
+ "englishUsText":"Memeshikute",
+ "englishUsFontType":3,
+ "frenchText":"Memeshikute",
+ "frenchFontType":3,
+ "italianText":"Memeshikute",
+ "italianFontType":3,
+ "germanText":"Memeshikute",
+ "germanFontType":3,
+ "spanishText":"Memeshikute",
+ "spanishFontType":3,
+ "chineseTText":"娘娘腔",
+ "chineseTFontType":1,
+ "koreanText":"메메시쿠테",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_xjapa2",
+ "japaneseText":"Silent Jealousy",
+ "englishUsText":"Silent Jealousy",
+ "englishUsFontType":3,
+ "frenchText":"Silent Jealousy",
+ "frenchFontType":3,
+ "italianText":"Silent Jealousy",
+ "italianFontType":3,
+ "germanText":"Silent Jealousy",
+ "germanFontType":3,
+ "spanishText":"Silent Jealousy",
+ "spanishFontType":3,
+ "chineseTText":"Silent Jealousy",
+ "chineseTFontType":1,
+ "koreanText":"Silent Jealousy",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_poptep",
+ "japaneseText":"POP TEAM EPIC",
+ "englishUsText":"POP TEAM EPIC",
+ "englishUsFontType":3,
+ "frenchText":"POP TEAM EPIC",
+ "frenchFontType":3,
+ "italianText":"POP TEAM EPIC",
+ "italianFontType":3,
+ "germanText":"POP TEAM EPIC",
+ "germanFontType":3,
+ "spanishText":"POP TEAM EPIC",
+ "spanishFontType":3,
+ "chineseTText":"POP TEAM EPIC",
+ "chineseTFontType":1,
+ "koreanText":"POP TEAM EPIC",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_lupatr",
+ "japaneseText":"ルパンレンジャーVSパトレンジャー",
+ "englishUsText":"Lupinranger VS Patranger",
+ "englishUsFontType":3,
+ "frenchText":"Lupinranger VS Patranger",
+ "frenchFontType":3,
+ "italianText":"Lupinranger VS Patranger",
+ "italianFontType":3,
+ "germanText":"Lupinranger VS Patranger",
+ "germanFontType":3,
+ "spanishText":"Lupinranger VS Patranger",
+ "spanishFontType":3,
+ "chineseTText":"Lupinranger VS Patranger",
+ "chineseTFontType":1,
+ "koreanText":"Lupinranger VS Patranger",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_moana",
+ "japaneseText":"どこまでも~How Far I’ll Go~",
+ "englishUsText":"How Far I'll Go",
+ "englishUsFontType":3,
+ "frenchText":"How Far I'll Go",
+ "frenchFontType":3,
+ "italianText":"How Far I'll Go",
+ "italianFontType":3,
+ "germanText":"How Far I'll Go",
+ "germanFontType":3,
+ "spanishText":"How Far I'll Go",
+ "spanishFontType":3,
+ "chineseTText":"海洋之心~How Far I’ll Go~",
+ "chineseTFontType":1,
+ "koreanText":"How Far I’ll Go",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sanpo",
+ "japaneseText":"さんぽ",
+ "englishUsText":"SANPO",
+ "englishUsFontType":3,
+ "frenchText":"SANPO",
+ "frenchFontType":3,
+ "italianText":"SANPO",
+ "italianFontType":3,
+ "germanText":"SANPO",
+ "germanFontType":3,
+ "spanishText":"SANPO",
+ "spanishFontType":3,
+ "chineseTText":"SANPO",
+ "chineseTFontType":1,
+ "koreanText":"SANPO",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_doyo",
+ "japaneseText":"ABCの歌",
+ "englishUsText":"The Alphabet Song",
+ "englishUsFontType":3,
+ "frenchText":"La chanson de l'alphabet",
+ "frenchFontType":3,
+ "italianText":"Canzone dell'alfabeto",
+ "italianFontType":3,
+ "germanText":"Das ABC-Lied",
+ "germanFontType":3,
+ "spanishText":"Canción del abecedario",
+ "spanishFontType":3,
+ "chineseTText":"ABC之歌",
+ "chineseTFontType":1,
+ "koreanText":"ABC노 우타",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_thgrip",
+ "japaneseText":"Grip & Break down !! -達人Edit.-",
+ "englishUsText":"Grip & Break down !! -Tatsujin Edit.-",
+ "englishUsFontType":3,
+ "frenchText":"Grip & Break down !! -Tatsujin Edit.-",
+ "frenchFontType":3,
+ "italianText":"Grip & Break down !! -Tatsujin Edit.-",
+ "italianFontType":3,
+ "germanText":"Grip & Break down !! -Tatsujin Edit.-",
+ "germanFontType":3,
+ "spanishText":"Grip & Break down !! -Tatsujin Edit.-",
+ "spanishFontType":3,
+ "chineseTText":"Grip & Break down !! -達人Edit.-",
+ "chineseTFontType":1,
+ "koreanText":"Grip & Break down !! -달인 Edit.-",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_thbad",
+ "japaneseText":"Bad Apple!! feat.nomico",
+ "englishUsText":"Bad Apple!! feat.nomico",
+ "englishUsFontType":3,
+ "frenchText":"Bad Apple!! feat.nomico",
+ "frenchFontType":3,
+ "italianText":"Bad Apple!! feat.nomico",
+ "italianFontType":3,
+ "germanText":"Bad Apple!! feat.nomico",
+ "germanFontType":3,
+ "spanishText":"Bad Apple!! feat.nomico",
+ "spanishFontType":3,
+ "chineseTText":"Bad Apple!! feat.nomico",
+ "chineseTFontType":1,
+ "koreanText":"Bad Apple!! feat.nomico",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_imcanz",
+ "japaneseText":"あんずのうた",
+ "englishUsText":"Anzu no Uta",
+ "englishUsFontType":3,
+ "frenchText":"Anzu no uta",
+ "frenchFontType":3,
+ "italianText":"Anzu no uta",
+ "italianFontType":3,
+ "germanText":"Anzu no uta",
+ "germanFontType":3,
+ "spanishText":"Anzu no uta",
+ "spanishFontType":3,
+ "chineseTText":"杏之歌",
+ "chineseTFontType":1,
+ "koreanText":"안즈노 우타",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_clstoy",
+ "japaneseText":"おもちゃのシンフォニー",
+ "englishUsText":"Toy Symphony",
+ "englishUsFontType":3,
+ "frenchText":"Symphonie des jouets",
+ "frenchFontType":3,
+ "italianText":"Sinfonia dei giocattoli",
+ "italianFontType":3,
+ "germanText":"Kindersinfonie",
+ "germanFontType":3,
+ "spanishText":"Sinfonía de los juguetes",
+ "spanishFontType":3,
+ "chineseTText":"玩具交響曲",
+ "chineseTFontType":1,
+ "koreanText":"장난감 교향곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_cls25",
+ "japaneseText":"交響曲第25番ト短調第一楽章",
+ "englishUsText":"Symphony No.25 in G Minor - First Movement",
+ "englishUsFontType":3,
+ "frenchText":"Symphonie No.25 en Sol Mineur - Premier Mouvement",
+ "frenchFontType":3,
+ "italianText":"Sinfonia n.25 in Sol minore - Primo movimento",
+ "italianFontType":3,
+ "germanText":"Sinfonie Nr.25 in g-Moll – 1. Satz",
+ "germanFontType":3,
+ "spanishText":"Sinfonía n.º 25 en sol menor, primer movimiento",
+ "spanishFontType":3,
+ "chineseTText":"第25號交響曲第一樂章",
+ "chineseTFontType":1,
+ "koreanText":"교향곡 25번 g 단조 1악장",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_cls7",
+ "japaneseText":"交響曲第7番から",
+ "englishUsText":"From Symphony No.7",
+ "englishUsFontType":3,
+ "frenchText":"De la Symphonie nº 7",
+ "frenchFontType":3,
+ "italianText":"Dalla Sinfonia n.7",
+ "italianFontType":3,
+ "germanText":"Aus der 7. Sinfonie",
+ "germanFontType":3,
+ "spanishText":"De la Sinfonía n.º 7",
+ "spanishFontType":3,
+ "chineseTText":"第七號交響曲節選",
+ "chineseTFontType":1,
+ "koreanText":"베토벤 교향곡 7번",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_clscam",
+ "japaneseText":"ラ・カンパネラ",
+ "englishUsText":"La Campanella",
+ "englishUsFontType":3,
+ "frenchText":"La Campanella",
+ "frenchFontType":3,
+ "italianText":"La Campanella",
+ "italianFontType":3,
+ "germanText":"La Campanella",
+ "germanFontType":3,
+ "spanishText":"La campanella",
+ "spanishFontType":3,
+ "chineseTText":"鐘",
+ "chineseTFontType":1,
+ "koreanText":"라 캄파넬라",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_clsh",
+ "japaneseText":"ハンガリー舞曲第5番",
+ "englishUsText":"Hungarian Dance No.5",
+ "englishUsFontType":3,
+ "frenchText":"Danse hongroise no 5",
+ "frenchFontType":3,
+ "italianText":"Danza ungherese n.5",
+ "italianFontType":3,
+ "germanText":"Ungarischer Tanz Nr.5",
+ "germanFontType":3,
+ "spanishText":"Danza húngara n.º 5",
+ "spanishFontType":3,
+ "chineseTText":"匈牙利舞曲第五號",
+ "chineseTFontType":1,
+ "koreanText":"헝가리 무곡 5번",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_clsika",
+ "japaneseText":"レクイエム 怒りの日より",
+ "englishUsText":"Requiem - Day of Wrath",
+ "englishUsFontType":3,
+ "frenchText":"Requiem - Dies iræ",
+ "frenchFontType":3,
+ "italianText":"Requiem - Dies Irae",
+ "italianFontType":3,
+ "germanText":"Requiem - Dies iræ",
+ "germanFontType":3,
+ "spanishText":"Requiem \"Dies irae\"",
+ "spanishFontType":3,
+ "chineseTText":"安魂曲 憤怒之日節選",
+ "chineseTFontType":1,
+ "koreanText":"레퀴엠 중 \"진노의 날\"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_clsnut",
+ "japaneseText":"行進曲「くるみ割り人形」から",
+ "englishUsText":"March from The Nutcracker",
+ "englishUsFontType":3,
+ "frenchText":"Marche de Casse-noisette",
+ "frenchFontType":3,
+ "italianText":"Marcia da Lo schiaccianoci",
+ "italianFontType":3,
+ "germanText":"Marsch aus Der Nussknacker",
+ "germanFontType":3,
+ "spanishText":"El Cascanueces: Marcha",
+ "spanishFontType":3,
+ "chineseTText":"「胡桃鉗」進行曲節選",
+ "chineseTFontType":1,
+ "koreanText":"\"호두까기 인형\" 행진곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_jupt",
+ "japaneseText":"木星",
+ "englishUsText":"Jupiter",
+ "englishUsFontType":3,
+ "frenchText":"Jupiter",
+ "frenchFontType":3,
+ "italianText":"Giove",
+ "italianFontType":3,
+ "germanText":"Jupiter",
+ "germanFontType":3,
+ "spanishText":"Júpiter",
+ "spanishFontType":3,
+ "chineseTText":"木星",
+ "chineseTFontType":1,
+ "koreanText":"목성",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_clsoft",
+ "japaneseText":"モンタギュー家とキャピュレット家",
+ "englishUsText":"Montagues and Capulets",
+ "englishUsFontType":3,
+ "frenchText":"Montaigus et Capulets",
+ "frenchFontType":3,
+ "italianText":"Montecchi e Capuleti",
+ "italianFontType":3,
+ "germanText":"Montagues und Capulets",
+ "germanFontType":3,
+ "spanishText":"Montescos y Capuletos",
+ "spanishFontType":3,
+ "chineseTText":"蒙太古家族與凱普萊特家族",
+ "chineseTFontType":1,
+ "koreanText":"몬테규가와 캐플릿가",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_howlin",
+ "japaneseText":"Howling",
+ "englishUsText":"Howling",
+ "englishUsFontType":3,
+ "frenchText":"Howling",
+ "frenchFontType":3,
+ "italianText":"Howling",
+ "italianFontType":3,
+ "germanText":"Howling",
+ "germanFontType":3,
+ "spanishText":"Howling",
+ "spanishFontType":3,
+ "chineseTText":"Howling",
+ "chineseTFontType":1,
+ "koreanText":"Howling",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_butamn",
+ "japaneseText":"おまえブタメン!",
+ "englishUsText":"OMAE BUTAMEN!",
+ "englishUsFontType":3,
+ "frenchText":"OMAE BUTAMEN!",
+ "frenchFontType":3,
+ "italianText":"OMAE BUTAMEN!",
+ "italianFontType":3,
+ "germanText":"OMAE BUTAMEN!",
+ "germanFontType":3,
+ "spanishText":"OMAE BUTAMEN!",
+ "spanishFontType":3,
+ "chineseTText":"OMAE BUTAMEN!",
+ "chineseTFontType":1,
+ "koreanText":"OMAE BUTAMEN!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_clscpl",
+ "japaneseText":"クラポルポルスカ",
+ "englishUsText":"KURAPORUPORUSUKA",
+ "englishUsFontType":3,
+ "frenchText":"KURAPORUPORUSUKA",
+ "frenchFontType":3,
+ "italianText":"KURAPORUPORUSUKA",
+ "italianFontType":3,
+ "germanText":"KURAPORUPORUSUKA",
+ "germanFontType":3,
+ "spanishText":"KURAPORUPORUSUKA",
+ "spanishFontType":3,
+ "chineseTText":"豎波波卡",
+ "chineseTFontType":1,
+ "koreanText":"클라폴 폴스카",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_pacmce",
+ "japaneseText":"PAC-MAN CHAMPIONSHIP EDITION 2",
+ "englishUsText":"PAC-MAN CHAMPIONSHIP EDITION 2",
+ "englishUsFontType":3,
+ "frenchText":"PAC-MAN CHAMPIONSHIP EDITION 2",
+ "frenchFontType":3,
+ "italianText":"PAC-MAN CHAMPIONSHIP EDITION 2",
+ "italianFontType":3,
+ "germanText":"PAC-MAN CHAMPIONSHIP EDITION 2",
+ "germanFontType":3,
+ "spanishText":"PAC-MAN CHAMPIONSHIP EDITION 2",
+ "spanishFontType":3,
+ "chineseTText":"PAC-MAN CHAMPIONSHIP EDITION 2",
+ "chineseTFontType":1,
+ "koreanText":"PAC-MAN CHAMPIONSHIP EDITION 2",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_nekotm",
+ "japaneseText":"ほんわか家族~ネコトモのうた~",
+ "englishUsText":"Happy Family - Neko Tomo Theme Song",
+ "englishUsFontType":3,
+ "frenchText":"Happy Family - Neko Tomo Theme Song",
+ "frenchFontType":3,
+ "italianText":"Happy Family - Neko Tomo Theme Song",
+ "italianFontType":3,
+ "germanText":"Happy Family - Neko Tomo Theme Song",
+ "germanFontType":3,
+ "spanishText":"Happy Family - Neko Tomo Theme Song",
+ "spanishFontType":3,
+ "chineseTText":"和睦的家族~NEKOTOMO之歌~",
+ "chineseTFontType":1,
+ "koreanText":"홍와카 카조쿠~네코토모노 우타~",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_tecdrv",
+ "japaneseText":"TD - 28619029byte remix -",
+ "englishUsText":"TD - 28619029byte remix -",
+ "englishUsFontType":3,
+ "frenchText":"TD - 28619029byte remix -",
+ "frenchFontType":3,
+ "italianText":"TD - 28619029byte remix -",
+ "italianFontType":3,
+ "germanText":"TD - 28619029byte remix -",
+ "germanFontType":3,
+ "spanishText":"TD - 28619029byte remix -",
+ "spanishFontType":3,
+ "chineseTText":"TD - 28619029byte remix -",
+ "chineseTFontType":1,
+ "koreanText":"TD - 28619029byte remix -",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_crtrcs",
+ "japaneseText":"Racing the Storm",
+ "englishUsText":"Racing the Storm",
+ "englishUsFontType":3,
+ "frenchText":"Racing the Storm",
+ "frenchFontType":3,
+ "italianText":"Racing the Storm",
+ "italianFontType":3,
+ "germanText":"Racing the Storm",
+ "germanFontType":3,
+ "spanishText":"Racing the Storm",
+ "spanishFontType":3,
+ "chineseTText":"Racing the Storm",
+ "chineseTFontType":1,
+ "koreanText":"Racing the Storm",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sw1op",
+ "japaneseText":"フリフリ♪ノリノリ♪",
+ "englishUsText":"FURIFURI♪NORINORI♪",
+ "englishUsFontType":3,
+ "frenchText":"FURIFURI♪NORINORI♪",
+ "frenchFontType":3,
+ "italianText":"FURIFURI♪NORINORI♪",
+ "italianFontType":3,
+ "germanText":"FURIFURI♪NORINORI♪",
+ "germanFontType":3,
+ "spanishText":"FURIFURI♪NORINORI♪",
+ "spanishFontType":3,
+ "chineseTText":"搖搖♪晃晃♪",
+ "chineseTFontType":1,
+ "koreanText":"후리후리♪ 노리노리♪",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_isan",
+ "japaneseText":"和有るど経りて維持・序",
+ "englishUsText":"WA ARUDO HERITE IJI - JO",
+ "englishUsFontType":3,
+ "frenchText":"WA ARUDO HERITE IJI・JO",
+ "frenchFontType":3,
+ "italianText":"WA ARUDO HERITE IJI・JO",
+ "italianFontType":3,
+ "germanText":"WA ARUDO HERITE IJI・JO",
+ "germanFontType":3,
+ "spanishText":"WA ARUDO HERITE IJI・JO",
+ "spanishFontType":3,
+ "chineseTText":"和有るど経りて維持・序",
+ "chineseTFontType":1,
+ "koreanText":"와 아루도 헤리테 이지・죠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_tabetm",
+ "japaneseText":"タベテモタベテモ",
+ "englishUsText":"TABETEMO TABETEMO",
+ "englishUsFontType":3,
+ "frenchText":"TABETEMO TABETEMO",
+ "frenchFontType":3,
+ "italianText":"TABETEMO TABETEMO",
+ "italianFontType":3,
+ "germanText":"TABETEMO TABETEMO",
+ "germanFontType":3,
+ "spanishText":"TABETEMO TABETEMO",
+ "spanishFontType":3,
+ "chineseTText":"再怎麼吃再怎麼吃",
+ "chineseTFontType":1,
+ "koreanText":"타베테모 타베테모",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_voidse",
+ "japaneseText":"void setup",
+ "englishUsText":"void setup",
+ "englishUsFontType":3,
+ "frenchText":"void setup",
+ "frenchFontType":3,
+ "italianText":"void setup",
+ "italianFontType":3,
+ "germanText":"void setup",
+ "germanFontType":3,
+ "spanishText":"void setup",
+ "spanishFontType":3,
+ "chineseTText":"void setup",
+ "chineseTFontType":1,
+ "koreanText":"void setup",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_eigas",
+ "japaneseText":"エクラン ルブラン",
+ "englishUsText":"Écran Le Blanc",
+ "englishUsFontType":3,
+ "frenchText":"Écran Le Blanc",
+ "frenchFontType":3,
+ "italianText":"Écran Le Blanc",
+ "italianFontType":3,
+ "germanText":"Écran Le Blanc",
+ "germanFontType":3,
+ "spanishText":"Écran Le Blanc",
+ "spanishFontType":3,
+ "chineseTText":"Ecran Le Blanc",
+ "chineseTFontType":1,
+ "koreanText":"Ecran Le Blanc",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_tondem",
+ "japaneseText":"トンデ・ミテ",
+ "englishUsText":"TONDE MITE",
+ "englishUsFontType":3,
+ "frenchText":"TONDE MITE",
+ "frenchFontType":3,
+ "italianText":"TONDE MITE",
+ "italianFontType":3,
+ "germanText":"TONDE MITE",
+ "germanFontType":3,
+ "spanishText":"TONDE MITE",
+ "spanishFontType":3,
+ "chineseTText":"試著・飛翔",
+ "chineseTFontType":1,
+ "koreanText":"톤데・미테",
+ "koreanFontType":2
+ },
+ {
+ "key":"filter_songs",
+ "japaneseText":"%s曲",
+ "englishUsText":"%s Song(s)",
+ "englishUsFontType":3,
+ "frenchText":"%s chanson(s)",
+ "frenchFontType":3,
+ "italianText":"%s canzone/i",
+ "italianFontType":3,
+ "germanText":"%s Song(s)",
+ "germanFontType":3,
+ "spanishText":"%s canc.",
+ "spanishFontType":3,
+ "chineseTText":"%s樂曲",
+ "chineseTFontType":1,
+ "koreanText":"%s곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"filter_songs_title",
+ "japaneseText":"しぼりこみ結果",
+ "englishUsText":"Filtered Results",
+ "englishUsFontType":3,
+ "frenchText":"Résultats triés",
+ "frenchFontType":3,
+ "italianText":"Risultati (filtrati)",
+ "italianFontType":3,
+ "germanText":"Gefilterte Ergb.",
+ "germanFontType":3,
+ "spanishText":"Resultados filtrados",
+ "spanishFontType":3,
+ "chineseTText":"篩選結果",
+ "chineseTFontType":1,
+ "koreanText":"분류 결과",
+ "koreanFontType":2
+ },
+ {
+ "key":"filter_used",
+ "japaneseText":"曲しぼりこみ設定中",
+ "englishUsText":"Setting song filter",
+ "englishUsFontType":3,
+ "frenchText":"Param. de tri de chanson",
+ "frenchFontType":3,
+ "italianText":"Impostare i filtri",
+ "italianFontType":3,
+ "germanText":"Song-Filter einstellen",
+ "germanFontType":3,
+ "spanishText":"Configurar filtro de canciones",
+ "spanishFontType":3,
+ "chineseTText":"分類篩選設定中",
+ "chineseTFontType":1,
+ "koreanText":"곡 분류 설정 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"select_difficulty",
+ "japaneseText":"むずかしさをえらぶ",
+ "englishUsText":"Select Difficulty",
+ "englishUsFontType":3,
+ "frenchText":"Choix de la difficulté",
+ "frenchFontType":3,
+ "italianText":"Sel. difficoltà",
+ "italianFontType":3,
+ "germanText":"Schwierig. wählen",
+ "germanFontType":3,
+ "spanishText":"Elegir dificultad",
+ "spanishFontType":3,
+ "chineseTText":"選擇難度",
+ "chineseTFontType":1,
+ "koreanText":"난이도 선택",
+ "koreanFontType":2
+ },
+ {
+ "key":"select_song",
+ "japaneseText":"曲をえらぶ",
+ "englishUsText":"Select Song",
+ "englishUsFontType":3,
+ "frenchText":"Choix de la chanson",
+ "frenchFontType":3,
+ "italianText":"Selez. canzone",
+ "italianFontType":3,
+ "germanText":"Song wählen",
+ "germanFontType":3,
+ "spanishText":"Elegir canción",
+ "spanishFontType":3,
+ "chineseTText":"選擇樂曲",
+ "chineseTFontType":1,
+ "koreanText":"곡 선택",
+ "koreanFontType":2
+ },
+ {
+ "key":"crown_gold",
+ "japaneseText":"フルコンボ",
+ "englishUsText":"Full Combo",
+ "englishUsFontType":3,
+ "frenchText":"Combo max",
+ "frenchFontType":3,
+ "italianText":"Combo unica",
+ "italianFontType":3,
+ "germanText":"Kombo vollständig",
+ "germanFontType":3,
+ "spanishText":"Combo completo",
+ "spanishFontType":3,
+ "chineseTText":"全連段",
+ "chineseTFontType":1,
+ "koreanText":"풀 콤보",
+ "koreanFontType":2
+ },
+ {
+ "key":"crown_silver",
+ "japaneseText":"ノルマクリア",
+ "englishUsText":"Normal Clear",
+ "englishUsFontType":3,
+ "frenchText":"Chanson réussie",
+ "frenchFontType":3,
+ "italianText":"Compl. normale",
+ "italianFontType":3,
+ "germanText":"Abschluss normal",
+ "germanFontType":3,
+ "spanishText":"Canción superada\n",
+ "spanishFontType":3,
+ "chineseTText":"演奏成功",
+ "chineseTFontType":1,
+ "koreanText":"클리어 성공",
+ "koreanFontType":2
+ },
+ {
+ "key":"result",
+ "japaneseText":"成績発表",
+ "englishUsText":"Results",
+ "englishUsFontType":3,
+ "frenchText":"Résultats",
+ "frenchFontType":3,
+ "italianText":"Risultati",
+ "italianFontType":3,
+ "germanText":"Ergebn.",
+ "germanFontType":3,
+ "spanishText":"Resultados",
+ "spanishFontType":3,
+ "chineseTText":"發表成績",
+ "chineseTFontType":1,
+ "koreanText":"성적 발표",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_bestscore",
+ "japaneseText":"自己ベスト更新!",
+ "englishUsText":"New high score!",
+ "englishUsFontType":3,
+ "frenchText":"Nouveau meilleur score !",
+ "frenchFontType":3,
+ "italianText":"Nuovo record!",
+ "italianFontType":3,
+ "germanText":"Neuer Highscore!",
+ "germanFontType":3,
+ "spanishText":"¡Nuevo récord!",
+ "spanishFontType":3,
+ "chineseTText":"刷新自我紀錄!",
+ "chineseTFontType":1,
+ "koreanText":"마이 베스트 경신!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_win_don",
+ "japaneseText":"勝ったド~ン!",
+ "englishUsText":"I won!",
+ "englishUsFontType":3,
+ "frenchText":"J'ai gagné !",
+ "frenchFontType":3,
+ "italianText":"Ho vinto!",
+ "italianFontType":3,
+ "germanText":"Ich habe gewonnen!",
+ "germanFontType":3,
+ "spanishText":"¡He ganado!",
+ "spanishFontType":3,
+ "chineseTText":"贏了咚~!",
+ "chineseTFontType":1,
+ "koreanText":"이겼다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_lose_don",
+ "japaneseText":"負けたドン・・・",
+ "englishUsText":"I lost...",
+ "englishUsFontType":3,
+ "frenchText":"J'ai perdu...",
+ "frenchFontType":3,
+ "italianText":"Ho perso...",
+ "italianFontType":3,
+ "germanText":"Ich habe verloren ...",
+ "germanFontType":3,
+ "spanishText":"He perdido.",
+ "spanishFontType":3,
+ "chineseTText":"輸了咚...",
+ "chineseTFontType":1,
+ "koreanText":"졌다쿵…",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_draw_don",
+ "japaneseText":"お互い頑張ったドン",
+ "englishUsText":"Good game!",
+ "englishUsFontType":3,
+ "frenchText":"Ni gagnant, ni perdant !",
+ "frenchFontType":3,
+ "italianText":"Non male!",
+ "italianFontType":3,
+ "germanText":"Nettes Spiel!",
+ "germanFontType":3,
+ "spanishText":"¡Ni para ti, ni para mí!",
+ "spanishFontType":3,
+ "chineseTText":"一起加油吧咚",
+ "chineseTFontType":1,
+ "koreanText":"서로 힘냈다쿵",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_win_meka",
+ "japaneseText":"カッタメカ",
+ "englishUsText":"Mecha win",
+ "englishUsFontType":3,
+ "frenchText":"Mecha victoire !",
+ "frenchFontType":3,
+ "italianText":"Mecha ha vinto",
+ "italianFontType":3,
+ "germanText":"Mecha-Sieg",
+ "germanFontType":3,
+ "spanishText":"El robot gana.",
+ "spanishFontType":3,
+ "chineseTText":"贏了MEKA",
+ "chineseTFontType":1,
+ "koreanText":"이겼다메카",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_lose_meka",
+ "japaneseText":"マケタメカ",
+ "englishUsText":"Mecha lose",
+ "englishUsFontType":3,
+ "frenchText":"Mecha défaite...",
+ "frenchFontType":3,
+ "italianText":"Mecha ha perso",
+ "italianFontType":3,
+ "germanText":"Mecha-Niederlage",
+ "germanFontType":3,
+ "spanishText":"El robot pierde.",
+ "spanishFontType":3,
+ "chineseTText":"輸了MEKA",
+ "chineseTFontType":1,
+ "koreanText":"졌다메카",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_draw_meka",
+ "japaneseText":"引き分けダメカ",
+ "englishUsText":"Mecha draw",
+ "englishUsFontType":3,
+ "frenchText":"Mecha égalité.",
+ "frenchFontType":3,
+ "italianText":"Mecha ha pareggiato",
+ "italianFontType":3,
+ "germanText":"Mecha-Unentschieden",
+ "germanFontType":3,
+ "spanishText":"El robot empata.",
+ "spanishFontType":3,
+ "chineseTText":"平手MEKA",
+ "chineseTFontType":1,
+ "koreanText":"무승부다메카",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_win_kame",
+ "japaneseText":"勝ったであります!",
+ "englishUsText":"Victory!",
+ "englishUsFontType":3,
+ "frenchText":"Victoire !",
+ "frenchFontType":3,
+ "italianText":"Vittoria!",
+ "italianFontType":3,
+ "germanText":"Sieg!",
+ "germanFontType":3,
+ "spanishText":"¡Victoria!",
+ "spanishFontType":3,
+ "chineseTText":"獲勝了!",
+ "chineseTFontType":1,
+ "koreanText":"이겼습니다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_lose_kame",
+ "japaneseText":"負けたであります・・・",
+ "englishUsText":"I lost...",
+ "englishUsFontType":3,
+ "frenchText":"J'ai perdu...",
+ "frenchFontType":3,
+ "italianText":"Ho perso...",
+ "italianFontType":3,
+ "germanText":"Ich habe verloren ...",
+ "germanFontType":3,
+ "spanishText":"He perdido.",
+ "spanishFontType":3,
+ "chineseTText":"落敗了...",
+ "chineseTFontType":1,
+ "koreanText":"졌습니다…",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_draw_kame",
+ "japaneseText":"引き分けであります・・・",
+ "englishUsText":"It’s a draw.",
+ "englishUsFontType":3,
+ "frenchText":"Égalité.",
+ "frenchFontType":3,
+ "italianText":"Pareggio...",
+ "italianFontType":3,
+ "germanText":"Es steht unentschieden.",
+ "germanFontType":3,
+ "spanishText":"Empate.",
+ "spanishFontType":3,
+ "chineseTText":"平手了...",
+ "chineseTFontType":1,
+ "koreanText":"무승부입니다…",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_win_bachio",
+ "japaneseText":"勝ちですね!",
+ "englishUsText":"It’s a win!",
+ "englishUsFontType":3,
+ "frenchText":"Victoire !",
+ "frenchFontType":3,
+ "italianText":"Ho vinto!",
+ "italianFontType":3,
+ "germanText":"Ein Sieg!",
+ "germanFontType":3,
+ "spanishText":"¡Una victoria!",
+ "spanishFontType":3,
+ "chineseTText":"贏了!",
+ "chineseTFontType":1,
+ "koreanText":"이겼군요!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_lose_bachio",
+ "japaneseText":"負けました・・・",
+ "englishUsText":"I lost...",
+ "englishUsFontType":3,
+ "frenchText":"J'ai perdu...",
+ "frenchFontType":3,
+ "italianText":"Ho perso...",
+ "italianFontType":3,
+ "germanText":"Ich habe verloren ...",
+ "germanFontType":3,
+ "spanishText":"He perdido.",
+ "spanishFontType":3,
+ "chineseTText":"輸了...",
+ "chineseTFontType":1,
+ "koreanText":"졌군요…",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_draw_bachio",
+ "japaneseText":"引き分けですね",
+ "englishUsText":"Draw",
+ "englishUsFontType":3,
+ "frenchText":"Égalité",
+ "frenchFontType":3,
+ "italianText":"Pareggio",
+ "italianFontType":3,
+ "germanText":"Unentschieden",
+ "germanFontType":3,
+ "spanishText":"Empate",
+ "spanishFontType":3,
+ "chineseTText":"平手了",
+ "chineseTFontType":1,
+ "koreanText":"무승부군요",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_win_inu",
+ "japaneseText":"ワオーン!",
+ "englishUsText":"Bow wow!",
+ "englishUsFontType":3,
+ "frenchText":"Ouaf ouaf !",
+ "frenchFontType":3,
+ "italianText":"Bau wow!",
+ "italianFontType":3,
+ "germanText":"Wau, wau!",
+ "germanFontType":3,
+ "spanishText":"¡Gu-guau!",
+ "spanishFontType":3,
+ "chineseTText":"汪~!",
+ "chineseTFontType":1,
+ "koreanText":"와오옹!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_lose_inu",
+ "japaneseText":"クゥーン",
+ "englishUsText":"Howwwl!",
+ "englishUsFontType":3,
+ "frenchText":"Ahouuuu !",
+ "frenchFontType":3,
+ "italianText":"Aùuuuu!",
+ "italianFontType":3,
+ "germanText":"Jauuuul!",
+ "germanFontType":3,
+ "spanishText":"¡Auuu!",
+ "spanishFontType":3,
+ "chineseTText":"嗚~嗯",
+ "chineseTFontType":1,
+ "koreanText":"끄응",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_draw_inu",
+ "japaneseText":"ワン!",
+ "englishUsText":"Ruff?!",
+ "englishUsFontType":3,
+ "frenchText":"Waf ?!",
+ "frenchFontType":3,
+ "italianText":"Ruff?!?",
+ "italianFontType":3,
+ "germanText":"Wuff?!",
+ "germanFontType":3,
+ "spanishText":"¿Guau?",
+ "spanishFontType":3,
+ "chineseTText":"汪!",
+ "chineseTFontType":1,
+ "koreanText":"멍!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_win_unagi",
+ "japaneseText":"勝ったぜぃ!",
+ "englishUsText":"Aw yeah!",
+ "englishUsFontType":3,
+ "frenchText":"Oh ouais !",
+ "frenchFontType":3,
+ "italianText":"Sì!",
+ "italianFontType":3,
+ "germanText":"Oh ja!",
+ "germanFontType":3,
+ "spanishText":"¡Oh, sí!",
+ "spanishFontType":3,
+ "chineseTText":"贏啦!",
+ "chineseTFontType":1,
+ "koreanText":"이겼다고!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_lose_unagi",
+ "japaneseText":"負けだコノヤロー",
+ "englishUsText":"Aw man",
+ "englishUsFontType":3,
+ "frenchText":"Oh, zut...",
+ "frenchFontType":3,
+ "italianText":"Uff...",
+ "italianFontType":3,
+ "germanText":"Oh Mann.",
+ "germanFontType":3,
+ "spanishText":"¡Oh, vaya!",
+ "spanishFontType":3,
+ "chineseTText":"輸了,混蛋",
+ "chineseTFontType":1,
+ "koreanText":"졌잖아 임마",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_draw_unagi",
+ "japaneseText":"くぅーー引き分けかぃ",
+ "englishUsText":"Argh, a draw",
+ "englishUsFontType":3,
+ "frenchText":"Mince, égalité.",
+ "frenchFontType":3,
+ "italianText":"Argh...",
+ "italianFontType":3,
+ "germanText":"Argh, unentschieden.",
+ "germanFontType":3,
+ "spanishText":"Oh, empate.",
+ "spanishFontType":3,
+ "chineseTText":"嗚~~平手",
+ "chineseTFontType":1,
+ "koreanText":"크으~ 무승부냐",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_win_omen",
+ "japaneseText":"勝ちましたねぇ",
+ "englishUsText":"I won",
+ "englishUsFontType":3,
+ "frenchText":"J'ai gagné.",
+ "frenchFontType":3,
+ "italianText":"Ho vinto!",
+ "italianFontType":3,
+ "germanText":"Ich habe gewonnen.",
+ "germanFontType":3,
+ "spanishText":"He ganado.",
+ "spanishFontType":3,
+ "chineseTText":"贏了呢",
+ "chineseTFontType":1,
+ "koreanText":"이겼네요",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_lose_omen",
+ "japaneseText":"負けましたねぇ",
+ "englishUsText":"I lost",
+ "englishUsFontType":3,
+ "frenchText":"J'ai perdu.",
+ "frenchFontType":3,
+ "italianText":"Ho perso....",
+ "italianFontType":3,
+ "germanText":"Ich habe verloren.",
+ "germanFontType":3,
+ "spanishText":"He perdido.",
+ "spanishFontType":3,
+ "chineseTText":"輸了啊",
+ "chineseTFontType":1,
+ "koreanText":"졌네요",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_draw_omen",
+ "japaneseText":"引き分けですねぇ",
+ "englishUsText":"We tied",
+ "englishUsFontType":3,
+ "frenchText":"Égalité.",
+ "frenchFontType":3,
+ "italianText":"Abbiamo pareggiato!",
+ "italianFontType":3,
+ "germanText":"Unentschieden.",
+ "germanFontType":3,
+ "spanishText":"Empatamos.",
+ "spanishFontType":3,
+ "chineseTText":"平手了呢",
+ "chineseTFontType":1,
+ "koreanText":"무승부예요",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_win_other",
+ "japaneseText":"「@!&%#@!」(勝ち)",
+ "englishUsText":"Win",
+ "englishUsFontType":3,
+ "frenchText":"Victoire",
+ "frenchFontType":3,
+ "italianText":"Vittoria",
+ "italianFontType":3,
+ "germanText":"Sieg",
+ "germanFontType":3,
+ "spanishText":"Victoria",
+ "spanishFontType":3,
+ "chineseTText":"「@!&%#@!」(獲勝)",
+ "chineseTFontType":1,
+ "koreanText":"「@!&%#@!」(이겼어)",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_lose_other",
+ "japaneseText":"「@!&%#@!」(負け)",
+ "englishUsText":"Lose",
+ "englishUsFontType":3,
+ "frenchText":"Défaite",
+ "frenchFontType":3,
+ "italianText":"Sconfitta",
+ "italianFontType":3,
+ "germanText":"Verloren",
+ "germanFontType":3,
+ "spanishText":"Derrota",
+ "spanishFontType":3,
+ "chineseTText":"「@!&%#@!」(失敗)",
+ "chineseTFontType":1,
+ "koreanText":"「@!&%#@!」(졌어)",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_draw_other",
+ "japaneseText":"「@!&%#@!」(引き分け)",
+ "englishUsText":"Draw",
+ "englishUsFontType":3,
+ "frenchText":"Égalité",
+ "frenchFontType":3,
+ "italianText":"Pareggio",
+ "italianFontType":3,
+ "germanText":"Unentschieden",
+ "germanFontType":3,
+ "spanishText":"Empate",
+ "spanishFontType":3,
+ "chineseTText":"「@!&%#@!」(平手)",
+ "chineseTFontType":1,
+ "koreanText":"「@!&%#@!」(무승부)",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_win_neko",
+ "japaneseText":"ニャ~~~!!!",
+ "englishUsText":"Mee-ow!",
+ "englishUsFontType":3,
+ "frenchText":"Mia-ouh !",
+ "frenchFontType":3,
+ "italianText":"Miaaaoooo!",
+ "italianFontType":3,
+ "germanText":"Miii-au!",
+ "germanFontType":3,
+ "spanishText":"¡Miauuu!",
+ "spanishFontType":3,
+ "chineseTText":"喵~~~!!!",
+ "chineseTFontType":1,
+ "koreanText":"야옹~~~!!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_lose_neko",
+ "japaneseText":"ニャ~ァ~",
+ "englishUsText":"Meow!",
+ "englishUsFontType":3,
+ "frenchText":"Miaou !",
+ "frenchFontType":3,
+ "italianText":"Miao!",
+ "italianFontType":3,
+ "germanText":"Miau!",
+ "germanFontType":3,
+ "spanishText":"¡Miau!",
+ "spanishFontType":3,
+ "chineseTText":"喵~~",
+ "chineseTFontType":1,
+ "koreanText":"냐~앙~",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_draw_neko",
+ "japaneseText":"ニャン!",
+ "englishUsText":"Meow!",
+ "englishUsFontType":3,
+ "frenchText":"Miaou !",
+ "frenchFontType":3,
+ "italianText":"Miao!",
+ "italianFontType":3,
+ "germanText":"Miau!",
+ "germanFontType":3,
+ "spanishText":"¡Miau!",
+ "spanishFontType":3,
+ "chineseTText":"喵!",
+ "chineseTFontType":1,
+ "koreanText":"냥!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_win_namahage",
+ "japaneseText":"勝ったべさ!うがー",
+ "englishUsText":"Gah, I won!",
+ "englishUsFontType":3,
+ "frenchText":"Ah, j'ai gagné !",
+ "frenchFontType":3,
+ "italianText":"Gah, ho vinto!",
+ "italianFontType":3,
+ "germanText":"Pah, ich habe gewonnen!",
+ "germanFontType":3,
+ "spanishText":"¡Ah, gané!",
+ "spanishFontType":3,
+ "chineseTText":"贏了!嗚嘎~",
+ "chineseTFontType":1,
+ "koreanText":"이겼다! 우가~",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_lose_namahage",
+ "japaneseText":"まけたべさ!うがー",
+ "englishUsText":"Gah, I lost!",
+ "englishUsFontType":3,
+ "frenchText":"Ah, j'ai perdu !",
+ "frenchFontType":3,
+ "italianText":"Gah, ho perso!",
+ "italianFontType":3,
+ "germanText":"Pah, ich habe verloren!",
+ "germanFontType":3,
+ "spanishText":"¡Ah, perdí!",
+ "spanishFontType":3,
+ "chineseTText":"輸了!嗚嘎~",
+ "chineseTFontType":1,
+ "koreanText":"졌다! 우가~",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_draw_namahage",
+ "japaneseText":"引き分けだべさ!うがー",
+ "englishUsText":"Gah, I tied!",
+ "englishUsFontType":3,
+ "frenchText":"Ah, égalité !",
+ "frenchFontType":3,
+ "italianText":"Gah, pareggio!",
+ "italianFontType":3,
+ "germanText":"Pah, unentschieden!",
+ "germanFontType":3,
+ "spanishText":"¡Ah, empate!",
+ "spanishFontType":3,
+ "chineseTText":"平手了!嗚嘎~",
+ "chineseTFontType":1,
+ "koreanText":"무승부다! 우가~",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_win_takoyaki",
+ "japaneseText":"ワイの勝ちや!",
+ "englishUsText":"Yeah, baby!",
+ "englishUsFontType":3,
+ "frenchText":"Ouais, baby !",
+ "frenchFontType":3,
+ "italianText":"Sì, baby!",
+ "italianFontType":3,
+ "germanText":"Yeah, Baby!",
+ "germanFontType":3,
+ "spanishText":"¡Eso es!",
+ "spanishFontType":3,
+ "chineseTText":"我贏啦!",
+ "chineseTFontType":1,
+ "koreanText":"내가 이겼데이!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_lose_takoyaki",
+ "japaneseText":"負けてしもた・・・",
+ "englishUsText":"Phooey...",
+ "englishUsFontType":3,
+ "frenchText":"Pfiou...",
+ "frenchFontType":3,
+ "italianText":"Uff...",
+ "italianFontType":3,
+ "germanText":"Puh ...",
+ "germanFontType":3,
+ "spanishText":"Bah...",
+ "spanishFontType":3,
+ "chineseTText":"竟然輸了...",
+ "chineseTFontType":1,
+ "koreanText":"져버렸다…",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_draw_takoyaki",
+ "japaneseText":"引き分けですやん",
+ "englishUsText":"A tie, huh.",
+ "englishUsFontType":3,
+ "frenchText":"Oh, égalité.",
+ "frenchFontType":3,
+ "italianText":"Pareggio, eh?",
+ "italianFontType":3,
+ "germanText":"Unentschieden, was?",
+ "germanFontType":3,
+ "spanishText":"Empate. Oh.",
+ "spanishFontType":3,
+ "chineseTText":"平手啦",
+ "chineseTFontType":1,
+ "koreanText":"무승부잖아",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_win_tatsudon",
+ "japaneseText":"カチデ~ス!",
+ "englishUsText":"Victory!",
+ "englishUsFontType":3,
+ "frenchText":"Victoire !",
+ "frenchFontType":3,
+ "italianText":"Vittoria!",
+ "italianFontType":3,
+ "germanText":"Sieg!",
+ "germanFontType":3,
+ "spanishText":"¡Victoria!",
+ "spanishFontType":3,
+ "chineseTText":"是~贏了!",
+ "chineseTFontType":1,
+ "koreanText":"이겼습니다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_lose_tatsudon",
+ "japaneseText":"マケナノデ~ス!",
+ "englishUsText":"Loss!",
+ "englishUsFontType":3,
+ "frenchText":"Défaite !",
+ "frenchFontType":3,
+ "italianText":"Sconfitta!",
+ "italianFontType":3,
+ "germanText":"Niederlage!",
+ "germanFontType":3,
+ "spanishText":"¡Derrota!",
+ "spanishFontType":3,
+ "chineseTText":"是~輸了!",
+ "chineseTFontType":1,
+ "koreanText":"졌습니다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_draw_tatsudon",
+ "japaneseText":"ヒキワケデ~ス!",
+ "englishUsText":"Draw!",
+ "englishUsFontType":3,
+ "frenchText":"Égalité !",
+ "frenchFontType":3,
+ "italianText":"Pareggio!",
+ "italianFontType":3,
+ "germanText":"Unentschieden!",
+ "germanFontType":3,
+ "spanishText":"¡Empate!",
+ "spanishFontType":3,
+ "chineseTText":"是~平手!",
+ "chineseTFontType":1,
+ "koreanText":"무승부입니다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_win_donko",
+ "japaneseText":"勝ったわね!",
+ "englishUsText":"I won!",
+ "englishUsFontType":3,
+ "frenchText":"J'ai gagné !",
+ "frenchFontType":3,
+ "italianText":"Ho vinto!",
+ "italianFontType":3,
+ "germanText":"Ich habe gewonnen!",
+ "germanFontType":3,
+ "spanishText":"¡He ganado!",
+ "spanishFontType":3,
+ "chineseTText":"獲勝了呢!",
+ "chineseTFontType":1,
+ "koreanText":"이겼네!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_lose_donko",
+ "japaneseText":"負けたわ・・・",
+ "englishUsText":"I lost...",
+ "englishUsFontType":3,
+ "frenchText":"J'ai perdu...",
+ "frenchFontType":3,
+ "italianText":"Ho perso...",
+ "italianFontType":3,
+ "germanText":"Ich habe verloren ...",
+ "germanFontType":3,
+ "spanishText":"He perdido.",
+ "spanishFontType":3,
+ "chineseTText":"落敗了呢...",
+ "chineseTFontType":1,
+ "koreanText":"졌어…",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_draw_donko",
+ "japaneseText":"引き分けね",
+ "englishUsText":"It’s a draw",
+ "englishUsFontType":3,
+ "frenchText":"Égalité.",
+ "frenchFontType":3,
+ "italianText":"Pareggio.",
+ "italianFontType":3,
+ "germanText":"Es steht unentschieden.",
+ "germanFontType":3,
+ "spanishText":"He empatado.",
+ "spanishFontType":3,
+ "chineseTText":"平手了呢",
+ "chineseTFontType":1,
+ "koreanText":"무승부네",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_high_don",
+ "japaneseText":"クリア!フルコンボだドーン!",
+ "englishUsText":"CLEARED!\nFull Combo, don!",
+ "englishUsFontType":3,
+ "frenchText":"TERMINÉ !\nCombo max, don !",
+ "frenchFontType":3,
+ "italianText":"COMPLETATA!\nE con un'unica combo!",
+ "italianFontType":3,
+ "germanText":"ABGESCHLOSSEN!\nVollständige Kombo, don!",
+ "germanFontType":3,
+ "spanishText":"¡CONSEGUIDO!\n¡Combo completo, DON!",
+ "spanishFontType":3,
+ "chineseTText":"通關!全連段咚!",
+ "chineseTFontType":1,
+ "koreanText":"클리어! 풀 콤보다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_low_don",
+ "japaneseText":"おや?次はもっといけるドン!",
+ "englishUsText":"FAILED... Try harder!",
+ "englishUsFontType":3,
+ "frenchText":"ÉCHEC... Essaie encore !",
+ "frenchFontType":3,
+ "italianText":"HAI FALLITO... Impegnati di più!",
+ "italianFontType":3,
+ "germanText":"FEHLSCHLAG!\nStreng dich an!",
+ "germanFontType":3,
+ "spanishText":"FALLASTE... ¡Esfuérzate más!",
+ "spanishFontType":3,
+ "chineseTText":"失敗……下次會表現更好咚!",
+ "chineseTFontType":1,
+ "koreanText":"어라? 다음엔 더 힘내자쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_high_don",
+ "japaneseText":"あとちょっと、おしかったドン!",
+ "englishUsText":"FAILED!\nSo close, don!",
+ "englishUsFontType":3,
+ "frenchText":"ÉCHEC !\nPas loin, don !",
+ "frenchFontType":3,
+ "italianText":"HAI FALLITO, ma mancava poco!",
+ "italianFontType":3,
+ "germanText":"FEHLSCHLAG!\nKnapp vorbei, don!",
+ "germanFontType":3,
+ "spanishText":"¡FALLASTE!\n¡Por qué poco, DON!",
+ "spanishFontType":3,
+ "chineseTText":"失敗,就差那一點咚!",
+ "chineseTFontType":1,
+ "koreanText":"조금만 더, 엄청 아쉬웠다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_low_don",
+ "japaneseText":"クリア!上手に演奏できたドン!",
+ "englishUsText":"CLEARED! Well played!",
+ "englishUsFontType":3,
+ "frenchText":"TERMINÉ ! Bien joué !",
+ "frenchFontType":3,
+ "italianText":"COMPLETATA!\nComplimenti!",
+ "italianFontType":3,
+ "germanText":"GESCHAFFT! Gut gespielt!",
+ "germanFontType":3,
+ "spanishText":"¡CONSEGUIDO! ¡Bien jugado!",
+ "spanishFontType":3,
+ "chineseTText":"通關!演奏得非常出色!",
+ "chineseTFontType":1,
+ "koreanText":"클리어! 훌륭하게 연주했다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_high_meka",
+ "japaneseText":"クリア!!大成功だメカ!!",
+ "englishUsText":"CLEARED!\nMecha Great Success!",
+ "englishUsFontType":3,
+ "frenchText":"TERMINÉ !\nSuper succès Mecha !",
+ "frenchFontType":3,
+ "italianText":"COMPLETATA!\nMecha forte!",
+ "italianFontType":3,
+ "germanText":"GESCHAFFT!\nToller Mecha-Erfolg!",
+ "germanFontType":3,
+ "spanishText":"¡CONSEGUIDO!\n¡Triunfo robot!",
+ "spanishFontType":3,
+ "chineseTText":"通關!演奏得超成功!",
+ "chineseTFontType":1,
+ "koreanText":"클리어!! 대성공이다메카!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_high_kame",
+ "japaneseText":"クリア!フルコンボであります!",
+ "englishUsText":"CLEARED!\nFull Combo!",
+ "englishUsFontType":3,
+ "frenchText":"TERMINÉ !\nCombo max !",
+ "frenchFontType":3,
+ "italianText":"COMPLETATA!\nE con un'unica combo!",
+ "italianFontType":3,
+ "germanText":"ABGESCHLOSSEN!\nVollständige Kombo!",
+ "germanFontType":3,
+ "spanishText":"¡CONSEGUIDO!\n¡Combo completo!",
+ "spanishFontType":3,
+ "chineseTText":"通關!達成全連段!",
+ "chineseTFontType":1,
+ "koreanText":"클리어! 풀 콤보입니다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_low_kame",
+ "japaneseText":"がんばるであります!",
+ "englishUsText":"You can do this!",
+ "englishUsFontType":3,
+ "frenchText":"Tu peux le faire !",
+ "frenchFontType":3,
+ "italianText":"Puoi farcela!",
+ "italianFontType":3,
+ "germanText":"Du kriegst das hin!",
+ "germanFontType":3,
+ "spanishText":"¡Puedes hacerlo!",
+ "spanishFontType":3,
+ "chineseTText":"很努力了!",
+ "chineseTFontType":1,
+ "koreanText":"힘내시기 바랍니다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_high_kame",
+ "japaneseText":"おしかったであります!",
+ "englishUsText":"You were very close!",
+ "englishUsFontType":3,
+ "frenchText":"Tu y étais presque !",
+ "frenchFontType":3,
+ "italianText":"Ci sei andato vicinissimo!",
+ "italianFontType":3,
+ "germanText":"Du warst knapp dran!",
+ "germanFontType":3,
+ "spanishText":"¡Has estado muy cerca!",
+ "spanishFontType":3,
+ "chineseTText":"真的好可惜!",
+ "chineseTFontType":1,
+ "koreanText":"아까웠습니다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_low_kame",
+ "japaneseText":"クリア!上手だったであります!",
+ "englishUsText":"CLEARED!\nWell done!",
+ "englishUsFontType":3,
+ "frenchText":"TERMINÉ !\nBien joué !",
+ "frenchFontType":3,
+ "italianText":"COMPLETATA!\nOttimo lavoro!",
+ "italianFontType":3,
+ "germanText":"GESCHAFFT! Gut gemacht!",
+ "germanFontType":3,
+ "spanishText":"¡CONSEGUIDO!\n¡Buen trabajo!",
+ "spanishFontType":3,
+ "chineseTText":"通關!表現很不錯!",
+ "chineseTFontType":1,
+ "koreanText":"클리어! 잘 했습니다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_high_bachio",
+ "japaneseText":"すごい!フルコンボだ!",
+ "englishUsText":"Wow! A Full Combo!",
+ "englishUsFontType":3,
+ "frenchText":"Waouh ! Un combo max !",
+ "frenchFontType":3,
+ "italianText":"Wow! Con un'unica combo!",
+ "italianFontType":3,
+ "germanText":"Wow! Eine vollständige Kombo!",
+ "germanFontType":3,
+ "spanishText":"¡Vaya! ¡Un combo completo!",
+ "spanishFontType":3,
+ "chineseTText":"好厲害!是全連段!",
+ "chineseTFontType":1,
+ "koreanText":"대단해! 풀 콤보다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_low_bachio",
+ "japaneseText":"もっとがんばろう!",
+ "englishUsText":"Don’t give up!",
+ "englishUsFontType":3,
+ "frenchText":"N'abandonne pas !",
+ "frenchFontType":3,
+ "italianText":"Non arrenderti!",
+ "italianFontType":3,
+ "germanText":"Gib nicht auf!",
+ "germanFontType":3,
+ "spanishText":"¡No te rindas!",
+ "spanishFontType":3,
+ "chineseTText":"再加把勁!",
+ "chineseTFontType":1,
+ "koreanText":"더 열심히 하자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_high_bachio",
+ "japaneseText":"おしい!あともう少しだ!",
+ "englishUsText":"You were so close!",
+ "englishUsFontType":3,
+ "frenchText":"C'est pas passé loin !",
+ "frenchFontType":3,
+ "italianText":"Mancava tanto così...",
+ "italianFontType":3,
+ "germanText":"Du warst so nah dran!",
+ "germanFontType":3,
+ "spanishText":"¡Has estado cerca!",
+ "spanishFontType":3,
+ "chineseTText":"真可惜!就差那麼一點!",
+ "chineseTFontType":1,
+ "koreanText":"아까워! 조금만 더!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_low_bachio",
+ "japaneseText":"クリア!その調子だ!",
+ "englishUsText":"CLEARED!\nThat’s it!",
+ "englishUsFontType":3,
+ "frenchText":"TERMINÉ !\nPas mal !",
+ "frenchFontType":3,
+ "italianText":"COMPLETATA!\nFantastico!",
+ "italianFontType":3,
+ "germanText":"GESCHAFFT!\nJa!",
+ "germanFontType":3,
+ "spanishText":"¡CONSEGUIDO!\n¡Así se hace!",
+ "spanishFontType":3,
+ "chineseTText":"通關!就是這樣!",
+ "chineseTFontType":1,
+ "koreanText":"클리어! 그 기세야!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_high_inu",
+ "japaneseText":"ワオーーン!",
+ "englishUsText":"Arf arf arf arf!",
+ "englishUsFontType":3,
+ "frenchText":"Ouaf ouaf ouaf ouaf !",
+ "frenchFontType":3,
+ "italianText":"Arf arf arf arf!",
+ "italianFontType":3,
+ "germanText":"Wuff, wuff, wuff, wuff!",
+ "germanFontType":3,
+ "spanishText":"¡Guau, guau, guau!",
+ "spanishFontType":3,
+ "chineseTText":"汪~~~!",
+ "chineseTFontType":1,
+ "koreanText":"멍멍!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_low_inu",
+ "japaneseText":"クゥーン",
+ "englishUsText":"Howwwl!",
+ "englishUsFontType":3,
+ "frenchText":"Ahouuuu !",
+ "frenchFontType":3,
+ "italianText":"Aùuuuu!",
+ "italianFontType":3,
+ "germanText":"Jauuuul!",
+ "germanFontType":3,
+ "spanishText":"¡Auuu!",
+ "spanishFontType":3,
+ "chineseTText":"嗚~嗯",
+ "chineseTFontType":1,
+ "koreanText":"끄응",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_high_inu",
+ "japaneseText":"ワン!",
+ "englishUsText":"Ruff!",
+ "englishUsFontType":3,
+ "frenchText":"Waf waf !",
+ "frenchFontType":3,
+ "italianText":"Ruff!",
+ "italianFontType":3,
+ "germanText":"Raff!",
+ "germanFontType":3,
+ "spanishText":"¡Guau!",
+ "spanishFontType":3,
+ "chineseTText":"汪!",
+ "chineseTFontType":1,
+ "koreanText":"멍!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_low_inu",
+ "japaneseText":"ワンワン!",
+ "englishUsText":"Bark bark!",
+ "englishUsFontType":3,
+ "frenchText":"Ouaf ouaf !",
+ "frenchFontType":3,
+ "italianText":"Bau, bau!",
+ "italianFontType":3,
+ "germanText":"Bell, bell!",
+ "germanFontType":3,
+ "spanishText":"¡Guau, guau!",
+ "spanishFontType":3,
+ "chineseTText":"汪汪!",
+ "chineseTFontType":1,
+ "koreanText":"멍멍!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_high_unagi",
+ "japaneseText":"フルコンボだぜぃ!",
+ "englishUsText":"Aw yeah, Full Combo!",
+ "englishUsFontType":3,
+ "frenchText":"Ouais, combo max !",
+ "frenchFontType":3,
+ "italianText":"Sì, con un'unica combo!",
+ "italianFontType":3,
+ "germanText":"Oh ja, vollständige Kombo!",
+ "germanFontType":3,
+ "spanishText":"¡Oh, sí, combo completo!",
+ "spanishFontType":3,
+ "chineseTText":"出來了全連段!",
+ "chineseTFontType":1,
+ "koreanText":"풀 콤보야!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_low_unagi",
+ "japaneseText":"もっとがんばれぃ!",
+ "englishUsText":"Try again!",
+ "englishUsFontType":3,
+ "frenchText":"Essaie encore !",
+ "frenchFontType":3,
+ "italianText":"Riprova!",
+ "italianFontType":3,
+ "germanText":"Versuch es noch mal!",
+ "germanFontType":3,
+ "spanishText":"¡Inténtalo otra vez!",
+ "spanishFontType":3,
+ "chineseTText":"得再加把勁!",
+ "chineseTFontType":1,
+ "koreanText":"더 힘내라고!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_high_unagi",
+ "japaneseText":"く~っ!おしい!おしいねぇ!",
+ "englishUsText":"Aw man, so close!",
+ "englishUsFontType":3,
+ "frenchText":"Zut, c'était pas loin !",
+ "frenchFontType":3,
+ "italianText":"Accidenti, per poco!",
+ "italianFontType":3,
+ "germanText":"Oh Mann, ganz knapp!",
+ "germanFontType":3,
+ "spanishText":"¡Oh, por qué poco!",
+ "spanishFontType":3,
+ "chineseTText":"嗚~!可惜!真可惜!",
+ "chineseTFontType":1,
+ "koreanText":"크으~! 아쉬워! 아쉬워!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_low_unagi",
+ "japaneseText":"クリア!うめぇじゃねぇか!",
+ "englishUsText":"CLEARED!\nYou’re pretty good!",
+ "englishUsFontType":3,
+ "frenchText":"TERMINÉ !\nTu t'en sors bien !",
+ "frenchFontType":3,
+ "italianText":"COMPLETATA!\nAccipicchia che bravura!",
+ "italianFontType":3,
+ "germanText":"GESCHAFFT!\nDu bist ziemlich gut!",
+ "germanFontType":3,
+ "spanishText":"¡CONSEGUIDO!\n¡Lo haces genial!",
+ "spanishFontType":3,
+ "chineseTText":"通關!這不是很讚嗎!",
+ "chineseTFontType":1,
+ "koreanText":"클리어! 잘 하네!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_high_omen",
+ "japaneseText":"くっくっくっ フルコンボですねぇ",
+ "englishUsText":"Heh heh heh,\nFull Combo",
+ "englishUsFontType":3,
+ "frenchText":"Hé hé hé,\ncombo max !",
+ "frenchFontType":3,
+ "italianText":"Eh eh eh eh\nCon un'unica combo!",
+ "italianFontType":3,
+ "germanText":"Hehehe,\nvollständige Kombo.",
+ "germanFontType":3,
+ "spanishText":"Je, je, je.\nCombo completo.",
+ "spanishFontType":3,
+ "chineseTText":"呵呵呵,全連段呢",
+ "chineseTFontType":1,
+ "koreanText":"큭큭큭, 풀 콤보네요",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_low_omen",
+ "japaneseText":"次はいけますよねぇ",
+ "englishUsText":"You’ll get it next time",
+ "englishUsFontType":3,
+ "frenchText":"Tu réussiras\nla prochaine fois !",
+ "frenchFontType":3,
+ "italianText":"Ce la farai\nla prossima volta",
+ "italianFontType":3,
+ "germanText":"Du schaffst es beim nächsten Mal!",
+ "germanFontType":3,
+ "spanishText":"La próxima vez\nlo conseguirás.",
+ "spanishFontType":3,
+ "chineseTText":"下次你能成功的",
+ "chineseTFontType":1,
+ "koreanText":"다음엔 되겠네요",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_high_omen",
+ "japaneseText":"おしかったですねぇ",
+ "englishUsText":"You almost had it",
+ "englishUsFontType":3,
+ "frenchText":"Tu y étais presque !",
+ "frenchFontType":3,
+ "italianText":"Per pochissimo, accidenti!",
+ "italianFontType":3,
+ "germanText":"Du hättest es fast geschafft!",
+ "germanFontType":3,
+ "spanishText":"Ya casi lo tenías.",
+ "spanishFontType":3,
+ "chineseTText":"真可惜呢",
+ "chineseTFontType":1,
+ "koreanText":"아까웠네요",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_low_omen",
+ "japaneseText":"クリア!うまかったですねぇ",
+ "englishUsText":"CLEARED!\nVery good",
+ "englishUsFontType":3,
+ "frenchText":"TERMINÉ !\nBeau travail.",
+ "frenchFontType":3,
+ "italianText":"COMPLETATA!\nDavvero ottimo!",
+ "italianFontType":3,
+ "germanText":"GESCHAFFT!\nSehr gut.",
+ "germanFontType":3,
+ "spanishText":"¡CONSEGUIDO!\nMuy bien.",
+ "spanishFontType":3,
+ "chineseTText":"通關!表現的很棒呢!",
+ "chineseTFontType":1,
+ "koreanText":"클리어! 잘했네요",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_high_other",
+ "japaneseText":"「@!&%#@!」(フルコンボ)",
+ "englishUsText":"@!&%#@!\n(Full Combo)",
+ "englishUsFontType":3,
+ "frenchText":"@!&%#@ !\n(Combo max)",
+ "frenchFontType":3,
+ "italianText":"@!&%#@!\n(Con un'unica combo)",
+ "italianFontType":3,
+ "germanText":"@!&%#@!\n(Vollständige Kombo)",
+ "germanFontType":3,
+ "spanishText":"@!&%#@!\n(Combo completo)",
+ "spanishFontType":3,
+ "chineseTText":"「@!&%#@!」(全連段)",
+ "chineseTFontType":1,
+ "koreanText":"「@!&%#@!」(풀 콤보!)",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_low_other",
+ "japaneseText":"「@!&%#@!」(がんばれ!)",
+ "englishUsText":"@!&%#@!\n(Don’t give up!)",
+ "englishUsFontType":3,
+ "frenchText":"@!&%#@ !\n(N'abandonne pas !)",
+ "frenchFontType":3,
+ "italianText":"@!&%#@!\n(Non arrenderti!)",
+ "italianFontType":3,
+ "germanText":"@!&%#@!\n(Gib nicht auf)",
+ "germanFontType":3,
+ "spanishText":"@!&%#@!\n(¡No te rindas!)",
+ "spanishFontType":3,
+ "chineseTText":"「@!&%#@!」(加油!)",
+ "chineseTFontType":1,
+ "koreanText":"「@!&%#@!」(힘내!)",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_high_other",
+ "japaneseText":"「@!&%#@!」(おしい!)",
+ "englishUsText":"@!&%#@!\n(So close!)",
+ "englishUsFontType":3,
+ "frenchText":"@!&%#@ !\n(Pas loin !)",
+ "frenchFontType":3,
+ "italianText":"@!&%#@!\n(Per poco...!)",
+ "italianFontType":3,
+ "germanText":"@!&%#@!\n(Ganz knapp!)",
+ "germanFontType":3,
+ "spanishText":"@!&%#@!\n(¡Por qué poco!)",
+ "spanishFontType":3,
+ "chineseTText":"「@!&%#@!」(可惜!)",
+ "chineseTFontType":1,
+ "koreanText":"「@!&%#@!」(아까워!)",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_low_other",
+ "japaneseText":"「@!&%#@!」(クリア!)",
+ "englishUsText":"@!&%#@!\n(CLEARED!)",
+ "englishUsFontType":3,
+ "frenchText":"@!&%#@ !\n(TERMINÉ !)",
+ "frenchFontType":3,
+ "italianText":"@!&%#@!\n(COMPLETATA!)",
+ "italianFontType":3,
+ "germanText":"@!&%#@!\n(ABGESCHLOSSEN!)",
+ "germanFontType":3,
+ "spanishText":"@!&%#@!\n(¡CONSEGUIDO!)",
+ "spanishFontType":3,
+ "chineseTText":"「@!&%#@!」(通關!)",
+ "chineseTFontType":1,
+ "koreanText":"「@!&%#@!」(클리어!)",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_high_neko",
+ "japaneseText":"ニャ~~~!!!",
+ "englishUsText":"Meow meow meow",
+ "englishUsFontType":3,
+ "frenchText":"Miaou miaou miaou.",
+ "frenchFontType":3,
+ "italianText":"Miao miao miao",
+ "italianFontType":3,
+ "germanText":"Miau, miau, miau.",
+ "germanFontType":3,
+ "spanishText":"Miau, miau, miau.",
+ "spanishFontType":3,
+ "chineseTText":"喵~~~!!!",
+ "chineseTFontType":1,
+ "koreanText":"야옹~~~!!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_low_neko",
+ "japaneseText":"ニャ~ァ~",
+ "englishUsText":"Meow!",
+ "englishUsFontType":3,
+ "frenchText":"Miaou !",
+ "frenchFontType":3,
+ "italianText":"Miao!",
+ "italianFontType":3,
+ "germanText":"Miau!",
+ "germanFontType":3,
+ "spanishText":"¡Miau!",
+ "spanishFontType":3,
+ "chineseTText":"喵~~",
+ "chineseTFontType":1,
+ "koreanText":"냐~앙~",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_high_neko",
+ "japaneseText":"ニャッニャッ!",
+ "englishUsText":"Meow meow!",
+ "englishUsFontType":3,
+ "frenchText":"Miaou miaou !",
+ "frenchFontType":3,
+ "italianText":"Miao miao",
+ "italianFontType":3,
+ "germanText":"Miau, miau!",
+ "germanFontType":3,
+ "spanishText":"¡Miau, miau!",
+ "spanishFontType":3,
+ "chineseTText":"喵喵!",
+ "chineseTFontType":1,
+ "koreanText":"야야옹!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_low_neko",
+ "japaneseText":"ニャ~~~!!!",
+ "englishUsText":"Meow meow meow!",
+ "englishUsFontType":3,
+ "frenchText":"Miaou miaou miaou !",
+ "frenchFontType":3,
+ "italianText":"Miao miao miao!",
+ "italianFontType":3,
+ "germanText":"Miau, miau, miau!",
+ "germanFontType":3,
+ "spanishText":"¡Miau, miau, miau!",
+ "spanishFontType":3,
+ "chineseTText":"喵~~~!!!",
+ "chineseTFontType":1,
+ "koreanText":"냐냐냐~~~!!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_high_namahage",
+ "japaneseText":"クリア!フルコンボだぁ!",
+ "englishUsText":"CLEARED!\nA Full Combo!",
+ "englishUsFontType":3,
+ "frenchText":"TERMINÉ !\nCombo max !",
+ "frenchFontType":3,
+ "italianText":"COMPLETATA!\nCon un'unica combo!",
+ "italianFontType":3,
+ "germanText":"GESCHAFFT!\nEine vollständige Kombo!",
+ "germanFontType":3,
+ "spanishText":"¡CONSEGUIDO!\n¡Un combo completo!",
+ "spanishFontType":3,
+ "chineseTText":"通關!是全連段!",
+ "chineseTFontType":1,
+ "koreanText":"클리어! 풀 콤보다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_low_namahage",
+ "japaneseText":"がんばっぺい!",
+ "englishUsText":"You can do it!",
+ "englishUsFontType":3,
+ "frenchText":"Essaye encore !",
+ "frenchFontType":3,
+ "italianText":"Puoi farcela, su!",
+ "italianFontType":3,
+ "germanText":"GEWALTIGE Leistung!\nViel Glück weiterhin!",
+ "germanFontType":3,
+ "spanishText":"¡Ya casi lo tienes!",
+ "spanishFontType":3,
+ "chineseTText":"得再加油!",
+ "chineseTFontType":1,
+ "koreanText":"힘내라!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_high_namahage",
+ "japaneseText":"おしかったなぁ",
+ "englishUsText":"Almost had it",
+ "englishUsFontType":3,
+ "frenchText":"Tu y étais presque.",
+ "frenchFontType":3,
+ "italianText":"Per poco, accidenti!",
+ "italianFontType":3,
+ "germanText":"Fast geschafft!",
+ "germanFontType":3,
+ "spanishText":"Casi lo tenías.",
+ "spanishFontType":3,
+ "chineseTText":"真可惜呢",
+ "chineseTFontType":1,
+ "koreanText":"아까웠어",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_low_namahage",
+ "japaneseText":"クリア!うめかったなぁ",
+ "englishUsText":"CLEARED,\nnice job",
+ "englishUsFontType":3,
+ "frenchText":"TERMINÉ,\nbien joué.",
+ "frenchFontType":3,
+ "italianText":"COMPLETATA,\nottimo lavoro.",
+ "italianFontType":3,
+ "germanText":"GESCHAFFT,\ngute Arbeit.",
+ "germanFontType":3,
+ "spanishText":"CONSEGUIDO,\nbuen trabajo.",
+ "spanishFontType":3,
+ "chineseTText":"通關!表現不錯呢",
+ "chineseTFontType":1,
+ "koreanText":"클리어, 잘 했어",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_high_takoyaki",
+ "japaneseText":"クリア!フルコンボやで!",
+ "englishUsText":"CLEARED!\nFull Combo, baby!",
+ "englishUsFontType":3,
+ "frenchText":"TERMINÉ !\nCombo max, baby !",
+ "frenchFontType":3,
+ "italianText":"COMPLETATA!\nE con un'unica combo, baby!",
+ "italianFontType":3,
+ "germanText":"GESCHAFFT!\nVollständige Kombo, Baby!",
+ "germanFontType":3,
+ "spanishText":"¡CONSEGUIDO!\n¡Combo completo, sí!",
+ "spanishFontType":3,
+ "chineseTText":"通關!全連段啦!",
+ "chineseTFontType":1,
+ "koreanText":"클리어! 풀 콤보래이!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_low_takoyaki",
+ "japaneseText":"次がんばろ~や",
+ "englishUsText":"You’ll get it next time",
+ "englishUsFontType":3,
+ "frenchText":"Tu réussiras\nla prochaine fois !",
+ "frenchFontType":3,
+ "italianText":"Ce la farai\nla prossima volta!",
+ "italianFontType":3,
+ "germanText":"Du schaffst es beim nächsten Mal!",
+ "germanFontType":3,
+ "spanishText":"La próxima vez\nlo conseguirás.",
+ "spanishFontType":3,
+ "chineseTText":"下次得再加油的說~",
+ "chineseTFontType":1,
+ "koreanText":"다음에는 힘내라~",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_high_takoyaki",
+ "japaneseText":"おっしーなぁ、もうちょいやん!",
+ "englishUsText":"You almost had it!",
+ "englishUsFontType":3,
+ "frenchText":"Tu y étais presque !",
+ "frenchFontType":3,
+ "italianText":"Per pochissimo, accidenti!",
+ "italianFontType":3,
+ "germanText":"Du hättest es fast geschafft!",
+ "germanFontType":3,
+ "spanishText":"¡Casi lo tenías!",
+ "spanishFontType":3,
+ "chineseTText":"真可惜,還差那麼一點啦!",
+ "chineseTFontType":1,
+ "koreanText":"아까비~ 쪼까 더 해봐라!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_low_takoyaki",
+ "japaneseText":"クリア!めちゃうまいやん!",
+ "englishUsText":"CLEARED!\nThat was great!",
+ "englishUsFontType":3,
+ "frenchText":"TERMINÉ !\nC'était génial !",
+ "frenchFontType":3,
+ "italianText":"COMPLETATA!\nGrandioso!",
+ "italianFontType":3,
+ "germanText":"GESCHAFFT!\nDas war super!",
+ "germanFontType":3,
+ "spanishText":"¡CONSEGUIDO!\n¡Ha sido fabuloso!",
+ "spanishFontType":3,
+ "chineseTText":"通關!表現的真讚啦!",
+ "chineseTFontType":1,
+ "koreanText":"클리어! 무지 잘 한다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_high_tatsudon",
+ "japaneseText":"ハイッ!フルコンボ!",
+ "englishUsText":"Yay! Full Combo",
+ "englishUsFontType":3,
+ "frenchText":"Ouais ! Combo max !",
+ "frenchFontType":3,
+ "italianText":"Sì! Con un'unica combo!",
+ "italianFontType":3,
+ "germanText":"Yippie! Vollständige Kombo.",
+ "germanFontType":3,
+ "spanishText":"¡Sí! Combo completo.",
+ "spanishFontType":3,
+ "chineseTText":"好耶!全連段!",
+ "chineseTFontType":1,
+ "koreanText":"네! 풀 콤보!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_low_tatsudon",
+ "japaneseText":"ガンバッテクダサ~イ!",
+ "englishUsText":"Don’t give up!",
+ "englishUsFontType":3,
+ "frenchText":"N'abandonne pas !",
+ "frenchFontType":3,
+ "italianText":"Non arrenderti!",
+ "italianFontType":3,
+ "germanText":"Gib nicht auf!",
+ "germanFontType":3,
+ "spanishText":"¡No te rindas!",
+ "spanishFontType":3,
+ "chineseTText":"請再加油~!",
+ "chineseTFontType":1,
+ "koreanText":"열심히 하세요~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_high_tatsudon",
+ "japaneseText":"オシイ!オシイデ~ス!",
+ "englishUsText":"Nearly had it!",
+ "englishUsFontType":3,
+ "frenchText":"C'est pas passé loin !",
+ "frenchFontType":3,
+ "italianText":"C'eri quasi!",
+ "italianFontType":3,
+ "germanText":"Ganz knapp vorbei!",
+ "germanFontType":3,
+ "spanishText":"¡Por poco!",
+ "spanishFontType":3,
+ "chineseTText":"可惜!真~是可惜!",
+ "chineseTFontType":1,
+ "koreanText":"아까워! 아깝습니다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_low_tatsudon",
+ "japaneseText":"ウマイ!ソノチョウシデ~ス!",
+ "englishUsText":"That’s it! Great job!",
+ "englishUsFontType":3,
+ "frenchText":"Ouais ! Beau travail !",
+ "frenchFontType":3,
+ "italianText":"Ottimo! Così!",
+ "italianFontType":3,
+ "germanText":"Ja! Super gemacht!",
+ "germanFontType":3,
+ "spanishText":"¡Eso es! ¡Buen trabajo!",
+ "spanishFontType":3,
+ "chineseTText":"厲害!就是那樣~!",
+ "chineseTFontType":1,
+ "koreanText":"잘 한다! 그 기세입니다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_high_donko",
+ "japaneseText":"クリア!フルコンボおめでと~!",
+ "englishUsText":"CLEARED!\nCongrats on the Full Combo!",
+ "englishUsFontType":3,
+ "frenchText":"TERMINÉ !\nFélicitations pour ce combo max !",
+ "frenchFontType":3,
+ "italianText":"COMPLETATA!\nE complimenti per l'unica combo!",
+ "italianFontType":3,
+ "germanText":"GESCHAFFT! GLÜCKWUNSCH!\nEine vollständige Kombo!",
+ "germanFontType":3,
+ "spanishText":"¡CONSEGUIDO!\n¡Enhorabuena por el combo completo!",
+ "spanishFontType":3,
+ "chineseTText":"通過!恭喜全連段!",
+ "chineseTFontType":1,
+ "koreanText":"클리어! 풀 콤보 축하해~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_low_donko",
+ "japaneseText":"がんばればきっとできるわ!",
+ "englishUsText":"I know you can do this!",
+ "englishUsFontType":3,
+ "frenchText":"Je sais que\ntu peux réussir !",
+ "frenchFontType":3,
+ "italianText":"So che puoi farcela!",
+ "italianFontType":3,
+ "germanText":"Ich weiß, du schaffst es!",
+ "germanFontType":3,
+ "spanishText":"¡Sé que puedes hacerlo!",
+ "spanishFontType":3,
+ "chineseTText":"再加點油的話,一定能辦到!",
+ "chineseTFontType":1,
+ "koreanText":"힘내면 분명 할 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_high_donko",
+ "japaneseText":"あともう少しよ!がんばって!",
+ "englishUsText":"You were so close!\nDon’t give up!",
+ "englishUsFontType":3,
+ "frenchText":"Tu y étais presque !\nN'abandonne pas !",
+ "frenchFontType":3,
+ "italianText":"Accidenti, per poco!\nNon arrenderti!",
+ "italianFontType":3,
+ "germanText":"Du warst so knapp dran!\nGib nicht auf!",
+ "germanFontType":3,
+ "spanishText":"¡Por poco!\n¡No te rindas!",
+ "spanishFontType":3,
+ "chineseTText":"還差一點!加油!",
+ "chineseTFontType":1,
+ "koreanText":"조금만 더 하면 돼! 힘내!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_low_donko",
+ "japaneseText":"クリア!とても上手だったわよ!",
+ "englishUsText":"CLEARED!\nThat was wonderful!",
+ "englishUsFontType":3,
+ "frenchText":"TERMINÉ !\nC'était merveilleux !",
+ "frenchFontType":3,
+ "italianText":"COMPLETATA!\nStraordinario!",
+ "italianFontType":3,
+ "germanText":"GESCHAFFT!\nDas war wunderbar!",
+ "germanFontType":3,
+ "spanishText":"¡CONSEGUIDO!\n¡Ha sido maravilloso!",
+ "spanishFontType":3,
+ "chineseTText":"通關!真的很厲害呢!",
+ "chineseTFontType":1,
+ "koreanText":"클리어! 정말 잘 했어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_1_don",
+ "japaneseText":"1位だド~ン!",
+ "englishUsText":"I’m 1st!",
+ "englishUsFontType":3,
+ "frenchText":"Je suis 1er !",
+ "frenchFontType":3,
+ "italianText":"Primo!",
+ "italianFontType":3,
+ "germanText":"Ich bin Erster!",
+ "germanFontType":3,
+ "spanishText":"¡Soy el 1.º!",
+ "spanishFontType":3,
+ "chineseTText":"第1名咚~!",
+ "chineseTFontType":1,
+ "koreanText":"1등이다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_2_don",
+ "japaneseText":"2位だド~ン!",
+ "englishUsText":"I’m 2nd!",
+ "englishUsFontType":3,
+ "frenchText":"Je suis 2e !",
+ "frenchFontType":3,
+ "italianText":"Secondo!",
+ "italianFontType":3,
+ "germanText":"Ich bin Zweiter!",
+ "germanFontType":3,
+ "spanishText":"¡Soy el 2.º!",
+ "spanishFontType":3,
+ "chineseTText":"第2名咚~!",
+ "chineseTFontType":1,
+ "koreanText":"2등이다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_3_don",
+ "japaneseText":"3位だド~ン!",
+ "englishUsText":"I’m 3rd!",
+ "englishUsFontType":3,
+ "frenchText":"Je suis 3e !",
+ "frenchFontType":3,
+ "italianText":"Terzo!",
+ "italianFontType":3,
+ "germanText":"Ich bin Dritter!",
+ "germanFontType":3,
+ "spanishText":"¡Soy el 3.º!",
+ "spanishFontType":3,
+ "chineseTText":"第3名咚~!",
+ "chineseTFontType":1,
+ "koreanText":"3등이다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_4_don",
+ "japaneseText":"4位だド~ン!",
+ "englishUsText":"I’m 4th!",
+ "englishUsFontType":3,
+ "frenchText":"Je suis 4e !",
+ "frenchFontType":3,
+ "italianText":"Quarto!",
+ "italianFontType":3,
+ "germanText":"Ich bin Vierter!",
+ "germanFontType":3,
+ "spanishText":"¡Soy el 4.º!",
+ "spanishFontType":3,
+ "chineseTText":"第4名咚~!",
+ "chineseTFontType":1,
+ "koreanText":"4등이다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_1_meka",
+ "japaneseText":"1位ダメカ",
+ "englishUsText":"Mecha 1st",
+ "englishUsFontType":3,
+ "frenchText":"Mecha 1er",
+ "frenchFontType":3,
+ "italianText":"Mecha 1°",
+ "italianFontType":3,
+ "germanText":"Mecha-Erster",
+ "germanFontType":3,
+ "spanishText":"Robot 1.º",
+ "spanishFontType":3,
+ "chineseTText":"第1名MEKA!",
+ "chineseTFontType":1,
+ "koreanText":"1등이다메카",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_2_meka",
+ "japaneseText":"2位ダメカ",
+ "englishUsText":"Mecha 2nd",
+ "englishUsFontType":3,
+ "frenchText":"Mecha 2e",
+ "frenchFontType":3,
+ "italianText":"Mecha 2°",
+ "italianFontType":3,
+ "germanText":"Mecha-Zweiter",
+ "germanFontType":3,
+ "spanishText":"Robot 2.º",
+ "spanishFontType":3,
+ "chineseTText":"第2名MEKA!",
+ "chineseTFontType":1,
+ "koreanText":"2등이다메카",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_3_meka",
+ "japaneseText":"3位ダメカ",
+ "englishUsText":"Mecha 3rd",
+ "englishUsFontType":3,
+ "frenchText":"Mecha 3e",
+ "frenchFontType":3,
+ "italianText":"Mecha 3°",
+ "italianFontType":3,
+ "germanText":"Mecha-Dritter",
+ "germanFontType":3,
+ "spanishText":"Robot 3.º",
+ "spanishFontType":3,
+ "chineseTText":"第3名MEKA!",
+ "chineseTFontType":1,
+ "koreanText":"3등이다메카",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_4_meka",
+ "japaneseText":"4位ダメカ",
+ "englishUsText":"Mecha 4th",
+ "englishUsFontType":3,
+ "frenchText":"Mecha 4e",
+ "frenchFontType":3,
+ "italianText":"Mecha 4°",
+ "italianFontType":3,
+ "germanText":"Mecha-Vierter",
+ "germanFontType":3,
+ "spanishText":"Robot 4.º",
+ "spanishFontType":3,
+ "chineseTText":"第4名MEKA!",
+ "chineseTFontType":1,
+ "koreanText":"4등이다메카",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_1_kame",
+ "japaneseText":"1位であります!",
+ "englishUsText":"1st place!",
+ "englishUsFontType":3,
+ "frenchText":"1re place !",
+ "frenchFontType":3,
+ "italianText":"1°!",
+ "italianFontType":3,
+ "germanText":"Erster Platz!",
+ "germanFontType":3,
+ "spanishText":"¡1er puesto!",
+ "spanishFontType":3,
+ "chineseTText":"你是第1名!",
+ "chineseTFontType":1,
+ "koreanText":"1등입니다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_2_kame",
+ "japaneseText":"2位であります!",
+ "englishUsText":"2nd place!",
+ "englishUsFontType":3,
+ "frenchText":"2e place !",
+ "frenchFontType":3,
+ "italianText":"2°!",
+ "italianFontType":3,
+ "germanText":"Zweiter Platz!",
+ "germanFontType":3,
+ "spanishText":"¡2.º puesto!",
+ "spanishFontType":3,
+ "chineseTText":"你是第2名!",
+ "chineseTFontType":1,
+ "koreanText":"2등입니다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_3_kame",
+ "japaneseText":"3位であります!",
+ "englishUsText":"3rd place!",
+ "englishUsFontType":3,
+ "frenchText":"3e place !",
+ "frenchFontType":3,
+ "italianText":"3°!",
+ "italianFontType":3,
+ "germanText":"Dritter Platz!",
+ "germanFontType":3,
+ "spanishText":"¡3er puesto!",
+ "spanishFontType":3,
+ "chineseTText":"你是第3名!",
+ "chineseTFontType":1,
+ "koreanText":"3등입니다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_4_kame",
+ "japaneseText":"4位であります!",
+ "englishUsText":"4th place!",
+ "englishUsFontType":3,
+ "frenchText":"4e place !",
+ "frenchFontType":3,
+ "italianText":"4°!",
+ "italianFontType":3,
+ "germanText":"Vierter Platz!",
+ "germanFontType":3,
+ "spanishText":"¡4.º puesto!",
+ "spanishFontType":3,
+ "chineseTText":"你是第4名!",
+ "chineseTFontType":1,
+ "koreanText":"4등입니다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_1_bachio",
+ "japaneseText":"1位だよ!",
+ "englishUsText":"I’m 1st!",
+ "englishUsFontType":3,
+ "frenchText":"Je suis 1er !",
+ "frenchFontType":3,
+ "italianText":"Primo!",
+ "italianFontType":3,
+ "germanText":"Ich bin Erster!",
+ "germanFontType":3,
+ "spanishText":"¡Soy el 1.º!",
+ "spanishFontType":3,
+ "chineseTText":"第1名呦!",
+ "chineseTFontType":1,
+ "koreanText":"1등이야!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_2_bachio",
+ "japaneseText":"2位だよ!",
+ "englishUsText":"I’m 2nd!",
+ "englishUsFontType":3,
+ "frenchText":"Je suis 2e !",
+ "frenchFontType":3,
+ "italianText":"Secondo!",
+ "italianFontType":3,
+ "germanText":"Ich bin Zweiter!",
+ "germanFontType":3,
+ "spanishText":"¡Soy el 2.º!",
+ "spanishFontType":3,
+ "chineseTText":"第2名呦!",
+ "chineseTFontType":1,
+ "koreanText":"2등이야!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_3_bachio",
+ "japaneseText":"3位だよ!",
+ "englishUsText":"I’m 3rd!",
+ "englishUsFontType":3,
+ "frenchText":"Je suis 3e !",
+ "frenchFontType":3,
+ "italianText":"Terzo!",
+ "italianFontType":3,
+ "germanText":"Ich bin Dritter!",
+ "germanFontType":3,
+ "spanishText":"¡Soy el 3.º!",
+ "spanishFontType":3,
+ "chineseTText":"第3名呦!",
+ "chineseTFontType":1,
+ "koreanText":"3등이야!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_4_bachio",
+ "japaneseText":"4位だよ!",
+ "englishUsText":"I’m 4th!",
+ "englishUsFontType":3,
+ "frenchText":"Je suis 4e !",
+ "frenchFontType":3,
+ "italianText":"Quarto!",
+ "italianFontType":3,
+ "germanText":"Ich bin Vierter!",
+ "germanFontType":3,
+ "spanishText":"¡Soy el 4.º!",
+ "spanishFontType":3,
+ "chineseTText":"第4名呦!",
+ "chineseTFontType":1,
+ "koreanText":"4등이야!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_1_inu",
+ "japaneseText":"ワンワーワン!(ナンバーワン!)",
+ "englishUsText":"Ruff ruff!",
+ "englishUsFontType":3,
+ "frenchText":"Ouaf ouaf !",
+ "frenchFontType":3,
+ "italianText":"Ruff ruff!",
+ "italianFontType":3,
+ "germanText":"Raff, raff!",
+ "germanFontType":3,
+ "spanishText":"¡Guau!",
+ "spanishFontType":3,
+ "chineseTText":"汪汪~汪!(NO.1!)",
+ "chineseTFontType":1,
+ "koreanText":"멍머멍!(넘버 원!)",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_2_inu",
+ "japaneseText":"ワンワン!",
+ "englishUsText":"Bark bark!",
+ "englishUsFontType":3,
+ "frenchText":"Ouaf ouaf !",
+ "frenchFontType":3,
+ "italianText":"Bau, bau!",
+ "italianFontType":3,
+ "germanText":"Bell, bell!",
+ "germanFontType":3,
+ "spanishText":"¡Guau, guau!",
+ "spanishFontType":3,
+ "chineseTText":"汪汪!",
+ "chineseTFontType":1,
+ "koreanText":"멍멍!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_3_inu",
+ "japaneseText":"ワンワンワン!",
+ "englishUsText":"Arf arf!",
+ "englishUsFontType":3,
+ "frenchText":"Arf arf !",
+ "frenchFontType":3,
+ "italianText":"Arf arf!",
+ "italianFontType":3,
+ "germanText":"Wuff, wuff!",
+ "germanFontType":3,
+ "spanishText":"¡Grr, grr!",
+ "spanishFontType":3,
+ "chineseTText":"汪汪汪!",
+ "chineseTFontType":1,
+ "koreanText":"멍멍멍!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_4_inu",
+ "japaneseText":"クゥーン",
+ "englishUsText":"Howwwl!",
+ "englishUsFontType":3,
+ "frenchText":"Ahouuuu !",
+ "frenchFontType":3,
+ "italianText":"Aùuuuu!",
+ "italianFontType":3,
+ "germanText":"Jauuuul!",
+ "germanFontType":3,
+ "spanishText":"¡Auuu!",
+ "spanishFontType":3,
+ "chineseTText":"嗚~嗯!",
+ "chineseTFontType":1,
+ "koreanText":"끄응",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_1_unagi",
+ "japaneseText":"1位だぜぃ!",
+ "englishUsText":"1st place!",
+ "englishUsFontType":3,
+ "frenchText":"1re place !",
+ "frenchFontType":3,
+ "italianText":"1°!",
+ "italianFontType":3,
+ "germanText":"Erster Platz!",
+ "germanFontType":3,
+ "spanishText":"¡1er puesto!",
+ "spanishFontType":3,
+ "chineseTText":"是第1名耶!",
+ "chineseTFontType":1,
+ "koreanText":"1등이다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_2_unagi",
+ "japaneseText":"2位だぜぃ!",
+ "englishUsText":"2nd place!",
+ "englishUsFontType":3,
+ "frenchText":"2e place !",
+ "frenchFontType":3,
+ "italianText":"2°!",
+ "italianFontType":3,
+ "germanText":"Zweiter Platz!",
+ "germanFontType":3,
+ "spanishText":"¡2.º puesto!",
+ "spanishFontType":3,
+ "chineseTText":"是第2名耶!",
+ "chineseTFontType":1,
+ "koreanText":"2등이다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_3_unagi",
+ "japaneseText":"3位だぜぃ!",
+ "englishUsText":"3rd place!",
+ "englishUsFontType":3,
+ "frenchText":"3e place !",
+ "frenchFontType":3,
+ "italianText":"3°!",
+ "italianFontType":3,
+ "germanText":"Dritter Platz!",
+ "germanFontType":3,
+ "spanishText":"¡3er puesto!",
+ "spanishFontType":3,
+ "chineseTText":"是第3名耶!",
+ "chineseTFontType":1,
+ "koreanText":"3등이다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_4_unagi",
+ "japaneseText":"4位だコンチクショ!",
+ "englishUsText":"4th place!",
+ "englishUsFontType":3,
+ "frenchText":"4e place !",
+ "frenchFontType":3,
+ "italianText":"4°!",
+ "italianFontType":3,
+ "germanText":"Vierter Platz!",
+ "germanFontType":3,
+ "spanishText":"¡4.º puesto!",
+ "spanishFontType":3,
+ "chineseTText":"是第4名,真可惡!",
+ "chineseTFontType":1,
+ "koreanText":"4등이다젠장!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_1_omen",
+ "japaneseText":"1位ですねぇ",
+ "englishUsText":"1st, eh",
+ "englishUsFontType":3,
+ "frenchText":"1er, hum",
+ "frenchFontType":3,
+ "italianText":"Primo, eh...",
+ "italianFontType":3,
+ "germanText":"Erster, was?",
+ "germanFontType":3,
+ "spanishText":"1.º, eh.",
+ "spanishFontType":3,
+ "chineseTText":"是第1名呢",
+ "chineseTFontType":1,
+ "koreanText":"1등이네요",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_2_omen",
+ "japaneseText":"2位ですねぇ",
+ "englishUsText":"2nd, eh",
+ "englishUsFontType":3,
+ "frenchText":"2e, hum",
+ "frenchFontType":3,
+ "italianText":"Secondo, eh...",
+ "italianFontType":3,
+ "germanText":"Zweiter, was?",
+ "germanFontType":3,
+ "spanishText":"2.º, eh.",
+ "spanishFontType":3,
+ "chineseTText":"是第2名呢",
+ "chineseTFontType":1,
+ "koreanText":"2등이네요",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_3_omen",
+ "japaneseText":"3位ですねぇ",
+ "englishUsText":"3rd, eh",
+ "englishUsFontType":3,
+ "frenchText":"3e, hum",
+ "frenchFontType":3,
+ "italianText":"Terzo, eh...",
+ "italianFontType":3,
+ "germanText":"Dritter, was?",
+ "germanFontType":3,
+ "spanishText":"3.º, eh.",
+ "spanishFontType":3,
+ "chineseTText":"是第3名呢",
+ "chineseTFontType":1,
+ "koreanText":"3등이네요",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_4_omen",
+ "japaneseText":"4位ですねぇ",
+ "englishUsText":"4th, eh",
+ "englishUsFontType":3,
+ "frenchText":"4e, hum",
+ "frenchFontType":3,
+ "italianText":"Quarto, eh...",
+ "italianFontType":3,
+ "germanText":"Vierter, was?",
+ "germanFontType":3,
+ "spanishText":"4.º, eh.",
+ "spanishFontType":3,
+ "chineseTText":"是第4名呢",
+ "chineseTFontType":1,
+ "koreanText":"4등이네요",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_1_other",
+ "japaneseText":"「@!&%#@!」(1位!)",
+ "englishUsText":"@!&%#@!(1st)",
+ "englishUsFontType":3,
+ "frenchText":"@!&%#@ ! (1er)",
+ "frenchFontType":3,
+ "italianText":"@!&%#@!(1°)",
+ "italianFontType":3,
+ "germanText":"@!&%#@! (Erster)",
+ "germanFontType":3,
+ "spanishText":"@!&%#@! (1.º)",
+ "spanishFontType":3,
+ "chineseTText":"「@!&%#@!」(第1名!)",
+ "chineseTFontType":1,
+ "koreanText":"「@!&%#@!」(1등!)",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_2_other",
+ "japaneseText":"「@!&%#@!」(2位!)",
+ "englishUsText":"@!&%#@!(2nd)",
+ "englishUsFontType":3,
+ "frenchText":"@!&%#@ ! (2e)",
+ "frenchFontType":3,
+ "italianText":"@!&%#@!(2°)",
+ "italianFontType":3,
+ "germanText":"@!&%#@! (Zweiter)",
+ "germanFontType":3,
+ "spanishText":"@!&%#@! (2.º)",
+ "spanishFontType":3,
+ "chineseTText":"「@!&%#@!」(第2名!)",
+ "chineseTFontType":1,
+ "koreanText":"「@!&%#@!」(2등!)",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_3_other",
+ "japaneseText":"「@!&%#@!」(3位!)",
+ "englishUsText":"@!&%#@!(3rd)",
+ "englishUsFontType":3,
+ "frenchText":"@!&%#@ ! (3e)",
+ "frenchFontType":3,
+ "italianText":"@!&%#@!(3°)",
+ "italianFontType":3,
+ "germanText":"@!&%#@! (Dritter)",
+ "germanFontType":3,
+ "spanishText":"@!&%#@! (3.º)",
+ "spanishFontType":3,
+ "chineseTText":"「@!&%#@!」(第3名!)",
+ "chineseTFontType":1,
+ "koreanText":"「@!&%#@!」(3등!)",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_4_other",
+ "japaneseText":"「@!&%#@!」(4位!)",
+ "englishUsText":"@!&%#@!(4th)",
+ "englishUsFontType":3,
+ "frenchText":"@!&%#@ ! (4e)",
+ "frenchFontType":3,
+ "italianText":"@!&%#@!(4°)",
+ "italianFontType":3,
+ "germanText":"@!&%#@! (Vierter)",
+ "germanFontType":3,
+ "spanishText":"@!&%#@! (4.º)",
+ "spanishFontType":3,
+ "chineseTText":"「@!&%#@!」(第4名!)",
+ "chineseTFontType":1,
+ "koreanText":"「@!&%#@!」(4등!)",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_1_neko",
+ "japaneseText":"ニャ~~~!!!",
+ "englishUsText":"Meow!",
+ "englishUsFontType":3,
+ "frenchText":"Miaou !",
+ "frenchFontType":3,
+ "italianText":"Miao!",
+ "italianFontType":3,
+ "germanText":"Miau!",
+ "germanFontType":3,
+ "spanishText":"¡Miau!",
+ "spanishFontType":3,
+ "chineseTText":"喵~~~!!!",
+ "chineseTFontType":1,
+ "koreanText":"냥~~~!!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_2_neko",
+ "japaneseText":"ニャ~~~!",
+ "englishUsText":"Meow!",
+ "englishUsFontType":3,
+ "frenchText":"Miaou !",
+ "frenchFontType":3,
+ "italianText":"Miao!",
+ "italianFontType":3,
+ "germanText":"Miau!",
+ "germanFontType":3,
+ "spanishText":"¡Miau!",
+ "spanishFontType":3,
+ "chineseTText":"喵~~~!",
+ "chineseTFontType":1,
+ "koreanText":"냥~~~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_3_neko",
+ "japaneseText":"ニャッニャッ!",
+ "englishUsText":"Meow!",
+ "englishUsFontType":3,
+ "frenchText":"Miaou !",
+ "frenchFontType":3,
+ "italianText":"Miao!",
+ "italianFontType":3,
+ "germanText":"Miau!",
+ "germanFontType":3,
+ "spanishText":"¡Miau!",
+ "spanishFontType":3,
+ "chineseTText":"喵喵!",
+ "chineseTFontType":1,
+ "koreanText":"냥냥!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_4_neko",
+ "japaneseText":"ニャ~ァ~",
+ "englishUsText":"Meow!",
+ "englishUsFontType":3,
+ "frenchText":"Miaou !",
+ "frenchFontType":3,
+ "italianText":"Miao!",
+ "italianFontType":3,
+ "germanText":"Miau!",
+ "germanFontType":3,
+ "spanishText":"¡Miau!",
+ "spanishFontType":3,
+ "chineseTText":"喵~~",
+ "chineseTFontType":1,
+ "koreanText":"냐~앙~",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_1_namahage",
+ "japaneseText":"1位さなったど!うが~!",
+ "englishUsText":"Gah, 1st!",
+ "englishUsFontType":3,
+ "frenchText":"Yo, 1er !",
+ "frenchFontType":3,
+ "italianText":"Gah, primo!",
+ "italianFontType":3,
+ "germanText":"Pah, Erster!",
+ "germanFontType":3,
+ "spanishText":"¡Ah, 1.º!",
+ "spanishFontType":3,
+ "chineseTText":"拿到第1名!嗚嘎~!",
+ "chineseTFontType":1,
+ "koreanText":"1등! 우가~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_2_namahage",
+ "japaneseText":"2位さなったど!うが~!",
+ "englishUsText":"Gah, 2nd!",
+ "englishUsFontType":3,
+ "frenchText":"Yo, 2e !",
+ "frenchFontType":3,
+ "italianText":"Gah, secondo!",
+ "italianFontType":3,
+ "germanText":"Pah, Zweiter!",
+ "germanFontType":3,
+ "spanishText":"¡Ah, 2.º!",
+ "spanishFontType":3,
+ "chineseTText":"拿到第2名!嗚嘎~!",
+ "chineseTFontType":1,
+ "koreanText":"2등! 우가~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_3_namahage",
+ "japaneseText":"3位さなったど!うが~!",
+ "englishUsText":"Gah, 3rd!",
+ "englishUsFontType":3,
+ "frenchText":"Yo, 3e !",
+ "frenchFontType":3,
+ "italianText":"Gah, terzo!",
+ "italianFontType":3,
+ "germanText":"Pah, Dritter!",
+ "germanFontType":3,
+ "spanishText":"¡Ah, 3.º!",
+ "spanishFontType":3,
+ "chineseTText":"拿到第3名!嗚嘎~!",
+ "chineseTFontType":1,
+ "koreanText":"3등! 우가~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_4_namahage",
+ "japaneseText":"4位さなったど!うが~!",
+ "englishUsText":"Gah, 4th!",
+ "englishUsFontType":3,
+ "frenchText":"Yo, 4e !",
+ "frenchFontType":3,
+ "italianText":"Gah, quarto!",
+ "italianFontType":3,
+ "germanText":"Pah, Vierter!",
+ "germanFontType":3,
+ "spanishText":"¡Ah, 4.º!",
+ "spanishFontType":3,
+ "chineseTText":"拿到第4名!嗚嘎~!",
+ "chineseTFontType":1,
+ "koreanText":"4등! 우가~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_1_takoyaki",
+ "japaneseText":"1位やで~!",
+ "englishUsText":"1st, baby!",
+ "englishUsFontType":3,
+ "frenchText":"1er, baby !",
+ "frenchFontType":3,
+ "italianText":"Primo, baby!",
+ "italianFontType":3,
+ "germanText":"Erster, Baby!",
+ "germanFontType":3,
+ "spanishText":"¡1.º, sí!",
+ "spanishFontType":3,
+ "chineseTText":"第1名啦~!",
+ "chineseTFontType":1,
+ "koreanText":"1등이다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_2_takoyaki",
+ "japaneseText":"2位やで~!",
+ "englishUsText":"2nd, baby!",
+ "englishUsFontType":3,
+ "frenchText":"2e, baby !",
+ "frenchFontType":3,
+ "italianText":"Secondo, baby!",
+ "italianFontType":3,
+ "germanText":"Zweiter, Baby!",
+ "germanFontType":3,
+ "spanishText":"¡2.º, sí!",
+ "spanishFontType":3,
+ "chineseTText":"第2名啦~!",
+ "chineseTFontType":1,
+ "koreanText":"2등이다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_3_takoyaki",
+ "japaneseText":"3位や!",
+ "englishUsText":"3rd!",
+ "englishUsFontType":3,
+ "frenchText":"3e !",
+ "frenchFontType":3,
+ "italianText":"Terzo!",
+ "italianFontType":3,
+ "germanText":"Dritter!",
+ "germanFontType":3,
+ "spanishText":"¡3.º!",
+ "spanishFontType":3,
+ "chineseTText":"第3名!",
+ "chineseTFontType":1,
+ "koreanText":"3등이다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_4_takoyaki",
+ "japaneseText":"4位かいな~!",
+ "englishUsText":"4th?! ",
+ "englishUsFontType":3,
+ "frenchText":"4e ?! ",
+ "frenchFontType":3,
+ "italianText":"Quarto?!? ",
+ "italianFontType":3,
+ "germanText":"Vierter! ",
+ "germanFontType":3,
+ "spanishText":"¿4.º? ",
+ "spanishFontType":3,
+ "chineseTText":"是第4名嗎~!",
+ "chineseTFontType":1,
+ "koreanText":"4등했나~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_1_tatsudon",
+ "japaneseText":"1位デ~ス!",
+ "englishUsText":"I’m 1st!",
+ "englishUsFontType":3,
+ "frenchText":"Je suis 1er !",
+ "frenchFontType":3,
+ "italianText":"Primo!",
+ "italianFontType":3,
+ "germanText":"Ich bin Erster!",
+ "germanFontType":3,
+ "spanishText":"¡Soy el 1.º!",
+ "spanishFontType":3,
+ "chineseTText":"是~第1名!",
+ "chineseTFontType":1,
+ "koreanText":"1등입니다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_2_tatsudon",
+ "japaneseText":"2位デ~ス!",
+ "englishUsText":"I’m 2nd!",
+ "englishUsFontType":3,
+ "frenchText":"Je suis 2e !",
+ "frenchFontType":3,
+ "italianText":"Secondo!",
+ "italianFontType":3,
+ "germanText":"Ich bin Zweiter!",
+ "germanFontType":3,
+ "spanishText":"¡Soy el 2.º!",
+ "spanishFontType":3,
+ "chineseTText":"是~第2名!",
+ "chineseTFontType":1,
+ "koreanText":"2등입니다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_3_tatsudon",
+ "japaneseText":"3位デ~ス!",
+ "englishUsText":"I’m 3rd!",
+ "englishUsFontType":3,
+ "frenchText":"Je suis 3e !",
+ "frenchFontType":3,
+ "italianText":"Terzo!",
+ "italianFontType":3,
+ "germanText":"Ich bin Dritter!",
+ "germanFontType":3,
+ "spanishText":"¡Soy el 3.º!",
+ "spanishFontType":3,
+ "chineseTText":"是~第3名!",
+ "chineseTFontType":1,
+ "koreanText":"3등입니다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_4_tatsudon",
+ "japaneseText":"4位デ~ス!",
+ "englishUsText":"I’m 4th!",
+ "englishUsFontType":3,
+ "frenchText":"Je suis 4e !",
+ "frenchFontType":3,
+ "italianText":"Quarto!",
+ "italianFontType":3,
+ "germanText":"Ich bin Vierter!",
+ "germanFontType":3,
+ "spanishText":"¡Soy el 4.º!",
+ "spanishFontType":3,
+ "chineseTText":"是~第4名!",
+ "chineseTFontType":1,
+ "koreanText":"4등입니다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_1_donko",
+ "japaneseText":"1位よ!",
+ "englishUsText":"Yay, 1st!",
+ "englishUsFontType":3,
+ "frenchText":"Ouais, 1er !",
+ "frenchFontType":3,
+ "italianText":"Primo posto!",
+ "italianFontType":3,
+ "germanText":"Yippie, Erster!",
+ "germanFontType":3,
+ "spanishText":"¡Sí, 1.º!",
+ "spanishFontType":3,
+ "chineseTText":"第1名!",
+ "chineseTFontType":1,
+ "koreanText":"1등이야!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_2_donko",
+ "japaneseText":"2位よ!",
+ "englishUsText":"Yay, 2nd!",
+ "englishUsFontType":3,
+ "frenchText":"Ouais, 2e !",
+ "frenchFontType":3,
+ "italianText":"Secondo posto!",
+ "italianFontType":3,
+ "germanText":"Yippie, Zweiter!",
+ "germanFontType":3,
+ "spanishText":"¡Sí, 2.º!",
+ "spanishFontType":3,
+ "chineseTText":"第2名!",
+ "chineseTFontType":1,
+ "koreanText":"2등이야!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_3_donko",
+ "japaneseText":"3位よ!",
+ "englishUsText":"Yay, 3rd!",
+ "englishUsFontType":3,
+ "frenchText":"Ouais, 3e !",
+ "frenchFontType":3,
+ "italianText":"Terzo posto!",
+ "italianFontType":3,
+ "germanText":"Yippie, Dritter!",
+ "germanFontType":3,
+ "spanishText":"¡Sí, 3.º!",
+ "spanishFontType":3,
+ "chineseTText":"第3名!",
+ "chineseTFontType":1,
+ "koreanText":"3등이야!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_4_donko",
+ "japaneseText":"4位よ!",
+ "englishUsText":"Yay, 4th!",
+ "englishUsFontType":3,
+ "frenchText":"Ouais, 4e !",
+ "frenchFontType":3,
+ "italianText":"Quarto posto!",
+ "italianFontType":3,
+ "germanText":"Yippie, Vierter!",
+ "germanFontType":3,
+ "spanishText":"¡Sí, 4.º!",
+ "spanishFontType":3,
+ "chineseTText":"第4名!",
+ "chineseTFontType":1,
+ "koreanText":"4등이야!",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro",
+ "japaneseText":"音色",
+ "englishUsText":"Instrument",
+ "englishUsFontType":3,
+ "frenchText":"Instrument",
+ "frenchFontType":3,
+ "italianText":"Strumento",
+ "italianFontType":3,
+ "germanText":"Instrument",
+ "germanFontType":3,
+ "spanishText":"Instrumento",
+ "spanishFontType":3,
+ "chineseTText":"音色",
+ "chineseTFontType":1,
+ "koreanText":"음색",
+ "koreanFontType":2
+ },
+ {
+ "key":"combo_num",
+ "japaneseText":"最大コンボ数",
+ "englishUsText":"MAX Combo",
+ "englishUsFontType":3,
+ "frenchText":"Combo MAX",
+ "frenchFontType":3,
+ "italianText":"Max combo",
+ "italianFontType":3,
+ "germanText":"MAX. Kombo",
+ "germanFontType":3,
+ "spanishText":"Combo máximo",
+ "spanishFontType":3,
+ "chineseTText":"最多連段數",
+ "chineseTFontType":1,
+ "koreanText":"최대 콤보 수 ",
+ "koreanFontType":2
+ },
+ {
+ "key":"renda_num",
+ "japaneseText":"連打数",
+ "englishUsText":"Drumroll",
+ "englishUsFontType":3,
+ "frenchText":"Roul. de tambour",
+ "frenchFontType":3,
+ "italianText":"Rullo di tamburo",
+ "italianFontType":3,
+ "germanText":"Trommelwirbel",
+ "germanFontType":3,
+ "spanishText":"Golpes de redoble",
+ "spanishFontType":3,
+ "chineseTText":"連打數",
+ "chineseTFontType":1,
+ "koreanText":"연타 횟수 ",
+ "koreanFontType":2
+ },
+ {
+ "key":"score",
+ "japaneseText":"スコア",
+ "englishUsText":"Score",
+ "englishUsFontType":3,
+ "frenchText":"Score",
+ "frenchFontType":3,
+ "italianText":"Punteggio",
+ "italianFontType":3,
+ "germanText":"Punkte",
+ "germanFontType":3,
+ "spanishText":"Puntuación",
+ "spanishFontType":3,
+ "chineseTText":"成績",
+ "chineseTFontType":1,
+ "koreanText":"스코어",
+ "koreanFontType":2
+ },
+ {
+ "key":"back",
+ "japaneseText":"もどる",
+ "englishUsText":"Back",
+ "englishUsFontType":3,
+ "frenchText":"Retour",
+ "frenchFontType":3,
+ "italianText":"Indietro",
+ "italianFontType":3,
+ "germanText":"Zurück",
+ "germanFontType":3,
+ "spanishText":"Atrás",
+ "spanishFontType":3,
+ "chineseTText":"返回",
+ "chineseTFontType":1,
+ "koreanText":"돌아간다",
+ "koreanFontType":2
+ },
+ {
+ "key":"back_hiragana",
+ "japaneseText":"もどる",
+ "englishUsText":"Back",
+ "englishUsFontType":3,
+ "frenchText":"Retour",
+ "frenchFontType":3,
+ "italianText":"Indietro",
+ "italianFontType":3,
+ "germanText":"Zurück",
+ "germanFontType":3,
+ "spanishText":"Atrás",
+ "spanishFontType":3,
+ "chineseTText":"返回",
+ "chineseTFontType":1,
+ "koreanText":"돌아간다",
+ "koreanFontType":2
+ },
+ {
+ "key":"change",
+ "japaneseText":"へんこう",
+ "englishUsText":"Change",
+ "englishUsFontType":3,
+ "frenchText":"Changer",
+ "frenchFontType":3,
+ "italianText":"Cambia",
+ "italianFontType":3,
+ "germanText":"Ändern",
+ "germanFontType":3,
+ "spanishText":"Cambiar",
+ "spanishFontType":3,
+ "chineseTText":"變更",
+ "chineseTFontType":1,
+ "koreanText":"변경",
+ "koreanFontType":2
+ },
+ {
+ "key":"close",
+ "japaneseText":"閉じる",
+ "englishUsText":"Close",
+ "englishUsFontType":3,
+ "frenchText":"Fermer",
+ "frenchFontType":3,
+ "italianText":"Chiudi",
+ "italianFontType":3,
+ "germanText":"Schließen",
+ "germanFontType":3,
+ "spanishText":"Cerrar",
+ "spanishFontType":3,
+ "chineseTText":"關閉",
+ "chineseTFontType":1,
+ "koreanText":"닫기",
+ "koreanFontType":2
+ },
+ {
+ "key":"close_hiragana",
+ "japaneseText":"とじる",
+ "englishUsText":"Close",
+ "englishUsFontType":3,
+ "frenchText":"Fermer",
+ "frenchFontType":3,
+ "italianText":"Chiudi",
+ "italianFontType":3,
+ "germanText":"Schließen",
+ "germanFontType":3,
+ "spanishText":"Cerrar",
+ "spanishFontType":3,
+ "chineseTText":"關閉",
+ "chineseTFontType":1,
+ "koreanText":"닫기",
+ "koreanFontType":2
+ },
+ {
+ "key":"decide",
+ "japaneseText":"決定",
+ "englishUsText":"Confirm",
+ "englishUsFontType":3,
+ "frenchText":"Confirmer",
+ "frenchFontType":3,
+ "italianText":"Conferma",
+ "italianFontType":3,
+ "germanText":"Bestätigen",
+ "germanFontType":3,
+ "spanishText":"Confirmar",
+ "spanishFontType":3,
+ "chineseTText":"決定",
+ "chineseTFontType":1,
+ "koreanText":"결정",
+ "koreanFontType":2
+ },
+ {
+ "key":"discard_changes",
+ "japaneseText":"元にもどす",
+ "englishUsText":"Revert",
+ "englishUsFontType":3,
+ "frenchText":"Revenir",
+ "frenchFontType":3,
+ "italianText":"Ripristina",
+ "italianFontType":3,
+ "germanText":"Zurücksetzen",
+ "germanFontType":3,
+ "spanishText":"Invertir",
+ "spanishFontType":3,
+ "chineseTText":"回復前次設定",
+ "chineseTFontType":1,
+ "koreanText":"되돌린다",
+ "koreanFontType":2
+ },
+ {
+ "key":"genre_skip",
+ "japaneseText":"スキップ",
+ "englishUsText":"Skip",
+ "englishUsFontType":3,
+ "frenchText":"Passer",
+ "frenchFontType":3,
+ "italianText":"Salta",
+ "italianFontType":3,
+ "germanText":"Überspringen",
+ "germanFontType":3,
+ "spanishText":"Omitir",
+ "spanishFontType":3,
+ "chineseTText":"切換",
+ "chineseTFontType":1,
+ "koreanText":"스킵",
+ "koreanFontType":2
+ },
+ {
+ "key":"help",
+ "japaneseText":"ヘルプ",
+ "englishUsText":"Help",
+ "englishUsFontType":3,
+ "frenchText":"Aide",
+ "frenchFontType":3,
+ "italianText":"Aiuto",
+ "italianFontType":3,
+ "germanText":"Hilfe",
+ "germanFontType":3,
+ "spanishText":"Ayuda",
+ "spanishFontType":3,
+ "chineseTText":"說明",
+ "chineseTFontType":1,
+ "koreanText":"도움말",
+ "koreanFontType":2
+ },
+ {
+ "key":"move",
+ "japaneseText":"いどう",
+ "englishUsText":"Move",
+ "englishUsFontType":3,
+ "frenchText":"Bouger",
+ "frenchFontType":3,
+ "italianText":"Muovi",
+ "italianFontType":3,
+ "germanText":"Verschieben",
+ "germanFontType":3,
+ "spanishText":"Mover",
+ "spanishFontType":3,
+ "chineseTText":"移動",
+ "chineseTFontType":1,
+ "koreanText":"이동",
+ "koreanFontType":2
+ },
+ {
+ "key":"next",
+ "japaneseText":"次へ",
+ "englishUsText":"Next",
+ "englishUsFontType":3,
+ "frenchText":"Suivant",
+ "frenchFontType":3,
+ "italianText":"Avanti",
+ "italianFontType":3,
+ "germanText":"Weiter",
+ "germanFontType":3,
+ "spanishText":"Siguiente",
+ "spanishFontType":3,
+ "chineseTText":"繼續",
+ "chineseTFontType":1,
+ "koreanText":"다음",
+ "koreanFontType":2
+ },
+ {
+ "key":"next_hiragana",
+ "japaneseText":"つぎへ",
+ "englishUsText":"Next",
+ "englishUsFontType":3,
+ "frenchText":"Suivant",
+ "frenchFontType":3,
+ "italianText":"Avanti",
+ "italianFontType":3,
+ "germanText":"Weiter",
+ "germanFontType":3,
+ "spanishText":"Siguiente",
+ "spanishFontType":3,
+ "chineseTText":"繼續",
+ "chineseTFontType":1,
+ "koreanText":"다음",
+ "koreanFontType":2
+ },
+ {
+ "key":"option",
+ "japaneseText":"オプション",
+ "englishUsText":"Option",
+ "englishUsFontType":3,
+ "frenchText":"Options",
+ "frenchFontType":3,
+ "italianText":"Opzioni",
+ "italianFontType":3,
+ "germanText":"Optionen",
+ "germanFontType":3,
+ "spanishText":"Opciones",
+ "spanishFontType":3,
+ "chineseTText":"選項",
+ "chineseTFontType":1,
+ "koreanText":"옵션",
+ "koreanFontType":2
+ },
+ {
+ "key":"random_song",
+ "japaneseText":"ランダム",
+ "englishUsText":"Random",
+ "englishUsFontType":3,
+ "frenchText":"Aléatoire",
+ "frenchFontType":3,
+ "italianText":"Casuale",
+ "italianFontType":3,
+ "germanText":"Zufällig",
+ "germanFontType":3,
+ "spanishText":"Aleatorio",
+ "spanishFontType":3,
+ "chineseTText":"隨機選曲",
+ "chineseTFontType":1,
+ "koreanText":"랜덤",
+ "koreanFontType":2
+ },
+ {
+ "key":"restore_defaults",
+ "japaneseText":"リセット",
+ "englishUsText":"Reset",
+ "englishUsFontType":3,
+ "frenchText":"Réinitialiser",
+ "frenchFontType":3,
+ "italianText":"Ripristina",
+ "italianFontType":3,
+ "germanText":"Zurücksetzen",
+ "germanFontType":3,
+ "spanishText":"Restablecer",
+ "spanishFontType":3,
+ "chineseTText":"恢復預設值",
+ "chineseTFontType":1,
+ "koreanText":"초기화",
+ "koreanFontType":2
+ },
+ {
+ "key":"save_and_close",
+ "japaneseText":"へんこうしてとじる",
+ "englishUsText":"Change and Close",
+ "englishUsFontType":3,
+ "frenchText":"Changer et fermer",
+ "frenchFontType":3,
+ "italianText":"Modifica e chiudi",
+ "italianFontType":3,
+ "germanText":"Ändern & schließ.",
+ "germanFontType":3,
+ "spanishText":"Cambiar y cerrar",
+ "spanishFontType":3,
+ "chineseTText":"套用並關閉",
+ "chineseTFontType":1,
+ "koreanText":"변경하고 닫는다",
+ "koreanFontType":2
+ },
+ {
+ "key":"select",
+ "japaneseText":"せんたく",
+ "englishUsText":"Select",
+ "englishUsFontType":3,
+ "frenchText":"Choisir",
+ "frenchFontType":3,
+ "italianText":"Seleziona",
+ "italianFontType":3,
+ "germanText":"Wählen",
+ "germanFontType":3,
+ "spanishText":"Seleccionar",
+ "spanishFontType":3,
+ "chineseTText":"選擇",
+ "chineseTFontType":1,
+ "koreanText":"선택",
+ "koreanFontType":2
+ },
+ {
+ "key":"submenu",
+ "japaneseText":"サブメニュー",
+ "englishUsText":"Submenu",
+ "englishUsFontType":3,
+ "frenchText":"Sous-menu",
+ "frenchFontType":3,
+ "italianText":"Sottomenu",
+ "italianFontType":3,
+ "germanText":"Untermenü",
+ "germanFontType":3,
+ "spanishText":"Submenú",
+ "spanishFontType":3,
+ "chineseTText":"子選單",
+ "chineseTFontType":1,
+ "koreanText":"서브 메뉴",
+ "koreanFontType":2
+ },
+ {
+ "key":"toggle_favorite",
+ "japaneseText":"お気に入り",
+ "englishUsText":"Favorite",
+ "englishUsFontType":3,
+ "frenchText":"Favorite",
+ "frenchFontType":3,
+ "italianText":"Preferite",
+ "italianFontType":3,
+ "germanText":"Favorit",
+ "germanFontType":3,
+ "spanishText":"Favoritas",
+ "spanishFontType":3,
+ "chineseTText":"中意樂曲",
+ "chineseTFontType":1,
+ "koreanText":"즐겨찾기",
+ "koreanFontType":2
+ },
+ {
+ "key":"change_info",
+ "japaneseText":"スキル/プロフィール",
+ "englishUsText":"Skills/Profile",
+ "englishUsFontType":3,
+ "frenchText":"Capacités/Profil",
+ "frenchFontType":3,
+ "italianText":"Abilità/Profilo",
+ "italianFontType":3,
+ "germanText":"Skills/Profil",
+ "germanFontType":3,
+ "spanishText":"Habilidades/Perfil",
+ "spanishFontType":3,
+ "chineseTText":"技能/角色介紹",
+ "chineseTFontType":1,
+ "koreanText":"스킬/프로필",
+ "koreanFontType":2
+ },
+ {
+ "key":"decide_close",
+ "japaneseText":"決定してとじる",
+ "englishUsText":"Confirm and Close",
+ "englishUsFontType":3,
+ "frenchText":"Confirmer et fermer",
+ "frenchFontType":3,
+ "italianText":"Conferma e chiudi",
+ "italianFontType":3,
+ "germanText":"Bestätigen und schließen",
+ "germanFontType":3,
+ "spanishText":"Confirmar y cerrar",
+ "spanishFontType":3,
+ "chineseTText":"確定並關閉",
+ "chineseTFontType":1,
+ "koreanText":"결정하고 닫는다",
+ "koreanFontType":2
+ },
+ {
+ "key":"cancel",
+ "japaneseText":"キャンセル",
+ "englishUsText":"Cancel",
+ "englishUsFontType":3,
+ "frenchText":"Annuler",
+ "frenchFontType":3,
+ "italianText":"Annulla",
+ "italianFontType":3,
+ "germanText":"Abbrechen",
+ "germanFontType":3,
+ "spanishText":"Cancelar",
+ "spanishFontType":3,
+ "chineseTText":"取消",
+ "chineseTFontType":1,
+ "koreanText":"취소",
+ "koreanFontType":2
+ },
+ {
+ "key":"start_hdvib",
+ "japaneseText":"HD振動調整開始",
+ "englishUsText":"Start RumCal",
+ "englishUsFontType":3,
+ "frenchText":"Lancer calibr.",
+ "frenchFontType":3,
+ "italianText":"Calibr. vibr.",
+ "italianFontType":3,
+ "germanText":"Kal. starten",
+ "germanFontType":3,
+ "spanishText":"Iniciar cal. vib.",
+ "spanishFontType":3,
+ "chineseTText":"開始HD震動調整",
+ "chineseTFontType":1,
+ "koreanText":"HD 진동 조정 개시",
+ "koreanFontType":2
+ },
+ {
+ "key":"hit_adjust",
+ "japaneseText":"判定を調整",
+ "englishUsText":"Adjust",
+ "englishUsFontType":3,
+ "frenchText":"Ajuster",
+ "frenchFontType":3,
+ "italianText":"Regola",
+ "italianFontType":3,
+ "germanText":"Anpassen",
+ "germanFontType":3,
+ "spanishText":"Ajustar",
+ "spanishFontType":3,
+ "chineseTText":"調整判定",
+ "chineseTFontType":1,
+ "koreanText":"판정을 조정",
+ "koreanFontType":2
+ },
+ {
+ "key":"ok",
+ "japaneseText":"OK",
+ "englishUsText":"OK",
+ "englishUsFontType":3,
+ "frenchText":"OK",
+ "frenchFontType":3,
+ "italianText":"OK",
+ "italianFontType":3,
+ "germanText":"OK",
+ "germanFontType":3,
+ "spanishText":"Aceptar",
+ "spanishFontType":3,
+ "chineseTText":"OK",
+ "chineseTFontType":1,
+ "koreanText":"OK",
+ "koreanFontType":2
+ },
+ {
+ "key":"vs_result_rule02",
+ "japaneseText":"スコア",
+ "englishUsText":"Score",
+ "englishUsFontType":3,
+ "frenchText":"Score",
+ "frenchFontType":3,
+ "italianText":"Punteggio",
+ "italianFontType":3,
+ "germanText":"Punkte",
+ "germanFontType":3,
+ "spanishText":"Puntuación",
+ "spanishFontType":3,
+ "chineseTText":"成績",
+ "chineseTFontType":1,
+ "koreanText":"스코어",
+ "koreanFontType":2
+ },
+ {
+ "key":"vs_result_rule03",
+ "japaneseText":"最終コンボ数",
+ "englishUsText":"Final Combo",
+ "englishUsFontType":3,
+ "frenchText":"Combo final",
+ "frenchFontType":3,
+ "italianText":"Combo finale",
+ "italianFontType":3,
+ "germanText":"Letzte Kombo",
+ "germanFontType":3,
+ "spanishText":"Combo final",
+ "spanishFontType":3,
+ "chineseTText":"最終連段數",
+ "chineseTFontType":1,
+ "koreanText":"최종 콤보 수",
+ "koreanFontType":2
+ },
+ {
+ "key":"vs_result_rule04",
+ "japaneseText":"良の数",
+ "englishUsText":"GOODs",
+ "englishUsFontType":3,
+ "frenchText":"BONS",
+ "frenchFontType":3,
+ "italianText":"BUONO",
+ "italianFontType":3,
+ "germanText":"GUTs",
+ "germanFontType":3,
+ "spanishText":"BIENES",
+ "spanishFontType":3,
+ "chineseTText":"良次數",
+ "chineseTFontType":1,
+ "koreanText":"얼쑤의 횟수",
+ "koreanFontType":2
+ },
+ {
+ "key":"vs_result_rule05",
+ "japaneseText":"たたけた数",
+ "englishUsText":"Hits",
+ "englishUsFontType":3,
+ "frenchText":"Coups",
+ "frenchFontType":3,
+ "italianText":"A segno",
+ "italianFontType":3,
+ "germanText":"Treffer",
+ "germanFontType":3,
+ "spanishText":"Aciertos",
+ "spanishFontType":3,
+ "chineseTText":"敲打次數",
+ "chineseTFontType":1,
+ "koreanText":"두드린 횟수",
+ "koreanFontType":2
+ },
+ {
+ "key":"branch",
+ "japaneseText":"譜面分岐",
+ "englishUsText":"Diverge Notes",
+ "englishUsFontType":3,
+ "frenchText":"Notes divergentes",
+ "frenchFontType":3,
+ "italianText":"Note divergenti",
+ "italianFontType":3,
+ "germanText":"Abweichungs-Not.",
+ "germanFontType":3,
+ "spanishText":"Notas divergen.",
+ "spanishFontType":3,
+ "chineseTText":"譜面分岐",
+ "chineseTFontType":1,
+ "koreanText":"악보 분기",
+ "koreanFontType":2
+ },
+ {
+ "key":"dialog_no",
+ "japaneseText":"いいえ",
+ "englishUsText":"No",
+ "englishUsFontType":3,
+ "frenchText":"Non",
+ "frenchFontType":3,
+ "italianText":"No",
+ "italianFontType":3,
+ "germanText":"Nein",
+ "germanFontType":3,
+ "spanishText":"No",
+ "spanishFontType":3,
+ "chineseTText":"否",
+ "chineseTFontType":1,
+ "koreanText":"아니오",
+ "koreanFontType":2
+ },
+ {
+ "key":"dialog_yes",
+ "japaneseText":"はい",
+ "englishUsText":"Yes",
+ "englishUsFontType":3,
+ "frenchText":"Oui",
+ "frenchFontType":3,
+ "italianText":"Sì",
+ "italianFontType":3,
+ "germanText":"Ja",
+ "germanFontType":3,
+ "spanishText":"Sí",
+ "spanishFontType":3,
+ "chineseTText":"是",
+ "chineseTFontType":1,
+ "koreanText":"예",
+ "koreanFontType":2
+ },
+ {
+ "key":"hiscore",
+ "japaneseText":"自己ベスト",
+ "englishUsText":"High score",
+ "englishUsFontType":3,
+ "frenchText":"Meilleur score",
+ "frenchFontType":3,
+ "italianText":"Record",
+ "italianFontType":3,
+ "germanText":"Highscore",
+ "germanFontType":3,
+ "spanishText":"Récord",
+ "spanishFontType":3,
+ "chineseTText":"自我紀錄",
+ "chineseTFontType":1,
+ "koreanText":"마이 베스트",
+ "koreanFontType":2
+ },
+ {
+ "key":"course_info",
+ "japaneseText":"※対決ルールの「むずかしさ」は1Pと同じになります",
+ "englishUsText":"*VS Difficulty is the same as 1P",
+ "englishUsFontType":3,
+ "frenchText":"*la difficulté en Match VS sera celle choisie par J1",
+ "frenchFontType":3,
+ "italianText":"*In una partita Versus la difficoltà è scelta dal G1",
+ "italianFontType":3,
+ "germanText":"Der Schwierigkeitsgrad im VS entspricht der Einzelspielerversion",
+ "germanFontType":3,
+ "spanishText":"*La dificultad de los combates es igual a J1",
+ "spanishFontType":3,
+ "chineseTText":"※對決玩法的「難度」與1P相同",
+ "chineseTFontType":1,
+ "koreanText":"※대결 룰의 「난이도」 는 1P가 기준입니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"wait_a_minutes",
+ "japaneseText":"ちょっと待ってね",
+ "englishUsText":"Please wait",
+ "englishUsFontType":3,
+ "frenchText":"Un instant...",
+ "frenchFontType":3,
+ "italianText":"Attendi...",
+ "italianFontType":3,
+ "germanText":"Bitte einen Moment warten ...",
+ "germanFontType":3,
+ "spanishText":"Un momento...",
+ "spanishFontType":3,
+ "chineseTText":"請稍待片刻哦",
+ "chineseTFontType":1,
+ "koreanText":"조금만 기다려줘",
+ "koreanFontType":2
+ },
+ {
+ "key":"eula_contents_tle",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"eula_contents_1",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_4nkari",
+ "japaneseText":"進化理論",
+ "englishUsText":"SHINKARIRON",
+ "englishUsFontType":3,
+ "frenchText":"SHINKARIRON",
+ "frenchFontType":3,
+ "italianText":"SHINKARIRON",
+ "italianFontType":3,
+ "germanText":"SHINKARIRON",
+ "germanFontType":3,
+ "spanishText":"SHINKARIRON",
+ "spanishFontType":3,
+ "chineseTText":"SHINKARIRON",
+ "chineseTFontType":1,
+ "koreanText":"SHINKARIRON",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_4nkari",
+ "japaneseText":"テレビアニメ「新幹線変形ロボ シンカリオン」より",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_4nkari",
+ "japaneseText":"",
+ "englishUsText":"進化理論",
+ "englishUsFontType":0,
+ "frenchText":"進化理論",
+ "frenchFontType":0,
+ "italianText":"進化理論",
+ "italianFontType":0,
+ "germanText":"進化理論",
+ "germanFontType":0,
+ "spanishText":"進化理論",
+ "spanishFontType":0,
+ "chineseTText":"進化理論",
+ "chineseTFontType":0,
+ "koreanText":"進化理論",
+ "koreanFontType":0
+ },
+ {
+ "key":"eula_agree",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"eula_disagree",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"version_error_message",
+ "japaneseText":"通信相手が最新のバージョンではない可能性が御座います。\n最新バージョンに更新後、改めてご確認ください。",
+ "englishUsText":"The other player may not be using the\nlatest version. Please make sure they are\nusing the latest version and try again.",
+ "englishUsFontType":3,
+ "frenchText":"L'autre joueur n'utilise peut-être \npas la dernière version du jeu. \nAssure-toi qu'il utilise la dernière version et réessaie.",
+ "frenchFontType":3,
+ "italianText":"L'altro giocatore potrebbe non avere\nl'ultima versione. Assicurati che stia\nusando l'ultima versione e riprova.",
+ "italianFontType":3,
+ "germanText":"Dein Mitspieler scheint nicht die neueste\nVersion zu verwenden. Vergewissere dich,\ndass die neueste Version installiert ist und versuche es erneut.",
+ "germanFontType":3,
+ "spanishText":"Puede que el otro jugador no esté usando la última \nversión. Por favor, asegúrate que está usando la \núltima versión y prueba otra vez.",
+ "spanishFontType":3,
+ "chineseTText":"通訊對象有可能不是使用最新版本。\n請更新至最新版本後再度嘗試。",
+ "chineseTFontType":1,
+ "koreanText":"통신 상대가 최신 버전이 아닐 가능성이 있습니다.\n최신 버전으로 갱신한 후, 다시 확인해주세요.",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_laputa",
+ "japaneseText":"君をのせて",
+ "englishUsText":"Carrying You",
+ "englishUsFontType":3,
+ "frenchText":"Tandis qu’elle t’emporte",
+ "frenchFontType":3,
+ "italianText":"Con te a bordo",
+ "italianFontType":3,
+ "germanText":"Sie trägt dich",
+ "germanFontType":3,
+ "spanishText":"Llevándote",
+ "spanishFontType":3,
+ "chineseTText":"伴隨著你",
+ "chineseTFontType":1,
+ "koreanText":"너를 태우고",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_laputa",
+ "japaneseText":"「天空の城ラピュタ」より",
+ "englishUsText":"From \" Castle in the Sky \"",
+ "englishUsFontType":3,
+ "frenchText":"de \" Le Château dans le ciel \"",
+ "frenchFontType":3,
+ "italianText":"da \" Il castello nel cielo \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Das Schloss im Himmel \"",
+ "germanFontType":3,
+ "spanishText":"De \" El Castillo en el Cielo \"",
+ "spanishFontType":3,
+ "chineseTText":" 來自「天空之城」",
+ "chineseTFontType":1,
+ "koreanText":"\"천공의 성 라퓨타\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_laputa",
+ "japaneseText":"",
+ "englishUsText":"君をのせて",
+ "englishUsFontType":0,
+ "frenchText":"君をのせて",
+ "frenchFontType":0,
+ "italianText":"君をのせて",
+ "italianFontType":0,
+ "germanText":"君をのせて",
+ "germanFontType":0,
+ "spanishText":"君をのせて",
+ "spanishFontType":0,
+ "chineseTText":"君をのせて",
+ "chineseTFontType":0,
+ "koreanText":"君をのせて",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_totoro",
+ "japaneseText":"となりのトトロ",
+ "englishUsText":"My Neighbor Totoro – Ending Theme Song",
+ "englishUsFontType":3,
+ "frenchText":"Mon Voisin Totoro - générique de fin",
+ "frenchFontType":3,
+ "italianText":"Il mio vicino Totoro - Tema principale",
+ "italianFontType":3,
+ "germanText":"Mein Nachbar Totoro – Abspann",
+ "germanFontType":3,
+ "spanishText":"Mi Vecino Totoro (Tema principal - Tema final)",
+ "spanishFontType":3,
+ "chineseTText":"隔壁的龍貓",
+ "chineseTFontType":1,
+ "koreanText":"이웃집 토토로",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_totoro",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_totoro",
+ "japaneseText":"",
+ "englishUsText":"となりのトトロ",
+ "englishUsFontType":0,
+ "frenchText":"となりのトトロ",
+ "frenchFontType":0,
+ "italianText":"となりのトトロ",
+ "italianFontType":0,
+ "germanText":"となりのトトロ",
+ "germanFontType":0,
+ "spanishText":"となりのトトロ",
+ "spanishFontType":0,
+ "chineseTText":"となりのトトロ",
+ "chineseTFontType":0,
+ "koreanText":"となりのトトロ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_rouge",
+ "japaneseText":"ルージュの伝言",
+ "englishUsText":"Rougeno Dengon",
+ "englishUsFontType":3,
+ "frenchText":"Rougeno Dengon",
+ "frenchFontType":3,
+ "italianText":"Rougeno Dengon",
+ "italianFontType":3,
+ "germanText":"Rougeno Dengon",
+ "germanFontType":3,
+ "spanishText":"Rougeno Dengon",
+ "spanishFontType":3,
+ "chineseTText":"Rougeno Dengon",
+ "chineseTFontType":1,
+ "koreanText":"Rougeno Dengon",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_rouge",
+ "japaneseText":"「魔女の宅急便」より",
+ "englishUsText":"From \" Kiki's Delivery Service \"",
+ "englishUsFontType":3,
+ "frenchText":"de \" Kiki la petite sorcière \"",
+ "frenchFontType":3,
+ "italianText":"da \" Kiki - Consegne a domicilio \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Kikis kleiner Lieferservice \"",
+ "germanFontType":3,
+ "spanishText":"De \" Nicky, la Aprendiz de Bruja \"",
+ "spanishFontType":3,
+ "chineseTText":" 來自「魔女宅急便」",
+ "chineseTFontType":1,
+ "koreanText":"\"마녀 배달부 키키\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_rouge",
+ "japaneseText":"",
+ "englishUsText":"ルージュの伝言",
+ "englishUsFontType":0,
+ "frenchText":"ルージュの伝言",
+ "frenchFontType":0,
+ "italianText":"ルージュの伝言",
+ "italianFontType":0,
+ "germanText":"ルージュの伝言",
+ "germanFontType":0,
+ "spanishText":"ルージュの伝言",
+ "spanishFontType":0,
+ "chineseTText":"ルージュの伝言",
+ "chineseTFontType":0,
+ "koreanText":"ルージュの伝言",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_majotk",
+ "japaneseText":"海の見える街",
+ "englishUsText":"A Town with an Ocean View",
+ "englishUsFontType":3,
+ "frenchText":"Une Ville avec vue sur l’océan",
+ "frenchFontType":3,
+ "italianText":"La città da dove si vede il mare",
+ "italianFontType":3,
+ "germanText":"Eine Stadt am Meer",
+ "germanFontType":3,
+ "spanishText":"Una Ciudad Con Vistas al Mar",
+ "spanishFontType":3,
+ "chineseTText":"能看見海的街道",
+ "chineseTFontType":1,
+ "koreanText":"바다가 보이는 마을",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_majotk",
+ "japaneseText":"「魔女の宅急便」より",
+ "englishUsText":"From \" Kiki's Delivery Service \"",
+ "englishUsFontType":3,
+ "frenchText":"de \" Kiki la petite sorcière \"",
+ "frenchFontType":3,
+ "italianText":"da \" Kiki - Consegne a domicilio \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Kikis kleiner Lieferservice \"",
+ "germanFontType":3,
+ "spanishText":"De \" Nicky, la Aprendiz de Bruja \"",
+ "spanishFontType":3,
+ "chineseTText":" 來自「魔女宅急便」",
+ "chineseTFontType":1,
+ "koreanText":"\"마녀 배달부 키키\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_majotk",
+ "japaneseText":"",
+ "englishUsText":"海の見える街",
+ "englishUsFontType":0,
+ "frenchText":"海の見える街",
+ "frenchFontType":0,
+ "italianText":"海の見える街",
+ "italianFontType":0,
+ "germanText":"海の見える街",
+ "germanFontType":0,
+ "spanishText":"海の見える街",
+ "spanishFontType":0,
+ "chineseTText":"海の見える街",
+ "chineseTFontType":0,
+ "koreanText":"海の見える街",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ponyo",
+ "japaneseText":"崖の上のポニョ",
+ "englishUsText":"Ponyo on the Cliff by the Sea",
+ "englishUsFontType":3,
+ "frenchText":"Ponyo sur la falaise",
+ "frenchFontType":3,
+ "italianText":"Ponyo sulla scogliera",
+ "italianFontType":3,
+ "germanText":"Ponyo – das große Abenteuer am Meer",
+ "germanFontType":3,
+ "spanishText":"Ponyo en el acantilado",
+ "spanishFontType":3,
+ "chineseTText":"崖上的波妞",
+ "chineseTFontType":1,
+ "koreanText":"벼랑 위의 포뇨",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ponyo",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ponyo",
+ "japaneseText":"",
+ "englishUsText":"崖の上のポニョ",
+ "englishUsFontType":0,
+ "frenchText":"崖の上のポニョ",
+ "frenchFontType":0,
+ "italianText":"崖の上のポニョ",
+ "italianFontType":0,
+ "germanText":"崖の上のポニョ",
+ "germanFontType":0,
+ "spanishText":"崖の上のポニョ",
+ "spanishFontType":0,
+ "chineseTText":"崖の上のポニョ",
+ "chineseTFontType":0,
+ "koreanText":"崖の上のポニョ",
+ "koreanFontType":0
+ },
+ {
+ "key":"result_msg_vs_win_miku",
+ "japaneseText":"やった~!",
+ "englishUsText":"I did it!",
+ "englishUsFontType":3,
+ "frenchText":"J'ai réussi !",
+ "frenchFontType":3,
+ "italianText":"Ce l'ho fatta!",
+ "italianFontType":3,
+ "germanText":"Geschafft!",
+ "germanFontType":3,
+ "spanishText":"¡Lo logré!",
+ "spanishFontType":3,
+ "chineseTText":"成功了~!",
+ "chineseTFontType":1,
+ "koreanText":"신난다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_lose_miku",
+ "japaneseText":"うそっ!?",
+ "englishUsText":"No way!",
+ "englishUsFontType":3,
+ "frenchText":"Pas possible !",
+ "frenchFontType":3,
+ "italianText":"Oh, no!",
+ "italianFontType":3,
+ "germanText":"Oh nein!",
+ "germanFontType":3,
+ "spanishText":"¡Ni hablar!",
+ "spanishFontType":3,
+ "chineseTText":"不會吧!?",
+ "chineseTFontType":1,
+ "koreanText":"말도 안 돼!?",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_draw_miku",
+ "japaneseText":"まだまだ~!",
+ "englishUsText":"Not over yet!",
+ "englishUsFontType":3,
+ "frenchText":"C'est pas encore fini !",
+ "frenchFontType":3,
+ "italianText":"Non è finita!",
+ "italianFontType":3,
+ "germanText":"Nicht vorbei!",
+ "germanFontType":3,
+ "spanishText":"¡Aún queda!",
+ "spanishFontType":3,
+ "chineseTText":"再來~!",
+ "chineseTFontType":1,
+ "koreanText":"아직이야!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_high_miku",
+ "japaneseText":"フルコンボ!や~ったね~!",
+ "englishUsText":"A Full Combo! Great job!",
+ "englishUsFontType":3,
+ "frenchText":"Un combo max !\nBien joué !",
+ "frenchFontType":3,
+ "italianText":"Combo completa! Ben fatto!",
+ "italianFontType":3,
+ "germanText":"Eine vollständige\nKombo?! Gut gemacht!",
+ "germanFontType":3,
+ "spanishText":"¡Un combo completo!\n¡Buen trabajo!",
+ "spanishFontType":3,
+ "chineseTText":"全連段!成~功~!",
+ "chineseTFontType":1,
+ "koreanText":"풀 콤보! 해냈어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_low_miku",
+ "japaneseText":"ううう~!次は、がんばって~!",
+ "englishUsText":"Aww! You’ll get it next time!",
+ "englishUsFontType":3,
+ "frenchText":"Oh... Tu réussiras la prochaine fois !",
+ "frenchFontType":3,
+ "italianText":"Oh, ti rifarai la prossima volta!",
+ "italianFontType":3,
+ "germanText":"Ohh! Du schaffst es\nbeim nächsten Mal!",
+ "germanFontType":3,
+ "spanishText":"¡Jo! La próxima lo\nconseguirás.",
+ "spanishFontType":3,
+ "chineseTText":"嗚嗚嗚~!下次得加油了~!",
+ "chineseTFontType":1,
+ "koreanText":"으으으~! 다음에는 힘내자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_high_miku",
+ "japaneseText":"惜しい~!あと、少しだったね~!",
+ "englishUsText":"Nice try! You almost had it!",
+ "englishUsFontType":3,
+ "frenchText":"Joli !\nTu y étais presque !",
+ "frenchFontType":3,
+ "italianText":"Bel tentativo! C'eri quasi!",
+ "italianFontType":3,
+ "germanText":"Guter Versuch!\nDu hättest es fast geschafft!",
+ "germanFontType":3,
+ "spanishText":"¡Buen intento!\n¡Casi lo tenías!",
+ "spanishFontType":3,
+ "chineseTText":"好可惜~!再一點就過關了~!",
+ "chineseTFontType":1,
+ "koreanText":"아까워! 조금 남았네!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_low_miku",
+ "japaneseText":"ノルマクリア~!よくできました~!",
+ "englishUsText":"You beat it! Well done!",
+ "englishUsFontType":3,
+ "frenchText":"Tu as réussi !\nBravo !",
+ "frenchFontType":3,
+ "italianText":"Ce l'hai fatta! Bel lavoro!",
+ "italianFontType":3,
+ "germanText":"Du hast es geschafft!\nGut gemacht!",
+ "germanFontType":3,
+ "spanishText":"¡Lo has conseguido!\n¡Bien hecho!",
+ "spanishFontType":3,
+ "chineseTText":"演奏成功~!做的很棒呦!",
+ "chineseTFontType":1,
+ "koreanText":"클리어 성공! 잘했어요~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_1_miku",
+ "japaneseText":"やった~!",
+ "englishUsText":"Hooray!",
+ "englishUsFontType":3,
+ "frenchText":"Hourra !",
+ "frenchFontType":3,
+ "italianText":"Urrà!",
+ "italianFontType":3,
+ "germanText":"Hurra!",
+ "germanFontType":3,
+ "spanishText":"¡Hurra!",
+ "spanishFontType":3,
+ "chineseTText":"成功了~!",
+ "chineseTFontType":1,
+ "koreanText":"신난다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_2_miku",
+ "japaneseText":"おっけ~い!",
+ "englishUsText":"Okay!",
+ "englishUsFontType":3,
+ "frenchText":"OK !",
+ "frenchFontType":3,
+ "italianText":"OK!",
+ "italianFontType":3,
+ "germanText":"Okay!",
+ "germanFontType":3,
+ "spanishText":"¡Vale!",
+ "spanishFontType":3,
+ "chineseTText":"O~K!",
+ "chineseTFontType":1,
+ "koreanText":"오케이!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_3_miku",
+ "japaneseText":"あれっ!?",
+ "englishUsText":"Huh?!",
+ "englishUsFontType":3,
+ "frenchText":"Hein ?!",
+ "frenchFontType":3,
+ "italianText":"Eh?",
+ "italianFontType":3,
+ "germanText":"Was?!",
+ "germanFontType":3,
+ "spanishText":"¡¿Eh?!",
+ "spanishFontType":3,
+ "chineseTText":"奇怪了!?",
+ "chineseTFontType":1,
+ "koreanText":"어라!?",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_4_miku",
+ "japaneseText":"ううう~!次は、がんばって~!",
+ "englishUsText":"You can do it next time!",
+ "englishUsFontType":3,
+ "frenchText":"La prochaine, c’est la bonne !",
+ "frenchFontType":3,
+ "italianText":"Puoi farcela!",
+ "italianFontType":3,
+ "germanText":"Beim nächsten Mal!",
+ "germanFontType":3,
+ "spanishText":"¡Tú puedes!",
+ "spanishFontType":3,
+ "chineseTText":"嗚嗚嗚~!下次得加油了~!",
+ "chineseTFontType":1,
+ "koreanText":"으으으~! 다음에는 힘내자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_mikuse",
+ "japaneseText":"千本桜",
+ "englishUsText":"Senbonzakura",
+ "englishUsFontType":3,
+ "frenchText":"Senbonzakura",
+ "frenchFontType":3,
+ "italianText":"Senbonzakura",
+ "italianFontType":3,
+ "germanText":"Senbonzakura",
+ "germanFontType":3,
+ "spanishText":"Senbonzakura",
+ "spanishFontType":3,
+ "chineseTText":"千本桜",
+ "chineseTFontType":1,
+ "koreanText":"센봉자쿠라",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mikuse",
+ "japaneseText":"黒うさP feat.初音ミク",
+ "englishUsText":"Kurousa P feat. HATSUNE MIKU",
+ "englishUsFontType":3,
+ "frenchText":"Kurousa P feat. HATSUNE MIKU",
+ "frenchFontType":3,
+ "italianText":"Kurousa P feat. HATSUNE MIKU",
+ "italianFontType":3,
+ "germanText":"Kurousa P feat. HATSUNE MIKU",
+ "germanFontType":3,
+ "spanishText":"Kurousa P feat. HATSUNE MIKU",
+ "spanishFontType":3,
+ "chineseTText":"Kurousa P feat. HATSUNE MIKU",
+ "chineseTFontType":1,
+ "koreanText":"Kurousa P feat. HATSUNE MIKU",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mikuse",
+ "japaneseText":"",
+ "englishUsText":"千本桜",
+ "englishUsFontType":0,
+ "frenchText":"千本桜",
+ "frenchFontType":0,
+ "italianText":"千本桜",
+ "italianFontType":0,
+ "germanText":"千本桜",
+ "germanFontType":0,
+ "spanishText":"千本桜",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"千本桜",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_vfshrr",
+ "japaneseText":"シャルル",
+ "englishUsText":"Charles",
+ "englishUsFontType":3,
+ "frenchText":"Charles",
+ "frenchFontType":3,
+ "italianText":"Charles",
+ "italianFontType":3,
+ "germanText":"Charles",
+ "germanFontType":3,
+ "spanishText":"Charles",
+ "spanishFontType":3,
+ "chineseTText":"查爾斯",
+ "chineseTFontType":1,
+ "koreanText":"샤를",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_vfshrr",
+ "japaneseText":"バルーン feat.flower",
+ "englishUsText":"balloon feat. flower",
+ "englishUsFontType":3,
+ "frenchText":"balloon feat. flower",
+ "frenchFontType":3,
+ "italianText":"balloon feat. flower",
+ "italianFontType":3,
+ "germanText":"balloon feat. flower",
+ "germanFontType":3,
+ "spanishText":"balloon feat. flower",
+ "spanishFontType":3,
+ "chineseTText":"balloon feat.flower",
+ "chineseTFontType":1,
+ "koreanText":"벌룬 feat.flower",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_vfshrr",
+ "japaneseText":"",
+ "englishUsText":"シャルル",
+ "englishUsFontType":0,
+ "frenchText":"シャルル",
+ "frenchFontType":0,
+ "italianText":"シャルル",
+ "italianFontType":0,
+ "germanText":"シャルル",
+ "germanFontType":0,
+ "spanishText":"シャルル",
+ "spanishFontType":0,
+ "chineseTText":"シャルル",
+ "chineseTFontType":0,
+ "koreanText":"シャルル",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_iaasny",
+ "japaneseText":"アスノヨゾラ哨戒班",
+ "englishUsText":"ASUNO YOZORA SHOKAIHAN",
+ "englishUsFontType":3,
+ "frenchText":"ASUNO YOZORA SHOKAIHAN",
+ "frenchFontType":3,
+ "italianText":"ASUNO YOZORA SHOKAIHAN",
+ "italianFontType":3,
+ "germanText":"ASUNO YOZORA SHOKAIHAN",
+ "germanFontType":3,
+ "spanishText":"ASUNO YOZORA SHOKAIHAN",
+ "spanishFontType":3,
+ "chineseTText":"ASUNOYOZORA SHOKAIHAN",
+ "chineseTFontType":1,
+ "koreanText":"ASUNOYOZORA SHOKAIHAN",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_iaasny",
+ "japaneseText":"Orangestar feat.IA",
+ "englishUsText":"Orangestar feat. IA",
+ "englishUsFontType":3,
+ "frenchText":"Orangestar feat. IA",
+ "frenchFontType":3,
+ "italianText":"Orangestar feat. IA",
+ "italianFontType":3,
+ "germanText":"Orangestar feat. IA",
+ "germanFontType":3,
+ "spanishText":"Orangestar feat. IA",
+ "spanishFontType":3,
+ "chineseTText":"Orangestar feat.IA",
+ "chineseTFontType":1,
+ "koreanText":"Orangestar feat.IA",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_iaasny",
+ "japaneseText":"",
+ "englishUsText":"アスノヨゾラ哨戒班",
+ "englishUsFontType":0,
+ "frenchText":"アスノヨゾラ哨戒班",
+ "frenchFontType":0,
+ "italianText":"アスノヨゾラ哨戒班",
+ "italianFontType":0,
+ "germanText":"アスノヨゾラ哨戒班",
+ "germanFontType":0,
+ "spanishText":"アスノヨゾラ哨戒班",
+ "spanishFontType":0,
+ "chineseTText":"アスノヨゾラ哨戒班",
+ "chineseTFontType":0,
+ "koreanText":"アスノヨゾラ哨戒班",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mikuer",
+ "japaneseText":"初音ミクの消失‐劇場版‐",
+ "englishUsText":"HATSUNE MIKU No Shoushitsu -Gekijouban-",
+ "englishUsFontType":3,
+ "frenchText":"HATSUNE MIKU No Shoushitsu -Gekijouban-",
+ "frenchFontType":3,
+ "italianText":"HATSUNE MIKU No Shoushitsu -Gekijouban-",
+ "italianFontType":3,
+ "germanText":"HATSUNE MIKU No Shoushitsu -Gekijouban-",
+ "germanFontType":3,
+ "spanishText":"HATSUNE MIKU No Shoushitsu -Gekijouban-",
+ "spanishFontType":3,
+ "chineseTText":"初音未來の消失 - 劇場版 -",
+ "chineseTFontType":1,
+ "koreanText":"하츠네 미쿠노 쇼우시츠-게키죠우방-",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mikuer",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mikuer",
+ "japaneseText":"",
+ "englishUsText":"初音ミクの消失‐劇場版‐",
+ "englishUsFontType":0,
+ "frenchText":"初音ミクの消失‐劇場版‐",
+ "frenchFontType":0,
+ "italianText":"初音ミクの消失‐劇場版‐",
+ "italianFontType":0,
+ "germanText":"初音ミクの消失‐劇場版‐",
+ "germanFontType":0,
+ "spanishText":"初音ミクの消失‐劇場版‐",
+ "spanishFontType":0,
+ "chineseTText":"初音ミクの消失‐劇場版‐",
+ "chineseTFontType":0,
+ "koreanText":"初音ミクの消失‐劇場版‐",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_toori4",
+ "japaneseText":"トオリヨ",
+ "englishUsText":"TOORIYO",
+ "englishUsFontType":3,
+ "frenchText":"TOORIYO",
+ "frenchFontType":3,
+ "italianText":"TOORIYO",
+ "italianFontType":3,
+ "germanText":"TOORIYO",
+ "germanFontType":3,
+ "spanishText":"TOORIYO",
+ "spanishFontType":3,
+ "chineseTText":"TOORIYO",
+ "chineseTFontType":1,
+ "koreanText":"토오리요",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_toori4",
+ "japaneseText":"テヅカ feat.鏡音リン・鏡音レン",
+ "englishUsText":"Tezuka feat. KAGAMINE RIN, KAGAMINE LEN",
+ "englishUsFontType":3,
+ "frenchText":"Tezuka feat. KAGAMINE RIN, KAGAMINE LEN",
+ "frenchFontType":3,
+ "italianText":"Tezuka feat. KAGAMINE RIN, KAGAMINE LEN",
+ "italianFontType":3,
+ "germanText":"Tezuka feat. KAGAMINE RIN, KAGAMINE LEN",
+ "germanFontType":3,
+ "spanishText":"Tezuka feat. KAGAMINE RIN, KAGAMINE LEN",
+ "spanishFontType":3,
+ "chineseTText":"Tezuka feat. KAGAMINE RIN・KAGAMINE LEN",
+ "chineseTFontType":1,
+ "koreanText":"Tezuka feat.KAGAMINE RIN・KAGAMINE LEN",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_toori4",
+ "japaneseText":"",
+ "englishUsText":"トオリヨ",
+ "englishUsFontType":0,
+ "frenchText":"トオリヨ",
+ "frenchFontType":0,
+ "italianText":"トオリヨ",
+ "italianFontType":0,
+ "germanText":"トオリヨ",
+ "germanFontType":0,
+ "spanishText":"トオリヨ",
+ "spanishFontType":0,
+ "chineseTText":"トオリヨ",
+ "chineseTFontType":0,
+ "koreanText":"トオリヨ",
+ "koreanFontType":0
+ },
+ {
+ "key":"chara_026_nekotomo",
+ "japaneseText":"ネココ&トモモ",
+ "englishUsText":"NEKOKO & TOMOMO",
+ "englishUsFontType":3,
+ "frenchText":"NEKOKO & TOMOMO",
+ "frenchFontType":3,
+ "italianText":"NEKOKO & TOMOMO",
+ "italianFontType":3,
+ "germanText":"NEKOKO & TOMOMO",
+ "germanFontType":3,
+ "spanishText":"NEKOKO & TOMOMO",
+ "spanishFontType":3,
+ "chineseTText":"NEKOKO&TOMOMO",
+ "chineseTFontType":1,
+ "koreanText":"NEKOKO&TOMOMO",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_026_nekotomo",
+ "japaneseText":"「ネコ・トモ」よりゲスト参加!\nみんなと一緒に太鼓の達人で\nほんわか家族になろう!\n\n\n\n",
+ "englishUsText":"Let's welcome our guests from\nNeko Tomo to the Taiko no\nTatsujin family!\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Accueillons comme il se doit\nles membres de Neko Tomo \ndans la famille Taiko no Tatsujin !\n\n\n\n",
+ "frenchFontType":3,
+ "italianText":"Accogliamo i nostri ospiti\ndi Neko Tomo nella grande\nfamiglia di Taiko no Tatsujin!\n\n\n\n",
+ "italianFontType":3,
+ "germanText":"Heißen wir unsere Gäste\nvon Neko Tomo in der \nTaiko no Tatsujin-Familie\nwillkommen!\n\n\n",
+ "germanFontType":3,
+ "spanishText":"¡Demos la bienvenida\na nuestros invitados\nde Neko Tomo a la familia\nde Taiko no Tatsujin!\n\n\n",
+ "spanishFontType":3,
+ "chineseTText":"自「NEKO・TOMO」前來客串演出!\n與大家一起在太鼓之達人裡輕鬆成為家人!\n\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"「NEKO・TOMO」에서 게스트 참가!\n모두와 함께 태고의 달인에서\n훈훈한 가족이 되자!\n\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_high_nekotomo",
+ "japaneseText":"すごいです!フルコンボ!",
+ "englishUsText":"Wow! A full combo!",
+ "englishUsFontType":3,
+ "frenchText":"Waouh ! Un combo max !",
+ "frenchFontType":3,
+ "italianText":"Oh! Una combo completa!",
+ "italianFontType":3,
+ "germanText":"Wow! Eine \nvolle Kombo! \n",
+ "germanFontType":3,
+ "spanishText":"¡Vaya! ¡Un combo completo!",
+ "spanishFontType":3,
+ "chineseTText":"好厲害!全連段呦!",
+ "chineseTFontType":1,
+ "koreanText":"대단해요!풀 콤보!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_low_nekotomo",
+ "japaneseText":"おおーノルマクリアね!",
+ "englishUsText":"Yay! Normal Clear!",
+ "englishUsFontType":3,
+ "frenchText":"Super ! Chanson réussie !",
+ "frenchFontType":3,
+ "italianText":"Completamento normale!",
+ "italianFontType":3,
+ "germanText":"Yay! Abschluss\nnormal!\n",
+ "germanFontType":3,
+ "spanishText":"¡Sí! ¡Canción superada!",
+ "spanishFontType":3,
+ "chineseTText":"喔喔~演奏成功了呢!",
+ "chineseTFontType":1,
+ "koreanText":"오~ 클리어 성공이야!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_high_nekotomo",
+ "japaneseText":"惜しかったよー!",
+ "englishUsText":"Too bad!",
+ "englishUsFontType":3,
+ "frenchText":"Dommage !",
+ "frenchFontType":3,
+ "italianText":"Peccato!",
+ "italianFontType":3,
+ "germanText":"Schade!\n",
+ "germanFontType":3,
+ "spanishText":"¡Qué pena!",
+ "spanishFontType":3,
+ "chineseTText":"好可惜呢~!",
+ "chineseTFontType":1,
+ "koreanText":"아까웠어~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_low_nekotomo",
+ "japaneseText":"にゃん!次はがんばるです~",
+ "englishUsText":"Awww! Better luck next time!",
+ "englishUsFontType":3,
+ "frenchText":"Oooh ! Tu réussiras la prochaine fois !",
+ "frenchFontType":3,
+ "italianText":"Oh, la prossima volta andrà meglio!",
+ "italianFontType":3,
+ "germanText":"Awww!\nMehr Glück nächstes Mal!",
+ "germanFontType":3,
+ "spanishText":"¡Vaya! ¡Más suerte la próxima vez!",
+ "spanishFontType":3,
+ "chineseTText":"喵!下次會加油的。",
+ "chineseTFontType":1,
+ "koreanText":"야옹! 다음엔 힘내요.",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_win_nekotomo",
+ "japaneseText":"やったーニャンダフル!",
+ "englishUsText":"Meowvellous!",
+ "englishUsFontType":3,
+ "frenchText":"Miaouveilleux !",
+ "frenchFontType":3,
+ "italianText":"Miaoraviglioso!",
+ "italianFontType":3,
+ "germanText":"Miautastisch!",
+ "germanFontType":3,
+ "spanishText":"¡Miauravilloso!",
+ "spanishFontType":3,
+ "chineseTText":"成功了~太棒了喵!",
+ "chineseTFontType":1,
+ "koreanText":"해냈어~ 냥더풀!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_lose_nekotomo",
+ "japaneseText":"にゃん!次はがんばるです~",
+ "englishUsText":"Awww! Better luck next time!",
+ "englishUsFontType":3,
+ "frenchText":"Oooh ! Tu réussiras la prochaine fois !",
+ "frenchFontType":3,
+ "italianText":"Oh, la prossima volta andrà meglio!",
+ "italianFontType":3,
+ "germanText":"Awww! Mehr Glück beim nächsten Mal!",
+ "germanFontType":3,
+ "spanishText":"¡Vaya! ¡Más suerte la próxima vez!",
+ "spanishFontType":3,
+ "chineseTText":"喵!下次會加油的。",
+ "chineseTFontType":1,
+ "koreanText":"야옹! 다음엔 힘내요.",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_draw_nekotomo",
+ "japaneseText":"ひきわけですね!",
+ "englishUsText":"It's a draw!",
+ "englishUsFontType":3,
+ "frenchText":"Égalité !",
+ "frenchFontType":3,
+ "italianText":"Pareggio!",
+ "italianFontType":3,
+ "germanText":"Unentschieden!",
+ "germanFontType":3,
+ "spanishText":"¡Empate!",
+ "spanishFontType":3,
+ "chineseTText":"是平手呢!",
+ "chineseTFontType":1,
+ "koreanText":"무승부네요!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_1_nekotomo",
+ "japaneseText":"やったーニャンダフル!",
+ "englishUsText":"Meowvellous!",
+ "englishUsFontType":3,
+ "frenchText":"Miaouveilleux !",
+ "frenchFontType":3,
+ "italianText":"Miaoraviglioso!",
+ "italianFontType":3,
+ "germanText":"Miautastisch!",
+ "germanFontType":3,
+ "spanishText":"¡Miauravilloso!",
+ "spanishFontType":3,
+ "chineseTText":"成功了~太棒了喵!",
+ "chineseTFontType":1,
+ "koreanText":"해냈어~ 냥더풀!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_2_nekotomo",
+ "japaneseText":"がんばったです~",
+ "englishUsText":"Well played!",
+ "englishUsFontType":3,
+ "frenchText":"Bien joué !",
+ "frenchFontType":3,
+ "italianText":"Ben fatto!",
+ "italianFontType":3,
+ "germanText":"Gut gespielt!",
+ "germanFontType":3,
+ "spanishText":"¡Bien jugado!",
+ "spanishFontType":3,
+ "chineseTText":"我盡力了~",
+ "chineseTFontType":1,
+ "koreanText":"열심히 했어요~",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_3_nekotomo",
+ "japaneseText":"えへへ",
+ "englishUsText":"Heehee!",
+ "englishUsFontType":3,
+ "frenchText":"Hi hi !",
+ "frenchFontType":3,
+ "italianText":"Eh eh eh!",
+ "italianFontType":3,
+ "germanText":"Hähä!",
+ "germanFontType":3,
+ "spanishText":"¡Je, je!",
+ "spanishFontType":3,
+ "chineseTText":"唉嘿嘿",
+ "chineseTFontType":1,
+ "koreanText":"에헤헤",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_4_nekotomo",
+ "japaneseText":"にゃん!次はがんばるです~",
+ "englishUsText":"Awww! Better luck next time!",
+ "englishUsFontType":3,
+ "frenchText":"Oooh ! Tu réussiras la prochaine fois !",
+ "frenchFontType":3,
+ "italianText":"Oh, la prossima volta andrà meglio!",
+ "italianFontType":3,
+ "germanText":"Awww! Mehr Glück beim nächsten Mal!",
+ "germanFontType":3,
+ "spanishText":"¡Vaya! ¡Más suerte la próxima vez!",
+ "spanishFontType":3,
+ "chineseTText":"喵!下次會加油的。",
+ "chineseTFontType":1,
+ "koreanText":"야옹! 다음엔 힘내요.",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_th7171",
+ "japaneseText":"ナイト・オブ・ナイツ",
+ "englishUsText":"Night of Knights / Knight of Nights",
+ "englishUsFontType":3,
+ "frenchText":"Night of Knights / Knight of Nights",
+ "frenchFontType":3,
+ "italianText":"Night of Knights / Knight of Nights",
+ "italianFontType":3,
+ "germanText":"Night of Knights / Knight of Nights",
+ "germanFontType":3,
+ "spanishText":"Night of Knights / Knight of Nights",
+ "spanishFontType":3,
+ "chineseTText":"Night of Knights / Knight of Nights",
+ "chineseTFontType":1,
+ "koreanText":"Night of Knights / Knight of Nights",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_th7171",
+ "japaneseText":"東方Projectアレンジ ビートまりお ",
+ "englishUsText":"Toho Project Arrange / beatMARIO",
+ "englishUsFontType":3,
+ "frenchText":"Toho Project Arrange / beatMARIO",
+ "frenchFontType":3,
+ "italianText":"Toho Project Arrange / beatMARIO",
+ "italianFontType":3,
+ "germanText":"Toho Project Arrange / beatMARIO",
+ "germanFontType":3,
+ "spanishText":"Toho Project Arrange / beatMARIO",
+ "spanishFontType":3,
+ "chineseTText":"東方Project Arrange / beatMARIO",
+ "chineseTFontType":1,
+ "koreanText":"Toho Project Arrange / beatMARIO",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_th7171",
+ "japaneseText":"",
+ "englishUsText":"ナイト・オブ・ナイツ",
+ "englishUsFontType":0,
+ "frenchText":"ナイト・オブ・ナイツ",
+ "frenchFontType":0,
+ "italianText":"ナイト・オブ・ナイツ",
+ "italianFontType":0,
+ "germanText":"ナイト・オブ・ナイツ",
+ "germanFontType":0,
+ "spanishText":"ナイト・オブ・ナイツ",
+ "spanishFontType":0,
+ "chineseTText":"ナイト・オブ・ナイツ",
+ "chineseTFontType":0,
+ "koreanText":"ナイト・オブ・ナイツ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_thmura",
+ "japaneseText":"月に叢雲華に風",
+ "englishUsText":"Tsuki Ni Murakumo Hana Ni Kaze",
+ "englishUsFontType":3,
+ "frenchText":"Tsuki Ni Murakumo Hana Ni Kaze",
+ "frenchFontType":3,
+ "italianText":"Tsuki Ni Murakumo Hana Ni Kaze",
+ "italianFontType":3,
+ "germanText":"Tsuki Ni Murakumo Hana Ni Kaze",
+ "germanFontType":3,
+ "spanishText":"Tsuki Ni Murakumo Hana Ni Kaze",
+ "spanishFontType":3,
+ "chineseTText":"月隱於叢雲花散於風",
+ "chineseTFontType":1,
+ "koreanText":"츠키니 무라쿠모 하나니 카제",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_thmura",
+ "japaneseText":"東方Projectアレンジ 幽閉サテライト",
+ "englishUsText":"Toho Project Arrange / Yu-Hei Satellite",
+ "englishUsFontType":3,
+ "frenchText":"Toho Project Arrange / Yu-Hei Satellite",
+ "frenchFontType":3,
+ "italianText":"Toho Project Arrange / Yu-Hei Satellite",
+ "italianFontType":3,
+ "germanText":"Toho Project Arrange / Yu-Hei Satellite",
+ "germanFontType":3,
+ "spanishText":"Toho Project Arrange / Yu-Hei Satellite",
+ "spanishFontType":3,
+ "chineseTText":"東方Project Arrange / 幽閉星光",
+ "chineseTFontType":1,
+ "koreanText":"Toho Project Arrange / Yu-Hei Satellite",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_thmura",
+ "japaneseText":"",
+ "englishUsText":"月に叢雲華に風",
+ "englishUsFontType":0,
+ "frenchText":"月に叢雲華に風",
+ "frenchFontType":0,
+ "italianText":"月に叢雲華に風",
+ "italianFontType":0,
+ "germanText":"月に叢雲華に風",
+ "germanFontType":0,
+ "spanishText":"月に叢雲華に風",
+ "spanishFontType":0,
+ "chineseTText":"月に叢雲華に風",
+ "chineseTFontType":0,
+ "koreanText":"月に叢雲華に風",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_thkero",
+ "japaneseText":"ケロ⑨destiny",
+ "englishUsText":"Kero⑨destiny",
+ "englishUsFontType":3,
+ "frenchText":"Kero⑨destiny",
+ "frenchFontType":3,
+ "italianText":"Kero⑨destiny",
+ "italianFontType":3,
+ "germanText":"Kero⑨destiny",
+ "germanFontType":3,
+ "spanishText":"Kero⑨destiny",
+ "spanishFontType":3,
+ "chineseTText":"呱呱⑨destiny",
+ "chineseTFontType":1,
+ "koreanText":"케로⑨destiny",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_thkero",
+ "japaneseText":"東方Projectアレンジ Silver Forest",
+ "englishUsText":"Toho Project Arrange / Silver Forest",
+ "englishUsFontType":3,
+ "frenchText":"Toho Project Arrange / Silver Forest",
+ "frenchFontType":3,
+ "italianText":"Toho Project Arrange / Silver Forest",
+ "italianFontType":3,
+ "germanText":"Toho Project Arrange / Silver Forest",
+ "germanFontType":3,
+ "spanishText":"Toho Project Arrange / Silver Forest",
+ "spanishFontType":3,
+ "chineseTText":"東方Project Arrange / Silver Forest",
+ "chineseTFontType":1,
+ "koreanText":"Toho Project Arrange / Silver Forest",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_thkero",
+ "japaneseText":"",
+ "englishUsText":"ケロ⑨destiny",
+ "englishUsFontType":0,
+ "frenchText":"ケロ⑨destiny",
+ "frenchFontType":0,
+ "italianText":"ケロ⑨destiny",
+ "italianFontType":0,
+ "germanText":"ケロ⑨destiny",
+ "germanFontType":0,
+ "spanishText":"ケロ⑨destiny",
+ "spanishFontType":0,
+ "chineseTText":"ケロ⑨destiny",
+ "chineseTFontType":0,
+ "koreanText":"ケロ⑨destiny",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_elegy",
+ "japaneseText":"さよならエレジー",
+ "englishUsText":"Sayonara Elegy",
+ "englishUsFontType":3,
+ "frenchText":"Sayonara Elegy",
+ "frenchFontType":3,
+ "italianText":"Sayonara Elegy",
+ "italianFontType":3,
+ "germanText":"Sayonara Elegy",
+ "germanFontType":3,
+ "spanishText":"Sayonara Elegy",
+ "spanishFontType":3,
+ "chineseTText":"告別輓歌",
+ "chineseTFontType":1,
+ "koreanText":"사요나라 엘레지",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_elegy",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_elegy",
+ "japaneseText":"",
+ "englishUsText":"さよならエレジー",
+ "englishUsFontType":0,
+ "frenchText":"さよならエレジー",
+ "frenchFontType":0,
+ "italianText":"さよならエレジー",
+ "italianFontType":0,
+ "germanText":"さよならエレジー",
+ "germanFontType":0,
+ "spanishText":"さよならエレジー",
+ "spanishFontType":0,
+ "chineseTText":"さよならエレジー",
+ "chineseTFontType":0,
+ "koreanText":"さよならエレジー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_usa",
+ "japaneseText":"U.S.A.",
+ "englishUsText":"U.S.A.",
+ "englishUsFontType":3,
+ "frenchText":"U.S.A.",
+ "frenchFontType":3,
+ "italianText":"U.S.A.",
+ "italianFontType":3,
+ "germanText":"U.S.A.",
+ "germanFontType":3,
+ "spanishText":"U.S.A.",
+ "spanishFontType":3,
+ "chineseTText":"U.S.A.",
+ "chineseTFontType":1,
+ "koreanText":"U.S.A.",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_usa",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_usa",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_2ge8ji",
+ "japaneseText":"恋",
+ "englishUsText":"KOI",
+ "englishUsFontType":3,
+ "frenchText":"KOI",
+ "frenchFontType":3,
+ "italianText":"KOI",
+ "italianFontType":3,
+ "germanText":"KOI",
+ "germanFontType":3,
+ "spanishText":"KOI",
+ "spanishFontType":3,
+ "chineseTText":"恋",
+ "chineseTFontType":1,
+ "koreanText":"코이",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_2ge8ji",
+ "japaneseText":"ドラマ「逃げるは恥だが役に立つ」より",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_2ge8ji",
+ "japaneseText":"",
+ "englishUsText":"恋",
+ "englishUsFontType":0,
+ "frenchText":"恋",
+ "frenchFontType":0,
+ "italianText":"恋",
+ "italianFontType":0,
+ "germanText":"恋",
+ "germanFontType":0,
+ "spanishText":"恋",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"恋",
+ "koreanFontType":0
+ },
+ {
+ "key":"chara_028_platinumdon",
+ "japaneseText":"プラチナどんちゃん",
+ "englishUsText":"Platinum DON-chan",
+ "englishUsFontType":3,
+ "frenchText":"DON-chan de platine",
+ "frenchFontType":3,
+ "italianText":"DON-chan di platino",
+ "italianFontType":3,
+ "germanText":"Platin-DON-chan",
+ "germanFontType":3,
+ "spanishText":"DON-chan de platino",
+ "spanishFontType":3,
+ "chineseTText":"白金小咚",
+ "chineseTFontType":1,
+ "koreanText":"플래티넘 동이",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_028_platinumdon",
+ "japaneseText":"白いこうたくが美しくかがやくどんちゃん\nプラチナパワーで演奏もかがやけるのカッ?\n\n\n\n\n",
+ "englishUsText":"DON-chan with a beautiful white\nlustre. Will this Platinum Power\nbring about a brilliant victory?\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"DON-chan avec un magnifique éclat blanc.\nLe pouvoir du platine apportera-t-il\nune victoire scintillante ?\n\n\n\n",
+ "frenchFontType":3,
+ "italianText":"Un DON-chan di gran lusso!\nIl suo potere di platino gli \nvarrà una vittoria luccicante?\n\n\n",
+ "italianFontType":3,
+ "germanText":"DON-chan mit einem \nwunderschönen weißen Glanz.\nWird diese Platin-Power einen \nbrillanten Sieg bringen?",
+ "germanFontType":3,
+ "spanishText":"DON-chan con un hermoso brillo blanco.\n¿El poder del platino traerá consigo una\nvictoria brillante?",
+ "spanishFontType":3,
+ "chineseTText":"閃耀著美麗白色光芒的小咚!\n它也能以白金之力在演奏中大放異彩嗎?\n\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"흰 광택이 아름답게 빛나는 동이\n플래티넘 파워로 연주도 빛날까?\n\n\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_popspack01",
+ "japaneseText":"「ポップスパックVol.1」配信中",
+ "englishUsText":"Pops Pack Vol. 1 now available!",
+ "englishUsFontType":3,
+ "frenchText":"Pops Pack Vol. 1 disponible le 08/11/2018.",
+ "frenchFontType":3,
+ "italianText":"Pops Pack Vol. 1 disponibile dall'8/11/2018!",
+ "italianFontType":3,
+ "germanText":"Pops Pack Vol. 1 ist ab dem 08.11.2018 erhältlich.",
+ "germanFontType":3,
+ "spanishText":"¡Pops Pack Vol. 1 disponible a partir del 8/11/2018!",
+ "spanishFontType":3,
+ "chineseTText":"「流行音樂Pack Vol.1」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「팝 Pack Vol.1」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_tohopack",
+ "japaneseText":"「東方Projectアレンジパック」配信中",
+ "englishUsText":"Toho Project Arrangements Pack now available!",
+ "englishUsFontType":3,
+ "frenchText":"Toho Project Arrangement Pack disponible !",
+ "frenchFontType":3,
+ "italianText":"Toho Project Arrangements Pack ora disponibile!",
+ "italianFontType":3,
+ "germanText":"Toho Project Arrangements Pack ist ab jetzt erhältlich!",
+ "germanFontType":3,
+ "spanishText":"¡Toho Project Arrangements Pack ya disponible!",
+ "spanishFontType":3,
+ "chineseTText":"「東方Project Arrangements Pack」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「Toho Project Arrangements Pack」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_vocaropack",
+ "japaneseText":"「ボーカロイド™曲パック」配信中",
+ "englishUsText":"VOCALOID™ Music Pack now available!",
+ "englishUsFontType":3,
+ "frenchText":"VOCALOID™ Music Pack disponible !",
+ "frenchFontType":3,
+ "italianText":"VOCALOID™ Music Pack ora disponibile!",
+ "italianFontType":3,
+ "germanText":"VOCALOID™ Music Pack ist ab jetzt erhältlich.",
+ "germanFontType":3,
+ "spanishText":"¡VOCALOID™ Music Pack ya disponible!",
+ "spanishFontType":3,
+ "chineseTText":"「VOCALOID™ Music Pack」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「VOCALOID™ Music Pack」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_jiburipack",
+ "japaneseText":"「スタジオジブリパック」配信中",
+ "englishUsText":"STUDIO GHIBLI Pack now available!",
+ "englishUsFontType":3,
+ "frenchText":"STUDIO GHIBLI Pack disponible !",
+ "frenchFontType":3,
+ "italianText":"STUDIO GHIBLI Pack ora disponibile!",
+ "italianFontType":3,
+ "germanText":"STUDIO GHIBLI Pack ist ab jetzt erhältlich.",
+ "germanFontType":3,
+ "spanishText":"¡STUDIO GHIBLI Pack ya disponible!",
+ "spanishFontType":3,
+ "chineseTText":"「吉卜力工作室 Pack」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「스튜디오 지브리 Pack」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_shortcut_text",
+ "japaneseText":"ニンテンドーeショップへ",
+ "englishUsText":"Go to Nintendo eShop",
+ "englishUsFontType":3,
+ "frenchText":"Aller dans le Nintendo eShop",
+ "frenchFontType":3,
+ "italianText":"Apri il Nintendo eShop",
+ "italianFontType":3,
+ "germanText":"Zum Nintendo eShop",
+ "germanFontType":3,
+ "spanishText":"Ir a Nintendo eShop",
+ "spanishFontType":3,
+ "chineseTText":"前往Nintendo eShop",
+ "chineseTFontType":1,
+ "koreanText":"닌텐도 e숍으로",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_hikakin",
+ "japaneseText":"ブンブンジャンケン",
+ "englishUsText":"BUNBUN Roshambo",
+ "englishUsFontType":3,
+ "frenchText":"BUNBUN Roshambo",
+ "frenchFontType":3,
+ "italianText":"BUNBUN Roshambo",
+ "italianFontType":3,
+ "germanText":"BUNBUN Roshambo",
+ "germanFontType":3,
+ "spanishText":"BUNBUN Roshambo",
+ "spanishFontType":3,
+ "chineseTText":"噗噗猜拳",
+ "chineseTFontType":1,
+ "koreanText":"붕붕 가위바위보",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_31_1",
+ "japaneseText":"ブンブンジャンケン",
+ "englishUsText":"BUNBUN Roshambo",
+ "englishUsFontType":3,
+ "frenchText":"BUNBUN Roshambo",
+ "frenchFontType":3,
+ "italianText":"BUNBUN Roshambo",
+ "italianFontType":3,
+ "germanText":"BUNBUN Roshambo",
+ "germanFontType":3,
+ "spanishText":"BUNBUN Roshambo",
+ "spanishFontType":3,
+ "chineseTText":"噗噗猜拳",
+ "chineseTFontType":1,
+ "koreanText":"붕붕 가위바위보",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_31_2",
+ "japaneseText":"ブンブンジャンケン",
+ "englishUsText":"BUNBUN Roshambo",
+ "englishUsFontType":3,
+ "frenchText":"BUNBUN Roshambo",
+ "frenchFontType":3,
+ "italianText":"BUNBUN Roshambo",
+ "italianFontType":3,
+ "germanText":"BUNBUN Roshambo",
+ "germanFontType":3,
+ "spanishText":"BUNBUN Roshambo",
+ "spanishFontType":3,
+ "chineseTText":"噗噗猜拳",
+ "chineseTFontType":1,
+ "koreanText":"붕붕 가위바위보",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_31_1",
+ "japaneseText":"HIKAKINが「ブンブン」のタイミングで出す\n予告の手(グー・チョキ・パー)を覚えよう!\n\nHIKAKINの手を覚えたら\n「ポン」のタイミングでジャンケンに勝とう!\n\nグーは右側の入力だよ!\n\n",
+ "englishUsText":"Remember what HIKAKIN throws\n(rock, paper, or scissors) at \"BUNBUN\"!\n\nOnce you know, beat him in\nrock-paper-scissors at \"PON\"!\n\nHit right for rock!\n\n",
+ "englishUsFontType":3,
+ "frenchText":"N'oublie pas que HIKAKIN lance\n(pierre, papier ou ciseaux) à \"BUNBUN\" !\n\nTu peux alors le battre à\npierre-papier-ciseaux\nquand tu entends \"PON\" !\n\nDroite pour pierre !\n",
+ "frenchFontType":3,
+ "italianText":"Ricorda cosa mostra HIKAKIN\n(sasso, carta o forbici) al \"BUNBUN\"!\n\nA quel punto, battilo nella morra cinese\nquando senti \"PON\"!\n\nPremi destra per il sasso!\n\n",
+ "italianFontType":3,
+ "germanText":"Merke dir, was HIKAKIN bei \"BUNBUN\" macht!\n(Schere, Stein oder Papier)\n\nDann schlage ihn in Schere-Stein-Papier, \nsobald er \"PON\"! ruft.\n\nTriff rechts für Stein!\n\n",
+ "germanFontType":3,
+ "spanishText":"¡Memoriza la elección de HIKAKIN\n(piedra, papel o tijera) en \"BUNBUN\"!\n\n¡Cuando lo sepas, véncele a\npiedra, papel o tijera al oír \"PON\"!\n\n¡Dale a la derecha para piedra!\n\n",
+ "spanishFontType":3,
+ "chineseTText":"記住HIKAKIN在喊出「噗噗」時候比出的\n預告手勢(石頭‧剪刀‧布)!\n\n只要記住HIKAKI的手勢,\n就能在喊出「碰」的時候出拳取勝!\n\n石頭是輸入右邊!\n\n",
+ "chineseTFontType":1,
+ "koreanText":"HIKAKIN이 「붕붕」 타이밍에 내는\n예고하는 손(묵・찌・빠)을 기억하자!\n\nHIKAKIN의 손을 기억했다면\n「보」 타이밍에 가위바위보를 이기자!\n\n묵은 오른쪽을 입력하자!\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_31_2",
+ "japaneseText":"チョキは左側の入力だよ!\n\n\n\n\n\n\n\n",
+ "englishUsText":"Hit left for scissors!\n\n\n\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Gauche pour ciseaux !\n\n\n\n\n\n\n\n",
+ "frenchFontType":3,
+ "italianText":"Premi sinistra per le forbici!\n\n\n\n\n\n\n\n",
+ "italianFontType":3,
+ "germanText":"Triff links für Schere!\n\n\n\n\n\n\n\n",
+ "germanFontType":3,
+ "spanishText":"¡Dale a la izquierda para tijera!\n\n\n\n\n\n\n\n",
+ "spanishFontType":3,
+ "chineseTText":"剪刀是輸入左邊!\n\n\n\n\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"찌는 왼쪽을 입력하자!\n\n\n\n\n\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_027_hikakin",
+ "japaneseText":"HIKAKIN",
+ "englishUsText":"HIKAKIN",
+ "englishUsFontType":3,
+ "frenchText":"HIKAKIN",
+ "frenchFontType":3,
+ "italianText":"HIKAKIN",
+ "italianFontType":3,
+ "germanText":"HIKAKIN",
+ "germanFontType":3,
+ "spanishText":"HIKAKIN",
+ "spanishFontType":3,
+ "chineseTText":"HIKAKIN",
+ "chineseTFontType":1,
+ "koreanText":"HIKAKIN",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_027_hikakin",
+ "japaneseText":"人気動画クリエイターの「HIKAKIN」が\n「太鼓の達人」に参加!\nヒューマンビートボックスで\n演奏を盛り上げろ!\n\n\n",
+ "englishUsText":"The popular video creator HIKAKIN\nmakes his Taiko Master appearance!\nLet his beatboxing make your\nperformances even more exciting!\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Le célèbre créateur de vidéo\nHIKAKIN arrive sur Taiko Master !\nSon beatboxing va encore\naméliorer tes performances !\n\n\n",
+ "frenchFontType":3,
+ "italianText":"Il popolare creatore di video HIKAKIN\nsi unisce al mondo di Taiko no Tatsujin!\nChe il suo beatbox renda\nle tue sessioni ancora più eccitanti!\n\n\n",
+ "italianFontType":3,
+ "germanText":"Der Produzent beliebter Webvideos, \nHIKAKIN, ist bei Taiko Master dabei!\nMit seinem Beatboxing werden deine\nPerformances noch toller!\n\n\n",
+ "germanFontType":3,
+ "spanishText":"¡El popular creador de vídeos HIKAKIN\nhace su aparición en Taiko no Tatsujin!\n¡Alegra tus actuaciones más si cabe con\nsus habilidades de beatbox!\n\n\n",
+ "spanishFontType":3,
+ "chineseTText":"人氣影片創作者「HIKAKIN」加入\n「太鼓之達人」!\n以節奏口技來炒熱演奏的氣氛!\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"인기 동영상 크리에이터\n「HIKAKIN」이\n「태고의 달인」에 참가!\n휴먼 비트박스로\n연주의 분위기를 띄워라!\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_high_hikakin",
+ "japaneseText":"クリア!!フルコンボ~",
+ "englishUsText":"Cleared! Full Combo!!",
+ "englishUsFontType":3,
+ "frenchText":"Terminé ! Combo max !",
+ "frenchFontType":3,
+ "italianText":"Completata! Combo unica!",
+ "italianFontType":3,
+ "germanText":"Abgeschlossen! Vollständige Kombo!!",
+ "germanFontType":3,
+ "spanishText":"¡Listo! ¡Combo completo!",
+ "spanishFontType":3,
+ "chineseTText":"通關!!全連段~",
+ "chineseTFontType":1,
+ "koreanText":"클리어!!풀 콤보~",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_low_hikakin",
+ "japaneseText":"よっしゃークリア~!",
+ "englishUsText":"Alright, you cleared it!",
+ "englishUsFontType":3,
+ "frenchText":"C'est bon, tu as terminé !",
+ "frenchFontType":3,
+ "italianText":"Ottimo, l'hai completata!",
+ "italianFontType":3,
+ "germanText":"Fantastisch, abgeschlossen!",
+ "germanFontType":3,
+ "spanishText":"¡Bien, lo has logrado!",
+ "spanishFontType":3,
+ "chineseTText":"太棒了通關~!",
+ "chineseTFontType":1,
+ "koreanText":"아싸 클리어~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_high_hikakin",
+ "japaneseText":"おしかったよ~~~",
+ "englishUsText":"So cloooose!",
+ "englishUsFontType":3,
+ "frenchText":"Preeeeesque !",
+ "frenchFontType":3,
+ "italianText":"Per pocoooo!",
+ "italianFontType":3,
+ "germanText":"Ganz nah dran!",
+ "germanFontType":3,
+ "spanishText":"¡Por qué poco!",
+ "spanishFontType":3,
+ "chineseTText":"好可惜~~~",
+ "chineseTFontType":1,
+ "koreanText":"아까웠어~~~",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_low_hikakin",
+ "japaneseText":"あわわわわわ・・・・",
+ "englishUsText":"Oh, yikes...",
+ "englishUsFontType":3,
+ "frenchText":"Oh là là...",
+ "frenchFontType":3,
+ "italianText":"Oh, accidenti...",
+ "italianFontType":3,
+ "germanText":"Oh je ... ",
+ "germanFontType":3,
+ "spanishText":"Ay, vaya...",
+ "spanishFontType":3,
+ "chineseTText":"啊哇哇哇哇哇・・・・",
+ "chineseTFontType":1,
+ "koreanText":"어버버버버버・・・・",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_win_hikakin",
+ "japaneseText":"勝った~~~",
+ "englishUsText":"You woooon!!",
+ "englishUsFontType":3,
+ "frenchText":"Tu as gagnééé !",
+ "frenchFontType":3,
+ "italianText":"Hai vintooo!",
+ "italianFontType":3,
+ "germanText":"Gewoooonnen!",
+ "germanFontType":3,
+ "spanishText":"¡Has ganado!",
+ "spanishFontType":3,
+ "chineseTText":"贏了~~~",
+ "chineseTFontType":1,
+ "koreanText":"이겼다~~~",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_lose_hikakin",
+ "japaneseText":"負けた・・・・",
+ "englishUsText":"You lost...",
+ "englishUsFontType":3,
+ "frenchText":"Perdu...",
+ "frenchFontType":3,
+ "italianText":"Hai perso...",
+ "italianFontType":3,
+ "germanText":"Verloren ...",
+ "germanFontType":3,
+ "spanishText":"Has perdido.",
+ "spanishFontType":3,
+ "chineseTText":"輸了・・・・",
+ "chineseTFontType":1,
+ "koreanText":"졌다・・・・",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_draw_hikakin",
+ "japaneseText":"引き分けか~",
+ "englishUsText":"A draw...!",
+ "englishUsFontType":3,
+ "frenchText":"Égalité... !",
+ "frenchFontType":3,
+ "italianText":"Pareggio...!",
+ "italianFontType":3,
+ "germanText":"Unentschieden ...!",
+ "germanFontType":3,
+ "spanishText":"¡Un empate!",
+ "spanishFontType":3,
+ "chineseTText":"平手嗎~",
+ "chineseTFontType":1,
+ "koreanText":"무승부구나~",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_1_hikakin",
+ "japaneseText":"1位だよぉ~~",
+ "englishUsText":"Alright! #1!",
+ "englishUsFontType":3,
+ "frenchText":"Bien ! 1er !",
+ "frenchFontType":3,
+ "italianText":"OK! Primo!",
+ "italianFontType":3,
+ "germanText":"Top! Nr. 1!",
+ "germanFontType":3,
+ "spanishText":"¡Toma! ¡1.º!",
+ "spanishFontType":3,
+ "chineseTText":"第1名呦~~",
+ "chineseTFontType":1,
+ "koreanText":"1등이야~~",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_2_hikakin",
+ "japaneseText":"2位だ~~",
+ "englishUsText":"You got 2nd!",
+ "englishUsFontType":3,
+ "frenchText":"Tu es 2e !",
+ "frenchFontType":3,
+ "italianText":"Secondo!",
+ "italianFontType":3,
+ "germanText":"Nr. 2!",
+ "germanFontType":3,
+ "spanishText":"¡Segundo!",
+ "spanishFontType":3,
+ "chineseTText":"是第2名~~",
+ "chineseTFontType":1,
+ "koreanText":"2등이다~~",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_3_hikakin",
+ "japaneseText":"3位かーーー",
+ "englishUsText":"3rd...",
+ "englishUsFontType":3,
+ "frenchText":"3e...",
+ "frenchFontType":3,
+ "italianText":"Terzo...",
+ "italianFontType":3,
+ "germanText":"Nr. 3 ...",
+ "germanFontType":3,
+ "spanishText":"Tercero...",
+ "spanishFontType":3,
+ "chineseTText":"第3名嗎~~~",
+ "chineseTFontType":1,
+ "koreanText":"3등인가~~~",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_4_hikakin",
+ "japaneseText":"4位だよぉ~~",
+ "englishUsText":"Whaat? 4th?!",
+ "englishUsFontType":3,
+ "frenchText":"Hein ? 4e ?!",
+ "frenchFontType":3,
+ "italianText":"Eeh? Quarto?",
+ "italianFontType":3,
+ "germanText":"Waas? Nr. 4?",
+ "germanFontType":3,
+ "spanishText":"¿Qué? ¿4.º?",
+ "spanishFontType":3,
+ "chineseTText":"第4名呦~~",
+ "chineseTFontType":1,
+ "koreanText":"4등이야~~",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_hikakin",
+ "japaneseText":"HIKAKIN",
+ "englishUsText":"HIKAKIN",
+ "englishUsFontType":3,
+ "frenchText":"HIKAKIN",
+ "frenchFontType":3,
+ "italianText":"HIKAKIN",
+ "italianFontType":3,
+ "germanText":"HIKAKIN",
+ "germanFontType":3,
+ "spanishText":"HIKAKIN",
+ "spanishFontType":3,
+ "chineseTText":"HIKAKIN",
+ "chineseTFontType":1,
+ "koreanText":"HIKAKIN",
+ "koreanFontType":2
+ },
+ {
+ "key":"mini_hikakin_A",
+ "japaneseText":"ブンブンジャンケン・辛口",
+ "englishUsText":"BUNBUN Roshambo: Expert",
+ "englishUsFontType":3,
+ "frenchText":"BUNBUN Roshambo : Expert",
+ "frenchFontType":3,
+ "italianText":"BUNBUN Roshambo: Esperto",
+ "italianFontType":3,
+ "germanText":"BUNBUN Roshambo: Experte",
+ "germanFontType":3,
+ "spanishText":"BUNBUN Roshambo: Experto",
+ "spanishFontType":3,
+ "chineseTText":"噗噗猜拳・嗆辣",
+ "chineseTFontType":1,
+ "koreanText":"붕붕 가위바위보・매운맛",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_tle_31_3",
+ "japaneseText":"ブンブンジャンケン",
+ "englishUsText":"BUNBUN Roshambo",
+ "englishUsFontType":3,
+ "frenchText":"BUNBUN Roshambo",
+ "frenchFontType":3,
+ "italianText":"BUNBUN Roshambo",
+ "italianFontType":3,
+ "germanText":"BUNBUN Roshambo",
+ "germanFontType":3,
+ "spanishText":"BUNBUN Roshambo",
+ "spanishFontType":3,
+ "chineseTText":"噗噗猜拳",
+ "chineseTFontType":1,
+ "koreanText":"붕붕 가위바위보",
+ "koreanFontType":2
+ },
+ {
+ "key":"mgame_tut_msg_31_3",
+ "japaneseText":"パーは同時入力だよ!\n\nHIKAKINがフェイントをかけることもあるよ!\n最後まで気をぬかないで見てね!\n\n\n\n\n",
+ "englishUsText":"Hit both at the same time for paper!\n\nBe on the watch, HIKAKIN might try to fake you out!\nStay focused until the end!\n\n\n\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Les deux en même temps pour papier !\n\nAttention, HIKAKIN a plus d'un tour dans son sac !\nConcentre-toi jusqu'au bout !\n\n\n\n\n",
+ "frenchFontType":3,
+ "italianText":"Colpisci entrambi insieme per tirare carta!\n\nOcchio, HIKAKIN potrebbe tentare di ingannarti!\nMantieni la concentrazione fino alla fine!\n\n\n\n\n",
+ "italianFontType":3,
+ "germanText":"Beide gleichzeitig für Papier treffen!\n\nVorsicht, HIKAKIN könnte dich ablenken!\nBleib bis zum Schluss konzentriert!\n\n\n\n\n",
+ "germanFontType":3,
+ "spanishText":"¡Dale a los dos a la vez para papel!\n\nTen cuidado, ¡HIKAKIN podría engañarte!\n¡No te despistes en ningún momento!\n\n\n\n\n",
+ "spanishFontType":3,
+ "chineseTText":"布是同時輸入!\n\nHIKAKIN也會有做出假動作的時候!\n直到最後都不能掉以輕心要仔細看清楚呦!\n\n\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"빠는 양쪽을 동시에 입력하자!\n\nHIKAKIN이 속임수를 쓸 때도 있어!\n마지막까지 방심하지 말고 잘 봐!\n\n\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_skill_19",
+ "japaneseText":"音色が「HIKAKIN」になる",
+ "englishUsText":"Make instrument HIKAKIN",
+ "englishUsFontType":3,
+ "frenchText":"Instrument HIKAKIN",
+ "frenchFontType":3,
+ "italianText":"Crea strumento HIKAKIN",
+ "italianFontType":3,
+ "germanText":"HIKAKIN-Instrument erst.",
+ "germanFontType":3,
+ "spanishText":"Crear instrum. HIKAKIN",
+ "spanishFontType":3,
+ "chineseTText":"把音色變成「HIKAKIN」",
+ "chineseTFontType":1,
+ "koreanText":"음색이 「HIKAKIN」이 된다",
+ "koreanFontType":2
+ },
+ {
+ "key":"furifuri_input_test_end",
+ "japaneseText":"終了する",
+ "englishUsText":"End",
+ "englishUsFontType":3,
+ "frenchText":"Fin",
+ "frenchFontType":3,
+ "italianText":"Fine",
+ "italianFontType":3,
+ "germanText":"Ende",
+ "germanFontType":3,
+ "spanishText":"Terminar",
+ "spanishFontType":3,
+ "chineseTText":"結束",
+ "chineseTFontType":1,
+ "koreanText":"종료한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"furifuri_input_test_page1",
+ "japaneseText":"まっすぐ スナップをきかせて ふり下ろすと「ドン」\n※Joy-Conは止めたときに反応するよ!\n",
+ "englishUsText":"Swing straight down with a snap to do a Don.\nNote: The game will react once the Joy-Con stops moving!\n",
+ "englishUsFontType":3,
+ "frenchText":"Secoue bien droit pour un Don.\nRemarque : le jeu réagit quand le Joy-Con s'immobilise !\n",
+ "frenchFontType":3,
+ "italianText":"Fai oscillare il Joy-Con verso il basso\nfermandolo di colpo per suonare un Don.\nNota: il gioco reagirà solo all'arresto\ndel movimento del Joy-Con.",
+ "italianFontType":3,
+ "germanText":"Für einen Don abrupt gerade nach unten bewegen.\nHinweis: Das Spiel reagiert darauf, \nwenn sich der Joy-Con nicht mehr bewegt!",
+ "germanFontType":3,
+ "spanishText":"Mueve de golpe hacia abajo para Don.\nNota: ¡el juego reacciona si el Joy-Con se para!\n",
+ "spanishFontType":3,
+ "chineseTText":"握住控制器垂直向下揮動為「咚」\n※Joy-Con控制器會在停止時產生反應!",
+ "chineseTFontType":1,
+ "koreanText":"똑바로 손목을 비틀면서 아래로 흔들면 「쿵」\n※Joy-Con은 멈췄을 때 반응해!",
+ "koreanFontType":2
+ },
+ {
+ "key":"furifuri_input_test_page2",
+ "japaneseText":"ななめ45度に ひねりながらふり下ろすと「カッ」\n※LボタンかRボタンを押しながらふっても「カッ」になるよ!\n",
+ "englishUsText":"Swing down with a 45-degree twist to do a Kat.\nNote: You can also hold down L or R when swinging to do a Kat!",
+ "englishUsFontType":3,
+ "frenchText":"Secoue avec un coup à 45° pour un Kat.\nRemarque : Tu peux aussi maintenir L ou R\nquand tu abaisses pour faire un KA !",
+ "frenchFontType":3,
+ "italianText":"Fai oscillare il Joy-Con verso il basso\nruotandolo di 45° per suonare un Kat.\nNota: per suonare un Kat puoi anche\ntenere premuto L o R durante il movimento.",
+ "italianFontType":3,
+ "germanText":"Für ein Ka mit 45 Grad-Drehung nach unten bewegen.\nHinweis: Du kannst für ein Ka auch\nin der Bewegung L oder R drücken!",
+ "germanFontType":3,
+ "spanishText":"Mueve hacia abajo con un giro de 45 grados para hacer un Kat.\nNota: ¡también puedes mantener L o R para hacer un Kat!",
+ "spanishFontType":3,
+ "chineseTText":"將控制器呈斜角45度並向下揮動為「咔」\n※按住L鍵或R鍵的同時揮動也會變成「咔」!",
+ "chineseTFontType":1,
+ "koreanText":"45도로 비스듬히 비틀어 아래로 흔들면 「딱」\n※L 버튼이나 R 버튼을 누르며 흔들어도 「딱」이 돼!",
+ "koreanFontType":2
+ },
+ {
+ "key":"furifuri_input_test_page3",
+ "japaneseText":"Joy-Conは\n角度をつけずにふっても反応しないよ!\n",
+ "englishUsText":"Joy-Con controllers won't react\nif you swing them with no angle!\n",
+ "englishUsFontType":3,
+ "frenchText":"Les Joy-Con ne réagissent pas\nsans un angle !\n",
+ "frenchFontType":3,
+ "italianText":"Il gioco non reagirà se farai oscillare\ni Joy-Con senza la giusta angolazione!\n",
+ "italianFontType":3,
+ "germanText":"Die Joy-Con reagieren nicht, wenn du\nsie ohne Drehung bewegst!\n",
+ "germanFontType":3,
+ "spanishText":"¡Los Joy-Con no reaccionarán si\nlos mueves sin hacer el giro!\n",
+ "spanishFontType":3,
+ "chineseTText":"沒有對Joy-Con控制器\n賦予角度也不會產生反應!",
+ "chineseTFontType":1,
+ "koreanText":"Joy-Con은\n각도가 변하지 않으면 반응하지 않아!",
+ "koreanFontType":2
+ },
+ {
+ "key":"furifuri_input_test_page4",
+ "japaneseText":"大きくふりすぎると\nJoy-Conは反応しないよ!\n",
+ "englishUsText":"Joy-Con controllers won't react\nif you swing too much!",
+ "englishUsFontType":3,
+ "frenchText":"Les Joy-Con ne réagissent pas\nsi tu secoues trop fort !",
+ "frenchFontType":3,
+ "italianText":"Il gioco non reagirà se farai oscillare\ntroppo i Joy-Con!",
+ "italianFontType":3,
+ "germanText":"Die Joy-Con reagieren nicht, wenn du\nsie zu sehr bewegst!",
+ "germanFontType":3,
+ "spanishText":"¡Los Joy-Con no reaccionarán si\nlos mueves demasiado!",
+ "spanishFontType":3,
+ "chineseTText":"揮動的太大力,\n將使Joy-Con控制器不會產生反應!",
+ "chineseTFontType":1,
+ "koreanText":"너무 크게 흔들면\nJoy-Con은 반응하지 않아!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_menu_input",
+ "japaneseText":"フリフリの練習",
+ "englishUsText":"Motion Control Practice",
+ "englishUsFontType":3,
+ "frenchText":"Entraînement aux commandes par mouvements",
+ "frenchFontType":3,
+ "italianText":"Prova comandi di movimento.",
+ "italianFontType":3,
+ "germanText":"Bewegungssteuerung üben",
+ "germanFontType":3,
+ "spanishText":"Practicar control por movimiento",
+ "spanishFontType":3,
+ "chineseTText":"動態演奏的練習",
+ "chineseTFontType":1,
+ "koreanText":"모션 조작 연습",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_desc_input",
+ "japaneseText":"自由に「Joy-Con」をふってフリフリの練習をします\n※番号順でのプレイをオススメします",
+ "englishUsText":"Swing your Joy-Con controllers to practice\nthe motion controls. We recommend following\nthe order provided.",
+ "englishUsFontType":3,
+ "frenchText":"Secoue les Joy-Con pour tester les commandes\npar mouvements. Il est recommandé de suivre\nl'ordre donné.",
+ "frenchFontType":3,
+ "italianText":"Fai oscillare i Joy-Con per provare\ni comandi di movimento. Si consiglia di\nseguire l'ordine indicato.",
+ "italianFontType":3,
+ "germanText":"Bewege deine Joy-Con, um die Bewegungssteuerung zu üben. \nWir empfehlen die angegebene Reihenfolge.",
+ "germanFontType":3,
+ "spanishText":"Mueve los mandos Joy-Con para practicar\nel control por movimiento. Recomendamos seguir\nel orden estipulado.",
+ "spanishFontType":3,
+ "chineseTText":"自由揮動「Joy-Con」控制器進行動態演奏的練習\n※建議按照編號順序進行遊玩",
+ "chineseTFontType":1,
+ "koreanText":"자유롭게 「Joy-Con」을 흔들어 모션 조작을 연습합니다\n※번호 순서대로 플레이하는 것을 추천합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"style_select_guide_text",
+ "japaneseText":"フリフリの練習を終了すると\n演奏ゲームがはじまります",
+ "englishUsText":"Once you're done practicing,\nTaiko Mode will start.",
+ "englishUsFontType":3,
+ "frenchText":"Une fois l'entrainement terminé,\nle mode Taiko débute.",
+ "frenchFontType":3,
+ "italianText":"Una volta finita la sessione di prova,\nsi avvierà la modalità Taiko.",
+ "italianFontType":3,
+ "germanText":"Wenn du mit Üben fertig bist,\nstartet der Taiko-Modus.",
+ "germanFontType":3,
+ "spanishText":"Cuando termines de practicar,\nse iniciará el modo Taiko.",
+ "spanishFontType":3,
+ "chineseTText":"結束動態演奏的練習後,\n開始演奏遊戲",
+ "chineseTFontType":1,
+ "koreanText":"모션 조작 연습을 마치면\n연주 모드가 시작됩니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"furifuri_input_test_start",
+ "japaneseText":"フリフリの練習",
+ "englishUsText":"Motion Control Practice",
+ "englishUsFontType":3,
+ "frenchText":"Entraînement aux commandes par mouvements",
+ "frenchFontType":3,
+ "italianText":"Prova comandi di movimento.",
+ "italianFontType":3,
+ "germanText":"Bewegungssteuerung üben",
+ "germanFontType":3,
+ "spanishText":"Practicar control por movimiento",
+ "spanishFontType":3,
+ "chineseTText":"動態演奏的練習",
+ "chineseTFontType":1,
+ "koreanText":"모션 조작 연습",
+ "koreanFontType":2
+ },
+ {
+ "key":"next_page",
+ "japaneseText":"次のページ",
+ "englishUsText":"Page Forward",
+ "englishUsFontType":3,
+ "frenchText":"Avance rapide",
+ "frenchFontType":3,
+ "italianText":"Pagina succ.",
+ "italianFontType":3,
+ "germanText":"Seite vor",
+ "germanFontType":3,
+ "spanishText":"Página sig.",
+ "spanishFontType":3,
+ "chineseTText":"上一頁",
+ "chineseTFontType":1,
+ "koreanText":"다음 페이지",
+ "koreanFontType":2
+ },
+ {
+ "key":"previous_page",
+ "japaneseText":"前のページ",
+ "englishUsText":"Page Back",
+ "englishUsFontType":3,
+ "frenchText":"Retour",
+ "frenchFontType":3,
+ "italianText":"Pagina prec.",
+ "italianFontType":3,
+ "germanText":"Seite zurück",
+ "germanFontType":3,
+ "spanishText":"Página ant.",
+ "spanishFontType":3,
+ "chineseTText":"下一頁",
+ "chineseTFontType":1,
+ "koreanText":"앞 페이지",
+ "koreanFontType":2
+ },
+ {
+ "key":"furifuri_input_test_title",
+ "japaneseText":"フリフリの練習",
+ "englishUsText":"Motion Control Practice",
+ "englishUsFontType":3,
+ "frenchText":"Entraînement aux commandes par mouvements",
+ "frenchFontType":3,
+ "italianText":"Prova comandi di movimento.",
+ "italianFontType":3,
+ "germanText":"Bewegungssteuerung üben",
+ "germanFontType":3,
+ "spanishText":"Practicar control por movimiento",
+ "spanishFontType":3,
+ "chineseTText":"動態演奏的練習",
+ "chineseTFontType":1,
+ "koreanText":"모션 조작 연습",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_hikakin",
+ "japaneseText":"「HIKAKINパック」を2018/12/6から配信",
+ "englishUsText":"HIKAKIN Pack available 6/12/2018",
+ "englishUsFontType":3,
+ "frenchText":"HIKAKIN Pack disponible le 6/12/2018",
+ "frenchFontType":3,
+ "italianText":"HIKAKIN Pack, disponibile dal 6/12/2018",
+ "italianFontType":3,
+ "germanText":"HIKAKIN Pack verfügbar ab 6.12.2018.",
+ "germanFontType":3,
+ "spanishText":"HIKAKIN Pack disponible el 06/12/2018",
+ "spanishFontType":3,
+ "chineseTText":"「HIKAKIN Pack」將自2018/12/6起發布",
+ "chineseTFontType":1,
+ "koreanText":"「HIKAKIN Pack」을 2018/12/6부터 배포",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_nezumi",
+ "japaneseText":"「冬休みアニメパック」配信中",
+ "englishUsText":"Winter Holiday Anime Pack now available!",
+ "englishUsFontType":3,
+ "frenchText":"Winter Holiday Anime Pack disponible le 6/12/2018",
+ "frenchFontType":3,
+ "italianText":"Winter Holiday Anime Pack, disponibile dal 6/12/2018",
+ "italianFontType":3,
+ "germanText":"Winter Holiday Anime Pack verf. ab 6.12.2018",
+ "germanFontType":3,
+ "spanishText":"Winter Holiday Anime Pack disponible el 06/12/2018",
+ "spanishFontType":3,
+ "chineseTText":"「寒假動畫 Pack」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「겨울 방학 애니메이션 Pack」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_tatujin",
+ "japaneseText":"「達人チャレンジパックVol.1」配信中",
+ "englishUsText":"Tatsujin Challenge Pack Vol. 1 now available!",
+ "englishUsFontType":3,
+ "frenchText":"Tatsujin Challenge Pack Vol. 1 disponible le 6/12/2018",
+ "frenchFontType":3,
+ "italianText":"Tatsujin Challenge Pack Vol. 1 disponibile dal 6/12/2018",
+ "italianFontType":3,
+ "germanText":"Tatsujin Challenge Pack Vol. 1 verf. ab 6.12.2018.",
+ "germanFontType":3,
+ "spanishText":"Tatsujin Challenge Pack Vol. 1 disponible el 06/12/2018",
+ "spanishFontType":3,
+ "chineseTText":"「達人Challenge Pack Vol.1」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「달인 Challenge Pack Vol.1」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"gameset_menu_easy_adjust",
+ "japaneseText":"かんたん音符調整",
+ "englishUsText":"Simple Calibration",
+ "englishUsFontType":3,
+ "frenchText":"Calibrage simple",
+ "frenchFontType":3,
+ "italianText":"Calibrazione semplice",
+ "italianFontType":3,
+ "germanText":"Einfache Kalibrierung",
+ "germanFontType":3,
+ "spanishText":"Calibración sencilla",
+ "spanishFontType":3,
+ "chineseTText":"簡易音符調整",
+ "chineseTFontType":1,
+ "koreanText":"쉬운 음표 조정",
+ "koreanFontType":2
+ },
+ {
+ "key":"gameset_desc_easy_adjust",
+ "japaneseText":"プレイ環境の質問に答えて、かんたんに\n音符位置と判定のタイミングを調整します",
+ "englishUsText":"Answer questions to adjust note position + timing.",
+ "englishUsFontType":3,
+ "frenchText":"Suis les instructions pour régler la position\net le timing des notes.",
+ "frenchFontType":3,
+ "italianText":"Segui le istruzioni per regolare posizioni e sincronizzazione",
+ "italianFontType":3,
+ "germanText":"Folge Anleitungen zur Anpassung von Noten-Positionen und -Timings.",
+ "germanFontType":3,
+ "spanishText":"Sigue las instrucciones para ajustar la posición\ny la cadencia de las notas.",
+ "spanishFontType":3,
+ "chineseTText":"回答遊玩環境的問題,\n輕鬆調整音符位置與判定的時機",
+ "chineseTFontType":1,
+ "koreanText":"플레이 환경에 대한 질문에 대답해서\n쉽게 음표 위치와 판정 타이밍을 조정합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_end",
+ "japaneseText":"終了する",
+ "englishUsText":"End",
+ "englishUsFontType":3,
+ "frenchText":"Fin",
+ "frenchFontType":3,
+ "italianText":"Fine",
+ "italianFontType":3,
+ "germanText":"Ende",
+ "germanFontType":3,
+ "spanishText":"Terminar",
+ "spanishFontType":3,
+ "chineseTText":"結束",
+ "chineseTFontType":1,
+ "koreanText":"종료한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_start_measure",
+ "japaneseText":"計測スタート",
+ "englishUsText":"Begin",
+ "englishUsFontType":3,
+ "frenchText":"Commencer",
+ "frenchFontType":3,
+ "italianText":"Inizio",
+ "italianFontType":3,
+ "germanText":"Anfangen",
+ "germanFontType":3,
+ "spanishText":"Iniciar",
+ "spanishFontType":3,
+ "chineseTText":"開始測試",
+ "chineseTFontType":1,
+ "koreanText":"측정 시작",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_desc_title",
+ "japaneseText":"かんたん音符調整",
+ "englishUsText":"Simple Calibration",
+ "englishUsFontType":3,
+ "frenchText":"Calibrage simple",
+ "frenchFontType":3,
+ "italianText":"Calibrazione semplice",
+ "italianFontType":3,
+ "germanText":"Einfache Kalibrierung",
+ "germanFontType":3,
+ "spanishText":"Calibración sencilla",
+ "spanishFontType":3,
+ "chineseTText":"簡易音符調整",
+ "chineseTFontType":1,
+ "koreanText":"쉬운 음표 조정",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_ctr_joycon_v",
+ "japaneseText":"Joy-Con縦持ち",
+ "englishUsText":"Vertical",
+ "englishUsFontType":3,
+ "frenchText":"Vertical",
+ "frenchFontType":3,
+ "italianText":"Verticale",
+ "italianFontType":3,
+ "germanText":"Vertikal",
+ "germanFontType":3,
+ "spanishText":"Vertical",
+ "spanishFontType":3,
+ "chineseTText":"直握Joy-Con控制器",
+ "chineseTFontType":1,
+ "koreanText":"Joy-Con 세로 잡기",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_ctr_joycon_h",
+ "japaneseText":"Joy-Con横持ち",
+ "englishUsText":"Horizontal",
+ "englishUsFontType":3,
+ "frenchText":"Horizontal",
+ "frenchFontType":3,
+ "italianText":"Orizzontale",
+ "italianFontType":3,
+ "germanText":"Horizontal",
+ "germanFontType":3,
+ "spanishText":"Horizontal",
+ "spanishFontType":3,
+ "chineseTText":"橫握Joy-Con控制器",
+ "chineseTFontType":1,
+ "koreanText":"Joy-Con 가로 잡기",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_ctr_tatacon",
+ "japaneseText":"太鼓コントローラー",
+ "englishUsText":"Drum Controller",
+ "englishUsFontType":3,
+ "frenchText":"Contrôleur tambour",
+ "frenchFontType":3,
+ "italianText":"Controller tamburo",
+ "italianFontType":3,
+ "germanText":"Trommel-Controller",
+ "germanFontType":3,
+ "spanishText":"Mando tambor",
+ "spanishFontType":3,
+ "chineseTText":"太鼓控制器",
+ "chineseTFontType":1,
+ "koreanText":"북 컨트롤러",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_desc_explain",
+ "japaneseText":"テレビのスピーカーの音と同じタイミングでボタンを押してね!",
+ "englishUsText":"Hit the button when you hear your TV speaker!",
+ "englishUsFontType":3,
+ "frenchText":"Appuie quand tu entends le haut-parleur de la TV !",
+ "frenchFontType":3,
+ "italianText":"Premi il pulsante quando senti il suono dalla TV!",
+ "italianFontType":3,
+ "germanText":"Drücke den Knopf, wenn du den TV-Lautsprecher hörst!",
+ "germanFontType":3,
+ "spanishText":"¡Pulsa el botón cuando oigas el altavoz de tu TV!",
+ "spanishFontType":3,
+ "chineseTText":"在電視喇叭發出聲音的同時按下按鍵吧!",
+ "chineseTFontType":1,
+ "koreanText":"TV의 스피커 소리와 같은 타이밍에 버튼을 눌러줘!",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_measure_title",
+ "japaneseText":"テレビスピーカーのタイミング計測",
+ "englishUsText":"Measure TV speaker timing",
+ "englishUsFontType":3,
+ "frenchText":"Mesure le timing de la TV",
+ "frenchFontType":3,
+ "italianText":"Misura sincronizz. suono TV",
+ "italianFontType":3,
+ "germanText":"TV-Lautsprecher-Timing messen",
+ "germanFontType":3,
+ "spanishText":"Medir cadencia de altavoz TV",
+ "spanishFontType":3,
+ "chineseTText":"電視喇叭的時機測試",
+ "chineseTFontType":1,
+ "koreanText":"TV 스피커의 타이밍 측정",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_measure_explain",
+ "japaneseText":"テレビのスピーカーの音と同じタイミングで\nテンポよくボタンを押してね!\n30回入力に成功したら終了よ!",
+ "englishUsText":"Hit the button and stay on tempo\nwhen you hear the sound from your TV speaker!\nYou'll be done after 30 successful inputs!",
+ "englishUsFontType":3,
+ "frenchText":"Appuie en rythme quand tu entends le son de la TV !\nLe réglage se termine après 30 notes réussies !",
+ "frenchFontType":3,
+ "italianText":"Premi il pulsante e vai tempo quando senti il suono\ndalla TV! Suona bene 30 note per terminare il test.",
+ "italianFontType":3,
+ "germanText":"Drücke den Knopf und bleibe im Takt, wenn du deinen TV-Lautsprecher hörst!\nNach 30 erfolgreichen Eingaben hast du es geschafft!",
+ "germanFontType":3,
+ "spanishText":"¡Pulsa el botón y sigue el ritmo\ncuando oigas el altavoz de tu TV!\n¡Cuando aciertes 30 notas habrás terminado!",
+ "spanishFontType":3,
+ "chineseTText":"在電視喇叭發出聲音的同時抓準節奏按下按鍵吧!\n只要成功30次就會結束!",
+ "chineseTFontType":1,
+ "koreanText":"TV의 스피커 소리와 같은 타이밍에\n박자에 맞춰 버튼을 눌러줘!\n입력을 30번 성공하면 끝나!",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_measure_end",
+ "japaneseText":"OK~",
+ "englishUsText":"You're done!",
+ "englishUsFontType":3,
+ "frenchText":"C'est fini !",
+ "frenchFontType":3,
+ "italianText":"Hai finito!",
+ "italianFontType":3,
+ "germanText":"Geschafft!",
+ "germanFontType":3,
+ "spanishText":"¡Se acabó!",
+ "spanishFontType":3,
+ "chineseTText":"OK~",
+ "chineseTFontType":1,
+ "koreanText":"OK~",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_ask_play_mode_title",
+ "japaneseText":"プレイモードをえらんでね!",
+ "englishUsText":"What play mode do you want to adjust timing for?",
+ "englishUsFontType":3,
+ "frenchText":"Pour quel mode veux-tu régler le timing ?",
+ "frenchFontType":3,
+ "italianText":"Per quale modalità\nvuoi regolare la sincronizzazione?",
+ "italianFontType":3,
+ "germanText":"Für welchen Spielmodus möchtest du das Timing anpassen?",
+ "germanFontType":3,
+ "spanishText":"¿Para qué modo quieres ajustar la cadencia?",
+ "spanishFontType":3,
+ "chineseTText":"選擇遊玩模式吧!",
+ "chineseTFontType":1,
+ "koreanText":"플레이 모드를 선택해줘!",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_ask_play_mode_select1",
+ "japaneseText":"TVモード",
+ "englishUsText":"TV Mode",
+ "englishUsFontType":3,
+ "frenchText":"Mode TV",
+ "frenchFontType":3,
+ "italianText":"Modalità TV",
+ "italianFontType":3,
+ "germanText":"TV-Modus",
+ "germanFontType":3,
+ "spanishText":"Modo TV",
+ "spanishFontType":3,
+ "chineseTText":"TV模式",
+ "chineseTFontType":1,
+ "koreanText":"TV 모드",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_ask_play_mode_select2",
+ "japaneseText":"テーブルモード",
+ "englishUsText":"Tabletop Mode",
+ "englishUsFontType":3,
+ "frenchText":"Mode sur table",
+ "frenchFontType":3,
+ "italianText":"Modalità da tavolo",
+ "italianFontType":3,
+ "germanText":"Tisch-Modus",
+ "germanFontType":3,
+ "spanishText":"Modo sobremesa",
+ "spanishFontType":3,
+ "chineseTText":"桌上模式",
+ "chineseTFontType":1,
+ "koreanText":"테이블 모드",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_ask_many_delay_title",
+ "japaneseText":"タイミングの遅れが大きいみたい。\n下のどれかをためしてみてね!",
+ "englishUsText":"Looks like you have a lot of late hits.\nTry the following!",
+ "englishUsFontType":3,
+ "frenchText":"On dirait que tu es souvent en retard.\nEssaie ça !",
+ "frenchFontType":3,
+ "italianText":"A quanto pare, spesso suoni note in ritardo.\nProva così!",
+ "italianFontType":3,
+ "germanText":"Sieht nach vielen späten Treffern aus.\nVersuche Folgendes!",
+ "germanFontType":3,
+ "spanishText":"Parece que llegas tarde demasiadas veces.\n¡Prueba lo siguiente!",
+ "spanishFontType":3,
+ "chineseTText":"時機的延遲似乎很大。\n請試著選擇下列任一項目!",
+ "chineseTFontType":1,
+ "koreanText":"타이밍이 많이 어긋나는 것 같아.\n아래 중 하나를 시도해보자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_ask_many_delay_select1",
+ "japaneseText":"Switch本体のヘッドホンをつかう",
+ "englishUsText":"Use headphones plugged directly\ninto your Nintendo Switch™ console\n",
+ "englishUsFontType":3,
+ "frenchText":"Branche directement le casque dans\nla console Nintendo Switch™",
+ "frenchFontType":3,
+ "italianText":"Usa delle cuffie collegate\ndirettamente alla tua\nconsole Nintendo Switch™.",
+ "italianFontType":3,
+ "germanText":"Stecke die Kopfhörer direkt bei \ndeiner Nintendo Switch™-Konsole ein.\n",
+ "germanFontType":3,
+ "spanishText":"Enchufa unos auriculares a tu\nconsola Nintendo Switch™.\n\n",
+ "spanishFontType":3,
+ "chineseTText":"使用Nintendo Switch主機的耳機",
+ "chineseTFontType":1,
+ "koreanText":"Switch 본체의 헤드폰을 사용한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_ask_many_delay_select2",
+ "japaneseText":"オプションの音色のメニューで\n「音なし」に設定する",
+ "englishUsText":"Set the Instrument menu in\nOptions to \"Silent\"",
+ "englishUsFontType":3,
+ "frenchText":"Sélectionne \"Silence\" sous Options\ndans le menu Instrument",
+ "frenchFontType":3,
+ "italianText":"Imposta Strumento in\nOpzioni su \"Silenzio\".",
+ "italianFontType":3,
+ "germanText":"Stelle das Instrumentenmenü unter\nOptionen auf \"Stumm\".",
+ "germanFontType":3,
+ "spanishText":"Ajusta el menú Instrumento\nde las opciones a \"Silencio\".",
+ "spanishFontType":3,
+ "chineseTText":"將選項內的音色的選單\n設定為「靜音」",
+ "chineseTFontType":1,
+ "koreanText":"옵션의 음색 메뉴에서\n음색을 「무음」으로 설정한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_ask_many_delay_select3",
+ "japaneseText":"TVのスピーカーを使う\n※オススメしません",
+ "englishUsText":"Use your TV speakers\nNote Not recommended",
+ "englishUsFontType":3,
+ "frenchText":"Utilise les enceintes de la TV\nRemarque : déconseillé",
+ "frenchFontType":3,
+ "italianText":"Usa gli altoparlanti della TV.\nNota: non consigliato.",
+ "italianFontType":3,
+ "germanText":"Benutze deine TV-Lautsprecher.\nHinweis: Nicht empfohlen.",
+ "germanFontType":3,
+ "spanishText":"Usa los altavoces de tu TV.\nNota: no recomendado",
+ "spanishFontType":3,
+ "chineseTText":"使用電視的喇叭\n※不推薦",
+ "chineseTFontType":1,
+ "koreanText":"TV 스피커를 사용한다\n※추천하지 않습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_ask_controller_title",
+ "japaneseText":"演奏ゲームで使うコントローラーを教えてね!\n※演奏ゲームの2人用でJoy-Conと太鼓コントローラーを\n1台ずつ使う場合は「太鼓コントローラー」をえらんでね!",
+ "englishUsText":"What controller are you using in Taiko Mode? If you're\nusing both Joy-Con controllers and a Drum Controller\nfor 2 players, choose Drum Controller!",
+ "englishUsFontType":3,
+ "frenchText":"Quel contrôleur utilises-tu en mode Taiko ?\nSi tu te sers de Joy-Con et d'un Tambour pour 2 joueurs,\nchoisis le contrôleur Tambour !",
+ "frenchFontType":3,
+ "italianText":"Quale controller usi nella modalità Taiko? Se\nper giocare in due usi sia i Joy-Con sia il\ncontr. tamburo, usa il contr. tamburo!",
+ "italianFontType":3,
+ "germanText":"Welchen Controller benutzt du im Taiko-Modus? Solltest du\nbeide Joy-Con und einen Trommel-Controller\nfür 2 Spieler benutzen, wähle den Trommel-Controller aus!",
+ "germanFontType":3,
+ "spanishText":"¿Qué mando usas en el modo Taiko?\nSi usas ambos Joy-Con y un mando tambor\npara 2 jugadores, ¡elige Mando tambor!",
+ "spanishFontType":3,
+ "chineseTText":"請問你在演奏遊戲裡使用的控制器!\n※在演奏遊戲的2人遊玩時分別使用Joy-Con與一台\n太鼓控制器的情況下,請選擇「太鼓控制器」!",
+ "chineseTFontType":1,
+ "koreanText":"연주 모드에서 쓸 컨트롤러를 알려줘!\n※2인용 연주 모드에서 Joy-Con과 북 컨트롤러를\n1개씩 쓰는 경우에는 「북 컨트롤러」를 선택해줘",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_ask_controller_select1",
+ "japaneseText":"ボタンまたはフリフリ演奏",
+ "englishUsText":"Button Controls or Motion Controls",
+ "englishUsFontType":3,
+ "frenchText":"Commandes boutons ou\ncommandes par mouvements",
+ "frenchFontType":3,
+ "italianText":"Pulsanti o comandi di movimento",
+ "italianFontType":3,
+ "germanText":"Tasten- oder Bewegungssteuerung",
+ "germanFontType":3,
+ "spanishText":"Control por botones\no control por movimiento",
+ "spanishFontType":3,
+ "chineseTText":"按鍵或動態演奏",
+ "chineseTFontType":1,
+ "koreanText":"버튼 조작 또는 모션 조작",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_ask_controller_select2",
+ "japaneseText":"太鼓コントローラー",
+ "englishUsText":"Drum Controller",
+ "englishUsFontType":3,
+ "frenchText":"Contrôleur tambour",
+ "frenchFontType":3,
+ "italianText":"Controller tamburo",
+ "italianFontType":3,
+ "germanText":"Trommel-Controller",
+ "germanFontType":3,
+ "spanishText":"Mando tambor",
+ "spanishFontType":3,
+ "chineseTText":"太鼓控制器",
+ "chineseTFontType":1,
+ "koreanText":"북 컨트롤러",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_ask_sound_out_title",
+ "japaneseText":"演奏ゲームの音の聞き方を教えてね!",
+ "englishUsText":"How do you listen to sound in Taiko Mode?",
+ "englishUsFontType":3,
+ "frenchText":"Comment écoutes-tu du son en mode Taiko ?",
+ "frenchFontType":3,
+ "italianText":"Come ascolti i suoni nella modalità Taiko?",
+ "italianFontType":3,
+ "germanText":"Wie hörst du im Taiko-Modus?",
+ "germanFontType":3,
+ "spanishText":"¿Cómo escuchas el sonido en el modo Taiko?",
+ "spanishFontType":3,
+ "chineseTText":"請問你聆聽演奏遊戲內聲音的方式!",
+ "chineseTFontType":1,
+ "koreanText":"연주 모드에서 소리를 듣는 방법을 알려줘!",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_ask_sound_out_select1",
+ "japaneseText":"Switch本体のヘッドホン",
+ "englishUsText":"Headphones plugged directly\ninto your Nintendo Switch™ console",
+ "englishUsFontType":3,
+ "frenchText":"Casque branché directement\ndans la Nintendo Switch™",
+ "frenchFontType":3,
+ "italianText":"Cuffie collegate direttamente alla\nconsole Nintendo Switch™",
+ "italianFontType":3,
+ "germanText":"Kopfhörer direkt in die \nNintendo Switch™-Konsole eingesteckt",
+ "germanFontType":3,
+ "spanishText":"Auriculares enchufados a tu \nconsola Nintendo Switch™",
+ "spanishFontType":3,
+ "chineseTText":"Nintendo Switch主機的耳機",
+ "chineseTFontType":1,
+ "koreanText":"Switch 본체의 헤드폰",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_ask_sound_out_select2",
+ "japaneseText":"TVのスピーカーまたはTVのヘッドホン",
+ "englishUsText":"TV speakers or headphones plugged into a TV",
+ "englishUsFontType":3,
+ "frenchText":"Enceintes TV ou casque dans la TV",
+ "frenchFontType":3,
+ "italianText":"Altoparlanti della TV o cuffie collegate alla TV",
+ "italianFontType":3,
+ "germanText":"TV-Lautsprecher oder Kopfhörer via TV",
+ "germanFontType":3,
+ "spanishText":"Altavoces de TV o auriculares enchufados a la TV",
+ "spanishFontType":3,
+ "chineseTText":"電視內建的喇叭或是電視的耳機",
+ "chineseTFontType":1,
+ "koreanText":"TV 스피커 또는 TV에 연결한 헤드폰",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_ask_hit_timing_title",
+ "japaneseText":"演奏ゲームの「良」のタイミングを教えてね!",
+ "englishUsText":"How do you want timing to work in\nTaiko Mode?",
+ "englishUsFontType":3,
+ "frenchText":"Quel timing veux-tu en\nmode Taiko ?",
+ "frenchFontType":3,
+ "italianText":"Come vuoi gestire la sincronizzazione\nnella modalità Taiko?",
+ "italianFontType":3,
+ "germanText":"Wie soll das Timing im\nTaiko-Modus funktionieren?",
+ "germanFontType":3,
+ "spanishText":"¿Cómo prefieres la cadencia\nen el modo Taiko?",
+ "spanishFontType":3,
+ "chineseTText":"請問你演奏遊戲內「良」的時機!",
+ "chineseTFontType":1,
+ "koreanText":"연주 모드의 「얼쑤」의 타이밍을 알려줘!",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_ask_hit_timing_select1",
+ "japaneseText":"音符をワクの直前で入力して\n音符がワクで消える時が\n「良」のタイミング\n※オススメです",
+ "englishUsText":"Perfect timing when inputs are hit\nto make them disappear at the border\nNote: Recommended",
+ "englishUsFontType":3,
+ "frenchText":"Timing simultané à la commande\npour les faire disparaître sur les bords\nRemarque : conseillé",
+ "frenchFontType":3,
+ "italianText":"Perfetta quando note suonate\nper farle sparire al bordo\nNota: consigliato",
+ "italianFontType":3,
+ "germanText":"Exaktes Timing bei Treffern,\ndamit sie an der Grenze verschwinden.\nHinweis: Empfohlen.",
+ "germanFontType":3,
+ "spanishText":"Cadencia perfecta al meter notas\npara desaparecer en el borde\nNota: recomendado",
+ "spanishFontType":3,
+ "chineseTText":"正好在音符要於框框內消失時\n輸入「良」的時機\n※推薦",
+ "chineseTFontType":1,
+ "koreanText":"테두리 바로 앞에서 입력해서\n음표가 테두리에서 사라질 때가\n「얼쑤」의 타이밍\n※추천합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_ask_hit_timing_select2",
+ "japaneseText":"音符をワクで入力した時が\n「良」のタイミング",
+ "englishUsText":"Perfect timing when inputs are hit\nat the border",
+ "englishUsFontType":3,
+ "frenchText":"Timing simultané à la commande\nsur les bords",
+ "frenchFontType":3,
+ "italianText":"Perfetta quando note suonate\nal bordo",
+ "italianFontType":3,
+ "germanText":"Exaktes Timing bei Treffern\nan der Grenze.",
+ "germanFontType":3,
+ "spanishText":"Cadencia perfecta al meter notas\nen el borde",
+ "spanishFontType":3,
+ "chineseTText":"正好在音符位於框框時\n輸入「良」的時機",
+ "chineseTFontType":1,
+ "koreanText":"테두리에서 음표를 입력했을 때가\n「얼쑤」의 타이밍",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_result_title",
+ "japaneseText":"結果",
+ "englishUsText":"Input Results",
+ "englishUsFontType":3,
+ "frenchText":"Résultats",
+ "frenchFontType":3,
+ "italianText":"Esiti comandi",
+ "italianFontType":3,
+ "germanText":"Ergebn. Eingaben",
+ "germanFontType":3,
+ "spanishText":"Resultado notas",
+ "spanishFontType":3,
+ "chineseTText":"結果",
+ "chineseTFontType":1,
+ "koreanText":"결과",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_result_not_changed",
+ "japaneseText":"変更しませんでした",
+ "englishUsText":"No changes made",
+ "englishUsFontType":3,
+ "frenchText":"Aucun changement",
+ "frenchFontType":3,
+ "italianText":"Nessuna modifica",
+ "italianFontType":3,
+ "germanText":"Keine Änderungen",
+ "germanFontType":3,
+ "spanishText":"Sin cambios",
+ "spanishFontType":3,
+ "chineseTText":"沒有變動",
+ "chineseTFontType":1,
+ "koreanText":"변경하지 않았습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_result_neiro",
+ "japaneseText":"オプションの音色",
+ "englishUsText":"Option Instruments",
+ "englishUsFontType":3,
+ "frenchText":"Option d'instruments",
+ "frenchFontType":3,
+ "italianText":"Opzione strumenti",
+ "italianFontType":3,
+ "germanText":"Optionen Instrumente",
+ "germanFontType":3,
+ "spanishText":"Opción Instrumentos",
+ "spanishFontType":3,
+ "chineseTText":"選項的音色",
+ "chineseTFontType":1,
+ "koreanText":"옵션의 음색",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_result_item1",
+ "japaneseText":"%s",
+ "englishUsText":"%s",
+ "englishUsFontType":3,
+ "frenchText":"%s",
+ "frenchFontType":3,
+ "italianText":"%s",
+ "italianFontType":3,
+ "germanText":"%s",
+ "germanFontType":3,
+ "spanishText":"%s",
+ "spanishFontType":3,
+ "chineseTText":"%s",
+ "chineseTFontType":1,
+ "koreanText":"%s",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_result_item2",
+ "japaneseText":"%s",
+ "englishUsText":"%s",
+ "englishUsFontType":3,
+ "frenchText":"%s",
+ "frenchFontType":3,
+ "italianText":"%s",
+ "italianFontType":3,
+ "germanText":"%s",
+ "germanFontType":3,
+ "spanishText":"%s",
+ "spanishFontType":3,
+ "chineseTText":"%s",
+ "chineseTFontType":1,
+ "koreanText":"%s",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_result_item3",
+ "japaneseText":"%s",
+ "englishUsText":"%s",
+ "englishUsFontType":3,
+ "frenchText":"%s",
+ "frenchFontType":3,
+ "italianText":"%s",
+ "italianFontType":3,
+ "germanText":"%s",
+ "germanFontType":3,
+ "spanishText":"%s",
+ "spanishFontType":3,
+ "chineseTText":"%s",
+ "chineseTFontType":1,
+ "koreanText":"%s",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_result_item4",
+ "japaneseText":"%s",
+ "englishUsText":"%s",
+ "englishUsFontType":3,
+ "frenchText":"%s",
+ "frenchFontType":3,
+ "italianText":"%s",
+ "italianFontType":3,
+ "germanText":"%s",
+ "germanFontType":3,
+ "spanishText":"%s",
+ "spanishFontType":3,
+ "chineseTText":"%s",
+ "chineseTFontType":1,
+ "koreanText":"%s",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_result_item5",
+ "japaneseText":"%s",
+ "englishUsText":"%s",
+ "englishUsFontType":3,
+ "frenchText":"%s",
+ "frenchFontType":3,
+ "italianText":"%s",
+ "italianFontType":3,
+ "germanText":"%s",
+ "germanFontType":3,
+ "spanishText":"%s",
+ "spanishFontType":3,
+ "chineseTText":"%s",
+ "chineseTFontType":1,
+ "koreanText":"%s",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_result_item6",
+ "japaneseText":"%s",
+ "englishUsText":"%s",
+ "englishUsFontType":3,
+ "frenchText":"%s",
+ "frenchFontType":3,
+ "italianText":"%s",
+ "italianFontType":3,
+ "germanText":"%s",
+ "germanFontType":3,
+ "spanishText":"%s",
+ "spanishFontType":3,
+ "chineseTText":"%s",
+ "chineseTFontType":1,
+ "koreanText":"%s",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_easy_adjust_ttl",
+ "japaneseText":"かんたん音符調整について",
+ "englishUsText":"About Simple Calibration",
+ "englishUsFontType":3,
+ "frenchText":"À propos du calibrage simple",
+ "frenchFontType":3,
+ "italianText":"Sulla calibrazione semplice",
+ "italianFontType":3,
+ "germanText":"Über einfache Kalibrierung",
+ "germanFontType":3,
+ "spanishText":"Sobre calibración sencilla",
+ "spanishFontType":3,
+ "chineseTText":"關於簡易音符調整",
+ "chineseTFontType":1,
+ "koreanText":"쉬운 음표 조정에 대해",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_easy_adjust_msg",
+ "japaneseText":"テレビによっては えいぞうや音声におくれがあり \n正しいタイミングで演奏をしても\n失敗してしまうことがあります\n\nもし、そのような場合は\n「ゲーム設定」の「かんたん音符調整」でタイミングを調整してください\n「かんたん音符調整」にいどうしますか?",
+ "englishUsText":"On some TVs, notes may not always match\nyour input. If you experience this, try\ngoing to Game Settings > Simple \nCalibration.\nGo to Simple Calibration now?",
+ "englishUsFontType":3,
+ "frenchText":"Sur certaines TV, les notes ne correspondant pas toujours\nà la commande. Si c'est ton cas, va dans\nParamètres de jeu > Calibrage \nsimple.\nY aller maintenant ?",
+ "frenchFontType":3,
+ "italianText":"In base allo schermo, le note non sempre\ncombaciano con i comandi. Usa Impost.\ndi gioco > Calibrazione semplice per regolarli.\nAccedere alla calibrazione semplice?",
+ "italianFontType":3,
+ "germanText":"Bei manchen TV-Geräten stimmen die Noten nicht immer mit\ndeiner Eingabe überein. Sollte dies vorkommen,\ngehe zu den Spieleinstellungen > Einfache \nKalibrierung.\nJetzt zu einfacher Kalibrierung gehen?",
+ "germanFontType":3,
+ "spanishText":"En algunos televisores, las notas pueden\nno coincidir con lo pulsado. En tal caso,\nve a Ajustes del juego > Calibración\nsencilla.\n¿Ir a Calibración sencilla ahora?",
+ "spanishFontType":3,
+ "chineseTText":"根據您的電視,有可能出現影像或聲音延遲的現象,\n即使在正確的時機下敲打太鼓,也會讓演奏失敗\n\n\n\n萬一發生這種情況時,請前往「遊戲設定」中的\n「簡易音符調整」裡進行時機的調整\n要移動至「簡單音符調整」嗎?",
+ "chineseTFontType":1,
+ "koreanText":"TV에 따라서는 영상이나 음성이 늦어져서\n올바른 타이밍에 북을 쳐도\n연주에 실패하는 경우가 있습니다\n\n만약 그럴 때는\n「게임 설정」의 「쉬운 음표 조정」에서 타이밍을 조정해주세요\n「쉬운 음표 조정」으로 이동합니까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_update_title",
+ "japaneseText":"おしらせ!",
+ "englishUsText":"News!",
+ "englishUsFontType":3,
+ "frenchText":"Du nouveau !",
+ "frenchFontType":3,
+ "italianText":"Novità!",
+ "italianFontType":3,
+ "germanText":"Neuigkeiten!",
+ "germanFontType":3,
+ "spanishText":"¡Novedades!",
+ "spanishFontType":3,
+ "chineseTText":"公告!",
+ "chineseTFontType":1,
+ "koreanText":"알림!",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_update_easy_adjust",
+ "japaneseText":"「ゲーム設定」に「かんたん音符調整」が追加されました!\n演奏ゲームのタイミングが合わないと感じた場合は設定してみよう!",
+ "englishUsText":"Simple Calibration has been added to Game Settings!\nTry using this when you feel like the timing is off in Taiko Mode!",
+ "englishUsFontType":3,
+ "frenchText":"Le calibrage simple a été ajouté aux Paramètres de jeu !\nEssaie ça si tu trouves que le timing n'est pas le bon en mode Taiko !",
+ "frenchFontType":3,
+ "italianText":"Adesso tra le Impostazioni di gioco troverai l'opzione\nCalibrazione semplice! Usala se ti sembra che la\nsincronizzaz. dei comandi non sia perfetta nella mod. Taiko!",
+ "italianFontType":3,
+ "germanText":"Einfache Kalibrierung wurde den Spieleinstellungen hinzugefügt!\nBenutze sie, wenn du das Gefühl hast, dass dein Timing im Taiko-Modus nicht genau ist!",
+ "germanFontType":3,
+ "spanishText":"¡Calibración sencilla añadida a los Ajustes del juego!\n¡Prueba esta opción si crees que la cadencia no va bien en el modo Taiko!",
+ "spanishFontType":3,
+ "chineseTText":"於「遊戲設定」中追加了「簡單音符調整」!\n覺得演奏遊戲的時機不符合的情況下\n請試著調整看看!",
+ "chineseTFontType":1,
+ "koreanText":"「게임 설정」에 「쉬운 음표 조정」이 추가되었습니다!\n연주 타이밍이 맞지 않는다고 느껴질 때는 설정해보자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"furifuri_input_test_to_ensogame",
+ "japaneseText":"演奏ゲームへ",
+ "englishUsText":"To Taiko Mode",
+ "englishUsFontType":3,
+ "frenchText":"Mode Taiko",
+ "frenchFontType":3,
+ "italianText":"Alla mod. Taiko",
+ "italianFontType":3,
+ "germanText":"Zum Taiko-Modus",
+ "germanFontType":3,
+ "spanishText":"Para modo Taiko",
+ "spanishFontType":3,
+ "chineseTText":"前往演奏遊戲",
+ "chineseTFontType":1,
+ "koreanText":"연주 모드로",
+ "koreanFontType":2
+ },
+ {
+ "key":"furifuri_input_test_lets_start",
+ "japaneseText":"ふってみよう!",
+ "englishUsText":"Time to shake!",
+ "englishUsFontType":3,
+ "frenchText":"On se secoue !",
+ "frenchFontType":3,
+ "italianText":"Scuoti, scuoti!",
+ "italianFontType":3,
+ "germanText":"Losgeschüttelt!",
+ "germanFontType":3,
+ "spanishText":"¡A moverse!",
+ "spanishFontType":3,
+ "chineseTText":"揮動看看吧!",
+ "chineseTFontType":1,
+ "koreanText":"흔들어보자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_anayuk",
+ "japaneseText":"Let It Go~ありのままで~",
+ "englishUsText":"Let It Go",
+ "englishUsFontType":3,
+ "frenchText":"Let It Go",
+ "frenchFontType":3,
+ "italianText":"Let It Go",
+ "italianFontType":3,
+ "germanText":"Let It Go",
+ "germanFontType":3,
+ "spanishText":"Let It Go",
+ "spanishFontType":3,
+ "chineseTText":"Let It Go",
+ "chineseTFontType":1,
+ "koreanText":"Let It Go",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_anayuk",
+ "japaneseText":"「アナと雪の女王」より",
+ "englishUsText":"From \" Frozen \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Frozen \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Frozen \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Frozen \"",
+ "germanFontType":3,
+ "spanishText":"De \" Frozen \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「冰雪奇緣」",
+ "chineseTFontType":1,
+ "koreanText":"\"겨울왕국\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_anayuk",
+ "japaneseText":"",
+ "englishUsText":"Let It Go~ありのままで~",
+ "englishUsFontType":0,
+ "frenchText":"Let It Go~ありのままで~",
+ "frenchFontType":0,
+ "italianText":"Let It Go~ありのままで~",
+ "italianFontType":0,
+ "germanText":"Let It Go~ありのままで~",
+ "germanFontType":0,
+ "spanishText":"Let It Go~ありのままで~",
+ "spanishFontType":0,
+ "chineseTText":"Let It Go~ありのままで~",
+ "chineseTFontType":0,
+ "koreanText":"Let It Go~ありのままで~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_anadrm",
+ "japaneseText":"雪だるまつくろう",
+ "englishUsText":"Do You Want to Build a Snowman?",
+ "englishUsFontType":3,
+ "frenchText":"Do You Want to Build a Snowman?",
+ "frenchFontType":3,
+ "italianText":"Do You Want to Build a Snowman?",
+ "italianFontType":3,
+ "germanText":"Do You Want to Build a Snowman?",
+ "germanFontType":3,
+ "spanishText":"Do You Want to Build a Snowman?",
+ "spanishFontType":3,
+ "chineseTText":"Do You Want to Build a Snowman?",
+ "chineseTFontType":1,
+ "koreanText":"Do You Want to Build a Snowman?",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_anadrm",
+ "japaneseText":"「アナと雪の女王」より",
+ "englishUsText":"From \" Frozen \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Frozen \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Frozen \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Frozen \"",
+ "germanFontType":3,
+ "spanishText":"De \" Frozen \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「冰雪奇緣」",
+ "chineseTFontType":1,
+ "koreanText":"\"겨울왕국\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_anadrm",
+ "japaneseText":"",
+ "englishUsText":"雪だるまつくろう",
+ "englishUsFontType":0,
+ "frenchText":"雪だるまつくろう",
+ "frenchFontType":0,
+ "italianText":"雪だるまつくろう",
+ "italianFontType":0,
+ "germanText":"雪だるまつくろう",
+ "germanFontType":0,
+ "spanishText":"雪だるまつくろう",
+ "spanishFontType":0,
+ "chineseTText":"雪だるまつくろう",
+ "chineseTFontType":0,
+ "koreanText":"雪だるまつくろう",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_zootop",
+ "japaneseText":"トライ・エヴリシング",
+ "englishUsText":"Try Everything",
+ "englishUsFontType":3,
+ "frenchText":"Try Everything",
+ "frenchFontType":3,
+ "italianText":"Try Everything",
+ "italianFontType":3,
+ "germanText":"Try Everything",
+ "germanFontType":3,
+ "spanishText":"Try Everything",
+ "spanishFontType":3,
+ "chineseTText":"Try Everything",
+ "chineseTFontType":1,
+ "koreanText":"Try Everything",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_zootop",
+ "japaneseText":"「ズートピア」より",
+ "englishUsText":"From \" Zootopia \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Zootopia \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Zootopia \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Zootopia \"",
+ "germanFontType":3,
+ "spanishText":"De \" Zootopia \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「動物方城市」",
+ "chineseTFontType":1,
+ "koreanText":"\"주토피아\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_zootop",
+ "japaneseText":"",
+ "englishUsText":"トライ・エヴリシング",
+ "englishUsFontType":0,
+ "frenchText":"トライ・エヴリシング",
+ "frenchFontType":0,
+ "italianText":"トライ・エヴリシング",
+ "italianFontType":0,
+ "germanText":"トライ・エヴリシング",
+ "germanFontType":0,
+ "spanishText":"トライ・エヴリシング",
+ "spanishFontType":0,
+ "chineseTText":"トライ・エヴリシング",
+ "chineseTFontType":0,
+ "koreanText":"トライ・エヴリシング",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_santa",
+ "japaneseText":"ジングルベル第765番",
+ "englishUsText":"Jingle Bells No.765",
+ "englishUsFontType":3,
+ "frenchText":"Jingle Bells No.765",
+ "frenchFontType":3,
+ "italianText":"Jingle Bells No.765",
+ "italianFontType":3,
+ "germanText":"Jingle Bells No.765",
+ "germanFontType":3,
+ "spanishText":"Jingle Bells No.765",
+ "spanishFontType":3,
+ "chineseTText":"Jingle Bells 第765號",
+ "chineseTFontType":1,
+ "koreanText":"Jingle Bells 765번",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_santa",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_santa",
+ "japaneseText":"",
+ "englishUsText":"ジングルベル第765番",
+ "englishUsFontType":0,
+ "frenchText":"ジングルベル第765番",
+ "frenchFontType":0,
+ "italianText":"ジングルベル第765番",
+ "italianFontType":0,
+ "germanText":"ジングルベル第765番",
+ "germanFontType":0,
+ "spanishText":"ジングルベル第765番",
+ "spanishFontType":0,
+ "chineseTText":"ジングルベル第765番",
+ "chineseTFontType":0,
+ "koreanText":"ジングルベル第765番",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_clsmnk",
+ "japaneseText":"カレ・カノ・カノン",
+ "englishUsText":"KARE KANO CANON",
+ "englishUsFontType":3,
+ "frenchText":"KARE KANO CANON",
+ "frenchFontType":3,
+ "italianText":"KARE KANO CANON",
+ "italianFontType":3,
+ "germanText":"KARE KANO CANON",
+ "germanFontType":3,
+ "spanishText":"KARE KANO CANON",
+ "spanishFontType":3,
+ "chineseTText":"親親卡農",
+ "chineseTFontType":1,
+ "koreanText":"카레 카노 카논",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_clsmnk",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_clsmnk",
+ "japaneseText":"",
+ "englishUsText":"カレ・カノ・カノン",
+ "englishUsFontType":0,
+ "frenchText":"カレ・カノ・カノン",
+ "frenchFontType":0,
+ "italianText":"カレ・カノ・カノン",
+ "italianFontType":0,
+ "germanText":"カレ・カノ・カノン",
+ "germanFontType":0,
+ "spanishText":"カレ・カノ・カノン",
+ "spanishFontType":0,
+ "chineseTText":"カレ・カノ・カノン",
+ "chineseTFontType":0,
+ "koreanText":"カレ・カノ・カノン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_genpe",
+ "japaneseText":"KAGEKIYO",
+ "englishUsText":"KAGEKIYO",
+ "englishUsFontType":3,
+ "frenchText":"KAGEKIYO",
+ "frenchFontType":3,
+ "italianText":"KAGEKIYO",
+ "italianFontType":3,
+ "germanText":"KAGEKIYO",
+ "germanFontType":3,
+ "spanishText":"KAGEKIYO",
+ "spanishFontType":3,
+ "chineseTText":"KAGEKIYO",
+ "chineseTFontType":1,
+ "koreanText":"KAGEKIYO",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_genpe",
+ "japaneseText":"源平討魔伝メドレー",
+ "englishUsText":"\" The Genji and the Heike Clans \" Medley",
+ "englishUsFontType":3,
+ "frenchText":"\" The Genji and the Heike Clans \" Medley",
+ "frenchFontType":3,
+ "italianText":"\" The Genji and the Heike Clans \" Medley",
+ "italianFontType":3,
+ "germanText":"\" The Genji and the Heike Clans \" Medley",
+ "germanFontType":3,
+ "spanishText":"\" The Genji and the Heike Clans \" Medley",
+ "spanishFontType":3,
+ "chineseTText":"源平討魔伝メドレー",
+ "chineseTFontType":1,
+ "koreanText":"\" The Genji and the Heike Clans \" Medley",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_genpe",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_rot",
+ "japaneseText":"さいたま2000",
+ "englishUsText":"SAITAMA 2000",
+ "englishUsFontType":3,
+ "frenchText":"SAITAMA 2000",
+ "frenchFontType":3,
+ "italianText":"SAITAMA 2000",
+ "italianFontType":3,
+ "germanText":"SAITAMA 2000",
+ "germanFontType":3,
+ "spanishText":"SAITAMA 2000",
+ "spanishFontType":3,
+ "chineseTText":"埼玉2000",
+ "chineseTFontType":1,
+ "koreanText":"사이타마 2000",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_rot",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_rot",
+ "japaneseText":"",
+ "englishUsText":"さいたま2000",
+ "englishUsFontType":0,
+ "frenchText":"さいたま2000",
+ "frenchFontType":0,
+ "italianText":"さいたま2000",
+ "italianFontType":0,
+ "germanText":"さいたま2000",
+ "germanFontType":0,
+ "spanishText":"さいたま2000",
+ "spanishFontType":0,
+ "chineseTText":"さいたま2000",
+ "chineseTFontType":0,
+ "koreanText":"さいたま2000",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mymine",
+ "japaneseText":"My Mine",
+ "englishUsText":"My Mine",
+ "englishUsFontType":3,
+ "frenchText":"My Mine",
+ "frenchFontType":3,
+ "italianText":"My Mine",
+ "italianFontType":3,
+ "germanText":"My Mine",
+ "germanFontType":3,
+ "spanishText":"My Mine",
+ "spanishFontType":3,
+ "chineseTText":"My Mine",
+ "chineseTFontType":1,
+ "koreanText":"My Mine",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mymine",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mymine",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"help_practice_ttl",
+ "japaneseText":"フリフリのそうさを練習してみましょう",
+ "englishUsText":"Try Out the Motion Controls",
+ "englishUsFontType":3,
+ "frenchText":"Essaie les commandes par mouvements",
+ "frenchFontType":3,
+ "italianText":"Prova i comandi di movimento",
+ "italianFontType":3,
+ "germanText":"Bewegungssteuerung ausprobieren",
+ "germanFontType":3,
+ "spanishText":"Prueba el control por movimiento",
+ "spanishFontType":3,
+ "chineseTText":"體驗練習動態演奏的操作",
+ "chineseTFontType":1,
+ "koreanText":"모션 조작을 연습해봅시다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_practice_msg",
+ "japaneseText":"「Joy-Con」2本持ちのじょうたいにして\nじゅんびができたら決定してください\nフリフリのそうさを練習します\n\nまた、フリフリのそうさの練習は「ヘルプ」の\n「フリフリの練習」から何度でもできます",
+ "englishUsText":"Hold one Joy-Con in each hand, then Confirm\nwhen ready to begin practicing the motion\ncontrols.\n\nPractice whenever you like by going to\nHelp > Motion Control Practice.",
+ "englishUsFontType":3,
+ "frenchText":"Tiens un Joy-Con dans chaque main, puis confirme\nlorsque tu es prêt à t'entraîner aux commandes\npar mouvements.\n\nTu peux t'entraîner chaque fois que tu le\nsouhaites en allant dans Aide >\nEntraînement commandes par mouvements.",
+ "frenchFontType":3,
+ "italianText":"Tieni un Joy-Con in ciascuna mano e conferma\nquando sei pronto per provare i comandi.\n\nPuoi provare i comandi di movimento\ntutte le volte che vuoi selezionando\nAiuto > Prova comandi di movimento.",
+ "italianFontType":3,
+ "germanText":"Halte einen Joy-Con in jeder Hand und bestätige,\nwenn du bereit bist, mit dem Üben der Bewegungs-\nsteuerung zu beginnen.\n\nDu kannst jederzeit üben, indem du\nHilfe > Bewegungssteuerung üben aufrufst.",
+ "germanFontType":3,
+ "spanishText":"Sujeta un Joy-Con en cada mano y confirma\ncuando tengas todo listo para practicar el \ncontrol por movimiento.\n\nPractica cuando quieras en\nAyuda > Practicar control por movimiento",
+ "spanishFontType":3,
+ "chineseTText":"請先讓「Joy-Con」控制器維持在左右握著的狀態,\n當準備好時請進行決定,進行動態演奏的練習\n\n另外也可在「操作說明」內的「動態演奏的練習」\n裡隨意練習動態演奏的操作",
+ "chineseTFontType":1,
+ "koreanText":"「Joy-Con」 2개잡기로 들고\n준비가 되면 결정을 눌러주세요\n모션 조작을 연습합니다\n\n또한, 모션 조작 연습은 「도움말」의\n「모션 조작 연습」에서 몇 번이든 할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"dialog_practice_later",
+ "japaneseText":"あとで練習",
+ "englishUsText":"Practice Later",
+ "englishUsFontType":3,
+ "frenchText":"Plus tard",
+ "frenchFontType":3,
+ "italianText":"Prova dopo",
+ "italianFontType":3,
+ "germanText":"Später üben",
+ "germanFontType":3,
+ "spanishText":"Más tarde",
+ "spanishFontType":3,
+ "chineseTText":"之後再練習",
+ "chineseTFontType":1,
+ "koreanText":"나중에 연습한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"dialog_practice",
+ "japaneseText":"練習する",
+ "englishUsText":"Practice",
+ "englishUsFontType":3,
+ "frenchText":"S'entraîner",
+ "frenchFontType":3,
+ "italianText":"Prova",
+ "italianFontType":3,
+ "germanText":"Üben",
+ "germanFontType":3,
+ "spanishText":"Practicar",
+ "spanishFontType":3,
+ "chineseTText":"練習",
+ "chineseTFontType":1,
+ "koreanText":"연습한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_umzaso",
+ "japaneseText":"雑草",
+ "englishUsText":"ZASSOU",
+ "englishUsFontType":3,
+ "frenchText":"ZASSOU",
+ "frenchFontType":3,
+ "italianText":"ZASSOU",
+ "italianFontType":3,
+ "germanText":"ZASSOU",
+ "germanFontType":3,
+ "spanishText":"ZASSOU",
+ "spanishFontType":3,
+ "chineseTText":"雑草",
+ "chineseTFontType":1,
+ "koreanText":"ZASSOU",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_umzaso",
+ "japaneseText":"HIKAKIN & SEIKIN",
+ "englishUsText":"HIKAKIN & SEIKIN",
+ "englishUsFontType":3,
+ "frenchText":"HIKAKIN & SEIKIN",
+ "frenchFontType":3,
+ "italianText":"HIKAKIN & SEIKIN",
+ "italianFontType":3,
+ "germanText":"HIKAKIN & SEIKIN",
+ "germanFontType":3,
+ "spanishText":"HIKAKIN & SEIKIN",
+ "spanishFontType":3,
+ "chineseTText":"HIKAKIN & SEIKIN",
+ "chineseTFontType":1,
+ "koreanText":"HIKAKIN & SEIKIN",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_umzaso",
+ "japaneseText":"",
+ "englishUsText":"雑草",
+ "englishUsFontType":0,
+ "frenchText":"雑草",
+ "frenchFontType":0,
+ "italianText":"雑草",
+ "italianFontType":0,
+ "germanText":"雑草",
+ "germanFontType":0,
+ "spanishText":"雑草",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"雑草",
+ "koreanFontType":0
+ },
+ {
+ "key":"easy_adjust_notice_title",
+ "japaneseText":"プレイモードのご確認",
+ "englishUsText":"Verify Play Mode",
+ "englishUsFontType":3,
+ "frenchText":"Vérifier le mode de jeu",
+ "frenchFontType":3,
+ "italianText":"Verifica la modalità",
+ "italianFontType":3,
+ "germanText":"Spielmodus verifizieren",
+ "germanFontType":3,
+ "spanishText":"Verificar modo de juego",
+ "spanishFontType":3,
+ "chineseTText":"確認遊玩模式",
+ "chineseTFontType":1,
+ "koreanText":"플레이 모드 확인",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_notice_body",
+ "japaneseText":"Nintendo Switchドックに置いて\nTVモードにして下さい",
+ "englishUsText":"Place the Nintendo Switch in the dock\nand set to TV mode.",
+ "englishUsFontType":3,
+ "frenchText":"Place la Nintendo Switch dans la station d'accueil\net paramètre-la en mode TV.",
+ "frenchFontType":3,
+ "italianText":"Colloca il Nintendo Switch™ sulla base\ne passa alla modalità TV.",
+ "italianFontType":3,
+ "germanText":"Stecke die Nintendo Switch in die\nStation und schalte auf TV-Modus.",
+ "germanFontType":3,
+ "spanishText":"Coloca la Nintendo Switch en la base\ny elige el modo TV.",
+ "spanishFontType":3,
+ "chineseTText":"請將主機置於Nintendo Switch底座\n轉換為TV模式",
+ "chineseTFontType":1,
+ "koreanText":"Nintendo Switch 독에 꽂아서\nTV 모드로 해주세요",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_result_thinking",
+ "japaneseText":"判定中",
+ "englishUsText":"Calculating...",
+ "englishUsFontType":3,
+ "frenchText":"Calcul en cours...",
+ "frenchFontType":3,
+ "italianText":"Elaborazione in corso...",
+ "italianFontType":3,
+ "germanText":"Berechne ...",
+ "germanFontType":3,
+ "spanishText":"Calculando...",
+ "spanishFontType":3,
+ "chineseTText":"判定中",
+ "chineseTFontType":1,
+ "koreanText":"판정 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_result_neiro_silent",
+ "japaneseText":"「音なし」にしました",
+ "englishUsText":"Set to Silent.",
+ "englishUsFontType":3,
+ "frenchText":"Paramétrer en mode silencieux.",
+ "frenchFontType":3,
+ "italianText":"Imposta su Silenzio.",
+ "italianFontType":3,
+ "germanText":"Stumm schalten.",
+ "germanFontType":3,
+ "spanishText":"Silenciado.",
+ "spanishFontType":3,
+ "chineseTText":"已設為「靜音」",
+ "chineseTFontType":1,
+ "koreanText":"「무음」으로 했습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"easy_adjust_measure_button",
+ "japaneseText":"このボタンを押してね!",
+ "englishUsText":"Press this button!",
+ "englishUsFontType":3,
+ "frenchText":"Appuie sur ce bouton !",
+ "frenchFontType":3,
+ "italianText":"Premi questo pulsante!",
+ "italianFontType":3,
+ "germanText":"Drücke diesen Knopf!!",
+ "germanFontType":3,
+ "spanishText":"¡Pulsa este botón!",
+ "spanishFontType":3,
+ "chineseTText":"按下這個按鍵吧!",
+ "chineseTFontType":1,
+ "koreanText":"이 버튼을 눌러줘!",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_update_furifuri_test",
+ "japaneseText":"「ヘルプ」に「フリフリの練習」が追加されました!\nドンとカッの打ち分けを練習してみよう!",
+ "englishUsText":"Motion Control Practice has been added to Help!\nTry practicing Dons and Kas!",
+ "englishUsFontType":3,
+ "frenchText":"L'Entraînement aux commandes par mouvements a été ajouté\ndans Aide ! Entraîne-toi aux Don et Ka !",
+ "frenchFontType":3,
+ "italianText":"Ora con Prova comandi di movimento puoi allenarti\na suonare le note Don e Ka!",
+ "italianFontType":3,
+ "germanText":"Bewegungssteuerung üben wurde der Hilfesektion hinzugefügt!\nTrainiere Dons und Kas!",
+ "germanFontType":3,
+ "spanishText":"¡Se ha añadido Practicar control por movimiento a Ayuda!\n¡Practica los Don y Ka!",
+ "spanishFontType":3,
+ "chineseTText":"於「操作說明」中追加了「動態演奏的練習」!\n試著練習分開敲打咚咔吧!",
+ "chineseTFontType":1,
+ "koreanText":"「도움말」에 「모션 조작 연습」이 추가되었습니다!\n쿵과 딱을 구별해 치는 연습을 해보자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_rule_base",
+ "japaneseText":"あそびかた",
+ "englishUsText":"Rule Set",
+ "englishUsFontType":3,
+ "frenchText":"Règles",
+ "frenchFontType":3,
+ "italianText":"Regole",
+ "italianFontType":3,
+ "germanText":"Regeln",
+ "germanFontType":3,
+ "spanishText":"Reglas",
+ "spanishFontType":3,
+ "chineseTText":"玩法",
+ "chineseTFontType":1,
+ "koreanText":"플레이 방법",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_rule_info_skill",
+ "japaneseText":"演奏キャラクターの演奏スキル\n「あり」「なし」をえらべるよ",
+ "englishUsText":"You can turn character skills on or off.",
+ "englishUsFontType":3,
+ "frenchText":"Tu peux activer ou désactiver les capacités des personnages.",
+ "frenchFontType":3,
+ "italianText":"Puoi attivare o disattivare le abilità.",
+ "italianFontType":3,
+ "germanText":"Du kannst Charakterfähigkeiten ein- und ausschalten.",
+ "germanFontType":3,
+ "spanishText":"Puedes activar o desactivar las habilidades del personaje.",
+ "spanishFontType":3,
+ "chineseTText":"可選擇演奏角色之演奏技能的「有」、「無」",
+ "chineseTFontType":1,
+ "koreanText":"연주 캐릭터의 연주 스킬\n「있음」 「없음」을 선택할 수 있어",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_rule_hide_base",
+ "japaneseText":"スコア目かくし",
+ "englishUsText":"Hide Score",
+ "englishUsFontType":3,
+ "frenchText":"Masquer score",
+ "frenchFontType":3,
+ "italianText":"Nascondi punteggio",
+ "italianFontType":3,
+ "germanText":"Punkte ausblenden",
+ "germanFontType":3,
+ "spanishText":"Ocultar puntuación",
+ "spanishFontType":3,
+ "chineseTText":"隱藏成績",
+ "chineseTFontType":1,
+ "koreanText":"스코어 눈 가리기",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_rule_info_hide",
+ "japaneseText":"対決の後半からスコアをかくすよ\n「あり」「なし」をえらべるよ",
+ "englishUsText":"You can hide the score from the midpoint onwards.",
+ "englishUsFontType":3,
+ "frenchText":"Tu peux masquer le score à partir de la seconde moitié.",
+ "frenchFontType":3,
+ "italianText":"Puoi nascondere il punteggio da metà in poi.",
+ "italianFontType":3,
+ "germanText":"Du kannst die Punktzahl von der Mitte ab ausblenden.",
+ "germanFontType":3,
+ "spanishText":"Puedes ocultar la puntuación desde el punto intermedio en adelante.",
+ "spanishFontType":3,
+ "chineseTText":"可選擇在對決後半部分隱藏成績的「有」、「無」",
+ "chineseTFontType":1,
+ "koreanText":"대결 후반부터 스코어를 가릴 거야\n「있음」 「없음」을 선택할 수 있어",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_clsmao",
+ "japaneseText":"まおぅ",
+ "englishUsText":"MAO-u",
+ "englishUsFontType":3,
+ "frenchText":"MAO-u",
+ "frenchFontType":3,
+ "italianText":"MAO-u",
+ "italianFontType":3,
+ "germanText":"MAO-u",
+ "germanFontType":3,
+ "spanishText":"MAO-u",
+ "spanishFontType":3,
+ "chineseTText":"MAO-u",
+ "chineseTFontType":1,
+ "koreanText":"MAO-u",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_clsmao",
+ "japaneseText":"feat.結羽(プラムソニック)",
+ "englishUsText":"feat.Yuu.(pLumsonic!)",
+ "englishUsFontType":3,
+ "frenchText":"feat.Yuu.(pLumsonic!)",
+ "frenchFontType":3,
+ "italianText":"feat.Yuu.(pLumsonic!)",
+ "italianFontType":3,
+ "germanText":"feat.Yuu.(pLumsonic!)",
+ "germanFontType":3,
+ "spanishText":"feat.Yuu.(pLumsonic!)",
+ "spanishFontType":3,
+ "chineseTText":"feat. 結羽(pLumsonic!)",
+ "chineseTFontType":1,
+ "koreanText":"feat. Yuu.(pLumsonic!)",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_clsmao",
+ "japaneseText":"",
+ "englishUsText":"まおぅ",
+ "englishUsFontType":0,
+ "frenchText":"まおぅ",
+ "frenchFontType":0,
+ "italianText":"まおぅ",
+ "italianFontType":0,
+ "germanText":"まおぅ",
+ "germanFontType":0,
+ "spanishText":"まおぅ",
+ "spanishFontType":0,
+ "chineseTText":"まおぅ",
+ "chineseTFontType":0,
+ "koreanText":"まおぅ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_orgmis",
+ "japaneseText":"軽いざわめき",
+ "englishUsText":"KARUIZAWAMEKI",
+ "englishUsFontType":3,
+ "frenchText":"KARUIZAWAMEKI",
+ "frenchFontType":3,
+ "italianText":"KARUIZAWAMEKI",
+ "italianFontType":3,
+ "germanText":"KARUIZAWAMEKI",
+ "germanFontType":3,
+ "spanishText":"KARUIZAWAMEKI",
+ "spanishFontType":3,
+ "chineseTText":"KARUIZAWAMEKI",
+ "chineseTFontType":1,
+ "koreanText":"KARUIZAWAMEKI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_orgmis",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_orgmis",
+ "japaneseText":"",
+ "englishUsText":"軽いざわめき",
+ "englishUsFontType":0,
+ "frenchText":"軽いざわめき",
+ "frenchFontType":0,
+ "italianText":"軽いざわめき",
+ "italianFontType":0,
+ "germanText":"軽いざわめき",
+ "germanFontType":0,
+ "spanishText":"軽いざわめき",
+ "spanishFontType":0,
+ "chineseTText":"軽いざわめき",
+ "chineseTFontType":0,
+ "koreanText":"軽いざわめき",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_angel3",
+ "japaneseText":"パステル ドリーム",
+ "englishUsText":"Pastel Dream",
+ "englishUsFontType":3,
+ "frenchText":"Pastel Dream",
+ "frenchFontType":3,
+ "italianText":"Pastel Dream",
+ "italianFontType":3,
+ "germanText":"Pastel Dream",
+ "germanFontType":3,
+ "spanishText":"Pastel Dream",
+ "spanishFontType":3,
+ "chineseTText":"Pastel Dream",
+ "chineseTFontType":1,
+ "koreanText":"Pastel Dream",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_angel3",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_angel3",
+ "japaneseText":"",
+ "englishUsText":"パステル ドリーム",
+ "englishUsFontType":0,
+ "frenchText":"パステル ドリーム",
+ "frenchFontType":0,
+ "italianText":"パステル ドリーム",
+ "italianFontType":0,
+ "germanText":"パステル ドリーム",
+ "germanFontType":0,
+ "spanishText":"パステル ドリーム",
+ "spanishFontType":0,
+ "chineseTText":"パステル ドリーム",
+ "chineseTFontType":0,
+ "koreanText":"パステル ドリーム",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_idol2",
+ "japaneseText":"スクロール・ミカ",
+ "englishUsText":"Scroll MIKA",
+ "englishUsFontType":3,
+ "frenchText":"Scroll MIKA",
+ "frenchFontType":3,
+ "italianText":"Scroll MIKA",
+ "italianFontType":3,
+ "germanText":"Scroll MIKA",
+ "germanFontType":3,
+ "spanishText":"Scroll MIKA",
+ "spanishFontType":3,
+ "chineseTText":"Scroll MIKA",
+ "chineseTFontType":1,
+ "koreanText":"Scroll MIKA",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_idol2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_idol2",
+ "japaneseText":"",
+ "englishUsText":"スクロール・ミカ",
+ "englishUsFontType":0,
+ "frenchText":"スクロール・ミカ",
+ "frenchFontType":0,
+ "italianText":"スクロール・ミカ",
+ "italianFontType":0,
+ "germanText":"スクロール・ミカ",
+ "germanFontType":0,
+ "spanishText":"スクロール・ミカ",
+ "spanishFontType":0,
+ "chineseTText":"スクロール・ミカ",
+ "chineseTFontType":0,
+ "koreanText":"スクロール・ミカ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_inunon",
+ "japaneseText":"イヌノノリモノ",
+ "englishUsText":"INUNONORIMONO",
+ "englishUsFontType":3,
+ "frenchText":"INUNONORIMONO",
+ "frenchFontType":3,
+ "italianText":"INUNONORIMONO",
+ "italianFontType":3,
+ "germanText":"INUNONORIMONO",
+ "germanFontType":3,
+ "spanishText":"INUNONORIMONO",
+ "spanishFontType":3,
+ "chineseTText":"INUNONORIMONO",
+ "chineseTFontType":1,
+ "koreanText":"INUNONORIMONO",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_inunon",
+ "japaneseText":"feat.カタイカオル",
+ "englishUsText":"feat.KAORU KATAI",
+ "englishUsFontType":3,
+ "frenchText":"feat.KAORU KATAI",
+ "frenchFontType":3,
+ "italianText":"feat.KAORU KATAI",
+ "italianFontType":3,
+ "germanText":"feat.KAORU KATAI",
+ "germanFontType":3,
+ "spanishText":"feat.KAORU KATAI",
+ "spanishFontType":3,
+ "chineseTText":"feat. KAORU KATAI",
+ "chineseTFontType":1,
+ "koreanText":"feat. KAORU KATAI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_inunon",
+ "japaneseText":"",
+ "englishUsText":"イヌノノリモノ",
+ "englishUsFontType":0,
+ "frenchText":"イヌノノリモノ",
+ "frenchFontType":0,
+ "italianText":"イヌノノリモノ",
+ "italianFontType":0,
+ "germanText":"イヌノノリモノ",
+ "germanFontType":0,
+ "spanishText":"イヌノノリモノ",
+ "spanishFontType":0,
+ "chineseTText":"イヌノノリモノ",
+ "chineseTFontType":0,
+ "koreanText":"イヌノノリモノ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ngzsnc",
+ "japaneseText":"シンクロニシティ",
+ "englishUsText":"SYNCHRONICITY",
+ "englishUsFontType":3,
+ "frenchText":"SYNCHRONICITY",
+ "frenchFontType":3,
+ "italianText":"SYNCHRONICITY",
+ "italianFontType":3,
+ "germanText":"SYNCHRONICITY",
+ "germanFontType":3,
+ "spanishText":"SYNCHRONICITY",
+ "spanishFontType":3,
+ "chineseTText":"SYNCHRONICITY",
+ "chineseTFontType":1,
+ "koreanText":"SYNCHRONICITY",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ngzsnc",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ngzsnc",
+ "japaneseText":"",
+ "englishUsText":"シンクロニシティ",
+ "englishUsFontType":0,
+ "frenchText":"シンクロニシティ",
+ "frenchFontType":0,
+ "italianText":"シンクロニシティ",
+ "italianFontType":0,
+ "germanText":"シンクロニシティ",
+ "germanFontType":0,
+ "spanishText":"シンクロニシティ",
+ "spanishFontType":0,
+ "chineseTText":"シンクロニシティ",
+ "chineseTFontType":0,
+ "koreanText":"シンクロニシティ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kykgrs",
+ "japaneseText":"ガラスを割れ!",
+ "englishUsText":"Garasu Wo Ware",
+ "englishUsFontType":3,
+ "frenchText":"Garasu Wo Ware",
+ "frenchFontType":3,
+ "italianText":"Garasu Wo Ware",
+ "italianFontType":3,
+ "germanText":"Garasu Wo Ware",
+ "germanFontType":3,
+ "spanishText":"Garasu Wo Ware",
+ "spanishFontType":3,
+ "chineseTText":"Garasu Wo Ware",
+ "chineseTFontType":1,
+ "koreanText":"Garasu Wo Ware",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_kykgrs",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kykgrs",
+ "japaneseText":"",
+ "englishUsText":"ガラスを割れ!",
+ "englishUsFontType":0,
+ "frenchText":"ガラスを割れ!",
+ "frenchFontType":0,
+ "italianText":"ガラスを割れ!",
+ "italianFontType":0,
+ "germanText":"ガラスを割れ!",
+ "germanFontType":0,
+ "spanishText":"ガラスを割れ!",
+ "spanishFontType":0,
+ "chineseTText":"ガラスを割れ!",
+ "chineseTFontType":0,
+ "koreanText":"ガラスを割れ!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_akbftc",
+ "japaneseText":"恋するフォーチュンクッキー",
+ "englishUsText":"Koisuru Fortune Cookie",
+ "englishUsFontType":3,
+ "frenchText":"Koisuru Fortune Cookie",
+ "frenchFontType":3,
+ "italianText":"Koisuru Fortune Cookie",
+ "italianFontType":3,
+ "germanText":"Koisuru Fortune Cookie",
+ "germanFontType":3,
+ "spanishText":"Koisuru Fortune Cookie",
+ "spanishFontType":3,
+ "chineseTText":"Koisuru Fortune Cookie",
+ "chineseTFontType":1,
+ "koreanText":"Koisuru Fortune Cookie",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_akbftc",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_akbftc",
+ "japaneseText":"",
+ "englishUsText":"恋するフォーチュンクッキー",
+ "englishUsFontType":0,
+ "frenchText":"恋するフォーチュンクッキー",
+ "frenchFontType":0,
+ "italianText":"恋するフォーチュンクッキー",
+ "italianFontType":0,
+ "germanText":"恋するフォーチュンクッキー",
+ "germanFontType":0,
+ "spanishText":"恋するフォーチュンクッキー",
+ "spanishFontType":0,
+ "chineseTText":"恋するフォーチュンクッキー",
+ "chineseTFontType":0,
+ "koreanText":"恋するフォーチュンクッキー",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_tatujin02",
+ "japaneseText":"「達人チャレンジパックVol.2」配信中",
+ "englishUsText":"Tatsujin Challenge Pack Vol. 2 now available!",
+ "englishUsFontType":3,
+ "frenchText":"Tatsujin Challenge Pack Vol. 2 disponible le 10/01/2019",
+ "frenchFontType":3,
+ "italianText":"Tatsujin Challenge Pack Vol. 2 disponibile dal 10/1/2019",
+ "italianFontType":3,
+ "germanText":"Tatsujin Challenge Pack Vol. 2 verf. ab 10.01.2019",
+ "germanFontType":3,
+ "spanishText":"Tatsujin Challenge Pack Vol. 2 disponible el 10/01/2019",
+ "spanishFontType":3,
+ "chineseTText":"「達人Challenge Pack Vol.2」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「달인 Challenge Pack Vol.2」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_popspack02",
+ "japaneseText":"「ポップスパックVol.2」配信中",
+ "englishUsText":"Pops Pack Vol. 2 now available!",
+ "englishUsFontType":3,
+ "frenchText":"Pops Pack Vol. 2 disponible le 10/01/2019",
+ "frenchFontType":3,
+ "italianText":"Pops Pack Vol. 2 disponibile dal 10/1/2019",
+ "italianFontType":3,
+ "germanText":"Pops Pack Vol. 2 verf. ab 10.01.2019",
+ "germanFontType":3,
+ "spanishText":"Pops Pack Vol. 2 disponible el 10/01/2019",
+ "spanishFontType":3,
+ "chineseTText":"「流行音樂Pack Vol.2」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「팝 Pack Vol.2」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_taisen",
+ "japaneseText":"ドンカツファイト",
+ "englishUsText":"DON KATSU FIGHT",
+ "englishUsFontType":3,
+ "frenchText":"DUEL DON KATSU",
+ "frenchFontType":3,
+ "italianText":"DUELLO DON KATSU",
+ "italianFontType":3,
+ "germanText":"DON-KATSU-KAMPF",
+ "germanFontType":3,
+ "spanishText":"PELEA DON KATSU",
+ "spanishFontType":3,
+ "chineseTText":"咚咔對戰",
+ "chineseTFontType":1,
+ "koreanText":"동이 딱이 FIGHT",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_comment_taisen",
+ "japaneseText":"Nintendo Switch本体1台で、1人から2人であそぶことができます\n演奏しながら体力をけずり合う、アツいファイトが楽しめます",
+ "englishUsText":"For 1 or 2 Players on a single Nintendo Switch Console.\nPerform well to whittle down your opponent's HP in this\nfun and furious battle mode!",
+ "englishUsFontType":3,
+ "frenchText":"Pour 1 à 2 joueurs sur une console Nintendo Switch.\nJoue bien pour réduire les PV de ton adversaire\ndans ce mode de bataille délirant et trépidant ! ",
+ "frenchFontType":3,
+ "italianText":"Per 1 o 2 giocatori su una sola console Nintendo Switch.\nSuona le note al momento giusto per ridurre i PS dell'avversario\nin questa frenetica e spassosa modalità competitiva!",
+ "italianFontType":3,
+ "germanText":"Für 1 oder 2 Spieler auf einer einzelnen Nintendo Switch.\nGib dein Bestes, um in diesem spaßigen und wilden\nKampfmodus die KP deines Gegners runterzuputzen!",
+ "germanFontType":3,
+ "spanishText":"Para 1 o 2 jugadores en una única consola Nintendo Switch.\n¡Hazlo bien para reducir la salud de tus adversarios\nen este divertido y feroz modo de combate! ",
+ "spanishFontType":3,
+ "chineseTText":"是能以一台Nintendo Switch主機,讓1到2人遊玩的對戰模式。\n能一邊演奏相互削減對方的體力,享受火熱般的戰鬥",
+ "chineseTFontType":1,
+ "koreanText":"Nintendo Switch 본체 1대로, 1명 또는 2명이 연주 게임 대전을 합니다\n연주하면서 서로의 체력을 깎는 뜨거운 대전을 즐길 수 있습니다.",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_update_taisen",
+ "japaneseText":"新モード「ドンカツファイト」登場!\nニンテンドーeショップで無料配信中です\n\nあわせて新曲「Gold Armor」も\n期間限定で無料配信中です\n\nニンテンドーeショップへ行きますか?\n",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"新模式「咚咔對戰」登場!\n現正於Nintendo e-Shop內免費發布中\n\n現正同時限期免費發布新曲「Gold Armor」\n\n要前往Nintendo e-Shop嗎?",
+ "chineseTFontType":1,
+ "koreanText":"신 모드 「동이 딱이 FIGHT」가 추가되었습니다!\n닌텐도 e숍에서 무료 배포 중입니다\n\n동시에 신곡 「Gold Armor」도\n기간 한정 무료 배포 중입니다\n\n닌텐도 e숍으로 이동하시겠습니까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_pkmmzs",
+ "japaneseText":"めざせポケモンマスター ‐20th Anniversary‐",
+ "englishUsText":"Mezase Pokémon Master -20th Anniversary-",
+ "englishUsFontType":3,
+ "frenchText":"Mezase Pokémon Master -20th Anniversary-",
+ "frenchFontType":3,
+ "italianText":"Mezase Pokémon Master -20th Anniversary-",
+ "italianFontType":3,
+ "germanText":"Mezase Pokémon Master -20th Anniversary-",
+ "germanFontType":3,
+ "spanishText":"Mezase Pokémon Master -20th Anniversary-",
+ "spanishFontType":3,
+ "chineseTText":"Mezase Pokemon Master -20th Anniversary-",
+ "chineseTFontType":1,
+ "koreanText":"Mezase Pokemon Master -20th Anniversary-",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_pkmmzs",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_pkmmzs",
+ "japaneseText":"",
+ "englishUsText":"めざせポケモンマスター ‐20th Anniversary‐",
+ "englishUsFontType":0,
+ "frenchText":"めざせポケモンマスター ‐20th Anniversary‐",
+ "frenchFontType":0,
+ "italianText":"めざせポケモンマスター ‐20th Anniversary‐",
+ "italianFontType":0,
+ "germanText":"めざせポケモンマスター ‐20th Anniversary‐",
+ "germanFontType":0,
+ "spanishText":"めざせポケモンマスター ‐20th Anniversary‐",
+ "spanishFontType":0,
+ "chineseTText":"めざせポケモンマスター ‐20th Anniversary‐",
+ "chineseTFontType":0,
+ "koreanText":"めざせポケモンマスター ‐20th Anniversary‐",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_pk3rai",
+ "japaneseText":"未来コネクション",
+ "englishUsText":"Mirai Connection",
+ "englishUsFontType":3,
+ "frenchText":"Mirai Connection",
+ "frenchFontType":3,
+ "italianText":"Mirai Connection",
+ "italianFontType":3,
+ "germanText":"Mirai Connection",
+ "germanFontType":3,
+ "spanishText":"Mirai Connection",
+ "spanishFontType":3,
+ "chineseTText":"Mirai Connection",
+ "chineseTFontType":1,
+ "koreanText":"Mirai Connection",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_pk3rai",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_pk3rai",
+ "japaneseText":"",
+ "englishUsText":"未来コネクション",
+ "englishUsFontType":0,
+ "frenchText":"未来コネクション",
+ "frenchFontType":0,
+ "italianText":"未来コネクション",
+ "italianFontType":0,
+ "germanText":"未来コネクション",
+ "germanFontType":0,
+ "spanishText":"未来コネクション",
+ "spanishFontType":0,
+ "chineseTText":"未来コネクション",
+ "chineseTFontType":0,
+ "koreanText":"未来コネクション",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_pklets",
+ "japaneseText":"ポケットモンスター Let's Go! ピカチュウ・Let's Go! イーブイ ",
+ "englishUsText":"Pokémon: Let's Go, Pikachu! and Pokémon: Let's Go, Eevee!",
+ "englishUsFontType":3,
+ "frenchText":"Pokémon : Let's Go, Pikachu et Pokémon : Let's Go, Évoli",
+ "frenchFontType":3,
+ "italianText":"Pokémon: Let's Go, Pikachu! e Pokémon: Let's Go, Eevee!",
+ "italianFontType":3,
+ "germanText":"Pokémon: Let's Go, Pikachu! und Pokémon: Let's Go, Evoli!",
+ "germanFontType":3,
+ "spanishText":"Pokémon: Let's Go, Pikachu! y Pokémon: Let's Go, Eevee!",
+ "spanishFontType":3,
+ "chineseTText":"精靈寶可夢 Pokemon Let's Go! 皮卡丘 Pikachu!・伊布 Eevee!",
+ "chineseTFontType":1,
+ "koreanText":"포켓몬스터 레츠고! 피카츄・포켓몬스터 레츠고! 이브이",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_pklets",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_pklets",
+ "japaneseText":"",
+ "englishUsText":"ポケットモンスター Let's Go! ピカチュウ・Let's Go! イーブイ ",
+ "englishUsFontType":0,
+ "frenchText":"ポケットモンスター Let's Go! ピカチュウ・Let's Go! イーブイ ",
+ "frenchFontType":0,
+ "italianText":"ポケットモンスター Let's Go! ピカチュウ・Let's Go! イーブイ ",
+ "italianFontType":0,
+ "germanText":"ポケットモンスター Let's Go! ピカチュウ・Let's Go! イーブイ ",
+ "germanFontType":0,
+ "spanishText":"ポケットモンスター Let's Go! ピカチュウ・Let's Go! イーブイ ",
+ "spanishFontType":0,
+ "chineseTText":"ポケットモンスター Let's Go! ピカチュウ・Let's Go! イーブイ ",
+ "chineseTFontType":0,
+ "koreanText":"ポケットモンスター Let's Go! ピカチュウ・Let's Go! イーブイ ",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_pokemon",
+ "japaneseText":"『ポケモン Let's GO! ピカチュウ・Let's GO! イーブイ』&",
+ "englishUsText":"\"Pokémon: Let's Go, Pikachu! and Pokémon: Let's Go, Eevee!\"and",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"『精靈寶可夢 Pokemon Let's Go! 皮卡丘 Pikachu!・伊布 Eevee!』&",
+ "chineseTFontType":1,
+ "koreanText":"『포켓몬스터 레츠고! 피카츄・포켓몬스터 레츠고! 이브이』&",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_pokemon2",
+ "japaneseText":"ポケモンアニメミュージックパック 配信中",
+ "englishUsText":"\"Pokémon\" Anime Music Pack now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"『精靈寶可夢 Pokemon』動畫音樂Pack 發布中。",
+ "chineseTFontType":1,
+ "koreanText":"『포켓몬스터』 애니메이션 음악 Pack 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips043",
+ "japaneseText":"ドンカツファイトでは、コンボによるボーナスはない\n何よりも「良」を、いっぱいたたくようにしよう!",
+ "englishUsText":"There's no combo bonus in DON KATSU FIGHT mode,\nso try to get as many GOODs as you can!",
+ "englishUsFontType":3,
+ "frenchText":"Aucun bonus de combo en mode DUEL DON KATSU,\nalors tente d'obtenir un max de BONS !",
+ "frenchFontType":3,
+ "italianText":"In DUELLO DON KATSU non ottieni punti da combo,\nquindi totalizza più BUONO che puoi!",
+ "italianFontType":3,
+ "germanText":"Es gibt keinen Kombo-Bonus im DON-KATSU-KAMPF-Modus,\nalso versuche so viele GUTs wie möglich zu kriegen!",
+ "germanFontType":3,
+ "spanishText":"En el modo PELEA DON KATSU no hay bonificación\npor combo. ¡Consigue tantos BIENES como puedas!",
+ "spanishFontType":3,
+ "chineseTText":"在咚咔對戰裡,不會因為連段產生獎勵\n重要的是請盡量敲出許多「良」吧!",
+ "chineseTFontType":1,
+ "koreanText":"동이 딱이 FIGHT에는 콤보 보너스가 없다\n무엇보다도 「얼쑤」를 많이 치자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips044",
+ "japaneseText":"音符をぴったりなタイミングで、たたくと「良」になり\n「可」よりも太鼓パワーが多くふえる!",
+ "englishUsText":"Hitting notes at the right time earns a GOOD,\nwhich increases your Drum Power more than an OK!",
+ "englishUsFontType":3,
+ "frenchText":"Tambouriner au bon moment marque un BON,\nqui octroie plus de force de tambour qu'un OK !",
+ "frenchFontType":3,
+ "italianText":"Se il tuo tempismo è perfetto otterrai un BUONO,\nche aumenta la tua Potenza Tamburo più di un OK!",
+ "italianFontType":3,
+ "germanText":"Triffst du Noten genau, bekommst du ein GUT,\ndas stets mehr Trommel-Power bringt als ein OK!",
+ "germanFontType":3,
+ "spanishText":"Dar a las notas a tiempo te supone un BIEN, que\naumenta la potencia de tambor más que un VALE.",
+ "spanishFontType":3,
+ "chineseTText":"在合適的時機敲出「良」判定的音符時,\n將會獲得比「可」更多的太鼓POWER!",
+ "chineseTFontType":1,
+ "koreanText":"음표를 정확한 타이밍에 치면 「얼쑤」가 되며\n「좋다」보다 태고 파워가 많이 늘어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips045",
+ "japaneseText":"連打音符、ふうせん音符をたたいても、太鼓パワーがふえる!\nしっかりたたいて、太鼓パワーをふやそう!",
+ "englishUsText":"Try to increase your Drum Power by hitting\nconsecutive notes and balloon notes!",
+ "englishUsFontType":3,
+ "frenchText":"Augmente ta force de tambour en frappant\ndes notes consécutives et des notes ballon !",
+ "frenchFontType":3,
+ "italianText":"Aumenta la tua Potenza Tamburo colpendo\nnote consecutive e note palloncino!",
+ "italianFontType":3,
+ "germanText":"Versuche deine Trommel-Power zu erhöhen, indem\ndu durchgehend Noten und Ballon-Noten triffst!",
+ "germanFontType":3,
+ "spanishText":"¡Trata de aumentar la potencia de tambor dando\nen notas consecutivas y notas con un globo!",
+ "spanishFontType":3,
+ "chineseTText":"敲打連打音符,氣球音符,也能累積太鼓POWER!\n好好敲打,增加太鼓POWER吧!",
+ "chineseTFontType":1,
+ "koreanText":"연타 음표, 풍선 음표를 쳐도 태고 파워가\n는다! 잘 쳐서 태고 파워를 늘이자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips046",
+ "japaneseText":"どの「むずかしさ」でも、きちんとたたけば勝てる\n自分の好きな「むずかしさ」をえらぼう!",
+ "englishUsText":"Any difficulty can be beaten as long as you hit\nthe right notes, so choose any one you like!",
+ "englishUsFontType":3,
+ "frenchText":"Aucune difficulté n'est insurmontable en\ntambourinant au bon moment. Choisis sans peur !",
+ "frenchFontType":3,
+ "italianText":"Colpendo bene le note puoi superare ogni livello\ndi difficoltà. Scegli quello che preferisci!",
+ "italianFontType":3,
+ "germanText":"Jeder Schwierigkeitsgrad ist machbar, solange du\ndie richtigen Noten triffst, also such dir einen aus!",
+ "germanFontType":3,
+ "spanishText":"Puedes superar cualquier dificultad si aciertas\nen las notas correctas. ¡Elige la que quieras!",
+ "spanishFontType":3,
+ "chineseTText":"不論哪種「難度」只要好好敲打就能獲勝\n選擇自己喜歡的「難度」吧!",
+ "chineseTFontType":1,
+ "koreanText":"어느 「난이도」에서도 제대로 치면 이긴다\n좋아하는 「난이도」를 선택하자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips047",
+ "japaneseText":"相手の体力ゲージをゼロにするとK.O.!\n相手より、少しでも早くアタックしよう!",
+ "englishUsText":"KO an opponent by reducing their HP gauge!\nTry to attack before they do!",
+ "englishUsFontType":3,
+ "frenchText":"Assomme un adversaire en réduisant ses PV !\nAttaque-le en premier !",
+ "frenchFontType":3,
+ "italianText":"Manda KO gli avversari riducendo i loro PS!\nAttaccali prima che lo facciano loro!",
+ "italianFontType":3,
+ "germanText":"Strecke einen Gegner nieder, indem du seine KP-Leiste reduzierst!\nVersuche anzugreifen, bevor sie es tun!",
+ "germanFontType":3,
+ "spanishText":"Vence a tus adversarios reduciendo su indicador\nde salud. ¡Ataca antes que ellos!",
+ "spanishFontType":3,
+ "chineseTText":"讓對手的體力量表歸零來取得大勝!\n比起對手早一步進行攻擊吧!",
+ "chineseTFontType":1,
+ "koreanText":"상대의 체력 게이지를 0으로 만들면 K.O.!\n상대보다 조금이라도 빨리 공격하자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips048",
+ "japaneseText":"相手より体力が多いプレイヤーは\n譜面の近くに黄色いラインが出る",
+ "englishUsText":"Players with more HP than their opponent\nget yellow lines near the song.",
+ "englishUsFontType":3,
+ "frenchText":"Les joueurs avec plus de PV que leur adversaire\nverront des lignes jaunes près de la chanson.",
+ "frenchFontType":3,
+ "italianText":"I giocatori con più PS dell'avversario hanno\ndelle linee gialle accanto al brano.",
+ "italianFontType":3,
+ "germanText":"Spieler mit mehr KP als ihre Gegner\nhaben neben ihrem Lied eine gelbe Linie.",
+ "germanFontType":3,
+ "spanishText":"Los jugadores con más salud que su adversario\nverán líneas amarillas cerca de la canción.",
+ "spanishFontType":3,
+ "chineseTText":"比起對手體力較多的玩家\n會在靠近譜面處出現黃邊",
+ "chineseTFontType":1,
+ "koreanText":"상대보다 체력이 많은 플레이어는\n악보 근처에 노란 선이 나온다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips049",
+ "japaneseText":"相手より体力が少ないプレイヤーは\n画面左のキャラアイコンが暗くなる",
+ "englishUsText":"Players with less HP get than their opponent\nhave their left character icon darkened.",
+ "englishUsFontType":3,
+ "frenchText":"Les joueurs avec moins de PV que leur adversaire verront leur icône de perso à gauche de l'écran s'assombrir.",
+ "frenchFontType":3,
+ "italianText":"I giocatori con meno PS dell'avversario hanno l'icona del personaggio a sinistra oscurata.",
+ "italianFontType":3,
+ "germanText":"Spieler mit weniger KP als ihre Gegner\nhaben links ein abgedunkeltes Charakter-Symbol.",
+ "germanFontType":3,
+ "spanishText":"Los jugadores con menos salud que su adversario\nverán a su personaje a la izquierda oscurecido.",
+ "spanishFontType":3,
+ "chineseTText":"比起對手體力較少的玩家\n畫面左側的角色圖示會變暗",
+ "chineseTFontType":1,
+ "koreanText":"상대보다 체력이 적은 플레이어는\n화면 왼쪽 캐릭터 아이콘이 어두워진다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips050",
+ "japaneseText":"「譜面分岐」のある曲は音符の数が多い譜面が一番太鼓パワーがふえやすい!",
+ "englishUsText":"Songs with Diverge Notes have lots of notes, and are the best way to increase your Drum Power!",
+ "englishUsFontType":3,
+ "frenchText":"Les chansons aux notes divergentes ont plus de notes, et sont le meilleur moyen d'augmenter ta force de tambour !",
+ "frenchFontType":3,
+ "italianText":"I brani con note divergenti hanno molte note e sono il modo migliore per aumentare la tua Potenza Tamburo!",
+ "italianFontType":3,
+ "germanText":"Lieder mit Abweichungs-Noten haben viele Noten und sind der einfachste Weg deine Trommel-Power zu erhöhen!",
+ "germanFontType":3,
+ "spanishText":"¡Las canciones con notas divergentes tienen más notas y facilitan a los maestros ganar más potencia de tambor!",
+ "spanishFontType":3,
+ "chineseTText":"有著「譜面分歧」的曲子在音符數最多的譜面下,最容易累積太鼓POWER!",
+ "chineseTFontType":1,
+ "koreanText":"「악보 분기」가 있는 곡은 음표 수가 많은 악보가\n태고 파워가 가장 잘 늘어난다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips051",
+ "japaneseText":"アイテムは、一定時間たつと消える",
+ "englishUsText":"Items disappear after a short while.",
+ "englishUsFontType":3,
+ "frenchText":"Les objets finissent par disparaître.",
+ "frenchFontType":3,
+ "italianText":"Gli oggetti scompaiono dopo poco tempo.",
+ "italianFontType":3,
+ "germanText":"Gegenstände verschwinden nach einer kurzen Weile.",
+ "germanFontType":3,
+ "spanishText":"Los objetos desaparecen tras un breve tiempo.",
+ "spanishFontType":3,
+ "chineseTText":"道具會在經過一定時間後消失",
+ "chineseTFontType":1,
+ "koreanText":"아이템은 일정 시간이 지나면 사라진다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips052",
+ "japaneseText":"「あそびかた」は「むずかしさをえらぶ」画面で、いつでも見直すことができる",
+ "englishUsText":"You can always check your controls at the\nSelect Difficulty screen.",
+ "englishUsFontType":3,
+ "frenchText":"Tu peux vérifier les commandes à partir\nde l'écran Choix de la difficulté.",
+ "frenchFontType":3,
+ "italianText":"Puoi consultare i comandi in ogni momento dalla\nschermata di selezione della difficoltà.",
+ "italianFontType":3,
+ "germanText":"Du kannst deine Steuerung jederzeit im\nSchwierig. wählen-Bildschirm überprüfen.",
+ "germanFontType":3,
+ "spanishText":"Puedes consultar los controles en cualquier\nmomento en la pantalla Elegir dificultad.",
+ "spanishFontType":3,
+ "chineseTText":"「玩法」可隨時在「選擇難度」的畫面下再次進行確認。",
+ "chineseTFontType":1,
+ "koreanText":"「플레이 방법」은 「난이도 선택」 화면에서\n언제든지 다시 볼 수 있다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips053",
+ "japaneseText":"COMの「むずかしさ」や「レベル」は自由にえらべる\n自分にあったCOMの設定をして対決してみよう!",
+ "englishUsText":"You can set the difficulty and level of the COM. Set the COM to match your skill and have at it!",
+ "englishUsFontType":3,
+ "frenchText":"Tu peux paramétrer la difficulté et le niveau de l'IA.\nDéfinis le niveau de l'IA par rapport au tien et lance-toi !",
+ "frenchFontType":3,
+ "italianText":"Puoi selezionare la difficoltà del COM in base \nalla tua abilità e cercare di migliorarti!",
+ "italianFontType":3,
+ "germanText":"Du kannst den COM-Schwierigkeitsgrad und die -Stufe einstellen. Passe den COM an und leg los!",
+ "germanFontType":3,
+ "spanishText":"Puedes configurar el nivel del ORD. ¡Configura el ORD según tu nivel de habilidad y dale!",
+ "spanishFontType":3,
+ "chineseTText":"自由選擇COM的「難度」及「等級」,\n以適合自己的COM設定進行對決吧!",
+ "chineseTFontType":1,
+ "koreanText":"COM의 「난이도」와 「레벨」은 자유롭게 고를 수 있다\n자신에게 맞는 COM을 설정해서 대결해보자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"com_name",
+ "japaneseText":"COM",
+ "englishUsText":"COM",
+ "englishUsFontType":3,
+ "frenchText":"ORDI",
+ "frenchFontType":3,
+ "italianText":"COM",
+ "italianFontType":3,
+ "germanText":"COM",
+ "germanFontType":3,
+ "spanishText":"ORD",
+ "spanishFontType":3,
+ "chineseTText":"COM",
+ "chineseTFontType":1,
+ "koreanText":"COM",
+ "koreanFontType":2
+ },
+ {
+ "key":"com_name_level1",
+ "japaneseText":"COM Lv.1",
+ "englishUsText":"COM Lv.1",
+ "englishUsFontType":3,
+ "frenchText":"IA Nv.1",
+ "frenchFontType":3,
+ "italianText":"COM livello 1",
+ "italianFontType":3,
+ "germanText":"COM St.1",
+ "germanFontType":3,
+ "spanishText":"Nivel del ORD 1",
+ "spanishFontType":3,
+ "chineseTText":"COM Lv.1",
+ "chineseTFontType":1,
+ "koreanText":"COM Lv.1",
+ "koreanFontType":2
+ },
+ {
+ "key":"com_name_level2",
+ "japaneseText":"COM Lv.2",
+ "englishUsText":"COM Lv.2",
+ "englishUsFontType":3,
+ "frenchText":"IA Nv.2",
+ "frenchFontType":3,
+ "italianText":"COM livello 2",
+ "italianFontType":3,
+ "germanText":"COM St.2",
+ "germanFontType":3,
+ "spanishText":"Nivel del ORD 2",
+ "spanishFontType":3,
+ "chineseTText":"COM Lv.2",
+ "chineseTFontType":1,
+ "koreanText":"COM Lv.2",
+ "koreanFontType":2
+ },
+ {
+ "key":"com_name_level3",
+ "japaneseText":"COM Lv.3",
+ "englishUsText":"COM Lv.3",
+ "englishUsFontType":3,
+ "frenchText":"IA Nv.3",
+ "frenchFontType":3,
+ "italianText":"COM livello 3",
+ "italianFontType":3,
+ "germanText":"COM St.3",
+ "germanFontType":3,
+ "spanishText":"Nivel del ORD 3",
+ "spanishFontType":3,
+ "chineseTText":"COM Lv.3",
+ "chineseTFontType":1,
+ "koreanText":"COM Lv.3",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_sortfilter_add_txt",
+ "japaneseText":"※むずかしさを「ぜんぶ」にしていると「ならび順」はえらべません",
+ "englishUsText":"*Cannot select Sort type when difficulty is set to All.",
+ "englishUsFontType":3,
+ "frenchText":"*Ordre indisponible avec la difficulté réglée sur Tout.",
+ "frenchFontType":3,
+ "italianText":"*Impossibile selezionare Ordine se la difficoltà è impostata su Tutto.",
+ "italianFontType":3,
+ "germanText":"*Sortierung und Abschluss-Status nicht wählbar bei \"Schwierigkeitsgrad - Alle\".",
+ "germanFontType":3,
+ "spanishText":"*No puedes seleccionar Orden cuando la dificultad es Todo.",
+ "spanishFontType":3,
+ "chineseTText":"※若是將難度設為「全部」,將無法選擇「排序順序」",
+ "chineseTFontType":1,
+ "koreanText":"※난이도를 「전부」로 하면 「정렬 순서」는 고를 수 없습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_couse_all_txt",
+ "japaneseText":"むずかしさをえらぶ設定\n",
+ "englishUsText":"Sort by Difficulty",
+ "englishUsFontType":3,
+ "frenchText":"Trier par difficulté",
+ "frenchFontType":3,
+ "italianText":"Ordina per difficoltà",
+ "italianFontType":3,
+ "germanText":"Nach Schwierigkeitsgrad sortieren",
+ "germanFontType":3,
+ "spanishText":"Ordenar por dificultad",
+ "spanishFontType":3,
+ "chineseTText":"選擇難度設定",
+ "chineseTFontType":1,
+ "koreanText":"난이도를 고르는 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_select_cpu_course",
+ "japaneseText":"COMのむずかしさを\nえらんでね",
+ "englishUsText":"Choose the COM\ndifficulty!",
+ "englishUsFontType":3,
+ "frenchText":"Choisis la difficulté de l'IA !",
+ "frenchFontType":3,
+ "italianText":"Seleziona la difficoltà\nCOM!",
+ "italianFontType":3,
+ "germanText":"Wähle den COM\n-Schwierigkeitsgrad!",
+ "germanFontType":3,
+ "spanishText":"¡Elige la dificultad\ndel rival!",
+ "spanishFontType":3,
+ "chineseTText":"請選擇COM的難度",
+ "chineseTFontType":1,
+ "koreanText":"COM의 난이도를\n선택해줘",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_select_cpu_level",
+ "japaneseText":"COMレベル",
+ "englishUsText":"COM Level",
+ "englishUsFontType":3,
+ "frenchText":"Niveau de l'IA",
+ "frenchFontType":3,
+ "italianText":"Difficoltà COM",
+ "italianFontType":3,
+ "germanText":"COM-Stufe",
+ "germanFontType":3,
+ "spanishText":"Nivel del ORD",
+ "spanishFontType":3,
+ "chineseTText":"COM等級",
+ "chineseTFontType":1,
+ "koreanText":"COM 레벨",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_select_asobikata",
+ "japaneseText":"あそびかた",
+ "englishUsText":"Tutorial",
+ "englishUsFontType":3,
+ "frenchText":"Didacticiel",
+ "frenchFontType":3,
+ "italianText":"Tutorial",
+ "italianFontType":3,
+ "germanText":"Tutorial",
+ "germanFontType":3,
+ "spanishText":"Tutorial",
+ "spanishFontType":3,
+ "chineseTText":"玩法",
+ "chineseTFontType":1,
+ "koreanText":"플레이 방법",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_title01",
+ "japaneseText":"演奏してアタック!",
+ "englishUsText":"Hit Notes to Attack!",
+ "englishUsFontType":3,
+ "frenchText":"Frappe des notes pour attaquer !",
+ "frenchFontType":3,
+ "italianText":"Colpisci le note per attaccare!",
+ "italianFontType":3,
+ "germanText":"Treffe Noten, um anzugreifen!",
+ "germanFontType":3,
+ "spanishText":"¡Acierta notas para atacar!",
+ "spanishFontType":3,
+ "chineseTText":"用演奏進行攻擊!",
+ "chineseTFontType":1,
+ "koreanText":"연주해서 공격!",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_title02",
+ "japaneseText":"めざせK.O.!",
+ "englishUsText":"Aim for a KO!",
+ "englishUsFontType":3,
+ "frenchText":"Vise bien pour faire un K.-O.",
+ "frenchFontType":3,
+ "italianText":"Metti KO l'avversario!",
+ "italianFontType":3,
+ "germanText":"Ziele auf ein KO ab!",
+ "germanFontType":3,
+ "spanishText":"¡A por el KO!",
+ "spanishFontType":3,
+ "chineseTText":"目標為大勝對手!",
+ "chineseTFontType":1,
+ "koreanText":"노려라 K.O.!",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_title03",
+ "japaneseText":"体力勝負!",
+ "englishUsText":"Stamina Battle!",
+ "englishUsFontType":3,
+ "frenchText":"Bataille d'endurance !",
+ "frenchFontType":3,
+ "italianText":"Scontro di vigore!",
+ "italianFontType":3,
+ "germanText":"Ausdauerkampf!",
+ "germanFontType":3,
+ "spanishText":"¡Batalla de resistencia!",
+ "spanishFontType":3,
+ "chineseTText":"體力對決!",
+ "chineseTFontType":1,
+ "koreanText":"체력 대결!",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_title04",
+ "japaneseText":"アイテム音符をたたこう!",
+ "englishUsText":"Hit Item Notes!",
+ "englishUsFontType":3,
+ "frenchText":"Frappe des notes d'objet !",
+ "frenchFontType":3,
+ "italianText":"Colpisci le note oggetto!",
+ "italianFontType":3,
+ "germanText":"Treffe Gegenstands-Noten!",
+ "germanFontType":3,
+ "spanishText":"¡Acierta notas con objetos!",
+ "spanishFontType":3,
+ "chineseTText":"敲打道具音符!",
+ "chineseTFontType":1,
+ "koreanText":"아이템 음표를 치자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_title05",
+ "japaneseText":"アイテムリスト①",
+ "englishUsText":"Item List ①",
+ "englishUsFontType":3,
+ "frenchText":"Liste d'objets ①",
+ "frenchFontType":3,
+ "italianText":"Elenco oggetti ①",
+ "italianFontType":3,
+ "germanText":"Gegenstandsliste ①",
+ "germanFontType":3,
+ "spanishText":"Lista de objetos ①",
+ "spanishFontType":3,
+ "chineseTText":"道具列表①",
+ "chineseTFontType":1,
+ "koreanText":"아이템 리스트①",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_title06",
+ "japaneseText":"アイテムリスト②",
+ "englishUsText":"Item List ②",
+ "englishUsFontType":3,
+ "frenchText":"Liste d'objets ②",
+ "frenchFontType":3,
+ "italianText":"Elenco oggetti ②",
+ "italianFontType":3,
+ "germanText":"Gegenstandsliste ②",
+ "germanFontType":3,
+ "spanishText":"Lista de objetos ②",
+ "spanishFontType":3,
+ "chineseTText":"道具列表②",
+ "chineseTFontType":1,
+ "koreanText":"아이템 리스트②",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_title07",
+ "japaneseText":"アイテムリスト③",
+ "englishUsText":"Item List ③",
+ "englishUsFontType":3,
+ "frenchText":"Liste d'objets ③",
+ "frenchFontType":3,
+ "italianText":"Elenco oggetti ③",
+ "italianFontType":3,
+ "germanText":"Gegenstandsliste ③",
+ "germanFontType":3,
+ "spanishText":"Lista de objetos ③",
+ "spanishFontType":3,
+ "chineseTText":"道具列表③",
+ "chineseTFontType":1,
+ "koreanText":"아이템 리스트③",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_title08",
+ "japaneseText":"「あそびかた」は見直せるよ!",
+ "englishUsText":"You can check the controls again!",
+ "englishUsFontType":3,
+ "frenchText":"Vérifie à nouveau les commandes !",
+ "frenchFontType":3,
+ "italianText":"Puoi controllare di nuovo i comandi!",
+ "italianFontType":3,
+ "germanText":"Du kannst die Steuerung nochmal überprüfen!",
+ "germanFontType":3,
+ "spanishText":"¡Puedes volver a consultar los controles!",
+ "spanishFontType":3,
+ "chineseTText":"重新確認「玩法」!",
+ "chineseTFontType":1,
+ "koreanText":"「플레이 방법」은 다시 볼 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_page01",
+ "japaneseText":"演奏していると、太鼓パワーがたまり、「100%」になると相手にアタック!\n「良」でたたくと太鼓パワーがたまりやすいよ!\n",
+ "englishUsText":"Your Drum Power builds up while you play, and attacks your opponent once it hits 100%!\nIt'll build up faster if you get lots of GOODs!\n",
+ "englishUsFontType":3,
+ "frenchText":"Ta force de tambour augmente en jouant et permet d'attaquer une fois au maximum !\nMarque plein de BONS pour qu'elle augmente plus vite !",
+ "frenchFontType":3,
+ "italianText":"Aumenta la tua Potenza Tamburo giocando e quando raggiunge il 100% attacca l'avversario!\nSe ottieni molti BUONO aumenterà più in fretta!\n",
+ "italianFontType":3,
+ "germanText":"Deine Trommel-Power erhöht sich, während du spielst, und greift deinen Gegner an, sobald sie 100% erreicht!\nSie baut sich schneller auf, wenn du viele GUTs erzielst!",
+ "germanFontType":3,
+ "spanishText":"Mientras juegas acumulas potencia de tambor y, cuando alcances el 100%, atacarás al adversario.\n¡Si consigues muchos BIENES podrás hacerlo antes!\n",
+ "spanishFontType":3,
+ "chineseTText":"進行演奏累積太鼓POWER,當達到「100%」就會朝對手發動攻擊!\n敲出「良」就會更容易累積太鼓POWER!",
+ "chineseTFontType":1,
+ "koreanText":"연주하고 있으면 태고 파워가 쌓이고 「100%」가 되면 상대를 공격!\n「얼쑤」를 치면 태고 파워가 잘 쌓여!",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_page02",
+ "japaneseText":"いっぱいアタックして相手の体力をゼロにしよう!\n\n",
+ "englishUsText":"Attack your opponent as much as you can to reduce their HP to zero!\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Attaque l'adversaire le plus possible pour réduire ses PV à zéro !",
+ "frenchFontType":3,
+ "italianText":"Attacca l'avversario più volte che puoi per ridurre a zero i suoi PS!\n\n",
+ "italianFontType":3,
+ "germanText":"Greife deinen Gegner so oft wie möglich an, um seine KP auf Null zu reduzieren!\n\n",
+ "germanFontType":3,
+ "spanishText":"¡Ataca a tu oponente tanto como puedas para reducir su salud a cero!\n\n",
+ "spanishFontType":3,
+ "chineseTText":"不斷攻擊讓對手的體力歸零!",
+ "chineseTFontType":1,
+ "koreanText":"많이 공격해서 상대의 체력을 0으로 만들자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_page03",
+ "japaneseText":"演奏の終わりに、体力が多いと勝ち!\n\n",
+ "englishUsText":"Whoever has the most HP at the end of the song wins!\n\n",
+ "englishUsFontType":3,
+ "frenchText":"La personne avec le plus de PV en fin de chanson l'emportera !",
+ "frenchFontType":3,
+ "italianText":"Chi ha più PS al termine del brano, vince!\n\n",
+ "italianFontType":3,
+ "germanText":"Wer auch immer die meisten KP am Ende des Liedes hat, gewinnt!\n\n",
+ "germanFontType":3,
+ "spanishText":"¡Gana el que tenga más salud al terminar la canción!\n\n",
+ "spanishFontType":3,
+ "chineseTText":"演奏結束時,體力較多的一方獲勝!",
+ "chineseTFontType":1,
+ "koreanText":"연주가 끝났을 때 체력이 많으면 승리!",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_page04",
+ "japaneseText":"アイテム音符は大ぎゃくてんのチャンス!\n\n",
+ "englishUsText":"Item notes are your chance to turn the tide!\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Les notes d'objet te permettent de renverser le cours de la bataille !",
+ "frenchFontType":3,
+ "italianText":"Con le note oggetto puoi cambiare le sorti della partita!\n\n",
+ "italianFontType":3,
+ "germanText":"Gegenstands-Noten sind deine Chance, das Blatt zu wenden!\n\n",
+ "germanFontType":3,
+ "spanishText":"¡Aprovecha las notas con objetos para cambiar las tornas!\n\n",
+ "spanishFontType":3,
+ "chineseTText":"道具音符是逆轉戰局的好機會!",
+ "chineseTFontType":1,
+ "koreanText":"아이템 음표는 대역전의 찬스!",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_page08",
+ "japaneseText":"「むずかしさをえらぶ」画面で、あとで何回でも見直せるよ!\n\n",
+ "englishUsText":"You can check them whenever you want at the Select Difficulty screen!\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Tu peux vérifier les commandes à tout moment à partir de l'écran Choix de la difficulté !",
+ "frenchFontType":3,
+ "italianText":"Puoi consultarli quando vuoi dalla schermata di selezione della difficoltà!\n\n",
+ "italianFontType":3,
+ "germanText":"Du kannst deine Steuerung jederzeit im \"Schwierig. wählen\"-Bildschirm überprüfen!\n",
+ "germanFontType":3,
+ "spanishText":"¡Puedes consultar los controles siempre que quieras en la pantalla Elegir dificultad!\n\n",
+ "spanishFontType":3,
+ "chineseTText":"之後可隨時在「選擇難度」畫面下確認!",
+ "chineseTFontType":1,
+ "koreanText":"「난이도 선택」 화면에서 나중에 몇 번이든 다시 볼 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_name01",
+ "japaneseText":"太鼓ブースト",
+ "englishUsText":"Drum Boost",
+ "englishUsFontType":3,
+ "frenchText":"Bonus tambour",
+ "frenchFontType":3,
+ "italianText":"Potenziamento Tamburo",
+ "italianFontType":3,
+ "germanText":"Trommel-Boost",
+ "germanFontType":3,
+ "spanishText":"Potenciador de tambor",
+ "spanishFontType":3,
+ "chineseTText":"太鼓爆發",
+ "chineseTFontType":1,
+ "koreanText":"태고 부스트",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_name02",
+ "japaneseText":"ドンカツ砲",
+ "englishUsText":"Don/Ka Cannon",
+ "englishUsFontType":3,
+ "frenchText":"Canon DON/KA",
+ "frenchFontType":3,
+ "italianText":"Cannone Don/Ka",
+ "italianFontType":3,
+ "germanText":"Don/Ka Cannon",
+ "germanFontType":3,
+ "spanishText":"Cañón Don/Ka",
+ "spanishFontType":3,
+ "chineseTText":"咚咔砲",
+ "chineseTFontType":1,
+ "koreanText":"쿵딱포",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_name03",
+ "japaneseText":"超ドンカツ砲",
+ "englishUsText":"Super Don/Ka Cannon",
+ "englishUsFontType":3,
+ "frenchText":"Super canon DON/KA",
+ "frenchFontType":3,
+ "italianText":"Super cannone Don/Ka",
+ "italianFontType":3,
+ "germanText":"Super Don/Ka Cannon",
+ "germanFontType":3,
+ "spanishText":"Supercañón Don/Ka",
+ "spanishFontType":3,
+ "chineseTText":"超咚咔砲",
+ "chineseTFontType":1,
+ "koreanText":"초 쿵딱포",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_name04",
+ "japaneseText":"ハズレ",
+ "englishUsText":"Try Again",
+ "englishUsFontType":3,
+ "frenchText":"Réessaie",
+ "frenchFontType":3,
+ "italianText":"Riprova",
+ "italianFontType":3,
+ "germanText":"Nochmal",
+ "germanFontType":3,
+ "spanishText":"Reintentar",
+ "spanishFontType":3,
+ "chineseTText":"揮空",
+ "chineseTFontType":1,
+ "koreanText":"꽝",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_name05",
+ "japaneseText":"ニセ音符",
+ "englishUsText":"Fake Note",
+ "englishUsFontType":3,
+ "frenchText":"Fausse note",
+ "frenchFontType":3,
+ "italianText":"Nota falsa",
+ "italianFontType":3,
+ "germanText":"Falsche Note",
+ "germanFontType":3,
+ "spanishText":"Nota falsa",
+ "spanishFontType":3,
+ "chineseTText":"假音符",
+ "chineseTFontType":1,
+ "koreanText":"가짜 음표",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_name06",
+ "japaneseText":"くらやみ",
+ "englishUsText":"Dark",
+ "englishUsFontType":3,
+ "frenchText":"Noir",
+ "frenchFontType":3,
+ "italianText":"Buio",
+ "italianFontType":3,
+ "germanText":"Dunkel",
+ "germanFontType":3,
+ "spanishText":"Oscuridad",
+ "spanishFontType":3,
+ "chineseTText":"一片漆黑",
+ "chineseTFontType":1,
+ "koreanText":"어둠",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_name07",
+ "japaneseText":"ばいそく",
+ "englishUsText":"2x Speed",
+ "englishUsFontType":3,
+ "frenchText":"Vitesse x2",
+ "frenchFontType":3,
+ "italianText":"Velocità x2",
+ "italianFontType":3,
+ "germanText":"Tempo x2",
+ "germanFontType":3,
+ "spanishText":"Velocidad x2",
+ "spanishFontType":3,
+ "chineseTText":"倍速",
+ "chineseTFontType":1,
+ "koreanText":"배속",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_name08",
+ "japaneseText":"さんばいそく",
+ "englishUsText":"3x Speed",
+ "englishUsFontType":3,
+ "frenchText":"Vitesse x3",
+ "frenchFontType":3,
+ "italianText":"Velocità x3",
+ "italianFontType":3,
+ "germanText":"Tempo x3",
+ "germanFontType":3,
+ "spanishText":"Velocidad x3",
+ "spanishFontType":3,
+ "chineseTText":"三倍速",
+ "chineseTFontType":1,
+ "koreanText":"세배속",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_name09",
+ "japaneseText":"でたらめ",
+ "englishUsText":"Haphazard",
+ "englishUsFontType":3,
+ "frenchText":"Au hasard",
+ "frenchFontType":3,
+ "italianText":"Imprevedibile",
+ "italianFontType":3,
+ "germanText":"Wahllos",
+ "germanFontType":3,
+ "spanishText":"Caótico",
+ "spanishFontType":3,
+ "chineseTText":"隨機",
+ "chineseTFontType":1,
+ "koreanText":"대충",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_name10",
+ "japaneseText":"ネコと杓子",
+ "englishUsText":"Cat and Shaxy",
+ "englishUsFontType":3,
+ "frenchText":"Chat et Shaxy",
+ "frenchFontType":3,
+ "italianText":"Neko e Shaxy",
+ "italianFontType":3,
+ "germanText":"Katze und Shaxy",
+ "germanFontType":3,
+ "spanishText":"Gato y Shaxy",
+ "spanishFontType":3,
+ "chineseTText":"貓與飯匙",
+ "chineseTFontType":1,
+ "koreanText":"고양이와 주걱",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_name11",
+ "japaneseText":"お面小僧",
+ "englishUsText":"Masked Kid",
+ "englishUsFontType":3,
+ "frenchText":"Enfant masqué",
+ "frenchFontType":3,
+ "italianText":"Ragazzo mascherato",
+ "italianFontType":3,
+ "germanText":"Masken-Kind",
+ "germanFontType":3,
+ "spanishText":"Enmascarado",
+ "spanishFontType":3,
+ "chineseTText":"面具小僧",
+ "chineseTFontType":1,
+ "koreanText":"가면 도령",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_name12",
+ "japaneseText":"とらまい",
+ "englishUsText":"Tiger Mai",
+ "englishUsFontType":3,
+ "frenchText":"Tigre Mai",
+ "frenchFontType":3,
+ "italianText":"Tigre Mai",
+ "italianFontType":3,
+ "germanText":"Tiger Mai",
+ "germanFontType":3,
+ "spanishText":"Tigre Mai",
+ "spanishFontType":3,
+ "chineseTText":"虎舞",
+ "chineseTFontType":1,
+ "koreanText":"호랑무",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_name13",
+ "japaneseText":"和田イヌ",
+ "englishUsText":"Dog Wada",
+ "englishUsFontType":3,
+ "frenchText":"Chien Wada",
+ "frenchFontType":3,
+ "italianText":"Wada Cane",
+ "italianFontType":3,
+ "germanText":"Hund Wada",
+ "germanFontType":3,
+ "spanishText":"Perro Wada",
+ "spanishFontType":3,
+ "chineseTText":"和田犬",
+ "chineseTFontType":1,
+ "koreanText":"와다 이누",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_text01",
+ "japaneseText":"太鼓パワーがたまりやすくなる",
+ "englishUsText":"Build Drum Power faster",
+ "englishUsFontType":3,
+ "frenchText":"Augmente plus vite ta force de tambour",
+ "frenchFontType":3,
+ "italianText":"Aumenta la Potenza Tamburo più velocemente",
+ "italianFontType":3,
+ "germanText":"Zum schnelleren Aufbau von Trommel-Power",
+ "germanFontType":3,
+ "spanishText":"Acumula potencia de tambor más rápido.",
+ "spanishFontType":3,
+ "chineseTText":"較容易累積太鼓POWER",
+ "chineseTFontType":1,
+ "koreanText":"태고 파워가 잘 쌓인다",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_text02",
+ "japaneseText":"太鼓パワーを100%ためると、2倍の強さでアタックする",
+ "englishUsText":"Attack at 2x strength when Drum Power hits 100%",
+ "englishUsFontType":3,
+ "frenchText":"Attaque x2 quand la force du tambour est au max",
+ "frenchFontType":3,
+ "italianText":"Attacca al doppio della forza con Potenza Tamburo al 100%",
+ "italianFontType":3,
+ "germanText":"Greife mit Stärke x2 an, wenn deine Trommel-Power 100% erreicht",
+ "germanFontType":3,
+ "spanishText":"Doble fuerza si la potencia de tambor está al 100%.",
+ "spanishFontType":3,
+ "chineseTText":"當太鼓POWER累積到100%,會以2倍的強度進行攻擊",
+ "chineseTFontType":1,
+ "koreanText":"태고 파워를 100% 모으면, 2배의 힘으로 공격한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_text03",
+ "japaneseText":"太鼓パワーを100%ためると、3倍の強さでアタックする",
+ "englishUsText":"Attack at 3x strength when Drum Power hits 100%",
+ "englishUsFontType":3,
+ "frenchText":"Attaque x3 quand la force du tambour est au max",
+ "frenchFontType":3,
+ "italianText":"Attacca al triplo della forza con Potenza Tamburo al 100%",
+ "italianFontType":3,
+ "germanText":"Greife mit Stärke x3 an, wenn deine Trommel-Power 100% erreicht",
+ "germanFontType":3,
+ "spanishText":"Triple fuerza si la potencia de tambor está al 100%.",
+ "spanishFontType":3,
+ "chineseTText":"當太鼓POWER累積到100%,會以3倍的強度進行攻擊",
+ "chineseTFontType":1,
+ "koreanText":"태고 파워를 100% 모으면, 3배의 힘으로 공격한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_text04",
+ "japaneseText":"何も起こらない",
+ "englishUsText":"Nothing happens",
+ "englishUsFontType":3,
+ "frenchText":"Rien ne se passe",
+ "frenchFontType":3,
+ "italianText":"Nessun effetto",
+ "italianFontType":3,
+ "germanText":"Nichts passiert",
+ "germanFontType":3,
+ "spanishText":"No pasa nada.",
+ "spanishFontType":3,
+ "chineseTText":"敲打沒有任何效果",
+ "chineseTFontType":1,
+ "koreanText":"아무 일도 일어나지 않는다",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_text05",
+ "japaneseText":"相手の譜面にたたけないニセモノの音符が出てくる",
+ "englishUsText":"Fake notes that can't be hit appear in opponent's song",
+ "englishUsFontType":3,
+ "frenchText":"Des fausses notes intouchables perturbent la chanson adverse",
+ "frenchFontType":3,
+ "italianText":"Nel brano dell'avversario appaiono note false non colpibili",
+ "italianFontType":3,
+ "germanText":"Falsche Noten, die der Gegner nicht treffen kann, tauchen auf",
+ "germanFontType":3,
+ "spanishText":"Notas falsas que el adversario no puede acertar",
+ "spanishFontType":3,
+ "chineseTText":"讓對手的譜面出現不能打的假音符",
+ "chineseTFontType":1,
+ "koreanText":"상대의 악보에 칠 수 없는 가짜 음표가 나타난다",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_text06",
+ "japaneseText":"相手の音符が見えなくなる",
+ "englishUsText":"Opponent's notes are hidden",
+ "englishUsFontType":3,
+ "frenchText":"Les notes adverses sont masquées",
+ "frenchFontType":3,
+ "italianText":"Nasconde le note dell'avversario",
+ "italianFontType":3,
+ "germanText":"Versteckt die Noten des Gegners",
+ "germanFontType":3,
+ "spanishText":"Las notas del adversario están escondidas.",
+ "spanishFontType":3,
+ "chineseTText":"讓對手的音符變得看不見",
+ "chineseTFontType":1,
+ "koreanText":"상대의 음표가 보이지 않게 된다",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_text07",
+ "japaneseText":"相手の譜面の速さが2倍になる",
+ "englishUsText":"Opponent's song goes by twice as fast",
+ "englishUsFontType":3,
+ "frenchText":"La chanson adverse va deux fois plus vite",
+ "frenchFontType":3,
+ "italianText":"Raddoppia la velocità delle note dell'avversario",
+ "italianFontType":3,
+ "germanText":"Lied des Gegners spielt in doppelter Geschwindigkeit ab",
+ "germanFontType":3,
+ "spanishText":"La canción del adversario va el doble de rápido.",
+ "spanishFontType":3,
+ "chineseTText":"讓對手的譜面速度變成2倍",
+ "chineseTFontType":1,
+ "koreanText":"상대의 악보 속도가 2배가 된다",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_text08",
+ "japaneseText":"相手の譜面の速さが3倍になる",
+ "englishUsText":"Opponent's song goes by three times as fast",
+ "englishUsFontType":3,
+ "frenchText":"La chanson adverse va trois fois plus vite",
+ "frenchFontType":3,
+ "italianText":"Triplica la velocità delle note dell'avversario",
+ "italianFontType":3,
+ "germanText":"Lied des Gegners spielt in dreifacher Geschwindigkeit ab",
+ "germanFontType":3,
+ "spanishText":"La canción del adversario va el triple de rápido.",
+ "spanishFontType":3,
+ "chineseTText":"讓對手的譜面速度變成3倍",
+ "chineseTFontType":1,
+ "koreanText":"상대의 악보 속도가 3배가 된다",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_text09",
+ "japaneseText":"相手の「ドン」「カッ」音符が、でたらめに入れかわる",
+ "englishUsText":"Opponent's Don and Ka notes switch places haphazardly",
+ "englishUsFontType":3,
+ "frenchText":"Les notes adverses DON et KA s'inversent aléatoirement",
+ "frenchFontType":3,
+ "italianText":"Le note Don e Ka dell'avversario cambiano in modo imprevedibile",
+ "italianFontType":3,
+ "germanText":"Don und Ka-Noten des Gegners tauschen wahllos die Plätze",
+ "germanFontType":3,
+ "spanishText":"Las notas Don y Ka se intercambian aleatoriamente.",
+ "spanishFontType":3,
+ "chineseTText":"讓對手的「咚」「咔」音符,變為隨機編排",
+ "chineseTFontType":1,
+ "koreanText":"상대의 「쿵」「딱」 음표를 엉뚱하게 바꾼다",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_text10",
+ "japaneseText":"相手の譜面をかくすように、左右にゴロゴロころげまわる",
+ "englishUsText":"Cat and Shaxy roll around, covering up opponent's song",
+ "englishUsFontType":3,
+ "frenchText":"Chat et Shaxy font des roulades et couvrent la chanson adverse",
+ "frenchFontType":3,
+ "italianText":"Neko e Shaxy rotolano coprendo il brano dell'avversario",
+ "italianFontType":3,
+ "germanText":"Katze und Shaxy rollen umher und verdecken das Lied des Gegners",
+ "germanFontType":3,
+ "spanishText":"Gato y Shaxy hacen la croqueta y tapan la canción del adversario.",
+ "spanishFontType":3,
+ "chineseTText":"左右來回滾動,擋住對手的譜面",
+ "chineseTFontType":1,
+ "koreanText":"상대의 악보를 가리듯 좌우로 데굴데굴 구른다",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_text11",
+ "japaneseText":"相手のワクをかくすように、ぐるぐるダンスをする",
+ "englishUsText":"Masked Kid dances around hiding opponent's frame",
+ "englishUsFontType":3,
+ "frenchText":"L'enfant masqué danse en cachant le cadre adverse",
+ "frenchFontType":3,
+ "italianText":"Il ragazzo mascherato balla nascondendo la linea dell'avversario",
+ "italianFontType":3,
+ "germanText":"Masken-Kind tanzt umher und versteckt den Rahmen des Gegners",
+ "germanFontType":3,
+ "spanishText":"Enmascarado hace un baile y tapa el marco del adversario.",
+ "spanishFontType":3,
+ "chineseTText":"跳起妞妞舞,擋住對手的框框",
+ "chineseTFontType":1,
+ "koreanText":"상대의 북을 가리듯 빙글빙글 춤을 춘다",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_text12",
+ "japaneseText":"相手の譜面をかくすように、くねくねダンスでとびまわる",
+ "englishUsText":"Tiger Mai dances around hiding opponent's song",
+ "englishUsFontType":3,
+ "frenchText":"Le tigre Mai danse en cachant la chanson adverse",
+ "frenchFontType":3,
+ "italianText":"La tigre Mai balla nascondendo il brano dell'avversario",
+ "italianFontType":3,
+ "germanText":"Tiger Mai tanzt umher und versteckt das Lied des Gegners",
+ "germanFontType":3,
+ "spanishText":"Tigre Mai hace un baile y tapa la canción del adversario.",
+ "spanishFontType":3,
+ "chineseTText":"以翻滾舞來回跳躍,擋住對手的譜面",
+ "chineseTFontType":1,
+ "koreanText":"상대의 악보를 가리듯 구불구불 춤추며 뛰어다닌다",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_tutorial_item_text13",
+ "japaneseText":"相手の譜面をかくすように、ほうきでホコリをまきちらす",
+ "englishUsText":"Dog Wada sweeps up dust, hiding opponent's song",
+ "englishUsFontType":3,
+ "frenchText":"Le chien Wada creuse la terre qui cache la chanson adverse",
+ "frenchFontType":3,
+ "italianText":"Wada Cane solleva la polvere e nasconde il brano dell'avversario",
+ "italianFontType":3,
+ "germanText":"Hund Wada fegt den Staub und versteckt das Lied des Gegners",
+ "germanFontType":3,
+ "spanishText":"Perro Wada levanta una polvareda que tapa la canción del adversario.",
+ "spanishFontType":3,
+ "chineseTText":"用掃把掀起灰塵,擋住對手的譜面",
+ "chineseTFontType":1,
+ "koreanText":"상대의 악보를 가리듯 빗자루로 먼지를 흩뿌린다",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_result_msg_vs_exwin1_don",
+ "japaneseText":"敵なしだドーン!",
+ "englishUsText":"I'm unstoppable!",
+ "englishUsFontType":3,
+ "frenchText":"Rien ne peut m'arrêter !",
+ "frenchFontType":3,
+ "italianText":"Sono inarrestabile!",
+ "italianFontType":3,
+ "germanText":"Ich bin unaufhaltsam!",
+ "germanFontType":3,
+ "spanishText":"¡Soy imparable!",
+ "spanishFontType":3,
+ "chineseTText":"所向無敵咚~!",
+ "chineseTFontType":1,
+ "koreanText":"적이 없다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_result_msg_vs_exwin2_don",
+ "japaneseText":"最強だドーン!",
+ "englishUsText":"I'm the best!",
+ "englishUsFontType":3,
+ "frenchText":"Je suis au top !",
+ "frenchFontType":3,
+ "italianText":"Sono troppo forte!",
+ "italianFontType":3,
+ "germanText":"Ich bin der Beste!",
+ "germanFontType":3,
+ "spanishText":"¡Soy insuperable!",
+ "spanishFontType":3,
+ "chineseTText":"你是最強的咚~!",
+ "chineseTFontType":1,
+ "koreanText":"최강이다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_result_msg_vs_win1_don",
+ "japaneseText":"バッチリだド~ン!",
+ "englishUsText":"That was perfect!",
+ "englishUsFontType":3,
+ "frenchText":"C'était parfait !",
+ "frenchFontType":3,
+ "italianText":"È stato perfetto!",
+ "italianFontType":3,
+ "germanText":"Das war perfekt!",
+ "germanFontType":3,
+ "spanishText":"¡Ha sido perfecto!",
+ "spanishFontType":3,
+ "chineseTText":"很完美咚~!",
+ "chineseTFontType":1,
+ "koreanText":"완벽하다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_result_msg_vs_win2_don",
+ "japaneseText":"やったド~ン!",
+ "englishUsText":"I did it!",
+ "englishUsFontType":3,
+ "frenchText":"J'ai réussi !",
+ "frenchFontType":3,
+ "italianText":"Ce l'ho fatta!",
+ "italianFontType":3,
+ "germanText":"Geschafft!",
+ "germanFontType":3,
+ "spanishText":"¡Lo logré!",
+ "spanishFontType":3,
+ "chineseTText":"成功了~咚!",
+ "chineseTFontType":1,
+ "koreanText":"해냈다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_result_msg_vs_lose1_don",
+ "japaneseText":"次は負けないドン・・・",
+ "englishUsText":"I'll win next time...",
+ "englishUsFontType":3,
+ "frenchText":"Je gagnerai la prochaine fois...",
+ "frenchFontType":3,
+ "italianText":"La prossima volta vincerò io...",
+ "italianFontType":3,
+ "germanText":"Nächstes Mal gewinne ich...",
+ "germanFontType":3,
+ "spanishText":"La próxima ganaré yo...",
+ "spanishFontType":3,
+ "chineseTText":"下次不會輸的咚・・・",
+ "chineseTFontType":1,
+ "koreanText":"다음엔 안 질 거다쿵…",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_result_msg_vs_draw1_don",
+ "japaneseText":"次で決着つけるドン",
+ "englishUsText":"I'll settle this next time.",
+ "englishUsFontType":3,
+ "frenchText":"Ce sera différent la prochaine fois.",
+ "frenchFontType":3,
+ "italianText":"Non perderò di nuovo.",
+ "italianFontType":3,
+ "germanText":"Das klären wir nächstes Mal.",
+ "germanFontType":3,
+ "spanishText":"Seguro que gano la revancha.",
+ "spanishFontType":3,
+ "chineseTText":"下次要一決勝負咚",
+ "chineseTFontType":1,
+ "koreanText":"다음에 결판을 낼 거다쿵",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_result_msg_vs_draw2_don",
+ "japaneseText":"引き分けだドン",
+ "englishUsText":"It's a tie.",
+ "englishUsFontType":3,
+ "frenchText":"Match nul.",
+ "frenchFontType":3,
+ "italianText":"È un pareggio.",
+ "italianFontType":3,
+ "germanText":"Unentschieden.",
+ "germanFontType":3,
+ "spanishText":"Empate.",
+ "spanishFontType":3,
+ "chineseTText":"平手咚",
+ "chineseTFontType":1,
+ "koreanText":"무승부다쿵",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_029_miraikomachi",
+ "japaneseText":"ミライ小町",
+ "englishUsText":"Mirai Komachi",
+ "englishUsFontType":3,
+ "frenchText":"Mirai Komachi",
+ "frenchFontType":3,
+ "italianText":"Mirai Komachi",
+ "italianFontType":3,
+ "germanText":"Mirai Komachi",
+ "germanFontType":3,
+ "spanishText":"Mirai Komachi",
+ "spanishFontType":3,
+ "chineseTText":"Mirai Komachi",
+ "chineseTFontType":1,
+ "koreanText":"Mirai Komachi",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_029_miraikomachi",
+ "japaneseText":"世界中の人たちを\n笑顔にしたいと願う未来型アイドル\nお祭り会場でも\n笑顔いっぱいでがんばります!\n\n\n",
+ "englishUsText":"A futuristic idol whose wish\nis to bring happiness to the\nentire world.\n\nShe'll make her start by\nfilling the festival hall\nwith smiles!",
+ "englishUsFontType":3,
+ "frenchText":"Star futuriste qui souhaite\nrépandre la joie\ndans le monde entier.\n\nElle va commencer\nen faisant sourire\ntoute l'assistance !",
+ "frenchFontType":3,
+ "italianText":"Idolo futurista che mira\na portare la felicità\nin tutto il mondo.\n\nDiventerà una star\nportando il sorriso\nsul volto di tutti i\nsuoi fan!",
+ "italianFontType":3,
+ "germanText":"Ein futuristisches Idol, die\nihr Glück in der gesamten\nWelt verbreiten will.\n\nSie fängt an, indem sie\ndie gesamte Festhalle\nzum Lächeln bringt!",
+ "germanFontType":3,
+ "spanishText":"Una estrella futurista\nque desea traer la paz\nal mundo entero.\n\n¡Hará su aparición\nllenando de sonrisas\nel escenario!",
+ "spanishFontType":3,
+ "chineseTText":"希望讓世界上的人們\n展露笑容的未來型偶像\n即使在祭典會場也帶\n著滿滿的笑容努力奮鬥著!\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"전 세계 사람들을\n웃게 하고 싶어 하는 미래형 아이돌\n축제장에서도\n미소 한가득 힘낼게요!\n\n\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_win_miraikomachi",
+ "japaneseText":"やりましたっ!",
+ "englishUsText":"I did it!",
+ "englishUsFontType":3,
+ "frenchText":"J'ai réussi !",
+ "frenchFontType":3,
+ "italianText":"Ce l'ho fatta!",
+ "italianFontType":3,
+ "germanText":"Geschafft!",
+ "germanFontType":3,
+ "spanishText":"¡Lo logré!",
+ "spanishFontType":3,
+ "chineseTText":"成功啦!",
+ "chineseTFontType":1,
+ "koreanText":"해냈어요!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_lose_miraikomachi",
+ "japaneseText":"ざんねんです!",
+ "englishUsText":"Oh, no!",
+ "englishUsFontType":3,
+ "frenchText":"Oh non !",
+ "frenchFontType":3,
+ "italianText":"Oh, no!",
+ "italianFontType":3,
+ "germanText":"Oh, nein!",
+ "germanFontType":3,
+ "spanishText":"¡Oh, no!",
+ "spanishFontType":3,
+ "chineseTText":"真可惜!",
+ "chineseTFontType":1,
+ "koreanText":"아까워요!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_draw_miraikomachi",
+ "japaneseText":"ひきわけです!",
+ "englishUsText":"We're tied!",
+ "englishUsFontType":3,
+ "frenchText":"Égalité !",
+ "frenchFontType":3,
+ "italianText":"Pareggio!",
+ "italianFontType":3,
+ "germanText":"Das war unentschieden!",
+ "germanFontType":3,
+ "spanishText":"¡Hemos empatado!",
+ "spanishFontType":3,
+ "chineseTText":"平手!",
+ "chineseTFontType":1,
+ "koreanText":"무승부예요!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_high_miraikomachi",
+ "japaneseText":"フルコンボ!やりました!",
+ "englishUsText":"A full Combo! All right!",
+ "englishUsFontType":3,
+ "frenchText":"Combo max ! Ça marche !",
+ "frenchFontType":3,
+ "italianText":"Un'unica combo! Grande!",
+ "italianFontType":3,
+ "germanText":"Eine komplette Kombo!\nKlasse!",
+ "germanFontType":3,
+ "spanishText":"¡Un combo completo!\n¡Toma ya!",
+ "spanishFontType":3,
+ "chineseTText":"全連段!成功啦!",
+ "chineseTFontType":1,
+ "koreanText":"풀 콤보! 해냈어요!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_low_miraikomachi",
+ "japaneseText":"次はがんばりましょう!",
+ "englishUsText":"You'll get it next time!",
+ "englishUsFontType":3,
+ "frenchText":"Tant pis pour toi !",
+ "frenchFontType":3,
+ "italianText":"Continua e ce la farai!",
+ "italianFontType":3,
+ "germanText":"Beim nächsten Mal!",
+ "germanFontType":3,
+ "spanishText":"¡La próxima vez\nlo conseguirás!",
+ "spanishFontType":3,
+ "chineseTText":"下次我會加把勁的!",
+ "chineseTFontType":1,
+ "koreanText":"다음에는 힘내요!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_high_miraikomachi",
+ "japaneseText":"おしい!もうすこしです!",
+ "englishUsText":"Eep! Not quite!",
+ "englishUsFontType":3,
+ "frenchText":"Aïe ! Pas tout à fait !",
+ "frenchFontType":3,
+ "italianText":"Mancava poco!",
+ "italianFontType":3,
+ "germanText":"Aaah! Nicht ganz!",
+ "germanFontType":3,
+ "spanishText":"¡Uy, casi!",
+ "spanishFontType":3,
+ "chineseTText":"好可惜!就差那麼一點!",
+ "chineseTFontType":1,
+ "koreanText":"아까워요! 조금만 더!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_low_miraikomachi",
+ "japaneseText":"ノルマクリア!成長してます!",
+ "englishUsText":"You're really coming along!",
+ "englishUsFontType":3,
+ "frenchText":"Tu t'en sors très bien !",
+ "frenchFontType":3,
+ "italianText":"Stai migliorando!",
+ "italianFontType":3,
+ "germanText":"Du wirst immer besser!",
+ "germanFontType":3,
+ "spanishText":"¡Lo vas pillando!",
+ "spanishFontType":3,
+ "chineseTText":"通關!我有在成長喔!",
+ "chineseTFontType":1,
+ "koreanText":"클리어 성공! 성장했어요!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_1_miraikomachi",
+ "japaneseText":"やりましたっ!",
+ "englishUsText":"I did it!",
+ "englishUsFontType":3,
+ "frenchText":"J'ai réussi !",
+ "frenchFontType":3,
+ "italianText":"Ce l'ho fatta!",
+ "italianFontType":3,
+ "germanText":"Geschafft!",
+ "germanFontType":3,
+ "spanishText":"¡Lo logré!",
+ "spanishFontType":3,
+ "chineseTText":"成功啦!",
+ "chineseTFontType":1,
+ "koreanText":"해냈어요!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_2_miraikomachi",
+ "japaneseText":"うん、まずまず!",
+ "englishUsText":"That'll do!",
+ "englishUsFontType":3,
+ "frenchText":"Ça ira !",
+ "frenchFontType":3,
+ "italianText":"Niente male!",
+ "italianFontType":3,
+ "germanText":"Das wird etwas!",
+ "germanFontType":3,
+ "spanishText":"¡No está mal!",
+ "spanishFontType":3,
+ "chineseTText":"嗯,還可以啦!",
+ "chineseTFontType":1,
+ "koreanText":"음, 그럭저럭!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_3_miraikomachi",
+ "japaneseText":"くやしいです!",
+ "englishUsText":"A bit embarrassing!",
+ "englishUsFontType":3,
+ "frenchText":"Oh, la honte !",
+ "frenchFontType":3,
+ "italianText":"Che imbarazzo!",
+ "italianFontType":3,
+ "germanText":"Irgendwie peinlich!",
+ "germanFontType":3,
+ "spanishText":"¡Puedes hacerlo mejor!",
+ "spanishFontType":3,
+ "chineseTText":"好不甘心啊!",
+ "chineseTFontType":1,
+ "koreanText":"분해요!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_4_miraikomachi",
+ "japaneseText":"めげずに挑戦しよ!",
+ "englishUsText":"Give it another shot!",
+ "englishUsFontType":3,
+ "frenchText":"Essaie à nouveau !",
+ "frenchFontType":3,
+ "italianText":"Provaci ancora!",
+ "italianFontType":3,
+ "germanText":"Versuch es nochmal!",
+ "germanFontType":3,
+ "spanishText":"¡Inténtalo otra vez!",
+ "spanishFontType":3,
+ "chineseTText":"我會不放棄繼續挑戰的!",
+ "chineseTFontType":1,
+ "koreanText":"기죽지 말고 도전하자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_mikudd",
+ "japaneseText":"ダンスロボットダンス",
+ "englishUsText":"Dance Robot Dance",
+ "englishUsFontType":3,
+ "frenchText":"Dance Robot Dance",
+ "frenchFontType":3,
+ "italianText":"Dance Robot Dance",
+ "italianFontType":3,
+ "germanText":"Dance Robot Dance",
+ "germanFontType":3,
+ "spanishText":"Dance Robot Dance",
+ "spanishFontType":3,
+ "chineseTText":"Dance Robot Dance",
+ "chineseTFontType":1,
+ "koreanText":"Dance Robot Dance",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mikudd",
+ "japaneseText":"ナユタン星人 feat.初音ミク 「戦闘摂理解析システム#コンパス」より",
+ "englishUsText":"Nayutan Seijin feat. HATSUNE MIKU",
+ "englishUsFontType":3,
+ "frenchText":"Nayutan Seijin feat. HATSUNE MIKU",
+ "frenchFontType":3,
+ "italianText":"Nayutan Seijin feat. HATSUNE MIKU",
+ "italianFontType":3,
+ "germanText":"Nayutan Seijin feat. HATSUNE MIKU",
+ "germanFontType":3,
+ "spanishText":"Nayutan Seijin feat. HATSUNE MIKU",
+ "spanishFontType":3,
+ "chineseTText":"Nayutan星人feat.初音未來",
+ "chineseTFontType":1,
+ "koreanText":"Nayutan Seijin feat.하츠네 미쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mikudd",
+ "japaneseText":"",
+ "englishUsText":"ダンスロボットダンス",
+ "englishUsFontType":0,
+ "frenchText":"ダンスロボットダンス",
+ "frenchFontType":0,
+ "italianText":"ダンスロボットダンス",
+ "italianFontType":0,
+ "germanText":"ダンスロボットダンス",
+ "germanFontType":0,
+ "spanishText":"ダンスロボットダンス",
+ "spanishFontType":0,
+ "chineseTText":"ダンスロボットダンス",
+ "chineseTFontType":0,
+ "koreanText":"ダンスロボットダンス",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ia6cho",
+ "japaneseText":"六兆年と一夜物語",
+ "englishUsText":"A Tale of Six Trillion Years and a Night",
+ "englishUsFontType":3,
+ "frenchText":"A Tale of Six Trillion Years and a Night",
+ "frenchFontType":3,
+ "italianText":"A Tale of Six Trillion Years and a Night",
+ "italianFontType":3,
+ "germanText":"A Tale of Six Trillion Years and a Night",
+ "germanFontType":3,
+ "spanishText":"A Tale of Six Trillion Years and a Night",
+ "spanishFontType":3,
+ "chineseTText":"六兆年と一夜物語",
+ "chineseTFontType":1,
+ "koreanText":"로쿠쵸넨토이치야모노가타리",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ia6cho",
+ "japaneseText":"kemu feat.IA",
+ "englishUsText":"Kemu feat. IA",
+ "englishUsFontType":3,
+ "frenchText":"Kemu feat. IA",
+ "frenchFontType":3,
+ "italianText":"Kemu feat. IA",
+ "italianFontType":3,
+ "germanText":"Kemu feat. IA",
+ "germanFontType":3,
+ "spanishText":"Kemu feat. IA",
+ "spanishFontType":3,
+ "chineseTText":"kemu feat.IA",
+ "chineseTFontType":1,
+ "koreanText":"kemu feat.IA",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ia6cho",
+ "japaneseText":"",
+ "englishUsText":"六兆年と一夜物語",
+ "englishUsFontType":0,
+ "frenchText":"六兆年と一夜物語",
+ "frenchFontType":0,
+ "italianText":"六兆年と一夜物語",
+ "italianFontType":0,
+ "germanText":"六兆年と一夜物語",
+ "germanFontType":0,
+ "spanishText":"六兆年と一夜物語",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"六兆年と一夜物語",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_hapsyn",
+ "japaneseText":"ハッピーシンセサイザ",
+ "englishUsText":"HAPPY SYNTHESIZER",
+ "englishUsFontType":3,
+ "frenchText":"HAPPY SYNTHESIZER",
+ "frenchFontType":3,
+ "italianText":"HAPPY SYNTHESIZER",
+ "italianFontType":3,
+ "germanText":"HAPPY SYNTHESIZER",
+ "germanFontType":3,
+ "spanishText":"HAPPY SYNTHESIZER",
+ "spanishFontType":3,
+ "chineseTText":"HAPPY SYNTHESIZER",
+ "chineseTFontType":1,
+ "koreanText":"HAPPY SYNTHESIZER",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_hapsyn",
+ "japaneseText":"EasyPop ",
+ "englishUsText":"EasyPop ",
+ "englishUsFontType":3,
+ "frenchText":"EasyPop ",
+ "frenchFontType":3,
+ "italianText":"EasyPop ",
+ "italianFontType":3,
+ "germanText":"EasyPop ",
+ "germanFontType":3,
+ "spanishText":"EasyPop ",
+ "spanishFontType":3,
+ "chineseTText":"EasyPop ",
+ "chineseTFontType":1,
+ "koreanText":"EasyPop ",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_hapsyn",
+ "japaneseText":"",
+ "englishUsText":"ハッピーシンセサイザ",
+ "englishUsFontType":0,
+ "frenchText":"ハッピーシンセサイザ",
+ "frenchFontType":0,
+ "italianText":"ハッピーシンセサイザ",
+ "italianFontType":0,
+ "germanText":"ハッピーシンセサイザ",
+ "germanFontType":0,
+ "spanishText":"ハッピーシンセサイザ",
+ "spanishFontType":0,
+ "chineseTText":"ハッピーシンセサイザ",
+ "chineseTFontType":0,
+ "koreanText":"ハッピーシンセサイザ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_rinren",
+ "japaneseText":"わんにゃーワールド",
+ "englishUsText":"Woof Meow World",
+ "englishUsFontType":3,
+ "frenchText":"Woof Meow World",
+ "frenchFontType":3,
+ "italianText":"Woof Meow World",
+ "italianFontType":3,
+ "germanText":"Woof Meow World",
+ "germanFontType":3,
+ "spanishText":"Woof Meow World",
+ "spanishFontType":3,
+ "chineseTText":"汪喵世界",
+ "chineseTFontType":1,
+ "koreanText":"왕냐와루도",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_rinren",
+ "japaneseText":"feat.鏡音リン・鏡音レン starring 下田麻美",
+ "englishUsText":"feat.KAGAMINE RIN・KAGAMINE LEN starring Asami Shimoda",
+ "englishUsFontType":3,
+ "frenchText":"feat.KAGAMINE RIN・KAGAMINE LEN starring Asami Shimoda",
+ "frenchFontType":3,
+ "italianText":"feat.KAGAMINE RIN・KAGAMINE LEN starring Asami Shimoda",
+ "italianFontType":3,
+ "germanText":"feat.KAGAMINE RIN・KAGAMINE LEN starring Asami Shimoda",
+ "germanFontType":3,
+ "spanishText":"feat.KAGAMINE RIN・KAGAMINE LEN starring Asami Shimoda",
+ "spanishFontType":3,
+ "chineseTText":"feat.KAGAMINE RIN・KAGAMINE LEN starring 下田麻美",
+ "chineseTFontType":1,
+ "koreanText":"feat.KAGAMINE RIN・KAGAMINE LEN starring Asami Shimoda",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_rinren",
+ "japaneseText":"",
+ "englishUsText":"わんにゃーワールド",
+ "englishUsFontType":0,
+ "frenchText":"わんにゃーワールド",
+ "frenchFontType":0,
+ "italianText":"わんにゃーワールド",
+ "italianFontType":0,
+ "germanText":"わんにゃーワールド",
+ "germanFontType":0,
+ "spanishText":"わんにゃーワールド",
+ "spanishFontType":0,
+ "chineseTText":"わんにゃーワールド",
+ "chineseTFontType":0,
+ "koreanText":"わんにゃーワールド",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mk3rai",
+ "japaneseText":"ミライ",
+ "englishUsText":"MIRAI",
+ "englishUsFontType":3,
+ "frenchText":"MIRAI",
+ "frenchFontType":3,
+ "italianText":"MIRAI",
+ "italianFontType":3,
+ "germanText":"MIRAI",
+ "germanFontType":3,
+ "spanishText":"MIRAI",
+ "spanishFontType":3,
+ "chineseTText":"MIRAI",
+ "chineseTFontType":1,
+ "koreanText":"MIRAI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mk3rai",
+ "japaneseText":"feat.ミライ小町",
+ "englishUsText":"feat.Mirai Komachi",
+ "englishUsFontType":3,
+ "frenchText":"feat.Mirai Komachi",
+ "frenchFontType":3,
+ "italianText":"feat.Mirai Komachi",
+ "italianFontType":3,
+ "germanText":"feat.Mirai Komachi",
+ "germanFontType":3,
+ "spanishText":"feat.Mirai Komachi",
+ "spanishFontType":3,
+ "chineseTText":"feat. Mirai Komachi",
+ "chineseTFontType":1,
+ "koreanText":"feat. Mirai Komachi",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mk3rai",
+ "japaneseText":"",
+ "englishUsText":"ミライ",
+ "englishUsFontType":0,
+ "frenchText":"ミライ",
+ "frenchFontType":0,
+ "italianText":"ミライ",
+ "italianFontType":0,
+ "germanText":"ミライ",
+ "germanFontType":0,
+ "spanishText":"ミライ",
+ "spanishFontType":0,
+ "chineseTText":"ミライ",
+ "chineseTFontType":0,
+ "koreanText":"ミライ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_gldarm",
+ "japaneseText":"Gold Armor",
+ "englishUsText":"Gold Armor",
+ "englishUsFontType":3,
+ "frenchText":"Gold Armor",
+ "frenchFontType":3,
+ "italianText":"Gold Armor",
+ "italianFontType":3,
+ "germanText":"Gold Armor",
+ "germanFontType":3,
+ "spanishText":"Gold Armor",
+ "spanishFontType":3,
+ "chineseTText":"Gold Armor",
+ "chineseTFontType":1,
+ "koreanText":"Gold Armor",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_gldarm",
+ "japaneseText":"「ドンカツファイト」テーマソング",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"Thème \" Don Katsu Fight \"",
+ "frenchFontType":3,
+ "italianText":"Tema di \" Don Katsu Fight \"",
+ "italianFontType":3,
+ "germanText":"\" Don Katsu Fight \"-Titellied",
+ "germanFontType":3,
+ "spanishText":"Tema de \" Don Katsu Fight \"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_gldarm",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_clsdok",
+ "japaneseText":"道化師の朝の歌",
+ "englishUsText":"Alborada del gracioso",
+ "englishUsFontType":3,
+ "frenchText":"Alborada del gracioso",
+ "frenchFontType":3,
+ "italianText":"Alborada del gracioso",
+ "italianFontType":3,
+ "germanText":"Alborada del gracioso",
+ "germanFontType":3,
+ "spanishText":"Alborada del gracioso",
+ "spanishFontType":3,
+ "chineseTText":"丑角的晨歌",
+ "chineseTFontType":1,
+ "koreanText":"어릿광대의 아침 노래",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_clsdok",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_clsdok",
+ "japaneseText":"",
+ "englishUsText":"道化師の朝の歌",
+ "englishUsFontType":0,
+ "frenchText":"道化師の朝の歌",
+ "frenchFontType":0,
+ "italianText":"道化師の朝の歌",
+ "italianFontType":0,
+ "germanText":"道化師の朝の歌",
+ "germanFontType":0,
+ "spanishText":"道化師の朝の歌",
+ "spanishFontType":0,
+ "chineseTText":"道化師の朝の歌",
+ "chineseTFontType":0,
+ "koreanText":"道化師の朝の歌",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_r4op",
+ "japaneseText":"URBAN FRAGMENTS",
+ "englishUsText":"URBAN FRAGMENTS",
+ "englishUsFontType":3,
+ "frenchText":"URBAN FRAGMENTS",
+ "frenchFontType":3,
+ "italianText":"URBAN FRAGMENTS",
+ "italianFontType":3,
+ "germanText":"URBAN FRAGMENTS",
+ "germanFontType":3,
+ "spanishText":"URBAN FRAGMENTS",
+ "spanishFontType":3,
+ "chineseTText":"URBAN FRAGMENTS",
+ "chineseTFontType":1,
+ "koreanText":"URBAN FRAGMENTS",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_r4op",
+ "japaneseText":"「R4 -RIDGE RACER TYPE 4-」より",
+ "englishUsText":"From \" R4 -RIDGE RACER TYPE4-\"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" R4 -RIDGE RACER TYPE4-\"",
+ "frenchFontType":3,
+ "italianText":"Da \" R4 -RIDGE RACER TYPE4-\"",
+ "italianFontType":3,
+ "germanText":"Aus \" R4 -RIDGE RACER TYPE4-\"",
+ "germanFontType":3,
+ "spanishText":"De \" R4 -RIDGE RACER TYPE4-\"",
+ "spanishFontType":3,
+ "chineseTText":"來自「R4 -RIDGE RACER TYPE4-」",
+ "chineseTFontType":1,
+ "koreanText":"\"R4 -RIDGE RACER TYPE4-\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_r4op",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mdeth",
+ "japaneseText":"メカデス。",
+ "englishUsText":"Mecha DESU.",
+ "englishUsFontType":3,
+ "frenchText":"Mecha DESU.",
+ "frenchFontType":3,
+ "italianText":"Mecha DESU.",
+ "italianFontType":3,
+ "germanText":"Mecha DESU.",
+ "germanFontType":3,
+ "spanishText":"Mecha DESU.",
+ "spanishFontType":3,
+ "chineseTText":"Mecha DESU.",
+ "chineseTFontType":1,
+ "koreanText":"Mecha DESU.",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mdeth",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mdeth",
+ "japaneseText":"",
+ "englishUsText":"メカデス。",
+ "englishUsFontType":0,
+ "frenchText":"メカデス。",
+ "frenchFontType":0,
+ "italianText":"メカデス。",
+ "italianFontType":0,
+ "germanText":"メカデス。",
+ "germanFontType":0,
+ "spanishText":"メカデス。",
+ "spanishFontType":0,
+ "chineseTText":"メカデス。",
+ "chineseTFontType":0,
+ "koreanText":"メカデス。",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_diet",
+ "japaneseText":"ダイエット・パダライス",
+ "englishUsText":"Diet PADARAISU",
+ "englishUsFontType":3,
+ "frenchText":"Diet PADARAISU",
+ "frenchFontType":3,
+ "italianText":"Diet PADARAISU",
+ "italianFontType":3,
+ "germanText":"Diet PADARAISU",
+ "germanFontType":3,
+ "spanishText":"Diet PADARAISU",
+ "spanishFontType":3,
+ "chineseTText":"Diet PADARAISU",
+ "chineseTFontType":1,
+ "koreanText":"Diet PADARAISU",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_diet",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_diet",
+ "japaneseText":"",
+ "englishUsText":"ダイエット・パダライス",
+ "englishUsFontType":0,
+ "frenchText":"ダイエット・パダライス",
+ "frenchFontType":0,
+ "italianText":"ダイエット・パダライス",
+ "italianFontType":0,
+ "germanText":"ダイエット・パダライス",
+ "germanFontType":0,
+ "spanishText":"ダイエット・パダライス",
+ "spanishFontType":0,
+ "chineseTText":"ダイエット・パダライス",
+ "chineseTFontType":0,
+ "koreanText":"ダイエット・パダライス",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_7ma8ge",
+ "japaneseText":"ナマハゲノウタ",
+ "englishUsText":"NAMAHAGE NO UTA",
+ "englishUsFontType":3,
+ "frenchText":"NAMAHAGE NO UTA",
+ "frenchFontType":3,
+ "italianText":"NAMAHAGE NO UTA",
+ "italianFontType":3,
+ "germanText":"NAMAHAGE NO UTA",
+ "germanFontType":3,
+ "spanishText":"NAMAHAGE NO UTA",
+ "spanishFontType":3,
+ "chineseTText":"NAMAHAGE NO UTA",
+ "chineseTFontType":1,
+ "koreanText":"나마하게노 우타",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_7ma8ge",
+ "japaneseText":"feat.DAIKI",
+ "englishUsText":"feat. DAIKI",
+ "englishUsFontType":3,
+ "frenchText":"feat. DAIKI",
+ "frenchFontType":3,
+ "italianText":"feat. DAIKI",
+ "italianFontType":3,
+ "germanText":"feat. DAIKI",
+ "germanFontType":3,
+ "spanishText":"feat. DAIKI",
+ "spanishFontType":3,
+ "chineseTText":"feat. DAIKI",
+ "chineseTFontType":1,
+ "koreanText":"feat. DAIKI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_7ma8ge",
+ "japaneseText":"",
+ "englishUsText":"ナマハゲノウタ",
+ "englishUsFontType":0,
+ "frenchText":"ナマハゲノウタ",
+ "frenchFontType":0,
+ "italianText":"ナマハゲノウタ",
+ "italianFontType":0,
+ "germanText":"ナマハゲノウタ",
+ "germanFontType":0,
+ "spanishText":"ナマハゲノウタ",
+ "spanishFontType":0,
+ "chineseTText":"ナマハゲノウタ",
+ "chineseTFontType":0,
+ "koreanText":"ナマハゲノウタ",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_vocaropack02",
+ "japaneseText":"「ボーカロイド™曲パックVol.2」配信中",
+ "englishUsText":"VOCALOID™ Music Pack Vol. 2 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「VOCALOID™ Music Pack Vol.2」發布中。",
+ "chineseTFontType":1,
+ "koreanText":"「VOCALOID™ Music Pack Vol.2」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_tatujin03",
+ "japaneseText":"「達人チャレンジパックVol.3」配信中",
+ "englishUsText":"Tatsujin Challenge Pack Vol. 3 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「達人Challenge Pack Vol.3」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「달인 Challenge Pack Vol.3」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_dball2",
+ "japaneseText":"魔訶不思議アドベンチャー!",
+ "englishUsText":"MAKAHUSHIGI ADVENTURE!",
+ "englishUsFontType":3,
+ "frenchText":"MAKAHUSHIGI ADVENTURE!",
+ "frenchFontType":3,
+ "italianText":"MAKAHUSHIGI ADVENTURE!",
+ "italianFontType":3,
+ "germanText":"MAKAHUSHIGI ADVENTURE!",
+ "germanFontType":3,
+ "spanishText":"MAKAHUSHIGI ADVENTURE!",
+ "spanishFontType":3,
+ "chineseTText":"魔訶不思議ADVENTURE!",
+ "chineseTFontType":1,
+ "koreanText":"MAKAHUSHIGI ADVENTURE!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_dball2",
+ "japaneseText":"「ドラゴンボール」 より",
+ "englishUsText":"From \" Dragon Ball \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Dragon Ball \"",
+ "frenchFontType":3,
+ "italianText":"da \" Dragon Ball \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Dragon Ball \"",
+ "germanFontType":3,
+ "spanishText":"De \" Dragon Ball \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「Dragon Ball」",
+ "chineseTFontType":1,
+ "koreanText":"\"Dragon Ball\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_dball2",
+ "japaneseText":"",
+ "englishUsText":"魔訶不思議アドベンチャー!",
+ "englishUsFontType":0,
+ "frenchText":"魔訶不思議アドベンチャー!",
+ "frenchFontType":0,
+ "italianText":"魔訶不思議アドベンチャー!",
+ "italianFontType":0,
+ "germanText":"魔訶不思議アドベンチャー!",
+ "germanFontType":0,
+ "spanishText":"魔訶不思議アドベンチャー!",
+ "spanishFontType":0,
+ "chineseTText":"魔訶不思議アドベンチャー!",
+ "chineseTFontType":0,
+ "koreanText":"魔訶不思議アドベンチャー!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_dsoul",
+ "japaneseText":"Dragon Soul",
+ "englishUsText":"Dragon Soul",
+ "englishUsFontType":3,
+ "frenchText":"Dragon Soul",
+ "frenchFontType":3,
+ "italianText":"Dragon Soul",
+ "italianFontType":3,
+ "germanText":"Dragon Soul",
+ "germanFontType":3,
+ "spanishText":"Dragon Soul",
+ "spanishFontType":3,
+ "chineseTText":"Dragon Soul",
+ "chineseTFontType":1,
+ "koreanText":"Dragon Soul",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_dsoul",
+ "japaneseText":"「ドラゴンボール改」 より",
+ "englishUsText":"From \" Dragon Ball Kai \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Dragon Ball Kai \"",
+ "frenchFontType":3,
+ "italianText":"da \" Dragon Ball Kai \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Dragon Ball Kai \"",
+ "germanFontType":3,
+ "spanishText":"De \" Dragon Ball Kai \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「Dragon Ball Kai」",
+ "chineseTFontType":1,
+ "koreanText":"\"Dragon Ball Kai\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_dsoul",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_dbcdyn",
+ "japaneseText":"超絶☆ダイナミック!",
+ "englishUsText":"CHOUZETSU☆DYNAMIC!",
+ "englishUsFontType":3,
+ "frenchText":"CHOUZETSU☆DYNAMIC!",
+ "frenchFontType":3,
+ "italianText":"CHOUZETSU☆DYNAMIC!",
+ "italianFontType":3,
+ "germanText":"CHOUZETSU☆DYNAMIC!",
+ "germanFontType":3,
+ "spanishText":"CHOUZETSU☆DYNAMIC!",
+ "spanishFontType":3,
+ "chineseTText":"超絶☆DYNAMIC!",
+ "chineseTFontType":1,
+ "koreanText":"CHOUZETSU☆DYNAMIC!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_dbcdyn",
+ "japaneseText":"「ドラゴンボール超」より",
+ "englishUsText":"From \" Dragon Ball Super \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Dragon Ball Super \"",
+ "frenchFontType":3,
+ "italianText":"da \" Dragon Ball Super \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Dragon Ball Super \"",
+ "germanFontType":3,
+ "spanishText":"De \" Dragon Ball Super \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「Dragon Ball Super」",
+ "chineseTFontType":1,
+ "koreanText":"\"Dragon Ball Super\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_dbcdyn",
+ "japaneseText":"",
+ "englishUsText":"超絶☆ダイナミック!",
+ "englishUsFontType":0,
+ "frenchText":"超絶☆ダイナミック!",
+ "frenchFontType":0,
+ "italianText":"超絶☆ダイナミック!",
+ "italianFontType":0,
+ "germanText":"超絶☆ダイナミック!",
+ "germanFontType":0,
+ "spanishText":"超絶☆ダイナミック!",
+ "spanishFontType":0,
+ "chineseTText":"超絶☆ダイナミック!",
+ "chineseTFontType":0,
+ "koreanText":"超絶☆ダイナミック!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_enter",
+ "japaneseText":"エンターテイナー",
+ "englishUsText":"The Entertainer",
+ "englishUsFontType":3,
+ "frenchText":"The Entertainer",
+ "frenchFontType":3,
+ "italianText":"The Entertainer",
+ "italianFontType":3,
+ "germanText":"The Entertainer",
+ "germanFontType":3,
+ "spanishText":"The Entertainer",
+ "spanishFontType":3,
+ "chineseTText":"The Entertainer",
+ "chineseTFontType":1,
+ "koreanText":"The Entertainer",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_enter",
+ "japaneseText":"ジョップリン",
+ "englishUsText":"Scott Joplin",
+ "englishUsFontType":3,
+ "frenchText":"Scott Joplin",
+ "frenchFontType":3,
+ "italianText":"Scott Joplin",
+ "italianFontType":3,
+ "germanText":"Scott Joplin",
+ "germanFontType":3,
+ "spanishText":"Scott Joplin",
+ "spanishFontType":3,
+ "chineseTText":"史考特·喬普林",
+ "chineseTFontType":1,
+ "koreanText":"스콧 조플린",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_enter",
+ "japaneseText":"",
+ "englishUsText":"エンターテイナー",
+ "englishUsFontType":0,
+ "frenchText":"エンターテイナー",
+ "frenchFontType":0,
+ "italianText":"エンターテイナー",
+ "italianFontType":0,
+ "germanText":"エンターテイナー",
+ "germanFontType":0,
+ "spanishText":"エンターテイナー",
+ "spanishFontType":0,
+ "chineseTText":"エンターテイナー",
+ "chineseTFontType":0,
+ "koreanText":"エンターテイナー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_crkvic",
+ "japaneseText":"VICTORIA",
+ "englishUsText":"VICTORIA",
+ "englishUsFontType":3,
+ "frenchText":"VICTORIA",
+ "frenchFontType":3,
+ "italianText":"VICTORIA",
+ "italianFontType":3,
+ "germanText":"VICTORIA",
+ "germanFontType":3,
+ "spanishText":"VICTORIA",
+ "spanishFontType":3,
+ "chineseTText":"VICTORIA",
+ "chineseTFontType":1,
+ "koreanText":"VICTORIA",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_crkvic",
+ "japaneseText":"Cranky",
+ "englishUsText":"Cranky",
+ "englishUsFontType":3,
+ "frenchText":"Cranky",
+ "frenchFontType":3,
+ "italianText":"Cranky",
+ "italianFontType":3,
+ "germanText":"Cranky",
+ "germanFontType":3,
+ "spanishText":"Cranky",
+ "spanishFontType":3,
+ "chineseTText":"Cranky",
+ "chineseTFontType":1,
+ "koreanText":"Cranky",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_crkvic",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_lov193",
+ "japaneseText":"LOVE戦!!",
+ "englishUsText":"LOVE IKUSA!!",
+ "englishUsFontType":3,
+ "frenchText":"LOVE IKUSA!!",
+ "frenchFontType":3,
+ "italianText":"LOVE IKUSA!!",
+ "italianFontType":3,
+ "germanText":"LOVE IKUSA!!",
+ "germanFontType":3,
+ "spanishText":"LOVE IKUSA!!",
+ "spanishFontType":3,
+ "chineseTText":"LOVE戦!!",
+ "chineseTFontType":1,
+ "koreanText":"LOVE이쿠사!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_lov193",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_lov193",
+ "japaneseText":"",
+ "englishUsText":"LOVE戦!!",
+ "englishUsFontType":0,
+ "frenchText":"LOVE戦!!",
+ "frenchFontType":0,
+ "italianText":"LOVE戦!!",
+ "italianFontType":0,
+ "germanText":"LOVE戦!!",
+ "germanFontType":0,
+ "spanishText":"LOVE戦!!",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"LOVE戦!!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sora2x",
+ "japaneseText":"SORA‐Ⅱ グリーゼ581",
+ "englishUsText":"SORA-II Gliese 581",
+ "englishUsFontType":3,
+ "frenchText":"SORA-II Gliese 581",
+ "frenchFontType":3,
+ "italianText":"SORA-II Gliese 581",
+ "italianFontType":3,
+ "germanText":"SORA-II Gliese 581",
+ "germanFontType":3,
+ "spanishText":"SORA-II Gliese 581",
+ "spanishFontType":3,
+ "chineseTText":"SORA-Ⅱ 格利澤581",
+ "chineseTFontType":1,
+ "koreanText":"SORA-Ⅱ 글리제581",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_sora2x",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_sora2x",
+ "japaneseText":"",
+ "englishUsText":"SORA‐Ⅱ グリーゼ581",
+ "englishUsFontType":0,
+ "frenchText":"SORA‐Ⅱ グリーゼ581",
+ "frenchFontType":0,
+ "italianText":"SORA‐Ⅱ グリーゼ581",
+ "italianFontType":0,
+ "germanText":"SORA‐Ⅱ グリーゼ581",
+ "germanFontType":0,
+ "spanishText":"SORA‐Ⅱ グリーゼ581",
+ "spanishFontType":0,
+ "chineseTText":"SORA‐Ⅱ グリーゼ581",
+ "chineseTFontType":0,
+ "koreanText":"SORA‐Ⅱ グリーゼ581",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_bokmit",
+ "japaneseText":"ボクらのまえに道はある",
+ "englishUsText":"BOKURA NO MAE NI MICHI WA ARU",
+ "englishUsFontType":3,
+ "frenchText":"BOKURA NO MAE NI MICHI WA ARU",
+ "frenchFontType":3,
+ "italianText":"BOKURA NO MAE NI MICHI WA ARU",
+ "italianFontType":3,
+ "germanText":"BOKURA NO MAE NI MICHI WA ARU",
+ "germanFontType":3,
+ "spanishText":"BOKURA NO MAE NI MICHI WA ARU",
+ "spanishFontType":3,
+ "chineseTText":"BOKURA NO MAE NI MICHI WA ARU",
+ "chineseTFontType":1,
+ "koreanText":"보쿠라노 마에니 미치와 아루",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_bokmit",
+ "japaneseText":"HONOKA",
+ "englishUsText":"HONOKA",
+ "englishUsFontType":3,
+ "frenchText":"HONOKA",
+ "frenchFontType":3,
+ "italianText":"HONOKA",
+ "italianFontType":3,
+ "germanText":"HONOKA",
+ "germanFontType":3,
+ "spanishText":"HONOKA",
+ "spanishFontType":3,
+ "chineseTText":"HONOKA",
+ "chineseTFontType":1,
+ "koreanText":"HONOKA",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_bokmit",
+ "japaneseText":"",
+ "englishUsText":"ボクらのまえに道はある",
+ "englishUsFontType":0,
+ "frenchText":"ボクらのまえに道はある",
+ "frenchFontType":0,
+ "italianText":"ボクらのまえに道はある",
+ "italianFontType":0,
+ "germanText":"ボクらのまえに道はある",
+ "germanFontType":0,
+ "spanishText":"ボクらのまえに道はある",
+ "spanishFontType":0,
+ "chineseTText":"ボクらのまえに道はある",
+ "chineseTFontType":0,
+ "koreanText":"ボクらのまえに道はある",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_donkatsufight",
+ "japaneseText":"新モード「ドンカツファイト」&新曲「Gold Armor」パック無料配信中",
+ "englishUsText":"New DON KATSU FIGHT Mode & \"Gold Armor\" Pack now available for free!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"新模式「咚咔對戰」&新曲「Gold Armor」PACK免費發布中",
+ "chineseTFontType":1,
+ "koreanText":"새 모드 「동이 딱이 FIGHT」&신곡 「Gold Armor」 팩 무료 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_donkatsufight_asia",
+ "japaneseText":"新曲「Gold Armor」配信中",
+ "englishUsText":"\"Gold Armor\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"新曲「Gold Armor」發布中",
+ "chineseTFontType":1,
+ "koreanText":"신곡 「Gold Armor」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_db",
+ "japaneseText":"「魔訶不思議アドベンチャー!」「Dragon Soul」",
+ "englishUsText":"\"MAKAHUSHIGI ADVENTURE!\", \"Dragon Soul\", and",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「魔訶不思議ADVENTURE!」「Dragon Soul」",
+ "chineseTFontType":1,
+ "koreanText":"「MAKAHUSHIGI ADVENTURE!」「Dragon Soul」",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_db2",
+ "japaneseText":"「超絶☆ダイナミック!」のパックを配信中",
+ "englishUsText":"\"CHOUZETSU☆DYNAMIC!\" songs now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「超絶☆DYNAMIC!」的PACK發布中",
+ "chineseTFontType":1,
+ "koreanText":"「CHOUZETSU☆DYNAMIC!」 팩 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_result_unit_percent",
+ "japaneseText":"%",
+ "englishUsText":"%",
+ "englishUsFontType":3,
+ "frenchText":" %",
+ "frenchFontType":3,
+ "italianText":"%",
+ "italianFontType":3,
+ "germanText":"%",
+ "germanFontType":3,
+ "spanishText":"%",
+ "spanishFontType":3,
+ "chineseTText":"%",
+ "chineseTFontType":1,
+ "koreanText":"%",
+ "koreanFontType":2
+ },
+ {
+ "key":"newvs_result_unit_renda",
+ "japaneseText":"打/秒",
+ "englishUsText":"Hits/Seconds",
+ "englishUsFontType":3,
+ "frenchText":"Coups/secondes",
+ "frenchFontType":3,
+ "italianText":"A segno/secondi",
+ "italianFontType":3,
+ "germanText":"Treffer/Sekunden",
+ "germanFontType":3,
+ "spanishText":"Aciertos/segundos",
+ "spanishFontType":3,
+ "chineseTText":"連打/秒",
+ "chineseTFontType":1,
+ "koreanText":"타수/초",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_tatujin04",
+ "japaneseText":"「達人チャレンジパックVol.4」配信中",
+ "englishUsText":"Tatsujin Challenge Pack Vol. 4 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「達人Challenge Pack Vol.4」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「달인 Challenge Pack Vol.4」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_howlmg",
+ "japaneseText":"人生のメリーゴーランド",
+ "englishUsText":"Merry-Go-Round of Life",
+ "englishUsFontType":3,
+ "frenchText":"Le Manège de la vie",
+ "frenchFontType":3,
+ "italianText":"La giostra della vita",
+ "italianFontType":3,
+ "germanText":"Das Karussell des Lebens",
+ "germanFontType":3,
+ "spanishText":"El Tiovivo de la Vida",
+ "spanishFontType":3,
+ "chineseTText":"人生的旋轉木馬",
+ "chineseTFontType":1,
+ "koreanText":"인생의 회전 목마",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_howlmg",
+ "japaneseText":"「ハウルの動く城」より",
+ "englishUsText":"From \" Howl's Moving Castle \"",
+ "englishUsFontType":3,
+ "frenchText":"de \" Le Château ambulant \"",
+ "frenchFontType":3,
+ "italianText":"da \" Il castello errante di Howl \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Das wandelnde Schloß \"",
+ "germanFontType":3,
+ "spanishText":"De \" El castillo ambulante \"",
+ "spanishFontType":3,
+ "chineseTText":" 來自「霍爾的移動城堡」",
+ "chineseTFontType":1,
+ "koreanText":"\"하울의 움직이는 성\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_howlmg",
+ "japaneseText":"",
+ "englishUsText":"人生のメリーゴーランド",
+ "englishUsFontType":0,
+ "frenchText":"人生のメリーゴーランド",
+ "frenchFontType":0,
+ "italianText":"人生のメリーゴーランド",
+ "italianFontType":0,
+ "germanText":"人生のメリーゴーランド",
+ "germanFontType":0,
+ "spanishText":"人生のメリーゴーランド",
+ "spanishFontType":0,
+ "chineseTText":"人生のメリーゴーランド",
+ "chineseTFontType":0,
+ "koreanText":"人生のメリーゴーランド",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ttrkaz",
+ "japaneseText":"風のとおり道",
+ "englishUsText":"The Path of the Wind",
+ "englishUsFontType":3,
+ "frenchText":"Le Chemin du vent",
+ "frenchFontType":3,
+ "italianText":"La strada del vento",
+ "italianFontType":3,
+ "germanText":"Der Weg des Windes",
+ "germanFontType":3,
+ "spanishText":"El camino del viento",
+ "spanishFontType":3,
+ "chineseTText":"風之通道",
+ "chineseTFontType":1,
+ "koreanText":"바람이 지나가는 길",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ttrkaz",
+ "japaneseText":"「となりのトトロ」より",
+ "englishUsText":"From \" My Neighbor Totoro \"",
+ "englishUsFontType":3,
+ "frenchText":"de \" Mon Voisin Totoro \"",
+ "frenchFontType":3,
+ "italianText":"da \" Il mio vicino Totoro \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Mein Nachbar Totoro \"",
+ "germanFontType":3,
+ "spanishText":"De \" Mi vecino Totoro \"",
+ "spanishFontType":3,
+ "chineseTText":" 來自「龍貓」",
+ "chineseTFontType":1,
+ "koreanText":"\"이웃집 토토로\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ttrkaz",
+ "japaneseText":"",
+ "englishUsText":"風のとおり道",
+ "englishUsFontType":0,
+ "frenchText":"風のとおり道",
+ "frenchFontType":0,
+ "italianText":"風のとおり道",
+ "italianFontType":0,
+ "germanText":"風のとおり道",
+ "germanFontType":0,
+ "spanishText":"風のとおり道",
+ "spanishFontType":0,
+ "chineseTText":"風のとおり道",
+ "chineseTFontType":0,
+ "koreanText":"風のとおり道",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_flkmio",
+ "japaneseText":"オー・ソレ・ミオ",
+ "englishUsText":" 'O sole mio ",
+ "englishUsFontType":3,
+ "frenchText":" 'O sole mio ",
+ "frenchFontType":3,
+ "italianText":" 'O sole mio ",
+ "italianFontType":3,
+ "germanText":" 'O sole mio ",
+ "germanFontType":3,
+ "spanishText":" 'O sole mio ",
+ "spanishFontType":3,
+ "chineseTText":" 'O sole mio ",
+ "chineseTFontType":1,
+ "koreanText":" 'O sole mio ",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_flkmio",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_flkmio",
+ "japaneseText":"",
+ "englishUsText":"オー・ソレ・ミオ",
+ "englishUsFontType":0,
+ "frenchText":"オー・ソレ・ミオ",
+ "frenchFontType":0,
+ "italianText":"オー・ソレ・ミオ",
+ "italianFontType":0,
+ "germanText":"オー・ソレ・ミオ",
+ "germanFontType":0,
+ "spanishText":"オー・ソレ・ミオ",
+ "spanishFontType":0,
+ "chineseTText":"オー・ソレ・ミオ",
+ "chineseTFontType":0,
+ "koreanText":"オー・ソレ・ミオ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_snyq",
+ "japaneseText":"承認欲Q",
+ "englishUsText":"SHOUNIN YOK-Q",
+ "englishUsFontType":3,
+ "frenchText":"SHOUNIN YOK-Q",
+ "frenchFontType":3,
+ "italianText":"SHOUNIN YOK-Q",
+ "italianFontType":3,
+ "germanText":"SHOUNIN YOK-Q",
+ "germanFontType":3,
+ "spanishText":"SHOUNIN YOK-Q",
+ "spanishFontType":3,
+ "chineseTText":"承認欲Q",
+ "chineseTFontType":1,
+ "koreanText":"쇼우닌 욕Q",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_snyq",
+ "japaneseText":"かねこちはる feat.はぁち",
+ "englishUsText":"Chiharu Kaneko feat. haxchi",
+ "englishUsFontType":3,
+ "frenchText":"Chiharu Kaneko feat. haxchi",
+ "frenchFontType":3,
+ "italianText":"Chiharu Kaneko feat. haxchi",
+ "italianFontType":3,
+ "germanText":"Chiharu Kaneko feat. haxchi",
+ "germanFontType":3,
+ "spanishText":"Chiharu Kaneko feat. haxchi",
+ "spanishFontType":3,
+ "chineseTText":"Chiharu Kaneko feat. haxchi",
+ "chineseTFontType":1,
+ "koreanText":"Chiharu Kaneko feat. haxchi",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_snyq",
+ "japaneseText":"",
+ "englishUsText":"承認欲Q",
+ "englishUsFontType":0,
+ "frenchText":"承認欲Q",
+ "frenchFontType":0,
+ "italianText":"承認欲Q",
+ "italianFontType":0,
+ "germanText":"承認欲Q",
+ "germanFontType":0,
+ "spanishText":"承認欲Q",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"承認欲Q",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_usouso",
+ "japaneseText":"うそうそ時",
+ "englishUsText":"USOUSODOKI",
+ "englishUsFontType":3,
+ "frenchText":"USOUSODOKI",
+ "frenchFontType":3,
+ "italianText":"USOUSODOKI",
+ "italianFontType":3,
+ "germanText":"USOUSODOKI",
+ "germanFontType":3,
+ "spanishText":"USOUSODOKI",
+ "spanishFontType":3,
+ "chineseTText":"傍晚時分",
+ "chineseTFontType":1,
+ "koreanText":"우소우소도키",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_usouso",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_usouso",
+ "japaneseText":"",
+ "englishUsText":"うそうそ時",
+ "englishUsFontType":0,
+ "frenchText":"うそうそ時",
+ "frenchFontType":0,
+ "italianText":"うそうそ時",
+ "italianFontType":0,
+ "germanText":"うそうそ時",
+ "germanFontType":0,
+ "spanishText":"うそうそ時",
+ "spanishFontType":0,
+ "chineseTText":"うそうそ時",
+ "chineseTFontType":0,
+ "koreanText":"うそうそ時",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_milsam",
+ "japaneseText":"いとしのミルさま",
+ "englishUsText":"ITOSHINO MIRUSAMA",
+ "englishUsFontType":3,
+ "frenchText":"ITOSHINO MIRUSAMA",
+ "frenchFontType":3,
+ "italianText":"ITOSHINO MIRUSAMA",
+ "italianFontType":3,
+ "germanText":"ITOSHINO MIRUSAMA",
+ "germanFontType":3,
+ "spanishText":"ITOSHINO MIRUSAMA",
+ "spanishFontType":3,
+ "chineseTText":"我親愛的米爾大人",
+ "chineseTFontType":1,
+ "koreanText":"이토시노 미루사마",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_milsam",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_milsam",
+ "japaneseText":"",
+ "englishUsText":"いとしのミルさま",
+ "englishUsFontType":0,
+ "frenchText":"いとしのミルさま",
+ "frenchFontType":0,
+ "italianText":"いとしのミルさま",
+ "italianFontType":0,
+ "germanText":"いとしのミルさま",
+ "germanFontType":0,
+ "spanishText":"いとしのミルさま",
+ "spanishFontType":0,
+ "chineseTText":"いとしのミルさま",
+ "chineseTFontType":0,
+ "koreanText":"いとしのミルさま",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_onsayg",
+ "japaneseText":"ON SAY GO SAY",
+ "englishUsText":"ON SAY GO SAY",
+ "englishUsFontType":3,
+ "frenchText":"ON SAY GO SAY",
+ "frenchFontType":3,
+ "italianText":"ON SAY GO SAY",
+ "italianFontType":3,
+ "germanText":"ON SAY GO SAY",
+ "germanFontType":3,
+ "spanishText":"ON SAY GO SAY",
+ "spanishFontType":3,
+ "chineseTText":"ON SAY GO SAY",
+ "chineseTFontType":1,
+ "koreanText":"ON SAY GO SAY",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_onsayg",
+ "japaneseText":"ショウ君",
+ "englishUsText":"SHOW",
+ "englishUsFontType":3,
+ "frenchText":"SHOW",
+ "frenchFontType":3,
+ "italianText":"SHOW",
+ "italianFontType":3,
+ "germanText":"SHOW",
+ "germanFontType":3,
+ "spanishText":"SHOW",
+ "spanishFontType":3,
+ "chineseTText":"SHOW",
+ "chineseTFontType":1,
+ "koreanText":"SHOW",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_onsayg",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mjtk83",
+ "japaneseText":"やさしさに包まれたなら",
+ "englishUsText":"YASASHISANI TSUTSUMARETANARA",
+ "englishUsFontType":3,
+ "frenchText":"YASASHISANI TSUTSUMARETANARA",
+ "frenchFontType":3,
+ "italianText":"YASASHISANI TSUTSUMARETANARA",
+ "italianFontType":3,
+ "germanText":"YASASHISANI TSUTSUMARETANARA",
+ "germanFontType":3,
+ "spanishText":"YASASHISANI TSUTSUMARETANARA",
+ "spanishFontType":3,
+ "chineseTText":"YASASHISANI TSUTSUMARETANARA",
+ "chineseTFontType":1,
+ "koreanText":"YASASHISANI TSUTSUMARETANARA",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mjtk83",
+ "japaneseText":"「魔女の宅急便」より",
+ "englishUsText":"From \" Kiki's Delivery Service \"",
+ "englishUsFontType":3,
+ "frenchText":"de \" Kiki la petite sorcière \"",
+ "frenchFontType":3,
+ "italianText":"da \" Kiki - Consegne a domicilio \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Kikis kleiner Lieferservice \"",
+ "germanFontType":3,
+ "spanishText":"De \" Nicky, la Aprendiz de Bruja \"",
+ "spanishFontType":3,
+ "chineseTText":" 來自「魔女宅急便」",
+ "chineseTFontType":1,
+ "koreanText":"\"마녀 배달부 키키\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mjtk83",
+ "japaneseText":"",
+ "englishUsText":"やさしさに包まれたなら",
+ "englishUsFontType":0,
+ "frenchText":"やさしさに包まれたなら",
+ "frenchFontType":0,
+ "italianText":"やさしさに包まれたなら",
+ "italianFontType":0,
+ "germanText":"やさしさに包まれたなら",
+ "germanFontType":0,
+ "spanishText":"やさしさに包まれたなら",
+ "spanishFontType":0,
+ "chineseTText":"やさしさに包まれたなら",
+ "chineseTFontType":0,
+ "koreanText":"やさしさに包まれたなら",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_jiburipack02",
+ "japaneseText":"「スタジオジブリパックVol.2」配信中",
+ "englishUsText":"STUDIO GHIBLI Pack Vol. 2 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「吉卜力工作室 Pack Vol.2」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「스튜디오 지브리 Pack Vol.2」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_tatujin05",
+ "japaneseText":"「達人チャレンジパックVol.5」配信中",
+ "englishUsText":"Tatsujin Challenge Pack Vol. 5 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「達人Challenge Pack Vol.5」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「달인 Challenge Pack Vol.5」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_update_taisen2",
+ "japaneseText":"新対戦モード「ドンカツファイト」登場!\n\n演奏しながら体力をけずり合う、\nアツいファイトが楽しめます\n\n「ドンカツファイト」をあそびますか?",
+ "englishUsText":"A new versus mode, DON KATSU FIGHT has arrived!\n\nPerform well to whittle down your opponent's HP in this heated battle mode!\n\nWould you like to play DON KATSU FIGHT?",
+ "englishUsFontType":3,
+ "frenchText":"Un nouveau mode versus, DUEL DON KATSU, vient de débarquer !\n\nJoue bien pour réduire les PV de ton adversaire dans ce mode de bataille trépidant !\n\nVeux-tu jouer à DUEL DON KATSU ?",
+ "frenchFontType":3,
+ "italianText":"È arrivata una nuova modalità Versus, il DUELLO DON KATSU!\n\nSuona le note al momento giusto per ridurre i PS dell'avversario in questa intensa modalità competitiva!\n\nVuoi giocare al DUELLO DON KATSU?",
+ "italianFontType":3,
+ "germanText":"Der neue Versus-Modus DON-KATSU-KAMPF ist da!\n\nLege eine gute Performance hin, um die Energie deines Gegners in diesem heißen Kampf-Modus zu reduzieren!\n\nMöchtest du DON-KATSU-KAMPF spielen?",
+ "germanFontType":3,
+ "spanishText":"¡Ya está aquí el nuevo modo Versus: PELEA DON KATSU!\n\n¡Hazlo bien para reducir la salud de tus adversarios en este divertido y feroz modo de combate!\n\n¿Quieres jugar a PELEA DON KATSU?",
+ "spanishFontType":3,
+ "chineseTText":"新對戰模式「咚咔對戰」登場!\n\n享受一邊演奏一邊互相削減體力的\n火熱戰鬥\n\n要遊玩「咚咔對戰」嗎?",
+ "chineseTFontType":1,
+ "koreanText":"신 대전 모드 「동이 딱이 FIGHT」 등장!\n\n연주하면서 서로의 체력을 깎는\n뜨거운 대전을 즐길 수 있습니다\n\n「동이 딱이 FIGHT」 를 플레이하겠습니까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sbnelc",
+ "japaneseText":"バブリィ☆クイーン",
+ "englishUsText":"Bubbly☆Queen",
+ "englishUsFontType":3,
+ "frenchText":"Bubbly☆Queen",
+ "frenchFontType":3,
+ "italianText":"Bubbly☆Queen",
+ "italianFontType":3,
+ "germanText":"Bubbly☆Queen",
+ "germanFontType":3,
+ "spanishText":"Bubbly☆Queen",
+ "spanishFontType":3,
+ "chineseTText":"Bubbly☆Queen",
+ "chineseTFontType":1,
+ "koreanText":"Bubbly☆Queen",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_sbnelc",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_sbnelc",
+ "japaneseText":"",
+ "englishUsText":"バブリィ☆クイーン",
+ "englishUsFontType":0,
+ "frenchText":"バブリィ☆クイーン",
+ "frenchFontType":0,
+ "italianText":"バブリィ☆クイーン",
+ "italianFontType":0,
+ "germanText":"バブリィ☆クイーン",
+ "germanFontType":0,
+ "spanishText":"バブリィ☆クイーン",
+ "spanishFontType":0,
+ "chineseTText":"バブリィ☆クイーン",
+ "chineseTFontType":0,
+ "koreanText":"バブリィ☆クイーン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_stmic7",
+ "japaneseText":"メンクイミラクル",
+ "englishUsText":"MENKUI Miracle",
+ "englishUsFontType":3,
+ "frenchText":"MENKUI Miracle",
+ "frenchFontType":3,
+ "italianText":"MENKUI Miracle",
+ "italianFontType":3,
+ "germanText":"MENKUI Miracle",
+ "germanFontType":3,
+ "spanishText":"MENKUI Miracle",
+ "spanishFontType":3,
+ "chineseTText":"吃面子Miracle",
+ "chineseTFontType":1,
+ "koreanText":"멘쿠이 Miracle",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_stmic7",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_stmic7",
+ "japaneseText":"",
+ "englishUsText":"メンクイミラクル",
+ "englishUsFontType":0,
+ "frenchText":"メンクイミラクル",
+ "frenchFontType":0,
+ "italianText":"メンクイミラクル",
+ "italianFontType":0,
+ "germanText":"メンクイミラクル",
+ "germanFontType":0,
+ "spanishText":"メンクイミラクル",
+ "spanishFontType":0,
+ "chineseTText":"メンクイミラクル",
+ "chineseTFontType":0,
+ "koreanText":"メンクイミラクル",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_yoidon",
+ "japaneseText":"よーいドン!",
+ "englishUsText":"YO-I DON!",
+ "englishUsFontType":3,
+ "frenchText":"YO-I DON!",
+ "frenchFontType":3,
+ "italianText":"YO-I DON!",
+ "italianFontType":3,
+ "germanText":"YO-I DON!",
+ "germanFontType":3,
+ "spanishText":"YO-I DON!",
+ "spanishFontType":3,
+ "chineseTText":"預~備砰!",
+ "chineseTFontType":1,
+ "koreanText":"요-이 동!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_yoidon",
+ "japaneseText":"feat. Kiddish",
+ "englishUsText":"feat. Kiddish",
+ "englishUsFontType":3,
+ "frenchText":"feat. Kiddish",
+ "frenchFontType":3,
+ "italianText":"feat. Kiddish",
+ "italianFontType":3,
+ "germanText":"feat. Kiddish",
+ "germanFontType":3,
+ "spanishText":"feat. Kiddish",
+ "spanishFontType":3,
+ "chineseTText":"feat. Kiddish",
+ "chineseTFontType":1,
+ "koreanText":"feat. Kiddish",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_yoidon",
+ "japaneseText":"",
+ "englishUsText":"よーいドン!",
+ "englishUsFontType":0,
+ "frenchText":"よーいドン!",
+ "frenchFontType":0,
+ "italianText":"よーいドン!",
+ "italianFontType":0,
+ "germanText":"よーいドン!",
+ "germanFontType":0,
+ "spanishText":"よーいドン!",
+ "spanishFontType":0,
+ "chineseTText":"よーいドン!",
+ "chineseTFontType":0,
+ "koreanText":"よーいドン!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_eoria",
+ "japaneseText":"地平線のエオリア",
+ "englishUsText":"CHIHEISEN NO EOLIA",
+ "englishUsFontType":3,
+ "frenchText":"CHIHEISEN NO EOLIA",
+ "frenchFontType":3,
+ "italianText":"CHIHEISEN NO EOLIA",
+ "italianFontType":3,
+ "germanText":"CHIHEISEN NO EOLIA",
+ "germanFontType":3,
+ "spanishText":"CHIHEISEN NO EOLIA",
+ "spanishFontType":3,
+ "chineseTText":"地平線上的疾風",
+ "chineseTFontType":1,
+ "koreanText":"치헤이센노 에오리아",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_eoria",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_eoria",
+ "japaneseText":"",
+ "englishUsText":"地平線のエオリア",
+ "englishUsFontType":0,
+ "frenchText":"地平線のエオリア",
+ "frenchFontType":0,
+ "italianText":"地平線のエオリア",
+ "italianFontType":0,
+ "germanText":"地平線のエオリア",
+ "germanFontType":0,
+ "spanishText":"地平線のエオリア",
+ "spanishFontType":0,
+ "chineseTText":"地平線のエオリア",
+ "chineseTFontType":0,
+ "koreanText":"地平線のエオリア",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mahosk",
+ "japaneseText":"魔法式逃走奇譚☆ミ",
+ "englishUsText":"MAHOUSHIKI TOUSOUKITAN☆ミ",
+ "englishUsFontType":3,
+ "frenchText":"MAHOUSHIKI TOUSOUKITAN☆ミ",
+ "frenchFontType":3,
+ "italianText":"MAHOUSHIKI TOUSOUKITAN☆ミ",
+ "italianFontType":3,
+ "germanText":"MAHOUSHIKI TOUSOUKITAN☆ミ",
+ "germanFontType":3,
+ "spanishText":"MAHOUSHIKI TOUSOUKITAN☆ミ",
+ "spanishFontType":3,
+ "chineseTText":"魔法式逃走奇譚☆ミ",
+ "chineseTFontType":1,
+ "koreanText":"마호우시키 토우소우키탄☆ミ",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mahosk",
+ "japaneseText":"MOES feat.海保えりか",
+ "englishUsText":"MOES feat.Kaiho Erika",
+ "englishUsFontType":3,
+ "frenchText":"MOES feat.Kaiho Erika",
+ "frenchFontType":3,
+ "italianText":"MOES feat.Kaiho Erika",
+ "italianFontType":3,
+ "germanText":"MOES feat.Kaiho Erika",
+ "germanFontType":3,
+ "spanishText":"MOES feat.Kaiho Erika",
+ "spanishFontType":3,
+ "chineseTText":"MOES feat.Kaiho Erika",
+ "chineseTFontType":1,
+ "koreanText":"MOES feat.Kaiho Erika",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mahosk",
+ "japaneseText":"",
+ "englishUsText":"魔法式逃走奇譚☆ミ",
+ "englishUsFontType":0,
+ "frenchText":"魔法式逃走奇譚☆ミ",
+ "frenchFontType":0,
+ "italianText":"魔法式逃走奇譚☆ミ",
+ "italianFontType":0,
+ "germanText":"魔法式逃走奇譚☆ミ",
+ "germanFontType":0,
+ "spanishText":"魔法式逃走奇譚☆ミ",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"魔法式逃走奇譚☆ミ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mrgold",
+ "japaneseText":"マリーゴールド",
+ "englishUsText":"Marigold",
+ "englishUsFontType":3,
+ "frenchText":"Marigold",
+ "frenchFontType":3,
+ "italianText":"Marigold",
+ "italianFontType":3,
+ "germanText":"Marigold",
+ "germanFontType":3,
+ "spanishText":"Marigold",
+ "spanishFontType":3,
+ "chineseTText":"Marigold",
+ "chineseTFontType":1,
+ "koreanText":"Marigold",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mrgold",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mrgold",
+ "japaneseText":"",
+ "englishUsText":"マリーゴールド",
+ "englishUsFontType":0,
+ "frenchText":"マリーゴールド",
+ "frenchFontType":0,
+ "italianText":"マリーゴールド",
+ "italianFontType":0,
+ "germanText":"マリーゴールド",
+ "germanFontType":0,
+ "spanishText":"マリーゴールド",
+ "spanishFontType":0,
+ "chineseTText":"マリーゴールド",
+ "chineseTFontType":0,
+ "koreanText":"マリーゴールド",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ainokt",
+ "japaneseText":"アイノカタチ feat.HIDE(GReeeeN)",
+ "englishUsText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "englishUsFontType":3,
+ "frenchText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "frenchFontType":3,
+ "italianText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "italianFontType":3,
+ "germanText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "germanFontType":3,
+ "spanishText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "spanishFontType":3,
+ "chineseTText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "chineseTFontType":1,
+ "koreanText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ainokt",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ainokt",
+ "japaneseText":"",
+ "englishUsText":"アイノカタチ feat.HIDE(GReeeeN)",
+ "englishUsFontType":0,
+ "frenchText":"アイノカタチ feat.HIDE(GReeeeN)",
+ "frenchFontType":0,
+ "italianText":"アイノカタチ feat.HIDE(GReeeeN)",
+ "italianFontType":0,
+ "germanText":"アイノカタチ feat.HIDE(GReeeeN)",
+ "germanFontType":0,
+ "spanishText":"アイノカタチ feat.HIDE(GReeeeN)",
+ "spanishFontType":0,
+ "chineseTText":"アイノカタチ feat.HIDE(GReeeeN)",
+ "chineseTFontType":0,
+ "koreanText":"アイノカタチ feat.HIDE(GReeeeN)",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ryusoj",
+ "japaneseText":"騎士竜戦隊リュウソウジャー",
+ "englishUsText":"Kishiryu Sentai Ryuusouja",
+ "englishUsFontType":3,
+ "frenchText":"Kishiryu Sentai Ryuusouja",
+ "frenchFontType":3,
+ "italianText":"Kishiryu Sentai Ryuusouja",
+ "italianFontType":3,
+ "germanText":"Kishiryu Sentai Ryuusouja",
+ "germanFontType":3,
+ "spanishText":"Kishiryu Sentai Ryuusouja",
+ "spanishFontType":3,
+ "chineseTText":"Kishiryu Sentai Ryuusouja",
+ "chineseTFontType":1,
+ "koreanText":"Kishiryu Sentai Ryuusouja",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ryusoj",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ryusoj",
+ "japaneseText":"",
+ "englishUsText":"騎士竜戦隊リュウソウジャー",
+ "englishUsFontType":0,
+ "frenchText":"騎士竜戦隊リュウソウジャー",
+ "frenchFontType":0,
+ "italianText":"騎士竜戦隊リュウソウジャー",
+ "italianFontType":0,
+ "germanText":"騎士竜戦隊リュウソウジャー",
+ "germanFontType":0,
+ "spanishText":"騎士竜戦隊リュウソウジャー",
+ "spanishFontType":0,
+ "chineseTText":"騎士竜戦隊リュウソウジャー",
+ "chineseTFontType":0,
+ "koreanText":"騎士竜戦隊リュウソウジャー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_digmon",
+ "japaneseText":"Butter-Fly",
+ "englishUsText":"Butter-Fly",
+ "englishUsFontType":3,
+ "frenchText":"Butter-Fly",
+ "frenchFontType":3,
+ "italianText":"Butter-Fly",
+ "italianFontType":3,
+ "germanText":"Butter-Fly",
+ "germanFontType":3,
+ "spanishText":"Butter-Fly",
+ "spanishFontType":3,
+ "chineseTText":"Butter-Fly",
+ "chineseTFontType":1,
+ "koreanText":"Butter-Fly",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_digmon",
+ "japaneseText":"「デジモンアドベンチャー」より",
+ "englishUsText":"from \" Digimon Adventure \"",
+ "englishUsFontType":3,
+ "frenchText":"de \" Digimon Adventure \"",
+ "frenchFontType":3,
+ "italianText":"da \" Digimon Adventure \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Digimon Adventure \"",
+ "germanFontType":3,
+ "spanishText":"De \" Digimon Adventure \"",
+ "spanishFontType":3,
+ "chineseTText":"来自「數碼寶貝 大冒險」",
+ "chineseTFontType":1,
+ "koreanText":"\" Digimon Adventure \"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_digmon",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_single01",
+ "japaneseText":"楽曲「マリーゴールド」配信中",
+ "englishUsText":"\"Marigold\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「Marigold」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Marigold」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_single02",
+ "japaneseText":"楽曲「アイノカタチ feat.HIDE(GReeeeN)」配信中",
+ "englishUsText":"\"Ainokatachi feat.HIDE(GReeeeN)\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「Ainokatachi feat.HIDE(GReeeeN)」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Ainokatachi feat.HIDE(GReeeeN)」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_single03",
+ "japaneseText":"楽曲「騎士竜戦隊リュウソウジャー」配信中",
+ "englishUsText":"\"Kishiryu Sentai Ryuusouja\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「Kishiryu Sentai Ryuusouja」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Kishiryu Sentai Ryuusouja」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_single04",
+ "japaneseText":"楽曲「Butter‐Fly」配信中",
+ "englishUsText":"\"Butter-Fly\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「Butter-Fly」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Butter-Fly」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_tatujin06",
+ "japaneseText":"「達人チャレンジパックVol.6」配信中",
+ "englishUsText":"Tatsujin Challenge Pack Vol. 6 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「達人Challenge Pack Vol.6」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「달인 Challenge Pack Vol.6」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_single05",
+ "japaneseText":"楽曲「あなたとトゥラッタッタ♪」配信中",
+ "englishUsText":"\"Anatato Turattatta♪\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「Anatato Turattatta♪」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Anata To Tu Lat Tat Ta♪」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_manpu9",
+ "japaneseText":"あなたとトゥラッタッタ♪",
+ "englishUsText":"Anata To Tu Lat Tat Ta♪",
+ "englishUsFontType":3,
+ "frenchText":"Anata To Tu Lat Tat Ta♪",
+ "frenchFontType":3,
+ "italianText":"Anata To Tu Lat Tat Ta♪",
+ "italianFontType":3,
+ "germanText":"Anata To Tu Lat Tat Ta♪",
+ "germanFontType":3,
+ "spanishText":"Anata To Tu Lat Tat Ta♪",
+ "spanishFontType":3,
+ "chineseTText":"Anata To Tu Lat Tat Ta♪",
+ "chineseTFontType":1,
+ "koreanText":"Anata To Tu Lat Tat Ta♪",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_manpu9",
+ "japaneseText":"DREAMS COME TRUE / 「まんぷく」より",
+ "englishUsText":"DREAMS COME TRUE",
+ "englishUsFontType":3,
+ "frenchText":"DREAMS COME TRUE",
+ "frenchFontType":3,
+ "italianText":"DREAMS COME TRUE",
+ "italianFontType":3,
+ "germanText":"DREAMS COME TRUE",
+ "germanFontType":3,
+ "spanishText":"DREAMS COME TRUE",
+ "spanishFontType":3,
+ "chineseTText":"DREAMS COME TRUE",
+ "chineseTFontType":1,
+ "koreanText":"DREAMS COME TRUE",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_manpu9",
+ "japaneseText":"",
+ "englishUsText":"あなたとトゥラッタッタ♪",
+ "englishUsFontType":0,
+ "frenchText":"あなたとトゥラッタッタ♪",
+ "frenchFontType":0,
+ "italianText":"あなたとトゥラッタッタ♪",
+ "italianFontType":0,
+ "germanText":"あなたとトゥラッタッタ♪",
+ "germanFontType":0,
+ "spanishText":"あなたとトゥラッタッタ♪",
+ "spanishFontType":0,
+ "chineseTText":"あなたとトゥラッタッタ♪",
+ "chineseTFontType":0,
+ "koreanText":"あなたとトゥラッタッタ♪",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_roki",
+ "japaneseText":"ロキ",
+ "englishUsText":"ROKI",
+ "englishUsFontType":3,
+ "frenchText":"ROKI",
+ "frenchFontType":3,
+ "italianText":"ROKI",
+ "italianFontType":3,
+ "germanText":"ROKI",
+ "germanFontType":3,
+ "spanishText":"ROKI",
+ "spanishFontType":3,
+ "chineseTText":"ROKI",
+ "chineseTFontType":1,
+ "koreanText":"ROKI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_roki",
+ "japaneseText":"みきとP feat.鏡音リン",
+ "englishUsText":"Mikito P feat.KAGAMINE RIN",
+ "englishUsFontType":3,
+ "frenchText":"Mikito P feat.KAGAMINE RIN",
+ "frenchFontType":3,
+ "italianText":"Mikito P feat.KAGAMINE RIN",
+ "italianFontType":3,
+ "germanText":"Mikito P feat.KAGAMINE RIN",
+ "germanFontType":3,
+ "spanishText":"Mikito P feat.KAGAMINE RIN",
+ "spanishFontType":3,
+ "chineseTText":"Mikito P feat. KAGAMINE RIN",
+ "chineseTFontType":1,
+ "koreanText":"Mikito P feat.KAGAMINE RIN",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_roki",
+ "japaneseText":"",
+ "englishUsText":"ロキ",
+ "englishUsFontType":0,
+ "frenchText":"ロキ",
+ "frenchFontType":0,
+ "italianText":"ロキ",
+ "italianFontType":0,
+ "germanText":"ロキ",
+ "germanFontType":0,
+ "spanishText":"ロキ",
+ "spanishFontType":0,
+ "chineseTText":"ロキ",
+ "chineseTFontType":0,
+ "koreanText":"ロキ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_vfpetr",
+ "japaneseText":"雨とペトラ",
+ "englishUsText":"Ameto Petora",
+ "englishUsFontType":3,
+ "frenchText":"Ameto Petora",
+ "frenchFontType":3,
+ "italianText":"Ameto Petora",
+ "italianFontType":3,
+ "germanText":"Ameto Petora",
+ "germanFontType":3,
+ "spanishText":"Ameto Petora",
+ "spanishFontType":3,
+ "chineseTText":"Ameto Petora",
+ "chineseTFontType":1,
+ "koreanText":"Ameto Petora",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_vfpetr",
+ "japaneseText":"バルーン feat.flower",
+ "englishUsText":"balloon feat. flower",
+ "englishUsFontType":3,
+ "frenchText":"balloon feat. flower",
+ "frenchFontType":3,
+ "italianText":"balloon feat. flower",
+ "italianFontType":3,
+ "germanText":"balloon feat. flower",
+ "germanFontType":3,
+ "spanishText":"balloon feat. flower",
+ "spanishFontType":3,
+ "chineseTText":"balloon feat.flower",
+ "chineseTFontType":1,
+ "koreanText":"벌룬 feat.flower",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_vfpetr",
+ "japaneseText":"",
+ "englishUsText":"雨とペトラ",
+ "englishUsFontType":0,
+ "frenchText":"雨とペトラ",
+ "frenchFontType":0,
+ "italianText":"雨とペトラ",
+ "italianFontType":0,
+ "germanText":"雨とペトラ",
+ "germanFontType":0,
+ "spanishText":"雨とペトラ",
+ "spanishFontType":0,
+ "chineseTText":"雨とペトラ",
+ "chineseTFontType":0,
+ "koreanText":"雨とペトラ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mikucp",
+ "japaneseText":"カンタービレ×パッシオーネ",
+ "englishUsText":"Cantabile×Passione",
+ "englishUsFontType":3,
+ "frenchText":"Cantabile×Passione",
+ "frenchFontType":3,
+ "italianText":"Cantabile×Passione",
+ "italianFontType":3,
+ "germanText":"Cantabile×Passione",
+ "germanFontType":3,
+ "spanishText":"Cantabile×Passione",
+ "spanishFontType":3,
+ "chineseTText":"Cantabile×Passione",
+ "chineseTFontType":1,
+ "koreanText":"Cantabile×Passione",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mikucp",
+ "japaneseText":"OSTER project feat.初音ミク 「戦闘摂理解析システム#コンパス」より",
+ "englishUsText":"OSTER project feat. HATSUNE MIKU",
+ "englishUsFontType":3,
+ "frenchText":"OSTER project feat. HATSUNE MIKU",
+ "frenchFontType":3,
+ "italianText":"OSTER project feat. HATSUNE MIKU",
+ "italianFontType":3,
+ "germanText":"OSTER project feat. HATSUNE MIKU",
+ "germanFontType":3,
+ "spanishText":"OSTER project feat. HATSUNE MIKU",
+ "spanishFontType":3,
+ "chineseTText":"OSTER project feat.初音未來",
+ "chineseTFontType":1,
+ "koreanText":"OSTER project feat.하츠네 미쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mikucp",
+ "japaneseText":"",
+ "englishUsText":"カンタービレ×パッシオーネ",
+ "englishUsFontType":0,
+ "frenchText":"カンタービレ×パッシオーネ",
+ "frenchFontType":0,
+ "italianText":"カンタービレ×パッシオーネ",
+ "italianFontType":0,
+ "germanText":"カンタービレ×パッシオーネ",
+ "germanFontType":0,
+ "spanishText":"カンタービレ×パッシオーネ",
+ "spanishFontType":0,
+ "chineseTText":"カンタービレ×パッシオーネ",
+ "chineseTFontType":0,
+ "koreanText":"カンタービレ×パッシオーネ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_gumijk",
+ "japaneseText":"重金属フューギティブ",
+ "englishUsText":"Heavymetal Fugitive",
+ "englishUsFontType":3,
+ "frenchText":"Heavymetal Fugitive",
+ "frenchFontType":3,
+ "italianText":"Heavymetal Fugitive",
+ "italianFontType":3,
+ "germanText":"Heavymetal Fugitive",
+ "germanFontType":3,
+ "spanishText":"Heavymetal Fugitive",
+ "spanishFontType":3,
+ "chineseTText":"重金属 Fugitive",
+ "chineseTFontType":1,
+ "koreanText":"Heavymetal Fugitive",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_gumijk",
+ "japaneseText":"リューイッティ",
+ "englishUsText":"Ryuwitty",
+ "englishUsFontType":3,
+ "frenchText":"Ryuwitty",
+ "frenchFontType":3,
+ "italianText":"Ryuwitty",
+ "italianFontType":3,
+ "germanText":"Ryuwitty",
+ "germanFontType":3,
+ "spanishText":"Ryuwitty",
+ "spanishFontType":3,
+ "chineseTText":"Ryuwitty",
+ "chineseTFontType":1,
+ "koreanText":"Ryuwitty",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_gumijk",
+ "japaneseText":"",
+ "englishUsText":"重金属フューギティブ",
+ "englishUsFontType":0,
+ "frenchText":"重金属フューギティブ",
+ "frenchFontType":0,
+ "italianText":"重金属フューギティブ",
+ "italianFontType":0,
+ "germanText":"重金属フューギティブ",
+ "germanFontType":0,
+ "spanishText":"重金属フューギティブ",
+ "spanishFontType":0,
+ "chineseTText":"重金属フューギティブ",
+ "chineseTFontType":0,
+ "koreanText":"重金属フューギティブ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mkftbt",
+ "japaneseText":"future beat",
+ "englishUsText":"future beat",
+ "englishUsFontType":3,
+ "frenchText":"future beat",
+ "frenchFontType":3,
+ "italianText":"future beat",
+ "italianFontType":3,
+ "germanText":"future beat",
+ "germanFontType":3,
+ "spanishText":"future beat",
+ "spanishFontType":3,
+ "chineseTText":"future beat",
+ "chineseTFontType":1,
+ "koreanText":"future beat",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mkftbt",
+ "japaneseText":"feat.ミライ小町",
+ "englishUsText":"feat.Mirai Komachi",
+ "englishUsFontType":3,
+ "frenchText":"feat.Mirai Komachi",
+ "frenchFontType":3,
+ "italianText":"feat.Mirai Komachi",
+ "italianFontType":3,
+ "germanText":"feat.Mirai Komachi",
+ "germanFontType":3,
+ "spanishText":"feat.Mirai Komachi",
+ "spanishFontType":3,
+ "chineseTText":"feat. Mirai Komachi",
+ "chineseTFontType":1,
+ "koreanText":"feat. Mirai Komachi",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mkftbt",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_clsgen",
+ "japaneseText":"幻想即興曲",
+ "englishUsText":"Fantaisie-Impromptu",
+ "englishUsFontType":3,
+ "frenchText":"Fantaisie-Impromptu",
+ "frenchFontType":3,
+ "italianText":"Fantasia-Improvviso",
+ "italianFontType":3,
+ "germanText":"Fantaisie-Impromptu",
+ "germanFontType":3,
+ "spanishText":"Fantaisie-Impromptu",
+ "spanishFontType":3,
+ "chineseTText":"幻想即興曲",
+ "chineseTFontType":1,
+ "koreanText":"환상 즉흥곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_clsgen",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_clsgen",
+ "japaneseText":"",
+ "englishUsText":"幻想即興曲",
+ "englishUsFontType":0,
+ "frenchText":"幻想即興曲",
+ "frenchFontType":0,
+ "italianText":"幻想即興曲",
+ "italianFontType":0,
+ "germanText":"幻想即興曲",
+ "germanFontType":0,
+ "spanishText":"幻想即興曲",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"幻想即興曲",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_bluert",
+ "japaneseText":"OK I’m blue rat",
+ "englishUsText":"OK I'm blue rat",
+ "englishUsFontType":3,
+ "frenchText":"OK I'm blue rat",
+ "frenchFontType":3,
+ "italianText":"OK I'm blue rat",
+ "italianFontType":3,
+ "germanText":"OK I'm blue rat",
+ "germanFontType":3,
+ "spanishText":"OK I'm blue rat",
+ "spanishFontType":3,
+ "chineseTText":"OK I’m blue rat",
+ "chineseTFontType":1,
+ "koreanText":"OK I’m blue rat",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_bluert",
+ "japaneseText":"E.G.G.",
+ "englishUsText":"E.G.G.",
+ "englishUsFontType":3,
+ "frenchText":"E.G.G.",
+ "frenchFontType":3,
+ "italianText":"E.G.G.",
+ "italianFontType":3,
+ "germanText":"E.G.G.",
+ "germanFontType":3,
+ "spanishText":"E.G.G.",
+ "spanishFontType":3,
+ "chineseTText":"E.G.G.",
+ "chineseTFontType":1,
+ "koreanText":"E.G.G.",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_bluert",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_phoeni",
+ "japaneseText":"Phoenix",
+ "englishUsText":"Phoenix",
+ "englishUsFontType":3,
+ "frenchText":"Phoenix",
+ "frenchFontType":3,
+ "italianText":"Phoenix",
+ "italianFontType":3,
+ "germanText":"Phoenix",
+ "germanFontType":3,
+ "spanishText":"Phoenix",
+ "spanishFontType":3,
+ "chineseTText":"Phoenix",
+ "chineseTFontType":1,
+ "koreanText":"Phoenix",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_phoeni",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_phoeni",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ikshim",
+ "japaneseText":"夢色コースター",
+ "englishUsText":"YUMEIRO Coaster",
+ "englishUsFontType":3,
+ "frenchText":"YUMEIRO Coaster",
+ "frenchFontType":3,
+ "italianText":"YUMEIRO Coaster",
+ "italianFontType":3,
+ "germanText":"YUMEIRO Coaster",
+ "germanFontType":3,
+ "spanishText":"YUMEIRO Coaster",
+ "spanishFontType":3,
+ "chineseTText":"夢色Coaster",
+ "chineseTFontType":1,
+ "koreanText":"유메이로 Coaster",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ikshim",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ikshim",
+ "japaneseText":"",
+ "englishUsText":"夢色コースター",
+ "englishUsFontType":0,
+ "frenchText":"夢色コースター",
+ "frenchFontType":0,
+ "italianText":"夢色コースター",
+ "italianFontType":0,
+ "germanText":"夢色コースター",
+ "germanFontType":0,
+ "spanishText":"夢色コースター",
+ "spanishFontType":0,
+ "chineseTText":"夢色コースター",
+ "chineseTFontType":0,
+ "koreanText":"夢色コースター",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mrrun",
+ "japaneseText":"Mr.ランナー",
+ "englishUsText":"Mr. runner",
+ "englishUsFontType":3,
+ "frenchText":"Mr. runner",
+ "frenchFontType":3,
+ "italianText":"Mr. runner",
+ "italianFontType":3,
+ "germanText":"Mr. runner",
+ "germanFontType":3,
+ "spanishText":"Mr. runner",
+ "spanishFontType":3,
+ "chineseTText":"Mr. runner",
+ "chineseTFontType":1,
+ "koreanText":"Mr.runner",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mrrun",
+ "japaneseText":"MOES feat. singman",
+ "englishUsText":"MOES feat. singman",
+ "englishUsFontType":3,
+ "frenchText":"MOES feat. singman",
+ "frenchFontType":3,
+ "italianText":"MOES feat. singman",
+ "italianFontType":3,
+ "germanText":"MOES feat. singman",
+ "germanFontType":3,
+ "spanishText":"MOES feat. singman",
+ "spanishFontType":3,
+ "chineseTText":"MOES feat. singman",
+ "chineseTFontType":1,
+ "koreanText":"MOES feat. singman",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mrrun",
+ "japaneseText":"",
+ "englishUsText":"Mr.ランナー",
+ "englishUsFontType":0,
+ "frenchText":"Mr.ランナー",
+ "frenchFontType":0,
+ "italianText":"Mr.ランナー",
+ "italianFontType":0,
+ "germanText":"Mr.ランナー",
+ "germanFontType":0,
+ "spanishText":"Mr.ランナー",
+ "spanishFontType":0,
+ "chineseTText":"Mr.ランナー",
+ "chineseTFontType":0,
+ "koreanText":"Mr.ランナー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_hypmic",
+ "japaneseText":"ヒプノシスマイク -Division Battle Anthem-",
+ "englishUsText":"HYPNOSISMIC -Division Battle Anthem-",
+ "englishUsFontType":3,
+ "frenchText":"HYPNOSISMIC -Division Battle Anthem-",
+ "frenchFontType":3,
+ "italianText":"HYPNOSISMIC -Division Battle Anthem-",
+ "italianFontType":3,
+ "germanText":"HYPNOSISMIC -Division Battle Anthem-",
+ "germanFontType":3,
+ "spanishText":"HYPNOSISMIC -Division Battle Anthem-",
+ "spanishFontType":3,
+ "chineseTText":"HYPNOSISMIC -Division Battle Anthem-",
+ "chineseTFontType":1,
+ "koreanText":"HYPNOSISMIC -Division Battle Anthem-",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_hypmic",
+ "japaneseText":"Division All Stars",
+ "englishUsText":"Division All Stars",
+ "englishUsFontType":3,
+ "frenchText":"Division All Stars",
+ "frenchFontType":3,
+ "italianText":"Division All Stars",
+ "italianFontType":3,
+ "germanText":"Division All Stars",
+ "germanFontType":3,
+ "spanishText":"Division All Stars",
+ "spanishFontType":3,
+ "chineseTText":"Division All Stars",
+ "chineseTFontType":1,
+ "koreanText":"Division All Stars",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_hypmic",
+ "japaneseText":"",
+ "englishUsText":"ヒプノシスマイク -Division Battle Anthem-",
+ "englishUsFontType":0,
+ "frenchText":"ヒプノシスマイク -Division Battle Anthem-",
+ "frenchFontType":0,
+ "italianText":"ヒプノシスマイク -Division Battle Anthem-",
+ "italianFontType":0,
+ "germanText":"ヒプノシスマイク -Division Battle Anthem-",
+ "germanFontType":0,
+ "spanishText":"ヒプノシスマイク -Division Battle Anthem-",
+ "spanishFontType":0,
+ "chineseTText":"ヒプノシスマイク -Division Battle Anthem-",
+ "chineseTFontType":0,
+ "koreanText":"ヒプノシスマイク -Division Battle Anthem-",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_single06",
+ "japaneseText":"楽曲「ヒプノシスマイク -Division Battle Anthem-」配信中",
+ "englishUsText":"\"HYPNOSISMIC -Division Battle Anthem-\"song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「HYPNOSISMIC -Division Battle Anthem-」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「HYPNOSISMIC -Division Battle Anthem-」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_vocaropack03",
+ "japaneseText":"「ボーカロイド™曲パックVol.3」配信中",
+ "englishUsText":"VOCALOID™ Music Pack Vol. 3 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「VOCALOID™ Music PackVol.3」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「VOCALOID™ Music Pack Vol.3」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_tatujin07",
+ "japaneseText":"「達人チャレンジパックVol.7」配信中",
+ "englishUsText":"Tatsujin Challenge Pack Vol. 7 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「達人Challenge Pack Vol.7」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「달인 Challenge Pack Vol.7」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_konant",
+ "japaneseText":"名探偵コナン メイン・テーマ",
+ "englishUsText":"Detective Conan, main theme",
+ "englishUsFontType":3,
+ "frenchText":"Detective Conan, main theme",
+ "frenchFontType":3,
+ "italianText":"Detective Conan, main theme",
+ "italianFontType":3,
+ "germanText":"Detective Conan, main theme",
+ "germanFontType":3,
+ "spanishText":"Detective Conan, main theme",
+ "spanishFontType":3,
+ "chineseTText":"名偵探柯南 主題音樂",
+ "chineseTFontType":1,
+ "koreanText":"명탐정 코난・테마 곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_konant",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_konant",
+ "japaneseText":"",
+ "englishUsText":"名探偵コナン メイン・テーマ",
+ "englishUsFontType":0,
+ "frenchText":"名探偵コナン メイン・テーマ",
+ "frenchFontType":0,
+ "italianText":"名探偵コナン メイン・テーマ",
+ "italianFontType":0,
+ "germanText":"名探偵コナン メイン・テーマ",
+ "germanFontType":0,
+ "spanishText":"名探偵コナン メイン・テーマ",
+ "spanishFontType":0,
+ "chineseTText":"名探偵コナン メイン・テーマ",
+ "chineseTFontType":0,
+ "koreanText":"名探偵コナン メイン・テーマ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_konanc",
+ "japaneseText":"カウントダウン",
+ "englishUsText":"Count Down",
+ "englishUsFontType":3,
+ "frenchText":"Count Down",
+ "frenchFontType":3,
+ "italianText":"Count Down",
+ "italianFontType":3,
+ "germanText":"Count Down",
+ "germanFontType":3,
+ "spanishText":"Count Down",
+ "spanishFontType":3,
+ "chineseTText":"Count Down",
+ "chineseTFontType":1,
+ "koreanText":"Count Down",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_konanc",
+ "japaneseText":"「名探偵コナン」より",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"來自「名偵探柯南」",
+ "chineseTFontType":1,
+ "koreanText":"\"명탐정 코난\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_konanc",
+ "japaneseText":"",
+ "englishUsText":"カウントダウン",
+ "englishUsFontType":0,
+ "frenchText":"カウントダウン",
+ "frenchFontType":0,
+ "italianText":"カウントダウン",
+ "italianFontType":0,
+ "germanText":"カウントダウン",
+ "germanFontType":0,
+ "spanishText":"カウントダウン",
+ "spanishFontType":0,
+ "chineseTText":"カウントダウン",
+ "chineseTFontType":0,
+ "koreanText":"カウントダウン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_bluesa",
+ "japaneseText":"BLUE SAPPHIRE",
+ "englishUsText":"BLUE SAPPHIRE",
+ "englishUsFontType":3,
+ "frenchText":"BLUE SAPPHIRE",
+ "frenchFontType":3,
+ "italianText":"BLUE SAPPHIRE",
+ "italianFontType":3,
+ "germanText":"BLUE SAPPHIRE",
+ "germanFontType":3,
+ "spanishText":"BLUE SAPPHIRE",
+ "spanishFontType":3,
+ "chineseTText":"BLUE SAPPHIRE",
+ "chineseTFontType":1,
+ "koreanText":"BLUE SAPPHIRE",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_bluesa",
+ "japaneseText":"「名探偵コナン 紺青の拳」より",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"來自「名偵探柯南 紺青之拳」",
+ "chineseTFontType":1,
+ "koreanText":"\"명탐정 코난 : 감청의 권\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_bluesa",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_udtmgl",
+ "japaneseText":"MEGALOVANIA",
+ "englishUsText":"MEGALOVANIA",
+ "englishUsFontType":3,
+ "frenchText":"MEGALOVANIA",
+ "frenchFontType":3,
+ "italianText":"MEGALOVANIA",
+ "italianFontType":3,
+ "germanText":"MEGALOVANIA",
+ "germanFontType":3,
+ "spanishText":"MEGALOVANIA",
+ "spanishFontType":3,
+ "chineseTText":"MEGALOVANIA",
+ "chineseTFontType":1,
+ "koreanText":"MEGALOVANIA",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_udtmgl",
+ "japaneseText":"「UNDERTALE」より",
+ "englishUsText":"From \" UNDERTALE \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" UNDERTALE \"",
+ "frenchFontType":3,
+ "italianText":"da \" UNDERTALE \"",
+ "italianFontType":3,
+ "germanText":"Aus \" UNDERTALE \"",
+ "germanFontType":3,
+ "spanishText":"De \" UNDERTALE \"",
+ "spanishFontType":3,
+ "chineseTText":"来自「UNDERTALE」",
+ "chineseTFontType":1,
+ "koreanText":"\"UNDERTALE\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_udtmgl",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_udtkkr",
+ "japaneseText":"心の痛み",
+ "englishUsText":"Heartache",
+ "englishUsFontType":3,
+ "frenchText":"Heartache",
+ "frenchFontType":3,
+ "italianText":"Heartache",
+ "italianFontType":3,
+ "germanText":"Heartache",
+ "germanFontType":3,
+ "spanishText":"Heartache",
+ "spanishFontType":3,
+ "chineseTText":"Heartache",
+ "chineseTFontType":1,
+ "koreanText":"Heartache",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_udtkkr",
+ "japaneseText":"「UNDERTALE」より",
+ "englishUsText":"From \" UNDERTALE \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" UNDERTALE \"",
+ "frenchFontType":3,
+ "italianText":"da \" UNDERTALE \"",
+ "italianFontType":3,
+ "germanText":"Aus \" UNDERTALE \"",
+ "germanFontType":3,
+ "spanishText":"De \" UNDERTALE \"",
+ "spanishFontType":3,
+ "chineseTText":"来自「UNDERTALE」",
+ "chineseTFontType":1,
+ "koreanText":"\"UNDERTALE\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_udtkkr",
+ "japaneseText":"",
+ "englishUsText":"心の痛み",
+ "englishUsFontType":0,
+ "frenchText":"心の痛み",
+ "frenchFontType":0,
+ "italianText":"心の痛み",
+ "italianFontType":0,
+ "germanText":"心の痛み",
+ "germanFontType":0,
+ "spanishText":"心の痛み",
+ "spanishFontType":0,
+ "chineseTText":"心の痛み",
+ "chineseTFontType":0,
+ "koreanText":"心の痛み",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_udtymt",
+ "japaneseText":"夢と希望",
+ "englishUsText":"Hopes and Dreams",
+ "englishUsFontType":3,
+ "frenchText":"Hopes and Dreams",
+ "frenchFontType":3,
+ "italianText":"Hopes and Dreams",
+ "italianFontType":3,
+ "germanText":"Hopes and Dreams",
+ "germanFontType":3,
+ "spanishText":"Hopes and Dreams",
+ "spanishFontType":3,
+ "chineseTText":"Hopes and Dreams",
+ "chineseTFontType":1,
+ "koreanText":"Hopes and Dreams",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_udtymt",
+ "japaneseText":"「UNDERTALE」より",
+ "englishUsText":"From \" UNDERTALE \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" UNDERTALE \"",
+ "frenchFontType":3,
+ "italianText":"da \" UNDERTALE \"",
+ "italianFontType":3,
+ "germanText":"Aus \" UNDERTALE \"",
+ "germanFontType":3,
+ "spanishText":"De \" UNDERTALE \"",
+ "spanishFontType":3,
+ "chineseTText":"来自「UNDERTALE」",
+ "chineseTFontType":1,
+ "koreanText":"\"UNDERTALE\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_udtymt",
+ "japaneseText":"",
+ "englishUsText":"夢と希望",
+ "englishUsFontType":0,
+ "frenchText":"夢と希望",
+ "frenchFontType":0,
+ "italianText":"夢と希望",
+ "italianFontType":0,
+ "germanText":"夢と希望",
+ "germanFontType":0,
+ "spanishText":"夢と希望",
+ "spanishFontType":0,
+ "chineseTText":"夢と希望",
+ "chineseTFontType":0,
+ "koreanText":"夢と希望",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_konan",
+ "japaneseText":"「名探偵コナンパック」配信中",
+ "englishUsText":"Detective Conan Pack now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「名偵探柯南Pack」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「명탐정 코난 Pack」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_undertale",
+ "japaneseText":"「UNDERTALEパック」配信中",
+ "englishUsText":"UNDERTALE Pack now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「UNDERTALEPack」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「UNDERTALE Pack」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_wegos",
+ "japaneseText":"ウィーゴー!",
+ "englishUsText":"We Go!",
+ "englishUsFontType":3,
+ "frenchText":"We Go!",
+ "frenchFontType":3,
+ "italianText":"We Go!",
+ "italianFontType":3,
+ "germanText":"We Go!",
+ "germanFontType":3,
+ "spanishText":"We Go!",
+ "spanishFontType":3,
+ "chineseTText":"We Go!",
+ "chineseTFontType":1,
+ "koreanText":"We Go!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_wegos",
+ "japaneseText":"「ワンピース」より",
+ "englishUsText":"From \" One Piece \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" One Piece \"",
+ "frenchFontType":3,
+ "italianText":"da \" One Piece \"",
+ "italianFontType":3,
+ "germanText":"Aus \" One Piece \"",
+ "germanFontType":3,
+ "spanishText":"De \" One Piece \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「航海王」",
+ "chineseTFontType":1,
+ "koreanText":"\"원피스\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_wegos",
+ "japaneseText":"",
+ "englishUsText":"ウィーゴー!",
+ "englishUsFontType":0,
+ "frenchText":"ウィーゴー!",
+ "frenchFontType":0,
+ "italianText":"ウィーゴー!",
+ "italianFontType":0,
+ "germanText":"ウィーゴー!",
+ "germanFontType":0,
+ "spanishText":"ウィーゴー!",
+ "spanishFontType":0,
+ "chineseTText":"ウィーゴー!",
+ "chineseTFontType":0,
+ "koreanText":"ウィーゴー!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_wecan",
+ "japaneseText":"ウィーキャン!",
+ "englishUsText":"We Can!",
+ "englishUsFontType":3,
+ "frenchText":"We Can!",
+ "frenchFontType":3,
+ "italianText":"We Can!",
+ "italianFontType":3,
+ "germanText":"We Can!",
+ "germanFontType":3,
+ "spanishText":"We Can!",
+ "spanishFontType":3,
+ "chineseTText":"We Can!",
+ "chineseTFontType":1,
+ "koreanText":"We Can!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_wecan",
+ "japaneseText":"「ワンピース」より",
+ "englishUsText":"From \" One Piece \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" One Piece \"",
+ "frenchFontType":3,
+ "italianText":"da \" One Piece \"",
+ "italianFontType":3,
+ "germanText":"Aus \" One Piece \"",
+ "germanFontType":3,
+ "spanishText":"De \" One Piece \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「航海王」",
+ "chineseTFontType":1,
+ "koreanText":"\"원피스\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_wecan",
+ "japaneseText":"",
+ "englishUsText":"ウィーキャン!",
+ "englishUsFontType":0,
+ "frenchText":"ウィーキャン!",
+ "frenchFontType":0,
+ "italianText":"ウィーキャン!",
+ "italianFontType":0,
+ "germanText":"ウィーキャン!",
+ "germanFontType":0,
+ "spanishText":"ウィーキャン!",
+ "spanishFontType":0,
+ "chineseTText":"ウィーキャン!",
+ "chineseTFontType":0,
+ "koreanText":"ウィーキャン!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_1psovt",
+ "japaneseText":"OVER THE TOP",
+ "englishUsText":"OVER THE TOP",
+ "englishUsFontType":3,
+ "frenchText":"OVER THE TOP",
+ "frenchFontType":3,
+ "italianText":"OVER THE TOP",
+ "italianFontType":3,
+ "germanText":"OVER THE TOP",
+ "germanFontType":3,
+ "spanishText":"OVER THE TOP",
+ "spanishFontType":3,
+ "chineseTText":"OVER THE TOP",
+ "chineseTFontType":1,
+ "koreanText":"OVER THE TOP",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_1psovt",
+ "japaneseText":"ONE PIECEワノ国編主題歌",
+ "englishUsText":"One Piece / LAND OF WANO, Theme song",
+ "englishUsFontType":3,
+ "frenchText":"One Piece / LAND OF WANO, Theme song",
+ "frenchFontType":3,
+ "italianText":"One Piece / LAND OF WANO, Theme song",
+ "italianFontType":3,
+ "germanText":"One Piece / LAND OF WANO, Theme song",
+ "germanFontType":3,
+ "spanishText":"One Piece / LAND OF WANO, Theme song",
+ "spanishFontType":3,
+ "chineseTText":"航海王 和之國篇 主題曲",
+ "chineseTFontType":1,
+ "koreanText":"원피스 무사의 나라 편 주제가",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_1psovt",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_clslu7",
+ "japaneseText":"其方、激昂",
+ "englishUsText":"SONATA, GEKKO",
+ "englishUsFontType":3,
+ "frenchText":"SONATA, GEKKO",
+ "frenchFontType":3,
+ "italianText":"SONATA, GEKKO",
+ "italianFontType":3,
+ "germanText":"SONATA, GEKKO",
+ "germanFontType":3,
+ "spanishText":"SONATA, GEKKO",
+ "spanishFontType":3,
+ "chineseTText":"其方, 激昂",
+ "chineseTFontType":1,
+ "koreanText":"소나타, 겟코우",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_clslu7",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_clslu7",
+ "japaneseText":"",
+ "englishUsText":"其方、激昂",
+ "englishUsFontType":0,
+ "frenchText":"其方、激昂",
+ "frenchFontType":0,
+ "italianText":"其方、激昂",
+ "italianFontType":0,
+ "germanText":"其方、激昂",
+ "germanFontType":0,
+ "spanishText":"其方、激昂",
+ "spanishFontType":0,
+ "chineseTText":"其方、激昂",
+ "chineseTFontType":0,
+ "koreanText":"其方、激昂",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kagmtm",
+ "japaneseText":"輝きを求めて",
+ "englishUsText":"KAGAYAKI WO MOTOMETE",
+ "englishUsFontType":3,
+ "frenchText":"KAGAYAKI WO MOTOMETE",
+ "frenchFontType":3,
+ "italianText":"KAGAYAKI WO MOTOMETE",
+ "italianFontType":3,
+ "germanText":"KAGAYAKI WO MOTOMETE",
+ "germanFontType":3,
+ "spanishText":"KAGAYAKI WO MOTOMETE",
+ "spanishFontType":3,
+ "chineseTText":"KAGAYAKI WO MOTOMETE",
+ "chineseTFontType":1,
+ "koreanText":"KAGAYAKI WO MOTOMETE",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_kagmtm",
+ "japaneseText":"Versus",
+ "englishUsText":"Versus",
+ "englishUsFontType":3,
+ "frenchText":"Versus",
+ "frenchFontType":3,
+ "italianText":"Versus",
+ "italianFontType":3,
+ "germanText":"Versus",
+ "germanFontType":3,
+ "spanishText":"Versus",
+ "spanishFontType":3,
+ "chineseTText":"Versus",
+ "chineseTFontType":1,
+ "koreanText":"Versus",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kagmtm",
+ "japaneseText":"",
+ "englishUsText":"輝きを求めて",
+ "englishUsFontType":0,
+ "frenchText":"輝きを求めて",
+ "frenchFontType":0,
+ "italianText":"輝きを求めて",
+ "italianFontType":0,
+ "germanText":"輝きを求めて",
+ "germanFontType":0,
+ "spanishText":"輝きを求めて",
+ "spanishFontType":0,
+ "chineseTText":"輝きを求めて",
+ "chineseTFontType":0,
+ "koreanText":"輝きを求めて",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_rgod",
+ "japaneseText":"らいとにんぐ ぱっしょん",
+ "englishUsText":"Lightning Passion",
+ "englishUsFontType":3,
+ "frenchText":"Lightning Passion",
+ "frenchFontType":3,
+ "italianText":"Lightning Passion",
+ "italianFontType":3,
+ "germanText":"Lightning Passion",
+ "germanFontType":3,
+ "spanishText":"Lightning Passion",
+ "spanishFontType":3,
+ "chineseTText":"Lightning Passion",
+ "chineseTFontType":1,
+ "koreanText":"Lightning Passion",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_rgod",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_rgod",
+ "japaneseText":"",
+ "englishUsText":"らいとにんぐ ぱっしょん",
+ "englishUsFontType":0,
+ "frenchText":"らいとにんぐ ぱっしょん",
+ "frenchFontType":0,
+ "italianText":"らいとにんぐ ぱっしょん",
+ "italianFontType":0,
+ "germanText":"らいとにんぐ ぱっしょん",
+ "germanFontType":0,
+ "spanishText":"らいとにんぐ ぱっしょん",
+ "spanishFontType":0,
+ "chineseTText":"らいとにんぐ ぱっしょん",
+ "chineseTFontType":0,
+ "koreanText":"らいとにんぐ ぱっしょん",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_shinyk",
+ "japaneseText":"Shiny Kung-fu Revival",
+ "englishUsText":"Shiny Kung-fu Revival",
+ "englishUsFontType":3,
+ "frenchText":"Shiny Kung-fu Revival",
+ "frenchFontType":3,
+ "italianText":"Shiny Kung-fu Revival",
+ "italianFontType":3,
+ "germanText":"Shiny Kung-fu Revival",
+ "germanFontType":3,
+ "spanishText":"Shiny Kung-fu Revival",
+ "spanishFontType":3,
+ "chineseTText":"Shiny Kung-fu Revival",
+ "chineseTFontType":1,
+ "koreanText":"Shiny Kung-fu Revival",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_shinyk",
+ "japaneseText":"t+pazolite",
+ "englishUsText":"t+pazolite",
+ "englishUsFontType":3,
+ "frenchText":"t+pazolite",
+ "frenchFontType":3,
+ "italianText":"t+pazolite",
+ "italianFontType":3,
+ "germanText":"t+pazolite",
+ "germanFontType":3,
+ "spanishText":"t+pazolite",
+ "spanishFontType":3,
+ "chineseTText":"t+pazolite",
+ "chineseTFontType":1,
+ "koreanText":"t+pazolite",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_shinyk",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ypp",
+ "japaneseText":"太陽もヤッパッパー",
+ "englishUsText":"TAIYO MO YAPAPA",
+ "englishUsFontType":3,
+ "frenchText":"TAIYO MO YAPAPA",
+ "frenchFontType":3,
+ "italianText":"TAIYO MO YAPAPA",
+ "italianFontType":3,
+ "germanText":"TAIYO MO YAPAPA",
+ "germanFontType":3,
+ "spanishText":"TAIYO MO YAPAPA",
+ "spanishFontType":3,
+ "chineseTText":"太陽也YAPAPA",
+ "chineseTFontType":1,
+ "koreanText":"타이요우모 얏파파",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ypp",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ypp",
+ "japaneseText":"",
+ "englishUsText":"太陽もヤッパッパー",
+ "englishUsFontType":0,
+ "frenchText":"太陽もヤッパッパー",
+ "frenchFontType":0,
+ "italianText":"太陽もヤッパッパー",
+ "italianFontType":0,
+ "germanText":"太陽もヤッパッパー",
+ "germanFontType":0,
+ "spanishText":"太陽もヤッパッパー",
+ "spanishFontType":0,
+ "chineseTText":"太陽もヤッパッパー",
+ "chineseTFontType":0,
+ "koreanText":"太陽もヤッパッパー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kakunin1",
+ "japaneseText":"確認テスト",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_kakunin1",
+ "japaneseText":"ファースト",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kakunin1",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kakunin2",
+ "japaneseText":"確認テスト",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_kakunin2",
+ "japaneseText":"セカンド",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kakunin2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kakunin3",
+ "japaneseText":"確認テスト",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_kakunin3",
+ "japaneseText":"サード",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kakunin3",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_wanp",
+ "japaneseText":"「ワンピース主題歌パック」配信中",
+ "englishUsText":"ONE PIECE Anime Songs Pack now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「航海王 動畫音樂Pack」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「원피스 애니메이션 음악 Pack」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_donder01",
+ "japaneseText":"「ドンだーパック -ライトニング-」配信中",
+ "englishUsText":"Donder Pack -Lightning- now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「Donder Pack -Lightning-」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「태고러 팩 -Lightning-」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_online_battle",
+ "japaneseText":"オンラインバトル",
+ "englishUsText":"Online Battle",
+ "englishUsFontType":3,
+ "frenchText":"Bataille en ligne",
+ "frenchFontType":3,
+ "italianText":"Battaglia online",
+ "italianFontType":3,
+ "germanText":"Onlinekampf",
+ "germanFontType":3,
+ "spanishText":"Batalla en línea",
+ "spanishFontType":3,
+ "chineseTText":"線上對戰",
+ "chineseTFontType":1,
+ "koreanText":"온라인 배틀",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_rankmatch",
+ "japaneseText":"オンラインランクマッチ",
+ "englishUsText":"Online Ranking Match",
+ "englishUsFontType":3,
+ "frenchText":"Match classé en ligne",
+ "frenchFontType":3,
+ "italianText":"Partita class. online",
+ "italianFontType":3,
+ "germanText":"Online-Ranglisten-Partie",
+ "germanFontType":3,
+ "spanishText":"Partida de clasificación en línea",
+ "spanishFontType":3,
+ "chineseTText":"線上排名戰",
+ "chineseTFontType":1,
+ "koreanText":"온라인 랭크 매치",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_tournament",
+ "japaneseText":"eスポーツトーナメント",
+ "englishUsText":"E-Sports Tournament",
+ "englishUsFontType":3,
+ "frenchText":"Tournoi E-Sports",
+ "frenchFontType":3,
+ "italianText":"Torneo di eSport",
+ "italianFontType":3,
+ "germanText":"eSports-Turnier",
+ "germanFontType":3,
+ "spanishText":"Torneo de E-Sports",
+ "spanishFontType":3,
+ "chineseTText":"電競錦標賽",
+ "chineseTFontType":1,
+ "koreanText":"e스포츠 토너먼트",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_privatematch",
+ "japaneseText":"プライベートマッチ",
+ "englishUsText":"Private Match",
+ "englishUsFontType":3,
+ "frenchText":"Match privé",
+ "frenchFontType":3,
+ "italianText":"Partita privata",
+ "italianFontType":3,
+ "germanText":"Private Partie",
+ "germanFontType":3,
+ "spanishText":"Partida privada",
+ "spanishFontType":3,
+ "chineseTText":"私人對戰",
+ "chineseTFontType":1,
+ "koreanText":"프라이빗 매치",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_comment_rankmatch",
+ "japaneseText":"インターネットをつかって世界中の人たちと\n演奏ゲームで対戦をすることができます",
+ "englishUsText":"Go online and battle players from around the world!",
+ "englishUsFontType":3,
+ "frenchText":"Connecte-toi et affronte des joueurs du monde entier !",
+ "frenchFontType":3,
+ "italianText":"Combatti online contro giocatori da tutto il mondo!",
+ "italianFontType":3,
+ "germanText":"Spiele online gegen Spieler aus aller Welt!",
+ "germanFontType":3,
+ "spanishText":"¡Juega en línea contra jugadores de todo el mundo!",
+ "spanishFontType":3,
+ "chineseTText":"能連接上網路與全世界的人們進行演奏遊戲的對戰",
+ "chineseTFontType":1,
+ "koreanText":"인터넷을 이용해서 전 세계 사람들과\n연주 모드로 대전할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_comment_battle",
+ "japaneseText":"インターネットをつかって世界中の人たちと\nランクマッチやトーナメントで演奏ゲーム対決を楽しめます",
+ "englishUsText":"Go online and battle players from around the world in Ranked Match and Tournament modes!",
+ "englishUsFontType":3,
+ "frenchText":"Connecte-toi et affronte des joueurs du monde entier dans les modes Match classé et Tournoi !",
+ "frenchFontType":3,
+ "italianText":"Gioca online e affronta giocatori da tutto il mondo in partite classificate e tornei!",
+ "italianFontType":3,
+ "germanText":"Spiele online gegen Spieler aus aller Welt in Ranglisten-Partien und Turnier-Modi!",
+ "germanFontType":3,
+ "spanishText":"¡Juega en línea contra jugadores de todo el mundo en partidas igualadas y modos Torneo!",
+ "spanishFontType":3,
+ "chineseTText":"連上網路與全世界的人們在排名對戰或錦標賽裡\n享受演奏遊戲對決的樂趣",
+ "chineseTFontType":1,
+ "koreanText":"인터넷을 이용해서 전 세계 사람들과\n랭크 매치나 토너먼트로 연주 대결을 즐길 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_comment_online",
+ "japaneseText":"世界中の人たちと、ランクマッチやトーナメントで演奏ゲーム対決を楽しめます\nプライベートマッチでは、ともだちとなかよく演奏や演奏対決を楽しめます",
+ "englishUsText":"Go online and enjoy Ranked Matches and Tournament Matches against players from around the world.\nPrivate Match lets you play together with friends in Co-Op and VS Match modes.",
+ "englishUsFontType":3,
+ "frenchText":"Connecte-toi pour profiter de matchs classés et de matchs de tournoi contre des joueurs du monde entier.\nMatch privé permet de jouer en modes Coop et Match VS entre amis.",
+ "frenchFontType":3,
+ "italianText":"Vai online e gioca partite classificate e partite del Torneo sfidando giocatori da tutto il mondo.\nLe partite private ti consentono di giocare con gli amici nelle modalità Coop e Partita VS.",
+ "italianFontType":3,
+ "germanText":"Spiele online und stelle dich in Ranglisten-Partien und Turnier-Partien Gegnern aus aller Welt.\nIn privaten Partien kannst du mit Freunden zusammen Koop-Sessions und VS-Partien spielen.",
+ "germanFontType":3,
+ "spanishText":"Conéctate y disfruta de partidas igualadas y partidas de torneo contra jugadores de todo el mundo.\nEl modo Partida privada te permitirá jugar junto con tus amigos tanto en Partida colaborativa como en Combate.",
+ "spanishFontType":3,
+ "chineseTText":"與全世界的人們在排名對戰或錦標賽裡享受演奏遊戲對決的樂趣\n在私人對戰裡則能與好友遊玩同樂演奏或演奏對決",
+ "chineseTFontType":1,
+ "koreanText":"전 세계 사람들과 랭크 매치나 토너먼트로 연주 대결을 즐길 수 있습니다.\n프라이빗 매치로는 친구와 사이좋게 연주하거나 연주 대결을 즐길 수 있습니다.",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_connecting",
+ "japaneseText":"インターネットに接続しています",
+ "englishUsText":"Now connecting to the Internet.",
+ "englishUsFontType":3,
+ "frenchText":"Connexion à Internet en cours.",
+ "frenchFontType":3,
+ "italianText":"Connessione a Internet in corso...",
+ "italianFontType":3,
+ "germanText":"Verbindung zum Internet wird hergestellt.",
+ "germanFontType":3,
+ "spanishText":"Conectándose a Internet.",
+ "spanishFontType":3,
+ "chineseTText":"連接網路中",
+ "chineseTFontType":1,
+ "koreanText":"인터넷에 접속하고 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_update_online",
+ "japaneseText":"新モード「オンラインランクマッチ」登場!\n\nインターネットをつかって世界中の人たちと\n演奏ゲームで対戦をしよう!",
+ "englishUsText":"Online Ranking Match now available!\nGo online and battle players from around the world!",
+ "englishUsFontType":3,
+ "frenchText":"Les Matchs classés en ligne sont disponibles !\nConnecte-toi et affronte des joueurs du monde entier !",
+ "frenchFontType":3,
+ "italianText":"Partite classificate online ora disponibili!\nCombatti online contro giocatori da tutto il mondo!",
+ "italianFontType":3,
+ "germanText":"Online-Ranglisten-Partie jetzt verfügbar!\nSpiele online gegen Spieler aus aller Welt!",
+ "germanFontType":3,
+ "spanishText":"¡Partida de clasificación en línea ya está disponible!\n¡Enfréntate a jugadores de todo el mundo!",
+ "spanishFontType":3,
+ "chineseTText":"新模式「線上排名戰」登場!\n\n連接上網路與全世界的人們進行演奏遊戲的對戰吧!",
+ "chineseTFontType":1,
+ "koreanText":"신 모드 「온라인 랭크 매치」 등장!\n\n인터넷을 이용해서 전 세계 사람들과\n연주 모드로 대전하자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_update_taisen3",
+ "japaneseText":"新対戦モード「ドンカツファイト」登場!\n\n演奏しながら体力をけずり合う、\nアツいファイトが楽しめます",
+ "englishUsText":"Introducing a brand new versus mode, DON KATSU FIGHT!\n\nPerform well to whittle down your opponent's HP in this\nfun and furious battle mode!",
+ "englishUsFontType":3,
+ "frenchText":"Présentation d'un nouveau mode versus, DUEL DON KATSU !\n\nJoue au mieux pour réduire les PV de ton adversaire\ndans ce mode de bataille fun et frénétique !",
+ "frenchFontType":3,
+ "italianText":"Ecco a voi una nuova modalità Versus, DUELLO DON KATSU!\n\nSuona bene per ridurre i PS dell'avversario\nin questa divertente e furiosa modalità competitiva!",
+ "italianFontType":3,
+ "germanText":"Wir stellen einen neuen Versus-Modus vor: DON KATSU FIGHT!\n\nLege eine gute Performance hin, um die Energie deines Geg-\nners in diesem spaßigen Kampf-Modus zu reduzieren!",
+ "germanFontType":3,
+ "spanishText":"¡Presentamos el nuevo modo Versus: PELEA DON KATSU!\n\n¡Hazlo bien para reducir la salud de tu adversario en este\ndivertido y feroz modo de combate!",
+ "spanishFontType":3,
+ "chineseTText":"新對戰模式「咚咔對戰」登場!\n一邊演奏相互削減對方的體力,享受火熱般的戰鬥",
+ "chineseTFontType":1,
+ "koreanText":"신 대전 모드 「동이 딱이 FIGHT」 등장!\n\n연주하면서 서로의 체력을 깎는\n뜨거운 대전을 즐길 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_update_mission",
+ "japaneseText":"「オンラインランクマッチ」に「ごほうびミッション」が登場!\n\nミッションを期間内にクリアして、ごほうびをゲットしよう!",
+ "englishUsText":"Reward Missions are now available in Online Ranking Match mode!\n\nClear the mission within the time limit and get rewards!",
+ "englishUsFontType":3,
+ "frenchText":"Les missions à récompenses sont désormais disponibles en mode Match classé en ligne !\n\nRéussis chaque mission dans le temps imparti pour obtenir des récompenses !",
+ "frenchFontType":3,
+ "italianText":"Le missioni ricompensa sono disponibili nella modalità Partita classificata online!\n\nCompleta le missioni entro il tempo limite per ricevere le ricompense!",
+ "italianFontType":3,
+ "germanText":"Belohnungsmissionen sind jetzt im Online-Ranglisten-Partie-Modus verfügbar!\n\nSchließe die Mission in der vorgegebenen Zeit ab und erhalte Belohnungen!",
+ "germanFontType":3,
+ "spanishText":"¡Las misiones de recompensa ya están disponibles en Partida de clasificación en línea!\n\n¡Complétalas antes de que se acabe el tiempo para ganar recompensas!",
+ "spanishFontType":3,
+ "chineseTText":"在「線上排名戰」裡出現「獎勵任務」!\n於活動期間內完成任務,來取得獎勵吧!",
+ "chineseTFontType":1,
+ "koreanText":"「온라인 랭크 매치」에 「보상 미션」이 등장!\n\n미션을 기간 내에 클리어해서, 보상을 획득하자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_update_tournament",
+ "japaneseText":"新モード「eスポーツトーナメント」が登場!\n\n全世界のプレイヤーと、トーナメント形式で\n金メダルや銀メダルのかくとくを競うモードだよ!\n\n※「オンラインバトル」は「eスポーツトーナメント」と\n「オンラインランクマッチ」のいずれかを選べます",
+ "englishUsText":"New E-Sports Tournament mode now available!\n\nFight for Gold and Silver Medals against\nplayers from all over the world in this competitive mode\n\n※You can select Online Ranking Match or E-Sports Tournament\nwhen choosing Online Battle mode. ",
+ "englishUsFontType":3,
+ "frenchText":"Mode Tournoi E-Sports disponible !\n\nVise l'or et l'argent contre les joueurs\ndu monde entier dans ce mode compétitif\n\n*Choisis Match classé en ligne ou\nTournoi E-Sports en mode Bataille en ligne. ",
+ "frenchFontType":3,
+ "italianText":"Nuova modalità Torneo di eSport!\n\nConquista medaglie d'oro e d'argento contro\ngiocatori da tutto il mondo in questa modalità competitiva\n\n*Nella modalità Battaglia online puoi\nscegliere tra Partita class. online o Torneo di eSport. ",
+ "italianFontType":3,
+ "germanText":"Neuer eSports-Turnier-Modus jetzt verfügbar!\n\nKämpfe in diesem kompetitiven Modus gegen Spieler\naus aller Welt um Gold- und Silbermedaillen \n\n*Du kannst im Onlinekampf-Modus zwischen Online-\nRanglisten-Partie und eSports-Turnier wählen. ",
+ "germanFontType":3,
+ "spanishText":"¡Nuevo modo Torneo de E-Sports ya disponible!\n\nLucha contra jugadores de todo el mundo\ny gana medallas de oro y plata en este modo competitivo.\n\n*Elige el modo Batalla en línea\ny selecciona Partida de clasificación en línea o Torneo de E-Sports. ",
+ "spanishFontType":3,
+ "chineseTText":"新模式「電競錦標賽」登場!\n與全世界的玩家以錦標賽的形式來爭奪金牌及銀牌的模式!\n※在「線上對戰」內可隨意選擇「電競錦標賽」與「線上排名戰」",
+ "chineseTFontType":1,
+ "koreanText":"신 모드 「e스포츠 토너먼트」 등장!\n\n전 세계의 플레이어와 토너먼트 형식으로\n금메달, 은메달 획득을 두고 겨루는 모드야!\n\n※「온라인 배틀」은 「e스포츠 토너먼트」와\n「온라인 랭크 매치」 중에서 선택할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_update_100gm",
+ "japaneseText":"「100万本突破記念! I LOVEゲームパック」を\nニンテンドーeショップで2020/7/9から無料配信\n\nゲットしてね!",
+ "englishUsText":"\"Over 1 Million Sold Celebration! I LOVE GAMES\" Pack will be available for free on the Nintendo eShop from 7/9/2020!",
+ "englishUsFontType":3,
+ "frenchText":"Le Pack \"Célébration des plus d'1 million d'exemplaires vendus ! J'ADORE LES JEUX\"\nsera disponible gratuitement sur le Nintendo eShop à partir du 09/07/2020 !",
+ "frenchFontType":3,
+ "italianText":"Il pack \"Festeggiamo il milione di copie! I LOVE GAMES\" sarà disponibile\ngratuitamente nel Nintendo eShop dal 09/07/2020!",
+ "italianFontType":3,
+ "germanText":"Das \"Wir feiern mehr als 1 Million verkaufte Exemplare! I LOVE GAMES\"-Pack\nist ab 09.07.2020 im Nintendo eShop kostenlos verfügbar!",
+ "germanFontType":3,
+ "spanishText":"¡El pack \"¡Más de un millón! I LOVE GAMES\" estará disponible gratuitamente\nen la Nintendo eShop a partir del 9 de julio de 2020!",
+ "spanishFontType":3,
+ "chineseTText":"「突破100萬片紀念!I LOVE遊戲Pack」\n將自2020/7/9起於Nintendo eShop內免費發布!\n\n請別忘了領取喔!",
+ "chineseTFontType":1,
+ "koreanText":"「100만 장 돌파 기념! I LOVE GAME Pack」을\n닌텐도 e숍에서 2020/7/9부터 무료 배포\n\n받아줘!",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_update_p_match",
+ "japaneseText":"「オンラインバトル」に、新モード「プライベートマッチ」が登場!\n\n全世界のともだちと、なかよく演奏や演奏対決を楽しめるモードだよ!\n\n「オンラインバトル」は「オンラインランクマッチ」「eスポーツトーナメント」\n「プライベートマッチ」といろいろな楽しみ方ができるよ!",
+ "englishUsText":"A new mode, Private Match, has been added to Online Battle!\n\nYou can play Co-Op Session and VS Match games against friends all over the world. \n\nEnjoy Online Ranking Matches, E-Sports Tournaments, and now Private Matches in Online Battle!",
+ "englishUsFontType":3,
+ "frenchText":"Un nouveau mode, Match privé, s'ajoute à Bataille en ligne !\n\nJoue en Session coop ou Match VS contre des amis du monde entier. \n\nProfite de Matchs classés en ligne, de tournois E-Sports et désormais de Matchs privés dans Bataille en ligne !",
+ "frenchFontType":3,
+ "italianText":"Aggiunta la nuova modalità Partita privata a Battaglia online!\n\nPuoi giocare in cooperativa e in partite VS contro amici in tutto il mondo. \n\nBattaglia online ora consente di giocare a Partite classificate online, Tornei eSport e Partite private!",
+ "italianFontType":3,
+ "germanText":"Der Onlinekampf hat einen neuen Modus namens Private Partie erhalten!\n\nDu kannst Koop-Sessions und VS-Partien gegen Freunde aus aller Welt spielen.\n\nGenieße Online-Ranglisten-Partien, eSports-Turniere und jetzt auch private Partien im Onlinekampf!",
+ "germanFontType":3,
+ "spanishText":"¡Se ha añadido un nuevo modo, Partida privada, a Batalla en línea!\n\nPuedes jugar en Partida colaborativa y en Combate contra amigos de todo el mundo. \n\n¡Disfruta de Partidas de clasificación en línea, Torneos de E-Sports y, ahora, Partidas privadas en Batalla en línea!",
+ "spanishFontType":3,
+ "chineseTText":"於「線上對戰」內,讓全新模式「私人對戰」登場!\n\n是能與全世界的好友遊玩同樂演奏或演奏對決的模式!\n\n在「線上對戰」裡能享受到「線上排名戰」、「電競錦標賽」、\n\n「私人對戰」等各種遊玩方式!",
+ "chineseTFontType":1,
+ "koreanText":"「온라인 배틀」에 신 모드 「프라이빗 매치」 등장!\n\n전 세계의 친구들과 사이좋게 연주하거나 연주 대결을 즐길 수 있어!\n\n「온라인 배틀」은 「온라인 랭크 매치」, 「e스포츠 토너먼트」\n「프라이빗 매치」 등 다양한 방식으로 즐길 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_menu_league1",
+ "japaneseText":"かんたん\nリーグ",
+ "englishUsText":"Easy League",
+ "englishUsFontType":3,
+ "frenchText":"Ligue Facile",
+ "frenchFontType":3,
+ "italianText":"Lega facile",
+ "italianFontType":3,
+ "germanText":"Einfache Liga",
+ "germanFontType":3,
+ "spanishText":"Liga fácil",
+ "spanishFontType":3,
+ "chineseTText":"簡單\n擂台",
+ "chineseTFontType":1,
+ "koreanText":"쉬움\n리그",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_menu_league2",
+ "japaneseText":"ふつう\nリーグ",
+ "englishUsText":"Normal League",
+ "englishUsFontType":3,
+ "frenchText":"Ligue Normale",
+ "frenchFontType":3,
+ "italianText":"Lega normale",
+ "italianFontType":3,
+ "germanText":"Normale Liga",
+ "germanFontType":3,
+ "spanishText":"Liga normal",
+ "spanishFontType":3,
+ "chineseTText":"普通\n擂台",
+ "chineseTFontType":1,
+ "koreanText":"보통\n리그",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_menu_league3",
+ "japaneseText":"むずかしい\nリーグ",
+ "englishUsText":"Hard League",
+ "englishUsFontType":3,
+ "frenchText":"Ligue Difficile",
+ "frenchFontType":3,
+ "italianText":"Lega difficile",
+ "italianFontType":3,
+ "germanText":"Schwere Liga",
+ "germanFontType":3,
+ "spanishText":"Liga difícil",
+ "spanishFontType":3,
+ "chineseTText":"困難\n擂台",
+ "chineseTFontType":1,
+ "koreanText":"어려움\n리그",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_menu_league4",
+ "japaneseText":"おに\nリーグ",
+ "englishUsText":"Extreme League",
+ "englishUsFontType":3,
+ "frenchText":"Ligue Extrême",
+ "frenchFontType":3,
+ "italianText":"Lega estrema",
+ "italianFontType":3,
+ "germanText":"Extreme Liga",
+ "germanFontType":3,
+ "spanishText":"Liga extrema",
+ "spanishFontType":3,
+ "chineseTText":"魔王\n擂台",
+ "chineseTFontType":1,
+ "koreanText":"귀신\n리그",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_menu_player_icon",
+ "japaneseText":"プレイヤーアイコン",
+ "englishUsText":"Player Icon",
+ "englishUsFontType":3,
+ "frenchText":"Icône de joueur",
+ "frenchFontType":3,
+ "italianText":"Icona giocatore",
+ "italianFontType":3,
+ "germanText":"Spielersymbol",
+ "germanFontType":3,
+ "spanishText":"Icono de jugador",
+ "spanishFontType":3,
+ "chineseTText":"玩家頭像",
+ "chineseTFontType":1,
+ "koreanText":"플레이어 아이콘",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_menu_ranking",
+ "japaneseText":"ランキング",
+ "englishUsText":"Ranking",
+ "englishUsFontType":3,
+ "frenchText":"Classement",
+ "frenchFontType":3,
+ "italianText":"Classifica",
+ "italianFontType":3,
+ "germanText":"Rangliste",
+ "germanFontType":3,
+ "spanishText":"Clasificación",
+ "spanishFontType":3,
+ "chineseTText":"排行榜",
+ "chineseTFontType":1,
+ "koreanText":"랭킹",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_menu_help",
+ "japaneseText":"あそびかた",
+ "englishUsText":"How to Play",
+ "englishUsFontType":3,
+ "frenchText":"Comment jouer",
+ "frenchFontType":3,
+ "italianText":"Come si gioca",
+ "italianFontType":3,
+ "germanText":"Wie man spielt",
+ "germanFontType":3,
+ "spanishText":"Cómo se juega",
+ "spanishFontType":3,
+ "chineseTText":"玩法",
+ "chineseTFontType":1,
+ "koreanText":"플레이 방법",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_league1",
+ "japaneseText":"かんたんリーグ",
+ "englishUsText":"Easy League",
+ "englishUsFontType":3,
+ "frenchText":"Ligue Facile",
+ "frenchFontType":3,
+ "italianText":"Lega facile",
+ "italianFontType":3,
+ "germanText":"Einfache Liga",
+ "germanFontType":3,
+ "spanishText":"Liga fácil",
+ "spanishFontType":3,
+ "chineseTText":"簡單擂台",
+ "chineseTFontType":1,
+ "koreanText":"쉬움 리그",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_league2",
+ "japaneseText":"ふつうリーグ",
+ "englishUsText":"Normal League",
+ "englishUsFontType":3,
+ "frenchText":"Ligue Normale",
+ "frenchFontType":3,
+ "italianText":"Lega normale",
+ "italianFontType":3,
+ "germanText":"Normale Liga",
+ "germanFontType":3,
+ "spanishText":"Liga normal",
+ "spanishFontType":3,
+ "chineseTText":"普通擂台",
+ "chineseTFontType":1,
+ "koreanText":"보통 리그",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_league3",
+ "japaneseText":"むずかしいリーグ",
+ "englishUsText":"Hard League",
+ "englishUsFontType":3,
+ "frenchText":"Ligue Difficile",
+ "frenchFontType":3,
+ "italianText":"Lega difficile",
+ "italianFontType":3,
+ "germanText":"Schwere Liga",
+ "germanFontType":3,
+ "spanishText":"Liga difícil",
+ "spanishFontType":3,
+ "chineseTText":"困難擂台",
+ "chineseTFontType":1,
+ "koreanText":"어려움 리그",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_league4",
+ "japaneseText":"おにリーグ",
+ "englishUsText":"Extreme League",
+ "englishUsFontType":3,
+ "frenchText":"Ligue Extrême",
+ "frenchFontType":3,
+ "italianText":"Lega estrema",
+ "italianFontType":3,
+ "germanText":"Extreme Liga",
+ "germanFontType":3,
+ "spanishText":"Liga extrema",
+ "spanishFontType":3,
+ "chineseTText":"魔王擂台",
+ "chineseTFontType":1,
+ "koreanText":"귀신 리그",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_ranking_get",
+ "japaneseText":"ランキングを取得しています",
+ "englishUsText":"Downloading Ranking data.",
+ "englishUsFontType":3,
+ "frenchText":"Téléchargement des données de classement.",
+ "frenchFontType":3,
+ "italianText":"Download dei dati della classifica in corso...",
+ "italianFontType":3,
+ "germanText":"Ranglistendaten werden heruntergeladen.",
+ "germanFontType":3,
+ "spanishText":"Descargando datos de clasificación.",
+ "spanishFontType":3,
+ "chineseTText":"取得排行榜資訊中",
+ "chineseTFontType":1,
+ "koreanText":"랭킹을 불러오고 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_ranking_rank",
+ "japaneseText":"順位",
+ "englishUsText":"Order",
+ "englishUsFontType":3,
+ "frenchText":"Ordre",
+ "frenchFontType":3,
+ "italianText":"Ordine",
+ "italianFontType":3,
+ "germanText":"Reihenfolge",
+ "germanFontType":3,
+ "spanishText":"Orden",
+ "spanishFontType":3,
+ "chineseTText":"排名",
+ "chineseTFontType":1,
+ "koreanText":"순위",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_ranking_account",
+ "japaneseText":"アカウント",
+ "englishUsText":"Account",
+ "englishUsFontType":3,
+ "frenchText":"Compte",
+ "frenchFontType":3,
+ "italianText":"Account",
+ "italianFontType":3,
+ "germanText":"Account",
+ "germanFontType":3,
+ "spanishText":"Cuenta",
+ "spanishFontType":3,
+ "chineseTText":"帳號",
+ "chineseTFontType":1,
+ "koreanText":"어카운트",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_ranking_over",
+ "japaneseText":"ランク外",
+ "englishUsText":"Rank Over",
+ "englishUsFontType":3,
+ "frenchText":"Niveau supérieur à",
+ "frenchFontType":3,
+ "italianText":"Non classificato",
+ "italianFontType":3,
+ "germanText":"Kein Rang",
+ "germanFontType":3,
+ "spanishText":"Subida de rango",
+ "spanishFontType":3,
+ "chineseTText":"排名圈外",
+ "chineseTFontType":1,
+ "koreanText":"랭킹 권외",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_menu_song_list",
+ "japaneseText":"週がわりバトル曲",
+ "englishUsText":"Weekly Battle Songs",
+ "englishUsFontType":3,
+ "frenchText":"Chansons de combat hebdomadaires",
+ "frenchFontType":3,
+ "italianText":"Canzoni da battaglia della settimana",
+ "italianFontType":3,
+ "germanText":"Wöchentliche Kampf-Songs",
+ "germanFontType":3,
+ "spanishText":"Canciones de batallas semanales",
+ "spanishFontType":3,
+ "chineseTText":"每週替換戰鬥曲",
+ "chineseTFontType":1,
+ "koreanText":"주간 배틀 곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_menu_mission",
+ "japaneseText":"ごほうびミッション",
+ "englishUsText":"Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa",
+ "italianFontType":3,
+ "germanText":"Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa",
+ "spanishFontType":3,
+ "chineseTText":"獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_menu_customize",
+ "japaneseText":"カスタマイズ",
+ "englishUsText":"Customize",
+ "englishUsFontType":3,
+ "frenchText":"Personnaliser",
+ "frenchFontType":3,
+ "italianText":"Personalizza",
+ "italianFontType":3,
+ "germanText":"Anpassen",
+ "germanFontType":3,
+ "spanishText":"Personalizar",
+ "spanishFontType":3,
+ "chineseTText":"編輯",
+ "chineseTFontType":1,
+ "koreanText":"커스터마이즈",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_menu_greeting",
+ "japaneseText":"あいさつ",
+ "englishUsText":"Greetings",
+ "englishUsFontType":3,
+ "frenchText":"Salutations",
+ "frenchFontType":3,
+ "italianText":"Saluti",
+ "italianFontType":3,
+ "germanText":"Begrüßungen",
+ "germanFontType":3,
+ "spanishText":"Saludos",
+ "spanishFontType":3,
+ "chineseTText":"問候語",
+ "chineseTFontType":1,
+ "koreanText":"인사",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_enso_title",
+ "japaneseText":"演奏スコアバトル",
+ "englishUsText":"Score Battle",
+ "englishUsFontType":3,
+ "frenchText":"Combat de score",
+ "frenchFontType":3,
+ "italianText":"Battaglia a punti",
+ "italianFontType":3,
+ "germanText":"Punktekampf",
+ "germanFontType":3,
+ "spanishText":"Batalla de puntos",
+ "spanishFontType":3,
+ "chineseTText":"演奏成績戰鬥",
+ "chineseTFontType":1,
+ "koreanText":"연주 스코어 배틀",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_fight",
+ "japaneseText":"たたかう",
+ "englishUsText":"Fight",
+ "englishUsFontType":3,
+ "frenchText":"Combat",
+ "frenchFontType":3,
+ "italianText":"Combatti",
+ "italianFontType":3,
+ "germanText":"Kämpfen",
+ "germanFontType":3,
+ "spanishText":"Luchar",
+ "spanishFontType":3,
+ "chineseTText":"戰鬥",
+ "chineseTFontType":1,
+ "koreanText":"대전한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_fight_point",
+ "japaneseText":"ごほうびポイント",
+ "englishUsText":"Reward Points",
+ "englishUsFontType":3,
+ "frenchText":"Prime de points",
+ "frenchFontType":3,
+ "italianText":"Punti ricompensa",
+ "italianFontType":3,
+ "germanText":"Belohnungspunkte",
+ "germanFontType":3,
+ "spanishText":"Puntos de recompensa",
+ "spanishFontType":3,
+ "chineseTText":"獎勵點數",
+ "chineseTFontType":1,
+ "koreanText":"보상 포인트",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_rank",
+ "japaneseText":"ランク",
+ "englishUsText":"Rank",
+ "englishUsFontType":3,
+ "frenchText":"Niveau",
+ "frenchFontType":3,
+ "italianText":"Rango",
+ "italianFontType":3,
+ "germanText":"Rang",
+ "germanFontType":3,
+ "spanishText":"Rango",
+ "spanishFontType":3,
+ "chineseTText":"排名",
+ "chineseTFontType":1,
+ "koreanText":"랭크",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_rank_point",
+ "japaneseText":"ランクポイント",
+ "englishUsText":"Rank Points",
+ "englishUsFontType":3,
+ "frenchText":"Points de niveau",
+ "frenchFontType":3,
+ "italianText":"Punti rango",
+ "italianFontType":3,
+ "germanText":"Rangpunkte",
+ "germanFontType":3,
+ "spanishText":"Puntos de rango",
+ "spanishFontType":3,
+ "chineseTText":"排名點數",
+ "chineseTFontType":1,
+ "koreanText":"랭크 포인트",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_change",
+ "japaneseText":"全体/自分",
+ "englishUsText":"All/Me",
+ "englishUsFontType":3,
+ "frenchText":"Tous/Moi",
+ "frenchFontType":3,
+ "italianText":"Tutti/Io",
+ "italianFontType":3,
+ "germanText":"Alle/Ich",
+ "germanFontType":3,
+ "spanishText":"Todos/Yo",
+ "spanishFontType":3,
+ "chineseTText":"全體/自己",
+ "chineseTFontType":1,
+ "koreanText":"전체/나",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_win_rate",
+ "japaneseText":"勝率",
+ "englishUsText":"Win Rate",
+ "englishUsFontType":3,
+ "frenchText":"Taux de victoire",
+ "frenchFontType":3,
+ "italianText":"% vittorie",
+ "italianFontType":3,
+ "germanText":"Siegverhältnis",
+ "germanFontType":3,
+ "spanishText":"Índice de victorias",
+ "spanishFontType":3,
+ "chineseTText":"勝率",
+ "chineseTFontType":1,
+ "koreanText":"승률",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_win_count",
+ "japaneseText":"勝利数",
+ "englishUsText":"Number of Wins",
+ "englishUsFontType":3,
+ "frenchText":"Nombre de victoires",
+ "frenchFontType":3,
+ "italianText":"Vittorie",
+ "italianFontType":3,
+ "germanText":"Anzahl der Siege",
+ "germanFontType":3,
+ "spanishText":"Número de victorias",
+ "spanishFontType":3,
+ "chineseTText":"勝利次數",
+ "chineseTFontType":1,
+ "koreanText":"승리 수",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_play_count",
+ "japaneseText":"対戦数",
+ "englishUsText":"Number of Matches",
+ "englishUsFontType":3,
+ "frenchText":"Nombre de matchs",
+ "frenchFontType":3,
+ "italianText":"Partite",
+ "italianFontType":3,
+ "germanText":"Anzahl der Partien",
+ "germanFontType":3,
+ "spanishText":"Número de partidas",
+ "spanishFontType":3,
+ "chineseTText":"對戰次數",
+ "chineseTFontType":1,
+ "koreanText":"대전 수",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_winning_streak",
+ "japaneseText":"連勝数",
+ "englishUsText":"Number of Consecutive Wins",
+ "englishUsFontType":3,
+ "frenchText":"Nombre de victoires consécutives",
+ "frenchFontType":3,
+ "italianText":"Vittorie consecutive",
+ "italianFontType":3,
+ "germanText":"Anzahl der Siege in Folge",
+ "germanFontType":3,
+ "spanishText":"Número de victorias seguidas",
+ "spanishFontType":3,
+ "chineseTText":"連勝次數",
+ "chineseTFontType":1,
+ "koreanText":"연승 수",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_ranking_warning",
+ "japaneseText":"※2週間以内にプレイした\nプレイヤーのランキング",
+ "englishUsText":"Player Rankings\n(Players active in the past two weeks)",
+ "englishUsFontType":3,
+ "frenchText":"Classements des joueurs\n(Joueurs actifs ces deux dernières semaines)",
+ "frenchFontType":3,
+ "italianText":"Classifiche giocatori\n(Giocatori attivi nelle ultime due settimane)",
+ "italianFontType":3,
+ "germanText":"Spielerrangliste\n(in den letzten zwei Wochen aktive Spieler)",
+ "germanFontType":3,
+ "spanishText":"Clasificación de jugadores\n(activos durante las 2 últimas semanas)",
+ "spanishFontType":3,
+ "chineseTText":"※為在2週內玩過遊戲的玩家的排名",
+ "chineseTFontType":1,
+ "koreanText":"※2주 이내에 플레이한\n플레이어의 랭킹입니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_winning_streak_now",
+ "japaneseText":"連勝中",
+ "englishUsText":"Winning Consecutively",
+ "englishUsFontType":3,
+ "frenchText":"Victoires consécutives",
+ "frenchFontType":3,
+ "italianText":"Striscia di vittorie",
+ "italianFontType":3,
+ "germanText":"Anhaltende Siege",
+ "germanFontType":3,
+ "spanishText":"Victorias seguidas",
+ "spanishFontType":3,
+ "chineseTText":"連勝中",
+ "chineseTFontType":1,
+ "koreanText":"연승 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_winning_streak_max",
+ "japaneseText":"最多連勝数",
+ "englishUsText":"Most Consecutive Wins",
+ "englishUsFontType":3,
+ "frenchText":"Plus grande série de victoires",
+ "frenchFontType":3,
+ "italianText":"Record vittorie consecutive",
+ "italianFontType":3,
+ "germanText":"Meiste Siege in Folge",
+ "germanFontType":3,
+ "spanishText":"Más victorias seguidas",
+ "spanishFontType":3,
+ "chineseTText":"最多連勝次數",
+ "chineseTFontType":1,
+ "koreanText":"최다 연승 수",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_rank_max",
+ "japaneseText":"最高ランク",
+ "englishUsText":"Max Rank",
+ "englishUsFontType":3,
+ "frenchText":"Niveau max",
+ "frenchFontType":3,
+ "italianText":"Rango massimo",
+ "italianFontType":3,
+ "germanText":"Max. Rang",
+ "germanFontType":3,
+ "spanishText":"Rango máximo",
+ "spanishFontType":3,
+ "chineseTText":"最高排名",
+ "chineseTFontType":1,
+ "koreanText":"최고 랭크",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_remain_days",
+ "japaneseText":"あと %s 日",
+ "englishUsText":"%s more days.",
+ "englishUsFontType":3,
+ "frenchText":"Encore %s jours.",
+ "frenchFontType":3,
+ "italianText":"Ancora %s giorni.",
+ "italianFontType":3,
+ "germanText":"%s Tage übrig.",
+ "germanFontType":3,
+ "spanishText":"Queda(n) %s día(s).",
+ "spanishFontType":3,
+ "chineseTText":"還有 %s 日",
+ "chineseTFontType":1,
+ "koreanText":"앞으로 %s일",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_remain_hours",
+ "japaneseText":"あと %s 時間",
+ "englishUsText":"%s more hours.",
+ "englishUsFontType":3,
+ "frenchText":"Encore %s heures.",
+ "frenchFontType":3,
+ "italianText":"Ancora %s ore.",
+ "italianFontType":3,
+ "germanText":"%s Stunden übrig.",
+ "germanFontType":3,
+ "spanishText":"Queda(n) %s hora(s).",
+ "spanishFontType":3,
+ "chineseTText":"還有 %s 小時",
+ "chineseTFontType":1,
+ "koreanText":"앞으로 %s시간",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_remain_minutes",
+ "japaneseText":"あと %s 分",
+ "englishUsText":"%s more minutes.",
+ "englishUsFontType":3,
+ "frenchText":"Encore %s minutes.",
+ "frenchFontType":3,
+ "italianText":"Ancora %s minuti.",
+ "italianFontType":3,
+ "germanText":"%s Minuten übrig.",
+ "germanFontType":3,
+ "spanishText":"Queda(n) %s minuto(s).",
+ "spanishFontType":3,
+ "chineseTText":"還有 %s 分",
+ "chineseTFontType":1,
+ "koreanText":"앞으로 %s분",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_remain_interval",
+ "japaneseText":"次回もお楽しみに!",
+ "englishUsText":"Let’s do this again sometime!",
+ "englishUsFontType":3,
+ "frenchText":"Recommençons à l'occasion !",
+ "frenchFontType":3,
+ "italianText":"Rifacciamolo qualche altra volta!",
+ "italianFontType":3,
+ "germanText":"Lass uns das mal wiederholen!",
+ "germanFontType":3,
+ "spanishText":"¡Repitámoslo en otra ocasión!",
+ "spanishFontType":3,
+ "chineseTText":"敬請期待下次活動!",
+ "chineseTFontType":1,
+ "koreanText":"다음 개최도 기대해줘!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_emblem_edit",
+ "japaneseText":"カスタマイズ",
+ "englishUsText":"Customize",
+ "englishUsFontType":3,
+ "frenchText":"Personnaliser",
+ "frenchFontType":3,
+ "italianText":"Personalizza",
+ "italianFontType":3,
+ "germanText":"Anpassen",
+ "germanFontType":3,
+ "spanishText":"Personalizar",
+ "spanishFontType":3,
+ "chineseTText":"編輯",
+ "chineseTFontType":1,
+ "koreanText":"커스터마이즈",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_emblem_set",
+ "japaneseText":"そうちゃく",
+ "englishUsText":"Equip",
+ "englishUsFontType":3,
+ "frenchText":"Équiper",
+ "frenchFontType":3,
+ "italianText":"Equipaggia",
+ "italianFontType":3,
+ "germanText":"Ausrüsten",
+ "germanFontType":3,
+ "spanishText":"Equipar",
+ "spanishFontType":3,
+ "chineseTText":"設置",
+ "chineseTFontType":1,
+ "koreanText":"장착",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_emblem_base",
+ "japaneseText":"ベース",
+ "englishUsText":"Base Icon",
+ "englishUsFontType":3,
+ "frenchText":"Icône arrière",
+ "frenchFontType":3,
+ "italianText":"Base",
+ "italianFontType":3,
+ "germanText":"Hauptsymbol",
+ "germanFontType":3,
+ "spanishText":"Icono básico",
+ "spanishFontType":3,
+ "chineseTText":"背景",
+ "chineseTFontType":1,
+ "koreanText":"베이스",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_emblem_front",
+ "japaneseText":"フロント",
+ "englishUsText":"Front Icon",
+ "englishUsFontType":3,
+ "frenchText":"Icône avant",
+ "frenchFontType":3,
+ "italianText":"Frontale",
+ "italianFontType":3,
+ "germanText":"Vordersymbol",
+ "germanFontType":3,
+ "spanishText":"Icono frontal",
+ "spanishFontType":3,
+ "chineseTText":"前景",
+ "chineseTFontType":1,
+ "koreanText":"프론트",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_emblem_title",
+ "japaneseText":"プレイヤーアイコン設定",
+ "englishUsText":"Player Icon Settings",
+ "englishUsFontType":3,
+ "frenchText":"Paramètres de l'Icône de joueur",
+ "frenchFontType":3,
+ "italianText":"Impostazioni icona giocatore",
+ "italianFontType":3,
+ "germanText":"Spielersymbol-Einstellungen",
+ "germanFontType":3,
+ "spanishText":"Ajustes del icono de jugador",
+ "spanishFontType":3,
+ "chineseTText":"玩家頭像設定",
+ "chineseTFontType":1,
+ "koreanText":"플레이어 아이콘 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_emblem_favorite",
+ "japaneseText":"Myアイコン",
+ "englishUsText":"My Icon",
+ "englishUsFontType":3,
+ "frenchText":"Mon Icône",
+ "frenchFontType":3,
+ "italianText":"La mia icona",
+ "italianFontType":3,
+ "germanText":"Mein Symbol",
+ "germanFontType":3,
+ "spanishText":"Mi icono",
+ "spanishFontType":3,
+ "chineseTText":"My頭像",
+ "chineseTFontType":1,
+ "koreanText":"My 아이콘",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_greeting_title",
+ "japaneseText":"あいさつ設定",
+ "englishUsText":"Greetings Settings",
+ "englishUsFontType":3,
+ "frenchText":"Paramètres de salutations",
+ "frenchFontType":3,
+ "italianText":"Impostazioni saluti",
+ "italianFontType":3,
+ "germanText":"Begrüßungsoptionen",
+ "germanFontType":3,
+ "spanishText":"Ajustes de saludos",
+ "spanishFontType":3,
+ "chineseTText":"問候語設定",
+ "chineseTFontType":1,
+ "koreanText":"인사 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_greeting_tab_start",
+ "japaneseText":"はじめ",
+ "englishUsText":"Begin",
+ "englishUsFontType":3,
+ "frenchText":"Début",
+ "frenchFontType":3,
+ "italianText":"Inizio",
+ "italianFontType":3,
+ "germanText":"Start",
+ "germanFontType":3,
+ "spanishText":"Inicio",
+ "spanishFontType":3,
+ "chineseTText":"開始",
+ "chineseTFontType":1,
+ "koreanText":"시작",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_greeting_tab_end",
+ "japaneseText":"おわり",
+ "englishUsText":"End",
+ "englishUsFontType":3,
+ "frenchText":"Fin",
+ "frenchFontType":3,
+ "italianText":"Fine",
+ "italianFontType":3,
+ "germanText":"Ende",
+ "germanFontType":3,
+ "spanishText":"Fin",
+ "spanishFontType":3,
+ "chineseTText":"結束",
+ "chineseTFontType":1,
+ "koreanText":"끝",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_emblem_desc",
+ "japaneseText":"「ベース」または「フロント」のアイコンをカスタマイズする事ができます\nまた、Myアイコンは4つまでアイコンを保存する事ができます",
+ "englishUsText":"You can customize your Base and Front Icons.\nYou can also save up to four My Icons.",
+ "englishUsFontType":3,
+ "frenchText":"Tu peux personnaliser ton icône arrière et avant.\nTu peux aussi enregistrer jusqu'à 4 icônes personnelles dans Mon Icône.",
+ "frenchFontType":3,
+ "italianText":"Puoi personalizzare le icone di tipo \"base\" e \"frontale\".\nPuoi anche salvare fino a 4 icone personalizzate.",
+ "italianFontType":3,
+ "germanText":"Du kannst dein Haupt- und Vordersymbol anpassen.\nDu kannst außerdem bis zu vier Symbole als Mein Symbol speichern.",
+ "germanFontType":3,
+ "spanishText":"Puedes personalizar tus iconos básicos y frontales.\nPuedes guardar hasta cuatro iconos.",
+ "spanishFontType":3,
+ "chineseTText":"能對「背景」或「前景」的圖示進行編輯\n另外My頭像最多可保存至4種頭像。",
+ "chineseTFontType":1,
+ "koreanText":"「베이스」 또는 「프론트」 아이콘을 커스터마이즈할 수 있습니다\n또, My 아이콘은 4개까지 저장할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_enso_retire_operation_msg",
+ "japaneseText":"リタイア",
+ "englishUsText":"Retire",
+ "englishUsFontType":3,
+ "frenchText":"Retraite",
+ "frenchFontType":3,
+ "italianText":"Ritirata",
+ "italianFontType":3,
+ "germanText":"Aufgabe",
+ "germanFontType":3,
+ "spanishText":"Retirada",
+ "spanishFontType":3,
+ "chineseTText":"棄權",
+ "chineseTFontType":1,
+ "koreanText":"포기",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_enso_retire_msg",
+ "japaneseText":"相手がリタイアしました",
+ "englishUsText":"Your opponent has retired.",
+ "englishUsFontType":3,
+ "frenchText":"Ton adversaire s'est retiré.",
+ "frenchFontType":3,
+ "italianText":"Il tuo avversario si è ritirato.",
+ "italianFontType":3,
+ "germanText":"Dein Gegner hat aufgegeben.",
+ "germanFontType":3,
+ "spanishText":"Tu rival se ha retirado.",
+ "spanishFontType":3,
+ "chineseTText":"對手已棄權",
+ "chineseTFontType":1,
+ "koreanText":"상대가 포기했습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_enso_leave_msg",
+ "japaneseText":"観戦をやめてeスポーツトーナメントトップに戻りますか?",
+ "englishUsText":"Stop matchmaking and return to the E-Sports Tournament menu?",
+ "englishUsFontType":3,
+ "frenchText":"Arrêter le matchmaking et revenir au menu Tournoi E-Sports ?",
+ "frenchFontType":3,
+ "italianText":"Annullare il matchmaking e tornare al menu di Torneo di eSport?",
+ "italianFontType":3,
+ "germanText":"Spielersuche abbrechen und zurück ins eSports-Turnier-Menü?",
+ "germanFontType":3,
+ "spanishText":"¿Quieres salir del matchmaking y volver al menú del Torneo de E-Sports?",
+ "spanishFontType":3,
+ "chineseTText":"要停止觀戰返回電競錦標賽首頁嗎?",
+ "chineseTFontType":1,
+ "koreanText":"관전을 그만두고 e스포츠 토너먼트 메인 화면으로 돌아가겠습니까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_enso_error_msg",
+ "japaneseText":"通信が不安定なため「モードをえらぶ」にもどります",
+ "englishUsText":"Connection unstable. Returning to Select Mode. ",
+ "englishUsFontType":3,
+ "frenchText":"Connexion instable. Retour au choix du mode.",
+ "frenchFontType":3,
+ "italianText":"Connessione instabile. Ritorno alla modalità di selezione.",
+ "italianFontType":3,
+ "germanText":"Instabile Verbindung. Zurück zur Moduswahl.",
+ "germanFontType":3,
+ "spanishText":"Conexión inestable. Volviendo a Elegir modo.",
+ "spanishFontType":3,
+ "chineseTText":"由於連線狀態不穩定,因此將返回「選擇模式」",
+ "chineseTFontType":1,
+ "koreanText":"통신이 불안정하기 때문에 「모드 선택」으로 돌아갑니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_matching_wait",
+ "japaneseText":"対戦相手をさがしています",
+ "englishUsText":"Searching for an opponent.",
+ "englishUsFontType":3,
+ "frenchText":"Recherche d'un adversaire.",
+ "frenchFontType":3,
+ "italianText":"Ricerca di un avversario in corso...",
+ "italianFontType":3,
+ "germanText":"Gegner wird gesucht.",
+ "germanFontType":3,
+ "spanishText":"Buscando oponente.",
+ "spanishFontType":3,
+ "chineseTText":"找尋對戰對手",
+ "chineseTFontType":1,
+ "koreanText":"대전 상대를 찾고 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_mission_reward_type_01",
+ "japaneseText":"ベース",
+ "englishUsText":"Base Icon",
+ "englishUsFontType":3,
+ "frenchText":"Icône arrière",
+ "frenchFontType":3,
+ "italianText":"Icona \"base\"",
+ "italianFontType":3,
+ "germanText":"Hauptsymbol",
+ "germanFontType":3,
+ "spanishText":"Icono básico",
+ "spanishFontType":3,
+ "chineseTText":"背景",
+ "chineseTFontType":1,
+ "koreanText":"베이스",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_mission_reward_type_02",
+ "japaneseText":"フロント",
+ "englishUsText":"Front Icon",
+ "englishUsFontType":3,
+ "frenchText":"Icône avant",
+ "frenchFontType":3,
+ "italianText":"Icona \"frontale\"",
+ "italianFontType":3,
+ "germanText":"Vordersymbol",
+ "germanFontType":3,
+ "spanishText":"Icono frontal",
+ "spanishFontType":3,
+ "chineseTText":"前景",
+ "chineseTFontType":1,
+ "koreanText":"프론트",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_mission_reward_type_03",
+ "japaneseText":"あいさつ",
+ "englishUsText":"Greetings",
+ "englishUsFontType":3,
+ "frenchText":"Salutations",
+ "frenchFontType":3,
+ "italianText":"Saluti",
+ "italianFontType":3,
+ "germanText":"Begrüßungen",
+ "germanFontType":3,
+ "spanishText":"Saludos",
+ "spanishFontType":3,
+ "chineseTText":"問候語",
+ "chineseTFontType":1,
+ "koreanText":"인사",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_mission_reward_type_04",
+ "japaneseText":"楽曲",
+ "englishUsText":"Song",
+ "englishUsFontType":3,
+ "frenchText":"Chanson",
+ "frenchFontType":3,
+ "italianText":"Canzone",
+ "italianFontType":3,
+ "germanText":"Song",
+ "germanFontType":3,
+ "spanishText":"Canción",
+ "spanishFontType":3,
+ "chineseTText":"樂曲",
+ "chineseTFontType":1,
+ "koreanText":"곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_mission_jyoken_01_A",
+ "japaneseText":"%s試合達成せよ!",
+ "englishUsText":"Play %s matches!",
+ "englishUsFontType":3,
+ "frenchText":"Joue %s matchs !",
+ "frenchFontType":3,
+ "italianText":"Gioca %s partite!",
+ "italianFontType":3,
+ "germanText":"Spiele %s Partien!",
+ "germanFontType":3,
+ "spanishText":"¡Juega %s partidas!",
+ "spanishFontType":3,
+ "chineseTText":"請完成%s場比賽!",
+ "chineseTFontType":1,
+ "koreanText":"%s 시합 달성하라!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_mission_jyoken_02_A",
+ "japaneseText":"良の数を%s達成せよ!",
+ "englishUsText":"Achieve %s GOODs!",
+ "englishUsFontType":3,
+ "frenchText":"Réussis %s BONS !",
+ "frenchFontType":3,
+ "italianText":"Ottieni %s BUONO!",
+ "italianFontType":3,
+ "germanText":"Erreiche %s mal GUT!",
+ "germanFontType":3,
+ "spanishText":"¡Consigue %s BIENES!",
+ "spanishFontType":3,
+ "chineseTText":"請讓良評價達到%s次!",
+ "chineseTFontType":1,
+ "koreanText":"얼쑤 횟수를 %s 달성하라!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_mission_jyoken_03_A",
+ "japaneseText":"たたけた数を%s達成せよ!",
+ "englishUsText":"Achieve %s hits!",
+ "englishUsFontType":3,
+ "frenchText":"Réussis %s coups !",
+ "frenchFontType":3,
+ "italianText":"Vai a segno %s volte!",
+ "italianFontType":3,
+ "germanText":"Erreiche %s Treffer!",
+ "germanFontType":3,
+ "spanishText":"¡Consigue %s aciertos!",
+ "spanishFontType":3,
+ "chineseTText":"請讓敲打次數達到%s次!",
+ "chineseTFontType":1,
+ "koreanText":"두드린 횟수를 %s 달성하라!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_mission_jyoken_04_A",
+ "japaneseText":"%s勝達成せよ!",
+ "englishUsText":"Achieve %s wins!",
+ "englishUsFontType":3,
+ "frenchText":"Obtiens %s victoires !",
+ "frenchFontType":3,
+ "italianText":"Ottieni %s vittorie!",
+ "italianFontType":3,
+ "germanText":"Erreiche %s Siege!",
+ "germanFontType":3,
+ "spanishText":"¡Consigue %s victorias!",
+ "spanishFontType":3,
+ "chineseTText":"請取得%s勝!",
+ "chineseTFontType":1,
+ "koreanText":"%s승 달성하라!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_mission_jyoken_05_A",
+ "japaneseText":"ちがう楽曲を%s回プレイせよ!",
+ "englishUsText":"Play %s different songs!",
+ "englishUsFontType":3,
+ "frenchText":"Joue %s chansons différentes !",
+ "frenchFontType":3,
+ "italianText":"Suona %s canzoni diverse!",
+ "italianFontType":3,
+ "germanText":"Spiele %s verschiedene Songs!",
+ "germanFontType":3,
+ "spanishText":"¡Toca %s canciones distintas!",
+ "spanishFontType":3,
+ "chineseTText":"請遊玩不同樂曲%s次!",
+ "chineseTFontType":1,
+ "koreanText":"각각 다른 곡을 %s회 플레이하라!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_mission_jyoken_01_A_rev2",
+ "japaneseText":"ランクマッチで%s試合達成せよ!",
+ "englishUsText":"Play %s Ranked Matches!",
+ "englishUsFontType":3,
+ "frenchText":"Joue à %s matchs classés !",
+ "frenchFontType":3,
+ "italianText":"Gioca %s partite classificate!",
+ "italianFontType":3,
+ "germanText":"Spiele %s Ranglisten-Partien!",
+ "germanFontType":3,
+ "spanishText":"¡Juega %s partidas igualadas!",
+ "spanishFontType":3,
+ "chineseTText":"在排名對戰裡完成%s場比賽!",
+ "chineseTFontType":1,
+ "koreanText":"랭크 매치에서 %s 시합 달성하라!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_mission_jyoken_02_A_rev2",
+ "japaneseText":"ランクマッチで、良の数を%s達成せよ!",
+ "englishUsText":"Achieve %s GOODs in Ranked Matches!",
+ "englishUsFontType":3,
+ "frenchText":"Réussis %s BONS en matchs classés !",
+ "frenchFontType":3,
+ "italianText":"Ottieni %s BUONO in partite classificate!",
+ "italianFontType":3,
+ "germanText":"Erreiche %s-mal GUT in Ranglisten-Partien!",
+ "germanFontType":3,
+ "spanishText":"¡Consigue %s BIENES en partidas igualadas!",
+ "spanishFontType":3,
+ "chineseTText":"在排名對戰裡達成敲出良%s次!",
+ "chineseTFontType":1,
+ "koreanText":"랭크 매치에서 얼쑤 횟수를 %s 달성하라!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_mission_jyoken_03_A_rev2",
+ "japaneseText":"ランクマッチで、たたけた数を%s達成せよ!",
+ "englishUsText":"Achieve %s hits in Ranked Matches!",
+ "englishUsFontType":3,
+ "frenchText":"Réussis %s coups en matchs classés !",
+ "frenchFontType":3,
+ "italianText":"Vai a segno %s volte in partite classificate!",
+ "italianFontType":3,
+ "germanText":"Erreiche %s Treffer in Ranglisten-Partien!",
+ "germanFontType":3,
+ "spanishText":"¡Consigue %s aciertos en partidas igualadas!",
+ "spanishFontType":3,
+ "chineseTText":"在排名對戰裡達成敲打次數%s次!",
+ "chineseTFontType":1,
+ "koreanText":"랭크 매치에서 두드린 횟수를 %s 달성하라!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_mission_jyoken_04_A_rev2",
+ "japaneseText":"ランクマッチで%s勝達成せよ!",
+ "englishUsText":"Achieve %s wins in Ranked Matches!",
+ "englishUsFontType":3,
+ "frenchText":"Obtiens %s victoires en matchs classés !",
+ "frenchFontType":3,
+ "italianText":"Vinci %s partite classificate!",
+ "italianFontType":3,
+ "germanText":"Erreiche %s Siege in Ranglisten-Partien!",
+ "germanFontType":3,
+ "spanishText":"¡Consigue %s victorias en partidas igualadas!",
+ "spanishFontType":3,
+ "chineseTText":"在排名對戰裡達成%s勝!",
+ "chineseTFontType":1,
+ "koreanText":"랭크 매치에서 %s승 달성하라!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_mission_jyoken_05_A_rev2",
+ "japaneseText":"ランクマッチで、ちがう楽曲を%s回プレイせよ!",
+ "englishUsText":"Play %s different songs in Ranked Matches!",
+ "englishUsFontType":3,
+ "frenchText":"Joue %s chansons différentes en matchs classés !",
+ "frenchFontType":3,
+ "italianText":"Suona %s canzoni diverse in partite classificate!",
+ "italianFontType":3,
+ "germanText":"Spiele %s verschiedene Songs in Ranglisten-Partien!",
+ "germanFontType":3,
+ "spanishText":"¡Toca %s canciones diferentes en partidas igualadas!",
+ "spanishFontType":3,
+ "chineseTText":"在排名對戰裡,遊玩不同樂曲%s次!",
+ "chineseTFontType":1,
+ "koreanText":"랭크 매치에서 각각 다른 곡을 %s회 플레이하라!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_mission_jyoken_06_A_rev2",
+ "japaneseText":"トーナメントでメダルを%s個あつめよ!",
+ "englishUsText":"Collect %s Medals in Tournaments!",
+ "englishUsFontType":3,
+ "frenchText":"Obtiens %s médailles dans des tournois !",
+ "frenchFontType":3,
+ "italianText":"Ottieni %s medaglie nei tornei!",
+ "italianFontType":3,
+ "germanText":"Sammle %s Medaillen in Turnieren!",
+ "germanFontType":3,
+ "spanishText":"¡Consigue %s medallas en torneos!",
+ "spanishFontType":3,
+ "chineseTText":"在排名對戰裡收集%s面金牌!",
+ "chineseTFontType":1,
+ "koreanText":"토너먼트에서 메달을 %s개 모아라!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_mission_jyoken_01_A_rev3",
+ "japaneseText":"ランクマッチ、プライベートマッチで%s試合達成せよ!",
+ "englishUsText":"Play %s Ranked Matches or Private Matches!",
+ "englishUsFontType":3,
+ "frenchText":"Dispute %s Matchs classés ou Matchs privés !",
+ "frenchFontType":3,
+ "italianText":"Gioca %s Partite classificate o Partite private!",
+ "italianFontType":3,
+ "germanText":"Spiele %s Ranglisten-Partien oder private Partien!",
+ "germanFontType":3,
+ "spanishText":"¡Juega %s Partidas igualadas o Partidas privadas!",
+ "spanishFontType":3,
+ "chineseTText":"在排名對戰、私人對戰裡完成%s場比賽!",
+ "chineseTFontType":1,
+ "koreanText":"랭크 매치, 프라이빗 매치에서 %s 시합 달성하라!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_mission_jyoken_01_B",
+ "japaneseText":"%s試合達成!",
+ "englishUsText":"Played %s matches!",
+ "englishUsFontType":3,
+ "frenchText":"%s matchs joués !",
+ "frenchFontType":3,
+ "italianText":"%s partite giocate!",
+ "italianFontType":3,
+ "germanText":"%s Partien gespielt!",
+ "germanFontType":3,
+ "spanishText":"¡Has jugado %s partidas!",
+ "spanishFontType":3,
+ "chineseTText":"已完成%s場比賽!",
+ "chineseTFontType":1,
+ "koreanText":"%s 시합 달성!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_mission_jyoken_02_B",
+ "japaneseText":"良の数%s達成!",
+ "englishUsText":"Achieved %s GOODs!",
+ "englishUsFontType":3,
+ "frenchText":"%s BONS réussis !",
+ "frenchFontType":3,
+ "italianText":"%s BUONO ottenuti!",
+ "italianFontType":3,
+ "germanText":"%s mal GUT erreicht!",
+ "germanFontType":3,
+ "spanishText":"¡Has conseguido %s BIENES!",
+ "spanishFontType":3,
+ "chineseTText":"良評價已達到%s次!",
+ "chineseTFontType":1,
+ "koreanText":"얼쑤 횟수 %s 달성!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_mission_jyoken_03_B",
+ "japaneseText":"たたけた数%s達成!",
+ "englishUsText":"Achieved %s hits!",
+ "englishUsFontType":3,
+ "frenchText":"%s coups réussis !",
+ "frenchFontType":3,
+ "italianText":"A segno %s volte!",
+ "italianFontType":3,
+ "germanText":"%s Treffer erreicht!",
+ "germanFontType":3,
+ "spanishText":"¡Has conseguido %s aciertos!",
+ "spanishFontType":3,
+ "chineseTText":"敲打次數已達到%s次!",
+ "chineseTFontType":1,
+ "koreanText":"두드린 횟수 %s 달성!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_mission_jyoken_04_B",
+ "japaneseText":"%s勝達成!",
+ "englishUsText":"Achieved %s wins!",
+ "englishUsFontType":3,
+ "frenchText":"%s victoires obtenues !",
+ "frenchFontType":3,
+ "italianText":"%s vittorie ottenute!",
+ "italianFontType":3,
+ "germanText":"%s Siege erreicht!",
+ "germanFontType":3,
+ "spanishText":"¡Has conseguido %s victorias!",
+ "spanishFontType":3,
+ "chineseTText":"已取得%s勝!",
+ "chineseTFontType":1,
+ "koreanText":"%s승 달성!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_mission_jyoken_05_B",
+ "japaneseText":"ちがう楽曲%s回プレイ達成!",
+ "englishUsText":"Played %s different songs!",
+ "englishUsFontType":3,
+ "frenchText":"%s chansons différentes jouées !",
+ "frenchFontType":3,
+ "italianText":"%s canzoni diverse suonate!",
+ "italianFontType":3,
+ "germanText":"%s verschiedene Songs gespielt!",
+ "germanFontType":3,
+ "spanishText":"¡Has tocado %s canciones distintas!",
+ "spanishFontType":3,
+ "chineseTText":"已遊玩不同樂曲%s次!",
+ "chineseTFontType":1,
+ "koreanText":"각각 다른 곡 %s회 플레이 달성!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_mission_jyoken_06_B",
+ "japaneseText":"メダル%s個達成!",
+ "englishUsText":"Collected %s Medals!",
+ "englishUsFontType":3,
+ "frenchText":"%s médailles obtenues !",
+ "frenchFontType":3,
+ "italianText":"%s medaglie ottenute!",
+ "italianFontType":3,
+ "germanText":"%s Medaillen gesammelt!",
+ "germanFontType":3,
+ "spanishText":"¡Has conseguido %s medallas!",
+ "spanishFontType":3,
+ "chineseTText":"達成取得%s面金牌!",
+ "chineseTFontType":1,
+ "koreanText":"메달 %s개 달성!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_reward_title_01",
+ "japaneseText":"ごほうびポイント",
+ "englishUsText":"Reward Points",
+ "englishUsFontType":3,
+ "frenchText":"Prime de points",
+ "frenchFontType":3,
+ "italianText":"Punti ricompensa",
+ "italianFontType":3,
+ "germanText":"Belohnungspunkte",
+ "germanFontType":3,
+ "spanishText":"Puntos de recompensa",
+ "spanishFontType":3,
+ "chineseTText":"獎勵點數",
+ "chineseTFontType":1,
+ "koreanText":"보상 포인트",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_reward_title_02",
+ "japaneseText":"ごほうびミッション",
+ "englishUsText":"Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa",
+ "italianFontType":3,
+ "germanText":"Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa",
+ "spanishFontType":3,
+ "chineseTText":"獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_reward_msg_01",
+ "japaneseText":"フロント ゲット!",
+ "englishUsText":"Got a Front Icon!",
+ "englishUsFontType":3,
+ "frenchText":"Icône avant obtenue !",
+ "frenchFontType":3,
+ "italianText":"Hai ottenuto un'icona \"frontale\"!",
+ "italianFontType":3,
+ "germanText":"Vordersymbol erhalten!",
+ "germanFontType":3,
+ "spanishText":"¡Has conseguido un icono frontal!",
+ "spanishFontType":3,
+ "chineseTText":"取得前景!",
+ "chineseTFontType":1,
+ "koreanText":"프론트 획득!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_reward_msg_02",
+ "japaneseText":"ベース ゲット!",
+ "englishUsText":"Got a Base Icon!",
+ "englishUsFontType":3,
+ "frenchText":"Icône arrière obtenue !",
+ "frenchFontType":3,
+ "italianText":"Hai ottenuto un'icona \"base\"!",
+ "italianFontType":3,
+ "germanText":"Hauptsymbol erhalten!",
+ "germanFontType":3,
+ "spanishText":"¡Has conseguido un icono básico!",
+ "spanishFontType":3,
+ "chineseTText":"取得背景!",
+ "chineseTFontType":1,
+ "koreanText":"베이스 획득!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_reward_msg_03",
+ "japaneseText":"ゲット!",
+ "englishUsText":"Received!",
+ "englishUsFontType":3,
+ "frenchText":"Reçu !",
+ "frenchFontType":3,
+ "italianText":"Ricevuta!",
+ "italianFontType":3,
+ "germanText":"Erhalten!",
+ "germanFontType":3,
+ "spanishText":"¡Recibidas!",
+ "spanishFontType":3,
+ "chineseTText":"取得!",
+ "chineseTFontType":1,
+ "koreanText":"획득!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_reward_msg_04",
+ "japaneseText":"%s 達成!",
+ "englishUsText":" %s accomplished!",
+ "englishUsFontType":3,
+ "frenchText":"Tu as réussi : %s !",
+ "frenchFontType":3,
+ "italianText":"%s ottenuti!",
+ "italianFontType":3,
+ "germanText":"%s erreicht!",
+ "germanFontType":3,
+ "spanishText":"¡Has conseguido %s!",
+ "spanishFontType":3,
+ "chineseTText":"達成%s !",
+ "chineseTFontType":1,
+ "koreanText":"%s 달성!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_reward_msg_05",
+ "japaneseText":"%s",
+ "englishUsText":"%s",
+ "englishUsFontType":3,
+ "frenchText":"%s",
+ "frenchFontType":3,
+ "italianText":"%s",
+ "italianFontType":3,
+ "germanText":"%s",
+ "germanFontType":3,
+ "spanishText":"%s",
+ "spanishFontType":3,
+ "chineseTText":"%s",
+ "chineseTFontType":1,
+ "koreanText":"%s",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_special_music_piece",
+ "japaneseText":"楽曲のカケラ ゲット!",
+ "englishUsText":"Got a Song Piece!",
+ "englishUsFontType":3,
+ "frenchText":"Partie de chanson obtenue !",
+ "frenchFontType":3,
+ "italianText":"Hai ottenuto un pezzo di canzone!",
+ "italianFontType":3,
+ "germanText":"Song-Teil erhalten!",
+ "germanFontType":3,
+ "spanishText":"¡Has recibido un fragmento!",
+ "spanishFontType":3,
+ "chineseTText":"取得樂曲碎片!",
+ "chineseTFontType":1,
+ "koreanText":"곡 조각 획득!",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_add_rank_point",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_penalty",
+ "japaneseText":"前回の対戦中に通信が切断されました\n1戦分「負け」となりました",
+ "englishUsText":"Internet connection was lost during the last battle.\nThis counts as one loss.",
+ "englishUsFontType":3,
+ "frenchText":"La connexion Internet a été coupée pendant le dernier combat.\nCela compte comme une défaite.",
+ "frenchFontType":3,
+ "italianText":"Durante l'ultima battaglia, la tua connessione a Internet si è interrotta.\nLa disconnessione vale come una sconfitta.",
+ "italianFontType":3,
+ "germanText":"Verbindung zum Internet wurde während des letzten Kampfes unterbrochen.\nDies zählt als Niederlage.",
+ "germanFontType":3,
+ "spanishText":"En la última batalla se perdió la conexión a Internet.\nEsto cuenta como derrota.",
+ "spanishFontType":3,
+ "chineseTText":"在上次的對戰途中連線遭到中斷,\n該場戰鬥被記為「落敗」。",
+ "chineseTFontType":1,
+ "koreanText":"지난번 대전 중에 통신이 끊겼습니다\n1회 「패배」 처리되었습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_option_controller_type",
+ "japaneseText":"そうさタイプ",
+ "englishUsText":"Control Type",
+ "englishUsFontType":3,
+ "frenchText":"Type de contrôleur",
+ "frenchFontType":3,
+ "italianText":"Schema dei comandi",
+ "italianFontType":3,
+ "germanText":"Steuerungstyp",
+ "germanFontType":3,
+ "spanishText":"Tipo de control",
+ "spanishFontType":3,
+ "chineseTText":"操作類型",
+ "chineseTFontType":1,
+ "koreanText":"조작 타입",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_option_type1_desc",
+ "japaneseText":"Y/Bが「ドン」、X/Aが「カッ」のそうさタイプ\n※携帯モードのボタン使用時",
+ "englishUsText":"Press Y or B for \"DON\" and X or A for \"KA\"\n*Handheld mode",
+ "englishUsFontType":3,
+ "frenchText":"Appuie sur Y ou B pour \"DON\" et X ou A pour \"KA\"\n*Mode portable",
+ "frenchFontType":3,
+ "italianText":"Premi Y o B per \"DON\" e X o A per \"KA\"\n* Modalità portatile",
+ "italianFontType":3,
+ "germanText":"Drücke Y oder B für \"DON\" und X oder A für \"KA\".\n*Handheld-Modus",
+ "germanFontType":3,
+ "spanishText":"Pulsa Y o B para \"DON\" y X o A para \"KA\".\n*Modo portátil",
+ "spanishFontType":3,
+ "chineseTText":"Y、B鍵為「咚」,X、A鍵為「咔」的操作類型\n※使用手提模式下的按鈕設定時",
+ "chineseTFontType":1,
+ "koreanText":"Y/B가 「쿵」, X/A가 「딱」인 조작 타입\n※휴대 모드, 버튼 사용 시 기준",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_option_type2_desc",
+ "japaneseText":"Y/B/X/Aが「ドン」、Rが「カッ」のそうさタイプ\n※携帯モードのボタン使用時",
+ "englishUsText":"Press Y, B, X, or A for \"DON\" and R for \"KA\"\n*Handheld mode",
+ "englishUsFontType":3,
+ "frenchText":"Appuie sur Y, B, X ou A pour \"DON\" et R pour \"KA\"\n*Mode portable",
+ "frenchFontType":3,
+ "italianText":"Premi Y, B, X o A per \"DON\" e R per \"KA\"\n* Modalità portatile",
+ "italianFontType":3,
+ "germanText":"Drücke Y, B, X oder A für \"DON\" und R für \"KA\".\n*Handheld-Modus",
+ "germanFontType":3,
+ "spanishText":"Pulsa Y, B, X o A para \"DON\" y R para \"KA\".\n*Modo portátil",
+ "spanishFontType":3,
+ "chineseTText":"Y、B、X、A鍵為「咚」,R鍵為「咔」的操作類型\n※使用手提模式下的按鈕設定時",
+ "chineseTFontType":1,
+ "koreanText":"Y/B/X/A가 「쿵」, R이 「딱」인 조작 타입\n※휴대 모드, 버튼 사용 시 기준",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_option_type3_desc",
+ "japaneseText":"B/Aが「ドン」、Y/Xが「カッ」のそうさタイプ\n※携帯モードのボタン使用時",
+ "englishUsText":"Press B or A for \"DON\" and Y or X for \"KA\"\n*Handheld mode",
+ "englishUsFontType":3,
+ "frenchText":"Appuie sur B ou A pour \"DON\" et Y ou X pour \"KA\"\n*Mode portable",
+ "frenchFontType":3,
+ "italianText":"Premi B o A per \"DON\" e Y o X per \"KA\"\n* Modalità portatile",
+ "italianFontType":3,
+ "germanText":"Drücke B oder A für \"DON\" und Y oder X für \"KA\".\n*Handheld-Modus",
+ "germanFontType":3,
+ "spanishText":"Pulsa B o A para \"DON\" y Y o X para \"KA\".\n*Modo portátil",
+ "spanishFontType":3,
+ "chineseTText":"B、A鍵為「咚」,Y、X鍵為「咔」的操作類型\n※使用手提模式下的按鈕設定時",
+ "chineseTFontType":1,
+ "koreanText":"B/A가 「쿵」, Y/X가 「딱」인 조작 타입\n※휴대 모드, 버튼 사용 시 기준",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_option_type4_desc",
+ "japaneseText":"太鼓コントローラーのそうさタイプ",
+ "englishUsText":"Control Type for Drum Controller ",
+ "englishUsFontType":3,
+ "frenchText":"Type de commandes pour le contrôleur tambour ",
+ "frenchFontType":3,
+ "italianText":"Schema dei comandi per il controller tamburo ",
+ "italianFontType":3,
+ "germanText":"Steuerungstyp für den Trommel-Controller ",
+ "germanFontType":3,
+ "spanishText":"Tipo de control para el mando tambor ",
+ "spanishFontType":3,
+ "chineseTText":"太鼓控制器的操作類型",
+ "chineseTFontType":1,
+ "koreanText":"북 컨트롤러를 쓰는 조작 타입",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_option_vibon_desc",
+ "japaneseText":"演奏している時に振動させる",
+ "englishUsText":"Use HD Rumble while playing.",
+ "englishUsFontType":3,
+ "frenchText":"Utiliser les vibrations HD en jeu.",
+ "frenchFontType":3,
+ "italianText":"Usa il Rumble HD mentre giochi.",
+ "italianFontType":3,
+ "germanText":"Mit HD-Vibration spielen.",
+ "germanFontType":3,
+ "spanishText":"Con vibración HD durante el juego.",
+ "spanishFontType":3,
+ "chineseTText":"演奏時震動",
+ "chineseTFontType":1,
+ "koreanText":"연주할 때 진동한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_option_viboff_desc",
+ "japaneseText":"演奏している時に振動させない",
+ "englishUsText":"Don't use HD Rumble while playing.",
+ "englishUsFontType":3,
+ "frenchText":"Ne pas utiliser les vibrations HD en jeu.",
+ "frenchFontType":3,
+ "italianText":"Non usare il Rumble HD mentre giochi.",
+ "italianFontType":3,
+ "germanText":"Ohne HD-Vibration spielen.",
+ "germanFontType":3,
+ "spanishText":"Sin vibración HD durante el juego.",
+ "spanishFontType":3,
+ "chineseTText":"演奏時不震動",
+ "chineseTFontType":1,
+ "koreanText":"연주할 때 진동하지 않는다",
+ "koreanFontType":2
+ },
+ {
+ "key":"rankmatch_help_title1",
+ "japaneseText":"ランクアップをめざそう!",
+ "englishUsText":"Aim for a higher Rank!",
+ "englishUsFontType":3,
+ "frenchText":"Vise un niveau encore plus haut !",
+ "frenchFontType":3,
+ "italianText":"Mira al rango più elevato!",
+ "italianFontType":3,
+ "germanText":"Ziele auf einen höheren Rang ab!",
+ "germanFontType":3,
+ "spanishText":"¡Alcanza un rango superior!",
+ "spanishFontType":3,
+ "chineseTText":"目標為提升排名!",
+ "chineseTFontType":1,
+ "koreanText":"랭크업을 목표로 하자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rankmatch_help_title2",
+ "japaneseText":"ごほうびをゲットしよう!",
+ "englishUsText":"Get Rewards!",
+ "englishUsFontType":3,
+ "frenchText":"Obtiens des récompenses !",
+ "frenchFontType":3,
+ "italianText":"Ottieni ricompense!",
+ "italianFontType":3,
+ "germanText":"Erhalte Belohnungen!",
+ "germanFontType":3,
+ "spanishText":"¡Obtén recompensas!",
+ "spanishFontType":3,
+ "chineseTText":"取得獎勵吧!",
+ "chineseTFontType":1,
+ "koreanText":"보상을 획득하자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rankmatch_help_title3",
+ "japaneseText":"「プレイヤーアイコン」をつくろう!",
+ "englishUsText":"Create a Player Icon!",
+ "englishUsFontType":3,
+ "frenchText":"Crée une Icône de joueur !",
+ "frenchFontType":3,
+ "italianText":"Crea un'icona giocatore!",
+ "italianFontType":3,
+ "germanText":"Erstelle ein Spielersymbol!",
+ "germanFontType":3,
+ "spanishText":"¡Crea un icono de jugador!",
+ "spanishFontType":3,
+ "chineseTText":"打造出「玩家頭像」吧!",
+ "chineseTFontType":1,
+ "koreanText":"「플레이어 아이콘」을 만들자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rankmatch_help_title4",
+ "japaneseText":"「週がわりバトル曲」をチェックしよう!",
+ "englishUsText":"Check the Weekly Battle Songs!",
+ "englishUsFontType":3,
+ "frenchText":"Va voir les Chansons de combat hebdomadaires !",
+ "frenchFontType":3,
+ "italianText":"Controlla le canzoni da battaglia della settimana!",
+ "italianFontType":3,
+ "germanText":"Sieh dir die wöchentlichen Kampf-Songs an!",
+ "germanFontType":3,
+ "spanishText":"¡Consulta las canciones de batallas semanales!",
+ "spanishFontType":3,
+ "chineseTText":"確認「每週替換戰鬥曲」!",
+ "chineseTFontType":1,
+ "koreanText":"「주간 배틀 곡」을 체크하자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rankmatch_help_title5",
+ "japaneseText":"リタイアしたくなったら、、、",
+ "englishUsText":"When you want to retire... ",
+ "englishUsFontType":3,
+ "frenchText":"Si tu veux te retirer...",
+ "frenchFontType":3,
+ "italianText":"Quando vuoi ritirarti...",
+ "italianFontType":3,
+ "germanText":"Wenn du aufgeben willst ...",
+ "germanFontType":3,
+ "spanishText":"Cuando quieras retirarte...",
+ "spanishFontType":3,
+ "chineseTText":"要是想棄權的話...",
+ "chineseTFontType":1,
+ "koreanText":"포기하고 싶어졌다면…",
+ "koreanFontType":2
+ },
+ {
+ "key":"rankmatch_help_title6",
+ "japaneseText":"大きな音符について",
+ "englishUsText":"About SUPER GOODs and SUPER OKs",
+ "englishUsFontType":3,
+ "frenchText":"À propos des SUPER BONS et des SUPER OK",
+ "frenchFontType":3,
+ "italianText":"SUPER BUONO e SUPER OK",
+ "italianFontType":3,
+ "germanText":"Über SUPERGUT und SUPER-OK",
+ "germanFontType":3,
+ "spanishText":"Sobre los SUPERBIÉN y SUPERVALE",
+ "spanishFontType":3,
+ "chineseTText":"關於大音符",
+ "chineseTFontType":1,
+ "koreanText":"큰 음표에 대해서",
+ "koreanFontType":2
+ },
+ {
+ "key":"rankmatch_help_page1",
+ "japaneseText":"演奏スコアバトルに勝つと「ランクポイント」がもらえるよ!\n「ランクポイント」をためるとランクアップできるよ!",
+ "englishUsText":"Earn Rank Points by winning in Score Battle!\nGet a higher Rank the more you play!",
+ "englishUsFontType":3,
+ "frenchText":"Obtiens des Points de niveau en gagnant des Combats de score !\nPlus tu joues, plus tu augmentes de niveau !",
+ "frenchFontType":3,
+ "italianText":"Ottieni punti rango vincendo in Battaglia a punti!\nPiù giochi, più potrai salire di rango!",
+ "italianFontType":3,
+ "germanText":"Verdiene Rangpunkte, indem du im Punktekampf gewinnst!\nErreiche einen höheren Rang, je mehr du spielst!",
+ "germanFontType":3,
+ "spanishText":"¡Gana Batallas de puntos para obtener puntos de rango!\n¡Juega para mejorar tu rango!",
+ "spanishFontType":3,
+ "chineseTText":"在演奏成績戰鬥中獲勝就能取得「排名點數」!\n累積「排名點數」就能提升排名!",
+ "chineseTFontType":1,
+ "koreanText":"연주 스코어 배틀에서 이기면 「랭크 포인트」를 받을 수 있어!\n「랭크 포인트」를 모으면 랭크업을 할 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rankmatch_help_page2",
+ "japaneseText":"演奏スコアバトルの結果に応じて「ごほうびポイント」がもらえるよ!\n「ごほうびポイント」をためると「プレイヤーアイコン」などがもらえるよ!",
+ "englishUsText":"Earn Reward Points based on the result in Score Battle!\nSave up Reward Points to get new Player Icons and other rewards!",
+ "englishUsFontType":3,
+ "frenchText":"Gagne une Prime de points selon tes Combats de score !\nAccumule-les pour plus d'Icônes de joueur et d'autres récompenses !",
+ "frenchFontType":3,
+ "italianText":"Ottieni punti ricompensa con Battaglia a punti!\nSpendili per ottenere nuove icone giocatore ed altre ricompense!",
+ "italianFontType":3,
+ "germanText":"Es gibt Belohnungspunkte je nach Ergebnis im Punktekampf!\nMit Belohnungspunkten kannst du neue Spielersymbole und andere Belohnungen freischalten!",
+ "germanFontType":3,
+ "spanishText":"¡Gana puntos de recompensa según tu resultado en la Batalla de puntos!\n¡Ahorra puntos de recompensa para conseguir nuevos iconos de jugador y otras recompensas!",
+ "spanishFontType":3,
+ "chineseTText":"將根據演奏成績戰鬥的結果取得「獎勵點數」!\n累積「獎勵點數」就能取得「玩家頭像」等獎勵!",
+ "chineseTFontType":1,
+ "koreanText":"연주 스코어 배틀의 결과에 따라 「보상 포인트」를 받을 수 있어!\n「보상 포인트」를 모으면 「플레이어 아이콘」 등을 받을 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rankmatch_help_page3",
+ "japaneseText":"「プレイヤーアイコン」は演奏中やランキングなどに表示されるよ!\n「ベース」と「フロント」を組み合わせて、自分だけの「プレイヤーアイコン」をつくろう!",
+ "englishUsText":"Player Icons will be displayed during Taiko and Ranking modes.\nMix and match your Front and Base Icons to make your Player Icon more personal!",
+ "englishUsFontType":3,
+ "frenchText":"Les Icônes de joueurs se voient dans les modes Taiko et Match classé en ligne.\nChange ton icône Avant et Arrière pour être encore plus unique !",
+ "frenchFontType":3,
+ "italianText":"Le icone giocatore verranno visualizzate nelle modalità Taiko e Partita class. online.\nCombina \"basi\" e \"frontali\" per rendere unica la tua icona giocatore!",
+ "italianFontType":3,
+ "germanText":"Spielersymbole werden in Taiko- und Online-Ranglisten-Partie-Modi angezeigt.\nMische dein Vorder- und Hauptsymbol, um dein Spielersymbol noch persönlicher zu gestalten!",
+ "germanFontType":3,
+ "spanishText":"El icono de jugador se muestra durante los modos Taiko y Partida de clasificación en línea.\n¡Combina los iconos frontales con los básicos para personalizarlo!",
+ "spanishFontType":3,
+ "chineseTText":"「玩家頭像」會顯示於演奏中及排行榜等畫面上!\n組合「背景」與「前景」打造專屬自己的「玩家頭像」!",
+ "chineseTFontType":1,
+ "koreanText":"「플레이어 아이콘」은 연주 중이나 랭킹 등에 표시돼!\n「베이스」와 「프론트」를 조합해서 나만의 「플레이어 아이콘」을 만들자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rankmatch_help_page4",
+ "japaneseText":"演奏スコアバトルでは「週がわりバトル曲」から曲が選ばれるよ!\n一定期間で曲が入れかわるので、よくチェックしてね!",
+ "englishUsText":"Choose songs from Weekly Battle Songs in Score Battle!\nMake sure to check often, as songs will change periodically!",
+ "englishUsFontType":3,
+ "frenchText":"Choisis une des Chansons hebdomadaires en Combat de score !\nElles changent régulièrement, alors consulte-les souvent !",
+ "frenchFontType":3,
+ "italianText":"Scegli tra le canzoni da battaglia settimanali!\nControlla spesso l'elenco: le canzoni cambiano!",
+ "italianFontType":3,
+ "germanText":"Wähle einen Song aus wöchentlichen Kampf-Songs im Punktekampf aus!\nSieh sie dir oft an, denn die Songs wechseln sich regelmäßig ab!",
+ "germanFontType":3,
+ "spanishText":"¡Elige Canciones de batallas semanales en Batalla de puntos!\n¡Échales un vistazo a menudo, porque cambian!",
+ "spanishFontType":3,
+ "chineseTText":"在演奏成績戰鬥裡需從「每週替換戰鬥曲」中選擇樂曲!\n因為會在一定期間內替換樂曲,還請仔細確認!",
+ "chineseTFontType":1,
+ "koreanText":"연주 스코어 배틀에서는 「주간 배틀 곡」에서 곡이 선택돼!\n일정 기간마다 곡이 교체되니 잘 체크해줘!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rankmatch_help_page5",
+ "japaneseText":"演奏中に「-/+ボタン」を押したままにすると「リタイア」できるよ\nリタイアすると「負け」になるから気をつけてね!",
+ "englishUsText":"You can Retire from a match by holding the -/+ buttons.\nRetiring counts as a loss, so be careful!",
+ "englishUsFontType":3,
+ "frenchText":"Retire-toi de la partie avec les boutons -/+.\nAttention, ce sera considéré comme une défaite !",
+ "frenchFontType":3,
+ "italianText":"Durante la partita puoi ritirarti con -/+.\nIl ritiro vale come una sconfitta, pensaci bene!",
+ "italianFontType":3,
+ "germanText":"Drücke -/+ während eines Spiels, um aufzugeben.\nAchtung: Gibst du auf, zählt das als Niederlage!",
+ "germanFontType":3,
+ "spanishText":"Para retirarte, pulsa los botones -/+.\nRetirarse cuenta como derrota, ¡así que cuidado!",
+ "spanishFontType":3,
+ "chineseTText":"在演奏中按住「-/+鍵」能夠進行「棄權」。\n要注意棄權就算是「落敗」喔!",
+ "chineseTFontType":1,
+ "koreanText":"연주 중에 「-/+ 버튼」을 길게 누르고 있으면 「포기」할 수 있어\n포기하면 「패배」가 되니까 조심해!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rankmatch_help_page6",
+ "japaneseText":"大きな音符を両手でたたけた時は高得点になるよ\nフリフリ演奏の時は、すばやく振ってね",
+ "englishUsText":"Hit the big notes with both hands to score big points!\nYou'll have to be fast if you're using Motion Controls!",
+ "englishUsFontType":3,
+ "frenchText":"Joue les grosses notes avec les deux mains pour marquer beaucoup de points !\nTu vas devoir être rapide si tu joues avec les commandes par mouvements !",
+ "frenchFontType":3,
+ "italianText":"Colpisci le note grosse con entrambe le mani per ottenere più punti!\nSe usi i comandi di movimento dovrai essere veloce!",
+ "italianFontType":3,
+ "germanText":"Triff die großen Noten mit beiden Händen, um mehr Punkte zu erhalten!\nSei schnell mit der Bewegungssteuerung!",
+ "germanFontType":3,
+ "spanishText":"¡Golpea las notas grandes con las dos manos para conseguir muchos puntos!\n¡Tienes que hacerlo rápido si usas el control por movimiento!",
+ "spanishFontType":3,
+ "chineseTText":"當雙手敲打大音符時會拿到高分,\n進行動態演奏時,迅速地揮動控制器吧",
+ "chineseTFontType":1,
+ "koreanText":"큰 음표를 양손으로 치면 높은 점수를 받아\n모션 조작 시에는 빠르게 휘두르자",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_for_children_text1",
+ "japaneseText":"利用規約とプライバシーポリシーに\n同意してから本サービスをご利用ください。",
+ "englishUsText":"Please agree to the End User License Agreement and Privacy Policy to use this service.",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"請同意使用者授權合約與隱私權政策以使用本服務。",
+ "chineseTFontType":1,
+ "koreanText":"최종 사용자 라이선스 계약과 개인정보 처리방침에\n동의하신 후 본 서비스를 이용해주십시오",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_for_children_text2",
+ "japaneseText":"また、未成年の方は、法定代理人(ご両親等)の同意が必要です。",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_for_children_text3",
+ "japaneseText":"※ないようがわからないときは\nおうちのひとにがめんをみせてください。",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_license_agreement",
+ "japaneseText":"利用規約",
+ "englishUsText":"EULA",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"使用者授權合約",
+ "chineseTFontType":1,
+ "koreanText":"최종 사용자 라이선스 계약",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_privacy_policy",
+ "japaneseText":"プライバシーポリシー",
+ "englishUsText":"Privacy Policy",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"隱私權政策",
+ "chineseTFontType":1,
+ "koreanText":"개인정보 처리방침",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_consent",
+ "japaneseText":"同意する",
+ "englishUsText":"Accept",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"同意",
+ "chineseTFontType":1,
+ "koreanText":"동의하다",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_refuse",
+ "japaneseText":"同意しない",
+ "englishUsText":"Decline",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"不同意",
+ "chineseTFontType":1,
+ "koreanText":"거절하다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips054",
+ "japaneseText":"演奏中に「-/+ボタン」を押したままにすると「リタイア」できるよ\nリタイアすると「負け」になるから気をつけてね!",
+ "englishUsText":"You can Retire from a match by holding the -/+ buttons.\nRetiring counts as a loss, so be careful!",
+ "englishUsFontType":3,
+ "frenchText":"Retire-toi de la partie avec les boutons -/+.\nAttention, ce sera considéré comme une défaite !",
+ "frenchFontType":3,
+ "italianText":"Durante la partita puoi ritirarti con -/+.\nIl ritiro vale come una sconfitta, pensaci bene!",
+ "italianFontType":3,
+ "germanText":"Drücke -/+ während eines Spiels, um aufzugeben.\nAchtung: Gibst du auf, zählt das als Niederlage!",
+ "germanFontType":3,
+ "spanishText":"Para retirarte, pulsa los botones -/+.\nRetirarse cuenta como derrota, ¡así que cuidado!",
+ "spanishFontType":3,
+ "chineseTText":"在演奏中按住「-/+鍵」能夠進行「棄權」。\n要注意棄權就算是「落敗」喔!",
+ "chineseTFontType":1,
+ "koreanText":"연주 중에 「-/+ 버튼」을 길게 누르고 있으면 「포기」할 수 있어\n포기하면 「패배」가 되니까 조심해!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips055",
+ "japaneseText":"演奏スコアバトルは「タッチ太鼓」でもあそべるよ!\n「ゲーム設定」の「タッチ太鼓の表示設定」で設定してね!",
+ "englishUsText":"Play with the Touch Drum in Score Battle!\nGo to Game Settings > Show/Hide Touch Drum.",
+ "englishUsFontType":3,
+ "frenchText":"Joue avec le tambour tactile en Combat de score !\nParamètres de jeu > Afficher/Masquer tambour tactile.",
+ "frenchFontType":3,
+ "italianText":"Gioca con il tamburo touch in Battaglia a punti!\nVai in Impostazioni > Mostra/nascondi tamburo touch.",
+ "italianFontType":3,
+ "germanText":"Spiele mit der Touch-Trommel im Punktekampf!\nGehe zu Spieloptionen > Touch-Trommel anzeigen.",
+ "germanFontType":3,
+ "spanishText":"¡Juega con el tambor táctil en Batalla de puntos!\nVe a Ajustes del juego > Mostrar/Ocultar tambor táctil.",
+ "spanishFontType":3,
+ "chineseTText":"演奏成績戰鬥也能用「觸控太鼓」進行遊玩!\n請從「遊戲設定」中的「觸控太鼓的顯示設定」進行設定!",
+ "chineseTFontType":1,
+ "koreanText":"연주 스코어 배틀은 「터치 북」으로도 플레이할 수 있어!\n「게임 설정」의 「터치 북 표시 설정」에서 설정해줘!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips056",
+ "japaneseText":"演奏スコアバトルの結果に応じて「ごほうびポイント」がもらえるよ!\n「ごほうびポイント」をためると「プレイヤーアイコン」などがもらえるよ!",
+ "englishUsText":"Earn Reward Points based on the result in Score Battle!\nSave up Reward Points to get new Player Icons and other rewards!",
+ "englishUsFontType":3,
+ "frenchText":"Gagne une Prime de points selon tes Combats de score !\nAccumule-les pour plus d'Icônes de joueur et d'autres récompenses !",
+ "frenchFontType":3,
+ "italianText":"Ottieni punti ricompensa con Battaglia a punti!\nSpendili per ottenere nuove icone giocatore ed altre ricompense!",
+ "italianFontType":3,
+ "germanText":"Es gibt Belohnungspunkte je nach Ergebnis im Punktekampf!\nMit Belohnungspunkten kannst du neue Spielersymbole und andere Belohnungen freischalten!",
+ "germanFontType":3,
+ "spanishText":"¡Gana puntos de recompensa según tu resultado en la Batalla de puntos!\n¡Ahorra puntos de recompensa para conseguir nuevos iconos de jugador y otras recompensas!",
+ "spanishFontType":3,
+ "chineseTText":"將根據演奏成績戰鬥的結果取得「獎勵點數」!\n累積「獎勵點數」就能取得「玩家頭像」等獎勵!",
+ "chineseTFontType":1,
+ "koreanText":"연주 스코어 배틀의 결과에 따라 「보상 포인트」를 받을 수 있어!\n「보상 포인트」를 모으면 「플레이어 아이콘」 등을 받을 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips057",
+ "japaneseText":"演奏スコアバトルでは「週がわりバトル曲」から曲が選ばれるよ!\n一定期間で曲が入れかわるので、よくチェックしてね!",
+ "englishUsText":"Choose songs from Weekly Battle Songs in Score Battle!\nMake sure to check often, as songs will change periodically!",
+ "englishUsFontType":3,
+ "frenchText":"Choisis une des Chansons hebdomadaires en Combat de score !\nElles changent régulièrement, alors consulte-les souvent !",
+ "frenchFontType":3,
+ "italianText":"Scegli tra le canzoni da battaglia settimanali!\nControlla spesso l'elenco: le canzoni cambiano!",
+ "italianFontType":3,
+ "germanText":"Wähle einen Song aus wöchentlichen Kampf-Songs im Punktekampf aus!\nSieh sie dir oft an, denn die Songs wechseln sich regelmäßig ab!",
+ "germanFontType":3,
+ "spanishText":"¡Elige Canciones de batallas semanales en Batalla de puntos!\n¡Échales un vistazo a menudo, porque cambian!",
+ "spanishFontType":3,
+ "chineseTText":"在演奏成績戰鬥裡需從「每週替換戰鬥曲」中選擇樂曲!\n因為會在一定期間內替換樂曲,還請仔細確認!",
+ "chineseTFontType":1,
+ "koreanText":"연주 스코어 배틀에서는 「주간 배틀 곡」에서 곡이 선택돼!\n일정 기간마다 곡이 교체되니 잘 체크해줘!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips058",
+ "japaneseText":"演奏スコアバトルに勝つと「ランクポイント」がもらえるよ!\n「ランクポイント」をためるとランクアップできるよ!",
+ "englishUsText":"Earn Rank Points by winning in Score Battle!\nGet a higher Rank the more you play!",
+ "englishUsFontType":3,
+ "frenchText":"Obtiens des Points de niveau en gagnant des Combats de score !\nPlus tu joues, plus tu augmentes de niveau !",
+ "frenchFontType":3,
+ "italianText":"Ottieni punti rango vincendo in Battaglia a punti!\nPiù giochi, più potrai salire di rango!",
+ "italianFontType":3,
+ "germanText":"Verdiene Rangpunkte, indem du im Punktekampf gewinnst!\nErreiche einen höheren Rang, je mehr du spielst!",
+ "germanFontType":3,
+ "spanishText":"¡Gana Batallas de puntos para obtener puntos de rango!\n¡Juega para mejorar tu rango!",
+ "spanishFontType":3,
+ "chineseTText":"在演奏成績戰鬥中獲勝就能取得「排名點數」!\n累積「排名點數」就能提升排名!",
+ "chineseTFontType":1,
+ "koreanText":"연주 스코어 배틀에서 이기면 「랭크 포인트」를 받을 수 있어!\n「랭크 포인트」를 모으면 랭크업을 할 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips059",
+ "japaneseText":"「ごほうびポイント」をためると「楽曲のカケラ」がもらえるよ!\n「楽曲のカケラ」8個で「楽曲」を1曲ゲットできるよ!",
+ "englishUsText":"Earn Song Pieces with Reward Points!\nGet one song per eight Song Pieces!",
+ "englishUsFontType":3,
+ "frenchText":"Gagne des parties de chanson avec les Primes de points !\nHuit parties forment une chanson !",
+ "frenchFontType":3,
+ "italianText":"Ottieni pezzi di canzoni con i punti ricompensa!\nPer una canzone ci vogliono 8 pezzi di canzone!",
+ "italianFontType":3,
+ "germanText":"Schnapp dir Song-Teile mit Belohnungspunkten!\nMit acht Song-Teilen erhältst du einen Song!",
+ "germanFontType":3,
+ "spanishText":"¡Consigue fragmentos con los puntos de recompensa!\n¡Cada canción tiene ocho fragmentos!",
+ "spanishFontType":3,
+ "chineseTText":"累積「獎勵點數」就能取得「樂曲碎片」!\n8個「樂曲碎片」能取得1首「樂曲」!",
+ "chineseTFontType":1,
+ "koreanText":"「보상 포인트」가 쌓이면 「곡 조각」을 받을 수 있어!\n「곡 조각」 8개로 「곡」을 1곡 얻을 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips060",
+ "japaneseText":"演奏スコアバトル中にインターネットの接続が切れると\n1戦分「負け」になるよ",
+ "englishUsText":"If the internet connection is lost during a Score Battle,\nyou'll receive a loss on your record!",
+ "englishUsFontType":3,
+ "frenchText":"Si Internet se déconnecte en combat,\ntu auras une défaite dans ton dossier !",
+ "frenchFontType":3,
+ "italianText":"Se ti disconnetti da Internet durante una\nBattaglia a punti, subirai una sconfitta!",
+ "italianFontType":3,
+ "germanText":"Bricht die Internetverbindung in einem Punktekampf ab,\nwird eine Niederlage in der Statistik verzeichnet.",
+ "germanFontType":3,
+ "spanishText":"¡Si pierdes la conexión durante una Batalla de puntos, contará como una derrota en tu historial!",
+ "spanishFontType":3,
+ "chineseTText":"在進行演奏成績戰鬥的途中斷線後,\n就會取得「落敗」1戰的成績!",
+ "chineseTFontType":1,
+ "koreanText":"연주 스코어 배틀 중에 인터넷 접속이 끊기면\n1회 「패배」 처리돼",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips061",
+ "japaneseText":"演奏スコアバトルで連勝すると「ごほうびポイント」がたくさんもらえるよ!",
+ "englishUsText":"Earn consecutive wins in Score Battle and get a lot of Reward Points!",
+ "englishUsFontType":3,
+ "frenchText":"Fais une série de victoires en Combat de score\npour gagner une grosse Prime de points !",
+ "frenchFontType":3,
+ "italianText":"Vinci più partite consecutive in Battaglia a\npunti per ottenere molti punti ricompensa!",
+ "italianFontType":3,
+ "germanText":"Erzielst du im Punktekampf Siege in Folge,\nregnet es eine Menge Belohnungspunkte!",
+ "germanFontType":3,
+ "spanishText":"¡Las victorias seguidas conceden muchos puntos de recompensa!",
+ "spanishFontType":3,
+ "chineseTText":"在演奏成績戰鬥裡拿下連勝就能取得「獎勵點數」",
+ "chineseTFontType":1,
+ "koreanText":"연주 스코어 배틀에서 연승하면 「보상 포인트」를 많이 받을 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips062",
+ "japaneseText":"「プレイヤーアイコン」は演奏中やランキングなどに表示されるよ!\n「ベース」と「フロント」を組み合わせて、自分だけの「プレイヤーアイコン」をつくろう!",
+ "englishUsText":"Player Icons will be displayed during Taiko and Ranking modes.\nMix and match your Front and Base Icons to make your Player Icon more personal!",
+ "englishUsFontType":3,
+ "frenchText":"Les Icônes de joueurs se voient dans les modes Taiko et Match classé en ligne.\nChange ton icône Avant et Arrière pour être encore plus unique !",
+ "frenchFontType":3,
+ "italianText":"Le icone giocatore verranno visualizzate nelle modalità Taiko e Partita class. online.\nCombina \"basi\" e \"frontali\" per rendere unica la tua icona giocatore!",
+ "italianFontType":3,
+ "germanText":"Spielersymbole werden in Taiko- und Online-Ranglisten-Partie-Modi angezeigt.\nMische dein Vorder- und Hauptsymbol, um dein Spielersymbol noch persönlicher zu gestalten!",
+ "germanFontType":3,
+ "spanishText":"El icono de jugador se muestra durante los modos Taiko y Partida de clasificación en línea.\n¡Combina los iconos frontales con los básicos para personalizarlo!",
+ "spanishFontType":3,
+ "chineseTText":"「玩家頭像」會顯示於演奏中及排行榜等畫面上!\n組合「背景」與「前景」,打造出專屬自己的「玩家頭像」吧!",
+ "chineseTFontType":1,
+ "koreanText":"「플레이어 아이콘」은 연주 중이나 랭킹 등에 표시돼!\n「베이스」와 「프론트」를 조합해서 나만의 「플레이어 아이콘」을 만들자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_030_ninbox",
+ "japaneseText":"トンカチ",
+ "englishUsText":"Tonkachi",
+ "englishUsFontType":3,
+ "frenchText":"Tonkachi",
+ "frenchFontType":3,
+ "italianText":"Tonkachi",
+ "italianFontType":3,
+ "germanText":"Tonkachi",
+ "germanFontType":3,
+ "spanishText":"Tonkachi",
+ "spanishFontType":3,
+ "chineseTText":"鐵鎚",
+ "chineseTFontType":1,
+ "koreanText":"톤카치",
+ "koreanFontType":2
+ },
+ {
+ "key":"chara_detail_030_ninbox",
+ "japaneseText":"いつもお祭り気分で目立ちたがりの\nトンデモニンジャ\nおでこのスマホで動画をアップするも人気はなく\nいつも再生数を上げることだけを考えている\n手にもつアイテムはじつは\nハイテクなアイテム!?\n",
+ "englishUsText":"A silly little ninja who's always in a festive mood! \nHe uploads videos using the smart phone on his\nforehead, but they don't get many views. So, he's\nalways thinking about ways to make his vids go viral!\nThose items he has... could they be high tech?\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Un drôle de petit ninja qui est toujours d'humeur\nfestive ! Il met en ligne des vidéos grâce au smartphone\nqu'il a sur le front, mais elles n'ont jamais beaucoup de\nvues. Donc il réfléchit sans cesse à la façon dont il\npourrait créer des vidéos virales !\nCes objets en sa possession... seraient-ils high-tech ?\n",
+ "frenchFontType":3,
+ "italianText":"Un piccolo ninja, un po' sciocco, ma molto allegro!\nCarica video online con lo smartphone che ha in fronte,\nma le visualizzazioni sono sempre poche, per cui\ncerca sempre nuovi modi per farli diventare virali!\nQuei suoi gadget... saranno mica hi-tech?\n\n",
+ "italianFontType":3,
+ "germanText":"Ein schüchterner kleiner Ninja, der stets in Party-Laune ist!\nEr lädt Videos mit dem Smartphone auf seiner Stirn hoch,\ndoch hat nicht viele Zuschauer. Daher überlegt er ständig,\nwie er seine Videos besser bekannt machen könnte!\nKönnten diese Gegenstände ... etwa die neuste Technologie sein?\n\n",
+ "germanFontType":3,
+ "spanishText":"¡Un ninja algo bobalicón que siempre tiene ganas de\ndivertirse! Sube vídeos con el móvil que lleva en\nla frente, pero no reciben muchas visitas. Por eso,\nsiempre está ideando nuevas formas de hacerse viral.\n¿Serán muy sofisticados sus artilugios?\n\n",
+ "spanishFontType":3,
+ "chineseTText":"總是很high且想藉此引人注意的胡搞忍者\n雖常用額頭上的手機上傳動畫,卻沒有什麼人氣\n老是想著要如何提升點閱播放次數,\n手持的工具其實是個高科技道具!?\n\n\n",
+ "chineseTFontType":1,
+ "koreanText":"늘 신나있고 눈에 띄기 좋아하는\n말도 안 되는 닌자\n이마에 붙인 스마트폰으로 동영상을\n올리지만 인기는 없어서\n늘 재생수를 올리는 것만 생각한다\n손에 든 건 사실 하이테크 아이템!?\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_win_ninbox",
+ "japaneseText":"大勝利なのだ!",
+ "englishUsText":"Victory!",
+ "englishUsFontType":3,
+ "frenchText":"Victoire !",
+ "frenchFontType":3,
+ "italianText":"Vittoria!",
+ "italianFontType":3,
+ "germanText":"Sieg!",
+ "germanFontType":3,
+ "spanishText":"¡Victoria!",
+ "spanishFontType":3,
+ "chineseTText":"大勝利!",
+ "chineseTFontType":1,
+ "koreanText":"대승리인 것이다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_lose_ninbox",
+ "japaneseText":"負けちゃったのだ",
+ "englishUsText":"I failed...",
+ "englishUsFontType":3,
+ "frenchText":"J'ai perdu...",
+ "frenchFontType":3,
+ "italianText":"Ho fallito...",
+ "italianFontType":3,
+ "germanText":"Ich habe versagt ...",
+ "germanFontType":3,
+ "spanishText":"He fallado...",
+ "spanishFontType":3,
+ "chineseTText":"我輸了",
+ "chineseTFontType":1,
+ "koreanText":"져버린 것이다",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_draw_ninbox",
+ "japaneseText":"もっと楽して強くなりたいのだ",
+ "englishUsText":"There has to be an easier way to get good...",
+ "englishUsFontType":3,
+ "frenchText":"Il doit y avoir un moyen\nde s'améliorer...",
+ "frenchFontType":3,
+ "italianText":"Dev'esserci un modo più semplice per migliorare...",
+ "italianFontType":3,
+ "germanText":"Es muss doch einen einfacheren Weg geben, mich zu verbessern ...",
+ "germanFontType":3,
+ "spanishText":"Hacerlo bien no puede ser tan difícil...",
+ "spanishFontType":3,
+ "chineseTText":"我要變得更開心更強",
+ "chineseTFontType":1,
+ "koreanText":"더 쉽게 강해지고 싶은 것이다",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_high_ninbox",
+ "japaneseText":"マヂガチキター!",
+ "englishUsText":"Would ya look at that!",
+ "englishUsFontType":3,
+ "frenchText":"Voyez-vous ça !",
+ "frenchFontType":3,
+ "italianText":"Guarda qua!",
+ "italianFontType":3,
+ "germanText":"Na, sieh mal einer an!",
+ "germanFontType":3,
+ "spanishText":"¡Qué maravilla!",
+ "spanishFontType":3,
+ "chineseTText":"來啦,完全認真~!",
+ "chineseTFontType":1,
+ "koreanText":"진짜 진짜 됐다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_low_ninbox",
+ "japaneseText":"また頑張るのだ!",
+ "englishUsText":"I'll do better next time!",
+ "englishUsFontType":3,
+ "frenchText":"Je ferais mieux la prochaine fois !",
+ "frenchFontType":3,
+ "italianText":"Farò meglio la prossima volta...",
+ "italianFontType":3,
+ "germanText":"Das mache ich beim nächsten Mal besser!",
+ "germanFontType":3,
+ "spanishText":"¡Lo haré mejor la próxima vez!",
+ "spanishFontType":3,
+ "chineseTText":"得再加把勁!",
+ "chineseTFontType":1,
+ "koreanText":"다시 힘내는 것이다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_miss_high_ninbox",
+ "japaneseText":"調子でないのだ",
+ "englishUsText":"What's wrong with me today?",
+ "englishUsFontType":3,
+ "frenchText":"Qu'est-ce qu'il m'arrive aujourd'hui ?",
+ "frenchFontType":3,
+ "italianText":"Ma cos'ho, oggi?",
+ "italianFontType":3,
+ "germanText":"Was ist heute nur mit mir los?",
+ "germanFontType":3,
+ "spanishText":"¿Qué me pasa hoy?",
+ "spanishFontType":3,
+ "chineseTText":"狀況不太好",
+ "chineseTFontType":1,
+ "koreanText":"컨디션이 별로인 것이다",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_clr_low_ninbox",
+ "japaneseText":"スッゲエのだー!",
+ "englishUsText":"Amazing!",
+ "englishUsFontType":3,
+ "frenchText":"Incroyable !",
+ "frenchFontType":3,
+ "italianText":"Fantastico!",
+ "italianFontType":3,
+ "germanText":"Großartig!",
+ "germanFontType":3,
+ "spanishText":"¡Increíble!",
+ "spanishFontType":3,
+ "chineseTText":"我真厲害~!",
+ "chineseTFontType":1,
+ "koreanText":"대단한 것이다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_1_ninbox",
+ "japaneseText":"よっしゃー",
+ "englishUsText":"Woo-hoo!",
+ "englishUsFontType":3,
+ "frenchText":"Wouhou !",
+ "frenchFontType":3,
+ "italianText":"Yuu-uuu!",
+ "italianFontType":3,
+ "germanText":"Hurra!",
+ "germanFontType":3,
+ "spanishText":"¡Yuju!",
+ "spanishFontType":3,
+ "chineseTText":"太棒了~",
+ "chineseTFontType":1,
+ "koreanText":"앗싸~",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_2_ninbox",
+ "japaneseText":"イエーイ!",
+ "englishUsText":"Yay!",
+ "englishUsFontType":3,
+ "frenchText":"Ouais !",
+ "frenchFontType":3,
+ "italianText":"Sì!",
+ "italianFontType":3,
+ "germanText":"Juhu!",
+ "germanFontType":3,
+ "spanishText":"¡Yupi!",
+ "spanishFontType":3,
+ "chineseTText":"YEAH~!",
+ "chineseTFontType":1,
+ "koreanText":"예이!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_3_ninbox",
+ "japaneseText":"こんなはずじゃなかったのだ",
+ "englishUsText":"Where did I go wrong?",
+ "englishUsFontType":3,
+ "frenchText":"Qu'est-ce que j'ai mal fait ?",
+ "frenchFontType":3,
+ "italianText":"Dove ho sbagliato?",
+ "italianFontType":3,
+ "germanText":"Was habe ich nur falsch gemacht?",
+ "germanFontType":3,
+ "spanishText":"¿Dónde me he equivocado?",
+ "spanishFontType":3,
+ "chineseTText":"應該不會這樣才對啊",
+ "chineseTFontType":1,
+ "koreanText":"이럴 리 없는 것이다",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_msg_vs_4_ninbox",
+ "japaneseText":"強すぎるのだ",
+ "englishUsText":"They're too good...",
+ "englishUsFontType":3,
+ "frenchText":"Ils sont meilleurs...",
+ "frenchFontType":3,
+ "italianText":"È troppo forte...",
+ "italianFontType":3,
+ "germanText":"Sie sind zu gut ...",
+ "germanFontType":3,
+ "spanishText":"Lo hacen muy bien...",
+ "spanishFontType":3,
+ "chineseTText":"強過頭啦",
+ "chineseTFontType":1,
+ "koreanText":"너무 강한 것이다",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_nbox",
+ "japaneseText":"ヒミツキチューバー",
+ "englishUsText":"HimitsuKiTuber",
+ "englishUsFontType":3,
+ "frenchText":"HimitsuKiTuber",
+ "frenchFontType":3,
+ "italianText":"HimitsuKiTuber",
+ "italianFontType":3,
+ "germanText":"HimitsuKiTuber",
+ "germanFontType":3,
+ "spanishText":"HimitsuKiTuber",
+ "spanishFontType":3,
+ "chineseTText":"HimitsuKiTuber",
+ "chineseTFontType":1,
+ "koreanText":"HimitsuKiTuber",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_nbox",
+ "japaneseText":"「ニンジャボックス」より",
+ "englishUsText":"From \" NinjaBox \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" NinjaBox \"",
+ "frenchFontType":3,
+ "italianText":"da \" NinjaBox \"",
+ "italianFontType":3,
+ "germanText":"Aus \" NinjaBox \"",
+ "germanFontType":3,
+ "spanishText":"De \" NinjaBox \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「忍者寶盒」",
+ "chineseTFontType":1,
+ "koreanText":"\"닌자 박스\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_nbox",
+ "japaneseText":"",
+ "englishUsText":"ヒミツキチューバー",
+ "englishUsFontType":0,
+ "frenchText":"ヒミツキチューバー",
+ "frenchFontType":0,
+ "italianText":"ヒミツキチューバー",
+ "italianFontType":0,
+ "germanText":"ヒミツキチューバー",
+ "germanFontType":0,
+ "spanishText":"ヒミツキチューバー",
+ "spanishFontType":0,
+ "chineseTText":"ヒミツキチューバー",
+ "chineseTFontType":0,
+ "koreanText":"ヒミツキチューバー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ynzums",
+ "japaneseText":"馬と鹿",
+ "englishUsText":"UMA TO SHIKA",
+ "englishUsFontType":3,
+ "frenchText":"UMA TO SHIKA",
+ "frenchFontType":3,
+ "italianText":"UMA TO SHIKA",
+ "italianFontType":3,
+ "germanText":"UMA TO SHIKA",
+ "germanFontType":3,
+ "spanishText":"UMA TO SHIKA",
+ "spanishFontType":3,
+ "chineseTText":"馬と鹿",
+ "chineseTFontType":1,
+ "koreanText":"UMA TO SHIKA",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ynzums",
+ "japaneseText":"米津玄師 / TBS系 日曜劇場「ノーサイド・ゲーム」主題歌",
+ "englishUsText":"Kenshi Yonezu",
+ "englishUsFontType":3,
+ "frenchText":"Kenshi Yonezu",
+ "frenchFontType":3,
+ "italianText":"Kenshi Yonezu",
+ "italianFontType":3,
+ "germanText":"Kenshi Yonezu",
+ "germanFontType":3,
+ "spanishText":"Kenshi Yonezu",
+ "spanishFontType":3,
+ "chineseTText":"米津玄師",
+ "chineseTFontType":1,
+ "koreanText":"Kenshi Yonezu",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ynzums",
+ "japaneseText":"",
+ "englishUsText":"馬と鹿",
+ "englishUsFontType":0,
+ "frenchText":"馬と鹿",
+ "frenchFontType":0,
+ "italianText":"馬と鹿",
+ "italianFontType":0,
+ "germanText":"馬と鹿",
+ "germanFontType":0,
+ "spanishText":"馬と鹿",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"馬と鹿",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kim69",
+ "japaneseText":"君はロックを聴かない",
+ "englishUsText":"KIMIWA ROCK WO KIKANAI",
+ "englishUsFontType":3,
+ "frenchText":"KIMIWA ROCK WO KIKANAI",
+ "frenchFontType":3,
+ "italianText":"KIMIWA ROCK WO KIKANAI",
+ "italianFontType":3,
+ "germanText":"KIMIWA ROCK WO KIKANAI",
+ "germanFontType":3,
+ "spanishText":"KIMIWA ROCK WO KIKANAI",
+ "spanishFontType":3,
+ "chineseTText":"君はロックを聴かない",
+ "chineseTFontType":1,
+ "koreanText":"KIMIWA ROCK WO KIKANAI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_kim69",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kim69",
+ "japaneseText":"",
+ "englishUsText":"君はロックを聴かない",
+ "englishUsFontType":0,
+ "frenchText":"君はロックを聴かない",
+ "frenchFontType":0,
+ "italianText":"君はロックを聴かない",
+ "italianFontType":0,
+ "germanText":"君はロックを聴かない",
+ "germanFontType":0,
+ "spanishText":"君はロックを聴かない",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"君はロックを聴かない",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_bnxmas",
+ "japaneseText":"クリスマスソング",
+ "englishUsText":"Christmas Song",
+ "englishUsFontType":3,
+ "frenchText":"Christmas Song",
+ "frenchFontType":3,
+ "italianText":"Christmas Song",
+ "italianFontType":3,
+ "germanText":"Christmas Song",
+ "germanFontType":3,
+ "spanishText":"Christmas Song",
+ "spanishFontType":3,
+ "chineseTText":"Christmas Song",
+ "chineseTFontType":1,
+ "koreanText":"Christmas Song",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_bnxmas",
+ "japaneseText":"back number",
+ "englishUsText":"back number",
+ "englishUsFontType":3,
+ "frenchText":"back number",
+ "frenchFontType":3,
+ "italianText":"back number",
+ "italianFontType":3,
+ "germanText":"back number",
+ "germanFontType":3,
+ "spanishText":"back number",
+ "spanishFontType":3,
+ "chineseTText":"back number",
+ "chineseTFontType":1,
+ "koreanText":"back number",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_bnxmas",
+ "japaneseText":"",
+ "englishUsText":"クリスマスソング",
+ "englishUsFontType":0,
+ "frenchText":"クリスマスソング",
+ "frenchFontType":0,
+ "italianText":"クリスマスソング",
+ "italianFontType":0,
+ "germanText":"クリスマスソング",
+ "germanFontType":0,
+ "spanishText":"クリスマスソング",
+ "spanishFontType":0,
+ "chineseTText":"クリスマスソング",
+ "chineseTFontType":0,
+ "koreanText":"クリスマスソング",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_itadak",
+ "japaneseText":"頂",
+ "englishUsText":"ITADAKI",
+ "englishUsFontType":3,
+ "frenchText":"ITADAKI",
+ "frenchFontType":3,
+ "italianText":"ITADAKI",
+ "italianFontType":3,
+ "germanText":"ITADAKI",
+ "germanFontType":3,
+ "spanishText":"ITADAKI",
+ "spanishFontType":3,
+ "chineseTText":"頂",
+ "chineseTFontType":1,
+ "koreanText":"ITADAKI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_itadak",
+ "japaneseText":"CHUBAY",
+ "englishUsText":"CHUBAY",
+ "englishUsFontType":3,
+ "frenchText":"CHUBAY",
+ "frenchFontType":3,
+ "italianText":"CHUBAY",
+ "italianFontType":3,
+ "germanText":"CHUBAY",
+ "germanFontType":3,
+ "spanishText":"CHUBAY",
+ "spanishFontType":3,
+ "chineseTText":"CHUBAY",
+ "chineseTFontType":1,
+ "koreanText":"CHUBAY",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_itadak",
+ "japaneseText":"",
+ "englishUsText":"頂",
+ "englishUsFontType":0,
+ "frenchText":"頂",
+ "frenchFontType":0,
+ "italianText":"頂",
+ "italianFontType":0,
+ "germanText":"頂",
+ "germanFontType":0,
+ "spanishText":"頂",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"頂",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_bbb",
+ "japaneseText":"Blessed Bouquet Buskers",
+ "englishUsText":"Blessed Bouquet Buskers",
+ "englishUsFontType":3,
+ "frenchText":"Blessed Bouquet Buskers",
+ "frenchFontType":3,
+ "italianText":"Blessed Bouquet Buskers",
+ "italianFontType":3,
+ "germanText":"Blessed Bouquet Buskers",
+ "germanFontType":3,
+ "spanishText":"Blessed Bouquet Buskers",
+ "spanishFontType":3,
+ "chineseTText":"Blessed Bouquet Buskers",
+ "chineseTFontType":1,
+ "koreanText":"Blessed Bouquet Buskers",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_bbb",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_bbb",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_retoko",
+ "japaneseText":"冷凍庫CJ ~嗚呼面太鼓ブラザーズ~",
+ "englishUsText":"REITOKO CJ ~Amen TAIKO Brothers~",
+ "englishUsFontType":3,
+ "frenchText":"REITOKO CJ ~Amen TAIKO Brothers~",
+ "frenchFontType":3,
+ "italianText":"REITOKO CJ ~Amen TAIKO Brothers~",
+ "italianFontType":3,
+ "germanText":"REITOKO CJ ~Amen TAIKO Brothers~",
+ "germanFontType":3,
+ "spanishText":"REITOKO CJ ~Amen TAIKO Brothers~",
+ "spanishFontType":3,
+ "chineseTText":"冷凍庫CJ ~嗚呼面太鼓Brothers~",
+ "chineseTFontType":1,
+ "koreanText":"레이토우코CJ ~Amen 타이코 Brothers~",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_retoko",
+ "japaneseText":"DJKurara",
+ "englishUsText":"DJKurara",
+ "englishUsFontType":3,
+ "frenchText":"DJKurara",
+ "frenchFontType":3,
+ "italianText":"DJKurara",
+ "italianFontType":3,
+ "germanText":"DJKurara",
+ "germanFontType":3,
+ "spanishText":"DJKurara",
+ "spanishFontType":3,
+ "chineseTText":"DJKurara",
+ "chineseTFontType":1,
+ "koreanText":"DJKurara",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_retoko",
+ "japaneseText":"",
+ "englishUsText":"冷凍庫CJ ~嗚呼面太鼓ブラザーズ~",
+ "englishUsFontType":0,
+ "frenchText":"冷凍庫CJ ~嗚呼面太鼓ブラザーズ~",
+ "frenchFontType":0,
+ "italianText":"冷凍庫CJ ~嗚呼面太鼓ブラザーズ~",
+ "italianFontType":0,
+ "germanText":"冷凍庫CJ ~嗚呼面太鼓ブラザーズ~",
+ "germanFontType":0,
+ "spanishText":"冷凍庫CJ ~嗚呼面太鼓ブラザーズ~",
+ "spanishFontType":0,
+ "chineseTText":"冷凍庫CJ ~嗚呼面太鼓ブラザーズ~",
+ "chineseTFontType":0,
+ "koreanText":"冷凍庫CJ ~嗚呼面太鼓ブラザーズ~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_furyu",
+ "japaneseText":"冬竜 ~Toryu~",
+ "englishUsText":"Toryu",
+ "englishUsFontType":3,
+ "frenchText":"Toryu",
+ "frenchFontType":3,
+ "italianText":"Toryu",
+ "italianFontType":3,
+ "germanText":"Toryu",
+ "germanFontType":3,
+ "spanishText":"Toryu",
+ "spanishFontType":3,
+ "chineseTText":"冬龍 ~Toryu~",
+ "chineseTFontType":1,
+ "koreanText":"토류 ~Toryu~",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_furyu",
+ "japaneseText":"",
+ "englishUsText":"Azu♪",
+ "englishUsFontType":3,
+ "frenchText":"Azu♪",
+ "frenchFontType":3,
+ "italianText":"Azu♪",
+ "italianFontType":3,
+ "germanText":"Azu♪",
+ "germanFontType":3,
+ "spanishText":"Azu♪",
+ "spanishFontType":3,
+ "chineseTText":"Azu♪",
+ "chineseTFontType":1,
+ "koreanText":"Azu♪",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_furyu",
+ "japaneseText":"",
+ "englishUsText":"冬竜 ~Toryu~",
+ "englishUsFontType":0,
+ "frenchText":"冬竜 ~Toryu~",
+ "frenchFontType":0,
+ "italianText":"冬竜 ~Toryu~",
+ "italianFontType":0,
+ "germanText":"冬竜 ~Toryu~",
+ "germanFontType":0,
+ "spanishText":"冬竜 ~Toryu~",
+ "spanishFontType":0,
+ "chineseTText":"冬竜 ~Toryu~",
+ "chineseTFontType":0,
+ "koreanText":"冬竜 ~Toryu~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_indeni",
+ "japaneseText":"オールナイトdeインデナイ",
+ "englishUsText":"All Night de INDENAI",
+ "englishUsFontType":3,
+ "frenchText":"All Night de INDENAI",
+ "frenchFontType":3,
+ "italianText":"All Night de INDENAI",
+ "italianFontType":3,
+ "germanText":"All Night de INDENAI",
+ "germanFontType":3,
+ "spanishText":"All Night de INDENAI",
+ "spanishFontType":3,
+ "chineseTText":"All Night de INDENAI",
+ "chineseTFontType":1,
+ "koreanText":"All Night de INDENAI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_indeni",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_indeni",
+ "japaneseText":"",
+ "englishUsText":"オールナイトdeインデナイ",
+ "englishUsFontType":0,
+ "frenchText":"オールナイトdeインデナイ",
+ "frenchFontType":0,
+ "italianText":"オールナイトdeインデナイ",
+ "italianFontType":0,
+ "germanText":"オールナイトdeインデナイ",
+ "germanFontType":0,
+ "spanishText":"オールナイトdeインデナイ",
+ "spanishFontType":0,
+ "chineseTText":"オールナイトdeインデナイ",
+ "chineseTFontType":0,
+ "koreanText":"オールナイトdeインデナイ",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_single07",
+ "japaneseText":"楽曲「君はロックを聴かない」配信中",
+ "englishUsText":"KIMIWA ROCK WO KIKANAI now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"歌曲「君はロックを聴かない」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「KIMIWA ROCK WO KIKANAI」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_single08",
+ "japaneseText":"楽曲「クリスマスソング」配信中",
+ "englishUsText":"Christmas Song available now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"歌曲「Christmas Song」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Christmas Song」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_nbox",
+ "japaneseText":"「ニンジャボックスパック」配信中",
+ "englishUsText":"NinjaBox Pack available now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「忍者寶盒 PACK」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「닌자 박스 Pack」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_donder02",
+ "japaneseText":"「ドンだーパック -氷月-」配信中",
+ "englishUsText":"Donder Pack -Winter Moon- now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「Donder Pack -十二月-」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「태고러 팩 -십이월-」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_single09",
+ "japaneseText":"楽曲「馬と鹿」配信中",
+ "englishUsText":"UMA TO SHIKA now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"歌曲「馬と鹿」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「UMA TO SHIKA」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_thmrs",
+ "japaneseText":"魔理沙は大変なものを盗んでいきました",
+ "englishUsText":"Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita",
+ "englishUsFontType":3,
+ "frenchText":"Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita",
+ "frenchFontType":3,
+ "italianText":"Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita",
+ "italianFontType":3,
+ "germanText":"Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita",
+ "germanFontType":3,
+ "spanishText":"Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita",
+ "spanishFontType":3,
+ "chineseTText":"魔理沙偷走了重要的東西",
+ "chineseTFontType":1,
+ "koreanText":"마리사와 타이헨나 모노오 누슨데 이키마시타",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_thmrs",
+ "japaneseText":"東方Projectアレンジ ARM+夕野ヨシミ(IOSYS) feat.藤咲かりん",
+ "englishUsText":"Touhou Project Arrange / ARM+Youno Yoshimi(IOSYS) feat.Fujisaki Karin",
+ "englishUsFontType":3,
+ "frenchText":"Touhou Project Arrange / ARM+Youno Yoshimi(IOSYS) feat.Fujisaki Karin",
+ "frenchFontType":3,
+ "italianText":"Touhou Project Arrange / ARM+Youno Yoshimi(IOSYS) feat.Fujisaki Karin",
+ "italianFontType":3,
+ "germanText":"Touhou Project Arrange / ARM+Youno Yoshimi(IOSYS) feat.Fujisaki Karin",
+ "germanFontType":3,
+ "spanishText":"Touhou Project Arrange / ARM+Youno Yoshimi(IOSYS) feat.Fujisaki Karin",
+ "spanishFontType":3,
+ "chineseTText":"東方Project Arrange ARM+夕野ヨシミ(IOSYS) feat.藤咲かりん",
+ "chineseTFontType":1,
+ "koreanText":"Touhou Project Arrange / ARM+Youno Yoshimi(IOSYS) feat.Fujisaki Karin",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_thmrs",
+ "japaneseText":"",
+ "englishUsText":"魔理沙は大変なものを盗んでいきました",
+ "englishUsFontType":0,
+ "frenchText":"魔理沙は大変なものを盗んでいきました",
+ "frenchFontType":0,
+ "italianText":"魔理沙は大変なものを盗んでいきました",
+ "italianFontType":0,
+ "germanText":"魔理沙は大変なものを盗んでいきました",
+ "germanFontType":0,
+ "spanishText":"魔理沙は大変なものを盗んでいきました",
+ "spanishFontType":0,
+ "chineseTText":"魔理沙は大変なものを盗んでいきました",
+ "chineseTFontType":0,
+ "koreanText":"魔理沙は大変なものを盗んでいきました",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_thwarn",
+ "japaneseText":"WARNING×WARNING×WARNING",
+ "englishUsText":"WARNING×WARNING×WARNING",
+ "englishUsFontType":3,
+ "frenchText":"WARNING×WARNING×WARNING",
+ "frenchFontType":3,
+ "italianText":"WARNING×WARNING×WARNING",
+ "italianFontType":3,
+ "germanText":"WARNING×WARNING×WARNING",
+ "germanFontType":3,
+ "spanishText":"WARNING×WARNING×WARNING",
+ "spanishFontType":3,
+ "chineseTText":"WARNING×WARNING×WARNING",
+ "chineseTFontType":1,
+ "koreanText":"WARNING×WARNING×WARNING",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_thwarn",
+ "japaneseText":"東方Projectアレンジ 暁Records",
+ "englishUsText":"Touhou Project Arrange / Akatsuki Records",
+ "englishUsFontType":3,
+ "frenchText":"Touhou Project Arrange / Akatsuki Records",
+ "frenchFontType":3,
+ "italianText":"Touhou Project Arrange / Akatsuki Records",
+ "italianFontType":3,
+ "germanText":"Touhou Project Arrange / Akatsuki Records",
+ "germanFontType":3,
+ "spanishText":"Touhou Project Arrange / Akatsuki Records",
+ "spanishFontType":3,
+ "chineseTText":"東方Project Arrange 暁Records",
+ "chineseTFontType":1,
+ "koreanText":"Touhou Project Arrange / Akatsuki Records",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_thwarn",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_thnkyo",
+ "japaneseText":"深緋の心臓 ‐SCARLET HEART‐",
+ "englishUsText":"KOKIHI NO SHINZOU - SCARLET HEART -",
+ "englishUsFontType":3,
+ "frenchText":"KOKIHI NO SHINZOU - SCARLET HEART -",
+ "frenchFontType":3,
+ "italianText":"KOKIHI NO SHINZOU - SCARLET HEART -",
+ "italianFontType":3,
+ "germanText":"KOKIHI NO SHINZOU - SCARLET HEART -",
+ "germanFontType":3,
+ "spanishText":"KOKIHI NO SHINZOU - SCARLET HEART -",
+ "spanishFontType":3,
+ "chineseTText":"深緋之心臟 - SCARLET HEART -",
+ "chineseTFontType":1,
+ "koreanText":"코키히노 신조우- SCARLET HEART -",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_thnkyo",
+ "japaneseText":"東方Project×NAMCO SOUNDS kyo feat.あさな(IOSYS)",
+ "englishUsText":"Touhou Project×NAMCO SOUNDS / kyo feat.asana(IOSYS)",
+ "englishUsFontType":3,
+ "frenchText":"Touhou Project×NAMCO SOUNDS / kyo feat.asana(IOSYS)",
+ "frenchFontType":3,
+ "italianText":"Touhou Project×NAMCO SOUNDS / kyo feat.asana(IOSYS)",
+ "italianFontType":3,
+ "germanText":"Touhou Project×NAMCO SOUNDS / kyo feat.asana(IOSYS)",
+ "germanFontType":3,
+ "spanishText":"Touhou Project×NAMCO SOUNDS / kyo feat.asana(IOSYS)",
+ "spanishFontType":3,
+ "chineseTText":"東方Project×NAMCO SOUNDS kyo feat.asana(IOSYS)",
+ "chineseTFontType":1,
+ "koreanText":"Touhou Project×NAMCO SOUNDS kyo feat.asana(IOSYS)",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_thnkyo",
+ "japaneseText":"",
+ "englishUsText":"深緋の心臓 ‐SCARLET HEART‐",
+ "englishUsFontType":0,
+ "frenchText":"深緋の心臓 ‐SCARLET HEART‐",
+ "frenchFontType":0,
+ "italianText":"深緋の心臓 ‐SCARLET HEART‐",
+ "italianFontType":0,
+ "germanText":"深緋の心臓 ‐SCARLET HEART‐",
+ "germanFontType":0,
+ "spanishText":"深緋の心臓 ‐SCARLET HEART‐",
+ "spanishFontType":0,
+ "chineseTText":"深緋の心臓 ‐SCARLET HEART‐",
+ "chineseTFontType":0,
+ "koreanText":"深緋の心臓 ‐SCARLET HEART‐",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_rinhis",
+ "japaneseText":"凛",
+ "englishUsText":"RIN",
+ "englishUsFontType":3,
+ "frenchText":"RIN",
+ "frenchFontType":3,
+ "italianText":"RIN",
+ "italianFontType":3,
+ "germanText":"RIN",
+ "germanFontType":3,
+ "spanishText":"RIN",
+ "spanishFontType":3,
+ "chineseTText":"凜",
+ "chineseTFontType":1,
+ "koreanText":"린",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_rinhis",
+ "japaneseText":"a_hisa",
+ "englishUsText":"a_hisa",
+ "englishUsFontType":3,
+ "frenchText":"a_hisa",
+ "frenchFontType":3,
+ "italianText":"a_hisa",
+ "italianFontType":3,
+ "germanText":"a_hisa",
+ "germanFontType":3,
+ "spanishText":"a_hisa",
+ "spanishFontType":3,
+ "chineseTText":"a_hisa",
+ "chineseTFontType":1,
+ "koreanText":"a_hisa",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_rinhis",
+ "japaneseText":"",
+ "englishUsText":"凛",
+ "englishUsFontType":0,
+ "frenchText":"凛",
+ "frenchFontType":0,
+ "italianText":"凛",
+ "italianFontType":0,
+ "germanText":"凛",
+ "germanFontType":0,
+ "spanishText":"凛",
+ "spanishFontType":0,
+ "chineseTText":"凛",
+ "chineseTFontType":0,
+ "koreanText":"凛",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_yayoi",
+ "japaneseText":"豊穣弥生",
+ "englishUsText":"HOUJO YAYOI",
+ "englishUsFontType":3,
+ "frenchText":"HOUJO YAYOI",
+ "frenchFontType":3,
+ "italianText":"HOUJO YAYOI",
+ "italianFontType":3,
+ "germanText":"HOUJO YAYOI",
+ "germanFontType":3,
+ "spanishText":"HOUJO YAYOI",
+ "spanishFontType":3,
+ "chineseTText":"豐穰彌生",
+ "chineseTFontType":1,
+ "koreanText":"후죠 야요이",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_yayoi",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_yayoi",
+ "japaneseText":"",
+ "englishUsText":"豊穣弥生",
+ "englishUsFontType":0,
+ "frenchText":"豊穣弥生",
+ "frenchFontType":0,
+ "italianText":"豊穣弥生",
+ "italianFontType":0,
+ "germanText":"豊穣弥生",
+ "germanFontType":0,
+ "spanishText":"豊穣弥生",
+ "spanishFontType":0,
+ "chineseTText":"豊穣弥生",
+ "chineseTFontType":0,
+ "koreanText":"豊穣弥生",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_cna4",
+ "japaneseText":"迅風丸",
+ "englishUsText":"JINPUUMARU",
+ "englishUsFontType":3,
+ "frenchText":"JINPUUMARU",
+ "frenchFontType":3,
+ "italianText":"JINPUUMARU",
+ "italianFontType":3,
+ "germanText":"JINPUUMARU",
+ "germanFontType":3,
+ "spanishText":"JINPUUMARU",
+ "spanishFontType":3,
+ "chineseTText":"迅風丸",
+ "chineseTFontType":1,
+ "koreanText":"진푸우마루",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_cna4",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_cna4",
+ "japaneseText":"",
+ "englishUsText":"迅風丸",
+ "englishUsFontType":0,
+ "frenchText":"迅風丸",
+ "frenchFontType":0,
+ "italianText":"迅風丸",
+ "italianFontType":0,
+ "germanText":"迅風丸",
+ "germanFontType":0,
+ "spanishText":"迅風丸",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"迅風丸",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kaiden",
+ "japaneseText":"太鼓乱舞 皆伝",
+ "englishUsText":"TAIKO RANBU KAIDEN",
+ "englishUsFontType":3,
+ "frenchText":"TAIKO RANBU KAIDEN",
+ "frenchFontType":3,
+ "italianText":"TAIKO RANBU KAIDEN",
+ "italianFontType":3,
+ "germanText":"TAIKO RANBU KAIDEN",
+ "germanFontType":3,
+ "spanishText":"TAIKO RANBU KAIDEN",
+ "spanishFontType":3,
+ "chineseTText":"太鼓亂舞 皆傳",
+ "chineseTFontType":1,
+ "koreanText":"타이코란부 카이덴",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_kaiden",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kaiden",
+ "japaneseText":"",
+ "englishUsText":"太鼓乱舞 皆伝",
+ "englishUsFontType":0,
+ "frenchText":"太鼓乱舞 皆伝",
+ "frenchFontType":0,
+ "italianText":"太鼓乱舞 皆伝",
+ "italianFontType":0,
+ "germanText":"太鼓乱舞 皆伝",
+ "germanFontType":0,
+ "spanishText":"太鼓乱舞 皆伝",
+ "spanishFontType":0,
+ "chineseTText":"太鼓乱舞 皆伝",
+ "chineseTFontType":0,
+ "koreanText":"太鼓乱舞 皆伝",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_reiwad",
+ "japaneseText":"令・和太鼓",
+ "englishUsText":"REI WADAIKO",
+ "englishUsFontType":3,
+ "frenchText":"REI WADAIKO",
+ "frenchFontType":3,
+ "italianText":"REI WADAIKO",
+ "italianFontType":3,
+ "germanText":"REI WADAIKO",
+ "germanFontType":3,
+ "spanishText":"REI WADAIKO",
+ "spanishFontType":3,
+ "chineseTText":"令・和太鼓",
+ "chineseTFontType":1,
+ "koreanText":"레이・와다이코",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_reiwad",
+ "japaneseText":"翡翠",
+ "englishUsText":"Hisui",
+ "englishUsFontType":3,
+ "frenchText":"Hisui",
+ "frenchFontType":3,
+ "italianText":"Hisui",
+ "italianFontType":3,
+ "germanText":"Hisui",
+ "germanFontType":3,
+ "spanishText":"Hisui",
+ "spanishFontType":3,
+ "chineseTText":"翡翠",
+ "chineseTFontType":1,
+ "koreanText":"Hisui",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_reiwad",
+ "japaneseText":"",
+ "englishUsText":"令・和太鼓",
+ "englishUsFontType":0,
+ "frenchText":"令・和太鼓",
+ "frenchFontType":0,
+ "italianText":"令・和太鼓",
+ "italianFontType":0,
+ "germanText":"令・和太鼓",
+ "germanFontType":0,
+ "spanishText":"令・和太鼓",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"令・和太鼓",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_tohopack02",
+ "japaneseText":"「東方ProjectアレンジパックVol.2」配信中",
+ "englishUsText":"Touhou Project Arrangements Pack Vol.2 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「東方Project Arrangements Pack Vol.2」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「Touhou Project Arrangements Pack Vol.2」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_donder03",
+ "japaneseText":"「ドンだーパック -破竹-」配信中",
+ "englishUsText":"Donder Pack -Thunderclap- now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「Donder Pack -破竹-」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「태고러 팩 -파죽-」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_001",
+ "japaneseText":"よろしくだドン!",
+ "englishUsText":"Nice to meet you!",
+ "englishUsFontType":3,
+ "frenchText":"Enchanté(e) !",
+ "frenchFontType":3,
+ "italianText":"Piacere di conoscerti!",
+ "italianFontType":3,
+ "germanText":"Freut mich!",
+ "germanFontType":3,
+ "spanishText":"¡Un placer conocerte!",
+ "spanishFontType":3,
+ "chineseTText":"請多指教咚!",
+ "chineseTFontType":1,
+ "koreanText":"잘 부탁한다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_002",
+ "japaneseText":"また遊ぶドン!",
+ "englishUsText":"Let’s play again!",
+ "englishUsFontType":3,
+ "frenchText":"Rejouons ensemble !",
+ "frenchFontType":3,
+ "italianText":"Giochiamo ancora!",
+ "italianFontType":3,
+ "germanText":"Spielen wir noch mal!",
+ "germanFontType":3,
+ "spanishText":"¡Juguemos otra vez!",
+ "spanishFontType":3,
+ "chineseTText":"還要再玩咚!",
+ "chineseTFontType":1,
+ "koreanText":"또 놀자쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_003",
+ "japaneseText":"まけないドン!",
+ "englishUsText":"I’m going to win!",
+ "englishUsFontType":3,
+ "frenchText":"Je vais gagner !",
+ "frenchFontType":3,
+ "italianText":"Vincerò io!",
+ "italianFontType":3,
+ "germanText":"Ich werde gewinnen!",
+ "germanFontType":3,
+ "spanishText":"¡Voy a ganar!",
+ "spanishFontType":3,
+ "chineseTText":"不會輸的咚!",
+ "chineseTFontType":1,
+ "koreanText":"안 질 거다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_004",
+ "japaneseText":"いっしょにあそぶドン!",
+ "englishUsText":"Let’s play together!",
+ "englishUsFontType":3,
+ "frenchText":"Jouons ensemble !",
+ "frenchFontType":3,
+ "italianText":"Giochiamo insieme!",
+ "italianFontType":3,
+ "germanText":"Spielen wir zusammen!",
+ "germanFontType":3,
+ "spanishText":"¡Toquemos tú y yo!",
+ "spanishFontType":3,
+ "chineseTText":"一起遊玩咚!",
+ "chineseTFontType":1,
+ "koreanText":"같이 놀자쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_005",
+ "japaneseText":"どうも!ボクだドン!",
+ "englishUsText":"Hi there! It’s me!",
+ "englishUsFontType":3,
+ "frenchText":"Salut ! C'est moi !",
+ "frenchFontType":3,
+ "italianText":"Ehilà, sono io!",
+ "italianFontType":3,
+ "germanText":"Hallo! Ich bin's!",
+ "germanFontType":3,
+ "spanishText":"¡Hola, soy yo!",
+ "spanishFontType":3,
+ "chineseTText":"你好!是我咚!",
+ "chineseTFontType":1,
+ "koreanText":"안녕! 나다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_006",
+ "japaneseText":"よろしくおねがいしまーす!",
+ "englishUsText":"Nice to play with you!",
+ "englishUsFontType":3,
+ "frenchText":"J'adore jouer avec toi !",
+ "frenchFontType":3,
+ "italianText":"Mi piace giocare con te!",
+ "italianFontType":3,
+ "germanText":"Ich spiele gern mit dir!",
+ "germanFontType":3,
+ "spanishText":"¡Qué bien jugar contigo!",
+ "spanishFontType":3,
+ "chineseTText":"請你多指教!",
+ "chineseTFontType":1,
+ "koreanText":"잘 부탁드립니다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_007",
+ "japaneseText":"たのしかったドン!",
+ "englishUsText":"That was fun!",
+ "englishUsFontType":3,
+ "frenchText":"C'était amusant !",
+ "frenchFontType":3,
+ "italianText":"È stato divertente!",
+ "italianFontType":3,
+ "germanText":"Das hat Spaß gemacht!",
+ "germanFontType":3,
+ "spanishText":"¡Ha sido divertido!",
+ "spanishFontType":3,
+ "chineseTText":"玩得很開心咚!",
+ "chineseTFontType":1,
+ "koreanText":"재밌었다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_008",
+ "japaneseText":"いい勝負だったドン!",
+ "englishUsText":"Good game!",
+ "englishUsFontType":3,
+ "frenchText":"Bien joué !",
+ "frenchFontType":3,
+ "italianText":"Ben fatto!",
+ "italianFontType":3,
+ "germanText":"Nettes Spiel!",
+ "germanFontType":3,
+ "spanishText":"¡Buena partida!",
+ "spanishFontType":3,
+ "chineseTText":"出色的對決咚!",
+ "chineseTFontType":1,
+ "koreanText":"멋진 승부였다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_009",
+ "japaneseText":"いいね!",
+ "englishUsText":"Nice!",
+ "englishUsFontType":3,
+ "frenchText":"Joli !",
+ "frenchFontType":3,
+ "italianText":"Wow!",
+ "italianFontType":3,
+ "germanText":"Prima!",
+ "germanFontType":3,
+ "spanishText":"¡Genial!",
+ "spanishFontType":3,
+ "chineseTText":"很好!",
+ "chineseTFontType":1,
+ "koreanText":"좋은데!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_010",
+ "japaneseText":"ありがドーン!",
+ "englishUsText":"Thanks!",
+ "englishUsFontType":3,
+ "frenchText":"Merci !",
+ "frenchFontType":3,
+ "italianText":"Grazie!",
+ "italianFontType":3,
+ "germanText":"Danke!",
+ "germanFontType":3,
+ "spanishText":"¡Gracias!",
+ "spanishFontType":3,
+ "chineseTText":"謝謝咚!",
+ "chineseTFontType":1,
+ "koreanText":"고맙쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_011",
+ "japaneseText":"オレについてこい!",
+ "englishUsText":"Come along with me!",
+ "englishUsFontType":3,
+ "frenchText":"Viens avec moi !",
+ "frenchFontType":3,
+ "italianText":"Seguimi!",
+ "italianFontType":3,
+ "germanText":"Komm mit mir!",
+ "germanFontType":3,
+ "spanishText":"¡Ven conmigo!",
+ "spanishFontType":3,
+ "chineseTText":"跟我來吧!",
+ "chineseTFontType":1,
+ "koreanText":"나를 따라와!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_012",
+ "japaneseText":"ずっと好きでした",
+ "englishUsText":"Hey, I like you!",
+ "englishUsFontType":3,
+ "frenchText":"Je t'aime bien, toi !",
+ "frenchFontType":3,
+ "italianText":"Ehi, mi piaci!",
+ "italianFontType":3,
+ "germanText":"Hey, ich mag dich!",
+ "germanFontType":3,
+ "spanishText":"¡Oye, me caes bien!",
+ "spanishFontType":3,
+ "chineseTText":"我一直喜歡著你",
+ "chineseTFontType":1,
+ "koreanText":"계속 좋아했어요",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_013",
+ "japaneseText":"私じゃダメかな?",
+ "englishUsText":"So, do you think I’m cool?",
+ "englishUsFontType":3,
+ "frenchText":"Dis, tu me trouves cool ?",
+ "frenchFontType":3,
+ "italianText":"Secondo te sono interessante?",
+ "italianFontType":3,
+ "germanText":"Also, findest du mich cool?",
+ "germanFontType":3,
+ "spanishText":"Y yo, ¿te parezco guay?",
+ "spanishFontType":3,
+ "chineseTText":"我就不行嗎?",
+ "chineseTFontType":1,
+ "koreanText":"나로는 안 될까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_014",
+ "japaneseText":"冬眠からさめました!",
+ "englishUsText":"Finally coming out of hibernation!",
+ "englishUsFontType":3,
+ "frenchText":"Ah, enfin. Tu as fini d'hiberner ?",
+ "frenchFontType":3,
+ "italianText":"L'ibernazione è finalmente finita!",
+ "italianFontType":3,
+ "germanText":"Endlich ist der Winterschlaf vorbei.",
+ "germanFontType":3,
+ "spanishText":"¡Por fin se acabó lo de hibernar!",
+ "spanishFontType":3,
+ "chineseTText":"從冬眠中醒來了!",
+ "chineseTFontType":1,
+ "koreanText":"겨울잠에서 깼습니다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_015",
+ "japaneseText":"サクラサクサク",
+ "englishUsText":"Sakura, sakura everywhere!",
+ "englishUsFontType":3,
+ "frenchText":"Des cerisiers en fleurs, partout !",
+ "frenchFontType":3,
+ "italianText":"Ciliegi, ciliegi dappertutto!",
+ "italianFontType":3,
+ "germanText":"Sakura, überall Sakura!",
+ "germanFontType":3,
+ "spanishText":"¡Hay cerezos en flor por todas partes!",
+ "spanishFontType":3,
+ "chineseTText":"櫻花盛開",
+ "chineseTFontType":1,
+ "koreanText":"벚꽃이 핀다 피어",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_016",
+ "japaneseText":"春ですね",
+ "englishUsText":"Ah, Spring!",
+ "englishUsFontType":3,
+ "frenchText":"Ah, le printemps !",
+ "frenchFontType":3,
+ "italianText":"Ah, la primavera!",
+ "italianFontType":3,
+ "germanText":"Ah, Frühling!",
+ "germanFontType":3,
+ "spanishText":"¡Ah, la primavera!",
+ "spanishFontType":3,
+ "chineseTText":"是春天了",
+ "chineseTFontType":1,
+ "koreanText":"봄이네요",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_017",
+ "japaneseText":"ありがとさ~ん",
+ "englishUsText":"Thanks a bunch!",
+ "englishUsFontType":3,
+ "frenchText":"Merci beaucoup !",
+ "frenchFontType":3,
+ "italianText":"Grazie mille!",
+ "italianFontType":3,
+ "germanText":"Vielen Dank!",
+ "germanFontType":3,
+ "spanishText":"¡Muchísimas gracias!",
+ "spanishFontType":3,
+ "chineseTText":"謝謝啊~",
+ "chineseTFontType":1,
+ "koreanText":"고맙수다~",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_018",
+ "japaneseText":"いえーい!",
+ "englishUsText":"Hurray!",
+ "englishUsFontType":3,
+ "frenchText":"Hourra !",
+ "frenchFontType":3,
+ "italianText":"Urrà!",
+ "italianFontType":3,
+ "germanText":"Hurra!",
+ "germanFontType":3,
+ "spanishText":"¡Hurra!",
+ "spanishFontType":3,
+ "chineseTText":"好耶—!",
+ "chineseTFontType":1,
+ "koreanText":"얏호~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_019",
+ "japaneseText":"いただきまーす!",
+ "englishUsText":"This one is mine!",
+ "englishUsFontType":3,
+ "frenchText":"C'est pour moi !",
+ "frenchFontType":3,
+ "italianText":"Questa è mia!",
+ "italianFontType":3,
+ "germanText":"Der gehört mir!",
+ "germanFontType":3,
+ "spanishText":"¡Ganaré!",
+ "spanishFontType":3,
+ "chineseTText":"我開動了—!",
+ "chineseTFontType":1,
+ "koreanText":"잘 먹겠습니다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_020",
+ "japaneseText":"お客さんですカッ?",
+ "englishUsText":"Ah! A customer?",
+ "englishUsFontType":3,
+ "frenchText":"Tiens, un client ?",
+ "frenchFontType":3,
+ "italianText":"Ah! Cliente?",
+ "italianFontType":3,
+ "germanText":"Ah! Ein Kunde?",
+ "germanFontType":3,
+ "spanishText":"¡Anda! ¿Un cliente?",
+ "spanishFontType":3,
+ "chineseTText":"是客人咔?",
+ "chineseTFontType":1,
+ "koreanText":"손님이신가요?",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_021",
+ "japaneseText":"いらっしゃーい!",
+ "englishUsText":"Welcome!",
+ "englishUsFontType":3,
+ "frenchText":"Bienvenue !",
+ "frenchFontType":3,
+ "italianText":"Benvenuto!",
+ "italianFontType":3,
+ "germanText":"Willkommen!",
+ "germanFontType":3,
+ "spanishText":"¡Te doy la bienvenida!",
+ "spanishFontType":3,
+ "chineseTText":"歡迎光臨—!",
+ "chineseTFontType":1,
+ "koreanText":"어서와~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_022",
+ "japaneseText":"オイーーーッス!",
+ "englishUsText":"What’s up!",
+ "englishUsFontType":3,
+ "frenchText":"Comment ça va ?",
+ "frenchFontType":3,
+ "italianText":"Come va?",
+ "italianFontType":3,
+ "germanText":"Was geht ab?",
+ "germanFontType":3,
+ "spanishText":"¿Qué hay?",
+ "spanishFontType":3,
+ "chineseTText":"你好啊————!",
+ "chineseTFontType":1,
+ "koreanText":"안녕하슈~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_023",
+ "japaneseText":"お世話になります",
+ "englishUsText":"Thanks for your help.",
+ "englishUsFontType":3,
+ "frenchText":"Merci pour ton aide.",
+ "frenchFontType":3,
+ "italianText":"Grazie per l'aiuto.",
+ "italianFontType":3,
+ "germanText":"Danke für deine Hilfe.",
+ "germanFontType":3,
+ "spanishText":"Gracias por tu ayuda.",
+ "spanishFontType":3,
+ "chineseTText":"承蒙您的照顧",
+ "chineseTFontType":1,
+ "koreanText":"신세 좀 지겠습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_024",
+ "japaneseText":"おつカレーライス!",
+ "englishUsText":"Way to glow!",
+ "englishUsFontType":3,
+ "frenchText":"Pas mal du tout !",
+ "frenchFontType":3,
+ "italianText":"Così si fa!",
+ "italianFontType":3,
+ "germanText":"Schön geleuchtet!",
+ "germanFontType":3,
+ "spanishText":"¡Qué manera de brillar!",
+ "spanishFontType":3,
+ "chineseTText":"辛苦辣咖哩飯!",
+ "chineseTFontType":1,
+ "koreanText":"수고해시라이스!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_025",
+ "japaneseText":"おつかれさんでしたー",
+ "englishUsText":"Good work!",
+ "englishUsFontType":3,
+ "frenchText":"Beau travail !",
+ "frenchFontType":3,
+ "italianText":"Ottimo lavoro!",
+ "italianFontType":3,
+ "germanText":"Gute Arbeit!",
+ "germanFontType":3,
+ "spanishText":"¡Bien hecho!",
+ "spanishFontType":3,
+ "chineseTText":"辛苦你了—",
+ "chineseTFontType":1,
+ "koreanText":"수고하셨습니다~",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_026",
+ "japaneseText":"おはようっす!",
+ "englishUsText":"Morning!",
+ "englishUsFontType":3,
+ "frenchText":"Bonjour !",
+ "frenchFontType":3,
+ "italianText":"Ciao!",
+ "italianFontType":3,
+ "germanText":"Guten Morgen!",
+ "germanFontType":3,
+ "spanishText":"¡Buenas!",
+ "spanishFontType":3,
+ "chineseTText":"早安啊!",
+ "chineseTFontType":1,
+ "koreanText":"안녕하심까!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_027",
+ "japaneseText":"かたじけないっ!",
+ "englishUsText":"You have my gratitude!",
+ "englishUsFontType":3,
+ "frenchText":"Merci infiniment !",
+ "frenchFontType":3,
+ "italianText":"Hai la mia gratitudine!",
+ "italianFontType":3,
+ "germanText":"Ich danke dir!",
+ "germanFontType":3,
+ "spanishText":"¡Tienes mi gratitud!",
+ "spanishFontType":3,
+ "chineseTText":"不勝感激!",
+ "chineseTFontType":1,
+ "koreanText":"황송하옵니다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_028",
+ "japaneseText":"あなたなら出来るわ",
+ "englishUsText":"You can do this!",
+ "englishUsFontType":3,
+ "frenchText":"Tu peux le faire !",
+ "frenchFontType":3,
+ "italianText":"Puoi farcela!",
+ "italianFontType":3,
+ "germanText":"Du schaffst es!",
+ "germanFontType":3,
+ "spanishText":"¡Puedes hacerlo!",
+ "spanishFontType":3,
+ "chineseTText":"你一定做得到",
+ "chineseTFontType":1,
+ "koreanText":"너라면 할 수 있어",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_029",
+ "japaneseText":"ごきげんいかがカッ?",
+ "englishUsText":"How’s it going?",
+ "englishUsFontType":3,
+ "frenchText":"Ça roule ?",
+ "frenchFontType":3,
+ "italianText":"Come stai?",
+ "italianFontType":3,
+ "germanText":"Wie läuft's so?",
+ "germanFontType":3,
+ "spanishText":"¿Qué tal?",
+ "spanishFontType":3,
+ "chineseTText":"您過得還好嗎?",
+ "chineseTFontType":1,
+ "koreanText":"요즘 좀 어떠세요?",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_030",
+ "japaneseText":"勝つまでやめない!",
+ "englishUsText":"In it ‘til I win it!",
+ "englishUsFontType":3,
+ "frenchText":"Je ferais n'importe quoi !",
+ "frenchFontType":3,
+ "italianText":"Fino alla vittoria!",
+ "italianFontType":3,
+ "germanText":"Solange bis ich gewinne!",
+ "germanFontType":3,
+ "spanishText":"¡No pararé hasta ganar!",
+ "spanishFontType":3,
+ "chineseTText":"到贏為止我不會停手的!",
+ "chineseTFontType":1,
+ "koreanText":"이길 때까지 안 그만둬!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_031",
+ "japaneseText":"君をまってた!",
+ "englishUsText":"I’ve been waiting for you!",
+ "englishUsFontType":3,
+ "frenchText":"Je t'attendais !",
+ "frenchFontType":3,
+ "italianText":"Ti stavo aspettando!",
+ "italianFontType":3,
+ "germanText":"Ich habe auf dich gewartet!",
+ "germanFontType":3,
+ "spanishText":"¡Te estaré esperando!",
+ "spanishFontType":3,
+ "chineseTText":"我等著你!",
+ "chineseTFontType":1,
+ "koreanText":"너를 기다렸지!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_032",
+ "japaneseText":"ちーっす",
+ "englishUsText":"‘Sup.",
+ "englishUsFontType":3,
+ "frenchText":"Salut.",
+ "frenchFontType":3,
+ "italianText":"Ehi.",
+ "italianFontType":3,
+ "germanText":"Was geht?",
+ "germanFontType":3,
+ "spanishText":"¿Qué hay?",
+ "spanishFontType":3,
+ "chineseTText":"早啊~",
+ "chineseTFontType":1,
+ "koreanText":"여어",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_033",
+ "japaneseText":"ドンだけー!?",
+ "englishUsText":"Whoa!",
+ "englishUsFontType":3,
+ "frenchText":"Waouh !",
+ "frenchFontType":3,
+ "italianText":"Whoa!",
+ "italianFontType":3,
+ "germanText":"Uahh!",
+ "germanFontType":3,
+ "spanishText":"¡Caramba!",
+ "spanishFontType":3,
+ "chineseTText":"到什麼程度咚?!",
+ "chineseTFontType":1,
+ "koreanText":"웬일이래~!?",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_034",
+ "japaneseText":"ナイス連打!",
+ "englishUsText":"Nice drum roll!",
+ "englishUsFontType":3,
+ "frenchText":"Joli roulement !",
+ "frenchFontType":3,
+ "italianText":"Bel rullo!",
+ "italianFontType":3,
+ "germanText":"Netter Trommelwirbel!",
+ "germanFontType":3,
+ "spanishText":"¡Buen redoble!",
+ "spanishFontType":3,
+ "chineseTText":"好出色的連打!",
+ "chineseTFontType":1,
+ "koreanText":"나이스 연타!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_035",
+ "japaneseText":"あなたはねむくなる",
+ "englishUsText":"You are getting sleeepy!",
+ "englishUsFontType":3,
+ "frenchText":"Tu t'endors, là !",
+ "frenchFontType":3,
+ "italianText":"Stai rallentando!",
+ "italianFontType":3,
+ "germanText":"Du wirst langsam müde!",
+ "germanFontType":3,
+ "spanishText":"¡Te estás amodorrando!",
+ "spanishFontType":3,
+ "chineseTText":"你想睡了",
+ "chineseTFontType":1,
+ "koreanText":"너는 잠이 온다",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_036",
+ "japaneseText":"ばいばーい",
+ "englishUsText":"Bye now!",
+ "englishUsFontType":3,
+ "frenchText":"Je dois filer !",
+ "frenchFontType":3,
+ "italianText":"Ci vediamo!",
+ "italianFontType":3,
+ "germanText":"Bis dann!",
+ "germanFontType":3,
+ "spanishText":"¡Adiós por ahora!",
+ "spanishFontType":3,
+ "chineseTText":"再見~",
+ "chineseTFontType":1,
+ "koreanText":"바이바이~",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_037",
+ "japaneseText":"ファンタスティック!",
+ "englishUsText":"Fantastic!",
+ "englishUsFontType":3,
+ "frenchText":"Fantastique !",
+ "frenchFontType":3,
+ "italianText":"Fantastico!",
+ "italianFontType":3,
+ "germanText":"Fantastisch!",
+ "germanFontType":3,
+ "spanishText":"¡Fantástico!",
+ "spanishFontType":3,
+ "chineseTText":"真是太棒了!",
+ "chineseTFontType":1,
+ "koreanText":"판타스틱!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_038",
+ "japaneseText":"フルコンボ目指すドン!",
+ "englishUsText":"Go for a full combo!",
+ "englishUsFontType":3,
+ "frenchText":"Fais un combo max !",
+ "frenchFontType":3,
+ "italianText":"Prova la combo completa!",
+ "italianFontType":3,
+ "germanText":"Los, die ganze Kombo!",
+ "germanFontType":3,
+ "spanishText":"¡A por el combo completo!",
+ "spanishFontType":3,
+ "chineseTText":"目標是全連段咚!",
+ "chineseTFontType":1,
+ "koreanText":"목표는 풀 콤보다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_039",
+ "japaneseText":"成長したボクを見て",
+ "englishUsText":"Look how I’ve grown!",
+ "englishUsFontType":3,
+ "frenchText":"Regarde comme j'ai grandi !",
+ "frenchFontType":3,
+ "italianText":"Guarda, sono grande!",
+ "italianFontType":3,
+ "germanText":"Schau wie groß ich geworden bin!",
+ "germanFontType":3,
+ "spanishText":"¡Mira cuánto he crecido!",
+ "spanishFontType":3,
+ "chineseTText":"見識一下成長後的我",
+ "chineseTFontType":1,
+ "koreanText":"성장한 나를 봐줘",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_040",
+ "japaneseText":"ほいきたー!",
+ "englishUsText":"Let’s do this!",
+ "englishUsFontType":3,
+ "frenchText":"C'est parti !",
+ "frenchFontType":3,
+ "italianText":"Cominciamo!",
+ "italianFontType":3,
+ "germanText":"Ziehen wir's durch!",
+ "germanFontType":3,
+ "spanishText":"¡Hagámoslo!",
+ "spanishFontType":3,
+ "chineseTText":"好、來了─!",
+ "chineseTFontType":1,
+ "koreanText":"됐다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_041",
+ "japaneseText":"また会おう!",
+ "englishUsText":"Until next time!",
+ "englishUsFontType":3,
+ "frenchText":"À la prochaine !",
+ "frenchFontType":3,
+ "italianText":"Alla prossima!",
+ "italianFontType":3,
+ "germanText":"Bis zum nächsten Mal!",
+ "germanFontType":3,
+ "spanishText":"¡Hasta la próxima!",
+ "spanishFontType":3,
+ "chineseTText":"下次再見!",
+ "chineseTFontType":1,
+ "koreanText":"또 만나자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_042",
+ "japaneseText":"まったねー!",
+ "englishUsText":"See you later!",
+ "englishUsFontType":3,
+ "frenchText":"À plus tard !",
+ "frenchFontType":3,
+ "italianText":"Ci si rivede!",
+ "italianFontType":3,
+ "germanText":"Wir sehen uns!",
+ "germanFontType":3,
+ "spanishText":"¡Nos vemos luego!",
+ "spanishFontType":3,
+ "chineseTText":"再會囉!",
+ "chineseTFontType":1,
+ "koreanText":"또 만나~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_043",
+ "japaneseText":"やっほー!",
+ "englishUsText":"Hi there!",
+ "englishUsFontType":3,
+ "frenchText":"Hé, salut !",
+ "frenchFontType":3,
+ "italianText":"Ehilà!",
+ "italianFontType":3,
+ "germanText":"Hallo!",
+ "germanFontType":3,
+ "spanishText":"¡Hola, buenas!",
+ "spanishFontType":3,
+ "chineseTText":"哈囉─!",
+ "chineseTFontType":1,
+ "koreanText":"얏호~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_044",
+ "japaneseText":"やるじゃない",
+ "englishUsText":"Way to go!",
+ "englishUsFontType":3,
+ "frenchText":"Pas mal !",
+ "frenchFontType":3,
+ "italianText":"Grande!",
+ "italianFontType":3,
+ "germanText":"Gut gemacht!",
+ "germanFontType":3,
+ "spanishText":"¡Tú sí que sabes!",
+ "spanishFontType":3,
+ "chineseTText":"做得不錯",
+ "chineseTFontType":1,
+ "koreanText":"꽤 하잖아",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_045",
+ "japaneseText":"いざ、勝負!",
+ "englishUsText":"Right then! A match!",
+ "englishUsFontType":3,
+ "frenchText":"Un match ! Parfait !",
+ "frenchFontType":3,
+ "italianText":"Bene! Si gareggia!",
+ "italianFontType":3,
+ "germanText":"Also los! Eine Partie!",
+ "germanFontType":3,
+ "spanishText":"¡Muy bien! ¡Una partida!",
+ "spanishFontType":3,
+ "chineseTText":"一決勝負吧!",
+ "chineseTFontType":1,
+ "koreanText":"자, 승부다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_046",
+ "japaneseText":"よろしくたのむ!",
+ "englishUsText":"Let’s have a good match!",
+ "englishUsFontType":3,
+ "frenchText":"Bonne partie !",
+ "frenchFontType":3,
+ "italianText":"Vinca il migliore!",
+ "italianFontType":3,
+ "germanText":"Auf eine gute Partie!",
+ "germanFontType":3,
+ "spanishText":"¡Vamos a jugar!",
+ "spanishFontType":3,
+ "chineseTText":"有勞你了!",
+ "chineseTFontType":1,
+ "koreanText":"잘 부탁해!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_047",
+ "japaneseText":"ありガトーショコラ!",
+ "englishUsText":"Arigateau chocolat!",
+ "englishUsFontType":3,
+ "frenchText":"Arigâteau chocolat !",
+ "frenchFontType":3,
+ "italianText":"Arigateau di cioccolato!",
+ "italianFontType":3,
+ "germanText":"Arigateau chocolat!",
+ "germanFontType":3,
+ "spanishText":"¡Arigato, bombón!",
+ "spanishFontType":3,
+ "chineseTText":"謝謝巧克力蛋糕!",
+ "chineseTFontType":1,
+ "koreanText":"고마워터멜론!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_048",
+ "japaneseText":"またせたな!",
+ "englishUsText":"I’m here now!",
+ "englishUsFontType":3,
+ "frenchText":"Je suis là !",
+ "frenchFontType":3,
+ "italianText":"Ora ci sono io!",
+ "italianFontType":3,
+ "germanText":"Ich bin jetzt da!",
+ "germanFontType":3,
+ "spanishText":"¡Ya estoy aquí!",
+ "spanishFontType":3,
+ "chineseTText":"讓你們久等啦!",
+ "chineseTFontType":1,
+ "koreanText":"기다리게 했군!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_049",
+ "japaneseText":"良い感じでありまーす!",
+ "englishUsText":"Looking good!",
+ "englishUsFontType":3,
+ "frenchText":"C'est bien parti !",
+ "frenchFontType":3,
+ "italianText":"Ottimo!",
+ "italianFontType":3,
+ "germanText":"Sieht gut aus!",
+ "germanFontType":3,
+ "spanishText":"¡Qué buen aspecto!",
+ "spanishFontType":3,
+ "chineseTText":"感覺真好!",
+ "chineseTFontType":1,
+ "koreanText":"좋은 느낌입니다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_050",
+ "japaneseText":"あけおめー",
+ "englishUsText":"Happy new year!",
+ "englishUsFontType":3,
+ "frenchText":"Bonne année !",
+ "frenchFontType":3,
+ "italianText":"Felice anno nuovo!",
+ "italianFontType":3,
+ "germanText":"Frohes neues Jahr!",
+ "germanFontType":3,
+ "spanishText":"¡Feliz año nuevo!",
+ "spanishFontType":3,
+ "chineseTText":"新年快樂!",
+ "chineseTFontType":1,
+ "koreanText":"새해 복 많이 받아~",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_051",
+ "japaneseText":"ハッピーニューイヤー!",
+ "englishUsText":"Happy new year!",
+ "englishUsFontType":3,
+ "frenchText":"Bonne année !",
+ "frenchFontType":3,
+ "italianText":"Felice anno nuovo!",
+ "italianFontType":3,
+ "germanText":"Frohes neues Jahr!",
+ "germanFontType":3,
+ "spanishText":"¡Feliz año nuevo!",
+ "spanishFontType":3,
+ "chineseTText":"HAPPY NEW YEAR!",
+ "chineseTFontType":1,
+ "koreanText":"해피 뉴 이어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_052",
+ "japaneseText":"うしろ!うしろ!",
+ "englishUsText":"Right behind you! Right behind you!",
+ "englishUsFontType":3,
+ "frenchText":"Derrière toi ! Derrière toi !",
+ "frenchFontType":3,
+ "italianText":"Dietro di te! Dietro di te!",
+ "italianFontType":3,
+ "germanText":"Direkt hinter dir! Direkt hinter dir!",
+ "germanFontType":3,
+ "spanishText":"¡Detrás de ti! ¡Detrás de ti!",
+ "spanishFontType":3,
+ "chineseTText":"後面!後面!",
+ "chineseTFontType":1,
+ "koreanText":"뒤! 뒤에!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_053",
+ "japaneseText":"ことよろー",
+ "englishUsText":"Let’s make this a good one!",
+ "englishUsFontType":3,
+ "frenchText":"Bonne chance !",
+ "frenchFontType":3,
+ "italianText":"Impegniamoci!",
+ "italianFontType":3,
+ "germanText":"Das muss gut werden!",
+ "germanFontType":3,
+ "spanishText":"¡Vamos a hacerlo bien!",
+ "spanishFontType":3,
+ "chineseTText":"今年也多指教啊~",
+ "chineseTFontType":1,
+ "koreanText":"올해도 잘 부탁해~",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_054",
+ "japaneseText":"トリック・オア・トリート!",
+ "englishUsText":"Trick or treat!",
+ "englishUsFontType":3,
+ "frenchText":"Des bonbons ou un sort !",
+ "frenchFontType":3,
+ "italianText":"Dolcetto o scherzetto!",
+ "italianFontType":3,
+ "germanText":"Süßes oder Saures!",
+ "germanFontType":3,
+ "spanishText":"¿Truco o trato?",
+ "spanishFontType":3,
+ "chineseTText":"不給糖就搗蛋!",
+ "chineseTFontType":1,
+ "koreanText":"트릭 오어 트리트!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_055",
+ "japaneseText":"めりくりー",
+ "englishUsText":"Merry Xmas!",
+ "englishUsFontType":3,
+ "frenchText":"Joyeux Noël !",
+ "frenchFontType":3,
+ "italianText":"Buon Natale!",
+ "italianFontType":3,
+ "germanText":"Frohe Weihnachten!",
+ "germanFontType":3,
+ "spanishText":"¡Feliz Navidad!",
+ "spanishFontType":3,
+ "chineseTText":"聖誕快樂!",
+ "chineseTFontType":1,
+ "koreanText":"메리 크리스마스!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_056",
+ "japaneseText":"あきらめないで~!",
+ "englishUsText":"Don’t give up!",
+ "englishUsFontType":3,
+ "frenchText":"N'abandonne pas !",
+ "frenchFontType":3,
+ "italianText":"Non arrenderti!",
+ "italianFontType":3,
+ "germanText":"Gib nicht auf!",
+ "germanFontType":3,
+ "spanishText":"¡No te rindas!",
+ "spanishFontType":3,
+ "chineseTText":"不要輕言放棄~!",
+ "chineseTFontType":1,
+ "koreanText":"포기하면 안 돼~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_057",
+ "japaneseText":"あきらめるな!しがみつけ!!",
+ "englishUsText":"Hang in there!",
+ "englishUsFontType":3,
+ "frenchText":"Tiens bon !",
+ "frenchFontType":3,
+ "italianText":"Resisti!",
+ "italianFontType":3,
+ "germanText":"Halt durch!",
+ "germanFontType":3,
+ "spanishText":"¡Resiste!",
+ "spanishFontType":3,
+ "chineseTText":"不要放棄!緊咬不放!!",
+ "chineseTFontType":1,
+ "koreanText":"포기하지 마! 붙잡고 늘어져!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_058",
+ "japaneseText":"ボクちょっと強いドン♥",
+ "englishUsText":"I’m pretty good♥",
+ "englishUsFontType":3,
+ "frenchText":"Je me sens bien ♥",
+ "frenchFontType":3,
+ "italianText":"Me la cavo♥",
+ "italianFontType":3,
+ "germanText":"Ich bin echt gut♥",
+ "germanFontType":3,
+ "spanishText":"Se me da bien ♥",
+ "spanishFontType":3,
+ "chineseTText":"我有點強咚♥",
+ "chineseTFontType":1,
+ "koreanText":"나 조금 강하다쿵♥",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_059",
+ "japaneseText":"リタイアしないせんげん!",
+ "englishUsText":"Tendering my lack of resignation!",
+ "englishUsFontType":3,
+ "frenchText":"Je travaille mon manque de résignation !",
+ "frenchFontType":3,
+ "italianText":"Non mi stancherò mai di lottare!",
+ "italianFontType":3,
+ "germanText":"Ich biete meine fehlende Resignation an!",
+ "germanFontType":3,
+ "spanishText":"¡Presento mi falta de dimisión!",
+ "spanishFontType":3,
+ "chineseTText":"我坦言我是不會輸的!",
+ "chineseTFontType":1,
+ "koreanText":"포기 안 함 선언!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_060",
+ "japaneseText":"おそろしい子!",
+ "englishUsText":"You’re good!",
+ "englishUsFontType":3,
+ "frenchText":"Tu te débrouilles bien !",
+ "frenchFontType":3,
+ "italianText":"Sei forte!",
+ "italianFontType":3,
+ "germanText":"Du bist gut!",
+ "germanFontType":3,
+ "spanishText":"¡Lo haces bien!",
+ "spanishFontType":3,
+ "chineseTText":"令人恐懼的孩子!",
+ "chineseTFontType":1,
+ "koreanText":"무서운 아이!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_061",
+ "japaneseText":"オラオラオラオラオラオラ!",
+ "englishUsText":"C’mon c’mon c’mon!",
+ "englishUsFontType":3,
+ "frenchText":"Allez allez allez !",
+ "frenchFontType":3,
+ "italianText":"Forza, forza, forza!",
+ "italianFontType":3,
+ "germanText":"Komm schon, komm schon!",
+ "germanFontType":3,
+ "spanishText":"¡Vamos, venga, vamos!",
+ "spanishFontType":3,
+ "chineseTText":"歐拉歐拉歐拉歐拉歐拉歐拉!",
+ "chineseTFontType":1,
+ "koreanText":"오라오라오라오라오라오라!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_062",
+ "japaneseText":"お見事!",
+ "englishUsText":"Awesome!",
+ "englishUsFontType":3,
+ "frenchText":"Génial !",
+ "frenchFontType":3,
+ "italianText":"Fantastico!",
+ "italianFontType":3,
+ "germanText":"Wahnsinn!",
+ "germanFontType":3,
+ "spanishText":"¡Impresionante!",
+ "spanishFontType":3,
+ "chineseTText":"厲害!",
+ "chineseTFontType":1,
+ "koreanText":"훌륭하다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_063",
+ "japaneseText":"お楽しみはこれからよ",
+ "englishUsText":"Here comes the real fun!",
+ "englishUsFontType":3,
+ "frenchText":"C'est là que c'est fun !",
+ "frenchFontType":3,
+ "italianText":"Adesso ci divertiamo!",
+ "italianFontType":3,
+ "germanText":"Jetzt geht der Spaß los!",
+ "germanFontType":3,
+ "spanishText":"¡Ya viene lo divertido!",
+ "spanishFontType":3,
+ "chineseTText":"有趣的現在才要開始呢!",
+ "chineseTFontType":1,
+ "koreanText":"진짜 즐거움은 이제부터다",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_064",
+ "japaneseText":"かまちょかまちょ",
+ "englishUsText":"*poke* *poke*",
+ "englishUsFontType":3,
+ "frenchText":"*Toc* *Toc*",
+ "frenchFontType":3,
+ "italianText":"*poc* *poc*",
+ "italianFontType":3,
+ "germanText":"*stups* *stups*",
+ "germanFontType":3,
+ "spanishText":"*Toc* *Toc*",
+ "spanishFontType":3,
+ "chineseTText":"幫幫我,幫幫我嘛",
+ "chineseTFontType":1,
+ "koreanText":"나한테 관심 좀",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_065",
+ "japaneseText":"ごかんべーん!",
+ "englishUsText":"Please go easy on me!",
+ "englishUsFontType":3,
+ "frenchText":"Vas-y mollo, je débute !",
+ "frenchFontType":3,
+ "italianText":"Vacci piano, per favore!",
+ "italianFontType":3,
+ "germanText":"Sei bitte nett zu mir!",
+ "germanFontType":3,
+ "spanishText":"¡No me machaques mucho!",
+ "spanishFontType":3,
+ "chineseTText":"請饒了我吧!",
+ "chineseTFontType":1,
+ "koreanText":"부디 자비를~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_066",
+ "japaneseText":"この勝負、もらったドン!",
+ "englishUsText":"This match is mine!",
+ "englishUsFontType":3,
+ "frenchText":"Ce match est à moi !",
+ "frenchFontType":3,
+ "italianText":"Questa la vinco io!",
+ "italianFontType":3,
+ "germanText":"Die Partie gehört mir!",
+ "germanFontType":3,
+ "spanishText":"¡Esta partida es mía!",
+ "spanishFontType":3,
+ "chineseTText":"這場對決,我贏定了咚!",
+ "chineseTFontType":1,
+ "koreanText":"이번 승부는 내 승리다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_067",
+ "japaneseText":"この勝負、いっぺんのくいなし!",
+ "englishUsText":"No regrets for this match!",
+ "englishUsFontType":3,
+ "frenchText":"Aucun regret !",
+ "frenchFontType":3,
+ "italianText":"Diamo il massimo!",
+ "italianFontType":3,
+ "germanText":"Ich bereue nichts!",
+ "germanFontType":3,
+ "spanishText":"¡Pienso ir a por todas!",
+ "spanishFontType":3,
+ "chineseTText":"我對這場對決毫無悔恨!",
+ "chineseTFontType":1,
+ "koreanText":"이 승부에 한 점의 후회도 없다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_068",
+ "japaneseText":"明日からがんばります!",
+ "englishUsText":"I’ll do my best! ...Starting tomorrow.",
+ "englishUsFontType":3,
+ "frenchText":"Je ferai de mon mieux... à partir de demain.",
+ "frenchFontType":3,
+ "italianText":"Farò del mio meglio! ...Da domani.",
+ "italianFontType":3,
+ "germanText":"Ich gebe mein Bestes ... ab morgen.",
+ "germanFontType":3,
+ "spanishText":"¡Me esforzaré más! A partir de mañana.",
+ "spanishFontType":3,
+ "chineseTText":"從明天起加油吧!",
+ "chineseTFontType":1,
+ "koreanText":"내일부터 열심히 할게요!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_069",
+ "japaneseText":"太鼓の達人初心者です!",
+ "englishUsText":"I’m new to this!",
+ "englishUsFontType":3,
+ "frenchText":"Je n'ai jamais fait ça !",
+ "frenchFontType":3,
+ "italianText":"Non ho tanta esperienza...",
+ "italianFontType":3,
+ "germanText":"Das ist noch neu für mich!",
+ "germanFontType":3,
+ "spanishText":"¡Es mi primera vez!",
+ "spanishFontType":3,
+ "chineseTText":"我是太鼓之達人的初學者!",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 초보입니다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_070",
+ "japaneseText":"そうきたカッ!",
+ "englishUsText":"So, you’ve arrived!",
+ "englishUsFontType":3,
+ "frenchText":"Ah, te voilà !",
+ "frenchFontType":3,
+ "italianText":"Eccoti qui!",
+ "italianFontType":3,
+ "germanText":"Du bist also angekommen.",
+ "germanFontType":3,
+ "spanishText":"¡Anda, ya estás aquí!",
+ "spanishFontType":3,
+ "chineseTText":"你來了咔!",
+ "chineseTFontType":1,
+ "koreanText":"그렇게 나오기냐!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_071",
+ "japaneseText":"これでいいのだドン!",
+ "englishUsText":"This is just fine!",
+ "englishUsFontType":3,
+ "frenchText":"C'est nickel !",
+ "frenchFontType":3,
+ "italianText":"Bene così.",
+ "italianFontType":3,
+ "germanText":"Das ist in Ordnung!",
+ "germanFontType":3,
+ "spanishText":"¡Lo estás haciendo bien!",
+ "spanishFontType":3,
+ "chineseTText":"這樣子就好咚!",
+ "chineseTFontType":1,
+ "koreanText":"이러면 된 거다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_072",
+ "japaneseText":"これはワンチャンあるカッ?",
+ "englishUsText":"Could this be the turnaround?",
+ "englishUsFontType":3,
+ "frenchText":"Est-ce un revirement ?",
+ "frenchFontType":3,
+ "italianText":"Che sia la svolta?",
+ "italianFontType":3,
+ "germanText":"Könnte das die Wende sein?",
+ "germanFontType":3,
+ "spanishText":"¿Esto lo cambiará todo?",
+ "spanishFontType":3,
+ "chineseTText":"這樣子有機會咔?",
+ "chineseTFontType":1,
+ "koreanText":"아직 기회는 남았나?",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_073",
+ "japaneseText":"さあ、ショータイムだドン!",
+ "englishUsText":"It’s showtime!",
+ "englishUsFontType":3,
+ "frenchText":"C'est l'heure du show !",
+ "frenchFontType":3,
+ "italianText":"Si balla!",
+ "italianFontType":3,
+ "germanText":"Showtime!",
+ "germanFontType":3,
+ "spanishText":"¡Empieza el espectáculo!",
+ "spanishFontType":3,
+ "chineseTText":"來吧,SHOW TIME咚!",
+ "chineseTFontType":1,
+ "koreanText":"자, 쇼타임이다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_074",
+ "japaneseText":"てへぺろピース♥",
+ "englishUsText":"My bad! Peace♥",
+ "englishUsFontType":3,
+ "frenchText":"Pardon, c'est ma faute ♥",
+ "frenchFontType":3,
+ "italianText":"Colpa mia! Pace ♥",
+ "italianFontType":3,
+ "germanText":"Tut mir leid! Peace♥",
+ "germanFontType":3,
+ "spanishText":"¡Culpa mía! Paz.♥",
+ "spanishFontType":3,
+ "chineseTText":"抱歉搞砸了,嘿嘿♥",
+ "chineseTFontType":1,
+ "koreanText":"데헷페로 브이~♥",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_075",
+ "japaneseText":"いい夢見るドン!",
+ "englishUsText":"I’ve got a great dream!",
+ "englishUsFontType":3,
+ "frenchText":"J'ai fait un super rêve !",
+ "frenchFontType":3,
+ "italianText":"Ho un grande sogno!",
+ "italianFontType":3,
+ "germanText":"Ich habe einen großen Traum!",
+ "germanFontType":3,
+ "spanishText":"¡Tengo un gran sueño!",
+ "spanishFontType":3,
+ "chineseTText":"我有個很棒的夢想咚!",
+ "chineseTFontType":1,
+ "koreanText":"좋은 꿈 꿔라쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_076",
+ "japaneseText":"ぬかしおる!",
+ "englishUsText":"As if!",
+ "englishUsFontType":3,
+ "frenchText":"Ça risque pas !",
+ "frenchFontType":3,
+ "italianText":"Figuriamoci!",
+ "italianFontType":3,
+ "germanText":"Als ob!",
+ "germanFontType":3,
+ "spanishText":"¡Sí, claro!",
+ "spanishFontType":3,
+ "chineseTText":"你還真敢說!",
+ "chineseTFontType":1,
+ "koreanText":"입은 살았구나!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_077",
+ "japaneseText":"今のボクに勝てるかな?",
+ "englishUsText":"Can you beat me as I am now?",
+ "englishUsFontType":3,
+ "frenchText":"Tu pourrais me battre, là ?",
+ "frenchFontType":3,
+ "italianText":"Pensi di riuscire a battermi?",
+ "italianFontType":3,
+ "germanText":"Kannst du mich jetzt schlagen?",
+ "germanFontType":3,
+ "spanishText":"¿Crees que puedes derrotarme?",
+ "spanishFontType":3,
+ "chineseTText":"你能贏過現在的我嗎?",
+ "chineseTFontType":1,
+ "koreanText":"지금의 날 이길 수 있을까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_078",
+ "japaneseText":"ボクに勝てるのはキミだけだよ",
+ "englishUsText":"Only you stand a chance against me now.",
+ "englishUsFontType":3,
+ "frenchText":"Il n'y a que toi à avoir tes chances contre moi.",
+ "frenchFontType":3,
+ "italianText":"Ormai solo tu puoi battermi.",
+ "italianFontType":3,
+ "germanText":"Nur du hast noch eine Chance gegen mich.",
+ "germanFontType":3,
+ "spanishText":"Solo tú tienes posibilidades contra mí.",
+ "spanishFontType":3,
+ "chineseTText":"能贏過我的只有你",
+ "chineseTFontType":1,
+ "koreanText":"날 이길 수 있는 건 너뿐이야",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_079",
+ "japaneseText":"キミにはだつぼうだよ",
+ "englishUsText":"I take off my hat to you!",
+ "englishUsFontType":3,
+ "frenchText":"Je te tire mon chapeau !",
+ "frenchFontType":3,
+ "italianText":"Tanto di cappello a te!",
+ "italianFontType":3,
+ "germanText":"Ich ziehe den Hut vor dir!",
+ "germanFontType":3,
+ "spanishText":"¡Me quito el sombrero ante ti!",
+ "spanishFontType":3,
+ "chineseTText":"我要向你表達敬意",
+ "chineseTFontType":1,
+ "koreanText":"너에게는 경의를 표할게",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_080",
+ "japaneseText":"ボクにはライバルが多すぎるドン!",
+ "englishUsText":"I’ve got too many rivals!",
+ "englishUsFontType":3,
+ "frenchText":"J'ai trop de rivaux !",
+ "frenchFontType":3,
+ "italianText":"Ho troppi rivali!",
+ "italianFontType":3,
+ "germanText":"Ich hab zu viele Rivalen!",
+ "germanFontType":3,
+ "spanishText":"¡Demasiados rivales!",
+ "spanishFontType":3,
+ "chineseTText":"我的宿敵太多了咚",
+ "chineseTFontType":1,
+ "koreanText":"난 라이벌이 너무 많다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_081",
+ "japaneseText":"ほっほっほ。やりますな",
+ "englishUsText":"Well well, nicely done.",
+ "englishUsFontType":3,
+ "frenchText":"Hé hé, bien joué.",
+ "frenchFontType":3,
+ "italianText":"Bene, ottimo lavoro.",
+ "italianFontType":3,
+ "germanText":"Hey, gut gemacht.",
+ "germanFontType":3,
+ "spanishText":"Bien, muy bien hecho.",
+ "spanishFontType":3,
+ "chineseTText":"呵、呵、呵,真有一套",
+ "chineseTFontType":1,
+ "koreanText":"홋홋홋. 좀 하시네요",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_082",
+ "japaneseText":"ほほう。なかなかやるね",
+ "englishUsText":"Woah, impressive.",
+ "englishUsFontType":3,
+ "frenchText":"Wow, impressionnant.",
+ "frenchFontType":3,
+ "italianText":"Woah, impressionante.",
+ "italianFontType":3,
+ "germanText":"Wow, beeindruckend.",
+ "germanFontType":3,
+ "spanishText":"Caramba, impresionante.",
+ "spanishFontType":3,
+ "chineseTText":"哦哦,實力不錯欸",
+ "chineseTFontType":1,
+ "koreanText":"호오. 꽤 하는데 그래",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_083",
+ "japaneseText":"楽しんだら誰もが太鼓の達人だ!",
+ "englishUsText":"If you’re having fun, you’re a Taiko Master already!",
+ "englishUsFontType":3,
+ "frenchText":"Si tu t'amuses, c'est que tu es déjà Taiko no Tatsujin !",
+ "frenchFontType":3,
+ "italianText":"Se ti stai divertendo, sei già un Maestro del Taiko!",
+ "italianFontType":3,
+ "germanText":"Wenn du Spaß hast, bist du bereits ein Taiko-Meister!",
+ "germanFontType":3,
+ "spanishText":"Si te estás divirtiendo, ¡ya eres un maestro de Taiko!",
+ "spanishFontType":3,
+ "chineseTText":"若能樂在其中每個人都是太鼓之達人!",
+ "chineseTFontType":1,
+ "koreanText":"즐긴다면 모두 태고의 달인이다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_084",
+ "japaneseText":"まじかー!",
+ "englishUsText":"No way!",
+ "englishUsFontType":3,
+ "frenchText":"Pas possible !",
+ "frenchFontType":3,
+ "italianText":"Pazzesco!",
+ "italianFontType":3,
+ "germanText":"Vergiss es!",
+ "germanFontType":3,
+ "spanishText":"¡Ni hablar!",
+ "spanishFontType":3,
+ "chineseTText":"不會吧─!",
+ "chineseTFontType":1,
+ "koreanText":"진짜냐~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_085",
+ "japaneseText":"もういっちょやってみるカッ?",
+ "englishUsText":"Wanna go again?",
+ "englishUsFontType":3,
+ "frenchText":"Tu veux recommencer ?",
+ "frenchFontType":3,
+ "italianText":"Vuoi riprovare?",
+ "italianFontType":3,
+ "germanText":"Willst du noch mal?",
+ "germanFontType":3,
+ "spanishText":"¿Probamos de nuevo?",
+ "spanishFontType":3,
+ "chineseTText":"再嘗試一下?",
+ "chineseTFontType":1,
+ "koreanText":"어디 한번 해볼까!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_086",
+ "japaneseText":"やってみるドン!",
+ "englishUsText":"Go for it!",
+ "englishUsFontType":3,
+ "frenchText":"Vas-y !",
+ "frenchFontType":3,
+ "italianText":"Dacci dentro!",
+ "italianFontType":3,
+ "germanText":"Dann los!",
+ "germanFontType":3,
+ "spanishText":"¡Vamos allá!",
+ "spanishFontType":3,
+ "chineseTText":"看我的咚!",
+ "chineseTFontType":1,
+ "koreanText":"한번 해보겠다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_087",
+ "japaneseText":"レッツパーリィ!",
+ "englishUsText":"Let’s party!",
+ "englishUsFontType":3,
+ "frenchText":"Faisons la fête !",
+ "frenchFontType":3,
+ "italianText":"Divertiamoci!",
+ "italianFontType":3,
+ "germanText":"Machen wir Party!",
+ "germanFontType":3,
+ "spanishText":"¡Qué empiece la fiesta!",
+ "spanishFontType":3,
+ "chineseTText":"Let's party!",
+ "chineseTFontType":1,
+ "koreanText":"렛츠 파리~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_088",
+ "japaneseText":"一曲付き合いたまえ!",
+ "englishUsText":"Join me for a song!",
+ "englishUsFontType":3,
+ "frenchText":"Fais un titre avec moi !",
+ "frenchFontType":3,
+ "italianText":"Unisciti a me!",
+ "italianFontType":3,
+ "germanText":"Ha, singen wir zusammen!",
+ "germanFontType":3,
+ "spanishText":"¡Toca una conmigo!",
+ "spanishFontType":3,
+ "chineseTText":"陪我演奏一首吧!",
+ "chineseTFontType":1,
+ "koreanText":"같이 한 곡 연주하게나!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_089",
+ "japaneseText":"音符がトップギアだぜ!",
+ "englishUsText":"The notes are running at top gear!",
+ "englishUsFontType":3,
+ "frenchText":"Les notes défilent !",
+ "frenchFontType":3,
+ "italianText":"Le note sfrecciano!",
+ "italianFontType":3,
+ "germanText":"Die Noten sind superschnell!",
+ "germanFontType":3,
+ "spanishText":"¡Las notas van a cien por hora!",
+ "spanishFontType":3,
+ "chineseTText":"我的音符可是Top gear狀態!",
+ "chineseTFontType":1,
+ "koreanText":"음표가 최고속기어야!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_090",
+ "japaneseText":"君がナンバー1だドン!",
+ "englishUsText":"You’re the best!",
+ "englishUsFontType":3,
+ "frenchText":"Tu es au top !",
+ "frenchFontType":3,
+ "italianText":"Sei troppo forte!",
+ "italianFontType":3,
+ "germanText":"Du bist der Beste!",
+ "germanFontType":3,
+ "spanishText":"¡Eres insuperable!",
+ "spanishFontType":3,
+ "chineseTText":"你是世界第一咚!",
+ "chineseTFontType":1,
+ "koreanText":"네가 넘버 원이다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_091",
+ "japaneseText":"計算通りだドン!",
+ "englishUsText":"Just as I planned!",
+ "englishUsFontType":3,
+ "frenchText":"Comme je l'avais prévu !",
+ "frenchFontType":3,
+ "italianText":"Come pensavo!",
+ "italianFontType":3,
+ "germanText":"Genau wie geplant!",
+ "germanFontType":3,
+ "spanishText":"¡Justo como planeaba!",
+ "spanishFontType":3,
+ "chineseTText":"跟我預料的一樣咚!",
+ "chineseTFontType":1,
+ "koreanText":"계획대로쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_092",
+ "japaneseText":"決着をつける時が来たドン!",
+ "englishUsText":"Time to settle this!",
+ "englishUsFontType":3,
+ "frenchText":"Réglons ça maintenant !",
+ "frenchFontType":3,
+ "italianText":"Ti sfido!",
+ "italianFontType":3,
+ "germanText":"Bringen wir das zu Ende!",
+ "germanFontType":3,
+ "spanishText":"¡Es hora de zanjar esto!",
+ "spanishFontType":3,
+ "chineseTText":"做了斷的時刻到了咚!",
+ "chineseTFontType":1,
+ "koreanText":"결판을 낼 때가 왔다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_093",
+ "japaneseText":"私は私の譜面を一歩もゆずらない",
+ "englishUsText":"I’m gonna give the greatest performance I can!",
+ "englishUsFontType":3,
+ "frenchText":"Faisons de notre mieux !",
+ "frenchFontType":3,
+ "italianText":"Farò del mio meglio!",
+ "italianFontType":3,
+ "germanText":"Ich werde mein Bestes geben!",
+ "germanFontType":3,
+ "spanishText":"¡Voy a hacerlo lo mejor posible!",
+ "spanishFontType":3,
+ "chineseTText":"我對我的譜面絕不讓步",
+ "chineseTFontType":1,
+ "koreanText":"나는 내 악보를 절대 양보 못해",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_094",
+ "japaneseText":"手ぬるいドン!",
+ "englishUsText":"Too easy!",
+ "englishUsFontType":3,
+ "frenchText":"Vraiment trop facile !",
+ "frenchFontType":3,
+ "italianText":"Troppo facile!",
+ "italianFontType":3,
+ "germanText":"Das war zu einfach!",
+ "germanFontType":3,
+ "spanishText":"¡Demasiado fácil!",
+ "spanishFontType":3,
+ "chineseTText":"太隨便了咚!",
+ "chineseTFontType":1,
+ "koreanText":"어설프다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_095",
+ "japaneseText":"太鼓が全部教えてくれた!",
+ "englishUsText":"The drums taught me everything.",
+ "englishUsFontType":3,
+ "frenchText":"Les tambours m'ont tout appris.",
+ "frenchFontType":3,
+ "italianText":"Il tamburo è il mio maestro.",
+ "italianFontType":3,
+ "germanText":"Die Trommeln sind meine Lehrer.",
+ "germanFontType":3,
+ "spanishText":"Los tambores son mis maestros.",
+ "spanishFontType":3,
+ "chineseTText":"太鼓教會了我一切",
+ "chineseTFontType":1,
+ "koreanText":"전부 태고가 가르쳐 주었다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_096",
+ "japaneseText":"メカドンよんでくる!",
+ "englishUsText":"I’m gonna call Mecha-DON!",
+ "englishUsFontType":3,
+ "frenchText":"Je vais appeler Mecha DON !",
+ "frenchFontType":3,
+ "italianText":"Chiamerò Mecha-DON!",
+ "italianFontType":3,
+ "germanText":"Ich rufe Mecha-DON!",
+ "germanFontType":3,
+ "spanishText":"¡Voy a llamar a Mecha-DON!",
+ "spanishFontType":3,
+ "chineseTText":"呼喚機械咚吧!",
+ "chineseTFontType":1,
+ "koreanText":"메카동 불러 올게!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_097",
+ "japaneseText":"立つドンよんでくる!",
+ "englishUsText":"I’m gonna call Tatsu-DON!",
+ "englishUsFontType":3,
+ "frenchText":"Je vais appeler Tatsu DON !",
+ "frenchFontType":3,
+ "italianText":"Chiamerò Tatsu-DON!",
+ "italianFontType":3,
+ "germanText":"Ich rufe Tatsu-DON!",
+ "germanFontType":3,
+ "spanishText":"¡Voy a llamar a Tatsu-DON!",
+ "spanishFontType":3,
+ "chineseTText":"呼喚站立咚吧!",
+ "chineseTFontType":1,
+ "koreanText":"타츠동 불러 올게!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_098",
+ "japaneseText":"太鼓は友達!こわくないドン!",
+ "englishUsText":"The drums are your friend! Don't be scared!",
+ "englishUsFontType":3,
+ "frenchText":"Les tambours sont tes amis. N'aie pas peur !",
+ "frenchFontType":3,
+ "italianText":"Il tamburo è tuo amico! Non aver paura!",
+ "italianFontType":3,
+ "germanText":"Die Trommeln sind Freunde! Keine Angst!",
+ "germanFontType":3,
+ "spanishText":"¡Los tambores son tus amigos! ¡No te asustes!",
+ "spanishFontType":3,
+ "chineseTText":"太鼓是朋友!並不可怕咚!",
+ "chineseTFontType":1,
+ "koreanText":"태고는 친구야! 무섭지 않아쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_099",
+ "japaneseText":"天がよぶ地がよぶ太鼓がよぶ",
+ "englishUsText":"The skies call, the earth calls, the drums call!",
+ "englishUsFontType":3,
+ "frenchText":"Les cieux, la terre et les tambours résonnent !",
+ "frenchFontType":3,
+ "italianText":"Cielo e terra ti chiamano, il tamburo ti chiama!",
+ "italianFontType":3,
+ "germanText":"Himmel, Erde und Trommeln rufen!",
+ "germanFontType":3,
+ "spanishText":"¡Los cielos, la tierra y los tambores nos llaman!",
+ "spanishFontType":3,
+ "chineseTText":"天在呼喚!地在呼喚!太鼓在呼喚!",
+ "chineseTFontType":1,
+ "koreanText":"하늘이, 땅이, 태고가 부른다",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_100",
+ "japaneseText":"天才ですカッ?",
+ "englishUsText":"Are you a prodigy?",
+ "englishUsFontType":3,
+ "frenchText":"Serais-tu un prodige ?",
+ "frenchFontType":3,
+ "italianText":"Sei un fenomeno?",
+ "italianFontType":3,
+ "germanText":"Bist du ein Wunderkind?",
+ "germanFontType":3,
+ "spanishText":"¿Eres un prodigio?",
+ "spanishFontType":3,
+ "chineseTText":"你是天才?",
+ "chineseTFontType":1,
+ "koreanText":"천잰가요?",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_101",
+ "japaneseText":"逃げちゃダメカッ?",
+ "englishUsText":"Taking the easy way out?",
+ "englishUsFontType":3,
+ "frenchText":"Tu fuis, c'est ça ?",
+ "frenchFontType":3,
+ "italianText":"Ti arrendi così?",
+ "italianFontType":3,
+ "germanText":"Du machst es dir leicht?",
+ "germanFontType":3,
+ "spanishText":"Una salida fácil, ¿eh?",
+ "spanishFontType":3,
+ "chineseTText":"不能逃?",
+ "chineseTFontType":1,
+ "koreanText":"도망치면 안 돼?",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_102",
+ "japaneseText":"本気の失敗には価値があるドン",
+ "englishUsText":"Even failure has value if it’s earnest.",
+ "englishUsFontType":3,
+ "frenchText":"L'échec reste utile.",
+ "frenchFontType":3,
+ "italianText":"L'importante è impegnarsi.",
+ "italianFontType":3,
+ "germanText":"Auch aus Fehlern kann man lernen.",
+ "germanFontType":3,
+ "spanishText":"De los fallos se aprende.",
+ "spanishFontType":3,
+ "chineseTText":"認真去做的失敗是有價值的咚",
+ "chineseTFontType":1,
+ "koreanText":"진짜 실패엔 가치가 있다쿵",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_103",
+ "japaneseText":"要チェックだドン!!",
+ "englishUsText":"You don’t wanna miss this!",
+ "englishUsFontType":3,
+ "frenchText":"Ne rate pas ça !",
+ "frenchFontType":3,
+ "italianText":"Su! Non puoi mancare!",
+ "italianFontType":3,
+ "germanText":"Verpass das nicht!",
+ "germanFontType":3,
+ "spanishText":"¡No te pierdas esto!",
+ "spanishFontType":3,
+ "chineseTText":"需要檢查咚!!",
+ "chineseTFontType":1,
+ "koreanText":"꼭 체크해라쿵!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_00",
+ "japaneseText":"2月のごほうびミッション",
+ "englishUsText":"February Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses - Février",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa febbraio",
+ "italianFontType":3,
+ "germanText":"Februar-Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa de febrero",
+ "spanishFontType":3,
+ "chineseTText":"2月的獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"2월의 보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_01",
+ "japaneseText":"3月のごほうびミッション",
+ "englishUsText":"March Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses - Mars",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa marzo",
+ "italianFontType":3,
+ "germanText":"März-Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa de marzo",
+ "spanishFontType":3,
+ "chineseTText":"3月的獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"3월의 보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_02",
+ "japaneseText":"4月のごほうびミッション",
+ "englishUsText":"April Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses - Avril",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa aprile",
+ "italianFontType":3,
+ "germanText":"April-Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa de abril",
+ "spanishFontType":3,
+ "chineseTText":"4月的獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"4월의 보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_03",
+ "japaneseText":"5月のごほうびミッション",
+ "englishUsText":"May Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses - Mai",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa maggio",
+ "italianFontType":3,
+ "germanText":"Mai-Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa de mayo",
+ "spanishFontType":3,
+ "chineseTText":"5月的獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"5월의 보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_04",
+ "japaneseText":"6月のごほうびミッション",
+ "englishUsText":"June Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses - Juin",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa giugno",
+ "italianFontType":3,
+ "germanText":"Juni-Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa de junio",
+ "spanishFontType":3,
+ "chineseTText":"6月的獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"6월의 보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_05",
+ "japaneseText":"7月のごほうびミッション",
+ "englishUsText":"July Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses - Juillet",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa luglio",
+ "italianFontType":3,
+ "germanText":"Juli-Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa de julio",
+ "spanishFontType":3,
+ "chineseTText":"7月的獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"7월의 보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_06",
+ "japaneseText":"8月のごほうびミッション",
+ "englishUsText":"August Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses - Août",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa agosto",
+ "italianFontType":3,
+ "germanText":"August-Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa de agosto",
+ "spanishFontType":3,
+ "chineseTText":"8月的獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"8월의 보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_07",
+ "japaneseText":"9月のごほうびミッション",
+ "englishUsText":"September Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses - Septembre",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa settembre",
+ "italianFontType":3,
+ "germanText":"September-Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa de septiembre",
+ "spanishFontType":3,
+ "chineseTText":"9月的獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"9월의 보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_08",
+ "japaneseText":"10月のごほうびミッション",
+ "englishUsText":"October Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses - Octobre",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa ottobre",
+ "italianFontType":3,
+ "germanText":"Oktober-Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa de octubre",
+ "spanishFontType":3,
+ "chineseTText":"10月的獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"10월의 보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_09",
+ "japaneseText":"11月のごほうびミッション",
+ "englishUsText":"November Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses - Novembre",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa novembre",
+ "italianFontType":3,
+ "germanText":"November-Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa de noviembre",
+ "spanishFontType":3,
+ "chineseTText":"11月的獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"11월의 보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_10",
+ "japaneseText":"12月のごほうびミッション",
+ "englishUsText":"December Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses - Décembre",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa dicembre",
+ "italianFontType":3,
+ "germanText":"Dezember-Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa de diciembre",
+ "spanishFontType":3,
+ "chineseTText":"12月的獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"12월의 보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_11",
+ "japaneseText":"1月のごほうびミッション",
+ "englishUsText":"January Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses - Janvier",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa gennaio",
+ "italianFontType":3,
+ "germanText":"Januar-Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa de enero",
+ "spanishFontType":3,
+ "chineseTText":"1月的獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"1월의 보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_tnkai2",
+ "japaneseText":"愛にできることはまだあるかい",
+ "englishUsText":"Is There Still Anything That Love Can Do?",
+ "englishUsFontType":3,
+ "frenchText":"Is There Still Anything That Love Can Do?",
+ "frenchFontType":3,
+ "italianText":"Is There Still Anything That Love Can Do?",
+ "italianFontType":3,
+ "germanText":"Is There Still Anything That Love Can Do?",
+ "germanFontType":3,
+ "spanishText":"Is There Still Anything That Love Can Do?",
+ "spanishFontType":3,
+ "chineseTText":"Is There Still Anything That Love Can Do?",
+ "chineseTFontType":1,
+ "koreanText":"Is There Still Anything That Love Can Do?",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_tnkai2",
+ "japaneseText":"「天気の子」より",
+ "englishUsText":"from \" WEATHERING WITH YOU \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" WEATHERING WITH YOU \"",
+ "frenchFontType":3,
+ "italianText":"da \" WEATHERING WITH YOU \"",
+ "italianFontType":3,
+ "germanText":"Aus \" WEATHERING WITH YOU \"",
+ "germanFontType":3,
+ "spanishText":"De \" WEATHERING WITH YOU \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「天氣之子」",
+ "chineseTFontType":1,
+ "koreanText":"\"날씨의 아이\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_tnkai2",
+ "japaneseText":"",
+ "englishUsText":"愛にできることはまだあるかい",
+ "englishUsFontType":0,
+ "frenchText":"愛にできることはまだあるかい",
+ "frenchFontType":0,
+ "italianText":"愛にできることはまだあるかい",
+ "italianFontType":0,
+ "germanText":"愛にできることはまだあるかい",
+ "germanFontType":0,
+ "spanishText":"愛にできることはまだあるかい",
+ "spanishFontType":0,
+ "chineseTText":"愛にできることはまだあるかい",
+ "chineseTFontType":0,
+ "koreanText":"愛にできることはまだあるかい",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_tnkgrd",
+ "japaneseText":"グランドエスケープ",
+ "englishUsText":"Grand Escape",
+ "englishUsFontType":3,
+ "frenchText":"Grand Escape",
+ "frenchFontType":3,
+ "italianText":"Grand Escape",
+ "italianFontType":3,
+ "germanText":"Grand Escape",
+ "germanFontType":3,
+ "spanishText":"Grand Escape",
+ "spanishFontType":3,
+ "chineseTText":"Grand Escape",
+ "chineseTFontType":1,
+ "koreanText":"Grand Escape",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_tnkgrd",
+ "japaneseText":"「天気の子」より",
+ "englishUsText":"from \" WEATHERING WITH YOU \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" WEATHERING WITH YOU \"",
+ "frenchFontType":3,
+ "italianText":"da \" WEATHERING WITH YOU \"",
+ "italianFontType":3,
+ "germanText":"Aus \" WEATHERING WITH YOU \"",
+ "germanFontType":3,
+ "spanishText":"De \" WEATHERING WITH YOU \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「天氣之子」",
+ "chineseTFontType":1,
+ "koreanText":"\"날씨의 아이\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_tnkgrd",
+ "japaneseText":"",
+ "englishUsText":"グランドエスケープ",
+ "englishUsFontType":0,
+ "frenchText":"グランドエスケープ",
+ "frenchFontType":0,
+ "italianText":"グランドエスケープ",
+ "italianFontType":0,
+ "germanText":"グランドエスケープ",
+ "germanFontType":0,
+ "spanishText":"グランドエスケープ",
+ "spanishFontType":0,
+ "chineseTText":"グランドエスケープ",
+ "chineseTFontType":0,
+ "koreanText":"グランドエスケープ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_tnkkaz",
+ "japaneseText":"風たちの声",
+ "englishUsText":"Voice Of Wind",
+ "englishUsFontType":3,
+ "frenchText":"Voice Of Wind",
+ "frenchFontType":3,
+ "italianText":"Voice Of Wind",
+ "italianFontType":3,
+ "germanText":"Voice Of Wind",
+ "germanFontType":3,
+ "spanishText":"Voice Of Wind",
+ "spanishFontType":3,
+ "chineseTText":"Voice Of Wind",
+ "chineseTFontType":1,
+ "koreanText":"Voice Of Wind",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_tnkkaz",
+ "japaneseText":"「天気の子」より",
+ "englishUsText":"from \" WEATHERING WITH YOU \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" WEATHERING WITH YOU \"",
+ "frenchFontType":3,
+ "italianText":"da \" WEATHERING WITH YOU \"",
+ "italianFontType":3,
+ "germanText":"Aus \" WEATHERING WITH YOU \"",
+ "germanFontType":3,
+ "spanishText":"De \" WEATHERING WITH YOU \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「天氣之子」",
+ "chineseTFontType":1,
+ "koreanText":"\"날씨의 아이\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_tnkkaz",
+ "japaneseText":"",
+ "englishUsText":"風たちの声",
+ "englishUsFontType":0,
+ "frenchText":"風たちの声",
+ "frenchFontType":0,
+ "italianText":"風たちの声",
+ "italianFontType":0,
+ "germanText":"風たちの声",
+ "germanFontType":0,
+ "spanishText":"風たちの声",
+ "spanishFontType":0,
+ "chineseTText":"風たちの声",
+ "chineseTFontType":0,
+ "koreanText":"風たちの声",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mikubd",
+ "japaneseText":"ブリキノダンス",
+ "englishUsText":"Buriki no Dance",
+ "englishUsFontType":3,
+ "frenchText":"Buriki no Dance",
+ "frenchFontType":3,
+ "italianText":"Buriki no Dance",
+ "italianFontType":3,
+ "germanText":"Buriki no Dance",
+ "germanFontType":3,
+ "spanishText":"Buriki no Dance",
+ "spanishFontType":3,
+ "chineseTText":"馬口鐵之歌",
+ "chineseTFontType":1,
+ "koreanText":"브리키의 댄스",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mikubd",
+ "japaneseText":"日向電工 feat.初音ミク",
+ "englishUsText":"Hinata EW feat. HATSUNE MIKU",
+ "englishUsFontType":3,
+ "frenchText":"Hinata EW feat. HATSUNE MIKU",
+ "frenchFontType":3,
+ "italianText":"Hinata EW feat. HATSUNE MIKU",
+ "italianFontType":3,
+ "germanText":"Hinata EW feat. HATSUNE MIKU",
+ "germanFontType":3,
+ "spanishText":"Hinata EW feat. HATSUNE MIKU",
+ "spanishFontType":3,
+ "chineseTText":"日向電工 feat.初音未來",
+ "chineseTFontType":1,
+ "koreanText":"히나타덴코feat.하츠네 미쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mikubd",
+ "japaneseText":"",
+ "englishUsText":"ブリキノダンス",
+ "englishUsFontType":0,
+ "frenchText":"ブリキノダンス",
+ "frenchFontType":0,
+ "italianText":"ブリキノダンス",
+ "italianFontType":0,
+ "germanText":"ブリキノダンス",
+ "germanFontType":0,
+ "spanishText":"ブリキノダンス",
+ "spanishFontType":0,
+ "chineseTText":"ブリキノダンス",
+ "chineseTFontType":0,
+ "koreanText":"ブリキノダンス",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_erfanc",
+ "japaneseText":"いーあるふぁんくらぶ",
+ "englishUsText":"1,2, Fanclub",
+ "englishUsFontType":3,
+ "frenchText":"1,2, Fanclub",
+ "frenchFontType":3,
+ "italianText":"1,2, Fanclub",
+ "italianFontType":3,
+ "germanText":"1,2, Fanclub",
+ "germanFontType":3,
+ "spanishText":"1,2, Fanclub",
+ "spanishFontType":3,
+ "chineseTText":"1,2, Fanclub",
+ "chineseTFontType":1,
+ "koreanText":"이아루 환크라부",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_erfanc",
+ "japaneseText":"みきとP",
+ "englishUsText":"mikito P",
+ "englishUsFontType":3,
+ "frenchText":"mikito P",
+ "frenchFontType":3,
+ "italianText":"mikito P",
+ "italianFontType":3,
+ "germanText":"mikito P",
+ "germanFontType":3,
+ "spanishText":"mikito P",
+ "spanishFontType":3,
+ "chineseTText":"mikito P",
+ "chineseTFontType":1,
+ "koreanText":"mikito P",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_erfanc",
+ "japaneseText":"",
+ "englishUsText":"いーあるふぁんくらぶ",
+ "englishUsFontType":0,
+ "frenchText":"いーあるふぁんくらぶ",
+ "frenchFontType":0,
+ "italianText":"いーあるふぁんくらぶ",
+ "italianFontType":0,
+ "germanText":"いーあるふぁんくらぶ",
+ "germanFontType":0,
+ "spanishText":"いーあるふぁんくらぶ",
+ "spanishFontType":0,
+ "chineseTText":"いーあるふぁんくらぶ",
+ "chineseTFontType":0,
+ "koreanText":"いーあるふぁんくらぶ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mikush",
+ "japaneseText":"ストリーミングハート",
+ "englishUsText":"Streaming Heart",
+ "englishUsFontType":3,
+ "frenchText":"Streaming Heart",
+ "frenchFontType":3,
+ "italianText":"Streaming Heart",
+ "italianFontType":3,
+ "germanText":"Streaming Heart",
+ "germanFontType":3,
+ "spanishText":"Streaming Heart",
+ "spanishFontType":3,
+ "chineseTText":"Streaming Heart",
+ "chineseTFontType":1,
+ "koreanText":"Streaming Heart",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mikush",
+ "japaneseText":"DECO*27 feat.初音ミク",
+ "englishUsText":"DECO*27 feat. HATSUNE MIKU",
+ "englishUsFontType":3,
+ "frenchText":"DECO*27 feat. HATSUNE MIKU",
+ "frenchFontType":3,
+ "italianText":"DECO*27 feat. HATSUNE MIKU",
+ "italianFontType":3,
+ "germanText":"DECO*27 feat. HATSUNE MIKU",
+ "germanFontType":3,
+ "spanishText":"DECO*27 feat. HATSUNE MIKU",
+ "spanishFontType":3,
+ "chineseTText":"DECO*27 feat.初音未來",
+ "chineseTFontType":1,
+ "koreanText":"DECO*27 feat.하츠네 미쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mikush",
+ "japaneseText":"",
+ "englishUsText":"ストリーミングハート",
+ "englishUsFontType":0,
+ "frenchText":"ストリーミングハート",
+ "frenchFontType":0,
+ "italianText":"ストリーミングハート",
+ "italianFontType":0,
+ "germanText":"ストリーミングハート",
+ "germanFontType":0,
+ "spanishText":"ストリーミングハート",
+ "spanishFontType":0,
+ "chineseTText":"ストリーミングハート",
+ "chineseTFontType":0,
+ "koreanText":"ストリーミングハート",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_karamr",
+ "japaneseText":"カラ鞠の花",
+ "englishUsText":"KARAMARI NO HANA",
+ "englishUsFontType":3,
+ "frenchText":"KARAMARI NO HANA",
+ "frenchFontType":3,
+ "italianText":"KARAMARI NO HANA",
+ "italianFontType":3,
+ "germanText":"KARAMARI NO HANA",
+ "germanFontType":3,
+ "spanishText":"KARAMARI NO HANA",
+ "spanishFontType":3,
+ "chineseTText":"KARA鞠之花",
+ "chineseTFontType":1,
+ "koreanText":"카라마리노 하나",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_karamr",
+ "japaneseText":"はるなば",
+ "englishUsText":"Harunaba",
+ "englishUsFontType":3,
+ "frenchText":"Harunaba",
+ "frenchFontType":3,
+ "italianText":"Harunaba",
+ "italianFontType":3,
+ "germanText":"Harunaba",
+ "germanFontType":3,
+ "spanishText":"Harunaba",
+ "spanishFontType":3,
+ "chineseTText":"Harunaba",
+ "chineseTFontType":1,
+ "koreanText":"Harunaba",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_karamr",
+ "japaneseText":"",
+ "englishUsText":"カラ鞠の花",
+ "englishUsFontType":0,
+ "frenchText":"カラ鞠の花",
+ "frenchFontType":0,
+ "italianText":"カラ鞠の花",
+ "italianFontType":0,
+ "germanText":"カラ鞠の花",
+ "germanFontType":0,
+ "spanishText":"カラ鞠の花",
+ "spanishFontType":0,
+ "chineseTText":"カラ鞠の花",
+ "chineseTFontType":0,
+ "koreanText":"カラ鞠の花",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_rlnedy",
+ "japaneseText":"EDY ‐エレクトリカルダンシングヨガ‐",
+ "englishUsText":"EDY -Electrical Dancing Yoga-",
+ "englishUsFontType":3,
+ "frenchText":"EDY -Electrical Dancing Yoga-",
+ "frenchFontType":3,
+ "italianText":"EDY -Electrical Dancing Yoga-",
+ "italianFontType":3,
+ "germanText":"EDY -Electrical Dancing Yoga-",
+ "germanFontType":3,
+ "spanishText":"EDY -Electrical Dancing Yoga-",
+ "spanishFontType":3,
+ "chineseTText":"EDY -Electrical Dancing Yoga-",
+ "chineseTFontType":1,
+ "koreanText":"EDY -Electrical Dancing Yoga-",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_rlnedy",
+ "japaneseText":"feat.鏡音リン・鏡音レン",
+ "englishUsText":"feat.KAGAMINE RIN・KAGAMINE LEN",
+ "englishUsFontType":3,
+ "frenchText":"feat.KAGAMINE RIN・KAGAMINE LEN",
+ "frenchFontType":3,
+ "italianText":"feat.KAGAMINE RIN・KAGAMINE LEN",
+ "italianFontType":3,
+ "germanText":"feat.KAGAMINE RIN・KAGAMINE LEN",
+ "germanFontType":3,
+ "spanishText":"feat.KAGAMINE RIN・KAGAMINE LEN",
+ "spanishFontType":3,
+ "chineseTText":"feat.KAGAMINE RIN・KAGAMINE LEN",
+ "chineseTFontType":1,
+ "koreanText":"feat.KAGAMINE RIN・KAGAMINE LEN",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_rlnedy",
+ "japaneseText":"",
+ "englishUsText":"EDY ‐エレクトリカルダンシングヨガ‐",
+ "englishUsFontType":0,
+ "frenchText":"EDY ‐エレクトリカルダンシングヨガ‐",
+ "frenchFontType":0,
+ "italianText":"EDY ‐エレクトリカルダンシングヨガ‐",
+ "italianFontType":0,
+ "germanText":"EDY ‐エレクトリカルダンシングヨガ‐",
+ "germanFontType":0,
+ "spanishText":"EDY ‐エレクトリカルダンシングヨガ‐",
+ "spanishFontType":0,
+ "chineseTText":"EDY ‐エレクトリカルダンシングヨガ‐",
+ "chineseTFontType":0,
+ "koreanText":"EDY ‐エレクトリカルダンシングヨガ‐",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_tekwiu",
+ "japaneseText":"Highschool love!",
+ "englishUsText":"Highschool love!",
+ "englishUsFontType":3,
+ "frenchText":"Highschool love!",
+ "frenchFontType":3,
+ "italianText":"Highschool love!",
+ "italianFontType":3,
+ "germanText":"Highschool love!",
+ "germanFontType":3,
+ "spanishText":"Highschool love!",
+ "spanishFontType":3,
+ "chineseTText":"Highschool love!",
+ "chineseTFontType":1,
+ "koreanText":"Highschool love!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_tekwiu",
+ "japaneseText":"「鉄拳タッグトーナメント2 Wii U EDITION」より",
+ "englishUsText":"from “ TEKKEN TAG TOURNAMENT 2 WiiU EDITION ”",
+ "englishUsFontType":3,
+ "frenchText":"tiré de “ TEKKEN TAG TOURNAMENT 2 WiiU EDITION ”",
+ "frenchFontType":3,
+ "italianText":"da “ TEKKEN TAG TOURNAMENT 2 WiiU EDITION ”",
+ "italianFontType":3,
+ "germanText":"Aus “ TEKKEN TAG TOURNAMENT 2 WiiU EDITION ”",
+ "germanFontType":3,
+ "spanishText":"De “ TEKKEN TAG TOURNAMENT 2 WiiU EDITION ”",
+ "spanishFontType":3,
+ "chineseTText":"來自「TEKKEN TAG TOURNAMENT 2 WiiU EDITION」",
+ "chineseTFontType":1,
+ "koreanText":"\"TEKKEN TAG TOURNAMENT 2 WiiU EDITION\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_tekwiu",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mgwrt7",
+ "japaneseText":"花漾",
+ "englishUsText":"KAYOU",
+ "englishUsFontType":3,
+ "frenchText":"KAYOU",
+ "frenchFontType":3,
+ "italianText":"KAYOU",
+ "italianFontType":3,
+ "germanText":"KAYOU",
+ "germanFontType":3,
+ "spanishText":"KAYOU",
+ "spanishFontType":3,
+ "chineseTText":"花漾",
+ "chineseTFontType":1,
+ "koreanText":"카요우",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mgwrt7",
+ "japaneseText":"~Flourishing Blossoms~",
+ "englishUsText":"~Flourishing Blossoms~",
+ "englishUsFontType":3,
+ "frenchText":"~Flourishing Blossoms~",
+ "frenchFontType":3,
+ "italianText":"~Flourishing Blossoms~",
+ "italianFontType":3,
+ "germanText":"~Flourishing Blossoms~",
+ "germanFontType":3,
+ "spanishText":"~Flourishing Blossoms~",
+ "spanishFontType":3,
+ "chineseTText":"~Flourishing Blossoms~",
+ "chineseTFontType":1,
+ "koreanText":"~Flourishing Blossoms~",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mgwrt7",
+ "japaneseText":"",
+ "englishUsText":"花漾",
+ "englishUsFontType":0,
+ "frenchText":"花漾",
+ "frenchFontType":0,
+ "italianText":"花漾",
+ "italianFontType":0,
+ "germanText":"花漾",
+ "germanFontType":0,
+ "spanishText":"花漾",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"花漾",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_tenkinoko",
+ "japaneseText":"「天気の子主題歌パック」配信中",
+ "englishUsText":"WEATHERING WITH YOU Anime Songs Pack now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「天氣之子主題曲 Pack」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「날씨의 아이 애니메이션 음악 Pack」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_vocaropack04",
+ "japaneseText":"「ボーカロイド™曲パックVol.4」配信中",
+ "englishUsText":"VOCALOID™ Music Pack Vol.4 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「VOCALOID™ Music PackVol.4」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「VOCALOID™ Music Pack Vol.4」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_104",
+ "japaneseText":"うさぎLOVE",
+ "englishUsText":"Bunnies, Bunnies everywhere!",
+ "englishUsFontType":3,
+ "frenchText":"Des lapins, des lapins partout !",
+ "frenchFontType":3,
+ "italianText":"Coniglietti, coniglietti dappertutto!",
+ "italianFontType":3,
+ "germanText":"Häschen, überall Häschen!",
+ "germanFontType":3,
+ "spanishText":"¡Conejos, conejos por todas partes!",
+ "spanishFontType":3,
+ "chineseTText":"兔子LOVE",
+ "chineseTFontType":1,
+ "koreanText":"토끼 LOVE",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_105",
+ "japaneseText":"ハッピー・イースター!",
+ "englishUsText":"Spring is here at last!",
+ "englishUsFontType":3,
+ "frenchText":"Le printemps est enfin arrivé !",
+ "frenchFontType":3,
+ "italianText":"Finalmente è primavera!",
+ "italianFontType":3,
+ "germanText":"Der Frühling ist endlich da!",
+ "germanFontType":3,
+ "spanishText":"¡Por fin ha llegado la primavera!",
+ "spanishFontType":3,
+ "chineseTText":"復活節快樂!",
+ "chineseTFontType":1,
+ "koreanText":"해피 이스터!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_106",
+ "japaneseText":"エッグハントしたよ",
+ "englishUsText":"It's time for an Egg Hunt!",
+ "englishUsFontType":3,
+ "frenchText":"Il est temps de commencer la chasse aux œufs !",
+ "frenchFontType":3,
+ "italianText":"È l'ora della... caccia alle uova!",
+ "italianFontType":3,
+ "germanText":"Es ist Zeit für die Eiersuche!",
+ "germanFontType":3,
+ "spanishText":"¡Hora de buscar huevos!",
+ "spanishFontType":3,
+ "chineseTText":"玩了尋蛋喔",
+ "chineseTFontType":1,
+ "koreanText":"에그 헌트를 했어",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_107",
+ "japaneseText":"よろしくだワン",
+ "englishUsText":"Pleased to meet you! ",
+ "englishUsFontType":3,
+ "frenchText":"Ravi(e) de te rencontrer ! ",
+ "frenchFontType":3,
+ "italianText":"Piacere di conoscerti! ",
+ "italianFontType":3,
+ "germanText":"Schön, dich kennenzulernen! ",
+ "germanFontType":3,
+ "spanishText":"¡Un placer conocerte! ",
+ "spanishFontType":3,
+ "chineseTText":"請多指教汪",
+ "chineseTFontType":1,
+ "koreanText":"잘 부탁한다멍",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_108",
+ "japaneseText":"またあそぼうニャン",
+ "englishUsText":"Shall we play again, purr-haps? ",
+ "englishUsFontType":3,
+ "frenchText":"On rejoue, miaou ? ",
+ "frenchFontType":3,
+ "italianText":"Possiamo giocare ancora? ",
+ "italianFontType":3,
+ "germanText":"Sollen wir noch mal spielen? ",
+ "germanFontType":3,
+ "spanishText":"Miau-gustaría jugar otra vez, ¿y a ti? ",
+ "spanishFontType":3,
+ "chineseTText":"再來玩喵",
+ "chineseTFontType":1,
+ "koreanText":"또 놀자냥",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_109",
+ "japaneseText":"おすわり!",
+ "englishUsText":"Sit! ",
+ "englishUsFontType":3,
+ "frenchText":"Assis ! ",
+ "frenchFontType":3,
+ "italianText":"Seduto! ",
+ "italianFontType":3,
+ "germanText":"Setz dich! ",
+ "germanFontType":3,
+ "spanishText":"¡Siéntate! ",
+ "spanishFontType":3,
+ "chineseTText":"坐下!",
+ "chineseTFontType":1,
+ "koreanText":"앉아!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_evedrm",
+ "japaneseText":"ドラマツルギー",
+ "englishUsText":"Dramaturgy",
+ "englishUsFontType":3,
+ "frenchText":"Dramaturgy",
+ "frenchFontType":3,
+ "italianText":"Dramaturgy",
+ "italianFontType":3,
+ "germanText":"Dramaturgy",
+ "germanFontType":3,
+ "spanishText":"Dramaturgy",
+ "spanishFontType":3,
+ "chineseTText":"Dramaturgy",
+ "chineseTFontType":1,
+ "koreanText":"Dramaturgy",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_evedrm",
+ "japaneseText":"Eve",
+ "englishUsText":"Eve",
+ "englishUsFontType":3,
+ "frenchText":"Eve",
+ "frenchFontType":3,
+ "italianText":"Eve",
+ "italianFontType":3,
+ "germanText":"Eve",
+ "germanFontType":3,
+ "spanishText":"Eve",
+ "spanishFontType":3,
+ "chineseTText":"Eve",
+ "chineseTFontType":1,
+ "koreanText":"Eve",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_evedrm",
+ "japaneseText":"",
+ "englishUsText":"ドラマツルギー",
+ "englishUsFontType":0,
+ "frenchText":"ドラマツルギー",
+ "frenchFontType":0,
+ "italianText":"ドラマツルギー",
+ "italianFontType":0,
+ "germanText":"ドラマツルギー",
+ "germanFontType":0,
+ "spanishText":"ドラマツルギー",
+ "spanishFontType":0,
+ "chineseTText":"ドラマツルギー",
+ "chineseTFontType":0,
+ "koreanText":"ドラマツルギー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kimetu",
+ "japaneseText":"紅蓮華",
+ "englishUsText":"Gurenge",
+ "englishUsFontType":3,
+ "frenchText":"Gurenge",
+ "frenchFontType":3,
+ "italianText":"Gurenge",
+ "italianFontType":3,
+ "germanText":"Gurenge",
+ "germanFontType":3,
+ "spanishText":"Gurenge",
+ "spanishFontType":3,
+ "chineseTText":"紅蓮華",
+ "chineseTFontType":1,
+ "koreanText":"Gurenge",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_kimetu",
+ "japaneseText":"「鬼滅の刃」より",
+ "englishUsText":"from \" DEMON SLAYER : KIMETSU NO YAIBA \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" DEMON SLAYER : KIMETSU NO YAIBA \"",
+ "frenchFontType":3,
+ "italianText":"da \" DEMON SLAYER : KIMETSU NO YAIBA \"",
+ "italianFontType":3,
+ "germanText":"Aus \" DEMON SLAYER : KIMETSU NO YAIBA \"",
+ "germanFontType":3,
+ "spanishText":"De \" DEMON SLAYER : KIMETSU NO YAIBA \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「鬼滅之刃」",
+ "chineseTFontType":1,
+ "koreanText":"\"귀멸의 칼날\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kimetu",
+ "japaneseText":"",
+ "englishUsText":"紅蓮華",
+ "englishUsFontType":0,
+ "frenchText":"紅蓮華",
+ "frenchFontType":0,
+ "italianText":"紅蓮華",
+ "italianFontType":0,
+ "germanText":"紅蓮華",
+ "germanFontType":0,
+ "spanishText":"紅蓮華",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"紅蓮華",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_enenop",
+ "japaneseText":"インフェルノ",
+ "englishUsText":"INFERNO",
+ "englishUsFontType":3,
+ "frenchText":"INFERNO",
+ "frenchFontType":3,
+ "italianText":"INFERNO",
+ "italianFontType":3,
+ "germanText":"INFERNO",
+ "germanFontType":3,
+ "spanishText":"INFERNO",
+ "spanishFontType":3,
+ "chineseTText":"INFERNO",
+ "chineseTFontType":1,
+ "koreanText":"INFERNO",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_enenop",
+ "japaneseText":"「炎炎ノ消防隊」より",
+ "englishUsText":"From \" ENN ENN NO SHOUBOUTAI \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" ENN ENN NO SHOUBOUTAI \"",
+ "frenchFontType":3,
+ "italianText":"Da \" ENN ENN NO SHOUBOUTAI \"",
+ "italianFontType":3,
+ "germanText":"Aus \" ENN ENN NO SHOUBOUTAI \"",
+ "germanFontType":3,
+ "spanishText":"De \" ENN ENN NO SHOUBOUTAI \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「炎炎消防隊」",
+ "chineseTFontType":1,
+ "koreanText":"\"불꽃 소방대\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_enenop",
+ "japaneseText":"",
+ "englishUsText":"インフェルノ",
+ "englishUsFontType":0,
+ "frenchText":"インフェルノ",
+ "frenchFontType":0,
+ "italianText":"インフェルノ",
+ "italianFontType":0,
+ "germanText":"インフェルノ",
+ "germanFontType":0,
+ "spanishText":"インフェルノ",
+ "spanishFontType":0,
+ "chineseTText":"インフェルノ",
+ "chineseTFontType":0,
+ "koreanText":"インフェルノ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_saibou",
+ "japaneseText":"ミッション! 健・康・第・イチ",
+ "englishUsText":"Mission! Ken.Kou.Dai.Ichi",
+ "englishUsFontType":3,
+ "frenchText":"Mission! Ken.Kou.Dai.Ichi",
+ "frenchFontType":3,
+ "italianText":"Mission! Ken.Kou.Dai.Ichi",
+ "italianFontType":3,
+ "germanText":"Mission! Ken.Kou.Dai.Ichi",
+ "germanFontType":3,
+ "spanishText":"Mission! Ken.Kou.Dai.Ichi",
+ "spanishFontType":3,
+ "chineseTText":"使命! 健康第一",
+ "chineseTFontType":1,
+ "koreanText":"미션 건강제일!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_saibou",
+ "japaneseText":"「はたらく細胞」より",
+ "englishUsText":"From \" Cells at Work! \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Cells at Work! \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Cells at Work! \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Cells at Work! \"",
+ "germanFontType":3,
+ "spanishText":"De \" Cells at Work! \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「工作細胞」",
+ "chineseTFontType":1,
+ "koreanText":"\"일하는 세포\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_saibou",
+ "japaneseText":"",
+ "englishUsText":"ミッション! 健・康・第・イチ",
+ "englishUsFontType":0,
+ "frenchText":"ミッション! 健・康・第・イチ",
+ "frenchFontType":0,
+ "italianText":"ミッション! 健・康・第・イチ",
+ "italianFontType":0,
+ "germanText":"ミッション! 健・康・第・イチ",
+ "germanFontType":0,
+ "spanishText":"ミッション! 健・康・第・イチ",
+ "spanishFontType":0,
+ "chineseTText":"ミッション! 健・康・第・イチ",
+ "chineseTFontType":0,
+ "koreanText":"ミッション! 健・康・第・イチ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_saoop",
+ "japaneseText":"crossing field",
+ "englishUsText":"crossing field",
+ "englishUsFontType":3,
+ "frenchText":"crossing field",
+ "frenchFontType":3,
+ "italianText":"crossing field",
+ "italianFontType":3,
+ "germanText":"crossing field",
+ "germanFontType":3,
+ "spanishText":"crossing field",
+ "spanishFontType":3,
+ "chineseTText":"crossing field",
+ "chineseTFontType":1,
+ "koreanText":"crossing field",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_saoop",
+ "japaneseText":"「ソードアート・オンライン」より",
+ "englishUsText":"From \" SWORD ART ONLINE \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" SWORD ART ONLINE \"",
+ "frenchFontType":3,
+ "italianText":"Da \" SWORD ART ONLINE \"",
+ "italianFontType":3,
+ "germanText":"Aus \" SWORD ART ONLINE \"",
+ "germanFontType":3,
+ "spanishText":"De \" SWORD ART ONLINE \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「刀劍神域」",
+ "chineseTFontType":1,
+ "koreanText":"\"소드 아트 온라인\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_saoop",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_madmag",
+ "japaneseText":"コネクト",
+ "englishUsText":"Connect",
+ "englishUsFontType":3,
+ "frenchText":"Connect",
+ "frenchFontType":3,
+ "italianText":"Connect",
+ "italianFontType":3,
+ "germanText":"Connect",
+ "germanFontType":3,
+ "spanishText":"Connect",
+ "spanishFontType":3,
+ "chineseTText":"Connect",
+ "chineseTFontType":1,
+ "koreanText":"Connect",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_madmag",
+ "japaneseText":"「魔法少女まどか☆マギカ」より",
+ "englishUsText":"From \" PUELLA MAGI MADOKA★MAGICA \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" PUELLA MAGI MADOKA★MAGICA \"",
+ "frenchFontType":3,
+ "italianText":"Da \" PUELLA MAGI MADOKA★MAGICA \"",
+ "italianFontType":3,
+ "germanText":"Aus \" PUELLA MAGI MADOKA★MAGICA \"",
+ "germanFontType":3,
+ "spanishText":"De \" PUELLA MAGI MADOKA★MAGICA \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「魔法少女☆小圓」",
+ "chineseTFontType":1,
+ "koreanText":"\"마법소녀 마도카☆마기카\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_madmag",
+ "japaneseText":"",
+ "englishUsText":"コネクト",
+ "englishUsFontType":0,
+ "frenchText":"コネクト",
+ "frenchFontType":0,
+ "italianText":"コネクト",
+ "italianFontType":0,
+ "germanText":"コネクト",
+ "germanFontType":0,
+ "spanishText":"コネクト",
+ "spanishFontType":0,
+ "chineseTText":"コネクト",
+ "chineseTFontType":0,
+ "koreanText":"コネクト",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kim4ra",
+ "japaneseText":"君の知らない物語",
+ "englishUsText":"Kimino Shiranai Monogatari",
+ "englishUsFontType":3,
+ "frenchText":"Kimino Shiranai Monogatari",
+ "frenchFontType":3,
+ "italianText":"Kimino Shiranai Monogatari",
+ "italianFontType":3,
+ "germanText":"Kimino Shiranai Monogatari",
+ "germanFontType":3,
+ "spanishText":"Kimino Shiranai Monogatari",
+ "spanishFontType":3,
+ "chineseTText":"你不知道的事",
+ "chineseTFontType":1,
+ "koreanText":"Kimino Shiranai Monogatari",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_kim4ra",
+ "japaneseText":"「化物語」より",
+ "englishUsText":"From \" BAKEMONOGATARI \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" BAKEMONOGATARI \"",
+ "frenchFontType":3,
+ "italianText":"Da \" BAKEMONOGATARI \"",
+ "italianFontType":3,
+ "germanText":"Aus \" BAKEMONOGATARI \"",
+ "germanFontType":3,
+ "spanishText":"De \" BAKEMONOGATARI \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「化物語」",
+ "chineseTFontType":1,
+ "koreanText":"\"괴물 이야기\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kim4ra",
+ "japaneseText":"",
+ "englishUsText":"君の知らない物語",
+ "englishUsFontType":0,
+ "frenchText":"君の知らない物語",
+ "frenchFontType":0,
+ "italianText":"君の知らない物語",
+ "italianFontType":0,
+ "germanText":"君の知らない物語",
+ "germanFontType":0,
+ "spanishText":"君の知らない物語",
+ "spanishFontType":0,
+ "chineseTText":"君の知らない物語",
+ "chineseTFontType":0,
+ "koreanText":"君の知らない物語",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_u3gino",
+ "japaneseText":"うさぎのしっぽ",
+ "englishUsText":"USAGI NO SHIPPO",
+ "englishUsFontType":3,
+ "frenchText":"USAGI NO SHIPPO",
+ "frenchFontType":3,
+ "italianText":"USAGI NO SHIPPO",
+ "italianFontType":3,
+ "germanText":"USAGI NO SHIPPO",
+ "germanFontType":3,
+ "spanishText":"USAGI NO SHIPPO",
+ "spanishFontType":3,
+ "chineseTText":"兔子的尾巴",
+ "chineseTFontType":1,
+ "koreanText":"우사기노 싯포",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_u3gino",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_u3gino",
+ "japaneseText":"",
+ "englishUsText":"うさぎのしっぽ",
+ "englishUsFontType":0,
+ "frenchText":"うさぎのしっぽ",
+ "frenchFontType":0,
+ "italianText":"うさぎのしっぽ",
+ "italianFontType":0,
+ "germanText":"うさぎのしっぽ",
+ "germanFontType":0,
+ "spanishText":"うさぎのしっぽ",
+ "spanishFontType":0,
+ "chineseTText":"うさぎのしっぽ",
+ "chineseTFontType":0,
+ "koreanText":"うさぎのしっぽ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_inuhoe",
+ "japaneseText":"犬吠える",
+ "englishUsText":"INU HOERU",
+ "englishUsFontType":3,
+ "frenchText":"INU HOERU",
+ "frenchFontType":3,
+ "italianText":"INU HOERU",
+ "italianFontType":3,
+ "germanText":"INU HOERU",
+ "germanFontType":3,
+ "spanishText":"INU HOERU",
+ "spanishFontType":3,
+ "chineseTText":"INU HOERU",
+ "chineseTFontType":1,
+ "koreanText":"이누호에루",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_inuhoe",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_inuhoe",
+ "japaneseText":"",
+ "englishUsText":"犬吠える",
+ "englishUsFontType":0,
+ "frenchText":"犬吠える",
+ "frenchFontType":0,
+ "italianText":"犬吠える",
+ "italianFontType":0,
+ "germanText":"犬吠える",
+ "germanFontType":0,
+ "spanishText":"犬吠える",
+ "spanishFontType":0,
+ "chineseTText":"犬吠える",
+ "chineseTFontType":0,
+ "koreanText":"犬吠える",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_evedrm",
+ "japaneseText":"楽曲「ドラマツルギー」配信中",
+ "englishUsText":"\"Dramaturgy\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「Dramaturgy」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Dramaturgy」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_kimetu",
+ "japaneseText":"楽曲「紅蓮華」配信中",
+ "englishUsText":"\"Gurenge\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「紅蓮華」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Gurenge」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_anime00",
+ "japaneseText":"「深夜アニメパック」配信中",
+ "englishUsText":"Late Night Anime Pack now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「深夜動畫Pack」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「심야 애니메이션 음악 Pack」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_110",
+ "japaneseText":"戦わせていただきます",
+ "englishUsText":"Hey, let's go a round!",
+ "englishUsFontType":3,
+ "frenchText":"Hé, faisons une partie !",
+ "frenchFontType":3,
+ "italianText":"Forza, facciamoci un giro!",
+ "italianFontType":3,
+ "germanText":"Hey, spielen wir eine Runde!",
+ "germanFontType":3,
+ "spanishText":"¡Oye, vamos a por una ronda!",
+ "spanishFontType":3,
+ "chineseTText":"讓我跟你戰鬥吧",
+ "chineseTFontType":1,
+ "koreanText":"싸우도록 하겠습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_111",
+ "japaneseText":"ガチ勝負だ!",
+ "englishUsText":"I'm serious about this!",
+ "englishUsFontType":3,
+ "frenchText":"Je vais me donner à fond !",
+ "frenchFontType":3,
+ "italianText":"Io faccio sul serio!",
+ "italianFontType":3,
+ "germanText":"Ich meine das ernst!",
+ "germanFontType":3,
+ "spanishText":"¡Voy en serio!",
+ "spanishFontType":3,
+ "chineseTText":"來認真對決吧!",
+ "chineseTFontType":1,
+ "koreanText":"진지한 승부다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_112",
+ "japaneseText":"ごきげんよう",
+ "englishUsText":"It's a pleasure to meet you. ",
+ "englishUsFontType":3,
+ "frenchText":"C'est un plaisir de te rencontrer. ",
+ "frenchFontType":3,
+ "italianText":"Piacere di conoscerti. ",
+ "italianFontType":3,
+ "germanText":"Freut mich, dich kennenzulernen! ",
+ "germanFontType":3,
+ "spanishText":"Un placer conocerte. ",
+ "spanishFontType":3,
+ "chineseTText":"您好",
+ "chineseTFontType":1,
+ "koreanText":"평온하신지요",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_113",
+ "japaneseText":"次回もヨロシク",
+ "englishUsText":"Let's do this again sometime.",
+ "englishUsFontType":3,
+ "frenchText":"Recommençons à l'occasion.",
+ "frenchFontType":3,
+ "italianText":"Rifacciamolo qualche altra volta.",
+ "italianFontType":3,
+ "germanText":"Lass uns das mal wiederholen.",
+ "germanFontType":3,
+ "spanishText":"Repitámoslo en otra ocasión.",
+ "spanishFontType":3,
+ "chineseTText":"下次也請多多指教",
+ "chineseTFontType":1,
+ "koreanText":"다음에도 잘 부탁해",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_114",
+ "japaneseText":"おてやわらかに",
+ "englishUsText":"Go a little easy, huh?",
+ "englishUsFontType":3,
+ "frenchText":"Vas-y doucement, d'accord ?",
+ "frenchFontType":3,
+ "italianText":"Vacci piano, OK?",
+ "italianFontType":3,
+ "germanText":"Mach's mir ein bisschen leicht, okay?",
+ "germanFontType":3,
+ "spanishText":"Ve con calma, ¿vale?",
+ "spanishFontType":3,
+ "chineseTText":"請手下留情",
+ "chineseTFontType":1,
+ "koreanText":"살살 해줘",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_115",
+ "japaneseText":"明日もきます",
+ "englishUsText":"I'll be here tomorrow, too!",
+ "englishUsFontType":3,
+ "frenchText":"Je serai encore là demain !",
+ "frenchFontType":3,
+ "italianText":"Ci sarò anche domani!",
+ "italianFontType":3,
+ "germanText":"Ich bin morgen auch hier!",
+ "germanFontType":3,
+ "spanishText":"¡Mañana también estaré aquí!",
+ "spanishFontType":3,
+ "chineseTText":"我明天還會來的",
+ "chineseTFontType":1,
+ "koreanText":"내일도 올게요",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_116",
+ "japaneseText":"ギリギリですっ",
+ "englishUsText":"So close!",
+ "englishUsFontType":3,
+ "frenchText":"Pas loin !",
+ "frenchFontType":3,
+ "italianText":"Per poco!",
+ "italianFontType":3,
+ "germanText":"So knapp!",
+ "germanFontType":3,
+ "spanishText":"¡Por qué poco!",
+ "spanishFontType":3,
+ "chineseTText":"真是好險",
+ "chineseTFontType":1,
+ "koreanText":"아슬아슬해요",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_117",
+ "japaneseText":"さよならは言わないよ",
+ "englishUsText":"Don't say good-bye!",
+ "englishUsFontType":3,
+ "frenchText":"Ne dis pas au revoir !",
+ "frenchFontType":3,
+ "italianText":"Non andartene!",
+ "italianFontType":3,
+ "germanText":"Sag nicht Auf Wiedersehen!",
+ "germanFontType":3,
+ "spanishText":"¡No digas adiós!",
+ "spanishFontType":3,
+ "chineseTText":"別說再見喔",
+ "chineseTFontType":1,
+ "koreanText":"작별 인사는 안 할 거야",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_118",
+ "japaneseText":"休日専門です",
+ "englishUsText":"I'm a Grade A Slacker.",
+ "englishUsFontType":3,
+ "frenchText":"Je suis une feignasse de compétition.",
+ "frenchFontType":3,
+ "italianText":"Ah, il dolce far niente...",
+ "italianFontType":3,
+ "germanText":"Ich bin ein Spitzenfaulenzer.",
+ "germanFontType":3,
+ "spanishText":"Soy un vago profesional.",
+ "spanishFontType":3,
+ "chineseTText":"我是假日專職玩家",
+ "chineseTFontType":1,
+ "koreanText":"휴일 전문입니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_119",
+ "japaneseText":"あっち向いてドン!",
+ "englishUsText":"Always looking ahead!",
+ "englishUsFontType":3,
+ "frenchText":"Toujours le regard vers l'avenir !",
+ "frenchFontType":3,
+ "italianText":"Guardo sempre avanti!",
+ "italianFontType":3,
+ "germanText":"Immer nach vorne schauen!",
+ "germanFontType":3,
+ "spanishText":"¡Siempre hacia delante!",
+ "spanishFontType":3,
+ "chineseTText":"黑白猜,男生女生咚!",
+ "chineseTFontType":1,
+ "koreanText":"참참참이다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_himyak",
+ "japaneseText":"ひまわりの約束",
+ "englishUsText":"Himawari no Yakusoku",
+ "englishUsFontType":3,
+ "frenchText":"Himawari no Yakusoku",
+ "frenchFontType":3,
+ "italianText":"Himawari no Yakusoku",
+ "italianFontType":3,
+ "germanText":"Himawari no Yakusoku",
+ "germanFontType":3,
+ "spanishText":"Himawari no Yakusoku",
+ "spanishFontType":3,
+ "chineseTText":"向日葵的約定",
+ "chineseTFontType":1,
+ "koreanText":"해바라기의 약속",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_himyak",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_himyak",
+ "japaneseText":"",
+ "englishUsText":"ひまわりの約束",
+ "englishUsFontType":0,
+ "frenchText":"ひまわりの約束",
+ "frenchFontType":0,
+ "italianText":"ひまわりの約束",
+ "italianFontType":0,
+ "germanText":"ひまわりの約束",
+ "germanFontType":0,
+ "spanishText":"ひまわりの約束",
+ "spanishFontType":0,
+ "chineseTText":"ひまわりの約束",
+ "chineseTFontType":0,
+ "koreanText":"ひまわりの約束",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kyksmj",
+ "japaneseText":"サイレントマジョリティー",
+ "englishUsText":"Silent Majority",
+ "englishUsFontType":3,
+ "frenchText":"Silent Majority",
+ "frenchFontType":3,
+ "italianText":"Silent Majority",
+ "italianFontType":3,
+ "germanText":"Silent Majority",
+ "germanFontType":3,
+ "spanishText":"Silent Majority",
+ "spanishFontType":3,
+ "chineseTText":"Silent Majority",
+ "chineseTFontType":1,
+ "koreanText":"Silent Majority",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_kyksmj",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kyksmj",
+ "japaneseText":"",
+ "englishUsText":"サイレントマジョリティー",
+ "englishUsFontType":0,
+ "frenchText":"サイレントマジョリティー",
+ "frenchFontType":0,
+ "italianText":"サイレントマジョリティー",
+ "italianFontType":0,
+ "germanText":"サイレントマジョリティー",
+ "germanFontType":0,
+ "spanishText":"サイレントマジョリティー",
+ "spanishFontType":0,
+ "chineseTText":"サイレントマジョリティー",
+ "chineseTFontType":0,
+ "koreanText":"サイレントマジョリティー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_gimcho",
+ "japaneseText":"ギミチョコ!!",
+ "englishUsText":"Gimme Chocolate!!",
+ "englishUsFontType":3,
+ "frenchText":"Gimme Chocolate!!",
+ "frenchFontType":3,
+ "italianText":"Gimme Chocolate!!",
+ "italianFontType":3,
+ "germanText":"Gimme Chocolate!!",
+ "germanFontType":3,
+ "spanishText":"Gimme Chocolate!!",
+ "spanishFontType":3,
+ "chineseTText":"Gimme Chocolate!!",
+ "chineseTFontType":1,
+ "koreanText":"Gimme Chocolate!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_gimcho",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_gimcho",
+ "japaneseText":"",
+ "englishUsText":"ギミチョコ!!",
+ "englishUsFontType":0,
+ "frenchText":"ギミチョコ!!",
+ "frenchFontType":0,
+ "italianText":"ギミチョコ!!",
+ "italianFontType":0,
+ "germanText":"ギミチョコ!!",
+ "germanFontType":0,
+ "spanishText":"ギミチョコ!!",
+ "spanishFontType":0,
+ "chineseTText":"ギミチョコ!!",
+ "chineseTFontType":0,
+ "koreanText":"ギミチョコ!!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_tttt",
+ "japaneseText":"Toon Town’s Toys’ Tune",
+ "englishUsText":"Toon Town’s Toys’ Tune",
+ "englishUsFontType":3,
+ "frenchText":"Toon Town’s Toys’ Tune",
+ "frenchFontType":3,
+ "italianText":"Toon Town’s Toys’ Tune",
+ "italianFontType":3,
+ "germanText":"Toon Town’s Toys’ Tune",
+ "germanFontType":3,
+ "spanishText":"Toon Town’s Toys’ Tune",
+ "spanishFontType":3,
+ "chineseTText":"Toon Town’s Toys’ Tune",
+ "chineseTFontType":1,
+ "koreanText":"Toon Town’s Toys’ Tune",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_tttt",
+ "japaneseText":"Retropolitaliens",
+ "englishUsText":"Retropolitaliens",
+ "englishUsFontType":3,
+ "frenchText":"Retropolitaliens",
+ "frenchFontType":3,
+ "italianText":"Retropolitaliens",
+ "italianFontType":3,
+ "germanText":"Retropolitaliens",
+ "germanFontType":3,
+ "spanishText":"Retropolitaliens",
+ "spanishFontType":3,
+ "chineseTText":"Retropolitaliens",
+ "chineseTFontType":1,
+ "koreanText":"Retropolitaliens",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_tttt",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ri",
+ "japaneseText":"R.I.",
+ "englishUsText":"R.I.",
+ "englishUsFontType":3,
+ "frenchText":"R.I.",
+ "frenchFontType":3,
+ "italianText":"R.I.",
+ "italianFontType":3,
+ "germanText":"R.I.",
+ "germanFontType":3,
+ "spanishText":"R.I.",
+ "spanishFontType":3,
+ "chineseTText":"R.I.",
+ "chineseTFontType":1,
+ "koreanText":"R.I.",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ri",
+ "japaneseText":"大和 × 黒沢ダイスケ",
+ "englishUsText":"Yamato x Daisuke Kurosawa",
+ "englishUsFontType":3,
+ "frenchText":"Yamato x Daisuke Kurosawa",
+ "frenchFontType":3,
+ "italianText":"Yamato x Daisuke Kurosawa",
+ "italianFontType":3,
+ "germanText":"Yamato x Daisuke Kurosawa",
+ "germanFontType":3,
+ "spanishText":"Yamato x Daisuke Kurosawa",
+ "spanishFontType":3,
+ "chineseTText":"Yamato x Daisuke Kurosawa",
+ "chineseTFontType":1,
+ "koreanText":"Yamato x Daisuke Kurosawa",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ri",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_3d3b1x",
+ "japaneseText":"クレイジービューティー",
+ "englishUsText":"Crazy Beauty",
+ "englishUsFontType":3,
+ "frenchText":"Crazy Beauty",
+ "frenchFontType":3,
+ "italianText":"Crazy Beauty",
+ "italianFontType":3,
+ "germanText":"Crazy Beauty",
+ "germanFontType":3,
+ "spanishText":"Crazy Beauty",
+ "spanishFontType":3,
+ "chineseTText":"Crazy Beauty",
+ "chineseTFontType":1,
+ "koreanText":"Crazy Beauty",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_3d3b1x",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_3d3b1x",
+ "japaneseText":"",
+ "englishUsText":"クレイジービューティー",
+ "englishUsFontType":0,
+ "frenchText":"クレイジービューティー",
+ "frenchFontType":0,
+ "italianText":"クレイジービューティー",
+ "italianFontType":0,
+ "germanText":"クレイジービューティー",
+ "germanFontType":0,
+ "spanishText":"クレイジービューティー",
+ "spanishFontType":0,
+ "chineseTText":"クレイジービューティー",
+ "chineseTFontType":0,
+ "koreanText":"クレイジービューティー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_hatara",
+ "japaneseText":"はたラク2000",
+ "englishUsText":"HATARAKU 2000",
+ "englishUsFontType":3,
+ "frenchText":"HATARAKU 2000",
+ "frenchFontType":3,
+ "italianText":"HATARAKU 2000",
+ "italianFontType":3,
+ "germanText":"HATARAKU 2000",
+ "germanFontType":3,
+ "spanishText":"HATARAKU 2000",
+ "spanishFontType":3,
+ "chineseTText":"工作2000",
+ "chineseTFontType":1,
+ "koreanText":"하타라쿠 2000",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_hatara",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_hatara",
+ "japaneseText":"",
+ "englishUsText":"はたラク2000",
+ "englishUsFontType":0,
+ "frenchText":"はたラク2000",
+ "frenchFontType":0,
+ "italianText":"はたラク2000",
+ "italianFontType":0,
+ "germanText":"はたラク2000",
+ "germanFontType":0,
+ "spanishText":"はたラク2000",
+ "spanishFontType":0,
+ "chineseTText":"はたラク2000",
+ "chineseTFontType":0,
+ "koreanText":"はたラク2000",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_chrace",
+ "japaneseText":"チキンレース",
+ "englishUsText":"Chicken Game",
+ "englishUsFontType":3,
+ "frenchText":"Chicken Game",
+ "frenchFontType":3,
+ "italianText":"Chicken Game",
+ "italianFontType":3,
+ "germanText":"Chicken Game",
+ "germanFontType":3,
+ "spanishText":"Chicken Game",
+ "spanishFontType":3,
+ "chineseTText":"膽怯賽局",
+ "chineseTFontType":1,
+ "koreanText":"치킨레이스",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_chrace",
+ "japaneseText":"ナカマオト",
+ "englishUsText":"Maoto Naka",
+ "englishUsFontType":3,
+ "frenchText":"Maoto Naka",
+ "frenchFontType":3,
+ "italianText":"Maoto Naka",
+ "italianFontType":3,
+ "germanText":"Maoto Naka",
+ "germanFontType":3,
+ "spanishText":"Maoto Naka",
+ "spanishFontType":3,
+ "chineseTText":"Maoto Naka",
+ "chineseTFontType":1,
+ "koreanText":"Maoto Naka",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_chrace",
+ "japaneseText":"",
+ "englishUsText":"チキンレース",
+ "englishUsFontType":0,
+ "frenchText":"チキンレース",
+ "frenchFontType":0,
+ "italianText":"チキンレース",
+ "italianFontType":0,
+ "germanText":"チキンレース",
+ "germanFontType":0,
+ "spanishText":"チキンレース",
+ "spanishFontType":0,
+ "chineseTText":"チキンレース",
+ "chineseTFontType":0,
+ "koreanText":"チキンレース",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_popspack03",
+ "japaneseText":"「ポップスパックVol.3」配信中",
+ "englishUsText":"Pops Pack Vol. 3 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「流行音樂Pack Vol.3」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「팝 Pack Vol.3」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_donder04",
+ "japaneseText":"「ドンだーパック -X-」配信中",
+ "englishUsText":"Donder Pack -X- now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「Donder Pack -X-」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「태고러 팩 -X-」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_120",
+ "japaneseText":"アクセル全開!!!",
+ "englishUsText":"Full Steam Ahead!",
+ "englishUsFontType":3,
+ "frenchText":"Droit devant à toute vapeur !",
+ "frenchFontType":3,
+ "italianText":"Avanti tutta!",
+ "italianFontType":3,
+ "germanText":"Volle Kraft voraus!",
+ "germanFontType":3,
+ "spanishText":"¡A toda máquina!",
+ "spanishFontType":3,
+ "chineseTText":"油門全開!!!",
+ "chineseTFontType":1,
+ "koreanText":"액셀 밟자!!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_121",
+ "japaneseText":"発車しまーす",
+ "englishUsText":"And we're off!",
+ "englishUsFontType":3,
+ "frenchText":"Et c'est parti !",
+ "frenchFontType":3,
+ "italianText":"Partiti!",
+ "italianFontType":3,
+ "germanText":"Packen wir's!",
+ "germanFontType":3,
+ "spanishText":"¡Allá vamos!",
+ "spanishFontType":3,
+ "chineseTText":"要開車了~!",
+ "chineseTFontType":1,
+ "koreanText":"열차 출발합니다~",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_122",
+ "japaneseText":"ファーストクラスにご招待",
+ "englishUsText":"First Class Ticket",
+ "englishUsFontType":3,
+ "frenchText":"Ticket de première classe",
+ "frenchFontType":3,
+ "italianText":"Biglietto di prima classe",
+ "italianFontType":3,
+ "germanText":"Erste-Klasse-Ticket",
+ "germanFontType":3,
+ "spanishText":"Billete de primera clase",
+ "spanishFontType":3,
+ "chineseTText":"招待您至頭等艙",
+ "chineseTFontType":1,
+ "koreanText":"퍼스트 클래스로 초대합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_title",
+ "japaneseText":"eスポーツトーナメント",
+ "englishUsText":"E-Sports Tournament",
+ "englishUsFontType":3,
+ "frenchText":"Tournoi E-Sports",
+ "frenchFontType":3,
+ "italianText":"Torneo di eSport",
+ "italianFontType":3,
+ "germanText":"eSports-Turnier",
+ "germanFontType":3,
+ "spanishText":"Torneo de E-Sports",
+ "spanishFontType":3,
+ "chineseTText":"電競錦標賽",
+ "chineseTFontType":1,
+ "koreanText":"e스포츠 토너먼트",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_menu_league1",
+ "japaneseText":"かんたん\nトーナメント",
+ "englishUsText":"Easy\nTournament",
+ "englishUsFontType":3,
+ "frenchText":"Tournoi\nfacile",
+ "frenchFontType":3,
+ "italianText":"Torneo\nfacile",
+ "italianFontType":3,
+ "germanText":"Leichtes\nTurnier",
+ "germanFontType":3,
+ "spanishText":"Torneo\nfácil",
+ "spanishFontType":3,
+ "chineseTText":"簡單\n錦標賽",
+ "chineseTFontType":1,
+ "koreanText":"쉬움\n토너먼트",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_menu_league2",
+ "japaneseText":"ふつう\nトーナメント",
+ "englishUsText":"Normal\nTournament",
+ "englishUsFontType":3,
+ "frenchText":"Tournoi\nnormal",
+ "frenchFontType":3,
+ "italianText":"Torneo\nnormale",
+ "italianFontType":3,
+ "germanText":"Normales\nTurnier",
+ "germanFontType":3,
+ "spanishText":"Torneo\nnormal",
+ "spanishFontType":3,
+ "chineseTText":"普通\n錦標賽",
+ "chineseTFontType":1,
+ "koreanText":"보통\n토너먼트",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_menu_league3",
+ "japaneseText":"むずかしい\nトーナメント",
+ "englishUsText":"Hard\nTournament",
+ "englishUsFontType":3,
+ "frenchText":"Tournoi\ndifficile",
+ "frenchFontType":3,
+ "italianText":"Torneo\ndifficile",
+ "italianFontType":3,
+ "germanText":"Schweres\nTurnier",
+ "germanFontType":3,
+ "spanishText":"Torneo\ndifícil",
+ "spanishFontType":3,
+ "chineseTText":"困難\n錦標賽",
+ "chineseTFontType":1,
+ "koreanText":"어려움\n토너먼트",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_menu_league4",
+ "japaneseText":"おに\nトーナメント",
+ "englishUsText":"Extreme\nTournament",
+ "englishUsFontType":3,
+ "frenchText":"Tournoi\nextrême",
+ "frenchFontType":3,
+ "italianText":"Torneo\nestremo",
+ "italianFontType":3,
+ "germanText":"Extremes\nTurnier",
+ "germanFontType":3,
+ "spanishText":"Torneo\nextremo",
+ "spanishFontType":3,
+ "chineseTText":"魔王\n錦標賽",
+ "chineseTFontType":1,
+ "koreanText":"귀신\n토너먼트",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_league1",
+ "japaneseText":"かんたんトーナメント",
+ "englishUsText":"Easy Tournament",
+ "englishUsFontType":3,
+ "frenchText":"Tournoi facile",
+ "frenchFontType":3,
+ "italianText":"Torneo facile",
+ "italianFontType":3,
+ "germanText":"Leichtes Turnier",
+ "germanFontType":3,
+ "spanishText":"Torneo fácil",
+ "spanishFontType":3,
+ "chineseTText":"簡單錦標賽",
+ "chineseTFontType":1,
+ "koreanText":"쉬움 토너먼트",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_league2",
+ "japaneseText":"ふつうトーナメント",
+ "englishUsText":"Normal Tournament",
+ "englishUsFontType":3,
+ "frenchText":"Tournoi normal",
+ "frenchFontType":3,
+ "italianText":"Torneo normale",
+ "italianFontType":3,
+ "germanText":"Normales Turnier",
+ "germanFontType":3,
+ "spanishText":"Torneo normal",
+ "spanishFontType":3,
+ "chineseTText":"普通錦標賽",
+ "chineseTFontType":1,
+ "koreanText":"보통 토너먼트",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_league3",
+ "japaneseText":"むずかしいトーナメント",
+ "englishUsText":"Hard Tournament",
+ "englishUsFontType":3,
+ "frenchText":"Tournoi difficile",
+ "frenchFontType":3,
+ "italianText":"Torneo difficile",
+ "italianFontType":3,
+ "germanText":"Schweres Turnier",
+ "germanFontType":3,
+ "spanishText":"Torneo difícil",
+ "spanishFontType":3,
+ "chineseTText":"困難錦標賽",
+ "chineseTFontType":1,
+ "koreanText":"어려움 토너먼트",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_league4",
+ "japaneseText":"おにトーナメント",
+ "englishUsText":"Extreme Tournament",
+ "englishUsFontType":3,
+ "frenchText":"Tournoi extrême",
+ "frenchFontType":3,
+ "italianText":"Torneo estremo",
+ "italianFontType":3,
+ "germanText":"Extremes Turnier",
+ "germanFontType":3,
+ "spanishText":"Torneo extremo",
+ "spanishFontType":3,
+ "chineseTText":"魔王錦標賽",
+ "chineseTFontType":1,
+ "koreanText":"귀신 토너먼트",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_menu_rank",
+ "japaneseText":"ランクマッチ",
+ "englishUsText":"Ranked Match",
+ "englishUsFontType":3,
+ "frenchText":"Match classé",
+ "frenchFontType":3,
+ "italianText":"Partita classificata",
+ "italianFontType":3,
+ "germanText":"Ranglisten-Partie",
+ "germanFontType":3,
+ "spanishText":"Partida igualada",
+ "spanishFontType":3,
+ "chineseTText":"排名對戰",
+ "chineseTFontType":1,
+ "koreanText":"랭크 매치",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_mysong",
+ "japaneseText":"マイバトル曲",
+ "englishUsText":"My Battle Song",
+ "englishUsFontType":3,
+ "frenchText":"Ma Chanson de combat",
+ "frenchFontType":3,
+ "italianText":"La mia canzone da battaglia",
+ "italianFontType":3,
+ "germanText":"Eigener Kampf-Song",
+ "germanFontType":3,
+ "spanishText":"Mi canción de batalla",
+ "spanishFontType":3,
+ "chineseTText":"我的對戰曲",
+ "chineseTFontType":1,
+ "koreanText":"마이 배틀 곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"genre_skip_forward",
+ "japaneseText":"ジャンルスキップ(進む)",
+ "englishUsText":"Genre Skip (Forward)",
+ "englishUsFontType":3,
+ "frenchText":"Genre suivant",
+ "frenchFontType":3,
+ "italianText":"Genere seguente",
+ "italianFontType":3,
+ "germanText":"Nächstes Genre",
+ "germanFontType":3,
+ "spanishText":"Género siguiente",
+ "spanishFontType":3,
+ "chineseTText":"類型快移(往前)",
+ "chineseTFontType":1,
+ "koreanText":"장르 스킵 (넘기기)",
+ "koreanFontType":2
+ },
+ {
+ "key":"genre_skip_back",
+ "japaneseText":"ジャンルスキップ(もどる)",
+ "englishUsText":"Genre Skip (Back)",
+ "englishUsFontType":3,
+ "frenchText":"Genre précédent",
+ "frenchFontType":3,
+ "italianText":"Genere precedente",
+ "italianFontType":3,
+ "germanText":"Vorheriges Genre",
+ "germanFontType":3,
+ "spanishText":"Género anterior",
+ "spanishFontType":3,
+ "chineseTText":"類型快移(往後)",
+ "chineseTFontType":1,
+ "koreanText":"장르 스킵 (되돌리기)",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_tutorial_title01",
+ "japaneseText":"eスポーツトーナメントのあそびかた",
+ "englishUsText":"How to Play E-Sports Tournament Mode",
+ "englishUsFontType":3,
+ "frenchText":"Comment jouer en mode Tournoi E-Sports",
+ "frenchFontType":3,
+ "italianText":"Torneo di eSport: come si gioca",
+ "italianFontType":3,
+ "germanText":"Wie man den eSports-Turnier-Modus spielt",
+ "germanFontType":3,
+ "spanishText":"Cómo se juega al modo Torneo de E-Sports",
+ "spanishFontType":3,
+ "chineseTText":"電競錦標賽的玩法",
+ "chineseTFontType":1,
+ "koreanText":"e스포츠 토너먼트 플레이 방법",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_tutorial_page01",
+ "japaneseText":"■ 「eスポーツトーナメント」は全世界のプレイヤーと\n トーナメント形式でメダルのかくとくを競うモードだよ\n\n■ 得意な「むずかしさ」を選んでトーナメントに参加しよう\n\n\n■ マッチングで4人~8人集まるとトーナメントがスタートするよ\n ※制限時間までに4人以上集まらなかった場合は、マッチングをやり直してください\n\n■ 1回戦は1曲勝負だよ! 曲はランダムで決まるよ\n\n\n■ 2回戦と決勝戦はおたがいの得意な曲で2曲勝負だよ!\n 得意な曲は「マイバトル曲」で設定しよう\n\n■ マイバトル曲は2回戦の曲は「2」、決勝戦の曲は「3」のマークがつくよ",
+ "englishUsText":"-E-Sports Tournament is a competitive mode where you fight\nagainst players around the world to earn medals. \n\n-Choose the right difficulty and jump in!\n\n-The tournament will start once 4-8 players have been found. \n\n*If a minimum of 4 players can't be found after a short time, please start the matchmaking process again. \n\n-The first match is a 1-song battle! The song will be randomly selected.\n\n-The second and final matches are 2-song battles! Make sure to set your \"My Battle Song\".\n\n-The song for the second match is marked as “2”, while the final\nsong is marked “3”. ",
+ "englishUsFontType":3,
+ "frenchText":"- Le Tournoi E-Sports est un mode compétitif où tu affrontes\nd'autres joueurs du monde entier pour remporter des médailles.\n\n- Choisis le niveau de difficulté qui te convient et viens jouer !\n\n- Le tournoi commencera une fois que 4 à 8 joueurs auront été trouvés. \n\n*Si au minimum 4 joueurs n'ont pas été trouvés après un court instant,\nredémarre le matchmaking. \n\n- Le 1er match est un combat en une chanson ! La chanson sera choisie aléatoirement.\n\n- Le 2e match et le match final sont des matchs en deux chansons !\nAssure-toi de configurer \"Ma Chanson de combat\".\n\n- La chanson du 2e match est indiquée par un \"2\", tandis que la chanson\nfinale est indiquée par un \"3\". ",
+ "frenchFontType":3,
+ "italianText":"- Torneo eSport è una modalità competitiva in cui si gareggia\ncontro giocatori da tutto il mondo per conquistare medaglie. \n\n- Seleziona la difficoltà che preferisci e gioca!\n\n- Il torneo inizia non appena vengono trovati 4-8 giocatori disponibili. \n\n* Se non riesci a trovare almeno altri 3 giocatori in un breve lasso di tempo,\nriavvia il matchmaking. \n\n- La prima partita è una battaglia a 1 canzone. La canzone verrà selezionata casualmente.\n\n- La seconda e la terza partita sono battaglie a 2 canzoni.\nRicorda di impostare la tua \"La mia canzone da battaglia\".\n\n- La canzone della seconda partita è indicata con \"2\",\nquella dell'ultima partita con \"3\". ",
+ "italianFontType":3,
+ "germanText":"-Das eSports-Turnier ist ein kompetitiver Modus, in dem du\ngegen Spieler aus aller Welt antrittst, um Medaillen zu gewinnen.\n\n-Wähle den richtigen Schwierigkeitsgrad und leg los!\n\n-Das Turnier beginnt, sobald 4-8 Spieler gefunden wurden.\n\n*Wenn nach kurzer Zeit keine 4 Spieler gefunden wurden,\nstarte bitte die Spielersuche erneut.\n\n-Die erste Partie ist ein 1-Song-Kampf! Der Song wird zufällig ausgewählt.\n\n-Die zweite und dritte Partie sind 2-Song-Kämpfe!\nLege deinen \"Eigener Kampf-Song\" fest.\n\n-Der Song für die zweite Partie wird mit \"2\" markiert,\nder letzte Song mit \"3\".",
+ "germanFontType":3,
+ "spanishText":"- Torneo de E-Sports es un modo competitivo en el que luchas contra jugadores de todo el mundo\npara ganar medallas. \n\n- ¡Elige el nivel de dificultad más adecuado y ponte a jugar!\n\n- El torneo comienza una vez se hayan encontrado entre 4 y 8 jugadores. \n\n* Si no se encuentran 4 jugadores tras un breve lapso temporal, por favor, reinicia el matchmaking. \n\n- La primera partida consta de una canción que será seleccionada aleatoriamente.\n\n-¡La segunda partida y la final incluirán batallas de dos canciones!\nAsegúrate de configurar la opción \"Mi canción de batalla\" antes.\n\n- La canción de la segunda partida aparecerá con un \"2\" y la última, con un \"3\". ",
+ "spanishFontType":3,
+ "chineseTText":"■ 是能與全世界的玩家,透過錦標賽的形式爭奪冠軍的模式\n\n\n■ 選擇擅長的「難度」參加錦標賽\n\n\n■ 在配對中湊齊4~8參賽者便會開始進行錦標賽\n ※在限制時間內未能湊齊4位以上參賽者的情況下,請重新進行配對\n\n■ 第1場比賽為單首樂曲對決!樂曲以亂數方式來決定\n\n\n■ 在第2場比賽與冠軍戰能以自己擅長的樂曲一決勝負\n 請在「我的對戰曲」裡進行設定吧\n\n■我的對戰曲用於第2戰的樂曲會標上「2」,冠軍戰的樂曲則會標上「3」的圖示",
+ "chineseTFontType":1,
+ "koreanText":"■ 「e스포츠 토너먼트」는 전 세계의 플레이어와\n 토너먼트 형식으로 메달 획득을 두고 겨루는 모드야\n\n■ 자신 있는 「난이도」를 골라 토너먼트에 참가하자\n\n\n■ 매칭으로 4명~8명이 모이면 토너먼트가 시작돼\n ※제한시간까지 4명 이상 모이지 않을 경우, 매칭을 다시 시도해 주십시오\n\n■ 1회전은 한 곡으로 승부! 곡은 랜덤으로 정해져\n\n\n■ 2회전과 결승전은 서로의 자신 있는 곡 1곡씩, 총 2곡으로 대결!\n 자신 있는 곡은 「마이 배틀 곡」에서 설정하자\n\n■ 마이 배틀 곡은, 2회전 곡에는 「2」, 결승전 곡에는 「3」 마크가 붙어",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_tutorial_page02",
+ "japaneseText":"■ 演奏中に「-/+ボタン」を押したままにすると「リタイア」できるよ\n\n\n■ スコアが同じになった場合は、良や可などの数が上回っている方が勝ちだよ\n\n\n■ eスポーツトーナメントの結果に応じて「ごほうびポイント」がもらえるよ\n ※メダル獲得時の「ごほうびポイント」はトーナメントの難易度が高いほど多くもらえます\n\n■ 途中で負けても、その後の試合を観戦できるよ\n\n\n■ 観戦中にドンまたはカッをたたくとハートで応援できるよ\n\n\n■ 観戦中に「-/+ボタン」を押すと中断メニューがでるよ",
+ "englishUsText":"-You can Retire from a match by holding the -/+ buttons.\n\n-In the event of a tied score, the player with the most GOODs or OKs wins.\n\n-In E-Sports Tournaments, you can earn Reward Points based on the results.\n\n*The higher the difficulty of the tournament, the more Reward Points will be awarded together with the Medals.\n\n-Even if you’re eliminated from a match, you can spectate the remainder.\n\n-While spectating, you can cheer someone on with hearts by hitting DON.\n\n-You can stop spectating by pressing the -/+ buttons to bring up the pause menu.\n\n",
+ "englishUsFontType":3,
+ "frenchText":"- Tu peux te retirer d'une partie avec les boutons -/+.\n\n- En cas de match nul, le joueur ayant obtenu le plus de BONS et OK l'emportera.\n\n- Dans les tournois E-Sports, tu gagnes des Primes de points selon tes résultats.\n\n*Plus la difficulté du tournoi est élevée, plus les Primes de points octroyées avec les médailles seront nombreuses.\n\n- Même en cas d'élimination, tu peux assister au reste du tournoi.\n\n- En tant que spectateur, tu peux encourager un joueur avec des cœurs en appuyant sur DON.\n\n- Tu peux arrêter d'assister à un match en appuyant sur les boutons -/+ pour afficher le menu pause.\n\n\n\n",
+ "frenchFontType":3,
+ "italianText":"- Per ritirarti da una partita, premi -/+.\n\n- A parità di punti, vince il giocatore con più BUONO o OK.\n\n- Nei Tornei eSport si ottengono punti ricompensa in base ai risultati.\n\n* Più alto è il livello di difficoltà del torneo, più punti ricompensa si ottengono insieme alle medaglie.\n\n- Anche se vieni eliminato da una partita, puoi continuare come spettatore.\n\n- Quando fai da spettatore, puoi tifare per qualcuno inviandogli cuoricini con il DON.\n\n- Per interrompere la visione e richiamare il menu di pausa, premi -/+.\n\n\n\n",
+ "italianFontType":3,
+ "germanText":"-Drücke -/+ während einer Partie, um aufzugeben.\n\n-Bei gleichem Punktestand gewinnt der Spieler mit den meisten GUTs oder OKs.\n\n-In eSports-Turnieren erhältst du je nach den Ergebnissen Belohnungspunkte.\n\n*Je höher der Schwierigkeitsgrad des Turniers, desto mehr Belohnungspunkte werden\nzusammen mit den Medaillen vergeben.\n\n-Auch wenn du einen Kampf verlierst, kannst du die übrigen ansehen.\n\n-Beim Zuschauen kannst du jemanden mit Herzen anfeuern, indem du DON schlägst.\n\n-Du kannst mit -/+ das Pausemenü aufrufen und nicht mehr zuschauen.\n\n\n",
+ "germanFontType":3,
+ "spanishText":"- Para retirarte de una partida, pulsa los botones -/+.\n\n- En caso de empate, gana el jugador con más BIENES o VALES.\n\n- En Torneo de E-Sports ganarás puntos de recompensa según los resultados.\n\n*Cuanto más alta sea la dificultad del torneo, mayores serán los puntos de recompensa que\nse otorgarán junto con las medallas.\n\n- Aunque quedes eliminado de una partida, puedes observar el resto como espectador.\n\n- Mientras observas, podrás animar con corazones pulsando DON.\n\n- Para salir, pulsa los botones -/+ para abrir el menú de pausa.\n",
+ "spanishFontType":3,
+ "chineseTText":"■在演奏中按住「-/+按鍵」就能夠「棄權」\n\n\n■ 當分數相同的情況下,良或可等判定數較多的人獲勝\n\n\n■ 將視電競錦標賽的結果取得「獎勵點數」\n ※錦標賽的難度越高,取得獎牌時獲得的「獎勵點數」就越多\n\n■ 即使中途落敗,也能觀看之後的比賽\n\n\n■ 在觀戰中敲打咚能送上愛心進行加油\n\n\n■ 在觀戰中按下「-/+按鍵」能中斷觀戰叫出選單",
+ "chineseTFontType":1,
+ "koreanText":"■ 연주 중에 「-/+ 버튼」을 길게 누르고 있으면 「포기」할 수 있어\n\n\n■ 스코어가 같은 경우에는 얼쑤나 좋다의 수가 더 많은 쪽이 이겨\n\n\n■ e스포츠 토너먼트의 결과에 따라 「보상 포인트」를 받을 수 있어\n ※메달 획득 시의 「보상 포인트」는 토너먼트의 난이도가 높을 수록 많이 받아집니다\n\n■ 중간에 져도 이어지는 시합을 관전할 수 있어\n\n\n■ 관전 중에 쿵을 두드리면 하트로 성원을 보낼 수 있어\n\n\n■ 연주 관전 중에 「-/+ 버튼」을 누르면 관전을 중단하는 메뉴가 나와",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_matching_wait",
+ "japaneseText":"けんさく中・・・",
+ "englishUsText":"Searching...",
+ "englishUsFontType":3,
+ "frenchText":"Recherche en cours...",
+ "frenchFontType":3,
+ "italianText":"Ricerca in corso...",
+ "italianFontType":3,
+ "germanText":"Suche ...",
+ "germanFontType":3,
+ "spanishText":"Buscando...",
+ "spanishFontType":3,
+ "chineseTText":"配對中・・・",
+ "chineseTFontType":1,
+ "koreanText":"검색 중・・・",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_matching_cancel",
+ "japaneseText":"対戦相手が見つかりませんでした",
+ "englishUsText":"Could not find opponents.",
+ "englishUsFontType":3,
+ "frenchText":"Impossible de trouver des adversaires.",
+ "frenchFontType":3,
+ "italianText":"Nessun avversario trovato.",
+ "italianFontType":3,
+ "germanText":"Gegner konnten nicht gefunden werden.",
+ "germanFontType":3,
+ "spanishText":"No se han encontrado rivales.",
+ "spanishFontType":3,
+ "chineseTText":"未搜尋到對戰對手",
+ "chineseTFontType":1,
+ "koreanText":"대전 상대를 찾지 못했습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_matching_error",
+ "japaneseText":"マッチングに失敗しました",
+ "englishUsText":"Matchmaking failed.",
+ "englishUsFontType":3,
+ "frenchText":"Échec du matchmaking.",
+ "frenchFontType":3,
+ "italianText":"Matchmaking fallito.",
+ "italianFontType":3,
+ "germanText":"Spielersuche fehlgeschlagen.",
+ "germanFontType":3,
+ "spanishText":"Matchmaking fallido.",
+ "spanishFontType":3,
+ "chineseTText":"配對失敗",
+ "chineseTFontType":1,
+ "koreanText":"매칭에 실패했습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_A",
+ "japaneseText":"Aブロック",
+ "englishUsText":"A Block",
+ "englishUsFontType":3,
+ "frenchText":"Bloc A",
+ "frenchFontType":3,
+ "italianText":"Blocco A",
+ "italianFontType":3,
+ "germanText":"A-Block",
+ "germanFontType":3,
+ "spanishText":"Bloque A",
+ "spanishFontType":3,
+ "chineseTText":"A組",
+ "chineseTFontType":1,
+ "koreanText":"A블록",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_B",
+ "japaneseText":"Bブロック",
+ "englishUsText":"B Block",
+ "englishUsFontType":3,
+ "frenchText":"Bloc B",
+ "frenchFontType":3,
+ "italianText":"Blocco B",
+ "italianFontType":3,
+ "germanText":"B-Block",
+ "germanFontType":3,
+ "spanishText":"Bloque B",
+ "spanishFontType":3,
+ "chineseTText":"B組",
+ "chineseTFontType":1,
+ "koreanText":"B블록",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_round1",
+ "japaneseText":"1回戦",
+ "englishUsText":"1st Match",
+ "englishUsFontType":3,
+ "frenchText":"1er match",
+ "frenchFontType":3,
+ "italianText":"Partita 1",
+ "italianFontType":3,
+ "germanText":"1. Partie",
+ "germanFontType":3,
+ "spanishText":"1.ª partida",
+ "spanishFontType":3,
+ "chineseTText":"第1戰",
+ "chineseTFontType":1,
+ "koreanText":"1회전",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_round2a",
+ "japaneseText":"Aブロック・2回戦",
+ "englishUsText":"A Block: 2nd Match",
+ "englishUsFontType":3,
+ "frenchText":"Bloc A : 2e match",
+ "frenchFontType":3,
+ "italianText":"Blocco A: Partita 2",
+ "italianFontType":3,
+ "germanText":"A-Block: 2. Partie",
+ "germanFontType":3,
+ "spanishText":"Bloque A: 2.ª partida",
+ "spanishFontType":3,
+ "chineseTText":"A組‧第2戰",
+ "chineseTFontType":1,
+ "koreanText":"A블록・2회전",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_round2_1",
+ "japaneseText":"Aブロック・2回戦・1曲目",
+ "englishUsText":"A Block: 2nd Match - 1st Song",
+ "englishUsFontType":3,
+ "frenchText":"Bloc A : 2e match - 1re chanson",
+ "frenchFontType":3,
+ "italianText":"Blocco A: Partita 2 - Canzone 1",
+ "italianFontType":3,
+ "germanText":"A-Block: 2. Partie – 1. Song",
+ "germanFontType":3,
+ "spanishText":"Bloque A: 2.ª partida - 1.ª canción",
+ "spanishFontType":3,
+ "chineseTText":"A組‧第2戰‧第1首樂曲",
+ "chineseTFontType":1,
+ "koreanText":"A블록・2회전・첫 번째 곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_round2_2",
+ "japaneseText":"Aブロック・2回戦・2曲目",
+ "englishUsText":"A Block: 2nd Match - 2nd Song",
+ "englishUsFontType":3,
+ "frenchText":"Bloc A : 2e match - 2e chanson",
+ "frenchFontType":3,
+ "italianText":"Blocco A: Partita 2 - Canzone 2",
+ "italianFontType":3,
+ "germanText":"A-Block: 2. Partie – 2. Song",
+ "germanFontType":3,
+ "spanishText":"Bloque A: 2.ª partida - 2.ª canción",
+ "spanishFontType":3,
+ "chineseTText":"A組‧第2戰‧第2首樂曲",
+ "chineseTFontType":1,
+ "koreanText":"A블록・2회전・두 번째 곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_round2b",
+ "japaneseText":"Bブロック・2回戦",
+ "englishUsText":"B Block: 2nd Match",
+ "englishUsFontType":3,
+ "frenchText":"Bloc B : 2e match",
+ "frenchFontType":3,
+ "italianText":"Blocco B: Partita 2",
+ "italianFontType":3,
+ "germanText":"B-Block: 2. Partie",
+ "germanFontType":3,
+ "spanishText":"Bloque B: 2.ª partida",
+ "spanishFontType":3,
+ "chineseTText":"B組‧第2戰",
+ "chineseTFontType":1,
+ "koreanText":"B블록・2회전",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_round2_3",
+ "japaneseText":"Bブロック・2回戦・1曲目",
+ "englishUsText":"B Block: 2nd Match - 1st Song",
+ "englishUsFontType":3,
+ "frenchText":"Bloc B : 2e match - 1re chanson",
+ "frenchFontType":3,
+ "italianText":"Blocco B: Partita 2 - Canzone 1",
+ "italianFontType":3,
+ "germanText":"B-Block: 2. Partie – 1. Song",
+ "germanFontType":3,
+ "spanishText":"Bloque B: 2.ª partida - 1.ª canción",
+ "spanishFontType":3,
+ "chineseTText":"B組‧第2戰‧第1首樂曲",
+ "chineseTFontType":1,
+ "koreanText":"B블록・2회전・첫 번째 곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_round2_4",
+ "japaneseText":"Bブロック・2回戦・2曲目",
+ "englishUsText":"B Block: 2nd Match - 2nd Song",
+ "englishUsFontType":3,
+ "frenchText":"Bloc B : 2e match - 2e chanson",
+ "frenchFontType":3,
+ "italianText":"Blocco B: Partita 2 - Canzone 2",
+ "italianFontType":3,
+ "germanText":"B-Block: 2. Partie – 2. Song",
+ "germanFontType":3,
+ "spanishText":"Bloque B: 2.ª partida - 2.ª canción",
+ "spanishFontType":3,
+ "chineseTText":"B組‧第2戰‧第2首樂曲",
+ "chineseTFontType":1,
+ "koreanText":"B블록・2회전・두 번째 곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_round3",
+ "japaneseText":"決勝戦",
+ "englishUsText":"Final Match",
+ "englishUsFontType":3,
+ "frenchText":"Match final",
+ "frenchFontType":3,
+ "italianText":"Partita finale",
+ "italianFontType":3,
+ "germanText":"Letzte Partie",
+ "germanFontType":3,
+ "spanishText":"Partida final",
+ "spanishFontType":3,
+ "chineseTText":"冠軍戰",
+ "chineseTFontType":1,
+ "koreanText":"결승전",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_round3_1",
+ "japaneseText":"決勝戦・1曲目",
+ "englishUsText":"Final Match - 1st Song",
+ "englishUsFontType":3,
+ "frenchText":"Match final - 1re chanson",
+ "frenchFontType":3,
+ "italianText":"Partita finale - Canzone 1",
+ "italianFontType":3,
+ "germanText":"Letzte Partie – 1. Song",
+ "germanFontType":3,
+ "spanishText":"Partida final - 1.ª canción",
+ "spanishFontType":3,
+ "chineseTText":"冠軍戰‧第1首樂曲",
+ "chineseTFontType":1,
+ "koreanText":"결승전・첫 번째 곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_round3_2",
+ "japaneseText":"決勝戦・2曲目",
+ "englishUsText":"Final Match - 2nd Song",
+ "englishUsFontType":3,
+ "frenchText":"Match final - 2e chanson",
+ "frenchFontType":3,
+ "italianText":"Partita finale - Canzone 2",
+ "italianFontType":3,
+ "germanText":"Letzte Partie – 2. Song",
+ "germanFontType":3,
+ "spanishText":"Partida final - 2.ª canción",
+ "spanishFontType":3,
+ "chineseTText":"冠軍戰‧第2首樂曲",
+ "chineseTFontType":1,
+ "koreanText":"결승전・두 번째 곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_entry_cm1",
+ "japaneseText":"さー、やってまいりました、熱気あふれる「タイコスタジアム」\n本日の実況は、わたくし、「バチお」がお送りします。",
+ "englishUsText":"Aaand we’re here at the exciting Taiko Stadium!\nYour host for today’s event is... Me! Bachio!",
+ "englishUsFontType":3,
+ "frenchText":"Et nous voici dans le fabuleux stade Taiko !\nEt le présentateur pour l'événement du jour\nn'est autre que... Moi ! Bachio !",
+ "frenchFontType":3,
+ "italianText":"Eeeed eccoci di nuovo nel fantastico\nTaiko Stadium! A presentare l'evento...\nil sottoscritto! Bachio!",
+ "italianFontType":3,
+ "germanText":"Uuuund hier sind wir, im aufregenden Taiko-Stadion!\nDer Kommentator heute bin ... ich! Bachio!",
+ "germanFontType":3,
+ "spanishText":"Y... ¡estamos en el fabuloso estadio Taiko!\nEl presentador del evento de hoy... ¡soy yo, Bachio!",
+ "spanishFontType":3,
+ "chineseTText":"好了,我們終於來到充滿熱情的「太鼓競技場」! \n今天將由敝人我「鼓棒師父」來為觀眾們解說實況。",
+ "chineseTFontType":1,
+ "koreanText":"여러분 반갑습니다! 열기 넘치는 「태고스타디움」\n오늘 해설은 저 「북채」가 전해드립니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_entry_cm2",
+ "japaneseText":"超満員の「タイコスタジアム」!\n今か今かと試合開始を待ちわびております!\n試合実況はわたくし「バチお」がお送りします。",
+ "englishUsText":"Welcome to the jam-packed Taiko Stadium!\nWe’re just moments away from beginning today’s matchup!\nI’ll be your host, Bachio!",
+ "englishUsFontType":3,
+ "frenchText":"Bienvenue dans le stade Taiko, riche en émotions !\nNous allons commencer d'ici peu le tirage du jour !\nC'est moi, Bachio, qui serai votre présentateur !",
+ "frenchFontType":3,
+ "italianText":"Benvenuti nel Taiko Stadium, pieno zeppo di tifosi!\nManca pochissimo all'inizio della partita di oggi!\nA presentare l'evento, io, Bachio!",
+ "italianFontType":3,
+ "germanText":"Willkommen im randvollen Taiko-Stadion!\nIn wenigen Augenblicken beginnt der heutige Kampf!\nIch bin heute der Kommentator! Mein Name ist Bachio!",
+ "germanFontType":3,
+ "spanishText":"¡Bienvenidos al llenísimo estadio Taiko!\n¡La partida de hoy está a punto de comenzar!\n¡Soy Bachio, el presentador!",
+ "spanishFontType":3,
+ "chineseTText":"人滿為患的「太鼓競技場」!\n觀眾們應該都迫不及待地想看到比賽開始!\n比賽將由敝人我「鼓棒師父」來為觀眾們解說實況。",
+ "chineseTFontType":1,
+ "koreanText":"관중으로 가득한 「태고스타디움」! \n모두 목이 빠져라 경기 시작을 기다리고 있는데요!\n경기 해설은 저 「북채」가 전해드립니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_entry_cm3",
+ "japaneseText":"ここタイコスタジアムでは、大きな歓声で沸いております。\n実況はわたくし「バチお」がお届けします。",
+ "englishUsText":"The crowd is cheering wildly here at Taiko Stadium.\nI’m Bachio and I’ll be your commentator for today’s event!",
+ "englishUsFontType":3,
+ "frenchText":"Ici, au stade Taiko, la foule en délire déborde de joie.\nJe m'appelle Bachio et je serai le commentateur pour\nl'événement d'aujourd'hui !",
+ "frenchFontType":3,
+ "italianText":"Qui al Taiko Stadium la folla è in festa. Io sono Bachio\ne sarò io a presentare l'evento di oggi!",
+ "italianFontType":3,
+ "germanText":"Hier im Taiko-Stadion hören wir die Menge laut jubeln.\nIch bin Bachio und werde den heutigen Kampf kommentieren!",
+ "germanFontType":3,
+ "spanishText":"En el estadio Taiko, el público vitorea con fervor.\n¡Soy Bachio, el presentador del evento de hoy!",
+ "spanishFontType":3,
+ "chineseTText":"這座太鼓競技場,已被觀眾們的熱情歡呼聲所淹沒。\n在此將由敝人我「鼓棒師父」來為觀眾們解說實況。",
+ "chineseTFontType":1,
+ "koreanText":"이곳, 태고스타디움에는 큰 함성이 울려 퍼지고 있습니다\n해설은 저 「북채」가 전해드립니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_enso_wait",
+ "japaneseText":"他のプレイヤーが演奏中です\nしばらくお待ちください",
+ "englishUsText":"Other players are still in the match. \nPlease wait.",
+ "englishUsFontType":3,
+ "frenchText":"D'autres joueurs participent encore à la partie. \nMerci de patienter.",
+ "frenchFontType":3,
+ "italianText":"Altri giocatori sono ancora in partita. \nAttendi...",
+ "italianFontType":3,
+ "germanText":"Es befinden sich noch andere Spieler im Kampf.\nBitte warten.",
+ "germanFontType":3,
+ "spanishText":"Hay otros jugadores en la partida. \nEspera.",
+ "spanishFontType":3,
+ "chineseTText":"其他玩家正在演奏中,請稍待片刻。",
+ "chineseTFontType":1,
+ "koreanText":"다른 플레이어가 연주 중입니다\n잠시 기다려주세요",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_end",
+ "japaneseText":"トーナメントは終了しました",
+ "englishUsText":"The Tournament has ended.",
+ "englishUsFontType":3,
+ "frenchText":"Fin du tournoi.",
+ "frenchFontType":3,
+ "italianText":"Il torneo si è concluso.",
+ "italianFontType":3,
+ "germanText":"Das Turnier ist beendet.",
+ "germanFontType":3,
+ "spanishText":"El torneo ha finalizado.",
+ "spanishFontType":3,
+ "chineseTText":"錦標賽已結束",
+ "chineseTFontType":1,
+ "koreanText":"토너먼트는 종료되었습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_win",
+ "japaneseText":"勝ち",
+ "englishUsText":"Winner!",
+ "englishUsFontType":3,
+ "frenchText":"C'est gagné !",
+ "frenchFontType":3,
+ "italianText":"Hai vinto!",
+ "italianFontType":3,
+ "germanText":"Gewinner!",
+ "germanFontType":3,
+ "spanishText":"¡Victoria!",
+ "spanishFontType":3,
+ "chineseTText":"勝利",
+ "chineseTFontType":1,
+ "koreanText":"승리",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_loading_cm1",
+ "japaneseText":"さあーー間もなく試合が開始されます",
+ "englishUsText":"All right! We’ll begin the match in just a few moments!",
+ "englishUsFontType":3,
+ "frenchText":"Très bien ! Le match va commencer dans quelques instants !",
+ "frenchFontType":3,
+ "italianText":"Bene! La partita inizierà tra pochi istanti!",
+ "italianFontType":3,
+ "germanText":"Okay! Die Partie beginnt in ein paar Momenten!",
+ "germanFontType":3,
+ "spanishText":"¡Muy bien! ¡La partida comenzará en unos instantes!",
+ "spanishFontType":3,
+ "chineseTText":"好了--比賽馬上就要開始了",
+ "chineseTFontType":1,
+ "koreanText":"자~~ 이제 곧 경기가 시작됩니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_loading_cm2",
+ "japaneseText":"今回のカードも楽しみですね!\nさっそく、いってみましょう!",
+ "englishUsText":"Right! The next card’s also a blast!\nAll right, let’s go!",
+ "englishUsFontType":3,
+ "frenchText":"La prochaine carte promet d'être aussi intense !\nAllez, c'est parti !",
+ "frenchFontType":3,
+ "italianText":"Bene! Anche la prossima scheda è eccezionale!\nForza!",
+ "italianFontType":3,
+ "germanText":"Super! Die nächste Karte wird auch klasse!\nAlles klar, los geht's!",
+ "germanFontType":3,
+ "spanishText":"¡Perfecto! ¡El siguiente cartón también será una pasada!\nBueno, ¡allá vamos!",
+ "spanishFontType":3,
+ "chineseTText":"這次的對手看來也令人興奮呢!趕緊開始對決吧!",
+ "chineseTFontType":1,
+ "koreanText":"이번 경기도 기대되는군요!\n바로 시작해봅시다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_loading_cm3",
+ "japaneseText":"さあーー今回のカードも見逃せません!",
+ "englishUsText":"All right, folks! This next card is one you won’t want to miss!",
+ "englishUsFontType":3,
+ "frenchText":"Attention, les amis ! Il ne faut surtout pas manquer la prochaine carte !",
+ "frenchFontType":3,
+ "italianText":"Forza, ragazzi! La prossima scheda è da non perdere!",
+ "italianFontType":3,
+ "germanText":"Okay, Leute! Diese Karte werdet ihr nicht verpassen wollen!",
+ "germanFontType":3,
+ "spanishText":"¡Muy bien! ¡No vais a querer perderos el siguiente cartón!",
+ "spanishFontType":3,
+ "chineseTText":"好了--也不能錯過這次的對手!",
+ "chineseTFontType":1,
+ "koreanText":"자~ 이번 경기도 놓칠 수 없습니다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_loading_cm4",
+ "japaneseText":"注目のカード\nいよいよ試合開始です!",
+ "englishUsText":"It’s the match you’ve been waiting for! \nNow then, let’s start!",
+ "englishUsFontType":3,
+ "frenchText":"Voici le match que vous attendez tous !\nAttention, c'est parti !",
+ "frenchFontType":3,
+ "italianText":"È la partita che stavate aspettando! \nCominciamo!",
+ "italianFontType":3,
+ "germanText":"Das ist der Kampf, auf den ihr alle gewartet habt!\nJetzt geht's los!",
+ "germanFontType":3,
+ "spanishText":"¡Es la partida que habéis estado esperando! \nBueno, ¡empecemos!",
+ "spanishFontType":3,
+ "chineseTText":"矚目的對決,比賽終於要開始了!",
+ "chineseTFontType":1,
+ "koreanText":"주목되는 경기가\n드디어 시작됩니다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_loading_cm5",
+ "japaneseText":"さあーー間もなく2曲目が開始されます!",
+ "englishUsText":"All right! We’ll begin the second match in just a few moments!",
+ "englishUsFontType":3,
+ "frenchText":"Très bien ! Le deuxième match va bientôt commencer !",
+ "frenchFontType":3,
+ "italianText":"Bene! La seconda partita avrà inizio tra pochissimo!",
+ "italianFontType":3,
+ "germanText":"Okay! Die zweite Partie beginnt in ein paar Momenten!",
+ "germanFontType":3,
+ "spanishText":"¡Muy bien! ¡La segunda partida comenzará en unos instantes!",
+ "spanishFontType":3,
+ "chineseTText":"好了--那麼第二首曲子馬上就要開始了!",
+ "chineseTFontType":1,
+ "koreanText":"자~~ 이제 곧 두 번째 곡이 시작됩니다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_loading_cm6",
+ "japaneseText":"さあー続いて2曲目です!\nはりきっていってみましょーー",
+ "englishUsText":"And we’re continuing onto the second match! \nGive it your all!",
+ "englishUsFontType":3,
+ "frenchText":"Et poursuivons avec le deuxième match !\nÀ fond les manettes !",
+ "frenchFontType":3,
+ "italianText":"E la sfida prosegue con la seconda partita! \nDateci dentro!",
+ "italianFontType":3,
+ "germanText":"Und damit geht es mit der zweiten Partie weiter!\nGebt alles!",
+ "germanFontType":3,
+ "spanishText":"¡Y seguimos con la segunda partida! \n¡A darlo todo!",
+ "spanishFontType":3,
+ "chineseTText":"好了--接下來是第二首曲子!請加把勁吧--",
+ "chineseTFontType":1,
+ "koreanText":"자~ 이어서 두 번째 곡입니다!\n기운차게 갑시다~",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_loading_cm7",
+ "japaneseText":"いよいよ2曲目の開始です!\n勝つのはどっちだ!",
+ "englishUsText":"And now it’s time for the 2nd match to start! \nWho will win?",
+ "englishUsFontType":3,
+ "frenchText":"À présent, le 2e match va commencer ! \nMais qui va gagner ?",
+ "frenchFontType":3,
+ "italianText":"È ora di dare il via alla seconda partita! \nChi vincerà?",
+ "italianFontType":3,
+ "germanText":"Und schon ist es Zeit für die zweite Partie!\nWer wird wohl gewinnen?",
+ "germanFontType":3,
+ "spanishText":"¡Es el momento de comenzar la 2.ª partida! \n¿Quién ganará?",
+ "spanishFontType":3,
+ "chineseTText":"第二首子終於要開始了!究竟會鹿死誰手呢!",
+ "chineseTFontType":1,
+ "koreanText":"드디어 두 번째 곡이 시작됩니다!\n누가 이길 것인가!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_loading_cm8",
+ "japaneseText":"続いて2曲目の開始です!\n両選手とも最後まで、がんばってほしい!",
+ "englishUsText":"And now it’s time for the 2nd match to start! \nI’m hoping both players will fight to the end!",
+ "englishUsFontType":3,
+ "frenchText":"À présent, le 2e match va commencer ! \nJ'espère que les deux joueurs vont livrer une bataille acharnée !",
+ "frenchFontType":3,
+ "italianText":"Sta per avere inizio la seconda partita! \nSperiamo che la lotta sia serrata!",
+ "italianFontType":3,
+ "germanText":"Und schon ist es Zeit für die zweite Partie!\nIch hoffe, beide Spieler geben bis zuletzt ihr Bestes!",
+ "germanFontType":3,
+ "spanishText":"¡Es el momento de comenzar la 2.ª partida! \n¡Espero que ambos jugadores luchen hasta el final!",
+ "spanishFontType":3,
+ "chineseTText":"接著要開始第二首曲子了!希望兩位選手都能努力到最後!",
+ "chineseTFontType":1,
+ "koreanText":"이어서 두 번째 곡이 시작됩니다!\n두 선수 다 마지막까지 힘내세요!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_loading_cm9",
+ "japaneseText":"いよいよ決勝戦の幕が開きます!\nまずは1曲目、いってみましょ~",
+ "englishUsText":"And now to raise the curtain on this decisive battle! \nIt's time for the first song, let's get to it!",
+ "englishUsFontType":3,
+ "frenchText":"À présent, levons le rideau sur ce combat décisif !\nC'est l'heure de la première chanson, allons-y !",
+ "frenchFontType":3,
+ "italianText":"Passiamo finalmente alla battaglia decisiva! \nCominciamo con la prima canzone. Forza!",
+ "italianFontType":3,
+ "germanText":"Und jetzt Vorhang auf für den entscheidenden Kampf!\nZeit für den ersten Song, also legen wir los!",
+ "germanFontType":3,
+ "spanishText":"¡Levantemos el telón y demos paso a esta batalla decisiva!\n¡A por la primera canción!",
+ "spanishFontType":3,
+ "chineseTText":"冠軍賽終於揭開序幕了!\n首先是第1首樂曲,那麼開始吧~",
+ "chineseTFontType":1,
+ "koreanText":"드디어 결승전의 막이 열립니다!\n우선은 첫 곡, 시작해봅시다~",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_loading_cm10",
+ "japaneseText":"お待たせしました!決勝戦の開始です!\nまずは1曲目、はりきっていってみましょーー",
+ "englishUsText":"Sorry to keep you waiting! The main event is about to start!\nWe're all pumped up for the first song!\n",
+ "englishUsFontType":3,
+ "frenchText":"Désolé pour l'attente ! L'événement principal est sur le point de commencer !\nOn est tous gonflés à bloc pour la première chanson !\n",
+ "frenchFontType":3,
+ "italianText":"Siamo spiacenti per l'attesa! L'evento sta per iniziare!\nNon vediamo l'ora di partire con la prima canzone!\n",
+ "italianFontType":3,
+ "germanText":"Entschuldige, dass du warten musstest! Das Hauptevent beginnt gleich!\nWir sind alle schon gespannt auf den ersten Song!\n",
+ "germanFontType":3,
+ "spanishText":"Sentimos haberte hecho esperar, ¡el evento va a dar comienzo!\n¡Nos morimos de ganas de escuchar la primera canción!\n",
+ "spanishFontType":3,
+ "chineseTText":"讓大家久等了!冠軍賽正式開始!\n首先是第1首樂曲,請各位全力以赴吧--",
+ "chineseTFontType":1,
+ "koreanText":"오래 기다리셨습니다! 결승전이 시작됩니다!\n우선은 첫 곡, 기운차게 갑시다~",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_loading_cm11",
+ "japaneseText":"とうとうきました!\n決勝戦1曲目の開始です!",
+ "englishUsText":"And we're finally here!\nThe first song of this exhilrating match!",
+ "englishUsFontType":3,
+ "frenchText":"On y est enfin !\nLa première chanson d'un match qui s'annonce passionnant !",
+ "frenchFontType":3,
+ "italianText":"Finalmente ci siamo!\nLa prima canzone di questa emozionante partita!",
+ "italianFontType":3,
+ "germanText":"Es ist endlich soweit!\nDer erste Song dieser aufregenden Partie!",
+ "germanFontType":3,
+ "spanishText":"¡El momento ha llegado!\n¡Es el turno de la primera canción de esta emocionante batalla!",
+ "spanishFontType":3,
+ "chineseTText":"終於來了!\n開始冠軍戰第1首歌曲!",
+ "chineseTFontType":1,
+ "koreanText":"드디어 때가 왔군요!\n결승전 첫 번째 곡, 시작합니다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_loading_cm12",
+ "japaneseText":"いよいよ決勝戦が始まります!\nまずは1曲目、いってみましょ~",
+ "englishUsText":"Now then, the decisive battle begins!\nIt's time for the first song, let's get to it!",
+ "englishUsFontType":3,
+ "frenchText":"À présent, le combat décisif commence !\nC'est l'heure de la première chanson, allons-y !",
+ "frenchFontType":3,
+ "italianText":"E ora, la battaglia decisiva!\nVia con la prima canzone! Forza!",
+ "italianFontType":3,
+ "germanText":"Nun denn, der entscheidende Kampf beginnt!\nZeit für den ersten Song, also legen wir los!",
+ "germanFontType":3,
+ "spanishText":"¡Que comience la batalla!\n¡A por la primera canción!",
+ "spanishFontType":3,
+ "chineseTText":"終於冠軍賽要開始了!\n首先是第1首樂曲,那麼開始吧~",
+ "chineseTFontType":1,
+ "koreanText":"드디어 결승전이 시작됩니다!\n우선은 첫 곡, 시작해봅시다~",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_loading_cm13",
+ "japaneseText":"さあーー泣いても笑ってもラストです!\n最後に勝つのはどっちだ!",
+ "englishUsText":"Now then, we've laughed, we've cried, we've made it to the last match!\nWho's gonna win in the end?",
+ "englishUsFontType":3,
+ "frenchText":"Il y a eu des rires et des pleurs... Et nous voici maintenant au dernier match !\nQui l'emportera à la fin ?",
+ "frenchFontType":3,
+ "italianText":"Abbiamo riso, abbiamo pianto e siamo arrivati all'ultima partita!\nChi vincerà?",
+ "italianFontType":3,
+ "germanText":"Nun denn, wir haben gelacht, wir haben geweint, wir stehen nun vor dem letzten Kampf!\nWer wird schlussendlich gewinnen?",
+ "germanFontType":3,
+ "spanishText":"Hemos reído, hemos llorado, pero ¡al fin estamos en la última partida!\n¿Quién se llevará la victoria?",
+ "spanishFontType":3,
+ "chineseTText":"好了--是哭是笑全看這一仗了!\n冠軍是誰呢!",
+ "chineseTFontType":1,
+ "koreanText":"울게 되든 웃게 되든 이제 마지막입니다\n마지막에 이기는 것은 누구인가!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_loading_cm14",
+ "japaneseText":"これが本当のラストマッチ!\n最後まで見逃すな!",
+ "englishUsText":"This is the real deal, the last match! \nGotta see it through to the very end!",
+ "englishUsFontType":3,
+ "frenchText":"C'est du sérieux à présent, voici le dernier match !\nIl faut aller jusqu'au bout !",
+ "frenchFontType":3,
+ "italianText":"Ci siamo, è l'ultima partita! \nVoglio proprio vedere chi vincerà!",
+ "italianFontType":3,
+ "germanText":"Jetzt geht's ums Ganze: die letzte Partie!\nWir bleiben bis zum Ende dran!",
+ "germanFontType":3,
+ "spanishText":"La cosa se pone seria, ¡estamos en la última partida!\n¡Hay que darlo todo hasta el final!",
+ "spanishFontType":3,
+ "chineseTText":"這是真正的最後對決!\n直到最後一刻都不能錯過!",
+ "chineseTFontType":1,
+ "koreanText":"이제 정말 마지막 경기!\n마지막까지 놓치지 마세요!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_loading_cm15",
+ "japaneseText":"これが最後の試合だ!\nトーナメントの王者はどっちだ!",
+ "englishUsText":"Now begins the final match!\nWho will be our Tournament Champion?",
+ "englishUsFontType":3,
+ "frenchText":"Que le dernier match commence !\nQui sera notre champion du tournoi ?",
+ "frenchFontType":3,
+ "italianText":"Inizia finalmente l'ultima partita!\nChi vincerà il torneo?",
+ "italianFontType":3,
+ "germanText":"Jetzt beginnt die letzte Partie!\nWer wird unser Turniersieger?",
+ "germanFontType":3,
+ "spanishText":"¡Que dé comienzo la partida final!\n¿Quién será el campeón del torneo?",
+ "spanishFontType":3,
+ "chineseTText":"這是最後的比賽了!\n錦標賽的王者到底會是誰呢!",
+ "chineseTFontType":1,
+ "koreanText":"이것으로 마지막 경기!\n토너먼트의 왕은 누가 될 것인가!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_loading_cm16",
+ "japaneseText":"いよいよラストマッチ!\n栄冠を勝ち取るのはどっちだ!",
+ "englishUsText":"And now the last match! \nWhich one will be crowned the victor?",
+ "englishUsFontType":3,
+ "frenchText":"Maintenant, le dernier match !\nQui sera couronné de succès ?",
+ "frenchFontType":3,
+ "italianText":"Sotto con l'ultima partita! \nChi verrà incoronato vincitore del torneo?",
+ "italianFontType":3,
+ "germanText":"Und jetzt die letzte Partie!\nWer wird heute zum Sieger gekrönt?",
+ "germanFontType":3,
+ "spanishText":"¡La partida final!\n¿A quién coronaremos ganador?",
+ "spanishFontType":3,
+ "chineseTText":"終於來到了最後的對決!\n誰會贏得光榮的勝利呢!",
+ "chineseTFontType":1,
+ "koreanText":"드디어 마지막 경기!\n어느 쪽이 영광을 차지할 것인가!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_com_name1",
+ "japaneseText":"ワルドン",
+ "englishUsText":"Evil Don",
+ "englishUsFontType":3,
+ "frenchText":"Méchant Don",
+ "frenchFontType":3,
+ "italianText":"Don malvagio",
+ "italianFontType":3,
+ "germanText":"Böser Don",
+ "germanFontType":3,
+ "spanishText":"DON malvado",
+ "spanishFontType":3,
+ "chineseTText":"Evil Don",
+ "chineseTFontType":1,
+ "koreanText":"Evil Don",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_com_name2",
+ "japaneseText":"ドコン",
+ "englishUsText":"Dokon",
+ "englishUsFontType":3,
+ "frenchText":"Dokon",
+ "frenchFontType":3,
+ "italianText":"Dokon",
+ "italianFontType":3,
+ "germanText":"Dokon",
+ "germanFontType":3,
+ "spanishText":"Dokon",
+ "spanishFontType":3,
+ "chineseTText":"Dokon",
+ "chineseTFontType":1,
+ "koreanText":"Dokon",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_com_name3",
+ "japaneseText":"ワルルー",
+ "englishUsText":"Evil Lou",
+ "englishUsFontType":3,
+ "frenchText":"Méchant Lou",
+ "frenchFontType":3,
+ "italianText":"Lou malvagio",
+ "italianFontType":3,
+ "germanText":"Böser Lou",
+ "germanFontType":3,
+ "spanishText":"Lou malvado",
+ "spanishFontType":3,
+ "chineseTText":"Evil Lou",
+ "chineseTFontType":1,
+ "koreanText":"Evil Lou",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_com_name4",
+ "japaneseText":"マオウ",
+ "englishUsText":"Maoh",
+ "englishUsFontType":3,
+ "frenchText":"Maoh",
+ "frenchFontType":3,
+ "italianText":"Maoh",
+ "italianFontType":3,
+ "germanText":"Maoh",
+ "germanFontType":3,
+ "spanishText":"Maoh",
+ "spanishFontType":3,
+ "chineseTText":"Maoh",
+ "chineseTFontType":1,
+ "koreanText":"Maoh",
+ "koreanFontType":2
+ },
+ {
+ "key":"tournament_com_name5",
+ "japaneseText":"ギガドーン",
+ "englishUsText":"Giga-Don",
+ "englishUsFontType":3,
+ "frenchText":"Giga-Don",
+ "frenchFontType":3,
+ "italianText":"Giga-Don",
+ "italianFontType":3,
+ "germanText":"Giga-Don",
+ "germanFontType":3,
+ "spanishText":"DON gigante",
+ "spanishFontType":3,
+ "chineseTText":"Giga-Don",
+ "chineseTFontType":1,
+ "koreanText":"Giga-Don",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_kgnhak",
+ "japaneseText":"白日",
+ "englishUsText":"HAKUJITSU",
+ "englishUsFontType":3,
+ "frenchText":"HAKUJITSU",
+ "frenchFontType":3,
+ "italianText":"HAKUJITSU",
+ "italianFontType":3,
+ "germanText":"HAKUJITSU",
+ "germanFontType":3,
+ "spanishText":"HAKUJITSU",
+ "spanishFontType":3,
+ "chineseTText":"白日",
+ "chineseTFontType":1,
+ "koreanText":"HAKUJITSU",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_kgnhak",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kgnhak",
+ "japaneseText":"",
+ "englishUsText":"白日",
+ "englishUsFontType":0,
+ "frenchText":"白日",
+ "frenchFontType":0,
+ "italianText":"白日",
+ "italianFontType":0,
+ "germanText":"白日",
+ "germanFontType":0,
+ "spanishText":"白日",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"白日",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_366day",
+ "japaneseText":"366日",
+ "englishUsText":"366NICHI",
+ "englishUsFontType":3,
+ "frenchText":"366NICHI",
+ "frenchFontType":3,
+ "italianText":"366NICHI",
+ "italianFontType":3,
+ "germanText":"366NICHI",
+ "germanFontType":3,
+ "spanishText":"366NICHI",
+ "spanishFontType":3,
+ "chineseTText":"366日",
+ "chineseTFontType":1,
+ "koreanText":"366NICHI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_366day",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_366day",
+ "japaneseText":"",
+ "englishUsText":"366日",
+ "englishUsFontType":0,
+ "frenchText":"366日",
+ "frenchFontType":0,
+ "italianText":"366日",
+ "italianFontType":0,
+ "germanText":"366日",
+ "germanFontType":0,
+ "spanishText":"366日",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"366日",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mikatu",
+ "japaneseText":"三日月",
+ "englishUsText":"MIKAZUKI",
+ "englishUsFontType":3,
+ "frenchText":"MIKAZUKI",
+ "frenchFontType":3,
+ "italianText":"MIKAZUKI",
+ "italianFontType":3,
+ "germanText":"MIKAZUKI",
+ "germanFontType":3,
+ "spanishText":"MIKAZUKI",
+ "spanishFontType":3,
+ "chineseTText":"三日月",
+ "chineseTFontType":1,
+ "koreanText":"MIKAZUKI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mikatu",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mikatu",
+ "japaneseText":"",
+ "englishUsText":"三日月",
+ "englishUsFontType":0,
+ "frenchText":"三日月",
+ "frenchFontType":0,
+ "italianText":"三日月",
+ "italianFontType":0,
+ "germanText":"三日月",
+ "germanFontType":0,
+ "spanishText":"三日月",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"三日月",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_thflnd",
+ "japaneseText":"最終鬼畜妹フランドール・S",
+ "englishUsText":"Saisyuu Kichiku Imouto Frandre・S",
+ "englishUsFontType":3,
+ "frenchText":"Saisyuu Kichiku Imouto Frandre・S",
+ "frenchFontType":3,
+ "italianText":"Saisyuu Kichiku Imouto Frandre・S",
+ "italianFontType":3,
+ "germanText":"Saisyuu Kichiku Imouto Frandre・S",
+ "germanFontType":3,
+ "spanishText":"Saisyuu Kichiku Imouto Frandre・S",
+ "spanishFontType":3,
+ "chineseTText":"最終鬼畜妹Frandre・S",
+ "chineseTFontType":1,
+ "koreanText":"사이슈키치쿠이모토 Flandre・S",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_thflnd",
+ "japaneseText":"東方Projectアレンジ ビートまりお ",
+ "englishUsText":"Touhou Project Arrange / beatMARIO",
+ "englishUsFontType":3,
+ "frenchText":"Touhou Project Arrange / beatMARIO",
+ "frenchFontType":3,
+ "italianText":"Touhou Project Arrange / beatMARIO",
+ "italianFontType":3,
+ "germanText":"Touhou Project Arrange / beatMARIO",
+ "germanFontType":3,
+ "spanishText":"Touhou Project Arrange / beatMARIO",
+ "spanishFontType":3,
+ "chineseTText":"東方Project Arrange / beatMARIO",
+ "chineseTFontType":1,
+ "koreanText":"Touhou Project Arrange / beatMARIO",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_thflnd",
+ "japaneseText":"",
+ "englishUsText":"最終鬼畜妹フランドール・S",
+ "englishUsFontType":0,
+ "frenchText":"最終鬼畜妹フランドール・S",
+ "frenchFontType":0,
+ "italianText":"最終鬼畜妹フランドール・S",
+ "italianFontType":0,
+ "germanText":"最終鬼畜妹フランドール・S",
+ "germanFontType":0,
+ "spanishText":"最終鬼畜妹フランドール・S",
+ "spanishFontType":0,
+ "chineseTText":"最終鬼畜妹フランドール・S",
+ "chineseTFontType":0,
+ "koreanText":"最終鬼畜妹フランドール・S",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_thnnak",
+ "japaneseText":"Ladystar Wandering",
+ "englishUsText":"Ladystar Wandering",
+ "englishUsFontType":3,
+ "frenchText":"Ladystar Wandering",
+ "frenchFontType":3,
+ "italianText":"Ladystar Wandering",
+ "italianFontType":3,
+ "germanText":"Ladystar Wandering",
+ "germanFontType":3,
+ "spanishText":"Ladystar Wandering",
+ "spanishFontType":3,
+ "chineseTText":"Ladystar Wandering",
+ "chineseTFontType":1,
+ "koreanText":"Ladystar Wandering",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_thnnak",
+ "japaneseText":"東方Project×NAMCO SOUNDS 中鶴潤一",
+ "englishUsText":"Touhou Project×NAMCO SOUNDS / Junichi Nakatsuru",
+ "englishUsFontType":3,
+ "frenchText":"Touhou Project×NAMCO SOUNDS / Junichi Nakatsuru",
+ "frenchFontType":3,
+ "italianText":"Touhou Project×NAMCO SOUNDS / Junichi Nakatsuru",
+ "italianFontType":3,
+ "germanText":"Touhou Project×NAMCO SOUNDS / Junichi Nakatsuru",
+ "germanFontType":3,
+ "spanishText":"Touhou Project×NAMCO SOUNDS / Junichi Nakatsuru",
+ "spanishFontType":3,
+ "chineseTText":"東方Project×NAMCO SOUNDS / 中鶴潤一",
+ "chineseTFontType":1,
+ "koreanText":"Touhou Project×NAMCO SOUNDS / Junichi Nakatsuru",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_thnnak",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_thnryo",
+ "japaneseText":"ライコタイコディスコ",
+ "englishUsText":"Raiko-Taiko-Disco",
+ "englishUsFontType":3,
+ "frenchText":"Raiko-Taiko-Disco",
+ "frenchFontType":3,
+ "italianText":"Raiko-Taiko-Disco",
+ "italianFontType":3,
+ "germanText":"Raiko-Taiko-Disco",
+ "germanFontType":3,
+ "spanishText":"Raiko-Taiko-Disco",
+ "spanishFontType":3,
+ "chineseTText":"Raiko-Taiko-Disco",
+ "chineseTFontType":1,
+ "koreanText":"Raiko-Taiko-Disco",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_thnryo",
+ "japaneseText":"東方Project×NAMCO SOUNDS 渡辺量",
+ "englishUsText":"Touhou Project×NAMCO SOUNDS / Ryo Watanabe",
+ "englishUsFontType":3,
+ "frenchText":"Touhou Project×NAMCO SOUNDS / Ryo Watanabe",
+ "frenchFontType":3,
+ "italianText":"Touhou Project×NAMCO SOUNDS / Ryo Watanabe",
+ "italianFontType":3,
+ "germanText":"Touhou Project×NAMCO SOUNDS / Ryo Watanabe",
+ "germanFontType":3,
+ "spanishText":"Touhou Project×NAMCO SOUNDS / Ryo Watanabe",
+ "spanishFontType":3,
+ "chineseTText":"東方Project×NAMCO SOUNDS / 渡邊量",
+ "chineseTFontType":1,
+ "koreanText":"Touhou Project×NAMCO SOUNDS / Ryo Watanabe",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_thnryo",
+ "japaneseText":"",
+ "englishUsText":"ライコタイコディスコ",
+ "englishUsFontType":0,
+ "frenchText":"ライコタイコディスコ",
+ "frenchFontType":0,
+ "italianText":"ライコタイコディスコ",
+ "italianFontType":0,
+ "germanText":"ライコタイコディスコ",
+ "germanFontType":0,
+ "spanishText":"ライコタイコディスコ",
+ "spanishFontType":0,
+ "chineseTText":"ライコタイコディスコ",
+ "chineseTFontType":0,
+ "koreanText":"ライコタイコディスコ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mi5ufo",
+ "japaneseText":"迷子のUFO",
+ "englishUsText":"MAIGO NO U.F.O.",
+ "englishUsFontType":3,
+ "frenchText":"MAIGO NO U.F.O.",
+ "frenchFontType":3,
+ "italianText":"MAIGO NO U.F.O.",
+ "italianFontType":3,
+ "germanText":"MAIGO NO U.F.O.",
+ "germanFontType":3,
+ "spanishText":"MAIGO NO U.F.O.",
+ "spanishFontType":3,
+ "chineseTText":"MAIGO NO U.F.O.",
+ "chineseTFontType":1,
+ "koreanText":"마이고노 U.F.O.",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mi5ufo",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mi5ufo",
+ "japaneseText":"",
+ "englishUsText":"迷子のUFO",
+ "englishUsFontType":0,
+ "frenchText":"迷子のUFO",
+ "frenchFontType":0,
+ "italianText":"迷子のUFO",
+ "italianFontType":0,
+ "germanText":"迷子のUFO",
+ "germanFontType":0,
+ "spanishText":"迷子のUFO",
+ "spanishFontType":0,
+ "chineseTText":"迷子のUFO",
+ "chineseTFontType":0,
+ "koreanText":"迷子のUFO",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_popspack04",
+ "japaneseText":"「ポップスパックVol.4」配信中",
+ "englishUsText":"Pops Pack Vol. 4 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「流行音樂Pack Vol.4」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「팝 Pack Vol.4」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_tohopack03",
+ "japaneseText":"「東方ProjectアレンジパックVol.3」配信中",
+ "englishUsText":"Touhou Project Arrangements Pack Vol.3 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「東方Project Arrangements Pack Vol.3」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「Touhou Project Arrangements Pack Vol.3」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_123",
+ "japaneseText":"夏休みだー!",
+ "englishUsText":"It's summer vacation!",
+ "englishUsFontType":3,
+ "frenchText":"C'est les vacances d'été !",
+ "frenchFontType":3,
+ "italianText":"Sono arrivate le vacanze estive!",
+ "italianFontType":3,
+ "germanText":"Endlich Sommerferien!",
+ "germanFontType":3,
+ "spanishText":"¡Vacaciones de verano!",
+ "spanishFontType":3,
+ "chineseTText":"放暑假了~!",
+ "chineseTFontType":1,
+ "koreanText":"여름방학이다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_124",
+ "japaneseText":"夏を楽しむドン!",
+ "englishUsText":"Enjoy the summer!",
+ "englishUsFontType":3,
+ "frenchText":"Profitez de l'été !",
+ "frenchFontType":3,
+ "italianText":"Viva l'estate!",
+ "italianFontType":3,
+ "germanText":"Genieß den Sommer!",
+ "germanFontType":3,
+ "spanishText":"¡Disfruta del verano!",
+ "spanishFontType":3,
+ "chineseTText":"享受夏天咚!",
+ "chineseTFontType":1,
+ "koreanText":"여름을 즐기자쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_125",
+ "japaneseText":"さっきのミスは蚊のせい",
+ "englishUsText":"I only lost because a bug bit me!",
+ "englishUsFontType":3,
+ "frenchText":"J'ai perdu parce que je me suis fait piquer par un insecte !",
+ "frenchFontType":3,
+ "italianText":"Ho perso solo perché mi ha morso un insetto!",
+ "italianFontType":3,
+ "germanText":"Ich hab nur verloren, weil mich ein Käfer gezwickt hat!",
+ "germanFontType":3,
+ "spanishText":"¡He perdido únicamente porque un bicho me ha picado!",
+ "spanishFontType":3,
+ "chineseTText":"剛剛的失誤是蚊子害的",
+ "chineseTFontType":1,
+ "koreanText":"방금 실수는 모기 탓이야",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_kykamb",
+ "japaneseText":"アンビバレント",
+ "englishUsText":"AMBIVALENT",
+ "englishUsFontType":3,
+ "frenchText":"AMBIVALENT",
+ "frenchFontType":3,
+ "italianText":"AMBIVALENT",
+ "italianFontType":3,
+ "germanText":"AMBIVALENT",
+ "germanFontType":3,
+ "spanishText":"AMBIVALENT",
+ "spanishFontType":3,
+ "chineseTText":"AMBIVALENT",
+ "chineseTFontType":1,
+ "koreanText":"AMBIVALENT",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_kykamb",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kykamb",
+ "japaneseText":"",
+ "englishUsText":"アンビバレント",
+ "englishUsFontType":0,
+ "frenchText":"アンビバレント",
+ "frenchFontType":0,
+ "italianText":"アンビバレント",
+ "italianFontType":0,
+ "germanText":"アンビバレント",
+ "germanFontType":0,
+ "spanishText":"アンビバレント",
+ "spanishFontType":0,
+ "chineseTText":"アンビバレント",
+ "chineseTFontType":0,
+ "koreanText":"アンビバレント",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_lgmsek",
+ "japaneseText":"世界はあなたに笑いかけている",
+ "englishUsText":"Sekai Wa Anata Ni Waraikakete Iru",
+ "englishUsFontType":3,
+ "frenchText":"Sekai Wa Anata Ni Waraikakete Iru",
+ "frenchFontType":3,
+ "italianText":"Sekai Wa Anata Ni Waraikakete Iru",
+ "italianFontType":3,
+ "germanText":"Sekai Wa Anata Ni Waraikakete Iru",
+ "germanFontType":3,
+ "spanishText":"Sekai Wa Anata Ni Waraikakete Iru",
+ "spanishFontType":3,
+ "chineseTText":"Sekai Wa Anata Ni Waraikakete Iru",
+ "chineseTFontType":1,
+ "koreanText":"Sekai Wa Anata Ni Waraikakete Iru",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_lgmsek",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_lgmsek",
+ "japaneseText":"",
+ "englishUsText":"世界はあなたに笑いかけている",
+ "englishUsFontType":0,
+ "frenchText":"世界はあなたに笑いかけている",
+ "frenchFontType":0,
+ "italianText":"世界はあなたに笑いかけている",
+ "italianFontType":0,
+ "germanText":"世界はあなたに笑いかけている",
+ "germanFontType":0,
+ "spanishText":"世界はあなたに笑いかけている",
+ "spanishFontType":0,
+ "chineseTText":"世界はあなたに笑いかけている",
+ "chineseTFontType":0,
+ "koreanText":"世界はあなたに笑いかけている",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_gldnkm",
+ "japaneseText":"Winding Road",
+ "englishUsText":"Winding Road",
+ "englishUsFontType":3,
+ "frenchText":"Winding Road",
+ "frenchFontType":3,
+ "italianText":"Winding Road",
+ "italianFontType":3,
+ "germanText":"Winding Road",
+ "germanFontType":3,
+ "spanishText":"Winding Road",
+ "spanishFontType":3,
+ "chineseTText":"Winding Road",
+ "chineseTFontType":1,
+ "koreanText":"Winding Road",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_gldnkm",
+ "japaneseText":"「ゴールデンカムイ」より",
+ "englishUsText":"From “GOLDEN KAMUY”",
+ "englishUsFontType":3,
+ "frenchText":"tiré de “GOLDEN KAMUY”",
+ "frenchFontType":3,
+ "italianText":"Da “GOLDEN KAMUY”",
+ "italianFontType":3,
+ "germanText":"Aus “GOLDEN KAMUY”",
+ "germanFontType":3,
+ "spanishText":"De “GOLDEN KAMUY”",
+ "spanishFontType":3,
+ "chineseTText":"來自「黃金神威」",
+ "chineseTFontType":1,
+ "koreanText":"\"골든 카무이\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_gldnkm",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kokiku",
+ "japaneseText":"こ・き・く・くる・くる・くれ・こ!",
+ "englishUsText":"Ko Ki Ku Kuru Kuru Kure Ko!",
+ "englishUsFontType":3,
+ "frenchText":"Ko Ki Ku Kuru Kuru Kure Ko!",
+ "frenchFontType":3,
+ "italianText":"Ko Ki Ku Kuru Kuru Kure Ko!",
+ "italianFontType":3,
+ "germanText":"Ko Ki Ku Kuru Kuru Kure Ko!",
+ "germanFontType":3,
+ "spanishText":"Ko Ki Ku Kuru Kuru Kure Ko!",
+ "spanishFontType":3,
+ "chineseTText":"Ko Ki Ku Kuru Kuru Kure Ko!",
+ "chineseTFontType":1,
+ "koreanText":"Ko Ki Ku Kuru Kuru Kure Ko!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_kokiku",
+ "japaneseText":"諸星なな・加藤はるか",
+ "englishUsText":"Moroboshi Nana / Kato Haruka",
+ "englishUsFontType":3,
+ "frenchText":"Moroboshi Nana / Kato Haruka",
+ "frenchFontType":3,
+ "italianText":"Moroboshi Nana / Kato Haruka",
+ "italianFontType":3,
+ "germanText":"Moroboshi Nana / Kato Haruka",
+ "germanFontType":3,
+ "spanishText":"Moroboshi Nana / Kato Haruka",
+ "spanishFontType":3,
+ "chineseTText":"Moroboshi Nana / Kato Haruka",
+ "chineseTFontType":1,
+ "koreanText":"Moroboshi Nana / Kato Haruka",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kokiku",
+ "japaneseText":"",
+ "englishUsText":"こ・き・く・くる・くる・くれ・こ!",
+ "englishUsFontType":0,
+ "frenchText":"こ・き・く・くる・くる・くれ・こ!",
+ "frenchFontType":0,
+ "italianText":"こ・き・く・くる・くる・くれ・こ!",
+ "italianFontType":0,
+ "germanText":"こ・き・く・くる・くる・くれ・こ!",
+ "germanFontType":0,
+ "spanishText":"こ・き・く・くる・くる・くれ・こ!",
+ "spanishFontType":0,
+ "chineseTText":"こ・き・く・くる・くる・くれ・こ!",
+ "chineseTFontType":0,
+ "koreanText":"こ・き・く・くる・くる・くれ・こ!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sweep1",
+ "japaneseText":"Rotter Tarmination",
+ "englishUsText":"Rotter Tarmination",
+ "englishUsFontType":3,
+ "frenchText":"Rotter Tarmination",
+ "frenchFontType":3,
+ "italianText":"Rotter Tarmination",
+ "italianFontType":3,
+ "germanText":"Rotter Tarmination",
+ "germanFontType":3,
+ "spanishText":"Rotter Tarmination",
+ "spanishFontType":3,
+ "chineseTText":"Rotter Tarmination",
+ "chineseTFontType":1,
+ "koreanText":"Rotter Tarmination",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_sweep1",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_sweep1",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ujopop",
+ "japaneseText":"友情ぽっぷ",
+ "englishUsText":"YUUJOU POP",
+ "englishUsFontType":3,
+ "frenchText":"YUUJOU POP",
+ "frenchFontType":3,
+ "italianText":"YUUJOU POP",
+ "italianFontType":3,
+ "germanText":"YUUJOU POP",
+ "germanFontType":3,
+ "spanishText":"YUUJOU POP",
+ "spanishFontType":3,
+ "chineseTText":"友情POP",
+ "chineseTFontType":1,
+ "koreanText":"YUUJOU POP",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ujopop",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ujopop",
+ "japaneseText":"",
+ "englishUsText":"友情ぽっぷ",
+ "englishUsFontType":0,
+ "frenchText":"友情ぽっぷ",
+ "frenchFontType":0,
+ "italianText":"友情ぽっぷ",
+ "italianFontType":0,
+ "germanText":"友情ぽっぷ",
+ "germanFontType":0,
+ "spanishText":"友情ぽっぷ",
+ "spanishFontType":0,
+ "chineseTText":"友情ぽっぷ",
+ "chineseTFontType":0,
+ "koreanText":"友情ぽっぷ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_stmic6",
+ "japaneseText":"わすれなぐさ",
+ "englishUsText":"Myosotis",
+ "englishUsFontType":3,
+ "frenchText":"Myosotis",
+ "frenchFontType":3,
+ "italianText":"Myosotis",
+ "italianFontType":3,
+ "germanText":"Myosotis",
+ "germanFontType":3,
+ "spanishText":"Myosotis",
+ "spanishFontType":3,
+ "chineseTText":"勿忘草",
+ "chineseTFontType":1,
+ "koreanText":"물망초",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_stmic6",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_stmic6",
+ "japaneseText":"",
+ "englishUsText":"わすれなぐさ",
+ "englishUsFontType":0,
+ "frenchText":"わすれなぐさ",
+ "frenchFontType":0,
+ "italianText":"わすれなぐさ",
+ "italianFontType":0,
+ "germanText":"わすれなぐさ",
+ "germanFontType":0,
+ "spanishText":"わすれなぐさ",
+ "spanishFontType":0,
+ "chineseTText":"わすれなぐさ",
+ "chineseTFontType":0,
+ "koreanText":"わすれなぐさ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_drwdrm",
+ "japaneseText":"ドローイン☆ドリーム!",
+ "englishUsText":"Drawing☆Dream!",
+ "englishUsFontType":3,
+ "frenchText":"Drawing☆Dream!",
+ "frenchFontType":3,
+ "italianText":"Drawing☆Dream!",
+ "italianFontType":3,
+ "germanText":"Drawing☆Dream!",
+ "germanFontType":3,
+ "spanishText":"Drawing☆Dream!",
+ "spanishFontType":3,
+ "chineseTText":"Drawing☆Dream!",
+ "chineseTFontType":1,
+ "koreanText":"Drawing☆Dream!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_drwdrm",
+ "japaneseText":"Versus feat.白黒黒白(NoWorld)",
+ "englishUsText":"Versus feat. Shirakura Ayame (NoWorld)",
+ "englishUsFontType":3,
+ "frenchText":"Versus feat. Shirakura Ayame (NoWorld)",
+ "frenchFontType":3,
+ "italianText":"Versus feat. Shirakura Ayame (NoWorld)",
+ "italianFontType":3,
+ "germanText":"Versus feat. Shirakura Ayame (NoWorld)",
+ "germanFontType":3,
+ "spanishText":"Versus feat. Shirakura Ayame (NoWorld)",
+ "spanishFontType":3,
+ "chineseTText":"Versus feat. 白黑黑白(NoWorld)",
+ "chineseTFontType":1,
+ "koreanText":"Versus feat. Shirakura Ayame (NoWorld)",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_drwdrm",
+ "japaneseText":"",
+ "englishUsText":"ドローイン☆ドリーム!",
+ "englishUsFontType":0,
+ "frenchText":"ドローイン☆ドリーム!",
+ "frenchFontType":0,
+ "italianText":"ドローイン☆ドリーム!",
+ "italianFontType":0,
+ "germanText":"ドローイン☆ドリーム!",
+ "germanFontType":0,
+ "spanishText":"ドローイン☆ドリーム!",
+ "spanishFontType":0,
+ "chineseTText":"ドローイン☆ドリーム!",
+ "chineseTFontType":0,
+ "koreanText":"ドローイン☆ドリーム!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_cs4op",
+ "japaneseText":"おはよう!太鼓サマー",
+ "englishUsText":"OHAYO! TAIKO SUMMER",
+ "englishUsFontType":3,
+ "frenchText":"OHAYO! TAIKO SUMMER",
+ "frenchFontType":3,
+ "italianText":"OHAYO! TAIKO SUMMER",
+ "italianFontType":3,
+ "germanText":"OHAYO! TAIKO SUMMER",
+ "germanFontType":3,
+ "spanishText":"OHAYO! TAIKO SUMMER",
+ "spanishFontType":3,
+ "chineseTText":"早安!太鼓夏日",
+ "chineseTFontType":1,
+ "koreanText":"안녕! 태고 서머",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_cs4op",
+ "japaneseText":"「太鼓の達人 あつまれ!祭りだ!!四代目」テーマソング",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_cs4op",
+ "japaneseText":"",
+ "englishUsText":"おはよう!太鼓サマー",
+ "englishUsFontType":0,
+ "frenchText":"おはよう!太鼓サマー",
+ "frenchFontType":0,
+ "italianText":"おはよう!太鼓サマー",
+ "italianFontType":0,
+ "germanText":"おはよう!太鼓サマー",
+ "germanFontType":0,
+ "spanishText":"おはよう!太鼓サマー",
+ "spanishFontType":0,
+ "chineseTText":"おはよう!太鼓サマー",
+ "chineseTFontType":0,
+ "koreanText":"おはよう!太鼓サマー",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_popspack05",
+ "japaneseText":"「ポップスパックVol.5」配信中",
+ "englishUsText":"Pops Pack Vol. 5 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「流行音樂Pack Vol.5」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「팝 Pack Vol.5」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_donder05",
+ "japaneseText":"「ドンだーパック -ナツオリ-Vol.1」配信中",
+ "englishUsText":"Donder Pack -NatsuOri- Vol. 1 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「Donder Pack -懷舊原創曲- Vol.1」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「태고러 팩 -추억의 오리지널송- Vol.1」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips063",
+ "japaneseText":"演奏中に「-/+ボタン」を押したままにすると「リタイア」できるよ\nリタイアすると「負け」になるから気をつけてね!",
+ "englishUsText":"You can Retire from a match by holding the -/+ buttons.\nRetiring counts as a loss, so be careful!",
+ "englishUsFontType":3,
+ "frenchText":"Tu peux te retirer d'une partie avec les boutons -/+.\nAttention, ce sera considéré comme une défaite !",
+ "frenchFontType":3,
+ "italianText":"Puoi ritirarti premendo -/+.\nIl ritiro conta come una sconfitta, quindi occhio!",
+ "italianFontType":3,
+ "germanText":"Drücke -/+ während einer Partie, um aufzugeben.\nAchtung: Gibst du auf, zählt das als Niederlage!",
+ "germanFontType":3,
+ "spanishText":"Para retirarte de una partida, pulsa los botones -/+.\nRetirarse cuenta como derrota, ¡así que cuidado!",
+ "spanishFontType":3,
+ "chineseTText":"在演奏中按住「-/+按鍵」,就能「棄權」\n棄權就算「落敗」所以要注意喔!",
+ "chineseTFontType":1,
+ "koreanText":"연주 중에 「-/+ 버튼」을 길게 누르고 있으면 「포기」할 수 있어\n포기하면 「패배」가 되니까 조심해!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips064",
+ "japaneseText":"eスポーツトーナメントは「タッチ太鼓」でもあそべるよ!\nタッチ太鼓であそぶときは携帯モードにしてね!",
+ "englishUsText":"You can use the Touch Drum in E-Sports Tournament mode, too! \nMake sure you’re in Handheld mode to play this way!",
+ "englishUsFontType":3,
+ "frenchText":"Utilise aussi le tambour tactile en mode Tournoi E-Sports ! \nAssure-toi d'être en mode portable pour jouer de cette façon !",
+ "frenchFontType":3,
+ "italianText":"È possibile usare il tamburo touch anche nella modalità Torneo di eSport! \nAssicurati di aver attivato la modalità portatile!",
+ "italianFontType":3,
+ "germanText":"Bei eSports-Turnieren kannst du die Touch-Trommel auch verwenden!\nSpiele auf jeden Fall im Handheld-Modus, damit es funktioniert!",
+ "germanFontType":3,
+ "spanishText":"¡En el modo Torneo de E-Sports también puedes usar el tambor táctil! \n¡Asegúrate de estar en el modo portátil si quieres jugar así!",
+ "spanishFontType":3,
+ "chineseTText":"電競錦標賽也能用「觸控太鼓」進行遊玩!\n要用觸控太鼓遊玩時請切換為手提模式!",
+ "chineseTFontType":1,
+ "koreanText":"e스포츠 토너먼트는 「터치 북」으로도 플레이할 수 있어!\n터치 북은 휴대 모드일 때 플레이할 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips065",
+ "japaneseText":"eスポーツトーナメントの結果に応じて「ごほうびポイント」がもらえるよ!\n「ごほうびポイント」をためると「プレイヤーアイコン」などがもらえるよ!",
+ "englishUsText":"Earn Reward Points based on the result in E-Sports Tournament mode!\nSave up Reward Points to get new Player Icons and other rewards!",
+ "englishUsFontType":3,
+ "frenchText":"Gagne une Prime de points selon tes résultats en mode Tournoi E-Sports !\nAccumule-les pour rafler plus d'Icônes de joueur et d'autres récompenses !",
+ "frenchFontType":3,
+ "italianText":"Ottieni punti ricompensa con Torneo di eSport!\nSpendili per ottenere nuove icone giocatore e altre ricompense!",
+ "italianFontType":3,
+ "germanText":"Es gibt im eSports-Turnier Belohnungspunkte je nach Ergebnis!\nMit Belohnungspunkten kannst du neue Spielersymbole freischalten!",
+ "germanFontType":3,
+ "spanishText":"¡Gana puntos de recompensa según tu resultado en el modo Torneo de E-Sports!\n¡Ahorra puntos de recompensa para conseguir nuevos iconos y otras recompensas!",
+ "spanishFontType":3,
+ "chineseTText":"將依電競錦標賽的結果取得「獎勵點數」!\n累積「獎勵點數」就能取得「玩家圖示」等獎勵!",
+ "chineseTFontType":1,
+ "koreanText":"e스포츠 토너먼트의 결과에 따라 「보상 포인트」를 받을 수 있어!\n「보상 포인트」를 모으면 「플레이어 아이콘」 등을 받을 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips066",
+ "japaneseText":"2回戦と決勝戦は自分の得意な曲で勝負できるよ!\n「マイバトル曲」で設定しよう!",
+ "englishUsText":"The second match can include a special song you choose. \nSet this with the “My Battle Song” option.",
+ "englishUsFontType":3,
+ "frenchText":"Pour le 2e match, tu peux choisir une chanson spéciale.\nConfigure cette option dans \"Ma Chanson de combat\".",
+ "frenchFontType":3,
+ "italianText":"La seconda partita può includere una canzone speciale a tua scelta. \nImposta questa variabile tramite l'opzione \"La mia canzone da battaglia\".",
+ "italianFontType":3,
+ "germanText":"Die zweite Partie kann einen besonderen, von dir gewählten Song enthalten.\nLege diesen mit der Option \"Eigener Kampf-Song\" fest.",
+ "germanFontType":3,
+ "spanishText":"La segunda partida puede incluir una canción especial de tu elección. \nEstablécela con la opción \"Mi canción de batalla\".",
+ "spanishFontType":3,
+ "chineseTText":"在第2場比賽與冠軍戰裡能以自己擅長的樂曲一決勝負。\n請在「我的對戰曲」裡進行設定吧!",
+ "chineseTFontType":1,
+ "koreanText":"2회전과 결승전은 내가 자신 있는 곡으로 대결할 수 있어!\n「마이 배틀 곡」에서 설정하자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips067",
+ "japaneseText":"マイバトル曲は、2回戦の曲は「2」\n決勝戦の曲は「3」のマークがつくよ!",
+ "englishUsText":"\"My Battle Song\", the song for the second match, is marked with “2”.\nThe final song is marked with a “3”.",
+ "englishUsFontType":3,
+ "frenchText":"La chanson du 2e match, \"Ma Chanson de combat\", est indiquée par un \"2\".\nLa chanson finale est indiquée par un \"3\".",
+ "frenchFontType":3,
+ "italianText":"La tua \"La mia canzone da battaglia\", la canzone per la seconda partita, è indicata con \"2\".\nL'ultima canzone è indicata con \"3\".",
+ "italianFontType":3,
+ "germanText":"\"Eigener Kampf-Song\", der Song in der zweiten Partie, ist mit einer \"2\" markiert.\nDer letzte Song ist mit einer \"3\" markiert.",
+ "germanFontType":3,
+ "spanishText":"\"Mi canción de batalla\" para la segunda partida aparece con un \"2\".\nLa última canción aparece con un \"3\".",
+ "spanishFontType":3,
+ "chineseTText":"我的對戰曲用於第2戰的樂曲會標上「2」,\n冠軍戰的樂曲則會標上「3」的圖示!",
+ "chineseTFontType":1,
+ "koreanText":"마이 배틀 곡은, 2회전 곡에는 「2」,\n결승전 곡에는 「3」 마크가 붙어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips068",
+ "japaneseText":"決勝戦まで進むとメダルがもらえるよ!\n金メダル、銀メダルを集めて、みんなにじまんしちゃおう!",
+ "englishUsText":"Fight to the last and earn Medals! \nGather Gold and Silver Medals so you can brag to your friends!",
+ "englishUsFontType":3,
+ "frenchText":"Lutte jusqu'à la fin et remporte des médailles !\nVise l'or et l'argent pour revendiquer tes exploits auprès de tes amis !",
+ "frenchFontType":3,
+ "italianText":"Combatti fino all'ultimo per conquistare medaglie! \nOttieni medaglie d'oro o d'argento per vantarti con gli amici!",
+ "italianFontType":3,
+ "germanText":"Kämpfe bis zum Ende und erhalte Medaillen!\nSammle Gold- und Silbermedaillen und gib bei deinen Freunden an!",
+ "germanFontType":3,
+ "spanishText":"¡Lucha hasta el final y gana medallas! \n¡Consigue medallas de oro y de plata para presumir con tus amigos!",
+ "spanishFontType":3,
+ "chineseTText":"前進至冠軍戰就可獲得獎牌!\n收集金牌、銀牌,來向大家炫耀吧!",
+ "chineseTFontType":1,
+ "koreanText":"결승전에 진출하면 메달을 받을 수 있어!\n금메달, 은메달을 모아서 모두에게 자랑하자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips069",
+ "japaneseText":"スコアが同じになった場合は、良や可などの数が上回っている方が勝ちだよ!\nそれでも同じだったら引き分けで、どちらも負けになっちゃうよ!",
+ "englishUsText":"In the event of a tied score, the player with the most GOODs or OKs is the winner! \nIf it’s still a draw, both players lose!",
+ "englishUsFontType":3,
+ "frenchText":"En cas de match nul, le joueur ayant obtenu le plus de BONS et OK sera déclaré vainqueur !\nS'il y a toujours égalité, alors les deux joueurs perdront !",
+ "frenchFontType":3,
+ "italianText":"A parità di punti, vince il giocatore con più BUONO o OK! \nSe la parità permane, entrambi i giocatori perdono!",
+ "italianFontType":3,
+ "germanText":"Steht es bei den Punkten Unentschieden, gewinnt der Spieler mit den meisten GUTs und OKs!\nSteht es dann immer noch Unentschieden, verlieren beide Spieler!",
+ "germanFontType":3,
+ "spanishText":"En caso de empate, ¡gana el jugador con más BIENES o VALES! \nSi aun así no se desempata, ¡los dos jugadores perderán!",
+ "spanishFontType":3,
+ "chineseTText":"當分數相同的情況下,良或可等判定數較多的人獲勝!\n萬一這樣仍為平手,不管哪一方都算輸喔!",
+ "chineseTFontType":1,
+ "koreanText":"스코어가 같은 경우에는 얼쑤나 좋다의 수가 더 많은 쪽이 이겨!\n그마저도 똑같으면 무승부로, 둘 다 패배가 돼!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips070",
+ "japaneseText":"eスポーツトーナメント中にインターネットの接続が切れると「負け」になるよ",
+ "englishUsText":"If the internet connection is lost during an E-Sports Tournament, you'll lose that match!",
+ "englishUsFontType":3,
+ "frenchText":"Si la connexion à Internet est interrompue lors d'un tournoi E-Sports, ce sera la défaite pour toi !",
+ "frenchFontType":3,
+ "italianText":"Se ti disconnetti da Internet durante un Torneo di eSport, perderai quella partita!",
+ "italianFontType":3,
+ "germanText":"Bricht deine Internetverbindung während eines eSports-Turniers ab, verlierst du den Kampf!",
+ "germanFontType":3,
+ "spanishText":"Si pierdes la conexión a Internet durante un Torneo de E-Sports, ¡perderás la partida!",
+ "spanishFontType":3,
+ "chineseTText":"在電競錦標賽途中斷線就算「落敗」",
+ "chineseTFontType":1,
+ "koreanText":"e스포츠 토너먼트 중에 인터넷 접속이 끊기면 「패배」가 돼",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips071",
+ "japaneseText":"金メダルをとると「ごほうびポイント」がたくさんもらえるよ!",
+ "englishUsText":"Gather lots of Medals and earn lots of Reward Points!",
+ "englishUsFontType":3,
+ "frenchText":"Obtiens plein de médailles et remporte de nombreuses Primes de points !",
+ "frenchFontType":3,
+ "italianText":"Conquista molte medaglie e accumula punti ricompensa!",
+ "italianFontType":3,
+ "germanText":"Sammle tonnenweise Medaillen und erhalte viele Belohnungspunkte!",
+ "germanFontType":3,
+ "spanishText":"¡Consigue un montón de medallas y de puntos de recompensa!",
+ "spanishFontType":3,
+ "chineseTText":"取得金牌就能拿到許多「獎勵點數」!",
+ "chineseTFontType":1,
+ "koreanText":"금메달을 획득하면 「보상 포인트」를 많이 받을 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips072",
+ "japaneseText":"「プレイヤーアイコン」は演奏中などに表示されるよ!\n「ベース」と「フロント」を組み合わせて、自分だけの「プレイヤーアイコン」をつくろう!",
+ "englishUsText":"Player Icons will be displayed during Taiko mode.\nMix and match your Front and Base Icons to make your Player Icon more personal!",
+ "englishUsFontType":3,
+ "frenchText":"Les Icônes de joueur sont affichées en mode Taiko.\nMélange les icônes arrière et avant pour être encore plus unique !",
+ "frenchFontType":3,
+ "italianText":"Combina \"basi\" e \"frontali\" per rendere unica\nla tua icona giocatore nella modalità Taiko!",
+ "italianFontType":3,
+ "germanText":"Spielersymbole werden in den Taiko-Modi angezeigt.\nMische dein Vorder- und Hauptsymbol, um dein Spielersymbol noch persönlicher zu gestalten!",
+ "germanFontType":3,
+ "spanishText":"El icono de jugador se muestra durante el modo Taiko.\n¡Combina los iconos frontales con los básicos para personalizarlo!",
+ "spanishFontType":3,
+ "chineseTText":"「玩家圖示」會顯示於演奏中等處!\n組合「背景」與「前景」,打造出專屬自己的「玩家圖示」吧!",
+ "chineseTFontType":1,
+ "koreanText":"「플레이어 아이콘」은 연주 중 등에 표시돼!\n「베이스」와 「프론트」를 조합해서 나만의 「플레이어 아이콘」을 만들자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips073",
+ "japaneseText":"マイバトル曲はダウンロードコンテンツの曲からも選べるよ!\n※一部、選べないダウンロード曲もあります",
+ "englishUsText":"You can choose your My Battle Song from downloaded songs too! \nPlease note that some DLC songs cannot be chosen.",
+ "englishUsFontType":3,
+ "frenchText":"Tu peux choisir la chanson de \"Ma Chanson de combat\" à partir des chansons téléchargées !\nRemarque : certaines chansons DLC ne seront pas sélectionnables.",
+ "frenchFontType":3,
+ "italianText":"Puoi scegliere la tua canzone da battaglia anche tra le canzoni scaricate! \n(Alcune canzoni dai DLC sono escluse).",
+ "italianFontType":3,
+ "germanText":"Du kannst deinen \"Eigenen Kampf-Song\" auch aus heruntergeladenen Songs auswählen!\nBitte beachte, dass du manche DLC Songs nicht auswählen kannst.",
+ "germanFontType":3,
+ "spanishText":"¡La canción de \"Mi canción de batalla\" puede ser una que hayas descargado! \nNo podrás elegir algunas de las canciones de contenido descargable.",
+ "spanishFontType":3,
+ "chineseTText":"也可從下載項目的樂曲中選擇我的對戰曲!\n※也存在著一部分無法選擇的下載樂曲",
+ "chineseTFontType":1,
+ "koreanText":"마이 배틀 곡은 다운로드 콘텐츠 곡 중에서도 고를 수 있어!\n※일부, 고를 수 없는 곡도 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"online_enso_title_new",
+ "japaneseText":"オンラインランクマッチ",
+ "englishUsText":"Online Ranking Match",
+ "englishUsFontType":3,
+ "frenchText":"Match classé en ligne",
+ "frenchFontType":3,
+ "italianText":"Partita classificata online",
+ "italianFontType":3,
+ "germanText":"Online-Ranglisten-Partie",
+ "germanFontType":3,
+ "spanishText":"Partida de clasificación en línea",
+ "spanishFontType":3,
+ "chineseTText":"線上排名戰",
+ "chineseTFontType":1,
+ "koreanText":"온라인 랭크 매치",
+ "koreanFontType":2
+ },
+ {
+ "key":"rankmatch_help_new_page1",
+ "japaneseText":"オンラインランクマッチに勝つと「ランクポイント」がもらえるよ!\n「ランクポイント」をためるとランクアップできるよ!",
+ "englishUsText":"Earn Rank Points by winning in Online Ranking Matches!\nGet a higher Rank the more you play!",
+ "englishUsFontType":3,
+ "frenchText":"Obtiens des Points de niveau en gagnant des Matchs classés en ligne !\nPlus tu joues, plus tu augmentes de niveau !",
+ "frenchFontType":3,
+ "italianText":"Ottieni punti rango vincendo in Partita classificata online!\nPiù giochi, più potrai salire di rango!",
+ "italianFontType":3,
+ "germanText":"Verdiene Rangpunkte, indem du Online-Ranglisten-Partien gewinnst!\nErreiche einen höheren Rang, je mehr du spielst!",
+ "germanFontType":3,
+ "spanishText":"¡Gana Partidas de clasificación en línea para obtener puntos de rango!\n¡Juega para mejorar tu rango!",
+ "spanishFontType":3,
+ "chineseTText":"在線上排名戰取勝後就能取得「獎勵點數」!\n累積「排名點數」就能升級!",
+ "chineseTFontType":1,
+ "koreanText":"온라인 랭크 매치에서 이기면 「랭크 포인트」를 받을 수 있어!\n「랭크 포인트」를 모으면 랭크업을 할 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rankmatch_help_new_page2",
+ "japaneseText":"オンラインランクマッチの結果に応じて「ごほうびポイント」がもらえるよ!\n「ごほうびポイント」をためると「プレイヤーアイコン」などがもらえるよ!",
+ "englishUsText":"Earn Reward Points based on the result in Online Ranking Matches!\nSave up Reward Points to get new Player Icons and other rewards!",
+ "englishUsFontType":3,
+ "frenchText":"Gagne une Prime de points selon les résultats de tes Matchs classés en ligne !\nAccumule-les pour rafler plus d'Icônes de joueur et d'autres récompenses !",
+ "frenchFontType":3,
+ "italianText":"Ottieni punti ricompensa con Partita classificata online!\nSpendili per ottenere nuove icone giocatore e altre ricompense!",
+ "italianFontType":3,
+ "germanText":"Es gibt in Online-Ranglisten-Partien Belohnungspunkte je nach Ergebnis!\nMit Belohnungspunkten kannst du neue Spielersymbole freischalten!",
+ "germanFontType":3,
+ "spanishText":"¡Gana puntos de recompensa según tu resultado en las Partidas de clasificación en línea!\n¡Ahorra puntos de recompensa para conseguir nuevos iconos y otras recompensas!",
+ "spanishFontType":3,
+ "chineseTText":"將依線上排名戰的結果取得「獎勵點數」!\n累積「獎勵點數」就能取得「玩家圖示」等獎勵!",
+ "chineseTFontType":1,
+ "koreanText":"온라인 랭크 매치의 결과에 따라 「보상 포인트」를 받을 수 있어!\n「보상 포인트」를 모으면 「플레이어 아이콘」 등을 받을 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rankmatch_help_new_page4",
+ "japaneseText":"オンラインランクマッチでは「週がわりバトル曲」から曲が選ばれるよ!\n一定期間で曲が入れかわるので、よくチェックしてね!",
+ "englishUsText":"Choose songs from Weekly Battle Songs in Online Ranking Matches!\nMake sure to check often, as songs will change periodically!",
+ "englishUsFontType":3,
+ "frenchText":"Choisis une des Chansons hebdomadaires dans les Matchs classés en ligne !\nElles changent régulièrement, alors consulte-les souvent !",
+ "frenchFontType":3,
+ "italianText":"Scegli tra le canzoni da battaglia settimanali in Partita classificata online!\nControlla spesso l'elenco: le canzoni cambiano!",
+ "italianFontType":3,
+ "germanText":"Wähle einen Song aus wöchentlichen Kampf-Songs in Online-Ranglisten-Partien aus!\nSieh sie dir oft an, denn die Songs wechseln sich regelmäßig ab!",
+ "germanFontType":3,
+ "spanishText":"¡Elige Canciones de batalla semanales en las Partidas de clasificación en línea!\n¡Échales un vistazo a menudo, porque cambian!",
+ "spanishFontType":3,
+ "chineseTText":"在線上排名戰裡,可從「每週替換對戰曲」中選擇樂曲!",
+ "chineseTFontType":1,
+ "koreanText":"온라인 랭크 매치에서는 「주간 배틀 곡」에서 곡이 선택돼!\n일정 기간마다 곡이 교체되니 잘 체크해줘!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips055_new",
+ "japaneseText":"オンラインランクマッチは「タッチ太鼓」でもあそべるよ!\n「ゲーム設定」の「タッチ太鼓の表示設定」で設定してね!",
+ "englishUsText":"Play with the Touch Drum in Online Ranking Matches!\nGo to Game Settings > Show/Hide Touch Drum.",
+ "englishUsFontType":3,
+ "frenchText":"Joue avec le tambour tactile dans les Matchs classés en ligne !\nParamètres de jeu > Afficher/Masquer tambour tactile.",
+ "frenchFontType":3,
+ "italianText":"Gioca con il tamburo touch in Partita classificata online!\nVai in Impostazioni > Mostra/nascondi tamburo touch.",
+ "italianFontType":3,
+ "germanText":"Spiele mit der Touch-Trommel in Online-Ranglisten-Partien!\nGehe zu Spieleinstellungen > Touch-Trommel anzeigen.",
+ "germanFontType":3,
+ "spanishText":"¡Juega con el tambor táctil en las Partidas de clasificación en línea!\nVe a Ajustes del juego > Mostrar/Ocultar tambor táctil.",
+ "spanishFontType":3,
+ "chineseTText":"線上排名戰也能用「觸控太鼓」進行遊玩!\n請從「遊戲設定」內的「觸控太鼓的顯示設定」裡進行設定!",
+ "chineseTFontType":1,
+ "koreanText":"온라인 랭크 매치는 「터치 북」으로도 플레이할 수 있어!\n「게임 설정」의 「터치 북 표시 설정」에서 설정해줘!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips056_new",
+ "japaneseText":"オンラインランクマッチの結果に応じて「ごほうびポイント」がもらえるよ!\n「ごほうびポイント」をためると「プレイヤーアイコン」などがもらえるよ!",
+ "englishUsText":"Earn Reward Points based on the result in Online Ranking Matches!\nSave up Reward Points to get new Player Icons and other rewards!",
+ "englishUsFontType":3,
+ "frenchText":"Gagne une Prime de points selon les résultats de tes Matchs classés en ligne !\nAccumule-les pour rafler plus d'Icônes de joueur et d'autres récompenses !",
+ "frenchFontType":3,
+ "italianText":"Ottieni punti ricompensa con Partita classificata online!\nSpendili per ottenere nuove icone giocatore e altre ricompense!",
+ "italianFontType":3,
+ "germanText":"Es gibt in Online-Ranglisten-Partien Belohnungspunkte je nach Ergebnis!\nMit Belohnungspunkten kannst du neue Spielersymbole freischalten!",
+ "germanFontType":3,
+ "spanishText":"¡Gana puntos de recompensa según tu resultado en las Partidas de clasificación en línea!\n¡Ahorra puntos de recompensa para conseguir nuevos iconos y otras recompensas!",
+ "spanishFontType":3,
+ "chineseTText":"將依線上排名戰的結果取得「獎勵點數」!\n累積「獎勵點數」就能取得「玩家圖示」等獎勵!",
+ "chineseTFontType":1,
+ "koreanText":"온라인 랭크 매치의 결과에 따라 「보상 포인트」를 받을 수 있어!\n「보상 포인트」를 모으면 「플레이어 아이콘」 등을 받을 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips057_new",
+ "japaneseText":"オンラインランクマッチでは「週がわりバトル曲」から曲が選ばれるよ!\n一定期間で曲が入れかわるので、よくチェックしてね!",
+ "englishUsText":"Choose songs from Weekly Battle Songs in Online Ranking Matches!\nMake sure to check often, as songs will change periodically!",
+ "englishUsFontType":3,
+ "frenchText":"Choisis une des Chansons hebdomadaires dans les Matchs classés en ligne !\nElles changent régulièrement, alors consulte-les souvent !",
+ "frenchFontType":3,
+ "italianText":"Scegli tra le canzoni da battaglia settimanali in Partita classificata online!\nControlla spesso l'elenco: le canzoni cambiano!",
+ "italianFontType":3,
+ "germanText":"Wähle einen Song aus wöchentlichen Kampf-Songs in Online-Ranglisten-Partien aus!\nSieh sie dir oft an, denn die Songs wechseln sich regelmäßig ab!",
+ "germanFontType":3,
+ "spanishText":"¡Elige Canciones de batalla semanales en las Partidas de clasificación en línea!\n¡Échales un vistazo a menudo, porque cambian!",
+ "spanishFontType":3,
+ "chineseTText":"在線上排名戰裡,可從「每週替換對戰曲」中選擇樂曲!",
+ "chineseTFontType":1,
+ "koreanText":"온라인 랭크 매치에서는 「주간 배틀 곡」에서 곡이 선택돼!\n일정 기간마다 곡이 교체되니 잘 체크해줘!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips058_new",
+ "japaneseText":"オンラインランクマッチに勝つと「ランクポイント」がもらえるよ!\n「ランクポイント」をためるとランクアップできるよ!",
+ "englishUsText":"Earn Rank Points by winning in Online Ranking Matches!\nGet a higher Rank the more you play!",
+ "englishUsFontType":3,
+ "frenchText":"Obtiens des Points de niveau en gagnant des Matchs classés en ligne !\nPlus tu joues, plus tu augmentes de niveau !",
+ "frenchFontType":3,
+ "italianText":"Ottieni punti rango vincendo in Partita classificata online!\nPiù giochi, più potrai salire di rango!",
+ "italianFontType":3,
+ "germanText":"Verdiene Rangpunkte, indem du Online-Ranglisten-Partien gewinnst!\nErreiche einen höheren Rang, je mehr du spielst!",
+ "germanFontType":3,
+ "spanishText":"¡Gana Partidas de clasificación en línea para obtener puntos de rango!\n¡Juega para mejorar tu rango!",
+ "spanishFontType":3,
+ "chineseTText":"在線上排名戰取勝後就能取得「獎勵點數」!\n累積「排名點數」就能升級!",
+ "chineseTFontType":1,
+ "koreanText":"온라인 랭크 매치에서 이기면 「랭크 포인트」를 받을 수 있어!\n「랭크 포인트」를 모으면 랭크업을 할 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips060_new",
+ "japaneseText":"オンラインランクマッチ中にインターネットの接続が切れると\n1戦分「負け」になるよ",
+ "englishUsText":"If the internet connection is lost during an Online Ranking Match,\nyou'll receive a loss on your record!",
+ "englishUsFontType":3,
+ "frenchText":"Si la connexion à Internet est interrompue lors d'un Match classé en ligne,\nce sera une défaite dans ton dossier !",
+ "frenchFontType":3,
+ "italianText":"Se ti disconnetti da Internet durante una\nPartita classificata online, subirai una sconfitta!",
+ "italianFontType":3,
+ "germanText":"Bricht die Internetverbindung in einer Online-Ranglisten-Partie ab,\nwird eine Niederlage in der Statistik verzeichnet.",
+ "germanFontType":3,
+ "spanishText":"Si pierdes la conexión durante una Partida de clasificación en línea,\n¡contará como una derrota en tu historial!",
+ "spanishFontType":3,
+ "chineseTText":"在線上排名戰裡中途斷線就算1場比賽「落敗」",
+ "chineseTFontType":1,
+ "koreanText":"온라인 랭크 매치 중에 인터넷 접속이 끊기면\n1회 「패배」 처리돼",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips061_new",
+ "japaneseText":"オンラインランクマッチで連勝すると「ごほうびポイント」がたくさんもらえるよ!",
+ "englishUsText":"Earn consecutive wins in Online Ranking Matches and get a lot of Reward Points!",
+ "englishUsFontType":3,
+ "frenchText":"Fais une série de victoires dans les Matchs classés en ligne pour gagner une grosse Prime de points !",
+ "frenchFontType":3,
+ "italianText":"Vinci più partite consecutive in Partita classificata online per ottenere molti punti ricompensa!",
+ "italianFontType":3,
+ "germanText":"Erzielst du in einer Online-Ranglisten-Partie Siege in Folge, regnet es eine Menge Belohnungspunkte!",
+ "germanFontType":3,
+ "spanishText":"¡Las victorias seguidas conceden muchos puntos de recompensa!",
+ "spanishFontType":3,
+ "chineseTText":"在線上排名戰裡連續取勝也能取得許多「獎勵點數」!",
+ "chineseTFontType":1,
+ "koreanText":"온라인 랭크 매치에서 연승하면 「보상 포인트」를 많이 받을 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_126",
+ "japaneseText":"全力をつくします",
+ "englishUsText":"I'm giving it my all.",
+ "englishUsFontType":3,
+ "frenchText":"Je me donne à fond.",
+ "frenchFontType":3,
+ "italianText":"Ce la sto mettendo tutta.",
+ "italianFontType":3,
+ "germanText":"Ich gebe einfach alles.",
+ "germanFontType":3,
+ "spanishText":"Lo estoy dando todo.",
+ "spanishFontType":3,
+ "chineseTText":"我會全力以赴的",
+ "chineseTFontType":1,
+ "koreanText":"온 힘을 다하겠습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_127",
+ "japaneseText":"あと一回だけ!!",
+ "englishUsText":"Just one more!",
+ "englishUsFontType":3,
+ "frenchText":"Juste une dernière !",
+ "frenchFontType":3,
+ "italianText":"Ancora!",
+ "italianFontType":3,
+ "germanText":"Nur noch einmal!",
+ "germanFontType":3,
+ "spanishText":"¡Solo una más!",
+ "spanishFontType":3,
+ "chineseTText":"只剩一次了!!",
+ "chineseTFontType":1,
+ "koreanText":"한 번만 더!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_128",
+ "japaneseText":"ワタシの本気をみせてあげよう!",
+ "englishUsText":"Let me show you how serious I am!",
+ "englishUsFontType":3,
+ "frenchText":"Je vais te montrer que je ne plaisante pas !",
+ "frenchFontType":3,
+ "italianText":"Faccio sul serio! Vedrai!",
+ "italianFontType":3,
+ "germanText":"Ich zeige dir, wie ernst es mir ist!",
+ "germanFontType":3,
+ "spanishText":"¡Te demostraré lo serio que soy!",
+ "spanishFontType":3,
+ "chineseTText":"讓你瞧瞧我認真起來的樣子!!",
+ "chineseTFontType":1,
+ "koreanText":"내 진심을 보여주겠어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_129",
+ "japaneseText":"まさかこれほどとは!",
+ "englishUsText":"Whoah, this is next-level!",
+ "englishUsFontType":3,
+ "frenchText":"Waouh, on passe à la vitesse supérieure !",
+ "frenchFontType":3,
+ "italianText":"Wow, siamo a livelli altissimi!",
+ "italianFontType":3,
+ "germanText":"Wow, das ist der Wahnsinn!",
+ "germanFontType":3,
+ "spanishText":"Madre mía, ¡esto es otro nivel!",
+ "spanishFontType":3,
+ "chineseTText":"真沒想到會這樣!",
+ "chineseTFontType":1,
+ "koreanText":"설마 이 정도일 줄이야!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_130",
+ "japaneseText":"グッジョブ!",
+ "englishUsText":"Good job!",
+ "englishUsFontType":3,
+ "frenchText":"Beau travail !",
+ "frenchFontType":3,
+ "italianText":"Ottimo lavoro!",
+ "italianFontType":3,
+ "germanText":"Gut gemacht!",
+ "germanFontType":3,
+ "spanishText":"¡Buen trabajo!",
+ "spanishFontType":3,
+ "chineseTText":"做得好!",
+ "chineseTFontType":1,
+ "koreanText":"굿 잡!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_131",
+ "japaneseText":"さすがですね!",
+ "englishUsText":"As I expected!",
+ "englishUsFontType":3,
+ "frenchText":"Comme prévu !",
+ "frenchFontType":3,
+ "italianText":"Come previsto!",
+ "italianFontType":3,
+ "germanText":"Wie zu erwarten!",
+ "germanFontType":3,
+ "spanishText":"¡Tal y cómo lo esperaba!",
+ "spanishFontType":3,
+ "chineseTText":"真厲害呢!",
+ "chineseTFontType":1,
+ "koreanText":"역시 대단해요!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_132",
+ "japaneseText":"まだ本気出してないだけだから!",
+ "englishUsText":"I... I just haven't gotten serious yet!",
+ "englishUsFontType":3,
+ "frenchText":"Je... Je ne me donnais pas encore à fond !",
+ "frenchFontType":3,
+ "italianText":"Io... non facevo ancora sul serio!",
+ "italianFontType":3,
+ "germanText":"Ich ... Ich hab mich nur aufgewärmt!",
+ "germanFontType":3,
+ "spanishText":"¡Todavía no me he puesto en serio!",
+ "spanishFontType":3,
+ "chineseTText":"我只是還沒拿出真本事!",
+ "chineseTFontType":1,
+ "koreanText":"아직 온 힘을 다 쓰지 않았다고!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_133",
+ "japaneseText":"いいウデをしているね",
+ "englishUsText":"You're doing pretty good!",
+ "englishUsFontType":3,
+ "frenchText":"Tu te débrouilles plutôt bien !",
+ "frenchFontType":3,
+ "italianText":"Stai andando alla grande!",
+ "italianFontType":3,
+ "germanText":"Du schlägst dich echt gut!",
+ "germanFontType":3,
+ "spanishText":"¡Lo estás haciendo muy bien!",
+ "spanishFontType":3,
+ "chineseTText":"你身手不錯呢",
+ "chineseTFontType":1,
+ "koreanText":"실력이 좋구나",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_134",
+ "japaneseText":"あなた、つかれているのよ",
+ "englishUsText":"Are you tired yet?",
+ "englishUsFontType":3,
+ "frenchText":"Tu es déjà au bout du rouleau ?",
+ "frenchFontType":3,
+ "italianText":"Nessun calo di energia?",
+ "italianFontType":3,
+ "germanText":"Bist du schon müde?",
+ "germanFontType":3,
+ "spanishText":"¿Ya te has cansado?",
+ "spanishFontType":3,
+ "chineseTText":"你累了吧",
+ "chineseTFontType":1,
+ "koreanText":"당신, 피곤해서 그런 거야",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_135",
+ "japaneseText":"そろそろジュウデンしておく?",
+ "englishUsText":"Isn't it about time to recharge?",
+ "englishUsFontType":3,
+ "frenchText":"C'est pas l'heure de recharger les batteries ?",
+ "frenchFontType":3,
+ "italianText":"Non sarebbe meglio fare una pausa?",
+ "italianFontType":3,
+ "germanText":"Wird es nicht langsam Zeit für eine Pause?",
+ "germanFontType":3,
+ "spanishText":"¿No es hora de recargar?",
+ "spanishFontType":3,
+ "chineseTText":"差不多該放鬆一下了?",
+ "chineseTFontType":1,
+ "koreanText":"슬슬 충전해둘까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_136",
+ "japaneseText":"正々堂々戦うことをちかいます",
+ "englishUsText":"I swear to fight fair.",
+ "englishUsFontType":3,
+ "frenchText":"Je jure de me battre loyalement.",
+ "frenchFontType":3,
+ "italianText":"Prometto di battermi lealmente.",
+ "italianFontType":3,
+ "germanText":"Ich verspreche dir ein faires Duell.",
+ "germanFontType":3,
+ "spanishText":"Juro pelear limpio.",
+ "spanishFontType":3,
+ "chineseTText":"我發誓會堂堂正正地戰鬥的",
+ "chineseTFontType":1,
+ "koreanText":"정정당당히 싸울 것을 맹세합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_137",
+ "japaneseText":"負けの数だけ強くなる",
+ "englishUsText":"Failures are the rungs on the ladder to success.",
+ "englishUsFontType":3,
+ "frenchText":"L'échec est la voie du succès.",
+ "frenchFontType":3,
+ "italianText":"Le sconfitte sono solo i piccoli passi che portano alla vittoria.",
+ "italianFontType":3,
+ "germanText":"Niederlagen sind nur Stufen auf dem Weg zum Erfolg.",
+ "germanFontType":3,
+ "spanishText":"Los fracasos no son más que escollos en el camino a la victoria.",
+ "spanishFontType":3,
+ "chineseTText":"失敗會使人變強",
+ "chineseTFontType":1,
+ "koreanText":"패배한 수만큼 강해진다",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_138",
+ "japaneseText":"ゾーンにはいってます",
+ "englishUsText":"I'm in the zone.",
+ "englishUsFontType":3,
+ "frenchText":"Je suis dans la place.",
+ "frenchFontType":3,
+ "italianText":"Nessuno può fermarmi.",
+ "italianFontType":3,
+ "germanText":"Ich bin voll dabei.",
+ "germanFontType":3,
+ "spanishText":"¡Ya estoy!",
+ "spanishFontType":3,
+ "chineseTText":"狀況絕佳",
+ "chineseTFontType":1,
+ "koreanText":"무아지경에 빠졌습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_godsng",
+ "japaneseText":"ゴッドソング",
+ "englishUsText":"GODSONG",
+ "englishUsFontType":3,
+ "frenchText":"GODSONG",
+ "frenchFontType":3,
+ "italianText":"GODSONG",
+ "italianFontType":3,
+ "germanText":"GODSONG",
+ "germanFontType":3,
+ "spanishText":"GODSONG",
+ "spanishFontType":3,
+ "chineseTText":"GODSONG",
+ "chineseTFontType":1,
+ "koreanText":"GODSONG",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_godsng",
+ "japaneseText":"バンドじゃないもん!MAXX NAKAYOSHI",
+ "englishUsText":"BAND JA NAIMON! MAXX NAKAYOSHI",
+ "englishUsFontType":3,
+ "frenchText":"BAND JA NAIMON! MAXX NAKAYOSHI",
+ "frenchFontType":3,
+ "italianText":"BAND JA NAIMON! MAXX NAKAYOSHI",
+ "italianFontType":3,
+ "germanText":"BAND JA NAIMON! MAXX NAKAYOSHI",
+ "germanFontType":3,
+ "spanishText":"BAND JA NAIMON! MAXX NAKAYOSHI",
+ "spanishFontType":3,
+ "chineseTText":"BAND JA NAIMON! MAXX NAKAYOSHI",
+ "chineseTFontType":1,
+ "koreanText":"BAND JA NAIMON! MAXX NAKAYOSHI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_godsng",
+ "japaneseText":"",
+ "englishUsText":"ゴッドソング",
+ "englishUsFontType":0,
+ "frenchText":"ゴッドソング",
+ "frenchFontType":0,
+ "italianText":"ゴッドソング",
+ "italianFontType":0,
+ "germanText":"ゴッドソング",
+ "germanFontType":0,
+ "spanishText":"ゴッドソング",
+ "spanishFontType":0,
+ "chineseTText":"ゴッドソング",
+ "chineseTFontType":0,
+ "koreanText":"ゴッドソング",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_drill",
+ "japaneseText":"僕の→地球 僕らの地球",
+ "englishUsText":"Boku no→Chikyu, Bokura no Chikyu",
+ "englishUsFontType":3,
+ "frenchText":"Boku no→Chikyu, Bokura no Chikyu",
+ "frenchFontType":3,
+ "italianText":"Boku no→Chikyu, Bokura no Chikyu",
+ "italianFontType":3,
+ "germanText":"Boku no→Chikyu, Bokura no Chikyu",
+ "germanFontType":3,
+ "spanishText":"Boku no→Chikyu, Bokura no Chikyu",
+ "spanishFontType":3,
+ "chineseTText":"我的→地球, 我們的地球",
+ "chineseTFontType":1,
+ "koreanText":"나의→지구 우리의 지구",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_drill",
+ "japaneseText":"「ミスタードリラー ドリルランド」より",
+ "englishUsText":"From \" Mr. DRILLER Drill Land \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Mr. DRILLER Drill Land \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Mr. DRILLER Drill Land \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Mr. DRILLER Drill Land \"",
+ "germanFontType":3,
+ "spanishText":"De \" Mr. DRILLER Drill Land \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「爆鑽小英雄:鑽頭樂園」",
+ "chineseTFontType":1,
+ "koreanText":"\"미스터 드릴러 드릴랜드\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_drill",
+ "japaneseText":"",
+ "englishUsText":"僕の→地球 僕らの地球",
+ "englishUsFontType":0,
+ "frenchText":"僕の→地球 僕らの地球",
+ "frenchFontType":0,
+ "italianText":"僕の→地球 僕らの地球",
+ "italianFontType":0,
+ "germanText":"僕の→地球 僕らの地球",
+ "germanFontType":0,
+ "spanishText":"僕の→地球 僕らの地球",
+ "spanishFontType":0,
+ "chineseTText":"僕の→地球 僕らの地球",
+ "chineseTFontType":0,
+ "koreanText":"僕の→地球 僕らの地球",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_moji",
+ "japaneseText":"もじぴったんメドレー",
+ "englishUsText":"MOJIPITTAN Medley",
+ "englishUsFontType":3,
+ "frenchText":"MOJIPITTAN Medley",
+ "frenchFontType":3,
+ "italianText":"MOJIPITTAN Medley",
+ "italianFontType":3,
+ "germanText":"MOJIPITTAN Medley",
+ "germanFontType":3,
+ "spanishText":"MOJIPITTAN Medley",
+ "spanishFontType":3,
+ "chineseTText":"文字拼圖組曲",
+ "chineseTFontType":1,
+ "koreanText":"모지피탄 메들리",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_moji",
+ "japaneseText":"「ことばのパズル もじぴったん」より",
+ "englishUsText":"From \" Kotoba no Puzzle MOJIPITTAN \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Kotoba no Puzzle MOJIPITTAN \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Kotoba no Puzzle MOJIPITTAN \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Kotoba no Puzzle MOJIPITTAN \"",
+ "germanFontType":3,
+ "spanishText":"De \" Kotoba no Puzzle MOJIPITTAN \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「Kotoba no Puzzle 文字拼圖」",
+ "chineseTFontType":1,
+ "koreanText":"\"Kotoba no Puzzle 모지피탄\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_moji",
+ "japaneseText":"",
+ "englishUsText":"もじぴったんメドレー",
+ "englishUsFontType":0,
+ "frenchText":"もじぴったんメドレー",
+ "frenchFontType":0,
+ "italianText":"もじぴったんメドレー",
+ "italianFontType":0,
+ "germanText":"もじぴったんメドレー",
+ "germanFontType":0,
+ "spanishText":"もじぴったんメドレー",
+ "spanishFontType":0,
+ "chineseTText":"もじぴったんメドレー",
+ "chineseTFontType":0,
+ "koreanText":"もじぴったんメドレー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kata",
+ "japaneseText":"塊オンザロック~メインテーマ",
+ "englishUsText":"KATAMARI on the rock ~main theme",
+ "englishUsFontType":3,
+ "frenchText":"KATAMARI on the rock ~main theme",
+ "frenchFontType":3,
+ "italianText":"KATAMARI on the rock ~main theme",
+ "italianFontType":3,
+ "germanText":"KATAMARI on the rock ~main theme",
+ "germanFontType":3,
+ "spanishText":"KATAMARI on the rock ~main theme",
+ "spanishFontType":3,
+ "chineseTText":"塊 on the rock ~main theme",
+ "chineseTFontType":1,
+ "koreanText":"Katamari on the rock ~main theme",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_kata",
+ "japaneseText":"「塊魂」より",
+ "englishUsText":"From \" KATAMARI DAMACY \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" KATAMARI DAMACY \"",
+ "frenchFontType":3,
+ "italianText":"Da \" KATAMARI DAMACY \"",
+ "italianFontType":3,
+ "germanText":"Aus \" KATAMARI DAMACY \"",
+ "germanFontType":3,
+ "spanishText":"De \" KATAMARI DAMACY \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「塊魂」",
+ "chineseTFontType":1,
+ "koreanText":"\"괴혼\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kata",
+ "japaneseText":"",
+ "englishUsText":"塊オンザロック~メインテーマ",
+ "englishUsFontType":0,
+ "frenchText":"塊オンザロック~メインテーマ",
+ "frenchFontType":0,
+ "italianText":"塊オンザロック~メインテーマ",
+ "italianFontType":0,
+ "germanText":"塊オンザロック~メインテーマ",
+ "germanFontType":0,
+ "spanishText":"塊オンザロック~メインテーマ",
+ "spanishFontType":0,
+ "chineseTText":"塊オンザロック~メインテーマ",
+ "chineseTFontType":0,
+ "koreanText":"塊オンザロック~メインテーマ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_godeat",
+ "japaneseText":"No Way Back",
+ "englishUsText":"No Way Back",
+ "englishUsFontType":3,
+ "frenchText":"No Way Back",
+ "frenchFontType":3,
+ "italianText":"No Way Back",
+ "italianFontType":3,
+ "germanText":"No Way Back",
+ "germanFontType":3,
+ "spanishText":"No Way Back",
+ "spanishFontType":3,
+ "chineseTText":"No Way Back",
+ "chineseTFontType":1,
+ "koreanText":"No Way Back",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_godeat",
+ "japaneseText":"「GOD EATER」より",
+ "englishUsText":"From \" GOD EATER \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" GOD EATER \"",
+ "frenchFontType":3,
+ "italianText":"Da \" GOD EATER \"",
+ "italianFontType":3,
+ "germanText":"Aus \" GOD EATER \"",
+ "germanFontType":3,
+ "spanishText":"De \" GOD EATER \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「噬神者」",
+ "chineseTFontType":1,
+ "koreanText":"\"갓 이터\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_godeat",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_toabs",
+ "japaneseText":"The arrow was shot",
+ "englishUsText":"The arrow was shot",
+ "englishUsFontType":3,
+ "frenchText":"The arrow was shot",
+ "frenchFontType":3,
+ "italianText":"The arrow was shot",
+ "italianFontType":3,
+ "germanText":"The arrow was shot",
+ "germanFontType":3,
+ "spanishText":"The arrow was shot",
+ "spanishFontType":3,
+ "chineseTText":"The arrow was shot",
+ "chineseTFontType":1,
+ "koreanText":"The arrow was shot",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_toabs",
+ "japaneseText":"「テイルズ オブ ジ アビス」より",
+ "englishUsText":"From \" TALES OF THE ABYSS \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" TALES OF THE ABYSS \"",
+ "frenchFontType":3,
+ "italianText":"Da \" TALES OF THE ABYSS \"",
+ "italianFontType":3,
+ "germanText":"Aus \" TALES OF THE ABYSS \"",
+ "germanFontType":3,
+ "spanishText":"De \" TALES OF THE ABYSS \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「TALES OF THE ABYSS」",
+ "chineseTFontType":1,
+ "koreanText":"\"TALES OF THE ABYSS\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_toabs",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_acex2",
+ "japaneseText":"IN THE ZONE",
+ "englishUsText":"IN THE ZONE",
+ "englishUsFontType":3,
+ "frenchText":"IN THE ZONE",
+ "frenchFontType":3,
+ "italianText":"IN THE ZONE",
+ "italianFontType":3,
+ "germanText":"IN THE ZONE",
+ "germanFontType":3,
+ "spanishText":"IN THE ZONE",
+ "spanishFontType":3,
+ "chineseTText":"IN THE ZONE",
+ "chineseTFontType":1,
+ "koreanText":"IN THE ZONE",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_acex2",
+ "japaneseText":"「ACE COMBAT X2 JOINT ASSAULT」より",
+ "englishUsText":"From \" ACE COMBAT X2 JOINT ASSAULT \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" ACE COMBAT X2 JOINT ASSAULT \"",
+ "frenchFontType":3,
+ "italianText":"Da \" ACE COMBAT X2 JOINT ASSAULT \"",
+ "italianFontType":3,
+ "germanText":"Aus \" ACE COMBAT X2 JOINT ASSAULT \"",
+ "germanFontType":3,
+ "spanishText":"De \" ACE COMBAT X2 JOINT ASSAULT \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「空戰奇兵X2 JOINT ASSAULT」",
+ "chineseTFontType":1,
+ "koreanText":"\"ACE COMBAT X2 JOINT ASSAULT\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_acex2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_calib",
+ "japaneseText":"Brave Sword, Braver Soul",
+ "englishUsText":"Brave Sword, Braver Soul",
+ "englishUsFontType":3,
+ "frenchText":"Brave Sword, Braver Soul",
+ "frenchFontType":3,
+ "italianText":"Brave Sword, Braver Soul",
+ "italianFontType":3,
+ "germanText":"Brave Sword, Braver Soul",
+ "germanFontType":3,
+ "spanishText":"Brave Sword, Braver Soul",
+ "spanishFontType":3,
+ "chineseTText":"Brave Sword, Braver Soul",
+ "chineseTFontType":1,
+ "koreanText":"Brave Sword, Braver Soul",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_calib",
+ "japaneseText":"「ソウルキャリバーII」より",
+ "englishUsText":"From \" SOULCALIBUR II \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" SOULCALIBUR II \"",
+ "frenchFontType":3,
+ "italianText":"Da \" SOULCALIBUR II \"",
+ "italianFontType":3,
+ "germanText":"Aus \" SOULCALIBUR II \"",
+ "germanFontType":3,
+ "spanishText":"De \" SOULCALIBUR II \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「劍魂II」",
+ "chineseTFontType":1,
+ "koreanText":"\"SOULCALIBUR II\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_calib",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_teken6",
+ "japaneseText":"KARMA(Tatsujin Mix)",
+ "englishUsText":"KARMA(Tatsujin Mix)",
+ "englishUsFontType":3,
+ "frenchText":"KARMA(Tatsujin Mix)",
+ "frenchFontType":3,
+ "italianText":"KARMA(Tatsujin Mix)",
+ "italianFontType":3,
+ "germanText":"KARMA(Tatsujin Mix)",
+ "germanFontType":3,
+ "spanishText":"KARMA(Tatsujin Mix)",
+ "spanishFontType":3,
+ "chineseTText":"KARMA(Tatsujin Mix)",
+ "chineseTFontType":1,
+ "koreanText":"KARMA(Tatsujin Mix)",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_teken6",
+ "japaneseText":"「鉄拳6 BLOODLINE REBELLION」より",
+ "englishUsText":"From \" TEKKEN 6 BLOODLINE REBELLION \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" TEKKEN 6 BLOODLINE REBELLION \"",
+ "frenchFontType":3,
+ "italianText":"Da \" TEKKEN 6 BLOODLINE REBELLION \"",
+ "italianFontType":3,
+ "germanText":"Aus \" TEKKEN 6 BLOODLINE REBELLION \"",
+ "germanFontType":3,
+ "spanishText":"De \" TEKKEN 6 BLOODLINE REBELLION \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「鐵拳6 BLOODLINE REBELLION」",
+ "chineseTFontType":1,
+ "koreanText":"\"TEKKEN 6 BLOODLINE REBELLION\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_teken6",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_namcot",
+ "japaneseText":"ナムコットメドレー",
+ "englishUsText":"NAMCOT Medley",
+ "englishUsFontType":3,
+ "frenchText":"Medley NAMCOT",
+ "frenchFontType":3,
+ "italianText":"NAMCOT Medley",
+ "italianFontType":3,
+ "germanText":"NAMCOT Medley",
+ "germanFontType":3,
+ "spanishText":"NAMCOT Medley",
+ "spanishFontType":3,
+ "chineseTText":"NAMCOT組曲",
+ "chineseTFontType":1,
+ "koreanText":"NAMCOT 메들리",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_namcot",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_namcot",
+ "japaneseText":"",
+ "englishUsText":"ナムコットメドレー",
+ "englishUsFontType":0,
+ "frenchText":"ナムコットメドレー",
+ "frenchFontType":0,
+ "italianText":"ナムコットメドレー",
+ "italianFontType":0,
+ "germanText":"ナムコットメドレー",
+ "germanFontType":0,
+ "spanishText":"ナムコットメドレー",
+ "spanishFontType":0,
+ "chineseTText":"ナムコットメドレー",
+ "chineseTFontType":0,
+ "koreanText":"ナムコットメドレー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_namco2",
+ "japaneseText":"たのしい太鼓道場",
+ "englishUsText":"Fun-Filled Drum-Filled Taiko Dojo",
+ "englishUsFontType":3,
+ "frenchText":"Dojo Taiko bourré de fun et de tambours",
+ "frenchFontType":3,
+ "italianText":"Super divertimento e tanti tamburi nel dojo di Taiko",
+ "italianFontType":3,
+ "germanText":"Fun-Filled Drum-Filled Taiko Dojo",
+ "germanFontType":3,
+ "spanishText":"Diversión sin límites en el dojo Taiko",
+ "spanishFontType":3,
+ "chineseTText":"歡樂太鼓道場",
+ "chineseTFontType":1,
+ "koreanText":"즐거운 태고도장",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_namco2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_namco2",
+ "japaneseText":"",
+ "englishUsText":"たのしい太鼓道場",
+ "englishUsFontType":0,
+ "frenchText":"たのしい太鼓道場",
+ "frenchFontType":0,
+ "italianText":"たのしい太鼓道場",
+ "italianFontType":0,
+ "germanText":"たのしい太鼓道場",
+ "germanFontType":0,
+ "spanishText":"たのしい太鼓道場",
+ "spanishFontType":0,
+ "chineseTText":"たのしい太鼓道場",
+ "chineseTFontType":0,
+ "koreanText":"たのしい太鼓道場",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sqr",
+ "japaneseText":"スポーツダイジェスドン",
+ "englishUsText":"Sports DigesDON",
+ "englishUsFontType":3,
+ "frenchText":"Sports DigesDON",
+ "frenchFontType":3,
+ "italianText":"Sports DigesDON",
+ "italianFontType":3,
+ "germanText":"Sports DigesDON",
+ "germanFontType":3,
+ "spanishText":"Sports DigesDON",
+ "spanishFontType":3,
+ "chineseTText":"Sports DigesDON",
+ "chineseTFontType":1,
+ "koreanText":"Sports DigesDON",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_sqr",
+ "japaneseText":"~Fill in The Sky~",
+ "englishUsText":"~Fill in The Sky~",
+ "englishUsFontType":3,
+ "frenchText":"~Fill in The Sky~",
+ "frenchFontType":3,
+ "italianText":"~Fill in The Sky~",
+ "italianFontType":3,
+ "germanText":"~Fill in The Sky~",
+ "germanFontType":3,
+ "spanishText":"~Fill in The Sky~",
+ "spanishFontType":3,
+ "chineseTText":"~Fill in The Sky~",
+ "chineseTFontType":1,
+ "koreanText":"~Fill in The Sky~",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_sqr",
+ "japaneseText":"",
+ "englishUsText":"スポーツダイジェスドン",
+ "englishUsFontType":0,
+ "frenchText":"スポーツダイジェスドン",
+ "frenchFontType":0,
+ "italianText":"スポーツダイジェスドン",
+ "italianFontType":0,
+ "germanText":"スポーツダイジェスドン",
+ "germanFontType":0,
+ "spanishText":"スポーツダイジェスドン",
+ "spanishFontType":0,
+ "chineseTText":"スポーツダイジェスドン",
+ "chineseTFontType":0,
+ "koreanText":"スポーツダイジェスドン",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_godsong",
+ "japaneseText":"楽曲「ゴッドソング」無料配信中",
+ "englishUsText":"\"GODSONG\" song now available for free!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「GODSONG」免費發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「GODSONG」 무료 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_gmpack",
+ "japaneseText":"「100万本突破記念! Ⅰ LOVEゲームパック」無料配信中",
+ "englishUsText":"\"Over 1 Million Sold Celebration! I LOVE GAMES\" Pack now available for free!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「突破100萬片紀念!I LOVE遊戲Pack」免費發布中",
+ "chineseTFontType":1,
+ "koreanText":"「100만 장 돌파 기념! I LOVE GAME Pack」 무료 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_wwdraw",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_wwdraw",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_wwdraw",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_pkm123",
+ "japaneseText":"1・2・3",
+ "englishUsText":"1・2・3",
+ "englishUsFontType":3,
+ "frenchText":"1・2・3",
+ "frenchFontType":3,
+ "italianText":"1・2・3",
+ "italianFontType":3,
+ "germanText":"1・2・3",
+ "germanFontType":3,
+ "spanishText":"1・2・3",
+ "spanishFontType":3,
+ "chineseTText":"1・2・3",
+ "chineseTFontType":1,
+ "koreanText":"1・2・3",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_pkm123",
+ "japaneseText":"After the Rain(そらる×まふまふ) 「ポケットモンスター」より",
+ "englishUsText":"After the Rain(soraru×mafumafu) from \" Pokémon \"",
+ "englishUsFontType":3,
+ "frenchText":"After the Rain(soraru×mafumafu) tiré de \" Pokémon \"",
+ "frenchFontType":3,
+ "italianText":"After the Rain(soraru×mafumafu) Da \" Pokémon \"",
+ "italianFontType":3,
+ "germanText":"After the Rain(soraru×mafumafu) Aus \" Pokémon \"",
+ "germanFontType":3,
+ "spanishText":"After the Rain(soraru×mafumafu) De \" Pokémon \"",
+ "spanishFontType":3,
+ "chineseTText":"After the Rain(soraru×mafumafu) 來自「精靈寶可夢」",
+ "chineseTFontType":1,
+ "koreanText":"After the Rain(soraru×mafumafu) \"포켓몬스터\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_pkm123",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_evensb",
+ "japaneseText":"ナンセンス文学",
+ "englishUsText":"Literary Nonsense",
+ "englishUsFontType":3,
+ "frenchText":"Literary Nonsense",
+ "frenchFontType":3,
+ "italianText":"Literary Nonsense",
+ "italianFontType":3,
+ "germanText":"Literary Nonsense",
+ "germanFontType":3,
+ "spanishText":"Literary Nonsense",
+ "spanishFontType":3,
+ "chineseTText":"Literary Nonsense",
+ "chineseTFontType":1,
+ "koreanText":"Literary Nonsense",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_evensb",
+ "japaneseText":"Eve",
+ "englishUsText":"Eve",
+ "englishUsFontType":3,
+ "frenchText":"Eve",
+ "frenchFontType":3,
+ "italianText":"Eve",
+ "italianFontType":3,
+ "germanText":"Eve",
+ "germanFontType":3,
+ "spanishText":"Eve",
+ "spanishFontType":3,
+ "chineseTText":"Eve",
+ "chineseTFontType":1,
+ "koreanText":"Eve",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_evensb",
+ "japaneseText":"",
+ "englishUsText":"ナンセンス文学",
+ "englishUsFontType":0,
+ "frenchText":"ナンセンス文学",
+ "frenchFontType":0,
+ "italianText":"ナンセンス文学",
+ "italianFontType":0,
+ "germanText":"ナンセンス文学",
+ "germanFontType":0,
+ "spanishText":"ナンセンス文学",
+ "spanishFontType":0,
+ "chineseTText":"ナンセンス文学",
+ "chineseTFontType":0,
+ "koreanText":"ナンセンス文学",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_rocket",
+ "japaneseText":"ROCKET DIVE",
+ "englishUsText":"ROCKET DIVE",
+ "englishUsFontType":3,
+ "frenchText":"ROCKET DIVE",
+ "frenchFontType":3,
+ "italianText":"ROCKET DIVE",
+ "italianFontType":3,
+ "germanText":"ROCKET DIVE",
+ "germanFontType":3,
+ "spanishText":"ROCKET DIVE",
+ "spanishFontType":3,
+ "chineseTText":"ROCKET DIVE",
+ "chineseTFontType":1,
+ "koreanText":"ROCKET DIVE",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_rocket",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_rocket",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_haiky3",
+ "japaneseText":"PHOENIX",
+ "englishUsText":"PHOENIX",
+ "englishUsFontType":3,
+ "frenchText":"PHOENIX",
+ "frenchFontType":3,
+ "italianText":"PHOENIX",
+ "italianFontType":3,
+ "germanText":"PHOENIX",
+ "germanFontType":3,
+ "spanishText":"PHOENIX",
+ "spanishFontType":3,
+ "chineseTText":"PHOENIX",
+ "chineseTFontType":1,
+ "koreanText":"PHOENIX",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_haiky3",
+ "japaneseText":"「ハイキュー!! TO THE TOP」より",
+ "englishUsText":"From \" HAIKYU!! TO THE TOP \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" HAIKYU!! TO THE TOP \"",
+ "frenchFontType":3,
+ "italianText":"Da \" HAIKYU!! TO THE TOP \"",
+ "italianFontType":3,
+ "germanText":"Aus \" HAIKYU!! TO THE TOP \"",
+ "germanFontType":3,
+ "spanishText":"De \" HAIKYU!! TO THE TOP \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「排球少年!! TO THE TOP」",
+ "chineseTFontType":1,
+ "koreanText":"\"하이큐!! TO THE TOP\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_haiky3",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mikuot",
+ "japaneseText":"乙女解剖",
+ "englishUsText":"Otome Dissection",
+ "englishUsFontType":3,
+ "frenchText":"Otome Dissection",
+ "frenchFontType":3,
+ "italianText":"Otome Dissection",
+ "italianFontType":3,
+ "germanText":"Otome Dissection",
+ "germanFontType":3,
+ "spanishText":"Otome Dissection",
+ "spanishFontType":3,
+ "chineseTText":"乙女解剖",
+ "chineseTFontType":1,
+ "koreanText":"소녀해부",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mikuot",
+ "japaneseText":"DECO*27 feat.初音ミク",
+ "englishUsText":"DECO*27 feat. HATSUNE MIKU",
+ "englishUsFontType":3,
+ "frenchText":"DECO*27 feat. HATSUNE MIKU",
+ "frenchFontType":3,
+ "italianText":"DECO*27 feat. HATSUNE MIKU",
+ "italianFontType":3,
+ "germanText":"DECO*27 feat. HATSUNE MIKU",
+ "germanFontType":3,
+ "spanishText":"DECO*27 feat. HATSUNE MIKU",
+ "spanishFontType":3,
+ "chineseTText":"DECO*27 feat.初音未來",
+ "chineseTFontType":1,
+ "koreanText":"DECO*27 feat.하츠네 미쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mikuot",
+ "japaneseText":"",
+ "englishUsText":"乙女解剖",
+ "englishUsFontType":0,
+ "frenchText":"乙女解剖",
+ "frenchFontType":0,
+ "italianText":"乙女解剖",
+ "italianFontType":0,
+ "germanText":"乙女解剖",
+ "germanFontType":0,
+ "spanishText":"乙女解剖",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"乙女解剖",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mikutd",
+ "japaneseText":"太陽系デスコ",
+ "englishUsText":"TAIYOUKEI DISCO",
+ "englishUsFontType":3,
+ "frenchText":"TAIYOUKEI DISCO",
+ "frenchFontType":3,
+ "italianText":"TAIYOUKEI DISCO",
+ "italianFontType":3,
+ "germanText":"TAIYOUKEI DISCO",
+ "germanFontType":3,
+ "spanishText":"TAIYOUKEI DISCO",
+ "spanishFontType":3,
+ "chineseTText":"太陽系DISCO",
+ "chineseTFontType":1,
+ "koreanText":"타이요우케이데스코",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mikutd",
+ "japaneseText":"ナユタン星人 feat.初音ミク",
+ "englishUsText":"Nayutan Seijin feat. HATSUNE MIKU",
+ "englishUsFontType":3,
+ "frenchText":"Nayutan Seijin feat. HATSUNE MIKU",
+ "frenchFontType":3,
+ "italianText":"Nayutan Seijin feat. HATSUNE MIKU",
+ "italianFontType":3,
+ "germanText":"Nayutan Seijin feat. HATSUNE MIKU",
+ "germanFontType":3,
+ "spanishText":"Nayutan Seijin feat. HATSUNE MIKU",
+ "spanishFontType":3,
+ "chineseTText":"Nayutan星人feat.初音未來",
+ "chineseTFontType":1,
+ "koreanText":"Nayutan Seijin feat.하츠네 미쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mikutd",
+ "japaneseText":"",
+ "englishUsText":"太陽系デスコ",
+ "englishUsFontType":0,
+ "frenchText":"太陽系デスコ",
+ "frenchFontType":0,
+ "italianText":"太陽系デスコ",
+ "italianFontType":0,
+ "germanText":"太陽系デスコ",
+ "germanFontType":0,
+ "spanishText":"太陽系デスコ",
+ "spanishFontType":0,
+ "chineseTText":"太陽系デスコ",
+ "chineseTFontType":0,
+ "koreanText":"太陽系デスコ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mikuar",
+ "japaneseText":"アルカリレットウセイ",
+ "englishUsText":"Alkali Rettousei",
+ "englishUsFontType":3,
+ "frenchText":"Alkali Rettousei",
+ "frenchFontType":3,
+ "italianText":"Alkali Rettousei",
+ "italianFontType":3,
+ "germanText":"Alkali Rettousei",
+ "germanFontType":3,
+ "spanishText":"Alkali Rettousei",
+ "spanishFontType":3,
+ "chineseTText":"Alkali Rettousei",
+ "chineseTFontType":1,
+ "koreanText":"Alkali Rettousei",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mikuar",
+ "japaneseText":"かいりきベア feat.初音ミク 「戦闘摂理解析システム#コンパス」より",
+ "englishUsText":"Kairiki bear feat. HATSUNE MIKU",
+ "englishUsFontType":3,
+ "frenchText":"Kairiki bear feat. HATSUNE MIKU",
+ "frenchFontType":3,
+ "italianText":"Kairiki bear feat. HATSUNE MIKU",
+ "italianFontType":3,
+ "germanText":"Kairiki bear feat. HATSUNE MIKU",
+ "germanFontType":3,
+ "spanishText":"Kairiki bear feat. HATSUNE MIKU",
+ "spanishFontType":3,
+ "chineseTText":"Kairiki bear feat.初音未來",
+ "chineseTFontType":1,
+ "koreanText":"Kairiki bear feat.하츠네 미쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mikuar",
+ "japaneseText":"",
+ "englishUsText":"アルカリレットウセイ",
+ "englishUsFontType":0,
+ "frenchText":"アルカリレットウセイ",
+ "frenchFontType":0,
+ "italianText":"アルカリレットウセイ",
+ "italianFontType":0,
+ "germanText":"アルカリレットウセイ",
+ "germanFontType":0,
+ "spanishText":"アルカリレットウセイ",
+ "spanishFontType":0,
+ "chineseTText":"アルカリレットウセイ",
+ "chineseTFontType":0,
+ "koreanText":"アルカリレットウセイ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_melt",
+ "japaneseText":"メルト",
+ "englishUsText":"melt",
+ "englishUsFontType":3,
+ "frenchText":"melt",
+ "frenchFontType":3,
+ "italianText":"melt",
+ "italianFontType":3,
+ "germanText":"melt",
+ "germanFontType":3,
+ "spanishText":"melt",
+ "spanishFontType":3,
+ "chineseTText":"melt",
+ "chineseTFontType":1,
+ "koreanText":"melt",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_melt",
+ "japaneseText":"原曲:supercell feat.初音ミク",
+ "englishUsText":"From \"supercell feat. HATSUNE MIKU\"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" supercell feat. HATSUNE MIKU \"",
+ "frenchFontType":3,
+ "italianText":"Da \" supercell feat. HATSUNE MIKU \"",
+ "italianFontType":3,
+ "germanText":"Aus \" supercell feat. HATSUNE MIKU \"",
+ "germanFontType":3,
+ "spanishText":"De \" supercell feat. HATSUNE MIKU \"",
+ "spanishFontType":3,
+ "chineseTText":"原曲:supercell feat.初音未來",
+ "chineseTFontType":1,
+ "koreanText":"원곡:supercell feat.하츠네 미쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_melt",
+ "japaneseText":"",
+ "englishUsText":"メルト",
+ "englishUsFontType":0,
+ "frenchText":"メルト",
+ "frenchFontType":0,
+ "italianText":"メルト",
+ "italianFontType":0,
+ "germanText":"メルト",
+ "germanFontType":0,
+ "spanishText":"メルト",
+ "spanishFontType":0,
+ "chineseTText":"メルト",
+ "chineseTFontType":0,
+ "koreanText":"メルト",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_gumico",
+ "japaneseText":"珈琲の味と",
+ "englishUsText":"COFFEE NO AJI TO",
+ "englishUsFontType":3,
+ "frenchText":"COFFEE NO AJI TO",
+ "frenchFontType":3,
+ "italianText":"COFFEE NO AJI TO",
+ "italianFontType":3,
+ "germanText":"COFFEE NO AJI TO",
+ "germanFontType":3,
+ "spanishText":"COFFEE NO AJI TO",
+ "spanishFontType":3,
+ "chineseTText":"咖啡的味道",
+ "chineseTFontType":1,
+ "koreanText":"COFFEE NO AJI TO",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_gumico",
+ "japaneseText":"はるなば",
+ "englishUsText":"Harunaba",
+ "englishUsFontType":3,
+ "frenchText":"Harunaba",
+ "frenchFontType":3,
+ "italianText":"Harunaba",
+ "italianFontType":3,
+ "germanText":"Harunaba",
+ "germanFontType":3,
+ "spanishText":"Harunaba",
+ "spanishFontType":3,
+ "chineseTText":"Harunaba",
+ "chineseTFontType":1,
+ "koreanText":"Harunaba",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_gumico",
+ "japaneseText":"",
+ "englishUsText":"珈琲の味と",
+ "englishUsFontType":0,
+ "frenchText":"珈琲の味と",
+ "frenchFontType":0,
+ "italianText":"珈琲の味と",
+ "italianFontType":0,
+ "germanText":"珈琲の味と",
+ "germanFontType":0,
+ "spanishText":"珈琲の味と",
+ "spanishFontType":0,
+ "chineseTText":"珈琲の味と",
+ "chineseTFontType":0,
+ "koreanText":"珈琲の味と",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_drsp",
+ "japaneseText":"ドラゴンスピリットメドレー",
+ "englishUsText":"DRAGON SPIRIT Medley",
+ "englishUsFontType":3,
+ "frenchText":"DRAGON SPIRIT Medley",
+ "frenchFontType":3,
+ "italianText":"DRAGON SPIRIT Medley",
+ "italianFontType":3,
+ "germanText":"DRAGON SPIRIT Medley",
+ "germanFontType":3,
+ "spanishText":"DRAGON SPIRIT Medley",
+ "spanishFontType":3,
+ "chineseTText":"DRAGON SPIRIT組曲",
+ "chineseTFontType":1,
+ "koreanText":"DRAGON SPIRIT 메들리",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_drsp",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_drsp",
+ "japaneseText":"",
+ "englishUsText":"ドラゴンスピリットメドレー",
+ "englishUsFontType":0,
+ "frenchText":"ドラゴンスピリットメドレー",
+ "frenchFontType":0,
+ "italianText":"ドラゴンスピリットメドレー",
+ "italianFontType":0,
+ "germanText":"ドラゴンスピリットメドレー",
+ "germanFontType":0,
+ "spanishText":"ドラゴンスピリットメドレー",
+ "spanishFontType":0,
+ "chineseTText":"ドラゴンスピリットメドレー",
+ "chineseTFontType":0,
+ "koreanText":"ドラゴンスピリットメドレー",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_pkm123",
+ "japaneseText":"楽曲「1・2・3」配信中",
+ "englishUsText":"1・2・3 song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「1・2・3」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「1・2・3」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_rockpack",
+ "japaneseText":"「ロックミュージックパック」配信中",
+ "englishUsText":"Rock Music Pack now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「搖滾音樂 Pack」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「Rock Music Pack」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_vocaropack05",
+ "japaneseText":"「ボーカロイド™曲パックVol.5」配信中",
+ "englishUsText":"VOCALOID™ Music Pack Vol. 5 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「VOCALOID™ Music PackVol.5」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「VOCALOID™ Music Pack Vol.5」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_139",
+ "japaneseText":"6500万年前から こんにちは",
+ "englishUsText":"Hello from sixty-five million years ago!",
+ "englishUsFontType":3,
+ "frenchText":"Je vous salue de soixante-cinq millions d'années en arrière !",
+ "frenchFontType":3,
+ "italianText":"Ciao, da 65 milioni di anni fa!",
+ "italianFontType":3,
+ "germanText":"Hallo von vor 65 Millionen Jahren!",
+ "germanFontType":3,
+ "spanishText":"¡Saludos desde hace sesenta y cinco millones de años!",
+ "spanishFontType":3,
+ "chineseTText":"來自6500萬年前的問候",
+ "chineseTFontType":1,
+ "koreanText":"6500만년 전에서 안녕하세요",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_140",
+ "japaneseText":"古代の王者だ!",
+ "englishUsText":"Ruler of the Ancient World",
+ "englishUsFontType":3,
+ "frenchText":"Dirigeant de l'Ancien Monde",
+ "frenchFontType":3,
+ "italianText":"Dominatore del mondo antico",
+ "italianFontType":3,
+ "germanText":"Herrscher der alten Welt",
+ "germanFontType":3,
+ "spanishText":"Soberano del mundo antiguo",
+ "spanishFontType":3,
+ "chineseTText":"是古代的王者!",
+ "chineseTFontType":1,
+ "koreanText":"고대의 왕이다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_141",
+ "japaneseText":"ドンカツザウルス登場!",
+ "englishUsText":"DON-KATSUSAURUS is on the loose!",
+ "englishUsFontType":3,
+ "frenchText":"DON-KATSUSAURUS est en cavale !",
+ "frenchFontType":3,
+ "italianText":"DON-KATSUSAURUS è in libertà!",
+ "italianFontType":3,
+ "germanText":"DON-KATSUSAURUS läuft frei herum!",
+ "germanFontType":3,
+ "spanishText":"¡DON-KATSUSAURUS anda suelto!",
+ "spanishFontType":3,
+ "chineseTText":"咚咔龍登場!",
+ "chineseTFontType":1,
+ "koreanText":"동이딱이사우루스 등장!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_tadkim",
+ "japaneseText":"ただ君に晴れ",
+ "englishUsText":"Cloudless",
+ "englishUsFontType":3,
+ "frenchText":"Cloudless",
+ "frenchFontType":3,
+ "italianText":"Cloudless",
+ "italianFontType":3,
+ "germanText":"Cloudless",
+ "germanFontType":3,
+ "spanishText":"Cloudless",
+ "spanishFontType":3,
+ "chineseTText":"僅予以你的晴天",
+ "chineseTFontType":1,
+ "koreanText":"Cloudless",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_tadkim",
+ "japaneseText":"ヨルシカ",
+ "englishUsText":"YORUSHIKA",
+ "englishUsFontType":3,
+ "frenchText":"YORUSHIKA",
+ "frenchFontType":3,
+ "italianText":"YORUSHIKA",
+ "italianFontType":3,
+ "germanText":"YORUSHIKA",
+ "germanFontType":3,
+ "spanishText":"YORUSHIKA",
+ "spanishFontType":3,
+ "chineseTText":"YORUSHIKA",
+ "chineseTFontType":1,
+ "koreanText":"YORUSHIKA",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_tadkim",
+ "japaneseText":"",
+ "englishUsText":"ただ君に晴れ",
+ "englishUsFontType":0,
+ "frenchText":"ただ君に晴れ",
+ "frenchFontType":0,
+ "italianText":"ただ君に晴れ",
+ "italianFontType":0,
+ "germanText":"ただ君に晴れ",
+ "germanFontType":0,
+ "spanishText":"ただ君に晴れ",
+ "spanishFontType":0,
+ "chineseTText":"ただ君に晴れ",
+ "chineseTFontType":0,
+ "koreanText":"ただ君に晴れ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_yeswea",
+ "japaneseText":"Yes we are",
+ "englishUsText":"Yes we are",
+ "englishUsFontType":3,
+ "frenchText":"Yes we are",
+ "frenchFontType":3,
+ "italianText":"Yes we are",
+ "italianFontType":3,
+ "germanText":"Yes we are",
+ "germanFontType":3,
+ "spanishText":"Yes we are",
+ "spanishFontType":3,
+ "chineseTText":"Yes we are",
+ "chineseTFontType":1,
+ "koreanText":"Yes we are",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_yeswea",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_yeswea",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_jojo",
+ "japaneseText":"気分上々↑↑",
+ "englishUsText":"Kibun Joujou↑↑",
+ "englishUsFontType":3,
+ "frenchText":"Kibun Joujou↑↑",
+ "frenchFontType":3,
+ "italianText":"Kibun Joujou↑↑",
+ "italianFontType":3,
+ "germanText":"Kibun Joujou↑↑",
+ "germanFontType":3,
+ "spanishText":"Kibun Joujou↑↑",
+ "spanishFontType":3,
+ "chineseTText":"心情high翻天↑↑",
+ "chineseTFontType":1,
+ "koreanText":"기분업업↑↑",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_jojo",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_jojo",
+ "japaneseText":"",
+ "englishUsText":"気分上々↑↑",
+ "englishUsFontType":0,
+ "frenchText":"気分上々↑↑",
+ "frenchFontType":0,
+ "italianText":"気分上々↑↑",
+ "italianFontType":0,
+ "germanText":"気分上々↑↑",
+ "germanFontType":0,
+ "spanishText":"気分上々↑↑",
+ "spanishFontType":0,
+ "chineseTText":"気分上々↑↑",
+ "chineseTFontType":0,
+ "koreanText":"気分上々↑↑",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ezdo",
+ "japaneseText":"EZ DO DANCE",
+ "englishUsText":"EZ DO DANCE",
+ "englishUsFontType":3,
+ "frenchText":"EZ DO DANCE",
+ "frenchFontType":3,
+ "italianText":"EZ DO DANCE",
+ "italianFontType":3,
+ "germanText":"EZ DO DANCE",
+ "germanFontType":3,
+ "spanishText":"EZ DO DANCE",
+ "spanishFontType":3,
+ "chineseTText":"EZ DO DANCE",
+ "chineseTFontType":1,
+ "koreanText":"EZ DO DANCE",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ezdo",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ezdo",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_pacm40",
+ "japaneseText":"JOIN THE PAC -太鼓の達人 Ver.-",
+ "englishUsText":"JOIN THE PAC -Taiko No Tatsujin Ver.-",
+ "englishUsFontType":3,
+ "frenchText":"JOIN THE PAC -Taiko No Tatsujin Ver.-",
+ "frenchFontType":3,
+ "italianText":"JOIN THE PAC -Taiko No Tatsujin Ver.-",
+ "italianFontType":3,
+ "germanText":"JOIN THE PAC -Taiko No Tatsujin Ver.-",
+ "germanFontType":3,
+ "spanishText":"JOIN THE PAC -Taiko No Tatsujin Ver.-",
+ "spanishFontType":3,
+ "chineseTText":"JOIN THE PAC -太鼓之達人 Ver.-",
+ "chineseTFontType":1,
+ "koreanText":"JOIN THE PAC -태고의 달인 Ver.-",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_pacm40",
+ "japaneseText":"パックマン40周年公式テーマ楽曲",
+ "englishUsText":"Official Theme Song for PAC-MAN 40th Anniversary",
+ "englishUsFontType":3,
+ "frenchText":"Official Theme Song for PAC-MAN 40th Anniversary",
+ "frenchFontType":3,
+ "italianText":"Official Theme Song for PAC-MAN 40th Anniversary",
+ "italianFontType":3,
+ "germanText":"Official Theme Song for PAC-MAN 40th Anniversary",
+ "germanFontType":3,
+ "spanishText":"Official Theme Song for PAC-MAN 40th Anniversary",
+ "spanishFontType":3,
+ "chineseTText":"PAC-MAN 40周年官方主題曲",
+ "chineseTFontType":1,
+ "koreanText":"PAC-MAN 40주년 공식 테마곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_pacm40",
+ "japaneseText":"",
+ "englishUsText":"JOIN THE PAC -太鼓の達人 Ver.-",
+ "englishUsFontType":0,
+ "frenchText":"JOIN THE PAC -太鼓の達人 Ver.-",
+ "frenchFontType":0,
+ "italianText":"JOIN THE PAC -太鼓の達人 Ver.-",
+ "italianFontType":0,
+ "germanText":"JOIN THE PAC -太鼓の達人 Ver.-",
+ "germanFontType":0,
+ "spanishText":"JOIN THE PAC -太鼓の達人 Ver.-",
+ "spanishFontType":0,
+ "chineseTText":"JOIN THE PAC -太鼓の達人 Ver.-",
+ "chineseTFontType":0,
+ "koreanText":"JOIN THE PAC -太鼓の達人 Ver.-",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_tadkim",
+ "japaneseText":"楽曲「ただ君に晴れ」配信中",
+ "englishUsText":"Cloudless song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「僅予以你的晴天」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Cloudless」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_dancepack",
+ "japaneseText":"「ダンスミュージックパック」配信中",
+ "englishUsText":"Dance Music Pack now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「熱舞音樂Pack」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「Dance Music Pack」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_pacm40",
+ "japaneseText":"楽曲「JOIN THE PAC -太鼓の達人 Ver.-」配信中",
+ "englishUsText":"JOIN THE PAC -Taiko No Tatsujin Ver.- song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「JOIN THE PAC -太鼓之達人 Ver.-」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「JOIN THE PAC -태고의 달인 Ver.-」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_142",
+ "japaneseText":"ハッピー・ハロウィン!",
+ "englishUsText":"Happy Halloween!",
+ "englishUsFontType":3,
+ "frenchText":"Joyeux Halloween !",
+ "frenchFontType":3,
+ "italianText":"Buon Halloween!",
+ "italianFontType":3,
+ "germanText":"Fröhliches Halloween!",
+ "germanFontType":3,
+ "spanishText":"¡Feliz Halloween!",
+ "spanishFontType":3,
+ "chineseTText":"萬聖節快樂!",
+ "chineseTFontType":1,
+ "koreanText":"해피 할로윈!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_143",
+ "japaneseText":"おかしを食べればいいじゃない!",
+ "englishUsText":"It's fine if I get to eat candy! ",
+ "englishUsFontType":3,
+ "frenchText":"C'est cool si je peux manger des bonbons ! ",
+ "frenchFontType":3,
+ "italianText":"Basta che ci siano le caramelle! ",
+ "italianFontType":3,
+ "germanText":"Alles gut, solange ich Süßes essen kann!",
+ "germanFontType":3,
+ "spanishText":"Si puedo comer caramelos, ¡no pasa nada! ",
+ "spanishFontType":3,
+ "chineseTText":"讓你們吃糖果好了!",
+ "chineseTFontType":1,
+ "koreanText":"과자를 먹으면 되잖아!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_144",
+ "japaneseText":"はい、そこ魔女が通りま~す!",
+ "englishUsText":"Make way, witch coming through!",
+ "englishUsFontType":3,
+ "frenchText":"Faites place, la sorcière arrive !",
+ "frenchFontType":3,
+ "italianText":"Fate largo, arriva la strega!",
+ "italianFontType":3,
+ "germanText":"Lasst mich durch, ich bin eine Hexe!",
+ "germanFontType":3,
+ "spanishText":"¡Abrid paso, que viene la bruja!",
+ "spanishFontType":3,
+ "chineseTText":"讓開,女巫要通過了~!",
+ "chineseTFontType":1,
+ "koreanText":"비켜요, 마녀가 지나갑니다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"privatematch_title",
+ "japaneseText":"プライベートマッチ",
+ "englishUsText":"Private Match",
+ "englishUsFontType":3,
+ "frenchText":"Match privé",
+ "frenchFontType":3,
+ "italianText":"Partita privata",
+ "italianFontType":3,
+ "germanText":"Private Partie",
+ "germanFontType":3,
+ "spanishText":"Partida privada",
+ "spanishFontType":3,
+ "chineseTText":"私人對戰",
+ "chineseTFontType":1,
+ "koreanText":"프라이빗 매치",
+ "koreanFontType":2
+ },
+ {
+ "key":"privatematch_menu_make_session",
+ "japaneseText":"パスワードをつくる",
+ "englishUsText":"Set Passcode",
+ "englishUsFontType":3,
+ "frenchText":"Définir le code confidentiel",
+ "frenchFontType":3,
+ "italianText":"Imposta la password",
+ "italianFontType":3,
+ "germanText":"Passwort festlegen",
+ "germanFontType":3,
+ "spanishText":"Establecer código",
+ "spanishFontType":3,
+ "chineseTText":"建立密碼",
+ "chineseTFontType":1,
+ "koreanText":"비밀번호를 만든다",
+ "koreanFontType":2
+ },
+ {
+ "key":"privatematch_menu_find_session",
+ "japaneseText":"パスワードをさがす",
+ "englishUsText":"Search by Passcode",
+ "englishUsFontType":3,
+ "frenchText":"Chercher par code confidentiel",
+ "frenchFontType":3,
+ "italianText":"Ricerca per password",
+ "italianFontType":3,
+ "germanText":"Nach Passwort filtern",
+ "germanFontType":3,
+ "spanishText":"Buscar por código",
+ "spanishFontType":3,
+ "chineseTText":"搜尋密碼",
+ "chineseTFontType":1,
+ "koreanText":"비밀번호를 찾는다",
+ "koreanFontType":2
+ },
+ {
+ "key":"privatematch_push_tenkey",
+ "japaneseText":"入力",
+ "englishUsText":"Edit",
+ "englishUsFontType":3,
+ "frenchText":"Modifier",
+ "frenchFontType":3,
+ "italianText":"Modifica",
+ "italianFontType":3,
+ "germanText":"Bearbeiten",
+ "germanFontType":3,
+ "spanishText":"Editar",
+ "spanishFontType":3,
+ "chineseTText":"輸入",
+ "chineseTFontType":1,
+ "koreanText":"입력",
+ "koreanFontType":2
+ },
+ {
+ "key":"privatematch_tutorial_title",
+ "japaneseText":"プライベートマッチのあそびかた",
+ "englishUsText":"Private Match Tutorial",
+ "englishUsFontType":3,
+ "frenchText":"Didacticiel de Match privé",
+ "frenchFontType":3,
+ "italianText":"Tutorial Partita privata",
+ "italianFontType":3,
+ "germanText":"Tutorial: Private Partie",
+ "germanFontType":3,
+ "spanishText":"Tutorial de Partida privada",
+ "spanishFontType":3,
+ "chineseTText":"私人對戰的玩法",
+ "chineseTFontType":1,
+ "koreanText":"프라이빗 매치 플레이 방법",
+ "koreanFontType":2
+ },
+ {
+ "key":"privatematch_tutorial_page01",
+ "japaneseText":"■「プライベートマッチ」は全世界のともだちと\n なかよく演奏や演奏対決を楽しめるモードだよ\n\n■「パスワード」を合わせることで、ともだちとマッチングができるよ\n\n■いろいろな曲、むずかしさ、ルールであそぶことができるよ\n\n■曲、ルールは交互にえらぶことができるよ\n ともだちにまかせてしまうこともできるよ\n\n■演奏中に「-/+ボタン」を押したままにすると「リタイア」できるよ\n",
+ "englishUsText":"-Private Match is a mode that lets you play Co-Op Session and VS Match games against friends all over the world. \n\n-You can match with friends by using Passcodes.\n\n-Enjoy a variety of song, difficulty, and rule options.\n\n-You can take turns choosing songs and rules.\nOr, you can leave it up to your friend!\n\n-You can Retire from a match by holding the -/+ buttons.",
+ "englishUsFontType":3,
+ "frenchText":" - Match privé est un mode permettant de jouer en Session coop ou en Match VS contre des amis du monde entier. \n\n - Tu peux retrouver tes amis à l'aide de codes confidentiels.\n\n - Profite de toutes sortes de chansons, difficultés et options de règles.\n\n - Ton ami et toi choisissez les chansons et les règles chacun à votre tour.\n Mais tu peux aussi le laisser décider !\n\n - Tu peux te retirer d'une partie en maintenant les boutons -/+.",
+ "frenchFontType":3,
+ "italianText":" - La modalità Partita privata consente di giocare in cooperativa e in partite VS contro amici in tutto il mondo. \n\n - È possibile giocare con determinati amici usando le password.\n\n - Divertiti con una varietà di canzoni, regole e livelli di difficoltà.\n\n - Canzoni e regole possono essere scelte a turno dai giocatori.\n Oppure lascia che sia il tuo amico a decidere tutto!\n\n - È possibile ritirarsi tenendo premuto -/+.",
+ "italianFontType":3,
+ "germanText":" - In privaten Partien kannst du Koop-Sessions und VS-Partien gegen Freunde auf der ganzen Welt spielen.\n\n - Du kannst deine Freunde mithilfe von Passwörtern finden.\n\n - Nutze eine Reihe von Song-, Schwierigkeitsgrad- und Regeloptionen.\n\n - Beide Spieler können abwechselnd Songs und Regeln aussuchen.\n Oder du überlässt das immer deinem Freund!\n\n - Du kannst die Partie durch Halten der -/+-Knöpfe verlassen.",
+ "germanFontType":3,
+ "spanishText":" - Partida privada es un modo que te permite jugar en Partida colaborativa y en Combate contra amigos de todo el mundo. \n\n - Puedes emparejarte con tus amigos usando códigos.\n\n - Disfruta de una variedad de opciones musicales, de dificultad y de reglas.\n\n - Podéis turnaros para elegir las canciones y las reglas.\n ¡O puedes dejar que tu amigo decida!\n\n - Para retirarte de una partida, mantén los botones -/+.",
+ "spanishFontType":3,
+ "chineseTText":"■「私人對戰」是與全世界的好友遊玩\n 同樂演奏或演奏對決的模式!\n\n■配合「密碼」就能與好友進行配對\n\n■可選擇各種歌曲、難度、規則進行遊玩\n\n■可互相選擇樂曲、規則!\n 也能交由好友決定\n\n■在演奏中按住「-/+鍵」能夠進行「棄權」",
+ "chineseTFontType":1,
+ "koreanText":"■「프라이빗 매치」는 전 세계의 친구들과\n사이좋게 연주하거나 연주 대결을 즐길 수 있는 모드야\n\n■「비밀번호」를 맞춰 친구와 매칭할 수 있어\n\n■다양한 곡, 난이도, 룰로 플레이할 수 있어\n\n■연주할 곡과 룰은 교대로 고를 수 있어\n친구에게 맡길 수도 있어\n\n■ 연주 중에 「-/+ 버튼」을 길게 누르고 있으면 「포기」할 수 있어",
+ "koreanFontType":2
+ },
+ {
+ "key":"privatematch_matching_wait",
+ "japaneseText":"ともだちをまっています",
+ "englishUsText":"Waiting for your friend...",
+ "englishUsFontType":3,
+ "frenchText":"En attente de ton ami...",
+ "frenchFontType":3,
+ "italianText":"In attesa del tuo amico...",
+ "italianFontType":3,
+ "germanText":"Auf Freund warten ...",
+ "germanFontType":3,
+ "spanishText":"Esperando a tu amigo...",
+ "spanishFontType":3,
+ "chineseTText":"等待好友中",
+ "chineseTFontType":1,
+ "koreanText":"친구를 기다리고 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"privatematch_looking_wait",
+ "japaneseText":"ともだちをさがしています",
+ "englishUsText":"Searching for your friend...",
+ "englishUsFontType":3,
+ "frenchText":"Recherche de ton ami...",
+ "frenchFontType":3,
+ "italianText":"Ricerca dell'amico in corso...",
+ "italianFontType":3,
+ "germanText":"Nach Freund suchen ...",
+ "germanFontType":3,
+ "spanishText":"Buscando a tu amigo...",
+ "spanishFontType":3,
+ "chineseTText":"搜尋好友中",
+ "chineseTFontType":1,
+ "koreanText":"친구를 찾고 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"privatematch_looking_miss",
+ "japaneseText":"部屋が見つかりませんでした\nもう一度さがしますか?",
+ "englishUsText":"Could not find a room.\nSearch again?",
+ "englishUsFontType":3,
+ "frenchText":"Impossible de trouver un salon.\nChercher de nouveau ?",
+ "frenchFontType":3,
+ "italianText":"Nessuna stanza trovata.\nRipetere la ricerca?",
+ "italianFontType":3,
+ "germanText":"Raum konnte nicht gefunden werden.\nErneut suchen?",
+ "germanFontType":3,
+ "spanishText":"No se ha encontrado ninguna sala.\n¿Quieres buscar otra vez?",
+ "spanishFontType":3,
+ "chineseTText":"沒有找到房間,\n請問要再搜尋一次嗎?",
+ "chineseTFontType":1,
+ "koreanText":"방을 찾지 못했습니다\n한 번 더 찾을까요?",
+ "koreanFontType":2
+ },
+ {
+ "key":"privatematch_cedecontrol",
+ "japaneseText":"そうさをゆずる",
+ "englishUsText":"Give Control",
+ "englishUsFontType":3,
+ "frenchText":"Donner le contrôle",
+ "frenchFontType":3,
+ "italianText":"Cedi il controllo",
+ "italianFontType":3,
+ "germanText":"Kontrolle übergeben",
+ "germanFontType":3,
+ "spanishText":"Ceder control",
+ "spanishFontType":3,
+ "chineseTText":"轉讓操作權",
+ "chineseTFontType":1,
+ "koreanText":"조작을 맡긴다",
+ "koreanFontType":2
+ },
+ {
+ "key":"privatematch_controller_msg01",
+ "japaneseText":"そうさできます",
+ "englishUsText":"You’re in Control!",
+ "englishUsFontType":3,
+ "frenchText":"Tu gères le salon !",
+ "frenchFontType":3,
+ "italianText":"Hai tu il controllo!",
+ "italianFontType":3,
+ "germanText":"Du hast die Kontrolle!",
+ "germanFontType":3,
+ "spanishText":"¡Tú tienes el control!",
+ "spanishFontType":3,
+ "chineseTText":"我方可操作",
+ "chineseTFontType":1,
+ "koreanText":"조작할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"privatematch_controller_msg02",
+ "japaneseText":"ともだちがそうさしています",
+ "englishUsText":"Your friend’s in Control!",
+ "englishUsFontType":3,
+ "frenchText":"Ton ami gère le salon !",
+ "frenchFontType":3,
+ "italianText":"Il tuo amico ha il controllo!",
+ "italianFontType":3,
+ "germanText":"Dein Freund hat die Kontrolle!",
+ "germanFontType":3,
+ "spanishText":"¡Tu amigo tiene el control!",
+ "spanishFontType":3,
+ "chineseTText":"好友操作中",
+ "chineseTFontType":1,
+ "koreanText":"친구가 조작하고 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"privatematch_cancel_msg01",
+ "japaneseText":"あそぶのをやめて「プライベートマッチトップ」にもどりますか?",
+ "englishUsText":"Stop playing and return to Private Match Top Menu?",
+ "englishUsFontType":3,
+ "frenchText":"Arrêter de jouer et retourner au menu du Match privé ?",
+ "frenchFontType":3,
+ "italianText":"Interrompere la partita e tornare al menu principale di Partita privata?",
+ "italianFontType":3,
+ "germanText":"Spiel verlassen und ins Private-Partie-Menü?",
+ "germanFontType":3,
+ "spanishText":"¿Quieres dejar de jugar y volver al menú de Partida privada?",
+ "spanishFontType":3,
+ "chineseTText":"要結束遊戲並返回「私人對戰首頁」嗎?",
+ "chineseTFontType":1,
+ "koreanText":"플레이를 그만두고 「프라이빗 매치」 메인 화면으로 돌아가겠습니까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"privatematch_cancel_msg02",
+ "japaneseText":"ともだちがあそぶのをやめました",
+ "englishUsText":"Your friend stopped playing.",
+ "englishUsFontType":3,
+ "frenchText":"Ton ami a arrêté de jouer.",
+ "frenchFontType":3,
+ "italianText":"Il tuo amico ha smesso di giocare.",
+ "italianFontType":3,
+ "germanText":"Dein Freund spielt nicht mehr.",
+ "germanFontType":3,
+ "spanishText":"Tu amigo ha dejado de jugar.",
+ "spanishFontType":3,
+ "chineseTText":"結束與好友的遊戲",
+ "chineseTFontType":1,
+ "koreanText":"친구가 플레이를 그만뒀습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"privatematch_cedecontrol_msg01",
+ "japaneseText":"ともだちにそうさをしてもらいますか?",
+ "englishUsText":"Give Control to your friend?",
+ "englishUsFontType":3,
+ "frenchText":"Donner le contrôle à ton ami ?",
+ "frenchFontType":3,
+ "italianText":"Vuoi cedere il controllo al tuo amico?",
+ "italianFontType":3,
+ "germanText":"Kontrolle an deinen Freund übergeben?",
+ "germanFontType":3,
+ "spanishText":"¿Quieres cederle el control a tu amigo?",
+ "spanishFontType":3,
+ "chineseTText":"您要把操作權轉交給好友嗎?",
+ "chineseTFontType":1,
+ "koreanText":"친구에게 조작을 부탁하겠습니까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"privatematch_cedecontrol_msg02",
+ "japaneseText":"ともだちからそうさをたのまれました",
+ "englishUsText":"Your friend gave you Control!",
+ "englishUsFontType":3,
+ "frenchText":"Ton ami t'a donné le contrôle !",
+ "frenchFontType":3,
+ "italianText":"Il tuo amico ti ha ceduto il controllo!",
+ "italianFontType":3,
+ "germanText":"Dein Freund hat dir die Kontrolle übergeben!",
+ "germanFontType":3,
+ "spanishText":"¡Tu amigo te ha cedido el control!",
+ "spanishFontType":3,
+ "chineseTText":"已由好友委任我方操作",
+ "chineseTFontType":1,
+ "koreanText":"친구가 조작을 부탁했습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"privatematch_taikai_setting",
+ "japaneseText":"大会設定",
+ "englishUsText":"Tournament Settings",
+ "englishUsFontType":3,
+ "frenchText":"Paramètres du Tournoi",
+ "frenchFontType":3,
+ "italianText":"Impostazioni del torneo",
+ "italianFontType":3,
+ "germanText":"Turnieroptionen",
+ "germanFontType":3,
+ "spanishText":"Ajustes del torneo",
+ "spanishFontType":3,
+ "chineseTText":"大會設定",
+ "chineseTFontType":1,
+ "koreanText":"대회 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"privatematch_course_msg",
+ "japaneseText":"「むずかしさ」はともだちと同じになります",
+ "englishUsText":"Difficulty level will be the same as your friend.",
+ "englishUsFontType":3,
+ "frenchText":"Difficulté J2 = celle de J1",
+ "frenchFontType":3,
+ "italianText":"Difficoltà G2 uguale a quella del G1",
+ "italianFontType":3,
+ "germanText":"Der Schwierigkeitsgrad wird dem deines Freunds angepasst.",
+ "germanFontType":3,
+ "spanishText":"La dificultad será la misma que la de tu amigo.",
+ "spanishFontType":3,
+ "chineseTText":"「難度」變為與好友相同",
+ "chineseTFontType":1,
+ "koreanText":"「난이도」 는 친구와 똑같게 설정됩니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"privatematch_course_msg02",
+ "japaneseText":"ともだちと\n同じになるよ",
+ "englishUsText":"Same As Friend",
+ "englishUsFontType":3,
+ "frenchText":"Comme ton ami",
+ "frenchFontType":3,
+ "italianText":"Come il tuo amico",
+ "italianFontType":3,
+ "germanText":"Genau wie bei deinem Freund",
+ "germanFontType":3,
+ "spanishText":"Igual que tu amigo",
+ "spanishFontType":3,
+ "chineseTText":"變為與好友相同",
+ "chineseTFontType":1,
+ "koreanText":"친구와 똑같은\n난이도가 돼",
+ "koreanFontType":2
+ },
+ {
+ "key":"privatematch_network_error_msg",
+ "japaneseText":"ともだちに通信エラーが発生しました",
+ "englishUsText":"There was a communication error with your friend.",
+ "englishUsFontType":3,
+ "frenchText":"Une erreur de communication est survenue avec ton ami.",
+ "frenchFontType":3,
+ "italianText":"Si è verificato un errore di comunicazione con il tuo amico.",
+ "italianFontType":3,
+ "germanText":"Ein Kommunikationsfehler ist aufgetreten.",
+ "germanFontType":3,
+ "spanishText":"Se ha producido un error de comunicación con tu amigo.",
+ "spanishFontType":3,
+ "chineseTText":"好友發生了連線錯誤",
+ "chineseTFontType":1,
+ "koreanText":"친구에게 통신 에러가 발생했습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips074",
+ "japaneseText":"プライベートマッチは「タッチ太鼓」でもあそべるよ!\n「ゲーム設定」の「タッチ太鼓の表示設定」で設定してね!",
+ "englishUsText":"Play with the Touch Drum in Private Matches!\nGo to Game Settings > Show/Hide Touch Drum.",
+ "englishUsFontType":3,
+ "frenchText":"Joue avec le tambour tactile dans les Matchs privés !\nParamètres de jeu > Afficher/Masquer tambour tactile.",
+ "frenchFontType":3,
+ "italianText":"Gioca con il tamburo touch in Partita privata!\nVai in Impostazioni > Mostra/Nascondi tamburo touch.",
+ "italianFontType":3,
+ "germanText":"Spiele mit der Touch-Trommel in privaten Partien!\nGehe zu Spieleinstellungen > Touch-Trommel anzeigen.",
+ "germanFontType":3,
+ "spanishText":"¡Juega con el tambor táctil en las Partidas privadas!\nVe a Ajustes del juego > Mostrar/Ocultar tambor táctil.",
+ "spanishFontType":3,
+ "chineseTText":"私人對戰也能用「觸控太鼓」進行遊玩!\n請從「遊戲設定」中的「觸控太鼓的顯示設定」進行設定!",
+ "chineseTFontType":1,
+ "koreanText":"프라이빗 매치는 「터치 북」으로도 플레이할 수 있어!\n「게임 설정」의 「터치 북 표시 설정」에서 설정해줘!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips075",
+ "japaneseText":"プライベートマッチで遊ぶと「ごほうびポイント」がもらえるよ!\n「ごほうびポイント」をためると「プレイヤーアイコン」などがもらえるよ!",
+ "englishUsText":"Earn Reward Points in Private Matches!\nSave up Reward Points to get new Player Icons and other rewards!",
+ "englishUsFontType":3,
+ "frenchText":"Gagne une Prime de points dans les Matchs privés !\nAccumule-les pour rafler plus d'Icônes de joueur et d'autres récompenses !",
+ "frenchFontType":3,
+ "italianText":"Ottieni punti ricompensa con Partita privata!\nSpendili per ottenere nuove icone giocatore e altre ricompense!",
+ "italianFontType":3,
+ "germanText":"Es gibt in privaten Partien Belohnungspunkte!\nMit Belohnungspunkten kannst du neue Spielersymbole freischalten!",
+ "germanFontType":3,
+ "spanishText":"¡Gana puntos de recompensa en las Partidas privadas!\n¡Ahorra puntos de recompensa para conseguir nuevos iconos y otras recompensas!",
+ "spanishFontType":3,
+ "chineseTText":"將依私人對戰的結果取得「獎勵點數」!\n累積「獎勵點數」就能取得「玩家圖示」等獎勵!",
+ "chineseTFontType":1,
+ "koreanText":"프라이빗 매치를 플레이하면 「보상 포인트」를 받을 수 있어!\n「보상 포인트」를 모으면 「플레이어 아이콘」 등을 받을 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips076",
+ "japaneseText":"演奏中に「-/+ボタン」を押したままにすると「リタイア」できるよ",
+ "englishUsText":"You can Retire from a match by holding the -/+ buttons.",
+ "englishUsFontType":3,
+ "frenchText":"Tu peux te retirer d'une partie en maintenant les boutons -/+.",
+ "frenchFontType":3,
+ "italianText":"Puoi ritirarti premendo -/+.",
+ "italianFontType":3,
+ "germanText":"Halte -/+ während einer Partie, um aufzugeben.",
+ "germanFontType":3,
+ "spanishText":"Para retirarte de una partida, mantén los botones -/+.",
+ "spanishFontType":3,
+ "chineseTText":"在演奏中按住「-/+鍵」能夠進行「棄權」。",
+ "chineseTFontType":1,
+ "koreanText":"연주 중에 「-/+ 버튼」을 길게 누르고 있으면 「포기」할 수 있어",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips077",
+ "japaneseText":"プライベートマッチはダウンロードコンテンツ曲でもあそべるよ!\n※一部、選べないダウンロードコンテンツ曲もあります",
+ "englishUsText":"You can play downloaded songs in Private Matches, too! \n Please note that some DLC songs cannot be chosen.",
+ "englishUsFontType":3,
+ "frenchText":"Tu peux aussi jouer des chansons téléchargées en Match privé ! \nRemarque : certaines chansons DLC ne seront pas sélectionnables.",
+ "frenchFontType":3,
+ "italianText":"Puoi scegliere le canzoni per Partita privata anche tra le canzoni scaricate! \n(Alcune canzoni dai DLC sono escluse).",
+ "italianFontType":3,
+ "germanText":"Du kannst in privaten Partien auch heruntergeladene Songs spielen!\nBitte beachte, dass du manche DLC Songs nicht auswählen kannst.",
+ "germanFontType":3,
+ "spanishText":"¡También puedes escuchar canciones descargadas en las Partidas privadas! \nNo podrás elegir algunas de las canciones de contenido descargable.",
+ "spanishFontType":3,
+ "chineseTText":"私人對戰也可遊玩身為下載項目的樂曲!\n※也存在著一部分無法選擇的下載樂曲",
+ "chineseTFontType":1,
+ "koreanText":"프라이빗 매치에서는 다운로드 콘텐츠 곡도 플레이할 수 있어!\n※일부, 고를 수 없는 곡도 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips078",
+ "japaneseText":"曲、ルールは交互にえらぶことができるよ!\nともだちにまかせてしまうこともできるよ",
+ "englishUsText":"You can take turns choosing songs and rules.\nOr, you can leave it up to your friend!",
+ "englishUsFontType":3,
+ "frenchText":"Ton ami et toi choisissez les chansons et les règles chacun à votre tour.\nMais tu peux aussi le laisser décider !",
+ "frenchFontType":3,
+ "italianText":"Potete scegliere canzoni e regole a turno.\nOppure, lascia decidere il tuo amico!",
+ "italianFontType":3,
+ "germanText":"Beide Spieler können abwechselnd Songs und Regeln aussuchen.\nOder du überlässt das immer deinem Freund!",
+ "germanFontType":3,
+ "spanishText":"Podéis turnaros para elegir las canciones y las reglas.\n¡O puedes dejar que tu amigo decida!",
+ "spanishFontType":3,
+ "chineseTText":"可互相選擇樂曲、規則!\n也能交由好友決定",
+ "chineseTFontType":1,
+ "koreanText":"연주할 곡과 룰은 교대로 고를 수 있어!\n친구에게 맡길 수도 있어",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_helhal",
+ "japaneseText":"ハロー! ハロウィン",
+ "englishUsText":"Hello! Halloween",
+ "englishUsFontType":3,
+ "frenchText":"Hello! Halloween",
+ "frenchFontType":3,
+ "italianText":"Hello! Halloween",
+ "italianFontType":3,
+ "germanText":"Hello! Halloween",
+ "germanFontType":3,
+ "spanishText":"Hello! Halloween",
+ "spanishFontType":3,
+ "chineseTText":"Hello! Halloween",
+ "chineseTFontType":1,
+ "koreanText":"Hello! Halloween",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_helhal",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_helhal",
+ "japaneseText":"",
+ "englishUsText":"ハロー! ハロウィン",
+ "englishUsFontType":0,
+ "frenchText":"ハロー! ハロウィン",
+ "frenchFontType":0,
+ "italianText":"ハロー! ハロウィン",
+ "italianFontType":0,
+ "germanText":"ハロー! ハロウィン",
+ "germanFontType":0,
+ "spanishText":"ハロー! ハロウィン",
+ "spanishFontType":0,
+ "chineseTText":"ハロー! ハロウィン",
+ "chineseTFontType":0,
+ "koreanText":"ハロー! ハロウィン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_magrec",
+ "japaneseText":"ごまかし",
+ "englishUsText":"Gomakashi",
+ "englishUsFontType":3,
+ "frenchText":"Gomakashi",
+ "frenchFontType":3,
+ "italianText":"Gomakashi",
+ "italianFontType":3,
+ "germanText":"Gomakashi",
+ "germanFontType":3,
+ "spanishText":"Gomakashi",
+ "spanishFontType":3,
+ "chineseTText":"Gomakashi",
+ "chineseTFontType":1,
+ "koreanText":"Gomakashi",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_magrec",
+ "japaneseText":"「マギアレコード 魔法少女まどか☆マギカ外伝」より",
+ "englishUsText":"From \" Magia Record: Puella Magi Madoka Magica Side Story \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Magia Record: Puella Magi Madoka Magica Side Story \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Magia Record: Puella Magi Madoka Magica Side Story \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Magia Record: Puella Magi Madoka Magica Side Story \"",
+ "germanFontType":3,
+ "spanishText":"De \" Magia Record: Puella Magi Madoka Magica Side Story \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「魔法紀錄 魔法少女小圓外傳」",
+ "chineseTFontType":1,
+ "koreanText":"\"마기아 레코드 마법소녀 마도카☆마기카 외전\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_magrec",
+ "japaneseText":"",
+ "englishUsText":"ごまかし",
+ "englishUsFontType":0,
+ "frenchText":"ごまかし",
+ "frenchFontType":0,
+ "italianText":"ごまかし",
+ "italianFontType":0,
+ "germanText":"ごまかし",
+ "germanFontType":0,
+ "spanishText":"ごまかし",
+ "spanishFontType":0,
+ "chineseTText":"ごまかし",
+ "chineseTFontType":0,
+ "koreanText":"ごまかし",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_maidra",
+ "japaneseText":"青空のラプソディ",
+ "englishUsText":"Aozora No RHAPSODY",
+ "englishUsFontType":3,
+ "frenchText":"Aozora No RHAPSODY",
+ "frenchFontType":3,
+ "italianText":"Aozora No RHAPSODY",
+ "italianFontType":3,
+ "germanText":"Aozora No RHAPSODY",
+ "germanFontType":3,
+ "spanishText":"Aozora No RHAPSODY",
+ "spanishFontType":3,
+ "chineseTText":"青空狂想曲",
+ "chineseTFontType":1,
+ "koreanText":"Aozora No Rhapsody",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_maidra",
+ "japaneseText":"TVアニメ「小林さんちのメイドラゴン」OP主題歌",
+ "englishUsText":"From \" Miss Kobayashi's Dragon Maid \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Miss Kobayashi's Dragon Maid \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Miss Kobayashi's Dragon Maid \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Miss Kobayashi's Dragon Maid \"",
+ "germanFontType":3,
+ "spanishText":"De \" Miss Kobayashi's Dragon Maid \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「小林家的龍女僕」",
+ "chineseTFontType":1,
+ "koreanText":"\"고바야시네 메이드래곤\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_maidra",
+ "japaneseText":"",
+ "englishUsText":"青空のラプソディ",
+ "englishUsFontType":0,
+ "frenchText":"青空のラプソディ",
+ "frenchFontType":0,
+ "italianText":"青空のラプソディ",
+ "italianFontType":0,
+ "germanText":"青空のラプソディ",
+ "germanFontType":0,
+ "spanishText":"青空のラプソディ",
+ "spanishFontType":0,
+ "chineseTText":"青空のラプソディ",
+ "chineseTFontType":0,
+ "koreanText":"青空のラプソディ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_rezero",
+ "japaneseText":"Paradisus‐Paradoxum",
+ "englishUsText":"Paradisus-Paradoxum",
+ "englishUsFontType":3,
+ "frenchText":"Paradisus-Paradoxum",
+ "frenchFontType":3,
+ "italianText":"Paradisus-Paradoxum",
+ "italianFontType":3,
+ "germanText":"Paradisus-Paradoxum",
+ "germanFontType":3,
+ "spanishText":"Paradisus-Paradoxum",
+ "spanishFontType":3,
+ "chineseTText":"Paradisus - Paradoxum",
+ "chineseTFontType":1,
+ "koreanText":"Paradisus - Paradoxum",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_rezero",
+ "japaneseText":"「Re:ゼロから始める異世界生活」より",
+ "englishUsText":"From \" Re:ZERO -Starting Life in Another World- \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Re:ZERO -Starting Life in Another World- \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Re:ZERO -Starting Life in Another World- \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Re:ZERO -Starting Life in Another World- \"",
+ "germanFontType":3,
+ "spanishText":"De \" Re:ZERO -Starting Life in Another World- \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「Re:從零開始的異世界生活」",
+ "chineseTFontType":1,
+ "koreanText":"\"Re:제로부터 시작하는 이세계 생활\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_rezero",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_rhope",
+ "japaneseText":"Rising Hope",
+ "englishUsText":"Rising Hope",
+ "englishUsFontType":3,
+ "frenchText":"Rising Hope",
+ "frenchFontType":3,
+ "italianText":"Rising Hope",
+ "italianFontType":3,
+ "germanText":"Rising Hope",
+ "germanFontType":3,
+ "spanishText":"Rising Hope",
+ "spanishFontType":3,
+ "chineseTText":"Rising Hope",
+ "chineseTFontType":1,
+ "koreanText":"Rising Hope",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_rhope",
+ "japaneseText":"「魔法科高校の劣等生」より",
+ "englishUsText":"From \" The irregular at magic high school \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" The irregular at magic high school \"",
+ "frenchFontType":3,
+ "italianText":"Da \" The irregular at magic high school \"",
+ "italianFontType":3,
+ "germanText":"Aus \" The irregular at magic high school \"",
+ "germanFontType":3,
+ "spanishText":"De \" The irregular at magic high school \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「魔法科高中的劣等生」",
+ "chineseTFontType":1,
+ "koreanText":"\"마법과고교의 열등생\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_rhope",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_railgn",
+ "japaneseText":"only my railgun",
+ "englishUsText":"only my railgun",
+ "englishUsFontType":3,
+ "frenchText":"only my railgun",
+ "frenchFontType":3,
+ "italianText":"only my railgun",
+ "italianFontType":3,
+ "germanText":"only my railgun",
+ "germanFontType":3,
+ "spanishText":"only my railgun",
+ "spanishFontType":3,
+ "chineseTText":"only my railgun",
+ "chineseTFontType":1,
+ "koreanText":"only my railgun",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_railgn",
+ "japaneseText":"「とある科学の超電磁砲」より",
+ "englishUsText":"From \" A CERTAIN SCIENTIFIC RAILGUN \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" A CERTAIN SCIENTIFIC RAILGUN \"",
+ "frenchFontType":3,
+ "italianText":"Da \" A CERTAIN SCIENTIFIC RAILGUN \"",
+ "italianFontType":3,
+ "germanText":"Aus \" A CERTAIN SCIENTIFIC RAILGUN \"",
+ "germanFontType":3,
+ "spanishText":"De \" A CERTAIN SCIENTIFIC RAILGUN \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「科學超電磁砲」",
+ "chineseTFontType":1,
+ "koreanText":"\"어떤 과학의 초전자포\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_railgn",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_dem31k",
+ "japaneseText":"Saika",
+ "englishUsText":"Saika",
+ "englishUsFontType":3,
+ "frenchText":"Saika",
+ "frenchFontType":3,
+ "italianText":"Saika",
+ "italianFontType":3,
+ "germanText":"Saika",
+ "germanFontType":3,
+ "spanishText":"Saika",
+ "spanishFontType":3,
+ "chineseTText":"Saika",
+ "chineseTFontType":1,
+ "koreanText":"Saika",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_dem31k",
+ "japaneseText":"Rabpit 「DEEMO」より",
+ "englishUsText":"Rabpit From \" DEEMO \"",
+ "englishUsFontType":3,
+ "frenchText":"Rabpit tiré de \" DEEMO \"",
+ "frenchFontType":3,
+ "italianText":"Rabpit da \" DEEMO \"",
+ "italianFontType":3,
+ "germanText":"Rabpit Aus \" DEEMO \"",
+ "germanFontType":3,
+ "spanishText":"Rabpit De \" DEEMO \"",
+ "spanishFontType":3,
+ "chineseTText":"Rabpit 來自「DEEMO」",
+ "chineseTFontType":1,
+ "koreanText":"Rabpit \"DEEMO\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_dem31k",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_demlev",
+ "japaneseText":"Leviathan",
+ "englishUsText":"Leviathan",
+ "englishUsFontType":3,
+ "frenchText":"Leviathan",
+ "frenchFontType":3,
+ "italianText":"Leviathan",
+ "italianFontType":3,
+ "germanText":"Leviathan",
+ "germanFontType":3,
+ "spanishText":"Leviathan",
+ "spanishFontType":3,
+ "chineseTText":"Leviathan",
+ "chineseTFontType":1,
+ "koreanText":"Leviathan",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_demlev",
+ "japaneseText":"NeLiME 「DEEMO」より",
+ "englishUsText":"NeLiME From \" DEEMO \"",
+ "englishUsFontType":3,
+ "frenchText":"NeLiME tiré de \" DEEMO \"",
+ "frenchFontType":3,
+ "italianText":"NeLiME da \" DEEMO \"",
+ "italianFontType":3,
+ "germanText":"NeLiME Aus \" DEEMO \"",
+ "germanFontType":3,
+ "spanishText":"NeLiME De \" DEEMO \"",
+ "spanishFontType":3,
+ "chineseTText":"NeLiME 來自「DEEMO」",
+ "chineseTFontType":1,
+ "koreanText":"NeLiME \"DEEMO\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_demlev",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_demwis",
+ "japaneseText":"Wish upon a shooting star",
+ "englishUsText":"Wish upon a shooting star",
+ "englishUsFontType":3,
+ "frenchText":"Wish upon a shooting star",
+ "frenchFontType":3,
+ "italianText":"Wish upon a shooting star",
+ "italianFontType":3,
+ "germanText":"Wish upon a shooting star",
+ "germanFontType":3,
+ "spanishText":"Wish upon a shooting star",
+ "spanishFontType":3,
+ "chineseTText":"Wish upon a shooting star",
+ "chineseTFontType":1,
+ "koreanText":"Wish upon a shooting star",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_demwis",
+ "japaneseText":"SUi 「DEEMO」より",
+ "englishUsText":"SUi From \" DEEMO \"",
+ "englishUsFontType":3,
+ "frenchText":"SUi tiré de \" DEEMO \"",
+ "frenchFontType":3,
+ "italianText":"SUi da \" DEEMO \"",
+ "italianFontType":3,
+ "germanText":"SUi Aus \" DEEMO \"",
+ "germanFontType":3,
+ "spanishText":"SUi De \" DEEMO \"",
+ "spanishFontType":3,
+ "chineseTText":"SUi 來自「DEEMO」",
+ "chineseTFontType":1,
+ "koreanText":"SUi \"DEEMO\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_demwis",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_demmag",
+ "japaneseText":"MagiCatz",
+ "englishUsText":"MagiCatz",
+ "englishUsFontType":3,
+ "frenchText":"MagiCatz",
+ "frenchFontType":3,
+ "italianText":"MagiCatz",
+ "italianFontType":3,
+ "germanText":"MagiCatz",
+ "germanFontType":3,
+ "spanishText":"MagiCatz",
+ "spanishFontType":3,
+ "chineseTText":"MagiCatz",
+ "chineseTFontType":1,
+ "koreanText":"MagiCatz",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_demmag",
+ "japaneseText":"Sakuzyo 「DEEMO」より",
+ "englishUsText":"Sakuzyo From \" DEEMO \"",
+ "englishUsFontType":3,
+ "frenchText":"Sakuzyo tiré de \" DEEMO \"",
+ "frenchFontType":3,
+ "italianText":"Sakuzyo da \" DEEMO \"",
+ "italianFontType":3,
+ "germanText":"Sakuzyo Aus \" DEEMO \"",
+ "germanFontType":3,
+ "spanishText":"Sakuzyo De \" DEEMO \"",
+ "spanishFontType":3,
+ "chineseTText":"Sakuzyo 來自「DEEMO」",
+ "chineseTFontType":1,
+ "koreanText":"Sakuzyo \"DEEMO\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_demmag",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_dema2m",
+ "japaneseText":"ANiMA",
+ "englishUsText":"ANiMA",
+ "englishUsFontType":3,
+ "frenchText":"ANiMA",
+ "frenchFontType":3,
+ "italianText":"ANiMA",
+ "italianFontType":3,
+ "germanText":"ANiMA",
+ "germanFontType":3,
+ "spanishText":"ANiMA",
+ "spanishFontType":3,
+ "chineseTText":"ANiMA",
+ "chineseTFontType":1,
+ "koreanText":"ANiMA",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_dema2m",
+ "japaneseText":"xi 「DEEMO」より",
+ "englishUsText":"xi From \" DEEMO \"",
+ "englishUsFontType":3,
+ "frenchText":"xi tiré de \" DEEMO \"",
+ "frenchFontType":3,
+ "italianText":"xi da \" DEEMO \"",
+ "italianFontType":3,
+ "germanText":"xi Aus \" DEEMO \"",
+ "germanFontType":3,
+ "spanishText":"xi De \" DEEMO \"",
+ "spanishFontType":3,
+ "chineseTText":"xi 來自「DEEMO」",
+ "chineseTFontType":1,
+ "koreanText":"xi \"DEEMO\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_dema2m",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_immbon",
+ "japaneseText":"BORN ON DREAM! ~HANABI☆NIGHT~",
+ "englishUsText":"BORN ON DREAM! ~HANABI☆NIGHT~",
+ "englishUsFontType":3,
+ "frenchText":"BORN ON DREAM! ~HANABI☆NIGHT~",
+ "frenchFontType":3,
+ "italianText":"BORN ON DREAM! ~HANABI☆NIGHT~",
+ "italianFontType":3,
+ "germanText":"BORN ON DREAM! ~HANABI☆NIGHT~",
+ "germanFontType":3,
+ "spanishText":"BORN ON DREAM! ~HANABI☆NIGHT~",
+ "spanishFontType":3,
+ "chineseTText":"BORN ON DREAM! ~HANABI☆NIGHT~",
+ "chineseTFontType":1,
+ "koreanText":"BORN ON DREAM! ~HANABI☆NIGHT~",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_immbon",
+ "japaneseText":"「アイドルマスター ミリオンライブ! シアターデイズ」より",
+ "englishUsText":"From \" THE iDOLM@STER MILLION LIVE! THEATER DAYS \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" THE iDOLM@STER MILLION LIVE! THEATER DAYS \"",
+ "frenchFontType":3,
+ "italianText":"Da \" THE iDOLM@STER MILLION LIVE! THEATER DAYS \"",
+ "italianFontType":3,
+ "germanText":"Aus \" THE iDOLM@STER MILLION LIVE! THEATER DAYS \"",
+ "germanFontType":3,
+ "spanishText":"De \" THE iDOLM@STER MILLION LIVE! THEATER DAYS \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「偶像大師 百萬人演唱會! 劇場時光」",
+ "chineseTFontType":1,
+ "koreanText":"\" 아이돌마스터 밀리언 라이브! 시어터 데이즈 \"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_immbon",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kimpla",
+ "japaneseText":"君のプラネット",
+ "englishUsText":"KIMI NO Planet",
+ "englishUsFontType":3,
+ "frenchText":"KIMI NO Planet",
+ "frenchFontType":3,
+ "italianText":"KIMI NO Planet",
+ "italianFontType":3,
+ "germanText":"KIMI NO Planet",
+ "germanFontType":3,
+ "spanishText":"KIMI NO Planet",
+ "spanishFontType":3,
+ "chineseTText":"你的行星",
+ "chineseTFontType":1,
+ "koreanText":"키미노 Planet",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_kimpla",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kimpla",
+ "japaneseText":"",
+ "englishUsText":"君のプラネット",
+ "englishUsFontType":0,
+ "frenchText":"君のプラネット",
+ "frenchFontType":0,
+ "italianText":"君のプラネット",
+ "italianFontType":0,
+ "germanText":"君のプラネット",
+ "germanFontType":0,
+ "spanishText":"君のプラネット",
+ "spanishFontType":0,
+ "chineseTText":"君のプラネット",
+ "chineseTFontType":0,
+ "koreanText":"君のプラネット",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_anime01",
+ "japaneseText":"「深夜アニメパックVol.2」配信中",
+ "englishUsText":"Late Night Anime Pack Vol. 2 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「深夜動畫PackVol.2」發布中!",
+ "chineseTFontType":1,
+ "koreanText":"「심야 애니메이션 음악 Pack Vol.2」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_deemopack",
+ "japaneseText":"「DEEMOパック」配信中",
+ "englishUsText":"DEEMO Pack now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「DEEMO Pack」發布中!",
+ "chineseTFontType":1,
+ "koreanText":"「DEEMO Pack」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_immbod",
+ "japaneseText":"楽曲「BORN ON DREAM! ~HANABI☆NIGHT~」配信中",
+ "englishUsText":"\"BORN ON DREAM! ~HANABI☆NIGHT~\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「BORN ON DREAM! ~HANABI☆NIGHT~」發布中!",
+ "chineseTFontType":1,
+ "koreanText":"곡 「BORN ON DREAM! ~HANABI☆NIGHT~」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_145",
+ "japaneseText":"宇宙からこんにちは!",
+ "englishUsText":"Salutations from space!",
+ "englishUsFontType":3,
+ "frenchText":"Salutations de l'espace !",
+ "frenchFontType":3,
+ "italianText":"Saluti dallo spazio!",
+ "italianFontType":3,
+ "germanText":"Grüße aus dem Weltraum!",
+ "germanFontType":3,
+ "spanishText":"¡Saludos desde el espacio!",
+ "spanishFontType":3,
+ "chineseTText":"來自宇宙的問候!",
+ "chineseTFontType":1,
+ "koreanText":"우주에서 인사드립니다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_146",
+ "japaneseText":"そうだ、星を見に行こう!",
+ "englishUsText":"Let's go and play among the stars!",
+ "englishUsFontType":3,
+ "frenchText":"C'est parti, allons jouer parmi les étoiles !",
+ "frenchFontType":3,
+ "italianText":"Andiamo a giocare tra le stelle!",
+ "italianFontType":3,
+ "germanText":"Los, wir spielen in den Sternen!",
+ "germanFontType":3,
+ "spanishText":"¡Vamos a jugar entre las estrellas!",
+ "spanishFontType":3,
+ "chineseTText":"對了,來去看星星吧!",
+ "chineseTFontType":1,
+ "koreanText":"그래, 별을 보러 가자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_147",
+ "japaneseText":"地球は青かった!",
+ "englishUsText":"Now that's a blue marble!",
+ "englishUsFontType":3,
+ "frenchText":"Maintenant, c'est une bille bleue !",
+ "frenchFontType":3,
+ "italianText":"Una bella sfera blu!",
+ "italianFontType":3,
+ "germanText":"Das ist ja eine blaue Kugel!",
+ "germanFontType":3,
+ "spanishText":"¡Eso sí que es una canica azul!",
+ "spanishFontType":3,
+ "chineseTText":"地球好藍!",
+ "chineseTFontType":1,
+ "koreanText":"지구는 푸르다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_148",
+ "japaneseText":"まだまだ暑いね",
+ "englishUsText":"It's still pretty hot, huh...",
+ "englishUsFontType":3,
+ "frenchText":"Oh, il fait encore très chaud...",
+ "frenchFontType":3,
+ "italianText":"Fa ancora caldo, eh...",
+ "italianFontType":3,
+ "germanText":"Ist noch ziemlich heiß, oder?",
+ "germanFontType":3,
+ "spanishText":"Todavía hace bastante calor, eh...",
+ "spanishFontType":3,
+ "chineseTText":"天氣還很熱呢!",
+ "chineseTFontType":1,
+ "koreanText":"아직 덥네",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_149",
+ "japaneseText":"相手にとって不足なし!",
+ "englishUsText":"With me at your side, you'll have nothing to fear!",
+ "englishUsFontType":3,
+ "frenchText":"Quand je suis avec toi, tu n'as rien à craindre !",
+ "frenchFontType":3,
+ "italianText":"Con me al tuo fianco, non hai nulla da temere!",
+ "italianFontType":3,
+ "germanText":"Mit mir an deiner Seite hast du nichts zu befürchten!",
+ "germanFontType":3,
+ "spanishText":"Si estamos juntos, ¡no hay nada que temer!",
+ "spanishFontType":3,
+ "chineseTText":"你足以當我的對手!",
+ "chineseTFontType":1,
+ "koreanText":"내 상대로 부족하지 않군!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_150",
+ "japaneseText":"俺、この試合に勝ったら結婚するんだ",
+ "englishUsText":"If I win this match, you have to marry me! ",
+ "englishUsFontType":3,
+ "frenchText":"Si je gagne ce match, tu devras m'épouser ! ",
+ "frenchFontType":3,
+ "italianText":"Se vinco questa sfida mi sposi! ",
+ "italianFontType":3,
+ "germanText":"Wenn ich diese Partie gewinne, musst du mich heiraten! ",
+ "germanFontType":3,
+ "spanishText":"Si gano este partido, ¡tienes que casarte conmigo! ",
+ "spanishFontType":3,
+ "chineseTText":"要是我贏了這場比賽就結婚吧",
+ "chineseTFontType":1,
+ "koreanText":"나, 여기서 이기면 결혼할 거야",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_151",
+ "japaneseText":"本気だったのに・・・",
+ "englishUsText":"I gave it my all and still...",
+ "englishUsFontType":3,
+ "frenchText":"J'ai tout donné, et pourtant...",
+ "frenchFontType":3,
+ "italianText":"Ho dato il massimo, eppure...",
+ "italianFontType":3,
+ "germanText":"Ich habe alles gegeben, und doch ...",
+ "germanFontType":3,
+ "spanishText":"Lo di todo y aun así...",
+ "spanishFontType":3,
+ "chineseTText":"我明明很認真了...",
+ "chineseTFontType":1,
+ "koreanText":"진심이었는데…",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_152",
+ "japaneseText":"さよならだドン!",
+ "englishUsText":"Sayonara-DON!",
+ "englishUsFontType":3,
+ "frenchText":"Sayonara-DON !",
+ "frenchFontType":3,
+ "italianText":"Sayonara-DON!",
+ "italianFontType":3,
+ "germanText":"Sayonara-DON!",
+ "germanFontType":3,
+ "spanishText":"¡Sayonara-DON!",
+ "spanishFontType":3,
+ "chineseTText":"再見咚!",
+ "chineseTFontType":1,
+ "koreanText":"잘 가라쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_153",
+ "japaneseText":"き、きょうはこれくらいにしてあげる",
+ "englishUsText":"I-I'll let you slide this time!",
+ "englishUsFontType":3,
+ "frenchText":"Je te laisse faire cette fois-ci !",
+ "frenchFontType":3,
+ "italianText":"Q-questa volta lascio perdere...",
+ "italianFontType":3,
+ "germanText":"I-Ich lasse dich diesmal gleiten!",
+ "germanFontType":3,
+ "spanishText":"¡Esta vez te dejaré escapar!",
+ "spanishFontType":3,
+ "chineseTText":"今、今天就到此為止吧",
+ "chineseTFontType":1,
+ "koreanText":"오, 오늘은 이쯤 해줄게",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_154",
+ "japaneseText":"なるほど、そうきたカっ",
+ "englishUsText":"I see, so that's how it is, kah?",
+ "englishUsFontType":3,
+ "frenchText":"Je vois, c'est comme ça que ça se passe, hein ?",
+ "frenchFontType":3,
+ "italianText":"Ah, dunque è così, eh?",
+ "italianFontType":3,
+ "germanText":"Verstehe, so ist das also?",
+ "germanFontType":3,
+ "spanishText":"Ya veo. Así son las cosas, ¿no?",
+ "spanishFontType":3,
+ "chineseTText":"原來如此,嚇我一跳!",
+ "chineseTFontType":1,
+ "koreanText":"그래, 그렇게 나왔구나",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_155",
+ "japaneseText":"手洗い・うがい、を忘れずに",
+ "englishUsText":"Don't forget to wash your hands and gargle!",
+ "englishUsFontType":3,
+ "frenchText":"N'oublie pas de te laver les mains et de te gargariser !",
+ "frenchFontType":3,
+ "italianText":"Ricorda di lavarti le mani e fare i gargarismi!",
+ "italianFontType":3,
+ "germanText":"Denk dran, deine Hände zu waschen und zu gurgeln!",
+ "germanFontType":3,
+ "spanishText":"¡No olvides lavarte las manos y hacer gárgaras!",
+ "spanishFontType":3,
+ "chineseTText":"別忘了漱口、洗手",
+ "chineseTFontType":1,
+ "koreanText":"손 씻기 양치하기를 잊지 말자",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_156",
+ "japaneseText":"アニキー!",
+ "englishUsText":"Bro!",
+ "englishUsFontType":3,
+ "frenchText":"Mec !",
+ "frenchFontType":3,
+ "italianText":"Ehilà!",
+ "italianFontType":3,
+ "germanText":"Bro!",
+ "germanFontType":3,
+ "spanishText":"¡Bro!",
+ "spanishFontType":3,
+ "chineseTText":"大哥~!",
+ "chineseTFontType":1,
+ "koreanText":"형님~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_157",
+ "japaneseText":"あなたに一生ついていきます",
+ "englishUsText":"I'll follow you to the ends of the earth!",
+ "englishUsFontType":3,
+ "frenchText":"Je te suivrai jusqu'au bout du monde !",
+ "frenchFontType":3,
+ "italianText":"Ti seguirò in capo al mondo!",
+ "italianFontType":3,
+ "germanText":"Ich folge dir bis ans Ende der Welt!",
+ "germanFontType":3,
+ "spanishText":"¡Te seguiré hasta el fin del mundo!",
+ "spanishFontType":3,
+ "chineseTText":"我會一生追隨你的!",
+ "chineseTFontType":1,
+ "koreanText":"당신을 평생 따를게요",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_mikuvt",
+ "japaneseText":"バイオレンストリガー",
+ "englishUsText":"Violence Trigger",
+ "englishUsFontType":3,
+ "frenchText":"Violence Trigger",
+ "frenchFontType":3,
+ "italianText":"Violence Trigger",
+ "italianFontType":3,
+ "germanText":"Violence Trigger",
+ "germanFontType":3,
+ "spanishText":"Violence Trigger",
+ "spanishFontType":3,
+ "chineseTText":"Violence Trigger",
+ "chineseTFontType":1,
+ "koreanText":"Violence Trigger",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mikuvt",
+ "japaneseText":"八王子P feat.初音ミク 「戦闘摂理解析システム#コンパス」より",
+ "englishUsText":"Hachioji P feat. HATSUNE MIKU",
+ "englishUsFontType":3,
+ "frenchText":"Hachioji P feat. HATSUNE MIKU",
+ "frenchFontType":3,
+ "italianText":"Hachioji P feat. HATSUNE MIKU",
+ "italianFontType":3,
+ "germanText":"Hachioji P feat. HATSUNE MIKU",
+ "germanFontType":3,
+ "spanishText":"Hachioji P feat. HATSUNE MIKU",
+ "spanishFontType":3,
+ "chineseTText":"八王子P feat. 初音未來",
+ "chineseTFontType":1,
+ "koreanText":"Hachioji P feat. 하츠네 미쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mikuvt",
+ "japaneseText":"",
+ "englishUsText":"バイオレンストリガー",
+ "englishUsFontType":0,
+ "frenchText":"バイオレンストリガー",
+ "frenchFontType":0,
+ "italianText":"バイオレンストリガー",
+ "italianFontType":0,
+ "germanText":"バイオレンストリガー",
+ "germanFontType":0,
+ "spanishText":"バイオレンストリガー",
+ "spanishFontType":0,
+ "chineseTText":"バイオレンストリガー",
+ "chineseTFontType":0,
+ "koreanText":"バイオレンストリガー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mikute",
+ "japaneseText":"Tell Your World",
+ "englishUsText":"Tell Your World",
+ "englishUsFontType":3,
+ "frenchText":"Tell Your World",
+ "frenchFontType":3,
+ "italianText":"Tell Your World",
+ "italianFontType":3,
+ "germanText":"Tell Your World",
+ "germanFontType":3,
+ "spanishText":"Tell Your World",
+ "spanishFontType":3,
+ "chineseTText":"Tell Your World",
+ "chineseTFontType":1,
+ "koreanText":"Tell Your World",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mikute",
+ "japaneseText":"原曲:livetune feat.初音ミク",
+ "englishUsText":"From \"livetune feat. HATSUNE MIKU\"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \"livetune feat. HATSUNE MIKU\"",
+ "frenchFontType":3,
+ "italianText":"Da \"livetune feat. HATSUNE MIKU\"",
+ "italianFontType":3,
+ "germanText":"Aus \"livetune feat. HATSUNE MIKU\"",
+ "germanFontType":3,
+ "spanishText":"De \"livetune feat. HATSUNE MIKU\"",
+ "spanishFontType":3,
+ "chineseTText":"原曲:livetune feat.初音未來",
+ "chineseTFontType":1,
+ "koreanText":"원곡:livetune feat.하츠네 미쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mikute",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_brs",
+ "japaneseText":"ブラック★ロックシューター",
+ "englishUsText":"BLACK★ROCK SHOOTER",
+ "englishUsFontType":3,
+ "frenchText":"BLACK★ROCK SHOOTER",
+ "frenchFontType":3,
+ "italianText":"BLACK★ROCK SHOOTER",
+ "italianFontType":3,
+ "germanText":"BLACK★ROCK SHOOTER",
+ "germanFontType":3,
+ "spanishText":"BLACK★ROCK SHOOTER",
+ "spanishFontType":3,
+ "chineseTText":"BLACK★ROCK SHOOTER",
+ "chineseTFontType":1,
+ "koreanText":"BLACK★ROCK SHOOTER",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_brs",
+ "japaneseText":"原曲:supercell feat.初音ミク",
+ "englishUsText":"From \"supercell feat. HATSUNE MIKU\"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" supercell feat. HATSUNE MIKU \"",
+ "frenchFontType":3,
+ "italianText":"Da \" supercell feat. HATSUNE MIKU \"",
+ "italianFontType":3,
+ "germanText":"Aus \" supercell feat. HATSUNE MIKU \"",
+ "germanFontType":3,
+ "spanishText":"De \" supercell feat. HATSUNE MIKU \"",
+ "spanishFontType":3,
+ "chineseTText":"原曲:supercell feat.初音未來",
+ "chineseTFontType":1,
+ "koreanText":"원곡:supercell feat.하츠네 미쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_brs",
+ "japaneseText":"",
+ "englishUsText":"ブラック★ロックシューター",
+ "englishUsFontType":0,
+ "frenchText":"ブラック★ロックシューター",
+ "frenchFontType":0,
+ "italianText":"ブラック★ロックシューター",
+ "italianFontType":0,
+ "germanText":"ブラック★ロックシューター",
+ "germanFontType":0,
+ "spanishText":"ブラック★ロックシューター",
+ "spanishFontType":0,
+ "chineseTText":"ブラック★ロックシューター",
+ "chineseTFontType":0,
+ "koreanText":"ブラック★ロックシューター",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_gumi22",
+ "japaneseText":"にんじんにん",
+ "englishUsText":"NINJIN NIN",
+ "englishUsFontType":3,
+ "frenchText":"NINJIN NIN",
+ "frenchFontType":3,
+ "italianText":"NINJIN NIN",
+ "italianFontType":3,
+ "germanText":"NINJIN NIN",
+ "germanFontType":3,
+ "spanishText":"NINJIN NIN",
+ "spanishFontType":3,
+ "chineseTText":"NINJIN NIN",
+ "chineseTFontType":1,
+ "koreanText":"NINJIN NIN",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_gumi22",
+ "japaneseText":"豊永ごんたP",
+ "englishUsText":"TOYONAGA GONTA P",
+ "englishUsFontType":3,
+ "frenchText":"TOYONAGA GONTA P",
+ "frenchFontType":3,
+ "italianText":"TOYONAGA GONTA P",
+ "italianFontType":3,
+ "germanText":"TOYONAGA GONTA P",
+ "germanFontType":3,
+ "spanishText":"TOYONAGA GONTA P",
+ "spanishFontType":3,
+ "chineseTText":"豊永GONTA P",
+ "chineseTFontType":1,
+ "koreanText":"TOYONAGA GONTA P",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_gumi22",
+ "japaneseText":"",
+ "englishUsText":"にんじんにん",
+ "englishUsFontType":0,
+ "frenchText":"にんじんにん",
+ "frenchFontType":0,
+ "italianText":"にんじんにん",
+ "italianFontType":0,
+ "germanText":"にんじんにん",
+ "germanFontType":0,
+ "spanishText":"にんじんにん",
+ "spanishFontType":0,
+ "chineseTText":"にんじんにん",
+ "chineseTFontType":0,
+ "koreanText":"にんじんにん",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_87oto",
+ "japaneseText":"花オト裏拍子",
+ "englishUsText":"HANA OTO URABYOUSHI",
+ "englishUsFontType":3,
+ "frenchText":"HANA OTO URABYOUSHI",
+ "frenchFontType":3,
+ "italianText":"HANA OTO URABYOUSHI",
+ "italianFontType":3,
+ "germanText":"HANA OTO URABYOUSHI",
+ "germanFontType":3,
+ "spanishText":"HANA OTO URABYOUSHI",
+ "spanishFontType":3,
+ "chineseTText":"花音反拍子",
+ "chineseTFontType":1,
+ "koreanText":"HANA OTO URABYOUSHI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_87oto",
+ "japaneseText":"はるなば feat.初音ミク",
+ "englishUsText":"Harunaba feat. HATSUNE MIKU",
+ "englishUsFontType":3,
+ "frenchText":"Harunaba feat. HATSUNE MIKU",
+ "frenchFontType":3,
+ "italianText":"Harunaba feat. HATSUNE MIKU",
+ "italianFontType":3,
+ "germanText":"Harunaba feat. HATSUNE MIKU",
+ "germanFontType":3,
+ "spanishText":"Harunaba feat. HATSUNE MIKU",
+ "spanishFontType":3,
+ "chineseTText":"Harunaba feat.初音未來",
+ "chineseTFontType":1,
+ "koreanText":"Harunaba feat.하츠네 미쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_87oto",
+ "japaneseText":"",
+ "englishUsText":"花オト裏拍子",
+ "englishUsFontType":0,
+ "frenchText":"花オト裏拍子",
+ "frenchFontType":0,
+ "italianText":"花オト裏拍子",
+ "italianFontType":0,
+ "germanText":"花オト裏拍子",
+ "germanFontType":0,
+ "spanishText":"花オト裏拍子",
+ "spanishFontType":0,
+ "chineseTText":"花オト裏拍子",
+ "chineseTFontType":0,
+ "koreanText":"花オト裏拍子",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_calice",
+ "japaneseText":"CYBERgenicALICE",
+ "englishUsText":"CYBERgenicALICE",
+ "englishUsFontType":3,
+ "frenchText":"CYBERgenicALICE",
+ "frenchFontType":3,
+ "italianText":"CYBERgenicALICE",
+ "italianFontType":3,
+ "germanText":"CYBERgenicALICE",
+ "germanFontType":3,
+ "spanishText":"CYBERgenicALICE",
+ "spanishFontType":3,
+ "chineseTText":"CYBERgenicALICE",
+ "chineseTFontType":1,
+ "koreanText":"CYBERgenicALICE",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_calice",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_calice",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_crosbl",
+ "japaneseText":"クロス・ブルー",
+ "englishUsText":"Cross Blue",
+ "englishUsFontType":3,
+ "frenchText":"Cross Blue",
+ "frenchFontType":3,
+ "italianText":"Cross Blue",
+ "italianFontType":3,
+ "germanText":"Cross Blue",
+ "germanFontType":3,
+ "spanishText":"Cross Blue",
+ "spanishFontType":3,
+ "chineseTText":"Cross Blue",
+ "chineseTFontType":1,
+ "koreanText":"Cross Blue",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_crosbl",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_crosbl",
+ "japaneseText":"",
+ "englishUsText":"クロス・ブルー",
+ "englishUsFontType":0,
+ "frenchText":"クロス・ブルー",
+ "frenchFontType":0,
+ "italianText":"クロス・ブルー",
+ "italianFontType":0,
+ "germanText":"クロス・ブルー",
+ "germanFontType":0,
+ "spanishText":"クロス・ブルー",
+ "spanishFontType":0,
+ "chineseTText":"クロス・ブルー",
+ "chineseTFontType":0,
+ "koreanText":"クロス・ブルー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_hiyam2",
+ "japaneseText":"月影SASURAI",
+ "englishUsText":"TSUKIKAGE SASURAI",
+ "englishUsFontType":3,
+ "frenchText":"TSUKIKAGE SASURAI",
+ "frenchFontType":3,
+ "italianText":"TSUKIKAGE SASURAI",
+ "italianFontType":3,
+ "germanText":"TSUKIKAGE SASURAI",
+ "germanFontType":3,
+ "spanishText":"TSUKIKAGE SASURAI",
+ "spanishFontType":3,
+ "chineseTText":"月影SASURAI",
+ "chineseTFontType":1,
+ "koreanText":"TSUKIKAGE SASURAI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_hiyam2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_hiyam2",
+ "japaneseText":"",
+ "englishUsText":"月影SASURAI",
+ "englishUsFontType":0,
+ "frenchText":"月影SASURAI",
+ "frenchFontType":0,
+ "italianText":"月影SASURAI",
+ "italianFontType":0,
+ "germanText":"月影SASURAI",
+ "germanFontType":0,
+ "spanishText":"月影SASURAI",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"月影SASURAI",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_bko4",
+ "japaneseText":"BE THE ACE",
+ "englishUsText":"BE THE ACE",
+ "englishUsFontType":3,
+ "frenchText":"BE THE ACE",
+ "frenchFontType":3,
+ "italianText":"BE THE ACE",
+ "italianFontType":3,
+ "germanText":"BE THE ACE",
+ "germanFontType":3,
+ "spanishText":"BE THE ACE",
+ "spanishFontType":3,
+ "chineseTText":"BE THE ACE",
+ "chineseTFontType":1,
+ "koreanText":"BE THE ACE",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_bko4",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_bko4",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_integr",
+ "japaneseText":"∫-integral-",
+ "englishUsText":"∫-integral-",
+ "englishUsFontType":3,
+ "frenchText":"∫-integral-",
+ "frenchFontType":3,
+ "italianText":"∫-integral-",
+ "italianFontType":3,
+ "germanText":"∫-integral-",
+ "germanFontType":3,
+ "spanishText":"∫-integral-",
+ "spanishFontType":3,
+ "chineseTText":"∫-integral-",
+ "chineseTFontType":1,
+ "koreanText":"∫-integral-",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_integr",
+ "japaneseText":"Jack C feat. Saoring",
+ "englishUsText":"Jack C feat. Saoring",
+ "englishUsFontType":3,
+ "frenchText":"Jack C feat. Saoring",
+ "frenchFontType":3,
+ "italianText":"Jack C feat. Saoring",
+ "italianFontType":3,
+ "germanText":"Jack C feat. Saoring",
+ "germanFontType":3,
+ "spanishText":"Jack C feat. Saoring",
+ "spanishFontType":3,
+ "chineseTText":"Jack C feat. Saoring",
+ "chineseTFontType":1,
+ "koreanText":"Jack C feat. Saoring",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_integr",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_nekot2",
+ "japaneseText":"にひきはネコトモ!",
+ "englishUsText":"Furry Purry Friends NEKO-TOMO!",
+ "englishUsFontType":3,
+ "frenchText":"Furry Purry Friends NEKO-TOMO!",
+ "frenchFontType":3,
+ "italianText":"Furry Purry Friends NEKO-TOMO!",
+ "italianFontType":3,
+ "germanText":"Furry Purry Friends NEKO-TOMO!",
+ "germanFontType":3,
+ "spanishText":"Furry Purry Friends NEKO-TOMO!",
+ "spanishFontType":3,
+ "chineseTText":"牠們是貓咪朋友!",
+ "chineseTFontType":1,
+ "koreanText":"니히키와 네코토모!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_nekot2",
+ "japaneseText":"「ネコ・トモ」エンディング曲",
+ "englishUsText":"From \" Neko Tomo \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Neko Tomo \"",
+ "frenchFontType":3,
+ "italianText":"Da \"Neko Tomo\"",
+ "italianFontType":3,
+ "germanText":"Aus \" Neko Tomo \"",
+ "germanFontType":3,
+ "spanishText":"De \" Neko Tomo \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「NEKO・TOMO」",
+ "chineseTFontType":1,
+ "koreanText":"\" NEKO・TOMO \"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_nekot2",
+ "japaneseText":"",
+ "englishUsText":"にひきはネコトモ!",
+ "englishUsFontType":0,
+ "frenchText":"にひきはネコトモ!",
+ "frenchFontType":0,
+ "italianText":"にひきはネコトモ!",
+ "italianFontType":0,
+ "germanText":"にひきはネコトモ!",
+ "germanFontType":0,
+ "spanishText":"にひきはネコトモ!",
+ "spanishFontType":0,
+ "chineseTText":"にひきはネコトモ!",
+ "chineseTFontType":0,
+ "koreanText":"にひきはネコトモ!",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_vocaropack06",
+ "japaneseText":"「ボーカロイド™曲パックVol.6」配信中",
+ "englishUsText":"VOCALOID™ Music Pack Vol. 6 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「VOCALOID™ Music PackVol.6」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「VOCALOID™ Music Pack Vol.6」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_donder06",
+ "japaneseText":"「ドンだーパック -ジュブナイル-」配信中",
+ "englishUsText":"Donder Pack -Juvenile now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「Donder Pack -Juvenile-」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「태고러 팩 -Juvenile-」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_nekotomo",
+ "japaneseText":"楽曲「にひきはネコトモ!」無料配信中",
+ "englishUsText":"Furry Purry Friends NEKO-TOMO! song available now for free!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「牠們是貓咪朋友!」免費發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「니히키와 네코토모!」 무료 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_revival",
+ "japaneseText":"今月の復刻ごほうびミッション",
+ "englishUsText":"This month's Reward Missions Revivals",
+ "englishUsFontType":3,
+ "frenchText":"Retour des Missions à récompenses ce mois-ci",
+ "frenchFontType":3,
+ "italianText":"Revival delle Missioni ricompensa del mese",
+ "italianFontType":3,
+ "germanText":"Die wiederkehrenden Belohnungsmissionen in diesem Monat",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa de reanimación de este mes",
+ "spanishFontType":3,
+ "chineseTText":"本月的復刻獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"이번 달의 복각 보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_12",
+ "japaneseText":"2月のごほうびミッション",
+ "englishUsText":"February Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses - Février",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa febbraio",
+ "italianFontType":3,
+ "germanText":"Februar-Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa de febrero",
+ "spanishFontType":3,
+ "chineseTText":"2月的獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"2월의 보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_13",
+ "japaneseText":"3月のごほうびミッション",
+ "englishUsText":"March Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses - Mars",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa marzo",
+ "italianFontType":3,
+ "germanText":"März-Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa de marzo",
+ "spanishFontType":3,
+ "chineseTText":"3月的獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"3월의 보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_14",
+ "japaneseText":"4月のごほうびミッション",
+ "englishUsText":"April Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses - Avril",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa aprile",
+ "italianFontType":3,
+ "germanText":"April-Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa de abril",
+ "spanishFontType":3,
+ "chineseTText":"4月的獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"4월의 보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_15",
+ "japaneseText":"5月のごほうびミッション",
+ "englishUsText":"May Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses - Mai",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa maggio",
+ "italianFontType":3,
+ "germanText":"Mai-Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa de mayo",
+ "spanishFontType":3,
+ "chineseTText":"5月的獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"5월의 보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_16",
+ "japaneseText":"6月のごほうびミッション",
+ "englishUsText":"June Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses - Juin",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa giugno",
+ "italianFontType":3,
+ "germanText":"Juni-Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa de junio",
+ "spanishFontType":3,
+ "chineseTText":"6月的獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"6월의 보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_17",
+ "japaneseText":"7月のごほうびミッション",
+ "englishUsText":"July Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses - Juillet",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa luglio",
+ "italianFontType":3,
+ "germanText":"Juli-Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa de julio",
+ "spanishFontType":3,
+ "chineseTText":"7月的獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"7월의 보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_18",
+ "japaneseText":"8月のごほうびミッション",
+ "englishUsText":"August Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses - Août",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa agosto",
+ "italianFontType":3,
+ "germanText":"August-Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa de agosto",
+ "spanishFontType":3,
+ "chineseTText":"8月的獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"8월의 보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_158",
+ "japaneseText":"ハッピークリスマス!",
+ "englishUsText":"Happy Holidays!",
+ "englishUsFontType":3,
+ "frenchText":"Joyeuses fêtes !",
+ "frenchFontType":3,
+ "italianText":"Buone Feste!",
+ "italianFontType":3,
+ "germanText":"Frohe Feiertage!",
+ "germanFontType":3,
+ "spanishText":"¡Felices Fiestas!",
+ "spanishFontType":3,
+ "chineseTText":"聖誕快樂!",
+ "chineseTFontType":1,
+ "koreanText":"해피 크리스마스!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_159",
+ "japaneseText":"プレゼントちょうだい",
+ "englishUsText":"Presents, please!",
+ "englishUsFontType":3,
+ "frenchText":"Place aux cadeaux !",
+ "frenchFontType":3,
+ "italianText":"Regali, per favore!",
+ "italianFontType":3,
+ "germanText":"Geschenke, bitte!",
+ "germanFontType":3,
+ "spanishText":"¡Regalos, por favor!",
+ "spanishFontType":3,
+ "chineseTText":"請給我禮物",
+ "chineseTFontType":1,
+ "koreanText":"선물 주세요",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_160",
+ "japaneseText":"クリスマスケーキ食べた?",
+ "englishUsText":"Have you had any holiday treats yet?",
+ "englishUsFontType":3,
+ "frenchText":"Alors, où sont les bonbons ?",
+ "frenchFontType":3,
+ "italianText":"Hai già mangiato il panettone?",
+ "italianFontType":3,
+ "germanText":"Hattest du schon was von den Feiertags-Schleckereien?",
+ "germanFontType":3,
+ "spanishText":"¿Cuántos polvorones te has comido ya?",
+ "spanishFontType":3,
+ "chineseTText":"吃了聖誕蛋糕嗎?",
+ "chineseTFontType":1,
+ "koreanText":"크리스마스 케이크 먹었어?",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_161",
+ "japaneseText":"ハッピーニューイヤー!",
+ "englishUsText":"Happy New Year!",
+ "englishUsFontType":3,
+ "frenchText":"Bonne année !",
+ "frenchFontType":3,
+ "italianText":"Felice anno nuovo!",
+ "italianFontType":3,
+ "germanText":"Frohes neues Jahr!",
+ "germanFontType":3,
+ "spanishText":"¡Feliz año nuevo!",
+ "spanishFontType":3,
+ "chineseTText":"新年快樂!",
+ "chineseTFontType":1,
+ "koreanText":"해피 뉴 이어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_162",
+ "japaneseText":"今年もよろしくだドン",
+ "englishUsText":"Let's have a great year!",
+ "englishUsFontType":3,
+ "frenchText":"Que cette année soit belle !",
+ "frenchFontType":3,
+ "italianText":"Buon anno!",
+ "italianFontType":3,
+ "germanText":"Auf ein tolles Jahr!",
+ "germanFontType":3,
+ "spanishText":"¡Por un fantástico año!",
+ "spanishFontType":3,
+ "chineseTText":"今年也請多多指教咚",
+ "chineseTFontType":1,
+ "koreanText":"올해도 잘 부탁해쿵",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_163",
+ "japaneseText":"今年こそボクの年だ! ",
+ "englishUsText":"This is gonna be my year!",
+ "englishUsFontType":3,
+ "frenchText":"Ce sera mon année !",
+ "frenchFontType":3,
+ "italianText":"Questo sarà il mio anno!",
+ "italianFontType":3,
+ "germanText":"Das hier wird mein Jahr!",
+ "germanFontType":3,
+ "spanishText":"¡Este será mi año!",
+ "spanishFontType":3,
+ "chineseTText":"今年就是我的一年!",
+ "chineseTFontType":1,
+ "koreanText":"올해야말로 내 해다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_lsxmas",
+ "japaneseText":"LAST CHRISTMAS",
+ "englishUsText":"LAST CHRISTMAS",
+ "englishUsFontType":3,
+ "frenchText":"LAST CHRISTMAS",
+ "frenchFontType":3,
+ "italianText":"LAST CHRISTMAS",
+ "italianFontType":3,
+ "germanText":"LAST CHRISTMAS",
+ "germanFontType":3,
+ "spanishText":"LAST CHRISTMAS",
+ "spanishFontType":3,
+ "chineseTText":"LAST CHRISTMAS",
+ "chineseTFontType":1,
+ "koreanText":"LAST CHRISTMAS",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_lsxmas",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_lsxmas",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_yorukk",
+ "japaneseText":"夜に駆ける",
+ "englishUsText":"Racing into the Night",
+ "englishUsFontType":3,
+ "frenchText":"Racing into the Night",
+ "frenchFontType":3,
+ "italianText":"Racing into the Night",
+ "italianFontType":3,
+ "germanText":"Racing into the Night",
+ "germanFontType":3,
+ "spanishText":"Racing into the Night",
+ "spanishFontType":3,
+ "chineseTText":"在夜裡奔跑",
+ "chineseTFontType":1,
+ "koreanText":"Yoru ni Kakeru",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_yorukk",
+ "japaneseText":"YOASOBI",
+ "englishUsText":"YOASOBI",
+ "englishUsFontType":3,
+ "frenchText":"YOASOBI",
+ "frenchFontType":3,
+ "italianText":"YOASOBI",
+ "italianFontType":3,
+ "germanText":"YOASOBI",
+ "germanFontType":3,
+ "spanishText":"YOASOBI",
+ "spanishFontType":3,
+ "chineseTText":"YOASOBI",
+ "chineseTFontType":1,
+ "koreanText":"YOASOBI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_yorukk",
+ "japaneseText":"",
+ "englishUsText":"夜に駆ける",
+ "englishUsFontType":0,
+ "frenchText":"夜に駆ける",
+ "frenchFontType":0,
+ "italianText":"夜に駆ける",
+ "italianFontType":0,
+ "germanText":"夜に駆ける",
+ "germanFontType":0,
+ "spanishText":"夜に駆ける",
+ "spanishFontType":0,
+ "chineseTText":"夜に駆ける",
+ "chineseTFontType":0,
+ "koreanText":"夜に駆ける",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_umima",
+ "japaneseText":"今",
+ "englishUsText":"Ima",
+ "englishUsFontType":3,
+ "frenchText":"Ima",
+ "frenchFontType":3,
+ "italianText":"Ima",
+ "italianFontType":3,
+ "germanText":"Ima",
+ "germanFontType":3,
+ "spanishText":"Ima",
+ "spanishFontType":3,
+ "chineseTText":"當下",
+ "chineseTFontType":1,
+ "koreanText":"Ima",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_umima",
+ "japaneseText":"HIKAKIN & SEIKIN",
+ "englishUsText":"HIKAKIN & SEIKIN",
+ "englishUsFontType":3,
+ "frenchText":"HIKAKIN & SEIKIN",
+ "frenchFontType":3,
+ "italianText":"HIKAKIN & SEIKIN",
+ "italianFontType":3,
+ "germanText":"HIKAKIN & SEIKIN",
+ "germanFontType":3,
+ "spanishText":"HIKAKIN & SEIKIN",
+ "spanishFontType":3,
+ "chineseTText":"HIKAKIN & SEIKIN",
+ "chineseTFontType":1,
+ "koreanText":"HIKAKIN & SEIKIN",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_umima",
+ "japaneseText":"",
+ "englishUsText":"今",
+ "englishUsFontType":0,
+ "frenchText":"今",
+ "frenchFontType":0,
+ "italianText":"今",
+ "italianFontType":0,
+ "germanText":"今",
+ "germanFontType":0,
+ "spanishText":"今",
+ "spanishFontType":0,
+ "chineseTText":"今",
+ "chineseTFontType":0,
+ "koreanText":"今",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_umjoin",
+ "japaneseText":"JOIN US",
+ "englishUsText":"JOIN US",
+ "englishUsFontType":3,
+ "frenchText":"JOIN US",
+ "frenchFontType":3,
+ "italianText":"JOIN US",
+ "italianFontType":3,
+ "germanText":"JOIN US",
+ "germanFontType":3,
+ "spanishText":"JOIN US",
+ "spanishFontType":3,
+ "chineseTText":"JOIN US",
+ "chineseTFontType":1,
+ "koreanText":"JOIN US",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_umjoin",
+ "japaneseText":"UUUMコラボユニット",
+ "englishUsText":"UUUM Collaboration Unit",
+ "englishUsFontType":3,
+ "frenchText":"UUUM Collaboration Unit",
+ "frenchFontType":3,
+ "italianText":"UUUM Collaboration Unit",
+ "italianFontType":3,
+ "germanText":"UUUM Collaboration Unit",
+ "germanFontType":3,
+ "spanishText":"UUUM Collaboration Unit",
+ "spanishFontType":3,
+ "chineseTText":"UUUM Collaboration Unit",
+ "chineseTFontType":1,
+ "koreanText":"UUUM Collaboration Unit",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_umjoin",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_clscds",
+ "japaneseText":"チャーリー ダッシュ!",
+ "englishUsText":"Csardas!",
+ "englishUsFontType":3,
+ "frenchText":"Csardas!",
+ "frenchFontType":3,
+ "italianText":"Csardas!",
+ "italianFontType":3,
+ "germanText":"Csardas!",
+ "germanFontType":3,
+ "spanishText":"Csardas!",
+ "spanishFontType":3,
+ "chineseTText":"奔馳的查理!",
+ "chineseTFontType":1,
+ "koreanText":"찰리 대시!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_clscds",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_clscds",
+ "japaneseText":"",
+ "englishUsText":"チャーリー ダッシュ!",
+ "englishUsFontType":0,
+ "frenchText":"チャーリー ダッシュ!",
+ "frenchFontType":0,
+ "italianText":"チャーリー ダッシュ!",
+ "italianFontType":0,
+ "germanText":"チャーリー ダッシュ!",
+ "germanFontType":0,
+ "spanishText":"チャーリー ダッシュ!",
+ "spanishFontType":0,
+ "chineseTText":"チャーリー ダッシュ!",
+ "chineseTFontType":0,
+ "koreanText":"チャーリー ダッシュ!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_jaznoc",
+ "japaneseText":"夜想曲Op.9-2",
+ "englishUsText":"Night Jazz Opera 9 No. 2",
+ "englishUsFontType":3,
+ "frenchText":"Night Jazz Opera 9 No. 2",
+ "frenchFontType":3,
+ "italianText":"Night Jazz Opera 9 No. 2",
+ "italianFontType":3,
+ "germanText":"Night Jazz Opera 9 No. 2",
+ "germanFontType":3,
+ "spanishText":"Night Jazz Opera 9 No. 2",
+ "spanishFontType":3,
+ "chineseTText":"夜曲Op.9 No.2",
+ "chineseTFontType":1,
+ "koreanText":"녹턴 작품9 제2번",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_jaznoc",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_jaznoc",
+ "japaneseText":"",
+ "englishUsText":"夜想曲Op.9-2",
+ "englishUsFontType":0,
+ "frenchText":"夜想曲Op.9-2",
+ "frenchFontType":0,
+ "italianText":"夜想曲Op.9-2",
+ "italianFontType":0,
+ "germanText":"夜想曲Op.9-2",
+ "germanFontType":0,
+ "spanishText":"夜想曲Op.9-2",
+ "spanishFontType":0,
+ "chineseTText":"夜想曲Op.9-2",
+ "chineseTFontType":0,
+ "koreanText":"夜想曲Op.9-2",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_clsdog",
+ "japaneseText":"プチポチ",
+ "englishUsText":"Pupper Waltz",
+ "englishUsFontType":3,
+ "frenchText":"Pupper Waltz",
+ "frenchFontType":3,
+ "italianText":"Pupper Waltz",
+ "italianFontType":3,
+ "germanText":"Pupper Waltz",
+ "germanFontType":3,
+ "spanishText":"Pupper Waltz",
+ "spanishFontType":3,
+ "chineseTText":"小狗波奇",
+ "chineseTFontType":1,
+ "koreanText":"쁘띠 멍멍이",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_clsdog",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_clsdog",
+ "japaneseText":"",
+ "englishUsText":"プチポチ",
+ "englishUsFontType":0,
+ "frenchText":"プチポチ",
+ "frenchFontType":0,
+ "italianText":"プチポチ",
+ "italianFontType":0,
+ "germanText":"プチポチ",
+ "germanFontType":0,
+ "spanishText":"プチポチ",
+ "spanishFontType":0,
+ "chineseTText":"プチポチ",
+ "chineseTFontType":0,
+ "koreanText":"プチポチ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_jazmen",
+ "japaneseText":"メヌエット",
+ "englishUsText":"Minuet",
+ "englishUsFontType":3,
+ "frenchText":"Minuet",
+ "frenchFontType":3,
+ "italianText":"Minuet",
+ "italianFontType":3,
+ "germanText":"Minuet",
+ "germanFontType":3,
+ "spanishText":"Minuet",
+ "spanishFontType":3,
+ "chineseTText":"小步舞曲",
+ "chineseTFontType":1,
+ "koreanText":"미뉴에트",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_jazmen",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_jazmen",
+ "japaneseText":"",
+ "englishUsText":"メヌエット",
+ "englishUsFontType":0,
+ "frenchText":"メヌエット",
+ "frenchFontType":0,
+ "italianText":"メヌエット",
+ "italianFontType":0,
+ "germanText":"メヌエット",
+ "germanFontType":0,
+ "spanishText":"メヌエット",
+ "spanishFontType":0,
+ "chineseTText":"メヌエット",
+ "chineseTFontType":0,
+ "koreanText":"メヌエット",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_clsmar",
+ "japaneseText":"クラシックメドレー(ウェディング編)",
+ "englishUsText":"Classical Medley (Wedding Celebration)",
+ "englishUsFontType":3,
+ "frenchText":"Classical Medley (Wedding Celebration)",
+ "frenchFontType":3,
+ "italianText":"Classical Medley (Wedding Celebration)",
+ "italianFontType":3,
+ "germanText":"Classical Medley (Wedding Celebration)",
+ "germanFontType":3,
+ "spanishText":"Classical Medley (Wedding Celebration)",
+ "spanishFontType":3,
+ "chineseTText":"古典樂組曲(結婚篇)",
+ "chineseTFontType":1,
+ "koreanText":"클래식 메들리(웨딩 편)",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_clsmar",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_clsmar",
+ "japaneseText":"",
+ "englishUsText":"クラシックメドレー(ウェディング編)",
+ "englishUsFontType":0,
+ "frenchText":"クラシックメドレー(ウェディング編)",
+ "frenchFontType":0,
+ "italianText":"クラシックメドレー(ウェディング編)",
+ "italianFontType":0,
+ "germanText":"クラシックメドレー(ウェディング編)",
+ "germanFontType":0,
+ "spanishText":"クラシックメドレー(ウェディング編)",
+ "spanishFontType":0,
+ "chineseTText":"クラシックメドレー(ウェディング編)",
+ "chineseTFontType":0,
+ "koreanText":"クラシックメドレー(ウェディング編)",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_morobt",
+ "japaneseText":"もろびとこぞりて",
+ "englishUsText":"Joy to the World",
+ "englishUsFontType":3,
+ "frenchText":"Joy to the World",
+ "frenchFontType":3,
+ "italianText":"Joy to the World",
+ "italianFontType":3,
+ "germanText":"Joy to the World",
+ "germanFontType":3,
+ "spanishText":"Joy to the World",
+ "spanishFontType":3,
+ "chineseTText":"普世歡騰",
+ "chineseTFontType":1,
+ "koreanText":"Joy to the World",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_morobt",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_morobt",
+ "japaneseText":"",
+ "englishUsText":"もろびとこぞりて",
+ "englishUsFontType":0,
+ "frenchText":"もろびとこぞりて",
+ "frenchFontType":0,
+ "italianText":"もろびとこぞりて",
+ "italianFontType":0,
+ "germanText":"もろびとこぞりて",
+ "germanFontType":0,
+ "spanishText":"もろびとこぞりて",
+ "spanishFontType":0,
+ "chineseTText":"もろびとこぞりて",
+ "chineseTFontType":0,
+ "koreanText":"もろびとこぞりて",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mgwrt6",
+ "japaneseText":"曙光",
+ "englishUsText":"SHOKOU",
+ "englishUsFontType":3,
+ "frenchText":"SHOKOU",
+ "frenchFontType":3,
+ "italianText":"SHOKOU",
+ "italianFontType":3,
+ "germanText":"SHOKOU",
+ "germanFontType":3,
+ "spanishText":"SHOKOU",
+ "spanishFontType":3,
+ "chineseTText":"曙光",
+ "chineseTFontType":1,
+ "koreanText":"SHOKOU",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mgwrt6",
+ "japaneseText":"~Dawn~",
+ "englishUsText":"~Dawn~",
+ "englishUsFontType":3,
+ "frenchText":"~Dawn~",
+ "frenchFontType":3,
+ "italianText":"~Dawn~",
+ "italianFontType":3,
+ "germanText":"~Dawn~",
+ "germanFontType":3,
+ "spanishText":"~Dawn~",
+ "spanishFontType":3,
+ "chineseTText":"~Dawn~",
+ "chineseTFontType":1,
+ "koreanText":"~Dawn~",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mgwrt6",
+ "japaneseText":"",
+ "englishUsText":"曙光",
+ "englishUsFontType":0,
+ "frenchText":"曙光",
+ "frenchFontType":0,
+ "italianText":"曙光",
+ "italianFontType":0,
+ "germanText":"曙光",
+ "germanFontType":0,
+ "spanishText":"曙光",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"曙光",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_lsxmas",
+ "japaneseText":"楽曲「LAST CHRISTMAS」配信中",
+ "englishUsText":"\"LAST CHRISTMAS\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「LAST CHRISTMAS」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「LAST CHRISTMAS」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_yorukk",
+ "japaneseText":"楽曲「夜に駆ける」配信中",
+ "englishUsText":"\"Racing into the Night\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「在夜裡奔跑」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Yoru ni Kakeru」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_umpack01",
+ "japaneseText":"「UUUMパック」配信中",
+ "englishUsText":"UUUM Pack now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「UUUM Pack」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「UUUM Pack」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_clspack01",
+ "japaneseText":"「クラシックアレンジパック」配信中",
+ "englishUsText":"Classical Arrangements Pack now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「古典樂改編Pack」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「클래식 어레인지 음악 Pack」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_umhmwr",
+ "japaneseText":"HIMAWARI HAPPY",
+ "englishUsText":"HIMAWARI HAPPY",
+ "englishUsFontType":3,
+ "frenchText":"HIMAWARI HAPPY",
+ "frenchFontType":3,
+ "italianText":"HIMAWARI HAPPY",
+ "italianFontType":3,
+ "germanText":"HIMAWARI HAPPY",
+ "germanFontType":3,
+ "spanishText":"HIMAWARI HAPPY",
+ "spanishFontType":3,
+ "chineseTText":"HIMAWARI HAPPY",
+ "chineseTFontType":1,
+ "koreanText":"HIMAWARI HAPPY",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_umhmwr",
+ "japaneseText":"HIMAWARIちゃんねる",
+ "englishUsText":"HIMAWARI Channel",
+ "englishUsFontType":3,
+ "frenchText":"HIMAWARI Channel",
+ "frenchFontType":3,
+ "italianText":"HIMAWARI Channel",
+ "italianFontType":3,
+ "germanText":"HIMAWARI Channel",
+ "germanFontType":3,
+ "spanishText":"HIMAWARI Channel",
+ "spanishFontType":3,
+ "chineseTText":"HIMAWARI Channel",
+ "chineseTFontType":1,
+ "koreanText":"HIMAWARI Channel",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_umhmwr",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ynzkdn",
+ "japaneseText":"感電",
+ "englishUsText":"Kanden",
+ "englishUsFontType":3,
+ "frenchText":"Kanden",
+ "frenchFontType":3,
+ "italianText":"Kanden",
+ "italianFontType":3,
+ "germanText":"Kanden",
+ "germanFontType":3,
+ "spanishText":"Kanden",
+ "spanishFontType":3,
+ "chineseTText":"感電",
+ "chineseTFontType":1,
+ "koreanText":"Kanden",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ynzkdn",
+ "japaneseText":"米津玄師 / TBS系金曜ドラマ「MIU404」主題歌",
+ "englishUsText":"Kenshi Yonezu",
+ "englishUsFontType":3,
+ "frenchText":"Kenshi Yonezu",
+ "frenchFontType":3,
+ "italianText":"Kenshi Yonezu",
+ "italianFontType":3,
+ "germanText":"Kenshi Yonezu",
+ "germanFontType":3,
+ "spanishText":"Kenshi Yonezu",
+ "spanishFontType":3,
+ "chineseTText":"米津玄師",
+ "chineseTFontType":1,
+ "koreanText":"Kenshi Yonezu",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ynzkdn",
+ "japaneseText":"",
+ "englishUsText":"感電",
+ "englishUsFontType":0,
+ "frenchText":"感電",
+ "frenchFontType":0,
+ "italianText":"感電",
+ "italianFontType":0,
+ "germanText":"感電",
+ "germanFontType":0,
+ "spanishText":"感電",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"感電",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_hkyell",
+ "japaneseText":"星影のエール",
+ "englishUsText":"Hoshikage no Yell",
+ "englishUsFontType":3,
+ "frenchText":"Hoshikage no Yell",
+ "frenchFontType":3,
+ "italianText":"Hoshikage no Yell",
+ "italianFontType":3,
+ "germanText":"Hoshikage no Yell",
+ "germanFontType":3,
+ "spanishText":"Hoshikage no Yell",
+ "spanishFontType":3,
+ "chineseTText":"星光的歡呼",
+ "chineseTFontType":1,
+ "koreanText":"Hoshikage no Yell",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_hkyell",
+ "japaneseText":"「エール」より",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_hkyell",
+ "japaneseText":"",
+ "englishUsText":"星影のエール",
+ "englishUsFontType":0,
+ "frenchText":"星影のエール",
+ "frenchFontType":0,
+ "italianText":"星影のエール",
+ "italianFontType":0,
+ "germanText":"星影のエール",
+ "germanFontType":0,
+ "spanishText":"星影のエール",
+ "spanishFontType":0,
+ "chineseTText":"星影のエール",
+ "chineseTFontType":0,
+ "koreanText":"星影のエール",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_thncrd",
+ "japaneseText":"ネクロファンタジア ~ Arr.Demetori",
+ "englishUsText":"Necro Fantasia ~ Arr.Demetori",
+ "englishUsFontType":3,
+ "frenchText":"Necro Fantasia ~ Arr.Demetori",
+ "frenchFontType":3,
+ "italianText":"Necro Fantasia ~ Arr.Demetori",
+ "italianFontType":3,
+ "germanText":"Necro Fantasia ~ Arr.Demetori",
+ "germanFontType":3,
+ "spanishText":"Necro Fantasia ~ Arr.Demetori",
+ "spanishFontType":3,
+ "chineseTText":"Necro Fantasia ~ Arr.Demetori",
+ "chineseTFontType":1,
+ "koreanText":"Necro Fantasia ~ Arr.Demetori",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_thncrd",
+ "japaneseText":"東方Projectアレンジ Demetori",
+ "englishUsText":"Touhou Project Arrange / Demetori",
+ "englishUsFontType":3,
+ "frenchText":"Touhou Project Arrange / Demetori",
+ "frenchFontType":3,
+ "italianText":"Touhou Project Arrange / Demetori",
+ "italianFontType":3,
+ "germanText":"Touhou Project Arrange / Demetori",
+ "germanFontType":3,
+ "spanishText":"Touhou Project Arrange / Demetori",
+ "spanishFontType":3,
+ "chineseTText":"東方Project Arrange / Demetori",
+ "chineseTFontType":1,
+ "koreanText":"Touhou Project Arrange / Demetori",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_thncrd",
+ "japaneseText":"",
+ "englishUsText":"ネクロファンタジア ~ Arr.Demetori",
+ "englishUsFontType":0,
+ "frenchText":"ネクロファンタジア ~ Arr.Demetori",
+ "frenchFontType":0,
+ "italianText":"ネクロファンタジア ~ Arr.Demetori",
+ "italianFontType":0,
+ "germanText":"ネクロファンタジア ~ Arr.Demetori",
+ "germanFontType":0,
+ "spanishText":"ネクロファンタジア ~ Arr.Demetori",
+ "spanishFontType":0,
+ "chineseTText":"ネクロファンタジア ~ Arr.Demetori",
+ "chineseTFontType":0,
+ "koreanText":"ネクロファンタジア ~ Arr.Demetori",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_therin",
+ "japaneseText":"Help me, ERINNNNNN!!",
+ "englishUsText":"Help me, ERINNNNNN!!",
+ "englishUsFontType":3,
+ "frenchText":"Help me, ERINNNNNN!!",
+ "frenchFontType":3,
+ "italianText":"Help me, ERINNNNNN!!",
+ "italianFontType":3,
+ "germanText":"Help me, ERINNNNNN!!",
+ "germanFontType":3,
+ "spanishText":"Help me, ERINNNNNN!!",
+ "spanishFontType":3,
+ "chineseTText":"Help me, ERINNNNNN!!",
+ "chineseTFontType":1,
+ "koreanText":"Help me, ERINNNNNN!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_therin",
+ "japaneseText":"東方Projectアレンジ ビートまりお ",
+ "englishUsText":"Touhou Project Arrange / beatMARIO",
+ "englishUsFontType":3,
+ "frenchText":"Touhou Project Arrange / beatMARIO",
+ "frenchFontType":3,
+ "italianText":"Touhou Project Arrange / beatMARIO",
+ "italianFontType":3,
+ "germanText":"Touhou Project Arrange / beatMARIO",
+ "germanFontType":3,
+ "spanishText":"Touhou Project Arrange / beatMARIO",
+ "spanishFontType":3,
+ "chineseTText":"東方Project Arrange / beatMARIO",
+ "chineseTFontType":1,
+ "koreanText":"Touhou Project Arrange / beatMARIO",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_therin",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_thgsat",
+ "japaneseText":"幻想のサテライト",
+ "englishUsText":"Genso no Satellite",
+ "englishUsFontType":3,
+ "frenchText":"Genso no Satellite",
+ "frenchFontType":3,
+ "italianText":"Genso no Satellite",
+ "italianFontType":3,
+ "germanText":"Genso no Satellite",
+ "germanFontType":3,
+ "spanishText":"Genso no Satellite",
+ "spanishFontType":3,
+ "chineseTText":"幻想的衛星",
+ "chineseTFontType":1,
+ "koreanText":"Genso no Satellite",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_thgsat",
+ "japaneseText":"東方Projectアレンジ 豚乙女",
+ "englishUsText":"Touhou Project Arrange / BUTAOTOME",
+ "englishUsFontType":3,
+ "frenchText":"Touhou Project Arrange / BUTAOTOME",
+ "frenchFontType":3,
+ "italianText":"Touhou Project Arrange / BUTAOTOME",
+ "italianFontType":3,
+ "germanText":"Touhou Project Arrange / BUTAOTOME",
+ "germanFontType":3,
+ "spanishText":"Touhou Project Arrange / BUTAOTOME",
+ "spanishFontType":3,
+ "chineseTText":"東方Project Arrange / BUTAOTOME",
+ "chineseTFontType":1,
+ "koreanText":"Touhou Project Arrange / BUTAOTOME",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_thgsat",
+ "japaneseText":"",
+ "englishUsText":"幻想のサテライト",
+ "englishUsFontType":0,
+ "frenchText":"幻想のサテライト",
+ "frenchFontType":0,
+ "italianText":"幻想のサテライト",
+ "italianFontType":0,
+ "germanText":"幻想のサテライト",
+ "germanFontType":0,
+ "spanishText":"幻想のサテライト",
+ "spanishFontType":0,
+ "chineseTText":"幻想のサテライト",
+ "chineseTFontType":0,
+ "koreanText":"幻想のサテライト",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_latino",
+ "japaneseText":"オブセッション・ラティーノ",
+ "englishUsText":"Obsession Latino",
+ "englishUsFontType":3,
+ "frenchText":"Obsession Latino",
+ "frenchFontType":3,
+ "italianText":"Obsession Latino",
+ "italianFontType":3,
+ "germanText":"Obsession Latino",
+ "germanFontType":3,
+ "spanishText":"Obsession Latino",
+ "spanishFontType":3,
+ "chineseTText":"Obsession Latino",
+ "chineseTFontType":1,
+ "koreanText":"Obsession Latino",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_latino",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_latino",
+ "japaneseText":"",
+ "englishUsText":"オブセッション・ラティーノ",
+ "englishUsFontType":0,
+ "frenchText":"オブセッション・ラティーノ",
+ "frenchFontType":0,
+ "italianText":"オブセッション・ラティーノ",
+ "italianFontType":0,
+ "germanText":"オブセッション・ラティーノ",
+ "germanFontType":0,
+ "spanishText":"オブセッション・ラティーノ",
+ "spanishFontType":0,
+ "chineseTText":"オブセッション・ラティーノ",
+ "chineseTFontType":0,
+ "koreanText":"オブセッション・ラティーノ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ryowh",
+ "japaneseText":"きみのあかり",
+ "englishUsText":"KIMINO AKARI",
+ "englishUsFontType":3,
+ "frenchText":"KIMINO AKARI",
+ "frenchFontType":3,
+ "italianText":"KIMINO AKARI",
+ "italianFontType":3,
+ "germanText":"KIMINO AKARI",
+ "germanFontType":3,
+ "spanishText":"KIMINO AKARI",
+ "spanishFontType":3,
+ "chineseTText":"你的光芒",
+ "chineseTFontType":1,
+ "koreanText":"키미노 아카리",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ryowh",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ryowh",
+ "japaneseText":"",
+ "englishUsText":"きみのあかり",
+ "englishUsFontType":0,
+ "frenchText":"きみのあかり",
+ "frenchFontType":0,
+ "italianText":"きみのあかり",
+ "italianFontType":0,
+ "germanText":"きみのあかり",
+ "germanFontType":0,
+ "spanishText":"きみのあかり",
+ "spanishFontType":0,
+ "chineseTText":"きみのあかり",
+ "chineseTFontType":0,
+ "koreanText":"きみのあかり",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_buru",
+ "japaneseText":"ブルちゃんのおやつ",
+ "englishUsText":"BURU-chan NO OYATSU",
+ "englishUsFontType":3,
+ "frenchText":"BURU-chan NO OYATSU",
+ "frenchFontType":3,
+ "italianText":"BURU-chan NO OYATSU",
+ "italianFontType":3,
+ "germanText":"BURU-chan NO OYATSU",
+ "germanFontType":3,
+ "spanishText":"BURU-chan NO OYATSU",
+ "spanishFontType":3,
+ "chineseTText":"BURU-TARO的點心",
+ "chineseTFontType":1,
+ "koreanText":"부루쨩노 오야츠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_buru",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_buru",
+ "japaneseText":"",
+ "englishUsText":"ブルちゃんのおやつ",
+ "englishUsFontType":0,
+ "frenchText":"ブルちゃんのおやつ",
+ "frenchFontType":0,
+ "italianText":"ブルちゃんのおやつ",
+ "italianFontType":0,
+ "germanText":"ブルちゃんのおやつ",
+ "germanFontType":0,
+ "spanishText":"ブルちゃんのおやつ",
+ "spanishFontType":0,
+ "chineseTText":"ブルちゃんのおやつ",
+ "chineseTFontType":0,
+ "koreanText":"ブルちゃんのおやつ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_haya",
+ "japaneseText":"ドドドドドンだフル!",
+ "englishUsText":"Do-Do-Do-Do-Donderful!",
+ "englishUsFontType":3,
+ "frenchText":"Do-Do-Do-Do-Donderful!",
+ "frenchFontType":3,
+ "italianText":"Do-Do-Do-Do-Donderful!",
+ "italianFontType":3,
+ "germanText":"Do-Do-Do-Do-Donderful!",
+ "germanFontType":3,
+ "spanishText":"Do-Do-Do-Do-Donderful!",
+ "spanishFontType":3,
+ "chineseTText":"全力咚咚咚咚咚!",
+ "chineseTFontType":1,
+ "koreanText":"덩기덕쿵더풀!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_haya",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_haya",
+ "japaneseText":"",
+ "englishUsText":"ドドドドドンだフル!",
+ "englishUsFontType":0,
+ "frenchText":"ドドドドドンだフル!",
+ "frenchFontType":0,
+ "italianText":"ドドドドドンだフル!",
+ "italianFontType":0,
+ "germanText":"ドドドドドンだフル!",
+ "germanFontType":0,
+ "spanishText":"ドドドドドンだフル!",
+ "spanishFontType":0,
+ "chineseTText":"ドドドドドンだフル!",
+ "chineseTFontType":0,
+ "koreanText":"ドドドドドンだフル!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_wavybb",
+ "japaneseText":"Wavy Baby",
+ "englishUsText":"Wavy Baby",
+ "englishUsFontType":3,
+ "frenchText":"Wavy Baby",
+ "frenchFontType":3,
+ "italianText":"Wavy Baby",
+ "italianFontType":3,
+ "germanText":"Wavy Baby",
+ "germanFontType":3,
+ "spanishText":"Wavy Baby",
+ "spanishFontType":3,
+ "chineseTText":"Wavy Baby",
+ "chineseTFontType":1,
+ "koreanText":"Wavy Baby",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_wavybb",
+ "japaneseText":"陽当モナカ",
+ "englishUsText":"Monaka Hinata",
+ "englishUsFontType":3,
+ "frenchText":"Monaka Hinata",
+ "frenchFontType":3,
+ "italianText":"Monaka Hinata",
+ "italianFontType":3,
+ "germanText":"Monaka Hinata",
+ "germanFontType":3,
+ "spanishText":"Monaka Hinata",
+ "spanishFontType":3,
+ "chineseTText":"Monaka Hinata",
+ "chineseTFontType":1,
+ "koreanText":"Monaka Hinata",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_wavybb",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_spcsam",
+ "japaneseText":"宇宙SAMURAI",
+ "englishUsText":"UCHU SAMURAI",
+ "englishUsFontType":3,
+ "frenchText":"UCHU SAMURAI",
+ "frenchFontType":3,
+ "italianText":"UCHU SAMURAI",
+ "italianFontType":3,
+ "germanText":"UCHU SAMURAI",
+ "germanFontType":3,
+ "spanishText":"UCHU SAMURAI",
+ "spanishFontType":3,
+ "chineseTText":"宇宙SAMURAI",
+ "chineseTFontType":1,
+ "koreanText":"우주SAMURAI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_spcsam",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_spcsam",
+ "japaneseText":"",
+ "englishUsText":"宇宙SAMURAI",
+ "englishUsFontType":0,
+ "frenchText":"宇宙SAMURAI",
+ "frenchFontType":0,
+ "italianText":"宇宙SAMURAI",
+ "italianFontType":0,
+ "germanText":"宇宙SAMURAI",
+ "germanFontType":0,
+ "spanishText":"宇宙SAMURAI",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"宇宙SAMURAI",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_ynzkdn",
+ "japaneseText":"楽曲「感電」配信中",
+ "englishUsText":"\"Kanden\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「感電」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Kanden」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_hkyell",
+ "japaneseText":"楽曲「星影のエール」配信中",
+ "englishUsText":"\"Hoshikage no Yell\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「星光的歡呼」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Hoshikage no Yell」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_tohopack04",
+ "japaneseText":"「東方ProjectアレンジパックVol.4」配信中",
+ "englishUsText":"Touhou Project Arrangements Pack Vol. 4 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「東方Project Arrangements Pack Vol.4」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「Touhou Project Arrangements Pack Vol.4」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_donder07",
+ "japaneseText":"「ドンだーパック -ナツオリ-Vol.2」配信中",
+ "englishUsText":"Donder Pack -NatsuOri- Vol. 2 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「Donder Pack -懷舊原創曲- Vol.2」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「태고러 팩 -추억의 오리지널송- Vol.2」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_164",
+ "japaneseText":"そちもワルよのぅ",
+ "englishUsText":"You're as good as I am!",
+ "englishUsFontType":3,
+ "frenchText":"Toi et moi, on est au même niveau !",
+ "frenchFontType":3,
+ "italianText":"Sei forte quanto me!",
+ "italianFontType":3,
+ "germanText":"Du bist mir ebenbürtig!",
+ "germanFontType":3,
+ "spanishText":"¡Se te da tan bien como a mí!",
+ "spanishFontType":3,
+ "chineseTText":"你也很壞嘛",
+ "chineseTFontType":1,
+ "koreanText":"댁도 참 못됐구려",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_165",
+ "japaneseText":"てきながらあっぱれ!",
+ "englishUsText":"A splendid performance! ",
+ "englishUsFontType":3,
+ "frenchText":"C'était superbe ! ",
+ "frenchFontType":3,
+ "italianText":"Una prestazione eccellente! ",
+ "italianFontType":3,
+ "germanText":"Das war eine Glanzleistung! ",
+ "germanFontType":3,
+ "spanishText":"¡Una actuación de diez!",
+ "spanishFontType":3,
+ "chineseTText":"雖是敵人但值得讚賞!",
+ "chineseTFontType":1,
+ "koreanText":"적이지만 훌륭하도다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_166",
+ "japaneseText":"いざ!じんじょうに勝負!",
+ "englishUsText":"Let's do this, fair and square!",
+ "englishUsFontType":3,
+ "frenchText":"Faisons ça dans les règles !",
+ "frenchFontType":3,
+ "italianText":"Vinca il migliore, senza trucchi!",
+ "italianFontType":3,
+ "germanText":"Auf geht's, offen und ehrlich!",
+ "germanFontType":3,
+ "spanishText":"¡A por todas!",
+ "spanishFontType":3,
+ "chineseTText":"來吧!一決勝負!",
+ "chineseTFontType":1,
+ "koreanText":"자! 정정당당히 겨루자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_kousui",
+ "japaneseText":"香水",
+ "englishUsText":"KOUSUI",
+ "englishUsFontType":3,
+ "frenchText":"KOUSUI",
+ "frenchFontType":3,
+ "italianText":"KOUSUI",
+ "italianFontType":3,
+ "germanText":"KOUSUI",
+ "germanFontType":3,
+ "spanishText":"KOUSUI",
+ "spanishFontType":3,
+ "chineseTText":"香水",
+ "chineseTFontType":1,
+ "koreanText":"KOUSUI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_kousui",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kousui",
+ "japaneseText":"",
+ "englishUsText":"香水",
+ "englishUsFontType":0,
+ "frenchText":"香水",
+ "frenchFontType":0,
+ "italianText":"香水",
+ "italianFontType":0,
+ "germanText":"香水",
+ "germanFontType":0,
+ "spanishText":"香水",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"香水",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_dobfav",
+ "japaneseText":"Favorite Days",
+ "englishUsText":"Favorite Days",
+ "englishUsFontType":3,
+ "frenchText":"Favorite Days",
+ "frenchFontType":3,
+ "italianText":"Favorite Days",
+ "italianFontType":3,
+ "germanText":"Favorite Days",
+ "germanFontType":3,
+ "spanishText":"Favorite Days",
+ "spanishFontType":3,
+ "chineseTText":"Favorite Days",
+ "chineseTFontType":1,
+ "koreanText":"Favorite Days",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_dobfav",
+ "japaneseText":"日高零奈(CV:蔀 祐佳) 「電音部」より",
+ "englishUsText":"Reina Hidaka (CV: Yuuka Shidomi) From \" DEN-ON-BU \"",
+ "englishUsFontType":3,
+ "frenchText":"Reina Hidaka (CV: Yuuka Shidomi) tiré de \" DEN-ON-BU \"",
+ "frenchFontType":3,
+ "italianText":"Reina Hidaka (CV: Yuuka Shidomi) Da \" DEN-ON-BU \"",
+ "italianFontType":3,
+ "germanText":"Reina Hidaka (CV: Yuuka Shidomi) Aus \" DEN-ON-BU \"",
+ "germanFontType":3,
+ "spanishText":"Reina Hidaka (CV: Yuuka Shidomi) De \" DEN-ON-BU \"",
+ "spanishFontType":3,
+ "chineseTText":"Reina Hidaka (CV: Yuuka Shidomi) 來自「電音部」",
+ "chineseTFontType":1,
+ "koreanText":"Reina Hidaka (CV: Yuuka Shidomi) \" DEN-ON-BU \"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_dobfav",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_dobma2",
+ "japaneseText":"Mani Mani(Prod. TAKU INOUE)",
+ "englishUsText":"Mani Mani(Prod. TAKU INOUE)",
+ "englishUsFontType":3,
+ "frenchText":"Mani Mani(Prod. TAKU INOUE)",
+ "frenchFontType":3,
+ "italianText":"Mani Mani(Prod. TAKU INOUE)",
+ "italianFontType":3,
+ "germanText":"Mani Mani(Prod. TAKU INOUE)",
+ "germanFontType":3,
+ "spanishText":"Mani Mani(Prod. TAKU INOUE)",
+ "spanishFontType":3,
+ "chineseTText":"Mani Mani(Prod. TAKU INOUE)",
+ "chineseTFontType":1,
+ "koreanText":"Mani Mani(Prod. TAKU INOUE)",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_dobma2",
+ "japaneseText":"東雲和音(CV:天音みほ) 「電音部」より",
+ "englishUsText":"Kazune Shinonome (CV: Miho Amane) From \" DEN-ON-BU \"",
+ "englishUsFontType":3,
+ "frenchText":"Kazune Shinonome (CV: Miho Amane) tiré de \" DEN-ON-BU \"",
+ "frenchFontType":3,
+ "italianText":"Kazune Shinonome (CV: Miho Amane) Da \" DEN-ON-BU \"",
+ "italianFontType":3,
+ "germanText":"Kazune Shinonome (CV: Miho Amane) Aus \" DEN-ON-BU \"",
+ "germanFontType":3,
+ "spanishText":"Kazune Shinonome (CV: Miho Amane) De \" DEN-ON-BU \"",
+ "spanishFontType":3,
+ "chineseTText":"Kazune Shinonome (CV: Miho Amane) 來自「電音部」",
+ "chineseTFontType":1,
+ "koreanText":"Kazune Shinonome (CV: Miho Amane) \" DEN-ON-BU \"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_dobma2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_dobbsk",
+ "japaneseText":"アイドル狂戦士(feat.佐藤貴文)",
+ "englishUsText":"Idol Berserker (feat. Takafumi Sato)",
+ "englishUsFontType":3,
+ "frenchText":"Idol Berserker (feat. Takafumi Sato)",
+ "frenchFontType":3,
+ "italianText":"Idol Berserker (feat. Takafumi Sato)",
+ "italianFontType":3,
+ "germanText":"Idol Berserker (feat. Takafumi Sato)",
+ "germanFontType":3,
+ "spanishText":"Idol Berserker (feat. Takafumi Sato)",
+ "spanishFontType":3,
+ "chineseTText":"Idol狂戦士(feat.佐藤貴文)",
+ "chineseTFontType":1,
+ "koreanText":"Idol Berserker (feat.Takafumi Sato)",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_dobbsk",
+ "japaneseText":"茅野ふたば(CV:堀越せな) 「電音部」より",
+ "englishUsText":"Futaba Kayano (CV: Sena Horikoshi) From \" DEN-ON-BU \"",
+ "englishUsFontType":3,
+ "frenchText":"Futaba Kayano (CV: Sena Horikoshi) tiré de \" DEN-ON-BU \"",
+ "frenchFontType":3,
+ "italianText":"Futaba Kayano (CV: Sena Horikoshi) Da \" DEN-ON-BU \"",
+ "italianFontType":3,
+ "germanText":"Futaba Kayano (CV: Sena Horikoshi) Aus \" DEN-ON-BU \"",
+ "germanFontType":3,
+ "spanishText":"Futaba Kayano (CV: Sena Horikoshi) De \" DEN-ON-BU \"",
+ "spanishFontType":3,
+ "chineseTText":"Futaba Kayano (CV: Sena Horikoshi) 來自「電音部」",
+ "chineseTFontType":1,
+ "koreanText":"Futaba Kayano (CV: Sena Horikoshi) \" DEN-ON-BU \"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_dobbsk",
+ "japaneseText":"",
+ "englishUsText":"アイドル狂戦士(feat.佐藤貴文)",
+ "englishUsFontType":0,
+ "frenchText":"アイドル狂戦士(feat.佐藤貴文)",
+ "frenchFontType":0,
+ "italianText":"アイドル狂戦士(feat.佐藤貴文)",
+ "italianFontType":0,
+ "germanText":"アイドル狂戦士(feat.佐藤貴文)",
+ "germanFontType":0,
+ "spanishText":"アイドル狂戦士(feat.佐藤貴文)",
+ "spanishFontType":0,
+ "chineseTText":"アイドル狂戦士(feat.佐藤貴文)",
+ "chineseTFontType":0,
+ "koreanText":"アイドル狂戦士(feat.佐藤貴文)",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_csabop",
+ "japaneseText":"響け!太鼓の達人",
+ "englishUsText":"HIBIKE! Taiko No Tatsujin",
+ "englishUsFontType":3,
+ "frenchText":"HIBIKE! Taiko No Tatsujin",
+ "frenchFontType":3,
+ "italianText":"HIBIKE! Taiko No Tatsujin",
+ "italianFontType":3,
+ "germanText":"HIBIKE! Taiko No Tatsujin",
+ "germanFontType":3,
+ "spanishText":"HIBIKE! Taiko No Tatsujin",
+ "spanishFontType":3,
+ "chineseTText":"響徹雲霄!太鼓之達人",
+ "chineseTFontType":1,
+ "koreanText":"히비케!태고의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_csabop",
+ "japaneseText":"水木一郎・堀江美都子・影山ヒロノブ 「太鼓の達人 とびっきり!アニメスペシャル」TS",
+ "englishUsText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "englishUsFontType":3,
+ "frenchText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "frenchFontType":3,
+ "italianText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "italianFontType":3,
+ "germanText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "germanFontType":3,
+ "spanishText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "spanishFontType":3,
+ "chineseTText":"水木一郎・堀江美都子・影山ヒロノブ",
+ "chineseTFontType":1,
+ "koreanText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_csabop",
+ "japaneseText":"",
+ "englishUsText":"響け!太鼓の達人",
+ "englishUsFontType":0,
+ "frenchText":"響け!太鼓の達人",
+ "frenchFontType":0,
+ "italianText":"響け!太鼓の達人",
+ "italianFontType":0,
+ "germanText":"響け!太鼓の達人",
+ "germanFontType":0,
+ "spanishText":"響け!太鼓の達人",
+ "spanishFontType":0,
+ "chineseTText":"響け!太鼓の達人",
+ "chineseTFontType":0,
+ "koreanText":"響け!太鼓の達人",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_excsab",
+ "japaneseText":"響け!太鼓の達人 -Long Ver.-",
+ "englishUsText":"HIBIKE! Taiko No Tatsujin -Long Ver.-",
+ "englishUsFontType":3,
+ "frenchText":"HIBIKE! Taiko No Tatsujin -Long Ver.-",
+ "frenchFontType":3,
+ "italianText":"HIBIKE! Taiko No Tatsujin -Long Ver.-",
+ "italianFontType":3,
+ "germanText":"HIBIKE! Taiko No Tatsujin -Long Ver.-",
+ "germanFontType":3,
+ "spanishText":"HIBIKE! Taiko No Tatsujin -Long Ver.-",
+ "spanishFontType":3,
+ "chineseTText":"響徹雲霄!太鼓之達人 -Long Ver.-",
+ "chineseTFontType":1,
+ "koreanText":"히비케!태고의 달인 -Long Ver.-",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_excsab",
+ "japaneseText":"水木一郎・堀江美都子・影山ヒロノブ 「太鼓の達人 とびっきり!アニメスペシャル」TS",
+ "englishUsText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "englishUsFontType":3,
+ "frenchText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "frenchFontType":3,
+ "italianText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "italianFontType":3,
+ "germanText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "germanFontType":3,
+ "spanishText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "spanishFontType":3,
+ "chineseTText":"水木一郎・堀江美都子・影山ヒロノブ",
+ "chineseTFontType":1,
+ "koreanText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_excsab",
+ "japaneseText":"",
+ "englishUsText":"響け!太鼓の達人 -Long Ver.-",
+ "englishUsFontType":0,
+ "frenchText":"響け!太鼓の達人 -Long Ver.-",
+ "frenchFontType":0,
+ "italianText":"響け!太鼓の達人 -Long Ver.-",
+ "italianFontType":0,
+ "germanText":"響け!太鼓の達人 -Long Ver.-",
+ "germanFontType":0,
+ "spanishText":"響け!太鼓の達人 -Long Ver.-",
+ "spanishFontType":0,
+ "chineseTText":"響け!太鼓の達人 -Long Ver.-",
+ "chineseTFontType":0,
+ "koreanText":"響け!太鼓の達人 -Long Ver.-",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_pspopn",
+ "japaneseText":"くもまでとどけ!",
+ "englishUsText":"KUMO MADE TODOKE!",
+ "englishUsFontType":3,
+ "frenchText":"KUMO MADE TODOKE!",
+ "frenchFontType":3,
+ "italianText":"KUMO MADE TODOKE!",
+ "italianFontType":3,
+ "germanText":"KUMO MADE TODOKE!",
+ "germanFontType":3,
+ "spanishText":"KUMO MADE TODOKE!",
+ "spanishFontType":3,
+ "chineseTText":"直達天際!",
+ "chineseTFontType":1,
+ "koreanText":"쿠모마데 토도케!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_pspopn",
+ "japaneseText":"「太鼓の達人 ぽ~たぶる2」テーマソング",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_pspopn",
+ "japaneseText":"",
+ "englishUsText":"くもまでとどけ!",
+ "englishUsFontType":0,
+ "frenchText":"くもまでとどけ!",
+ "frenchFontType":0,
+ "italianText":"くもまでとどけ!",
+ "italianFontType":0,
+ "germanText":"くもまでとどけ!",
+ "germanFontType":0,
+ "spanishText":"くもまでとどけ!",
+ "spanishFontType":0,
+ "chineseTText":"くもまでとどけ!",
+ "chineseTFontType":0,
+ "koreanText":"くもまでとどけ!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ds2op",
+ "japaneseText":"七色ハーモニー",
+ "englishUsText":"NANAIRO Harmony",
+ "englishUsFontType":3,
+ "frenchText":"NANAIRO Harmony",
+ "frenchFontType":3,
+ "italianText":"NANAIRO Harmony",
+ "italianFontType":3,
+ "germanText":"NANAIRO Harmony",
+ "germanFontType":3,
+ "spanishText":"NANAIRO Harmony",
+ "spanishFontType":3,
+ "chineseTText":"七色和弦",
+ "chineseTFontType":1,
+ "koreanText":"나나이로 Harmony",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ds2op",
+ "japaneseText":"「めっちゃ!太鼓の達人DS 7つの島の大冒険」テーマソング",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ds2op",
+ "japaneseText":"",
+ "englishUsText":"七色ハーモニー",
+ "englishUsFontType":0,
+ "frenchText":"七色ハーモニー",
+ "frenchFontType":0,
+ "italianText":"七色ハーモニー",
+ "italianFontType":0,
+ "germanText":"七色ハーモニー",
+ "germanFontType":0,
+ "spanishText":"七色ハーモニー",
+ "spanishFontType":0,
+ "chineseTText":"七色ハーモニー",
+ "chineseTFontType":0,
+ "koreanText":"七色ハーモニー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_wii2op",
+ "japaneseText":"ららら☆ハッピネス",
+ "englishUsText":"La La La ☆ Happiness",
+ "englishUsFontType":3,
+ "frenchText":"La La La ☆ Happiness",
+ "frenchFontType":3,
+ "italianText":"La La La ☆ Happiness",
+ "italianFontType":3,
+ "germanText":"La La La ☆ Happiness",
+ "germanFontType":3,
+ "spanishText":"La La La ☆ Happiness",
+ "spanishFontType":3,
+ "chineseTText":"La La La ☆ Happiness",
+ "chineseTFontType":1,
+ "koreanText":"La La La ☆ Happiness",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_wii2op",
+ "japaneseText":"「太鼓の達人Wii ドドーンと2代目!」テーマソング",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_wii2op",
+ "japaneseText":"",
+ "englishUsText":"ららら☆ハッピネス",
+ "englishUsFontType":0,
+ "frenchText":"ららら☆ハッピネス",
+ "frenchFontType":0,
+ "italianText":"ららら☆ハッピネス",
+ "italianFontType":0,
+ "germanText":"ららら☆ハッピネス",
+ "germanFontType":0,
+ "spanishText":"ららら☆ハッピネス",
+ "spanishFontType":0,
+ "chineseTText":"ららら☆ハッピネス",
+ "chineseTFontType":0,
+ "koreanText":"ららら☆ハッピネス",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_3dsop",
+ "japaneseText":"キミと響くハーモニー",
+ "englishUsText":"KIMI TO HIBIKU Harmony",
+ "englishUsFontType":3,
+ "frenchText":"KIMI TO HIBIKU Harmony",
+ "frenchFontType":3,
+ "italianText":"KIMI TO HIBIKU Harmony",
+ "italianFontType":3,
+ "germanText":"KIMI TO HIBIKU Harmony",
+ "germanFontType":3,
+ "spanishText":"KIMI TO HIBIKU Harmony",
+ "spanishFontType":3,
+ "chineseTText":"與你奏響的和弦",
+ "chineseTFontType":1,
+ "koreanText":"키미토 히비쿠 Harmony",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_3dsop",
+ "japaneseText":"「太鼓の達人 ちびドラゴンと不思議なオーブ」テーマソング",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_3dsop",
+ "japaneseText":"",
+ "englishUsText":"キミと響くハーモニー",
+ "englishUsFontType":0,
+ "frenchText":"キミと響くハーモニー",
+ "frenchFontType":0,
+ "italianText":"キミと響くハーモニー",
+ "italianFontType":0,
+ "germanText":"キミと響くハーモニー",
+ "germanFontType":0,
+ "spanishText":"キミと響くハーモニー",
+ "spanishFontType":0,
+ "chineseTText":"キミと響くハーモニー",
+ "chineseTFontType":0,
+ "koreanText":"キミと響くハーモニー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_wiu2op",
+ "japaneseText":"もりもり☆特盛リズム♪",
+ "englishUsText":"MORIMORI ☆ TOKUMO Rhythm♪",
+ "englishUsFontType":3,
+ "frenchText":"MORIMORI ☆ TOKUMO Rhythm♪",
+ "frenchFontType":3,
+ "italianText":"MORIMORI ☆ TOKUMO Rhythm♪",
+ "italianFontType":3,
+ "germanText":"MORIMORI ☆ TOKUMO Rhythm♪",
+ "germanFontType":3,
+ "spanishText":"MORIMORI ☆ TOKUMO Rhythm♪",
+ "spanishFontType":3,
+ "chineseTText":"奮力演奏☆特級Rhythm♪",
+ "chineseTFontType":1,
+ "koreanText":"모리모리☆토쿠모Rhythm♪",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_wiu2op",
+ "japaneseText":"「太鼓の達人 特盛り!」テーマソング",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_wiu2op",
+ "japaneseText":"",
+ "englishUsText":"もりもり☆特盛リズム♪",
+ "englishUsFontType":0,
+ "frenchText":"もりもり☆特盛リズム♪",
+ "frenchFontType":0,
+ "italianText":"もりもり☆特盛リズム♪",
+ "italianFontType":0,
+ "germanText":"もりもり☆特盛リズム♪",
+ "germanFontType":0,
+ "spanishText":"もりもり☆特盛リズム♪",
+ "spanishFontType":0,
+ "chineseTText":"もりもり☆特盛リズム♪",
+ "chineseTFontType":0,
+ "koreanText":"もりもり☆特盛リズム♪",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_vt1op",
+ "japaneseText":"希望へのメロディー",
+ "englishUsText":"KIBOU ENO Melody",
+ "englishUsFontType":3,
+ "frenchText":"KIBOU ENO Melody",
+ "frenchFontType":3,
+ "italianText":"KIBOU ENO Melody",
+ "italianFontType":3,
+ "germanText":"KIBOU ENO Melody",
+ "germanFontType":3,
+ "spanishText":"KIBOU ENO Melody",
+ "spanishFontType":3,
+ "chineseTText":"邁向希望的旋律",
+ "chineseTFontType":1,
+ "koreanText":"키보우에노 Melody",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_vt1op",
+ "japaneseText":"「太鼓の達人 Vバージョン」テーマソング",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「太鼓之達人 Vversion」主題曲",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_vt1op",
+ "japaneseText":"",
+ "englishUsText":"希望へのメロディー",
+ "englishUsFontType":0,
+ "frenchText":"希望へのメロディー",
+ "frenchFontType":0,
+ "italianText":"希望へのメロディー",
+ "italianFontType":0,
+ "germanText":"希望へのメロディー",
+ "germanFontType":0,
+ "spanishText":"希望へのメロディー",
+ "spanishFontType":0,
+ "chineseTText":"希望へのメロディー",
+ "chineseTFontType":0,
+ "koreanText":"希望へのメロディー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_psf1op",
+ "japaneseText":"つながれ!ひろがれ!打ち上がれ!",
+ "englishUsText":"TSUNAGARE! HIROGARE! UCHIAGARE!",
+ "englishUsFontType":3,
+ "frenchText":"TSUNAGARE! HIROGARE! UCHIAGARE!",
+ "frenchFontType":3,
+ "italianText":"TSUNAGARE! HIROGARE! UCHIAGARE!",
+ "italianFontType":3,
+ "germanText":"TSUNAGARE! HIROGARE! UCHIAGARE!",
+ "germanFontType":3,
+ "spanishText":"TSUNAGARE! HIROGARE! UCHIAGARE!",
+ "spanishFontType":3,
+ "chineseTText":"連繫!推展!打上天!",
+ "chineseTFontType":1,
+ "koreanText":"츠나가레! 히로가레! 우치아가레!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_psf1op",
+ "japaneseText":"「太鼓の達人 セッションでドドンがドン!」テーマソング",
+ "englishUsText":"\" Taiko no Tatsujin: Drum Session! \" Theme Song",
+ "englishUsFontType":3,
+ "frenchText":"Thème \" Taiko no Tatsujin: Drum Session! \"",
+ "frenchFontType":3,
+ "italianText":"Tema di \" Taiko no Tatsujin: Drum Session! \"",
+ "italianFontType":3,
+ "germanText":"\" Taiko no Tatsujin: Drum Session! \"-Titellied",
+ "germanFontType":3,
+ "spanishText":"Tema de \" Taiko no Tatsujin: Drum Session! \"",
+ "spanishFontType":3,
+ "chineseTText":"「太鼓之達人 合奏咚咚咚!」主題曲",
+ "chineseTFontType":1,
+ "koreanText":"\"태고의 달인 모두 함께 쿵딱쿵!\" Theme Song",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_psf1op",
+ "japaneseText":"",
+ "englishUsText":"つながれ!ひろがれ!打ち上がれ!",
+ "englishUsFontType":0,
+ "frenchText":"つながれ!ひろがれ!打ち上がれ!",
+ "frenchFontType":0,
+ "italianText":"つながれ!ひろがれ!打ち上がれ!",
+ "italianFontType":0,
+ "germanText":"つながれ!ひろがれ!打ち上がれ!",
+ "germanFontType":0,
+ "spanishText":"つながれ!ひろがれ!打ち上がれ!",
+ "spanishFontType":0,
+ "chineseTText":"つながれ!ひろがれ!打ち上がれ!",
+ "chineseTFontType":0,
+ "koreanText":"つながれ!ひろがれ!打ち上がれ!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mgpafe",
+ "japaneseText":"マジカル・パフェ",
+ "englishUsText":"Magical Parfait",
+ "englishUsFontType":3,
+ "frenchText":"Magical Parfait",
+ "frenchFontType":3,
+ "italianText":"Magical Parfait",
+ "italianFontType":3,
+ "germanText":"Magical Parfait",
+ "germanFontType":3,
+ "spanishText":"Magical Parfait",
+ "spanishFontType":3,
+ "chineseTText":"Magical Parfait",
+ "chineseTFontType":1,
+ "koreanText":"Magical Parfait",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mgpafe",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mgpafe",
+ "japaneseText":"",
+ "englishUsText":"マジカル・パフェ",
+ "englishUsFontType":0,
+ "frenchText":"マジカル・パフェ",
+ "frenchFontType":0,
+ "italianText":"マジカル・パフェ",
+ "italianFontType":0,
+ "germanText":"マジカル・パフェ",
+ "germanFontType":0,
+ "spanishText":"マジカル・パフェ",
+ "spanishFontType":0,
+ "chineseTText":"マジカル・パフェ",
+ "chineseTFontType":0,
+ "koreanText":"マジカル・パフェ",
+ "koreanFontType":0
+ },
+ {
+ "key":"greeting_167",
+ "japaneseText":"この戦い、甘くないな!",
+ "englishUsText":"This battle, you'll taste bitter defeat!",
+ "englishUsFontType":3,
+ "frenchText":"Pour cette bataille, ta défaite sera amère !",
+ "frenchFontType":3,
+ "italianText":"Subirai una sconfitta amara!",
+ "italianFontType":3,
+ "germanText":"In diesem Kampf wirst du eine bittere Niederlage erleiden!",
+ "germanFontType":3,
+ "spanishText":"¡Acabarás esta batalla con una derrota amarga!",
+ "spanishFontType":3,
+ "chineseTText":"別輕視這場戰鬥了!",
+ "chineseTFontType":1,
+ "koreanText":"이것 참 씁쓸하구먼!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_168",
+ "japaneseText":"甘い時間でした・・・",
+ "englishUsText":"That last match was delicious...",
+ "englishUsFontType":3,
+ "frenchText":"Ce dernier match était délicieux...",
+ "frenchFontType":3,
+ "italianText":"L'appetito vien mangiando...!",
+ "italianFontType":3,
+ "germanText":"Die letzte Partie war mir ein Genuss ...",
+ "germanFontType":3,
+ "spanishText":"La última partida ha sido exquisita.",
+ "spanishFontType":3,
+ "chineseTText":"真是段美好的時光...",
+ "chineseTFontType":1,
+ "koreanText":"달콤한 시간이었어요…",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_169",
+ "japaneseText":"甘く見ないでね♡",
+ "englishUsText":"Don't let my sweet demeanor fool you <3",
+ "englishUsFontType":3,
+ "frenchText":"Ne te laisse pas avoir par ma mine exquise <3",
+ "frenchFontType":3,
+ "italianText":"Non farti ingannare dalla mia dolcezza esteriore <3",
+ "italianFontType":3,
+ "germanText":"Lass dich nicht von meiner zuckersüßen Art täuschen <3",
+ "germanFontType":3,
+ "spanishText":"No te dejes engañar porque actúe con dulzura. <3",
+ "spanishFontType":3,
+ "chineseTText":"別小看我喔♡",
+ "chineseTFontType":1,
+ "koreanText":"난 그렇게 무르지 않아♡",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_kousui",
+ "japaneseText":"楽曲「香水」配信中",
+ "englishUsText":"\"KOUSUI\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「香水」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「KOUSUI」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_denonpack01",
+ "japaneseText":"「電音部-外神田文芸高校-パック」配信中",
+ "englishUsText":"DEN-ON-BU -Sotokanda Bungei High School- Pack now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「電音部-外神田文藝高校-Pack」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「DEN-ON-BU -Sotokanda Bungei High School- Pack」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_rekidai",
+ "japaneseText":"「20周年記念!歴代テーマソングパック」配信中",
+ "englishUsText":"20th Anniversary! Generations Theme Song Pack now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「20周年紀念!歷代主題曲Pack」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「20주년 기념!역대 Theme Song Pack」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_yrsdak",
+ "japaneseText":"だから僕は音楽を辞めた",
+ "englishUsText":"Moonlight",
+ "englishUsFontType":3,
+ "frenchText":"Moonlight",
+ "frenchFontType":3,
+ "italianText":"Moonlight",
+ "italianFontType":3,
+ "germanText":"Moonlight",
+ "germanFontType":3,
+ "spanishText":"Moonlight",
+ "spanishFontType":3,
+ "chineseTText":"月光",
+ "chineseTFontType":1,
+ "koreanText":"Moonlight",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_yrsdak",
+ "japaneseText":"ヨルシカ",
+ "englishUsText":"YORUSHIKA",
+ "englishUsFontType":3,
+ "frenchText":"YORUSHIKA",
+ "frenchFontType":3,
+ "italianText":"YORUSHIKA",
+ "italianFontType":3,
+ "germanText":"YORUSHIKA",
+ "germanFontType":3,
+ "spanishText":"YORUSHIKA",
+ "spanishFontType":3,
+ "chineseTText":"YORUSHIKA",
+ "chineseTFontType":1,
+ "koreanText":"YORUSHIKA",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_yrsdak",
+ "japaneseText":"",
+ "englishUsText":"だから僕は音楽を辞めた",
+ "englishUsFontType":0,
+ "frenchText":"だから僕は音楽を辞めた",
+ "frenchFontType":0,
+ "italianText":"だから僕は音楽を辞めた",
+ "italianFontType":0,
+ "germanText":"だから僕は音楽を辞めた",
+ "germanFontType":0,
+ "spanishText":"だから僕は音楽を辞めた",
+ "spanishFontType":0,
+ "chineseTText":"だから僕は音楽を辞めた",
+ "chineseTFontType":0,
+ "koreanText":"だから僕は音楽を辞めた",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kimhom",
+ "japaneseText":"炎",
+ "englishUsText":"HOMURA",
+ "englishUsFontType":3,
+ "frenchText":"HOMURA",
+ "frenchFontType":3,
+ "italianText":"HOMURA",
+ "italianFontType":3,
+ "germanText":"HOMURA",
+ "germanFontType":3,
+ "spanishText":"HOMURA",
+ "spanishFontType":3,
+ "chineseTText":"炎",
+ "chineseTFontType":1,
+ "koreanText":"HOMURA",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_kimhom",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kimhom",
+ "japaneseText":"",
+ "englishUsText":"炎",
+ "englishUsFontType":0,
+ "frenchText":"炎",
+ "frenchFontType":0,
+ "italianText":"炎",
+ "italianFontType":0,
+ "germanText":"炎",
+ "germanFontType":0,
+ "spanishText":"炎",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"炎",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_evekai",
+ "japaneseText":"廻廻奇譚",
+ "englishUsText":"KAIKAIKITAN",
+ "englishUsFontType":3,
+ "frenchText":"KAIKAIKITAN",
+ "frenchFontType":3,
+ "italianText":"KAIKAIKITAN",
+ "italianFontType":3,
+ "germanText":"KAIKAIKITAN",
+ "germanFontType":3,
+ "spanishText":"KAIKAIKITAN",
+ "spanishFontType":3,
+ "chineseTText":"廻廻奇譚",
+ "chineseTFontType":1,
+ "koreanText":"KAIKAIKITAN",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_evekai",
+ "japaneseText":"TVアニメ『呪術廻戦』第1クールオープニングテーマ",
+ "englishUsText":"TV Anime \"JUJUTSU KAISEN\" Cour 1 Opening Theme",
+ "englishUsFontType":3,
+ "frenchText":"TV Anime \"JUJUTSU KAISEN\" Cour 1 Opening Theme",
+ "frenchFontType":3,
+ "italianText":"TV Anime \"JUJUTSU KAISEN\" Cour 1 Opening Theme",
+ "italianFontType":3,
+ "germanText":"TV Anime \"JUJUTSU KAISEN\" Cour 1 Opening Theme",
+ "germanFontType":3,
+ "spanishText":"TV Anime \"JUJUTSU KAISEN\" Cour 1 Opening Theme",
+ "spanishFontType":3,
+ "chineseTText":"電視動畫「咒術迴戰」第一期片頭曲",
+ "chineseTFontType":1,
+ "koreanText":"TV애니메이션 “주술회전” 1쿨 오프닝 테마",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_evekai",
+ "japaneseText":"",
+ "englishUsText":"廻廻奇譚",
+ "englishUsFontType":0,
+ "frenchText":"廻廻奇譚",
+ "frenchFontType":0,
+ "italianText":"廻廻奇譚",
+ "italianFontType":0,
+ "germanText":"廻廻奇譚",
+ "germanFontType":0,
+ "spanishText":"廻廻奇譚",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"廻廻奇譚",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_dobhov",
+ "japaneseText":"Hand Over (Prod. TEMPLIME)",
+ "englishUsText":"Hand Over (Prod. TEMPLIME)",
+ "englishUsFontType":3,
+ "frenchText":"Hand Over (Prod. TEMPLIME)",
+ "frenchFontType":3,
+ "italianText":"Hand Over (Prod. TEMPLIME)",
+ "italianFontType":3,
+ "germanText":"Hand Over (Prod. TEMPLIME)",
+ "germanFontType":3,
+ "spanishText":"Hand Over (Prod. TEMPLIME)",
+ "spanishFontType":3,
+ "chineseTText":"Hand Over (Prod. TEMPLIME)",
+ "chineseTFontType":1,
+ "koreanText":"Hand Over (Prod. TEMPLIME)",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_dobhov",
+ "japaneseText":"外神田文芸高校電音部 「電音部」より",
+ "englishUsText":"Sotokanda Bungei High School DEN-ON-BU From \" DEN-ON-BU \"",
+ "englishUsFontType":3,
+ "frenchText":"Sotokanda Bungei High School DEN-ON-BU tiré de \" DEN-ON-BU \"",
+ "frenchFontType":3,
+ "italianText":"Sotokanda Bungei High School DEN-ON-BU Da \" DEN-ON-BU \"",
+ "italianFontType":3,
+ "germanText":"Sotokanda Bungei High School DEN-ON-BU Aus \" DEN-ON-BU \"",
+ "germanFontType":3,
+ "spanishText":"Sotokanda Bungei High School DEN-ON-BU De \" DEN-ON-BU \"",
+ "spanishFontType":3,
+ "chineseTText":"外神田文藝高校電音部 來自「電音部」",
+ "chineseTFontType":1,
+ "koreanText":"Sotokanda Bungei High School DEN-ON-BU \" DEN-ON-BU \"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_dobhov",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_dobhbs",
+ "japaneseText":"Hyper Bass (feat. Yunomi)",
+ "englishUsText":"Hyper Bass (feat. Yunomi)",
+ "englishUsFontType":3,
+ "frenchText":"Hyper Bass (feat. Yunomi)",
+ "frenchFontType":3,
+ "italianText":"Hyper Bass (feat. Yunomi)",
+ "italianFontType":3,
+ "germanText":"Hyper Bass (feat. Yunomi)",
+ "germanFontType":3,
+ "spanishText":"Hyper Bass (feat. Yunomi)",
+ "spanishFontType":3,
+ "chineseTText":"Hyper Bass (feat. Yunomi)",
+ "chineseTFontType":1,
+ "koreanText":"Hyper Bass (feat. Yunomi)",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_dobhbs",
+ "japaneseText":"神宮前参道學園電音部 「電音部」より",
+ "englishUsText":"Jingumae Sando High School DEN-ON-BU From \" DEN-ON-BU \"",
+ "englishUsFontType":3,
+ "frenchText":"Jingumae Sando High School DEN-ON-BU tiré de \" DEN-ON-BU \"",
+ "frenchFontType":3,
+ "italianText":"Jingumae Sando High School DEN-ON-BU Da \" DEN-ON-BU \"",
+ "italianFontType":3,
+ "germanText":"Jingumae Sando High School DEN-ON-BU Aus \" DEN-ON-BU \"",
+ "germanFontType":3,
+ "spanishText":"Jingumae Sando High School DEN-ON-BU De \" DEN-ON-BU \"",
+ "spanishFontType":3,
+ "chineseTText":"神宮前參道學園電音部 來自「電音部」",
+ "chineseTFontType":1,
+ "koreanText":"Jingumae Sando High School DEN-ON-BU \" DEN-ON-BU \"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_dobhbs",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_dobbbl",
+ "japaneseText":"いただきバベル (Prod. ケンモチヒデフミ)",
+ "englishUsText":"Itadaki Babel (Prod. Kenmochi Hidefumi)",
+ "englishUsFontType":3,
+ "frenchText":"Itadaki Babel (Prod. Kenmochi Hidefumi)",
+ "frenchFontType":3,
+ "italianText":"Itadaki Babel (Prod. Kenmochi Hidefumi)",
+ "italianFontType":3,
+ "germanText":"Itadaki Babel (Prod. Kenmochi Hidefumi)",
+ "germanFontType":3,
+ "spanishText":"Itadaki Babel (Prod. Kenmochi Hidefumi)",
+ "spanishFontType":3,
+ "chineseTText":"Itadaki Babel (Prod. Kenmochi Hidefumi)",
+ "chineseTFontType":1,
+ "koreanText":"Itadaki Babel (Prod. Kenmochi Hidefumi)",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_dobbbl",
+ "japaneseText":"黒鉄たま (CV: 秋奈) 「電音部」より",
+ "englishUsText":"Tama Kurogane (CV: Akina) From \" DEN-ON-BU \"",
+ "englishUsFontType":3,
+ "frenchText":"Tama Kurogane (CV: Akina) tiré de \" DEN-ON-BU \"",
+ "frenchFontType":3,
+ "italianText":"Tama Kurogane (CV: Akina) Da \" DEN-ON-BU \"",
+ "italianFontType":3,
+ "germanText":"Tama Kurogane (CV: Akina) Aus \" DEN-ON-BU \"",
+ "germanFontType":3,
+ "spanishText":"Tama Kurogane (CV: Akina) De \" DEN-ON-BU \"",
+ "spanishFontType":3,
+ "chineseTText":"Tama Kurogane (CV: Akina) 來自「電音部」",
+ "chineseTFontType":1,
+ "koreanText":"Tama Kurogane (CV: Akina) \" DEN-ON-BU \"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_dobbbl",
+ "japaneseText":"",
+ "englishUsText":"いただきバベル (Prod. ケンモチヒデフミ)",
+ "englishUsFontType":0,
+ "frenchText":"いただきバベル (Prod. ケンモチヒデフミ)",
+ "frenchFontType":0,
+ "italianText":"いただきバベル (Prod. ケンモチヒデフミ)",
+ "italianFontType":0,
+ "germanText":"いただきバベル (Prod. ケンモチヒデフミ)",
+ "germanFontType":0,
+ "spanishText":"いただきバベル (Prod. ケンモチヒデフミ)",
+ "spanishFontType":0,
+ "chineseTText":"いただきバベル (Prod. ケンモチヒデフミ)",
+ "chineseTFontType":0,
+ "koreanText":"いただきバベル (Prod. ケンモチヒデフミ)",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_dobslt",
+ "japaneseText":"Shining Lights (feat. PSYQUI)",
+ "englishUsText":"Shining Lights (feat. PSYQUI)",
+ "englishUsFontType":3,
+ "frenchText":"Shining Lights (feat. PSYQUI)",
+ "frenchFontType":3,
+ "italianText":"Shining Lights (feat. PSYQUI)",
+ "italianFontType":3,
+ "germanText":"Shining Lights (feat. PSYQUI)",
+ "germanFontType":3,
+ "spanishText":"Shining Lights (feat. PSYQUI)",
+ "spanishFontType":3,
+ "chineseTText":"Shining Lights (feat. PSYQUI)",
+ "chineseTFontType":1,
+ "koreanText":"Shining Lights (feat. PSYQUI)",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_dobslt",
+ "japaneseText":"鳳凰火凛 (CV: 健屋花那) 「電音部」より",
+ "englishUsText":"Karin Houou (CV: Kana Sukoya) From \" DEN-ON-BU \"",
+ "englishUsFontType":3,
+ "frenchText":"Karin Houou (CV: Kana Sukoya) tiré de \" DEN-ON-BU \"",
+ "frenchFontType":3,
+ "italianText":"Karin Houou (CV: Kana Sukoya) Da \" DEN-ON-BU \"",
+ "italianFontType":3,
+ "germanText":"Karin Houou (CV: Kana Sukoya) Aus \" DEN-ON-BU \"",
+ "germanFontType":3,
+ "spanishText":"Karin Houou (CV: Kana Sukoya) De \" DEN-ON-BU \"",
+ "spanishFontType":3,
+ "chineseTText":"Karin Houou (CV: Kana Sukoya) 來自「電音部」",
+ "chineseTFontType":1,
+ "koreanText":"Karin Houou (CV: Kana Sukoya) \" DEN-ON-BU \"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_dobslt",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_20tfes",
+ "japaneseText":"轟け!太鼓の達人",
+ "englishUsText":"Resound! Taiko no Tatsujin!",
+ "englishUsFontType":3,
+ "frenchText":"Resound! Taiko no Tatsujin!",
+ "frenchFontType":3,
+ "italianText":"Resound! Taiko no Tatsujin!",
+ "italianFontType":3,
+ "germanText":"Resound! Taiko no Tatsujin!",
+ "germanFontType":3,
+ "spanishText":"Resound! Taiko no Tatsujin!",
+ "spanishFontType":3,
+ "chineseTText":"震天動地!太鼓之達人",
+ "chineseTFontType":1,
+ "koreanText":"토도로케! 태고의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_20tfes",
+ "japaneseText":"太鼓deタイムトラベル20's/steμ×マスブチ×ササオカ feat.谷本貴義&たかはし智秋",
+ "englishUsText":"Taiko de TimeTravel 20's/steμ×Masubuchi×Sasaoka feat.TakayoshiTanimoto&ChiakiTakahashi",
+ "englishUsFontType":3,
+ "frenchText":"Taiko de TimeTravel 20's/steμ×Masubuchi×Sasaoka feat.TakayoshiTanimoto&ChiakiTakahashi",
+ "frenchFontType":3,
+ "italianText":"Taiko de TimeTravel 20's/steμ×Masubuchi×Sasaoka feat.TakayoshiTanimoto&ChiakiTakahashi",
+ "italianFontType":3,
+ "germanText":"Taiko de TimeTravel 20's/steμ×Masubuchi×Sasaoka feat.TakayoshiTanimoto&ChiakiTakahashi",
+ "germanFontType":3,
+ "spanishText":"Taiko de TimeTravel 20's/steμ×Masubuchi×Sasaoka feat.TakayoshiTanimoto&ChiakiTakahashi",
+ "spanishFontType":3,
+ "chineseTText":"Taiko de TimeTravel 20's/steμ×Masubuchi×Sasaoka feat.TakayoshiTanimoto&ChiakiTakahashi",
+ "chineseTFontType":3,
+ "koreanText":"Taiko de TimeTravel 20's/steμ×Masubuchi×Sasaoka feat.TakayoshiTanimoto&ChiakiTakahashi",
+ "koreanFontType":3
+ },
+ {
+ "key":"song_detail_20tfes",
+ "japaneseText":"",
+ "englishUsText":"轟け!太鼓の達人",
+ "englishUsFontType":0,
+ "frenchText":"轟け!太鼓の達人",
+ "frenchFontType":0,
+ "italianText":"轟け!太鼓の達人",
+ "italianFontType":0,
+ "germanText":"轟け!太鼓の達人",
+ "germanFontType":0,
+ "spanishText":"轟け!太鼓の達人",
+ "spanishFontType":0,
+ "chineseTText":"轟け!太鼓の達人",
+ "chineseTFontType":0,
+ "koreanText":"轟け!太鼓の達人",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_cosmb",
+ "japaneseText":"SORA‐Ⅴ コズミックバード",
+ "englishUsText":"SORA-Ⅴ Cosmic Bird",
+ "englishUsFontType":3,
+ "frenchText":"SORA-Ⅴ Cosmic Bird",
+ "frenchFontType":3,
+ "italianText":"SORA-Ⅴ Cosmic Bird",
+ "italianFontType":3,
+ "germanText":"SORA-Ⅴ Cosmic Bird",
+ "germanFontType":3,
+ "spanishText":"SORA-Ⅴ Cosmic Bird",
+ "spanishFontType":3,
+ "chineseTText":"SORA-Ⅴ COSMIC BIRD",
+ "chineseTFontType":1,
+ "koreanText":"SORA-Ⅴ COSMIC BIRD",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_cosmb",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_cosmb",
+ "japaneseText":"",
+ "englishUsText":"SORA‐Ⅴ コズミックバード",
+ "englishUsFontType":0,
+ "frenchText":"SORA‐Ⅴ コズミックバード",
+ "frenchFontType":0,
+ "italianText":"SORA‐Ⅴ コズミックバード",
+ "italianFontType":0,
+ "germanText":"SORA‐Ⅴ コズミックバード",
+ "germanFontType":0,
+ "spanishText":"SORA‐Ⅴ コズミックバード",
+ "spanishFontType":0,
+ "chineseTText":"SORA‐Ⅴ コズミックバード",
+ "chineseTFontType":0,
+ "koreanText":"SORA‐Ⅴ コズミックバード",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_yrsdak",
+ "japaneseText":"楽曲「だから僕は音楽を辞めた」配信中",
+ "englishUsText":"\"Moonlight\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「月光」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Moonlight」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_kimhom",
+ "japaneseText":"楽曲「炎」配信中",
+ "englishUsText":"\"HOMURA\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「炎」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「HOMURA」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_evekai",
+ "japaneseText":"楽曲「廻廻奇譚」配信中",
+ "englishUsText":"\"KAIKAIKITAN\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「迴迴奇譚」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「KAIKAIKITAN」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_20tfes",
+ "japaneseText":"太鼓の達人20周年曲「轟け!太鼓の達人」配信中",
+ "englishUsText":"Resound! Taiko no Tatsujin (20th Anniversary Song) now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"太鼓之達人20周年曲「震天動地!太鼓之達人」發布中",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 20주년 곡 「토도로케! 태고의 달인」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_denonpack02",
+ "japaneseText":"「電音部パック」配信中",
+ "englishUsText":"\"DEN-ON-BU Pack\" now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「電音部 Pack」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「DEN-ON-BU Pack」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_170",
+ "japaneseText":"カラをやぶったぞ!",
+ "englishUsText":"Coming out of my shell!",
+ "englishUsFontType":3,
+ "frenchText":"Je sors de ma coquille !",
+ "frenchFontType":3,
+ "italianText":"Addio guscio mio!",
+ "italianFontType":3,
+ "germanText":"Ich schlüpfe aus meinem Ei!",
+ "germanFontType":3,
+ "spanishText":"¡Que salgo del cascarón!",
+ "spanishFontType":3,
+ "chineseTText":"打破常規吧!",
+ "chineseTFontType":1,
+ "koreanText":"껍질을 깨고 나왔다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_171",
+ "japaneseText":"コケコッコー",
+ "englishUsText":"SQUAWK!",
+ "englishUsFontType":3,
+ "frenchText":"CUI-CUI !",
+ "frenchFontType":3,
+ "italianText":"SQUAWK!",
+ "italianFontType":3,
+ "germanText":"KRÄCHZ!",
+ "germanFontType":3,
+ "spanishText":"¡CUAC!",
+ "spanishFontType":3,
+ "chineseTText":"咕咕咕~",
+ "chineseTFontType":1,
+ "koreanText":"꼬끼오~",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_172",
+ "japaneseText":"立つ鳥跡を濁さず",
+ "englishUsText":"Tidy the nest before taking flight.",
+ "englishUsFontType":3,
+ "frenchText":"Range ton nid avant de prendre ton envol.",
+ "frenchFontType":3,
+ "italianText":"Metti in ordine il nido prima di volare via!",
+ "italianFontType":3,
+ "germanText":"Räum das Nest auf, bevor du davonfliegst.",
+ "germanFontType":3,
+ "spanishText":"Limpia el nido antes de emprender el vuelo.",
+ "spanishFontType":3,
+ "chineseTText":"要有始有終",
+ "chineseTFontType":1,
+ "koreanText":"날아간 뒷모습도 아름답게",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_ramen_",
+ "japaneseText":"ラーメン de Yo-Men!!",
+ "englishUsText":"RAMEN de Yo-Men!!",
+ "englishUsFontType":3,
+ "frenchText":"RAMEN de Yo-Men!!",
+ "frenchFontType":3,
+ "italianText":"RAMEN de Yo-Men!!",
+ "italianFontType":3,
+ "germanText":"RAMEN de Yo-Men!!",
+ "germanFontType":3,
+ "spanishText":"RAMEN de Yo-Men!!",
+ "spanishFontType":3,
+ "chineseTText":"拉麵 de Yo-Men!!",
+ "chineseTFontType":1,
+ "koreanText":"라멘 de Yo-Men!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ramen_",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ramen_",
+ "japaneseText":"",
+ "englishUsText":"ラーメン de Yo-Men!!",
+ "englishUsFontType":0,
+ "frenchText":"ラーメン de Yo-Men!!",
+ "frenchFontType":0,
+ "italianText":"ラーメン de Yo-Men!!",
+ "italianFontType":0,
+ "germanText":"ラーメン de Yo-Men!!",
+ "germanFontType":0,
+ "spanishText":"ラーメン de Yo-Men!!",
+ "spanishFontType":0,
+ "chineseTText":"ラーメン de Yo-Men!!",
+ "chineseTFontType":0,
+ "koreanText":"ラーメン de Yo-Men!!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ymharu",
+ "japaneseText":"春を告げる",
+ "englishUsText":"Haru wo Tsugeru",
+ "englishUsFontType":3,
+ "frenchText":"Haru wo Tsugeru",
+ "frenchFontType":3,
+ "italianText":"Haru wo Tsugeru",
+ "italianFontType":3,
+ "germanText":"Haru wo Tsugeru",
+ "germanFontType":3,
+ "spanishText":"Haru wo Tsugeru",
+ "spanishFontType":3,
+ "chineseTText":"宣告春天",
+ "chineseTFontType":1,
+ "koreanText":"봄을 고하다",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ymharu",
+ "japaneseText":"yama",
+ "englishUsText":"yama",
+ "englishUsFontType":3,
+ "frenchText":"yama",
+ "frenchFontType":3,
+ "italianText":"yama",
+ "italianFontType":3,
+ "germanText":"yama",
+ "germanFontType":3,
+ "spanishText":"yama",
+ "spanishFontType":3,
+ "chineseTText":"yama",
+ "chineseTFontType":1,
+ "koreanText":"yama",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ymharu",
+ "japaneseText":"",
+ "englishUsText":"春を告げる",
+ "englishUsFontType":0,
+ "frenchText":"春を告げる",
+ "frenchFontType":0,
+ "italianText":"春を告げる",
+ "italianFontType":0,
+ "germanText":"春を告げる",
+ "germanFontType":0,
+ "spanishText":"春を告げる",
+ "spanishFontType":0,
+ "chineseTText":"春を告げる",
+ "chineseTFontType":0,
+ "koreanText":"春を告げる",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_nekods",
+ "japaneseText":"猫",
+ "englishUsText":"NEKO",
+ "englishUsFontType":3,
+ "frenchText":"NEKO",
+ "frenchFontType":3,
+ "italianText":"NEKO",
+ "italianFontType":3,
+ "germanText":"NEKO",
+ "germanFontType":3,
+ "spanishText":"NEKO",
+ "spanishFontType":3,
+ "chineseTText":"貓",
+ "chineseTFontType":1,
+ "koreanText":"고양이",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_nekods",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_nekods",
+ "japaneseText":"",
+ "englishUsText":"猫",
+ "englishUsFontType":0,
+ "frenchText":"猫",
+ "frenchFontType":0,
+ "italianText":"猫",
+ "italianFontType":0,
+ "germanText":"猫",
+ "germanFontType":0,
+ "spanishText":"猫",
+ "spanishFontType":0,
+ "chineseTText":"猫",
+ "chineseTFontType":0,
+ "koreanText":"猫",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mgaaot",
+ "japaneseText":"青と夏",
+ "englishUsText":"Ao to Natsu",
+ "englishUsFontType":3,
+ "frenchText":"Ao to Natsu",
+ "frenchFontType":3,
+ "italianText":"Ao to Natsu",
+ "italianFontType":3,
+ "germanText":"Ao to Natsu",
+ "germanFontType":3,
+ "spanishText":"Ao to Natsu",
+ "spanishFontType":3,
+ "chineseTText":"Ao to Natsu",
+ "chineseTFontType":1,
+ "koreanText":"Ao to Natsu",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mgaaot",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mgaaot",
+ "japaneseText":"",
+ "englishUsText":"青と夏",
+ "englishUsFontType":0,
+ "frenchText":"青と夏",
+ "frenchFontType":0,
+ "italianText":"青と夏",
+ "italianFontType":0,
+ "germanText":"青と夏",
+ "germanFontType":0,
+ "spanishText":"青と夏",
+ "spanishFontType":0,
+ "chineseTText":"青と夏",
+ "chineseTFontType":0,
+ "koreanText":"青と夏",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_gumids",
+ "japaneseText":"だれかの心臓になれたなら",
+ "englishUsText":"I want to be your heart",
+ "englishUsFontType":3,
+ "frenchText":"I want to be your heart",
+ "frenchFontType":3,
+ "italianText":"I want to be your heart",
+ "italianFontType":3,
+ "germanText":"I want to be your heart",
+ "germanFontType":3,
+ "spanishText":"I want to be your heart",
+ "spanishFontType":3,
+ "chineseTText":"I want to be your heart",
+ "chineseTFontType":1,
+ "koreanText":"I want to be your heart",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_gumids",
+ "japaneseText":"ユリイ・カノン",
+ "englishUsText":"Yurry Canon",
+ "englishUsFontType":3,
+ "frenchText":"Yurry Canon",
+ "frenchFontType":3,
+ "italianText":"Yurry Canon",
+ "italianFontType":3,
+ "germanText":"Yurry Canon",
+ "germanFontType":3,
+ "spanishText":"Yurry Canon",
+ "spanishFontType":3,
+ "chineseTText":"Yurry Canon",
+ "chineseTFontType":1,
+ "koreanText":"Yurry Canon",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_gumids",
+ "japaneseText":"",
+ "englishUsText":"だれかの心臓になれたなら",
+ "englishUsFontType":0,
+ "frenchText":"だれかの心臓になれたなら",
+ "frenchFontType":0,
+ "italianText":"だれかの心臓になれたなら",
+ "italianFontType":0,
+ "germanText":"だれかの心臓になれたなら",
+ "germanFontType":0,
+ "spanishText":"だれかの心臓になれたなら",
+ "spanishFontType":0,
+ "chineseTText":"だれかの心臓になれたなら",
+ "chineseTFontType":0,
+ "koreanText":"だれかの心臓になれたなら",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mikuh8",
+ "japaneseText":"ヒバナ",
+ "englishUsText":"HIBANA",
+ "englishUsFontType":3,
+ "frenchText":"HIBANA",
+ "frenchFontType":3,
+ "italianText":"HIBANA",
+ "italianFontType":3,
+ "germanText":"HIBANA",
+ "germanFontType":3,
+ "spanishText":"HIBANA",
+ "spanishFontType":3,
+ "chineseTText":"HIBANA",
+ "chineseTFontType":1,
+ "koreanText":"HIBANA",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mikuh8",
+ "japaneseText":"DECO*27 feat.初音ミク",
+ "englishUsText":"DECO*27 feat. HATSUNE MIKU",
+ "englishUsFontType":3,
+ "frenchText":"DECO*27 feat. HATSUNE MIKU",
+ "frenchFontType":3,
+ "italianText":"DECO*27 feat. HATSUNE MIKU",
+ "italianFontType":3,
+ "germanText":"DECO*27 feat. HATSUNE MIKU",
+ "germanFontType":3,
+ "spanishText":"DECO*27 feat. HATSUNE MIKU",
+ "spanishFontType":3,
+ "chineseTText":"DECO*27 feat.初音未來",
+ "chineseTFontType":1,
+ "koreanText":"DECO*27 feat.하츠네 미쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mikuh8",
+ "japaneseText":"",
+ "englishUsText":"ヒバナ",
+ "englishUsFontType":0,
+ "frenchText":"ヒバナ",
+ "frenchFontType":0,
+ "italianText":"ヒバナ",
+ "italianFontType":0,
+ "germanText":"ヒバナ",
+ "germanFontType":0,
+ "spanishText":"ヒバナ",
+ "spanishFontType":0,
+ "chineseTText":"ヒバナ",
+ "chineseTFontType":0,
+ "koreanText":"ヒバナ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_worldi",
+ "japaneseText":"ワールドイズマイン",
+ "englishUsText":"World is Mine",
+ "englishUsFontType":3,
+ "frenchText":"World is Mine",
+ "frenchFontType":3,
+ "italianText":"World is Mine",
+ "italianFontType":3,
+ "germanText":"World is Mine",
+ "germanFontType":3,
+ "spanishText":"World is Mine",
+ "spanishFontType":3,
+ "chineseTText":"World is Mine",
+ "chineseTFontType":1,
+ "koreanText":"World is Mine",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_worldi",
+ "japaneseText":"原曲:supercell feat.初音ミク",
+ "englishUsText":"From \"supercell feat. HATSUNE MIKU\"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" supercell feat. HATSUNE MIKU \"",
+ "frenchFontType":3,
+ "italianText":"Da \" supercell feat. HATSUNE MIKU \"",
+ "italianFontType":3,
+ "germanText":"Aus \" supercell feat. HATSUNE MIKU \"",
+ "germanFontType":3,
+ "spanishText":"De \" supercell feat. HATSUNE MIKU \"",
+ "spanishFontType":3,
+ "chineseTText":"原曲:supercell feat.初音未來",
+ "chineseTFontType":1,
+ "koreanText":"원곡:supercell feat.하츠네 미쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_worldi",
+ "japaneseText":"",
+ "englishUsText":"ワールドイズマイン",
+ "englishUsFontType":0,
+ "frenchText":"ワールドイズマイン",
+ "frenchFontType":0,
+ "italianText":"ワールドイズマイン",
+ "italianFontType":0,
+ "germanText":"ワールドイズマイン",
+ "germanFontType":0,
+ "spanishText":"ワールドイズマイン",
+ "spanishFontType":0,
+ "chineseTText":"ワールドイズマイン",
+ "chineseTFontType":0,
+ "koreanText":"ワールドイズマイン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mkftmd",
+ "japaneseText":"Future Melody - 心から未来へ -",
+ "englishUsText":"Future Melody - From the Heart to the Future -",
+ "englishUsFontType":3,
+ "frenchText":"Future Melody - From the Heart to the Future -",
+ "frenchFontType":3,
+ "italianText":"Future Melody - From the Heart to the Future -",
+ "italianFontType":3,
+ "germanText":"Future Melody - From the Heart to the Future -",
+ "germanFontType":3,
+ "spanishText":"Future Melody - From the Heart to the Future -",
+ "spanishFontType":3,
+ "chineseTText":"Future Melody - 衷心邁向未來 -",
+ "chineseTFontType":1,
+ "koreanText":"Future Melody - 마음에서 미래로 -",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mkftmd",
+ "japaneseText":"feat.ミライ小町",
+ "englishUsText":"feat.Mirai Komachi",
+ "englishUsFontType":3,
+ "frenchText":"feat.Mirai Komachi",
+ "frenchFontType":3,
+ "italianText":"feat.Mirai Komachi",
+ "italianFontType":3,
+ "germanText":"feat.Mirai Komachi",
+ "germanFontType":3,
+ "spanishText":"feat.Mirai Komachi",
+ "spanishFontType":3,
+ "chineseTText":"feat. Mirai Komachi",
+ "chineseTFontType":1,
+ "koreanText":"feat. Mirai Komachi",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mkftmd",
+ "japaneseText":"",
+ "englishUsText":"Future Melody - 心から未来へ -",
+ "englishUsFontType":0,
+ "frenchText":"Future Melody - 心から未来へ -",
+ "frenchFontType":0,
+ "italianText":"Future Melody - 心から未来へ -",
+ "italianFontType":0,
+ "germanText":"Future Melody - 心から未来へ -",
+ "germanFontType":0,
+ "spanishText":"Future Melody - 心から未来へ -",
+ "spanishFontType":0,
+ "chineseTText":"Future Melody - 心から未来へ -",
+ "chineseTFontType":0,
+ "koreanText":"Future Melody - 心から未来へ -",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_tkstad",
+ "japaneseText":"Welcome to the Taiko Stadium!",
+ "englishUsText":"Welcome to the Taiko Stadium!",
+ "englishUsFontType":3,
+ "frenchText":"Welcome to the Taiko Stadium!",
+ "frenchFontType":3,
+ "italianText":"Welcome to the Taiko Stadium!",
+ "italianFontType":3,
+ "germanText":"Welcome to the Taiko Stadium!",
+ "germanFontType":3,
+ "spanishText":"Welcome to the Taiko Stadium!",
+ "spanishFontType":3,
+ "chineseTText":"Welcome to the Taiko Stadium!",
+ "chineseTFontType":1,
+ "koreanText":"Welcome to the Taiko Stadium!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_tkstad",
+ "japaneseText":"相良心 × 大原大輝",
+ "englishUsText":"Kokoro sagara x Daiki Ohara",
+ "englishUsFontType":3,
+ "frenchText":"Kokoro sagara x Daiki Ohara",
+ "frenchFontType":3,
+ "italianText":"Kokoro sagara x Daiki Ohara",
+ "italianFontType":3,
+ "germanText":"Kokoro sagara x Daiki Ohara",
+ "germanFontType":3,
+ "spanishText":"Kokoro sagara x Daiki Ohara",
+ "spanishFontType":3,
+ "chineseTText":"相良心 × 大原大輝",
+ "chineseTFontType":1,
+ "koreanText":"Kokoro sagara × Daiki Ohara",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_tkstad",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_takara",
+ "japaneseText":"宝の丘",
+ "englishUsText":"TAKARA NO OKA",
+ "englishUsFontType":3,
+ "frenchText":"TAKARA NO OKA",
+ "frenchFontType":3,
+ "italianText":"TAKARA NO OKA",
+ "italianFontType":3,
+ "germanText":"TAKARA NO OKA",
+ "germanFontType":3,
+ "spanishText":"TAKARA NO OKA",
+ "spanishFontType":3,
+ "chineseTText":"寶物之丘",
+ "chineseTFontType":1,
+ "koreanText":"타카라노 오카",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_takara",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_takara",
+ "japaneseText":"",
+ "englishUsText":"宝の丘",
+ "englishUsFontType":0,
+ "frenchText":"宝の丘",
+ "frenchFontType":0,
+ "italianText":"宝の丘",
+ "italianFontType":0,
+ "germanText":"宝の丘",
+ "germanFontType":0,
+ "spanishText":"宝の丘",
+ "spanishFontType":0,
+ "chineseTText":"宝の丘",
+ "chineseTFontType":0,
+ "koreanText":"宝の丘",
+ "koreanFontType":0
+ },
+ {
+ "key":"greeting_173",
+ "japaneseText":"キミのお宝、いただくドン!",
+ "englishUsText":"I'll be havin' yer treasure, don!",
+ "englishUsFontType":3,
+ "frenchText":"Je vais l'avoir ton trésor !",
+ "frenchFontType":3,
+ "italianText":"Il tuo tesoro sarà mio!",
+ "italianFontType":3,
+ "germanText":"Ich hole mir deinen Schatz, Don!",
+ "germanFontType":3,
+ "spanishText":"Me haré con tu tesoro. ¡Arr!",
+ "spanishFontType":3,
+ "chineseTText":"你的寶物,我就收下了咚!",
+ "chineseTFontType":1,
+ "koreanText":"너의 보물, 받아가겠다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_174",
+ "japaneseText":"ドンの切れ目がコンボの切れ目",
+ "englishUsText":"I won't stop till the combo stops!",
+ "englishUsFontType":3,
+ "frenchText":"Je n'arrêterai pas avant la fin du combo !",
+ "frenchFontType":3,
+ "italianText":"Non mi fermerò, fino alla fine!",
+ "italianFontType":3,
+ "germanText":"Ich höre erst auf, wenn die Kombo voll ist!",
+ "germanFontType":3,
+ "spanishText":"¡No pararé hasta que el combo termine!",
+ "spanishFontType":3,
+ "chineseTText":"咚斷連段亦斷",
+ "chineseTFontType":1,
+ "koreanText":"쿵이 떨어지면 콤보도 끊어진다",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_175",
+ "japaneseText":"大金星!",
+ "englishUsText":"What an upset!",
+ "englishUsFontType":3,
+ "frenchText":"Quel retournement de situation !",
+ "frenchFontType":3,
+ "italianText":"Caspita!",
+ "italianFontType":3,
+ "germanText":"Was für eine Aufregung!",
+ "germanFontType":3,
+ "spanishText":"¡Menudo susto!",
+ "spanishFontType":3,
+ "chineseTText":"逆轉勝!",
+ "chineseTFontType":1,
+ "koreanText":"대박이다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_ymharu",
+ "japaneseText":"楽曲「春を告げる」配信中",
+ "englishUsText":"\"Haru wo Tsugeru\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「宣告春天」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「봄을 고하다」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_nekods",
+ "japaneseText":"楽曲「猫」配信中",
+ "englishUsText":"\"NEKO\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「貓」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「고양이」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_mgaaot",
+ "japaneseText":"楽曲「青と夏」配信中",
+ "englishUsText":"\"Ao to Natsu\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「Ao to Natsu」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Ao to Natsu」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_tkstad",
+ "japaneseText":"楽曲「Welcome to the Taiko Stadium!」配信中",
+ "englishUsText":"\"Welcome to the Taiko Stadium!\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「Welcome to the Taiko Stadium!」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Welcome to the Taiko Stadium!」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_vocaropack07",
+ "japaneseText":"「ボーカロイド™曲パックVol.7」配信中",
+ "englishUsText":"VOCALOID™ Music Pack Vol. 7 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「VOCALOID™ Music PackVol.7」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「VOCALOID™ Music Pack Vol.7」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_mikuaa",
+ "japaneseText":"エイリアンエイリアン",
+ "englishUsText":"Alien Alien",
+ "englishUsFontType":3,
+ "frenchText":"Alien Alien",
+ "frenchFontType":3,
+ "italianText":"Alien Alien",
+ "italianFontType":3,
+ "germanText":"Alien Alien",
+ "germanFontType":3,
+ "spanishText":"Alien Alien",
+ "spanishFontType":3,
+ "chineseTText":"Alien Alien",
+ "chineseTFontType":1,
+ "koreanText":"Alien Alien",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mikuaa",
+ "japaneseText":"ナユタン星人 feat.初音ミク",
+ "englishUsText":"Nayutan Seijin feat. HATSUNE MIKU",
+ "englishUsFontType":3,
+ "frenchText":"Nayutan Seijin feat. HATSUNE MIKU",
+ "frenchFontType":3,
+ "italianText":"Nayutan Seijin feat. HATSUNE MIKU",
+ "italianFontType":3,
+ "germanText":"Nayutan Seijin feat. HATSUNE MIKU",
+ "germanFontType":3,
+ "spanishText":"Nayutan Seijin feat. HATSUNE MIKU",
+ "spanishFontType":3,
+ "chineseTText":"Nayutan星人feat.初音未來",
+ "chineseTFontType":1,
+ "koreanText":"Nayutan Seijin feat.하츠네 미쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mikuaa",
+ "japaneseText":"",
+ "englishUsText":"エイリアンエイリアン",
+ "englishUsFontType":0,
+ "frenchText":"エイリアンエイリアン",
+ "frenchFontType":0,
+ "italianText":"エイリアンエイリアン",
+ "italianFontType":0,
+ "germanText":"エイリアンエイリアン",
+ "germanFontType":0,
+ "spanishText":"エイリアンエイリアン",
+ "spanishFontType":0,
+ "chineseTText":"エイリアンエイリアン",
+ "chineseTFontType":0,
+ "koreanText":"エイリアンエイリアン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_m96slm",
+ "japaneseText":"月色Chainon",
+ "englishUsText":"Tsukiiro Chainon",
+ "englishUsFontType":3,
+ "frenchText":"Tsukiiro Chainon",
+ "frenchFontType":3,
+ "italianText":"Tsukiiro Chainon",
+ "italianFontType":3,
+ "germanText":"Tsukiiro Chainon",
+ "germanFontType":3,
+ "spanishText":"Tsukiiro Chainon",
+ "spanishFontType":3,
+ "chineseTText":"月色Chainon",
+ "chineseTFontType":1,
+ "koreanText":"Tsukiiro Chainon",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_m96slm",
+ "japaneseText":"ももいろクローバーZ 劇場版「美少女戦士セーラームーンEternal」より",
+ "englishUsText":"Momoiro Clover Z From \" Pretty Guardian Sailor Moon Eternal The Movie \"",
+ "englishUsFontType":3,
+ "frenchText":"Momoiro Clover Z From \" Pretty Guardian Sailor Moon Eternal The Movie \"",
+ "frenchFontType":3,
+ "italianText":"Momoiro Clover Z From \" Pretty Guardian Sailor Moon Eternal The Movie \"",
+ "italianFontType":3,
+ "germanText":"Momoiro Clover Z From \" Pretty Guardian Sailor Moon Eternal The Movie \"",
+ "germanFontType":3,
+ "spanishText":"Momoiro Clover Z From \" Pretty Guardian Sailor Moon Eternal The Movie \"",
+ "spanishFontType":3,
+ "chineseTText":"Momoiro Clover Z 來自「美少女戰士Sailor Moon Eternal The Movie」",
+ "chineseTFontType":1,
+ "koreanText":"Momoiro Clover Z \"미소녀전사 세일러문 Eternal The Movie\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_m96slm",
+ "japaneseText":"",
+ "englishUsText":"月色Chainon",
+ "englishUsFontType":0,
+ "frenchText":"月色Chainon",
+ "frenchFontType":0,
+ "italianText":"月色Chainon",
+ "italianFontType":0,
+ "germanText":"月色Chainon",
+ "germanFontType":0,
+ "spanishText":"月色Chainon",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"月色Chainon",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_anaint",
+ "japaneseText":"Into the Unknown",
+ "englishUsText":"Into the Unknown",
+ "englishUsFontType":3,
+ "frenchText":"Into the Unknown",
+ "frenchFontType":3,
+ "italianText":"Into the Unknown",
+ "italianFontType":3,
+ "germanText":"Into the Unknown",
+ "germanFontType":3,
+ "spanishText":"Into the Unknown",
+ "spanishFontType":3,
+ "chineseTText":"Into the Unknown",
+ "chineseTFontType":1,
+ "koreanText":"Into the Unknown",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_anaint",
+ "japaneseText":"「アナと雪の女王2」より",
+ "englishUsText":"From \" Frozen II \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Frozen II \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Frozen II \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Frozen II \"",
+ "germanFontType":3,
+ "spanishText":"De \" Frozen II \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「冰雪奇緣2」",
+ "chineseTFontType":1,
+ "koreanText":"\"겨울왕국 II\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_anaint",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_neverl",
+ "japaneseText":"Touch off",
+ "englishUsText":"Touch off",
+ "englishUsFontType":3,
+ "frenchText":"Touch off",
+ "frenchFontType":3,
+ "italianText":"Touch off",
+ "italianFontType":3,
+ "germanText":"Touch off",
+ "germanFontType":3,
+ "spanishText":"Touch off",
+ "spanishFontType":3,
+ "chineseTText":"Touch off",
+ "chineseTFontType":1,
+ "koreanText":"Touch off",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_neverl",
+ "japaneseText":"「約束のネバーランド」より",
+ "englishUsText":"From \" THE PROMISED NEVERLAND \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" THE PROMISED NEVERLAND \"",
+ "frenchFontType":3,
+ "italianText":"Da \" THE PROMISED NEVERLAND \"",
+ "italianFontType":3,
+ "germanText":"Aus \" THE PROMISED NEVERLAND \"",
+ "germanFontType":3,
+ "spanishText":"De \" THE PROMISED NEVERLAND \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「約定的夢幻島」",
+ "chineseTFontType":1,
+ "koreanText":"\"약속의 네버랜드\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_neverl",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_batan9",
+ "japaneseText":"全力バタンキュー",
+ "englishUsText":"Zenryoku Batankyuu",
+ "englishUsFontType":3,
+ "frenchText":"Zenryoku Batankyuu",
+ "frenchFontType":3,
+ "italianText":"Zenryoku Batankyuu",
+ "italianFontType":3,
+ "germanText":"Zenryoku Batankyuu",
+ "germanFontType":3,
+ "spanishText":"Zenryoku Batankyuu",
+ "spanishFontType":3,
+ "chineseTText":"Zenryoku Batankyuu",
+ "chineseTFontType":1,
+ "koreanText":"젠료쿠파탕큐",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_batan9",
+ "japaneseText":"「おそ松さん」より",
+ "englishUsText":"From \" Osomatsu San \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Osomatsu San \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Osomatsu San \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Osomatsu San \"",
+ "germanFontType":3,
+ "spanishText":"De \" Osomatsu San \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「Osomatsu San」",
+ "chineseTFontType":1,
+ "koreanText":"\"Osomatsu San\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_batan9",
+ "japaneseText":"",
+ "englishUsText":"全力バタンキュー",
+ "englishUsFontType":0,
+ "frenchText":"全力バタンキュー",
+ "frenchFontType":0,
+ "italianText":"全力バタンキュー",
+ "italianFontType":0,
+ "germanText":"全力バタンキュー",
+ "germanFontType":0,
+ "spanishText":"全力バタンキュー",
+ "spanishFontType":0,
+ "chineseTText":"全力バタンキュー",
+ "chineseTFontType":0,
+ "koreanText":"全力バタンキュー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_saoggo",
+ "japaneseText":"流星",
+ "englishUsText":"RYUUSEI",
+ "englishUsFontType":3,
+ "frenchText":"RYUUSEI",
+ "frenchFontType":3,
+ "italianText":"RYUUSEI",
+ "italianFontType":3,
+ "germanText":"RYUUSEI",
+ "germanFontType":3,
+ "spanishText":"RYUUSEI",
+ "spanishFontType":3,
+ "chineseTText":"RYUUSEI",
+ "chineseTFontType":1,
+ "koreanText":"RYUUSEI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_saoggo",
+ "japaneseText":"「ソードアート・オンライン オルタナティブ ガンゲイル・オンライン」より",
+ "englishUsText":"From \" SWORD ART ONLINE ALTERNATIVE \"GUN GALE ONLINE\" \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" SWORD ART ONLINE ALTERNATIVE \"GUN GALE ONLINE\" \"",
+ "frenchFontType":3,
+ "italianText":"Da \" SWORD ART ONLINE ALTERNATIVE \"GUN GALE ONLINE\" \"",
+ "italianFontType":3,
+ "germanText":"Aus \" SWORD ART ONLINE ALTERNATIVE \"GUN GALE ONLINE\" \"",
+ "germanFontType":3,
+ "spanishText":"De \" SWORD ART ONLINE ALTERNATIVE \"GUN GALE ONLINE\" \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「刀劍神域 ALTERNATIVE \"GUN GALE ONLINE\"」",
+ "chineseTFontType":1,
+ "koreanText":"\"소드 아트 온라인 ALTERNATIVE \"GUN GALE ONLINE\" \"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_saoggo",
+ "japaneseText":"",
+ "englishUsText":"流星",
+ "englishUsFontType":0,
+ "frenchText":"流星",
+ "frenchFontType":0,
+ "italianText":"流星",
+ "italianFontType":0,
+ "germanText":"流星",
+ "germanFontType":0,
+ "spanishText":"流星",
+ "spanishFontType":0,
+ "chineseTText":"流星",
+ "chineseTFontType":0,
+ "koreanText":"流星",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_yukai",
+ "japaneseText":"ハレ晴レユカイ",
+ "englishUsText":"Hare Hare Yukai",
+ "englishUsFontType":3,
+ "frenchText":"Hare Hare Yukai",
+ "frenchFontType":3,
+ "italianText":"Hare Hare Yukai",
+ "italianFontType":3,
+ "germanText":"Hare Hare Yukai",
+ "germanFontType":3,
+ "spanishText":"Hare Hare Yukai",
+ "spanishFontType":3,
+ "chineseTText":"Hare Hare Yukai",
+ "chineseTFontType":1,
+ "koreanText":"Hare Hare Yukai",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_yukai",
+ "japaneseText":"「涼宮ハルヒの憂鬱」より",
+ "englishUsText":"From \" The Melancholy of Haruhi Suzumiya \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" The Melancholy of Haruhi Suzumiya \"",
+ "frenchFontType":3,
+ "italianText":"Da \" The Melancholy of Haruhi Suzumiya \"",
+ "italianFontType":3,
+ "germanText":"Aus \" The Melancholy of Haruhi Suzumiya \"",
+ "germanFontType":3,
+ "spanishText":"De \" The Melancholy of Haruhi Suzumiya \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「涼宮春日的憂鬱」",
+ "chineseTFontType":1,
+ "koreanText":"\"스즈미야 하루히의 우울\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_yukai",
+ "japaneseText":"",
+ "englishUsText":"ハレ晴レユカイ",
+ "englishUsFontType":0,
+ "frenchText":"ハレ晴レユカイ",
+ "frenchFontType":0,
+ "italianText":"ハレ晴レユカイ",
+ "italianFontType":0,
+ "germanText":"ハレ晴レユカイ",
+ "germanFontType":0,
+ "spanishText":"ハレ晴レユカイ",
+ "spanishFontType":0,
+ "chineseTText":"ハレ晴レユカイ",
+ "chineseTFontType":0,
+ "koreanText":"ハレ晴レユカイ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_20tftb",
+ "japaneseText":"パラレルロリポップ",
+ "englishUsText":"Parallel Lollipop",
+ "englishUsFontType":3,
+ "frenchText":"Parallel Lollipop",
+ "frenchFontType":3,
+ "italianText":"Parallel Lollipop",
+ "italianFontType":3,
+ "germanText":"Parallel Lollipop",
+ "germanFontType":3,
+ "spanishText":"Parallel Lollipop",
+ "spanishFontType":3,
+ "chineseTText":"Parallel Lollipop",
+ "chineseTFontType":1,
+ "koreanText":"Parallel Lollipop",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_20tftb",
+ "japaneseText":"太鼓 de タイムトラベル10's / Sho Okada",
+ "englishUsText":"Taiko de TimeTravel 10's / Sho Okada",
+ "englishUsFontType":3,
+ "frenchText":"Taiko de TimeTravel 10's / Sho Okada",
+ "frenchFontType":3,
+ "italianText":"Taiko de TimeTravel 10's / Sho Okada",
+ "italianFontType":3,
+ "germanText":"Taiko de TimeTravel 10's / Sho Okada",
+ "germanFontType":3,
+ "spanishText":"Taiko de TimeTravel 10's / Sho Okada",
+ "spanishFontType":3,
+ "chineseTText":"Taiko de TimeTravel 10's / Sho Okada",
+ "chineseTFontType":1,
+ "koreanText":"Taiko de TimeTravel 10's / Sho Okada",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_20tftb",
+ "japaneseText":"",
+ "englishUsText":"パラレルロリポップ",
+ "englishUsFontType":0,
+ "frenchText":"パラレルロリポップ",
+ "frenchFontType":0,
+ "italianText":"パラレルロリポップ",
+ "italianFontType":0,
+ "germanText":"パラレルロリポップ",
+ "germanFontType":0,
+ "spanishText":"パラレルロリポップ",
+ "spanishFontType":0,
+ "chineseTText":"パラレルロリポップ",
+ "chineseTFontType":0,
+ "koreanText":"パラレルロリポップ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ika",
+ "japaneseText":"あたしイカサマ恋はイカサマ",
+ "englishUsText":"ATASHI IKASAMA KOI WA IKASAMA",
+ "englishUsFontType":3,
+ "frenchText":"ATASHI IKASAMA KOI WA IKASAMA",
+ "frenchFontType":3,
+ "italianText":"ATASHI IKASAMA KOI WA IKASAMA",
+ "italianFontType":3,
+ "germanText":"ATASHI IKASAMA KOI WA IKASAMA",
+ "germanFontType":3,
+ "spanishText":"ATASHI IKASAMA KOI WA IKASAMA",
+ "spanishFontType":3,
+ "chineseTText":"我是花枝,戀上花枝",
+ "chineseTFontType":1,
+ "koreanText":"아타시 이카사마 코이와 이카사마",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ika",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ika",
+ "japaneseText":"",
+ "englishUsText":"あたしイカサマ恋はイカサマ",
+ "englishUsFontType":0,
+ "frenchText":"あたしイカサマ恋はイカサマ",
+ "frenchFontType":0,
+ "italianText":"あたしイカサマ恋はイカサマ",
+ "italianFontType":0,
+ "germanText":"あたしイカサマ恋はイカサマ",
+ "germanFontType":0,
+ "spanishText":"あたしイカサマ恋はイカサマ",
+ "spanishFontType":0,
+ "chineseTText":"あたしイカサマ恋はイカサマ",
+ "chineseTFontType":0,
+ "koreanText":"あたしイカサマ恋はイカサマ",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_m96slm",
+ "japaneseText":"楽曲「月色Chainon」配信中",
+ "englishUsText":"\"Tsukiiro Chainon\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「月色Chainon」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Tsukiiro Chainon」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_anaint",
+ "japaneseText":"楽曲「Into the Unknown」配信中",
+ "englishUsText":"\"Into The Unkown\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「Into the Unknown」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Into the Unknown」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_20tftb",
+ "japaneseText":"太鼓の達人20周年曲「パラレルロリポップ」配信中",
+ "englishUsText":"Parallel Lollipop (20th Anniversary Song) now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"太鼓之達人20周年曲「Parallel Lollipop」發布中",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 20주년 곡 「Parallel Lollipop」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_anime02",
+ "japaneseText":"「深夜アニメパックVol.3」配信中",
+ "englishUsText":"Late Night Anime Pack Vol. 3 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「深夜動畫PackVol.3」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「심야 애니메이션 음악 Pack Vol.3」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_176",
+ "japaneseText":"I♥SEA",
+ "englishUsText":"I <3 the sea!",
+ "englishUsFontType":3,
+ "frenchText":"J'<3 la mer !",
+ "frenchFontType":3,
+ "italianText":"Io <3 il mare!",
+ "italianFontType":3,
+ "germanText":"Ich <3 das Meer!",
+ "germanFontType":3,
+ "spanishText":"¡Adoro el mar! <3",
+ "spanishFontType":3,
+ "chineseTText":"I♥SEA",
+ "chineseTFontType":1,
+ "koreanText":"I♥SEA",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_177",
+ "japaneseText":"三枚おろしだドン!",
+ "englishUsText":"A flawless fillet! ",
+ "englishUsFontType":3,
+ "frenchText":"Un filet sans défaut ! ",
+ "frenchFontType":3,
+ "italianText":"Un filetto impeccabile! ",
+ "italianFontType":3,
+ "germanText":"Ein makelloses Filet! ",
+ "germanFontType":3,
+ "spanishText":"¡Un corte perfecto! ",
+ "spanishFontType":3,
+ "chineseTText":"切魚了咚",
+ "chineseTFontType":1,
+ "koreanText":"포를 떠주겠다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_178",
+ "japaneseText":"逃がした魚は大きいドン",
+ "englishUsText":"I once got a combo that was THIS big, don!",
+ "englishUsFontType":3,
+ "frenchText":"J'ai eu une fois un combo gros comme ÇA !",
+ "frenchFontType":3,
+ "italianText":"Una volta ho tirato fuori una combo grossa COSÌ!",
+ "italianFontType":3,
+ "germanText":"Einmal hatte ich eine Kombo, die war SO groß, don!",
+ "germanFontType":3,
+ "spanishText":"¡Una vez conseguí un combo así de grande, don!",
+ "spanishFontType":3,
+ "chineseTText":"逃掉的魚好大尾咚",
+ "chineseTFontType":1,
+ "koreanText":"놓친 고기가 더 큰 법이다쿵",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_adusse",
+ "japaneseText":"うっせぇわ",
+ "englishUsText":"Usseewa",
+ "englishUsFontType":3,
+ "frenchText":"Usseewa",
+ "frenchFontType":3,
+ "italianText":"Usseewa",
+ "italianFontType":3,
+ "germanText":"Usseewa",
+ "germanFontType":3,
+ "spanishText":"Usseewa",
+ "spanishFontType":3,
+ "chineseTText":"Usseewa",
+ "chineseTFontType":1,
+ "koreanText":"Usseewa",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_adusse",
+ "japaneseText":"Ado",
+ "englishUsText":"Ado",
+ "englishUsFontType":3,
+ "frenchText":"Ado",
+ "frenchFontType":3,
+ "italianText":"Ado",
+ "italianFontType":3,
+ "germanText":"Ado",
+ "germanFontType":3,
+ "spanishText":"Ado",
+ "spanishFontType":3,
+ "chineseTText":"Ado",
+ "chineseTFontType":1,
+ "koreanText":"Ado",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_adusse",
+ "japaneseText":"",
+ "englishUsText":"うっせぇわ",
+ "englishUsFontType":0,
+ "frenchText":"うっせぇわ",
+ "frenchFontType":0,
+ "italianText":"うっせぇわ",
+ "italianFontType":0,
+ "germanText":"うっせぇわ",
+ "germanFontType":0,
+ "spanishText":"うっせぇわ",
+ "spanishFontType":0,
+ "chineseTText":"うっせぇわ",
+ "chineseTFontType":0,
+ "koreanText":"うっせぇわ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_beasta",
+ "japaneseText":"怪物",
+ "englishUsText":"Monster",
+ "englishUsFontType":3,
+ "frenchText":"Monster",
+ "frenchFontType":3,
+ "italianText":"Monster",
+ "italianFontType":3,
+ "germanText":"Monster",
+ "germanFontType":3,
+ "spanishText":"Monster",
+ "spanishFontType":3,
+ "chineseTText":"怪物",
+ "chineseTFontType":1,
+ "koreanText":"Monster",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_beasta",
+ "japaneseText":"YOASOBI「怪物 / 優しい彗星」より",
+ "englishUsText":"From YOASOBI \"Monster / Comet\"",
+ "englishUsFontType":3,
+ "frenchText":"From YOASOBI \"Monster / Comet\"",
+ "frenchFontType":3,
+ "italianText":"From YOASOBI \"Monster / Comet\"",
+ "italianFontType":3,
+ "germanText":"From YOASOBI \"Monster / Comet\"",
+ "germanFontType":3,
+ "spanishText":"From YOASOBI \"Monster / Comet\"",
+ "spanishFontType":3,
+ "chineseTText":"From YOASOBI \"Monster / Comet\"",
+ "chineseTFontType":1,
+ "koreanText":"From YOASOBI \"Monster / Comet\"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_beasta",
+ "japaneseText":"",
+ "englishUsText":"怪物",
+ "englishUsFontType":0,
+ "frenchText":"怪物",
+ "frenchFontType":0,
+ "italianText":"怪物",
+ "italianFontType":0,
+ "germanText":"怪物",
+ "germanFontType":0,
+ "spanishText":"怪物",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"怪物",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_byosin",
+ "japaneseText":"秒針を噛む",
+ "englishUsText":"Byoushinwo Kamu",
+ "englishUsFontType":3,
+ "frenchText":"Byoushinwo Kamu",
+ "frenchFontType":3,
+ "italianText":"Byoushinwo Kamu",
+ "italianFontType":3,
+ "germanText":"Byoushinwo Kamu",
+ "germanFontType":3,
+ "spanishText":"Byoushinwo Kamu",
+ "spanishFontType":3,
+ "chineseTText":"Byoushinwo Kamu",
+ "chineseTFontType":1,
+ "koreanText":"Byoushinwo Kamu",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_byosin",
+ "japaneseText":"ずっと真夜中でいいのに。",
+ "englishUsText":"ZUTOMAYO",
+ "englishUsFontType":3,
+ "frenchText":"ZUTOMAYO",
+ "frenchFontType":3,
+ "italianText":"ZUTOMAYO",
+ "italianFontType":3,
+ "germanText":"ZUTOMAYO",
+ "germanFontType":3,
+ "spanishText":"ZUTOMAYO",
+ "spanishFontType":3,
+ "chineseTText":"ZUTOMAYO",
+ "chineseTFontType":1,
+ "koreanText":"ZUTOMAYO",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_byosin",
+ "japaneseText":"",
+ "englishUsText":"秒針を噛む",
+ "englishUsFontType":0,
+ "frenchText":"秒針を噛む",
+ "frenchFontType":0,
+ "italianText":"秒針を噛む",
+ "italianFontType":0,
+ "germanText":"秒針を噛む",
+ "germanFontType":0,
+ "spanishText":"秒針を噛む",
+ "spanishFontType":0,
+ "chineseTText":"秒針を噛む",
+ "chineseTFontType":0,
+ "koreanText":"秒針を噛む",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_pirate",
+ "japaneseText":"He's a Pirate",
+ "englishUsText":"He's a Pirate",
+ "englishUsFontType":3,
+ "frenchText":"He's a Pirate",
+ "frenchFontType":3,
+ "italianText":"He's a Pirate",
+ "italianFontType":3,
+ "germanText":"He's a Pirate",
+ "germanFontType":3,
+ "spanishText":"He's a Pirate",
+ "spanishFontType":3,
+ "chineseTText":"He's a Pirate",
+ "chineseTFontType":1,
+ "koreanText":"He's a Pirate",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_pirate",
+ "japaneseText":"「パイレーツ・オブ・カリビアン」より",
+ "englishUsText":"From \" Pirates of the Caribbean \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Pirates des Caraïbes \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Pirati dei Caraibi \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Pirates of the Caribbean \"",
+ "germanFontType":3,
+ "spanishText":"De \" Piratas del Caribe \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「加勒比海盜」",
+ "chineseTFontType":1,
+ "koreanText":"\"캐리비안의 해적\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_pirate",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_indyjo",
+ "japaneseText":"インディ・ジョーンズのテーマ",
+ "englishUsText":"Theme From Indiana Jones",
+ "englishUsFontType":3,
+ "frenchText":"Theme From Indiana Jones",
+ "frenchFontType":3,
+ "italianText":"Theme From Indiana Jones",
+ "italianFontType":3,
+ "germanText":"Theme From Indiana Jones",
+ "germanFontType":3,
+ "spanishText":"Theme From Indiana Jones",
+ "spanishFontType":3,
+ "chineseTText":"印第安納瓊斯 主題曲",
+ "chineseTFontType":1,
+ "koreanText":"인디아나 존스 테마곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_indyjo",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_indyjo",
+ "japaneseText":"",
+ "englishUsText":"インディ・ジョーンズのテーマ",
+ "englishUsFontType":0,
+ "frenchText":"インディ・ジョーンズのテーマ",
+ "frenchFontType":0,
+ "italianText":"インディ・ジョーンズのテーマ",
+ "italianFontType":0,
+ "germanText":"インディ・ジョーンズのテーマ",
+ "germanFontType":0,
+ "spanishText":"インディ・ジョーンズのテーマ",
+ "spanishFontType":0,
+ "chineseTText":"インディ・ジョーンズのテーマ",
+ "chineseTFontType":0,
+ "koreanText":"インディ・ジョーンズのテーマ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_starws",
+ "japaneseText":"Star Wars: Main Title",
+ "englishUsText":"Star Wars: Main Title",
+ "englishUsFontType":3,
+ "frenchText":"Star Wars: Main Title",
+ "frenchFontType":3,
+ "italianText":"Star Wars: Main Title",
+ "italianFontType":3,
+ "germanText":"Star Wars: Main Title",
+ "germanFontType":3,
+ "spanishText":"Star Wars: Main Title",
+ "spanishFontType":3,
+ "chineseTText":"Star Wars: Main Title",
+ "chineseTFontType":1,
+ "koreanText":"Star Wars: Main Title",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_starws",
+ "japaneseText":"「スター・ウォーズ」より",
+ "englishUsText":"From \" STAR WARS \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" STAR WARS \"",
+ "frenchFontType":3,
+ "italianText":"Da \" STAR WARS \"",
+ "italianFontType":3,
+ "germanText":"Aus \" STAR WARS \"",
+ "germanFontType":3,
+ "spanishText":"De \" STAR WARS \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「星際大戰」",
+ "chineseTFontType":1,
+ "koreanText":"\"스타워즈\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_starws",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_20tvcl",
+ "japaneseText":"4+1のそれぞれの未来",
+ "englishUsText":"4+1 Myriad Futures",
+ "englishUsFontType":3,
+ "frenchText":"4+1 Myriad Futures",
+ "frenchFontType":3,
+ "italianText":"4+1 Myriad Futures",
+ "italianFontType":3,
+ "germanText":"4+1 Myriad Futures",
+ "germanFontType":3,
+ "spanishText":"4+1 Myriad Futures",
+ "spanishFontType":3,
+ "chineseTText":"4+1的各自的未來",
+ "chineseTFontType":1,
+ "koreanText":"4+1노 소레조레노 미라이",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_20tvcl",
+ "japaneseText":"太鼓 de タイムトラベル00's / cosMo@暴走P feat.初音ミク",
+ "englishUsText":"Taiko de Time Travel 00's / cosMo@Bousou-P feat.HATSUNE MIKU",
+ "englishUsFontType":3,
+ "frenchText":"Taiko de Time Travel 00's / cosMo@Bousou-P feat.HATSUNE MIKU",
+ "frenchFontType":3,
+ "italianText":"Taiko de Time Travel 00's / cosMo@Bousou-P feat.HATSUNE MIKU",
+ "italianFontType":3,
+ "germanText":"Taiko de Time Travel 00's / cosMo@Bousou-P feat.HATSUNE MIKU",
+ "germanFontType":3,
+ "spanishText":"Taiko de Time Travel 00's / cosMo@Bousou-P feat.HATSUNE MIKU",
+ "spanishFontType":3,
+ "chineseTText":"Taiko de Time Travel 00's /cosMo@暴走P feat.初音未來",
+ "chineseTFontType":1,
+ "koreanText":"Taiko de Time Travel 00's / cosMo@Bousou-P feat.하츠네 미쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_20tvcl",
+ "japaneseText":"",
+ "englishUsText":"4+1のそれぞれの未来",
+ "englishUsFontType":0,
+ "frenchText":"4+1のそれぞれの未来",
+ "frenchFontType":0,
+ "italianText":"4+1のそれぞれの未来",
+ "italianFontType":0,
+ "germanText":"4+1のそれぞれの未来",
+ "germanFontType":0,
+ "spanishText":"4+1のそれぞれの未来",
+ "spanishFontType":0,
+ "chineseTText":"4+1のそれぞれの未来",
+ "chineseTFontType":0,
+ "koreanText":"4+1のそれぞれの未来",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_butou3",
+ "japaneseText":"月下美人",
+ "englishUsText":"GEKKA BIJIN",
+ "englishUsFontType":3,
+ "frenchText":"GEKKA BIJIN",
+ "frenchFontType":3,
+ "italianText":"GEKKA BIJIN",
+ "italianFontType":3,
+ "germanText":"GEKKA BIJIN",
+ "germanFontType":3,
+ "spanishText":"GEKKA BIJIN",
+ "spanishFontType":3,
+ "chineseTText":"月下美人",
+ "chineseTFontType":1,
+ "koreanText":"월하미인",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_butou3",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_butou3",
+ "japaneseText":"",
+ "englishUsText":"月下美人",
+ "englishUsFontType":0,
+ "frenchText":"月下美人",
+ "frenchFontType":0,
+ "italianText":"月下美人",
+ "italianFontType":0,
+ "germanText":"月下美人",
+ "germanFontType":0,
+ "spanishText":"月下美人",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"月下美人",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_adusse",
+ "japaneseText":"楽曲「うっせぇわ」配信中",
+ "englishUsText":"\"Usseewa\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「Usseewa」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Usseewa」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_beasta",
+ "japaneseText":"楽曲「怪物」配信中",
+ "englishUsText":"\"Monster\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「怪物」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Monster」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_byosin",
+ "japaneseText":"楽曲「秒針を噛む」配信中",
+ "englishUsText":"\"Byoushinwo Kamu\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「Byoushinwo Kamu」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Byoushinwo Kamu」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_20tvcl",
+ "japaneseText":"太鼓の達人20周年曲「4+1のそれぞれの未来」配信中",
+ "englishUsText":"4+1 Myriad Futures (20th Anniversary Song) now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"太鼓之達人20周年曲「4+1的各自的未來」發布中",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 20주년 곡 「4+1노 소레조레노 미라이」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_pirate",
+ "japaneseText":"楽曲「He's a Pirate」配信中",
+ "englishUsText":"\"He's a Pirate\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「He's a Pirate 」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「He's a Pirate」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_indyjo",
+ "japaneseText":"楽曲「インディ・ジョーンズのテーマ」配信中",
+ "englishUsText":"\"Theme From Indiana Jones\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「印第安納瓊斯 主題曲」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「인디아나 존스 테마곡」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_starws",
+ "japaneseText":"楽曲「Star Wars: Main Title」配信中",
+ "englishUsText":"\"Star Wars: Main Title\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「Star Wars: Main Title」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Star Wars: Main Title」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_179",
+ "japaneseText":"ミーンミーーーンミーーーーン",
+ "englishUsText":"*overpowering cicada noises*",
+ "englishUsFontType":3,
+ "frenchText":"*bruits de cigales assourdissants*",
+ "frenchFontType":3,
+ "italianText":"*insistente frinire di cicala*",
+ "italianFontType":3,
+ "germanText":"*überwältigendes Zikadenzirpen*",
+ "germanFontType":3,
+ "spanishText":"*sonido ensordecedor de cigarras*",
+ "spanishFontType":3,
+ "chineseTText":"唧~唧~~唧~~~唧",
+ "chineseTFontType":1,
+ "koreanText":"맴~맴~~맴~~~",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_180",
+ "japaneseText":"桃栗三年柿八年",
+ "englishUsText":"The sweetest fruits take the longest to grow. ",
+ "englishUsFontType":3,
+ "frenchText":"Les fruits les plus sucrés sont les plus longs à mûrir. ",
+ "frenchFontType":3,
+ "italianText":"I frutti più dolci richiedono più tempo per maturare. ",
+ "italianFontType":3,
+ "germanText":"Die süßesten Früchte brauchen am längsten, um zu reifen. ",
+ "germanFontType":3,
+ "spanishText":"Lo bueno se hace esperar. ",
+ "spanishFontType":3,
+ "chineseTText":"凡事都需要時間,得耐心等待呢",
+ "chineseTFontType":1,
+ "koreanText":"복숭아와 밤은 3년 감은 8년",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_181",
+ "japaneseText":"飛んで火に入る夏の虫",
+ "englishUsText":"Like a moth to the flame!",
+ "englishUsFontType":3,
+ "frenchText":"Comme un papillon attiré par une flamme !",
+ "frenchFontType":3,
+ "italianText":"Come una falena verso la luce!",
+ "italianFontType":3,
+ "germanText":"Wie eine Motte zum Licht!",
+ "germanFontType":3,
+ "spanishText":"¡Como abeja a la miel!",
+ "spanishFontType":3,
+ "chineseTText":"這就像飛蛾撲火,自取滅亡",
+ "chineseTFontType":1,
+ "koreanText":"불에 뛰어드는 여름 벌레",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_ssnrns",
+ "japaneseText":"乱数調整のリバースシンデレラ",
+ "englishUsText":"RNG Cinderella",
+ "englishUsFontType":3,
+ "frenchText":"RNG Cinderella",
+ "frenchFontType":3,
+ "italianText":"RNG Cinderella",
+ "italianFontType":3,
+ "germanText":"RNG Cinderella",
+ "germanFontType":3,
+ "spanishText":"RNG Cinderella",
+ "spanishFontType":3,
+ "chineseTText":"亂數調整的反轉灰姑娘",
+ "chineseTFontType":1,
+ "koreanText":"RNG Cinderella",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ssnrns",
+ "japaneseText":"粗品 feat. 彩宮すう(CV:竹達彩奈)",
+ "englishUsText":"Soshina feat. Su Ayamiya (CV: Ayana Taketatsu)",
+ "englishUsFontType":3,
+ "frenchText":"Soshina feat. Su Ayamiya (CV: Ayana Taketatsu)",
+ "frenchFontType":3,
+ "italianText":"Soshina feat. Su Ayamiya (CV: Ayana Taketatsu)",
+ "italianFontType":3,
+ "germanText":"Soshina feat. Su Ayamiya (CV: Ayana Taketatsu)",
+ "germanFontType":3,
+ "spanishText":"Soshina feat. Su Ayamiya (CV: Ayana Taketatsu)",
+ "spanishFontType":3,
+ "chineseTText":"粗品 feat. Su Ayamiya(CV:竹達彩奈)",
+ "chineseTFontType":1,
+ "koreanText":"Soshina feat. Su Ayamiya (CV: Ayana Taketatsu)",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ssnrns",
+ "japaneseText":"",
+ "englishUsText":"乱数調整のリバースシンデレラ",
+ "englishUsFontType":0,
+ "frenchText":"乱数調整のリバースシンデレラ",
+ "frenchFontType":0,
+ "italianText":"乱数調整のリバースシンデレラ",
+ "italianFontType":0,
+ "germanText":"乱数調整のリバースシンデレラ",
+ "germanFontType":0,
+ "spanishText":"乱数調整のリバースシンデレラ",
+ "spanishFontType":0,
+ "chineseTText":"乱数調整のリバースシンデレラ",
+ "chineseTFontType":0,
+ "koreanText":"乱数調整のリバースシンデレラ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_m96sr2",
+ "japaneseText":"サラバ、愛しき悲しみたちよ -ZZ ver.-",
+ "englishUsText":"Saraba, Itoshiki Kanashimi Tachi Yo -ZZ ver.-",
+ "englishUsFontType":3,
+ "frenchText":"Saraba, Itoshiki Kanashimi Tachi Yo -ZZ ver.-",
+ "frenchFontType":3,
+ "italianText":"Saraba, Itoshiki Kanashimi Tachi Yo -ZZ ver.-",
+ "italianFontType":3,
+ "germanText":"Saraba, Itoshiki Kanashimi Tachi Yo -ZZ ver.-",
+ "germanFontType":3,
+ "spanishText":"Saraba, Itoshiki Kanashimi Tachi Yo -ZZ ver.-",
+ "spanishFontType":3,
+ "chineseTText":"再會吧,那些愛憐的悲傷啊 -ZZ ver.-",
+ "chineseTFontType":1,
+ "koreanText":"사라바, 이토시키 카나시미타치요 -ZZ ver.-",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_m96sr2",
+ "japaneseText":"ももいろクローバーZ",
+ "englishUsText":"Momoiro Clover Z",
+ "englishUsFontType":3,
+ "frenchText":"Momoiro Clover Z",
+ "frenchFontType":3,
+ "italianText":"Momoiro Clover Z",
+ "italianFontType":3,
+ "germanText":"Momoiro Clover Z",
+ "germanFontType":3,
+ "spanishText":"Momoiro Clover Z",
+ "spanishFontType":3,
+ "chineseTText":"Momoiro Clover Z",
+ "chineseTFontType":1,
+ "koreanText":"Momoiro Clover Z",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_m96sr2",
+ "japaneseText":"",
+ "englishUsText":"サラバ、愛しき悲しみたちよ -ZZ ver.-",
+ "englishUsFontType":0,
+ "frenchText":"サラバ、愛しき悲しみたちよ -ZZ ver.-",
+ "frenchFontType":0,
+ "italianText":"サラバ、愛しき悲しみたちよ -ZZ ver.-",
+ "italianFontType":0,
+ "germanText":"サラバ、愛しき悲しみたちよ -ZZ ver.-",
+ "germanFontType":0,
+ "spanishText":"サラバ、愛しき悲しみたちよ -ZZ ver.-",
+ "spanishFontType":0,
+ "chineseTText":"サラバ、愛しき悲しみたちよ -ZZ ver.-",
+ "chineseTFontType":0,
+ "koreanText":"サラバ、愛しき悲しみたちよ -ZZ ver.-",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_iwback",
+ "japaneseText":"I Want You Back",
+ "englishUsText":"I Want You Back",
+ "englishUsFontType":3,
+ "frenchText":"I Want You Back",
+ "frenchFontType":3,
+ "italianText":"I Want You Back",
+ "italianFontType":3,
+ "germanText":"I Want You Back",
+ "germanFontType":3,
+ "spanishText":"I Want You Back",
+ "spanishFontType":3,
+ "chineseTText":"I Want You Back",
+ "chineseTFontType":1,
+ "koreanText":"I Want You Back",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_iwback",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_iwback",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_godkno",
+ "japaneseText":"God knows. . .",
+ "englishUsText":"God knows...",
+ "englishUsFontType":3,
+ "frenchText":"God knows...",
+ "frenchFontType":3,
+ "italianText":"God knows...",
+ "italianFontType":3,
+ "germanText":"God knows...",
+ "germanFontType":3,
+ "spanishText":"God knows...",
+ "spanishFontType":3,
+ "chineseTText":"God knows. . .",
+ "chineseTFontType":1,
+ "koreanText":"God knows...",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_godkno",
+ "japaneseText":"「涼宮ハルヒの憂鬱」より",
+ "englishUsText":"From \" The Melancholy of Haruhi Suzumiya \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" The Melancholy of Haruhi Suzumiya \"",
+ "frenchFontType":3,
+ "italianText":"Da \" The Melancholy of Haruhi Suzumiya \"",
+ "italianFontType":3,
+ "germanText":"Aus \" The Melancholy of Haruhi Suzumiya \"",
+ "germanFontType":3,
+ "spanishText":"De \" The Melancholy of Haruhi Suzumiya \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「涼宮春日的憂鬱」",
+ "chineseTFontType":1,
+ "koreanText":"\"스즈미야 하루히의 우울\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_godkno",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_rezer2",
+ "japaneseText":"Realize",
+ "englishUsText":"Realize",
+ "englishUsFontType":3,
+ "frenchText":"Realize",
+ "frenchFontType":3,
+ "italianText":"Realize",
+ "italianFontType":3,
+ "germanText":"Realize",
+ "germanFontType":3,
+ "spanishText":"Realize",
+ "spanishFontType":3,
+ "chineseTText":"Realize",
+ "chineseTFontType":1,
+ "koreanText":"Realize",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_rezer2",
+ "japaneseText":"「Re:ゼロから始める異世界生活」より",
+ "englishUsText":"From \" Re:ZERO -Starting Life in Another World- \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Re:ZERO -Starting Life in Another World- \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Re:ZERO -Starting Life in Another World- \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Re:ZERO -Starting Life in Another World- \"",
+ "germanFontType":3,
+ "spanishText":"De \" Re:ZERO -Starting Life in Another World- \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「Re:從零開始的異世界生活」",
+ "chineseTFontType":1,
+ "koreanText":"\"Re:제로부터 시작하는 이세계 생활\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_rezer2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_thchil",
+ "japaneseText":"チルノのパーフェクトさんすう教室",
+ "englishUsText":"Cirno's Perfect Math Class",
+ "englishUsFontType":3,
+ "frenchText":"Cirno's Perfect Math Class",
+ "frenchFontType":3,
+ "italianText":"Cirno's Perfect Math Class",
+ "italianFontType":3,
+ "germanText":"Cirno's Perfect Math Class",
+ "germanFontType":3,
+ "spanishText":"Cirno's Perfect Math Class",
+ "spanishFontType":3,
+ "chineseTText":"琪露諾的完美算術教室",
+ "chineseTFontType":1,
+ "koreanText":"Chiruno노파페쿠토산수쿄시츠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_thchil",
+ "japaneseText":"東方Projectアレンジ ARM+夕野ヨシミ(IOSYS) feat.miko",
+ "englishUsText":"Touhou Project Arrange / Arm + Yuno Yoshimi(IOSYS) feat. miko",
+ "englishUsFontType":3,
+ "frenchText":"Touhou Project Arrange / Arm + Yuno Yoshimi(IOSYS) feat. miko",
+ "frenchFontType":3,
+ "italianText":"Touhou Project Arrange / Arm + Yuno Yoshimi(IOSYS) feat. miko",
+ "italianFontType":3,
+ "germanText":"Touhou Project Arrange / Arm + Yuno Yoshimi(IOSYS) feat. miko",
+ "germanFontType":3,
+ "spanishText":"Touhou Project Arrange / Arm + Yuno Yoshimi(IOSYS) feat. miko",
+ "spanishFontType":3,
+ "chineseTText":"東方Project Arrange / ARM+夕野ヨシミ(IOSYS) feat.miko",
+ "chineseTFontType":1,
+ "koreanText":"Touhou Project Arrange / Arm + Yuno Yoshimi(IOSYS) feat. miko",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_thchil",
+ "japaneseText":"",
+ "englishUsText":"チルノのパーフェクトさんすう教室",
+ "englishUsFontType":0,
+ "frenchText":"チルノのパーフェクトさんすう教室",
+ "frenchFontType":0,
+ "italianText":"チルノのパーフェクトさんすう教室",
+ "italianFontType":0,
+ "germanText":"チルノのパーフェクトさんすう教室",
+ "germanFontType":0,
+ "spanishText":"チルノのパーフェクトさんすう教室",
+ "spanishFontType":0,
+ "chineseTText":"チルノのパーフェクトさんすう教室",
+ "chineseTFontType":0,
+ "koreanText":"チルノのパーフェクトさんすう教室",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_thkanb",
+ "japaneseText":"患部で止まってすぐ溶ける ~ 狂気の優曇華院",
+ "englishUsText":"Stop at the affected part and melt quickly ~ Madness Udongein",
+ "englishUsFontType":3,
+ "frenchText":"Stop at the affected part and melt quickly ~ Madness Udongein",
+ "frenchFontType":3,
+ "italianText":"Stop at the affected part and melt quickly ~ Madness Udongein",
+ "italianFontType":3,
+ "germanText":"Stop at the affected part and melt quickly ~ Madness Udongein",
+ "germanFontType":3,
+ "spanishText":"Stop at the affected part and melt quickly ~ Madness Udongein",
+ "spanishFontType":3,
+ "chineseTText":"敷在患部上隨即融化 ~瘋狂的優曇學院",
+ "chineseTFontType":1,
+ "koreanText":"칸부데 토맛테 스구 토케루~쿄키노 우동게인",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_thkanb",
+ "japaneseText":"東方Projectアレンジ ARM (IOSYS) feat.miko",
+ "englishUsText":"Touhou Project Arrange / Arm(IOSYS) feat. miko",
+ "englishUsFontType":3,
+ "frenchText":"Touhou Project Arrange / Arm(IOSYS) feat. miko",
+ "frenchFontType":3,
+ "italianText":"Touhou Project Arrange / Arm(IOSYS) feat. miko",
+ "italianFontType":3,
+ "germanText":"Touhou Project Arrange / Arm(IOSYS) feat. miko",
+ "germanFontType":3,
+ "spanishText":"Touhou Project Arrange / Arm(IOSYS) feat. miko",
+ "spanishFontType":3,
+ "chineseTText":"東方Project Arrange / ARM(IOSYS) feat.miko",
+ "chineseTFontType":1,
+ "koreanText":"Touhou Project Arrange / Arm (IOSYS) feat. miko",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_thkanb",
+ "japaneseText":"",
+ "englishUsText":"患部で止まってすぐ溶ける ~ 狂気の優曇華院",
+ "englishUsFontType":0,
+ "frenchText":"患部で止まってすぐ溶ける ~ 狂気の優曇華院",
+ "frenchFontType":0,
+ "italianText":"患部で止まってすぐ溶ける ~ 狂気の優曇華院",
+ "italianFontType":0,
+ "germanText":"患部で止まってすぐ溶ける ~ 狂気の優曇華院",
+ "germanFontType":0,
+ "spanishText":"患部で止まってすぐ溶ける ~ 狂気の優曇華院",
+ "spanishFontType":0,
+ "chineseTText":"患部で止まってすぐ溶ける ~ 狂気の優曇華院",
+ "chineseTFontType":0,
+ "koreanText":"患部で止まってすぐ溶ける ~ 狂気の優曇華院",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_thnlnd",
+ "japaneseText":"郢曲/暁闇",
+ "englishUsText":"EIKYOKU/GYOUAN",
+ "englishUsFontType":3,
+ "frenchText":"EIKYOKU/GYOUAN",
+ "frenchFontType":3,
+ "italianText":"EIKYOKU/GYOUAN",
+ "italianFontType":3,
+ "germanText":"EIKYOKU/GYOUAN",
+ "germanFontType":3,
+ "spanishText":"EIKYOKU/GYOUAN",
+ "spanishFontType":3,
+ "chineseTText":"郢曲/暁闇",
+ "chineseTFontType":1,
+ "koreanText":"에이쿄쿠/교우안",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_thnlnd",
+ "japaneseText":"東方Project×NAMCO SOUNDS LindaAI‐CUE",
+ "englishUsText":"Touhou Project×NAMCO SOUNDS LindaAI-CUE",
+ "englishUsFontType":3,
+ "frenchText":"Touhou Project×NAMCO SOUNDS LindaAI-CUE",
+ "frenchFontType":3,
+ "italianText":"Touhou Project×NAMCO SOUNDS LindaAI-CUE",
+ "italianFontType":3,
+ "germanText":"Touhou Project×NAMCO SOUNDS LindaAI-CUE",
+ "germanFontType":3,
+ "spanishText":"Touhou Project×NAMCO SOUNDS LindaAI-CUE",
+ "spanishFontType":3,
+ "chineseTText":"東方Project×NAMCO SOUNDS LindaAI‐CUE",
+ "chineseTFontType":1,
+ "koreanText":"Touhou Project×NAMCO SOUNDS LindaAI-CUE",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_thnlnd",
+ "japaneseText":"",
+ "englishUsText":"郢曲/暁闇",
+ "englishUsFontType":0,
+ "frenchText":"郢曲/暁闇",
+ "frenchFontType":0,
+ "italianText":"郢曲/暁闇",
+ "italianFontType":0,
+ "germanText":"郢曲/暁闇",
+ "germanFontType":0,
+ "spanishText":"郢曲/暁闇",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"郢曲/暁闇",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_20tdnc",
+ "japaneseText":"Hold me tight",
+ "englishUsText":"Hold me tight",
+ "englishUsFontType":3,
+ "frenchText":"Hold me tight",
+ "frenchFontType":3,
+ "italianText":"Hold me tight",
+ "italianFontType":3,
+ "germanText":"Hold me tight",
+ "germanFontType":3,
+ "spanishText":"Hold me tight",
+ "spanishFontType":3,
+ "chineseTText":"Hold me tight",
+ "chineseTFontType":1,
+ "koreanText":"Hold me tight",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_20tdnc",
+ "japaneseText":"太鼓 de タイムトラベル90's / Tatsh&musica with パークマンサー",
+ "englishUsText":"Taiko de Time Travel 90's / Tatsh&musica with PARC MANTHER",
+ "englishUsFontType":3,
+ "frenchText":"Taiko de Time Travel 90's / Tatsh&musica with PARC MANTHER",
+ "frenchFontType":3,
+ "italianText":"Taiko de Time Travel 90's / Tatsh&musica with PARC MANTHER",
+ "italianFontType":3,
+ "germanText":"Taiko de Time Travel 90's / Tatsh&musica with PARC MANTHER",
+ "germanFontType":3,
+ "spanishText":"Taiko de Time Travel 90's / Tatsh&musica with PARC MANTHER",
+ "spanishFontType":3,
+ "chineseTText":"Taiko de Time Travel 90's / Tatsh&musica with PARC MANTHER",
+ "chineseTFontType":1,
+ "koreanText":"Taiko de Time Travel 90's / Tatsh&musica with PARC MANTHER",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_20tdnc",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mscl2",
+ "japaneseText":"Hole in the wall",
+ "englishUsText":"Hole in the wall",
+ "englishUsFontType":3,
+ "frenchText":"Hole in the wall",
+ "frenchFontType":3,
+ "italianText":"Hole in the wall",
+ "italianFontType":3,
+ "germanText":"Hole in the wall",
+ "germanFontType":3,
+ "spanishText":"Hole in the wall",
+ "spanishFontType":3,
+ "chineseTText":"Hole in the wall",
+ "chineseTFontType":1,
+ "koreanText":"Hole in the wall",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mscl2",
+ "japaneseText":"「マッスル行進曲」より",
+ "englishUsText":"from \" MUSCLE MARCH \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" MUSCLE MARCH \"",
+ "frenchFontType":3,
+ "italianText":"Da \" MUSCLE MARCH \"",
+ "italianFontType":3,
+ "germanText":"Aus \" MUSCLE MARCH \"",
+ "germanFontType":3,
+ "spanishText":"De \" MUSCLE MARCH \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「MUSCLE行進曲」",
+ "chineseTFontType":1,
+ "koreanText":"\"맛스루 코우신쿄쿠\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mscl2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_ssnrns",
+ "japaneseText":"楽曲「乱数調整のリバースシンデレラ」配信中",
+ "englishUsText":"\"RNG Cinderella\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「亂數調整的反轉灰姑娘」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「RNG Cinderella」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_m96sr2",
+ "japaneseText":"楽曲「サラバ、愛しき悲しみたちよ-ZZ ver.-」配信中",
+ "englishUsText":"\"Saraba, Itoshiki Kanashimi Tachi Yo -ZZ ver.-\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「再會吧,那些愛憐的悲傷啊-ZZ ver.-」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「사라바, 이토시키 카나시미타치요-ZZ ver.-」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_iwback",
+ "japaneseText":"楽曲「I Want You Back」配信中",
+ "englishUsText":"\"I Want You Back\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「I Want You Back」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「I Want You Back」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_godkno",
+ "japaneseText":"楽曲「God knows. . .」配信中",
+ "englishUsText":"\"God knows...\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「God knows. . .」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「God knows...」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_rezer2",
+ "japaneseText":"楽曲「Realize」配信中",
+ "englishUsText":"\"Realize\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「Realize」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Realize」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_20tdnc",
+ "japaneseText":"太鼓の達人20周年曲「Hold me tight」配信中",
+ "englishUsText":"Hold me tight (20th Anniversary Song) now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"太鼓之達人20周年曲「Hold me tight」發布中",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 20주년 곡 「Hold me tight」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_tohopack05",
+ "japaneseText":"「東方ProjectアレンジパックVol.5」配信中",
+ "englishUsText":"Touhou Project Arrangements Pack Vol.5 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「東方Project Arrangements Pack Vol.5」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「Touhou Project Arrangements Pack Vol.5」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_182",
+ "japaneseText":"筋肉は裏切らない!",
+ "englishUsText":"Your body is always there for you! ",
+ "englishUsFontType":3,
+ "frenchText":"Tu peux toujours compter sur ton corps ! ",
+ "frenchFontType":3,
+ "italianText":"Il tuo corpo è tuo alleato! ",
+ "italianFontType":3,
+ "germanText":"Auf deinen Körper kannst du dich immer verlassen! ",
+ "germanFontType":3,
+ "spanishText":"¡Tu cuerpo nunca te abandona! ",
+ "spanishFontType":3,
+ "chineseTText":"肌肉是不會背叛你的!",
+ "chineseTFontType":1,
+ "koreanText":"근육은 배신하지 않는다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_183",
+ "japaneseText":"キレッキレだね!",
+ "englishUsText":"You're a lively one, aren't you?",
+ "englishUsFontType":3,
+ "frenchText":"Tu as la pêche, pas vrai ?",
+ "frenchFontType":3,
+ "italianText":"Sei un tipetto vivace, eh?",
+ "italianFontType":3,
+ "germanText":"Du bist ganz schön quirlig, was?",
+ "germanFontType":3,
+ "spanishText":"Qué alegre eres, ¿no?",
+ "spanishFontType":3,
+ "chineseTText":"動作很敏捷喔!",
+ "chineseTFontType":1,
+ "koreanText":"날렵하구나!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_184",
+ "japaneseText":"ナイスマッチョ!",
+ "englishUsText":"Macho Macho Taiko Master!",
+ "englishUsFontType":3,
+ "frenchText":"Macho Macho, maître du Taiko !",
+ "frenchFontType":3,
+ "italianText":"Macho maestro del Taiko!",
+ "italianFontType":3,
+ "germanText":"Macho Macho Taiko Master!",
+ "germanFontType":3,
+ "spanishText":"¡A por todas, maestro de Taiko!",
+ "spanishFontType":3,
+ "chineseTText":"很棒的肌肉!",
+ "chineseTFontType":1,
+ "koreanText":"나이스 근육!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_twcyes",
+ "japaneseText":"YES or YES",
+ "englishUsText":"YES or YES",
+ "englishUsFontType":3,
+ "frenchText":"YES or YES",
+ "frenchFontType":3,
+ "italianText":"YES or YES",
+ "italianFontType":3,
+ "germanText":"YES or YES",
+ "germanFontType":3,
+ "spanishText":"YES or YES",
+ "spanishFontType":3,
+ "chineseTText":"YES or YES",
+ "chineseTFontType":1,
+ "koreanText":"YES or YES",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_twcyes",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_twcyes",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_umdeja",
+ "japaneseText":"Dejavina (Japanese ver.)",
+ "englishUsText":"Dejavina (Japanese ver.)",
+ "englishUsFontType":3,
+ "frenchText":"Dejavina (Japanese ver.)",
+ "frenchFontType":3,
+ "italianText":"Dejavina (Japanese ver.)",
+ "italianFontType":3,
+ "germanText":"Dejavina (Japanese ver.)",
+ "germanFontType":3,
+ "spanishText":"Dejavina (Japanese ver.)",
+ "spanishFontType":3,
+ "chineseTText":"Dejavina (Japanese ver.)",
+ "chineseTFontType":1,
+ "koreanText":"Dejavina (Japanese ver.)",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_umdeja",
+ "japaneseText":"リサイタルズ",
+ "englishUsText":"RECITALS",
+ "englishUsFontType":3,
+ "frenchText":"RECITALS",
+ "frenchFontType":3,
+ "italianText":"RECITALS",
+ "italianFontType":3,
+ "germanText":"RECITALS",
+ "germanFontType":3,
+ "spanishText":"RECITALS",
+ "spanishFontType":3,
+ "chineseTText":"RECITALS",
+ "chineseTFontType":1,
+ "koreanText":"RECITALS",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_umdeja",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_nbwalk",
+ "japaneseText":"Walking with you",
+ "englishUsText":"Walking with you",
+ "englishUsFontType":3,
+ "frenchText":"Walking with you",
+ "frenchFontType":3,
+ "italianText":"Walking with you",
+ "italianFontType":3,
+ "germanText":"Walking with you",
+ "germanFontType":3,
+ "spanishText":"Walking with you",
+ "spanishFontType":3,
+ "chineseTText":"Walking with you",
+ "chineseTFontType":1,
+ "koreanText":"Walking with you",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_nbwalk",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_nbwalk",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_pixelg",
+ "japaneseText":"Pixel Galaxy",
+ "englishUsText":"Pixel Galaxy",
+ "englishUsFontType":3,
+ "frenchText":"Pixel Galaxy",
+ "frenchFontType":3,
+ "italianText":"Pixel Galaxy",
+ "italianFontType":3,
+ "germanText":"Pixel Galaxy",
+ "germanFontType":3,
+ "spanishText":"Pixel Galaxy",
+ "spanishFontType":3,
+ "chineseTText":"Pixel Galaxy",
+ "chineseTFontType":1,
+ "koreanText":"Pixel Galaxy",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_pixelg",
+ "japaneseText":"Snail’s House",
+ "englishUsText":"Snail’s House",
+ "englishUsFontType":3,
+ "frenchText":"Snail’s House",
+ "frenchFontType":3,
+ "italianText":"Snail’s House",
+ "italianFontType":3,
+ "germanText":"Snail’s House",
+ "germanFontType":3,
+ "spanishText":"Snail’s House",
+ "spanishFontType":3,
+ "chineseTText":"Snail’s House",
+ "chineseTFontType":1,
+ "koreanText":"Snail’s House",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_pixelg",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_20tcty",
+ "japaneseText":"Donder Time",
+ "englishUsText":"Donder Time",
+ "englishUsFontType":3,
+ "frenchText":"Donder Time",
+ "frenchFontType":3,
+ "italianText":"Donder Time",
+ "italianFontType":3,
+ "germanText":"Donder Time",
+ "germanFontType":3,
+ "spanishText":"Donder Time",
+ "spanishFontType":3,
+ "chineseTText":"Donder Time",
+ "chineseTFontType":1,
+ "koreanText":"Donder Time",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_20tcty",
+ "japaneseText":"太鼓 de タイムトラベル80's / おおがみまさこ feat.団地ノ宮琴子",
+ "englishUsText":"Taiko de Time Travel 80's / Masako Ogami feat.Kotoko from Danchinomiya",
+ "englishUsFontType":3,
+ "frenchText":"Taiko de Time Travel 80's / Masako Ogami feat.Kotoko from Danchinomiya",
+ "frenchFontType":3,
+ "italianText":"Taiko de Time Travel 80's / Masako Ogami feat.Kotoko from Danchinomiya",
+ "italianFontType":3,
+ "germanText":"Taiko de Time Travel 80's / Masako Ogami feat.Kotoko from Danchinomiya",
+ "germanFontType":3,
+ "spanishText":"Taiko de Time Travel 80's / Masako Ogami feat.Kotoko from Danchinomiya",
+ "spanishFontType":3,
+ "chineseTText":"Taiko de Time Travel 80's / Masako Ogami feat.Kotoko from Danchinomiya",
+ "chineseTFontType":1,
+ "koreanText":"Taiko de Time Travel 80's / Masako Ogami feat.Kotoko from Danchinomiya",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_20tcty",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ksrain",
+ "japaneseText":"喫茶レイン",
+ "englishUsText":"KISSA Rain",
+ "englishUsFontType":3,
+ "frenchText":"KISSA Rain",
+ "frenchFontType":3,
+ "italianText":"KISSA Rain",
+ "italianFontType":3,
+ "germanText":"KISSA Rain",
+ "germanFontType":3,
+ "spanishText":"KISSA Rain",
+ "spanishFontType":3,
+ "chineseTText":"紅茶店「雨天」",
+ "chineseTFontType":1,
+ "koreanText":"킷사 레인",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ksrain",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ksrain",
+ "japaneseText":"",
+ "englishUsText":"喫茶レイン",
+ "englishUsFontType":0,
+ "frenchText":"喫茶レイン",
+ "frenchFontType":0,
+ "italianText":"喫茶レイン",
+ "italianFontType":0,
+ "germanText":"喫茶レイン",
+ "germanFontType":0,
+ "spanishText":"喫茶レイン",
+ "spanishFontType":0,
+ "chineseTText":"喫茶レイン",
+ "chineseTFontType":0,
+ "koreanText":"喫茶レイン",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_twcyes",
+ "japaneseText":"楽曲「YES or YES」配信中",
+ "englishUsText":"\"YES or YES\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「YES or YES」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「YES or YES」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_umdeja",
+ "japaneseText":"楽曲「Dejavina (Japanese ver.)」配信中",
+ "englishUsText":"\"Dejavina (Japanese ver.)\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「Dejavina (Japanese ver.)」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Dejavina (Japanese ver.)」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_nbwalk",
+ "japaneseText":"楽曲「Walking with you」配信中",
+ "englishUsText":"\"Walking with you\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「Walking with you」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Walking with you」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_pixelg",
+ "japaneseText":"楽曲「Pixel Galaxy」配信中",
+ "englishUsText":"\"Pixel Galaxy\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「Pixel Galaxy」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Pixel Galaxy」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_20tcty",
+ "japaneseText":"楽曲「Donder Time」配信中",
+ "englishUsText":"\"Donder Time\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「Donder Time」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Donder Time」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_185",
+ "japaneseText":"あした天気にな~れ☆",
+ "englishUsText":"The sun will come out tomorrow!",
+ "englishUsFontType":3,
+ "frenchText":"Le soleil reviendra demain !",
+ "frenchFontType":3,
+ "italianText":"Domani splenderà il sole!",
+ "italianFontType":3,
+ "germanText":"Morgen kommt die Sonne raus!",
+ "germanFontType":3,
+ "spanishText":"¡Mañana sale el sol!",
+ "spanishFontType":3,
+ "chineseTText":"希望明天是好天氣~☆",
+ "chineseTFontType":1,
+ "koreanText":"내일 날씨야 맑아라~☆",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_186",
+ "japaneseText":"音符の雨あられだどん!",
+ "englishUsText":"It's raining KA's and DON's!",
+ "englishUsFontType":3,
+ "frenchText":"Il pleut des cordes de KA et DON !",
+ "frenchFontType":3,
+ "italianText":"Piovono KA e DON!",
+ "italianFontType":3,
+ "germanText":"Es regnet KAs und DONs!",
+ "germanFontType":3,
+ "spanishText":"¡Llueven KAs y DONs!",
+ "spanishFontType":3,
+ "chineseTText":"是音符的雨霰咚",
+ "chineseTFontType":1,
+ "koreanText":"음표가 비처럼 쏟아진다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_187",
+ "japaneseText":"ピチピチ・チャプチャプ・ドンドンドン",
+ "englishUsText":"Pitter-patter, splish-splash, DOWNPOUR",
+ "englishUsFontType":3,
+ "frenchText":"Ploc-ploc, flic-floc, c'est le DÉLUGE",
+ "frenchFontType":3,
+ "italianText":"Scrosc scrosc, splish splash, che DILUVIO!",
+ "italianFontType":3,
+ "germanText":"Tripf-tropf, plitsch-platsch, PLATZREGEN",
+ "germanFontType":3,
+ "spanishText":"¡Plis, plas, CHAPARRÓN!",
+ "spanishFontType":3,
+ "chineseTText":"淅瀝嘩啦打太鼓了",
+ "chineseTFontType":1,
+ "koreanText":"팔딱팔딱・첨벙첨벙・쿵쿵쿵",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_19",
+ "japaneseText":"9月のごほうびミッション",
+ "englishUsText":"September Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses - Septembre",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa settembre",
+ "italianFontType":3,
+ "germanText":"September-Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa de septiembre",
+ "spanishFontType":3,
+ "chineseTText":"9月的獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"9월의 보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_20",
+ "japaneseText":"10月のごほうびミッション",
+ "englishUsText":"October Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses - Octobre",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa ottobre",
+ "italianFontType":3,
+ "germanText":"Oktober-Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa de octubre",
+ "spanishFontType":3,
+ "chineseTText":"10月的獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"10월의 보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_21",
+ "japaneseText":"11月のごほうびミッション",
+ "englishUsText":"November Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses - Novembre",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa novembre",
+ "italianFontType":3,
+ "germanText":"November-Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa de noviembre",
+ "spanishFontType":3,
+ "chineseTText":"11月的獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"11월의 보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_22",
+ "japaneseText":"12月のごほうびミッション",
+ "englishUsText":"December Reward Missions",
+ "englishUsFontType":3,
+ "frenchText":"Missions à récompenses - Décembre",
+ "frenchFontType":3,
+ "italianText":"Missioni ricompensa dicembre",
+ "italianFontType":3,
+ "germanText":"Dezember-Belohnungsmissionen",
+ "germanFontType":3,
+ "spanishText":"Misiones de recompensa de diciembre",
+ "spanishFontType":3,
+ "chineseTText":"12月的獎勵任務",
+ "chineseTFontType":1,
+ "koreanText":"12월의 보상 미션",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_dryflw",
+ "japaneseText":"ドライフラワー",
+ "englishUsText":"Dried Flower",
+ "englishUsFontType":3,
+ "frenchText":"Dried Flower",
+ "frenchFontType":3,
+ "italianText":"Dried Flower",
+ "italianFontType":3,
+ "germanText":"Dried Flower",
+ "germanFontType":3,
+ "spanishText":"Dried Flower",
+ "spanishFontType":3,
+ "chineseTText":"Dried Flower",
+ "chineseTFontType":1,
+ "koreanText":"Dried Flower",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_dryflw",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_dryflw",
+ "japaneseText":"",
+ "englishUsText":"ドライフラワー",
+ "englishUsFontType":0,
+ "frenchText":"ドライフラワー",
+ "frenchFontType":0,
+ "italianText":"ドライフラワー",
+ "italianFontType":0,
+ "germanText":"ドライフラワー",
+ "germanFontType":0,
+ "spanishText":"ドライフラワー",
+ "spanishFontType":0,
+ "chineseTText":"ドライフラワー",
+ "chineseTFontType":0,
+ "koreanText":"ドライフラワー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_gunjou",
+ "japaneseText":"群青",
+ "englishUsText":"GUNJOU",
+ "englishUsFontType":3,
+ "frenchText":"GUNJOU",
+ "frenchFontType":3,
+ "italianText":"GUNJOU",
+ "italianFontType":3,
+ "germanText":"GUNJOU",
+ "germanFontType":3,
+ "spanishText":"GUNJOU",
+ "spanishFontType":3,
+ "chineseTText":"群青",
+ "chineseTFontType":1,
+ "koreanText":"GUNJOU",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_gunjou",
+ "japaneseText":"YOASOBI",
+ "englishUsText":"YOASOBI",
+ "englishUsFontType":3,
+ "frenchText":"YOASOBI",
+ "frenchFontType":3,
+ "italianText":"YOASOBI",
+ "italianFontType":3,
+ "germanText":"YOASOBI",
+ "germanFontType":3,
+ "spanishText":"YOASOBI",
+ "spanishFontType":3,
+ "chineseTText":"YOASOBI",
+ "chineseTFontType":1,
+ "koreanText":"YOASOBI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_gunjou",
+ "japaneseText":"",
+ "englishUsText":"群青",
+ "englishUsFontType":0,
+ "frenchText":"群青",
+ "frenchFontType":0,
+ "italianText":"群青",
+ "italianFontType":0,
+ "germanText":"群青",
+ "germanFontType":0,
+ "spanishText":"群青",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"群青",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_clssum",
+ "japaneseText":"弩蚊怒夏",
+ "englishUsText":"DOKA DOKA",
+ "englishUsFontType":3,
+ "frenchText":"DOKA DOKA",
+ "frenchFontType":3,
+ "italianText":"DOKA DOKA",
+ "italianFontType":3,
+ "germanText":"DOKA DOKA",
+ "germanFontType":3,
+ "spanishText":"DOKA DOKA",
+ "spanishFontType":3,
+ "chineseTText":"弩蚊怒夏",
+ "chineseTFontType":1,
+ "koreanText":"도카도카",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_clssum",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_clssum",
+ "japaneseText":"",
+ "englishUsText":"弩蚊怒夏",
+ "englishUsFontType":0,
+ "frenchText":"弩蚊怒夏",
+ "frenchFontType":0,
+ "italianText":"弩蚊怒夏",
+ "italianFontType":0,
+ "germanText":"弩蚊怒夏",
+ "germanFontType":0,
+ "spanishText":"弩蚊怒夏",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"弩蚊怒夏",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_clsdnu",
+ "japaneseText":"美しく忙しきドナウ",
+ "englishUsText":"The Lovely, Lively Danube",
+ "englishUsFontType":3,
+ "frenchText":"Le Beau Danube bleu",
+ "frenchFontType":3,
+ "italianText":"Sul bel Danubio blu",
+ "italianFontType":3,
+ "germanText":"Die liebliche, lebhafte Donau",
+ "germanFontType":3,
+ "spanishText":"El Danubio Azul",
+ "spanishFontType":3,
+ "chineseTText":"美麗又急促的多瑙河",
+ "chineseTFontType":1,
+ "koreanText":"아름답고 바쁜 도나우",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_clsdnu",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_clsdnu",
+ "japaneseText":"",
+ "englishUsText":"美しく忙しきドナウ",
+ "englishUsFontType":0,
+ "frenchText":"美しく忙しきドナウ",
+ "frenchFontType":0,
+ "italianText":"美しく忙しきドナウ",
+ "italianFontType":0,
+ "germanText":"美しく忙しきドナウ",
+ "germanFontType":0,
+ "spanishText":"美しく忙しきドナウ",
+ "spanishFontType":0,
+ "chineseTText":"美しく忙しきドナウ",
+ "chineseTFontType":0,
+ "koreanText":"美しく忙しきドナウ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_20tidl",
+ "japaneseText":"恋はドント・ダウト",
+ "englishUsText":"Don't Doubt This Love",
+ "englishUsFontType":3,
+ "frenchText":"Don't Doubt This Love",
+ "frenchFontType":3,
+ "italianText":"Don't Doubt This Love",
+ "italianFontType":3,
+ "germanText":"Don't Doubt This Love",
+ "germanFontType":3,
+ "spanishText":"Don't Doubt This Love",
+ "spanishFontType":3,
+ "chineseTText":"Don’t Doubt This Love",
+ "chineseTFontType":1,
+ "koreanText":"Don’t Doubt This Love",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_20tidl",
+ "japaneseText":"太鼓 de タイムトラベル70's / Kawagen Kollagen with yuzuki",
+ "englishUsText":"Taiko de Time Travel 70's / Kawagen Kollagen with yuzuki",
+ "englishUsFontType":3,
+ "frenchText":"Taiko de Time Travel 70's / Kawagen Kollagen with yuzuki",
+ "frenchFontType":3,
+ "italianText":"Taiko de Time Travel 70's / Kawagen Kollagen with yuzuki",
+ "italianFontType":3,
+ "germanText":"Taiko de Time Travel 70's / Kawagen Kollagen with yuzuki",
+ "germanFontType":3,
+ "spanishText":"Taiko de Time Travel 70's / Kawagen Kollagen with yuzuki",
+ "spanishFontType":3,
+ "chineseTText":"Taiko de Time Travel 70's / Kawagen Kollagen with yuzuki",
+ "chineseTFontType":1,
+ "koreanText":"Taiko de Time Travel 70's / Kawagen Kollagen with yuzuki",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_20tidl",
+ "japaneseText":"",
+ "englishUsText":"恋はドント・ダウト",
+ "englishUsFontType":0,
+ "frenchText":"恋はドント・ダウト",
+ "frenchFontType":0,
+ "italianText":"恋はドント・ダウト",
+ "italianFontType":0,
+ "germanText":"恋はドント・ダウト",
+ "germanFontType":0,
+ "spanishText":"恋はドント・ダウト",
+ "spanishFontType":0,
+ "chineseTText":"恋はドント・ダウト",
+ "chineseTFontType":0,
+ "koreanText":"恋はドント・ダウト",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ma2rid",
+ "japaneseText":"MATSURI D/A",
+ "englishUsText":"MATSURI D/A",
+ "englishUsFontType":3,
+ "frenchText":"MATSURI D/A",
+ "frenchFontType":3,
+ "italianText":"MATSURI D/A",
+ "italianFontType":3,
+ "germanText":"MATSURI D/A",
+ "germanFontType":3,
+ "spanishText":"MATSURI D/A",
+ "spanishFontType":3,
+ "chineseTText":"MATSURI D/A",
+ "chineseTFontType":1,
+ "koreanText":"MATSURI D/A",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ma2rid",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ma2rid",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_dryflw",
+ "japaneseText":"楽曲「ドライフラワー」配信中",
+ "englishUsText":"\"Dried Flower\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「Dried Flower」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Dried Flower」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_gunjou",
+ "japaneseText":"楽曲「群青」配信中",
+ "englishUsText":"\"GUNJOU\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「群青」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「GUNJOU」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_clspack02",
+ "japaneseText":"「クラシックアレンジパックVol.2」配信中",
+ "englishUsText":"Classical Arrangements Pack Vol. 2 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「古典樂改編Pack Vol.2」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「클래식 어레인지 음악 Pack Vol.2」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_20tidl",
+ "japaneseText":"楽曲「恋はドント・ダウト」配信中",
+ "englishUsText":"\"Don't Doubt This Love\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「Don’t Doubt This Love」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Don’t Doubt This Love」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_188",
+ "japaneseText":"AND OR XOR",
+ "englishUsText":"AND OR XOR",
+ "englishUsFontType":3,
+ "frenchText":"AND OR XOR",
+ "frenchFontType":3,
+ "italianText":"AND OR XOR",
+ "italianFontType":3,
+ "germanText":"AND OR XOR",
+ "germanFontType":3,
+ "spanishText":"AND OR XOR",
+ "spanishFontType":3,
+ "chineseTText":"AND OR XOR",
+ "chineseTFontType":1,
+ "koreanText":"AND OR XOR",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_189",
+ "japaneseText":"パリティチェックしたカッ!?",
+ "englishUsText":"Did you run a parity check!?",
+ "englishUsFontType":3,
+ "frenchText":"Avez-vous fait un contrôle de parité !?",
+ "frenchFontType":3,
+ "italianText":"Hai eseguito un controllo di parità?",
+ "italianFontType":3,
+ "germanText":"Hast du schon eine Paritätsprüfung drüber laufen lassen?",
+ "germanFontType":3,
+ "spanishText":"¡¿Has hecho una comprobación de paridad?!",
+ "spanishFontType":3,
+ "chineseTText":"奇偶校驗了沒!?",
+ "chineseTFontType":1,
+ "koreanText":"패리티 검사 했어!?",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_190",
+ "japaneseText":"ビリビリ",
+ "englishUsText":"Bzzzt! ",
+ "englishUsFontType":3,
+ "frenchText":"Bzzzt ! ",
+ "frenchFontType":3,
+ "italianText":"Bzzzt! ",
+ "italianFontType":3,
+ "germanText":"Bzzzt! ",
+ "germanFontType":3,
+ "spanishText":"¡Bzzzt! ",
+ "spanishFontType":3,
+ "chineseTText":"霹靂啪啦",
+ "chineseTFontType":1,
+ "koreanText":"찌릿찌릿",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_clsh69",
+ "japaneseText":"ハンロック",
+ "englishUsText":"Hungarian Rock",
+ "englishUsFontType":3,
+ "frenchText":"Hungarian Rock",
+ "frenchFontType":3,
+ "italianText":"Hungarian Rock",
+ "italianFontType":3,
+ "germanText":"Hungarian Rock",
+ "germanFontType":3,
+ "spanishText":"Hungarian Rock",
+ "spanishFontType":3,
+ "chineseTText":"Hung-rock",
+ "chineseTFontType":1,
+ "koreanText":"Hung-rock",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_clsh69",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_clsh69",
+ "japaneseText":"",
+ "englishUsText":"ハンロック",
+ "englishUsFontType":0,
+ "frenchText":"ハンロック",
+ "frenchFontType":0,
+ "italianText":"ハンロック",
+ "italianFontType":0,
+ "germanText":"ハンロック",
+ "germanFontType":0,
+ "spanishText":"ハンロック",
+ "spanishFontType":0,
+ "chineseTText":"ハンロック",
+ "chineseTFontType":0,
+ "koreanText":"ハンロック",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_hadaka",
+ "japaneseText":"裸の心",
+ "englishUsText":"HADAKA NO KOKORO",
+ "englishUsFontType":3,
+ "frenchText":"HADAKA NO KOKORO",
+ "frenchFontType":3,
+ "italianText":"HADAKA NO KOKORO",
+ "italianFontType":3,
+ "germanText":"HADAKA NO KOKORO",
+ "germanFontType":3,
+ "spanishText":"HADAKA NO KOKORO",
+ "spanishFontType":3,
+ "chineseTText":"HADAKA NO KOKORO",
+ "chineseTFontType":1,
+ "koreanText":"HADAKA NO KOKORO",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_hadaka",
+ "japaneseText":"TBS系 火曜ドラマ「私の家政夫ナギサさん」主題歌",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_hadaka",
+ "japaneseText":"",
+ "englishUsText":"裸の心",
+ "englishUsFontType":0,
+ "frenchText":"裸の心",
+ "frenchFontType":0,
+ "italianText":"裸の心",
+ "italianFontType":0,
+ "germanText":"裸の心",
+ "germanFontType":0,
+ "spanishText":"裸の心",
+ "spanishFontType":0,
+ "chineseTText":"裸の心",
+ "chineseTFontType":0,
+ "koreanText":"裸の心",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ohdcry",
+ "japaneseText":"Cry Baby",
+ "englishUsText":"Cry Baby",
+ "englishUsFontType":3,
+ "frenchText":"Cry Baby",
+ "frenchFontType":3,
+ "italianText":"Cry Baby",
+ "italianFontType":3,
+ "germanText":"Cry Baby",
+ "germanFontType":3,
+ "spanishText":"Cry Baby",
+ "spanishFontType":3,
+ "chineseTText":"Cry Baby",
+ "chineseTFontType":1,
+ "koreanText":"Cry Baby",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ohdcry",
+ "japaneseText":"Official髭男dism 「東京リベンジャーズ」より",
+ "englishUsText":"OFFICIAL HIGE DANDISM From \" Tokyo Revengers \"",
+ "englishUsFontType":3,
+ "frenchText":"OFFICIAL HIGE DANDISM tiré de \" Tokyo Revengers \"",
+ "frenchFontType":3,
+ "italianText":"OFFICIAL HIGE DANDISM Da \" Tokyo Revengers \"",
+ "italianFontType":3,
+ "germanText":"OFFICIAL HIGE DANDISM Aus \" Tokyo Revengers \"",
+ "germanFontType":3,
+ "spanishText":"OFFICIAL HIGE DANDISM De \" Tokyo Revengers \"",
+ "spanishFontType":3,
+ "chineseTText":"Official髭男dism 來自「東京復仇者」",
+ "chineseTFontType":1,
+ "koreanText":"OFFICIAL HIGE DANDISM \"도쿄 리벤저스\"에서",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ohdcry",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_aquari",
+ "japaneseText":"創聖のアクエリオン",
+ "englishUsText":"Genesis of AQUARION",
+ "englishUsFontType":3,
+ "frenchText":"Genesis of AQUARION",
+ "frenchFontType":3,
+ "italianText":"Genesis of AQUARION",
+ "italianFontType":3,
+ "germanText":"Genesis of AQUARION",
+ "germanFontType":3,
+ "spanishText":"Genesis of AQUARION",
+ "spanishFontType":3,
+ "chineseTText":"Genesis of AQUARION",
+ "chineseTFontType":1,
+ "koreanText":"Genesis of AQUARION",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_aquari",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_aquari",
+ "japaneseText":"",
+ "englishUsText":"創聖のアクエリオン",
+ "englishUsFontType":0,
+ "frenchText":"創聖のアクエリオン",
+ "frenchFontType":0,
+ "italianText":"創聖のアクエリオン",
+ "italianFontType":0,
+ "germanText":"創聖のアクエリオン",
+ "germanFontType":0,
+ "spanishText":"創聖のアクエリオン",
+ "spanishFontType":0,
+ "chineseTText":"創聖のアクエリオン",
+ "chineseTFontType":0,
+ "koreanText":"創聖のアクエリオン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ssnkjs",
+ "japaneseText":"怪獣少女は火を吹かない",
+ "englishUsText":"No Fire for Monster Girl",
+ "englishUsFontType":3,
+ "frenchText":"No Fire for Monster Girl",
+ "frenchFontType":3,
+ "italianText":"No Fire for Monster Girl",
+ "italianFontType":3,
+ "germanText":"No Fire for Monster Girl",
+ "germanFontType":3,
+ "spanishText":"No Fire for Monster Girl",
+ "spanishFontType":3,
+ "chineseTText":"No Fire for Monster Girl",
+ "chineseTFontType":1,
+ "koreanText":"No Fire for Monster Girl",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ssnkjs",
+ "japaneseText":"粗品 feat. 初音ミク",
+ "englishUsText":"Soshina feat. HATSUNE MIKU",
+ "englishUsFontType":3,
+ "frenchText":"Soshina feat. HATSUNE MIKU",
+ "frenchFontType":3,
+ "italianText":"Soshina feat. HATSUNE MIKU",
+ "italianFontType":3,
+ "germanText":"Soshina feat. HATSUNE MIKU",
+ "germanFontType":3,
+ "spanishText":"Soshina feat. HATSUNE MIKU",
+ "spanishFontType":3,
+ "chineseTText":"粗品 feat. 初音未來",
+ "chineseTFontType":1,
+ "koreanText":"Soshina feat. 하츠네 미쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ssnkjs",
+ "japaneseText":"",
+ "englishUsText":"怪獣少女は火を吹かない",
+ "englishUsFontType":0,
+ "frenchText":"怪獣少女は火を吹かない",
+ "frenchFontType":0,
+ "italianText":"怪獣少女は火を吹かない",
+ "italianFontType":0,
+ "germanText":"怪獣少女は火を吹かない",
+ "germanFontType":0,
+ "spanishText":"怪獣少女は火を吹かない",
+ "spanishFontType":0,
+ "chineseTText":"怪獣少女は火を吹かない",
+ "chineseTFontType":0,
+ "koreanText":"怪獣少女は火を吹かない",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_20tanm",
+ "japaneseText":"大冒険タツドン",
+ "englishUsText":"DAIBOUKEN TATSUDON",
+ "englishUsFontType":3,
+ "frenchText":"DAIBOUKEN TATSUDON",
+ "frenchFontType":3,
+ "italianText":"DAIBOUKEN TATSUDON",
+ "italianFontType":3,
+ "germanText":"DAIBOUKEN TATSUDON",
+ "germanFontType":3,
+ "spanishText":"DAIBOUKEN TATSUDON",
+ "spanishFontType":3,
+ "chineseTText":"大冒險TATSUDON",
+ "chineseTFontType":1,
+ "koreanText":"DAIBOUKEN TATSUDON",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_20tanm",
+ "japaneseText":"太鼓 de タイムトラベル60's / 田島勝朗 feat.シックスティーズ・クワイヤーズ",
+ "englishUsText":"Taiko de Time Travel 60's / Katsuro Tajima feat. Sixties Choirs",
+ "englishUsFontType":3,
+ "frenchText":"Taiko de Time Travel 60's / Katsuro Tajima feat. Sixties Choirs",
+ "frenchFontType":3,
+ "italianText":"Taiko de Time Travel 60's / Katsuro Tajima feat. Sixties Choirs",
+ "italianFontType":3,
+ "germanText":"Taiko de Time Travel 60's / Katsuro Tajima feat. Sixties Choirs",
+ "germanFontType":3,
+ "spanishText":"Taiko de Time Travel 60's / Katsuro Tajima feat. Sixties Choirs",
+ "spanishFontType":3,
+ "chineseTText":"Taiko de Time Travel 60's / 田島勝朗 feat. Sixties Choirs",
+ "chineseTFontType":1,
+ "koreanText":"Taiko de Time Travel 60's / Katsuro Tajima feat. Sixties Choirs",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_20tanm",
+ "japaneseText":"",
+ "englishUsText":"大冒険タツドン",
+ "englishUsFontType":0,
+ "frenchText":"大冒険タツドン",
+ "frenchFontType":0,
+ "italianText":"大冒険タツドン",
+ "italianFontType":0,
+ "germanText":"大冒険タツドン",
+ "germanFontType":0,
+ "spanishText":"大冒険タツドン",
+ "spanishFontType":0,
+ "chineseTText":"大冒険タツドン",
+ "chineseTFontType":0,
+ "koreanText":"大冒険タツドン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ska",
+ "japaneseText":"ゴーゴー・キッチン",
+ "englishUsText":"Go Go - Kitchen",
+ "englishUsFontType":3,
+ "frenchText":"Go Go - Kitchen",
+ "frenchFontType":3,
+ "italianText":"Go Go - Kitchen",
+ "italianFontType":3,
+ "germanText":"Go Go - Kitchen",
+ "germanFontType":3,
+ "spanishText":"Go Go - Kitchen",
+ "spanishFontType":3,
+ "chineseTText":"Go Go - Kitchen",
+ "chineseTFontType":1,
+ "koreanText":"Go Go - Kitchen",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ska",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ska",
+ "japaneseText":"",
+ "englishUsText":"ゴーゴー・キッチン",
+ "englishUsFontType":0,
+ "frenchText":"ゴーゴー・キッチン",
+ "frenchFontType":0,
+ "italianText":"ゴーゴー・キッチン",
+ "italianFontType":0,
+ "germanText":"ゴーゴー・キッチン",
+ "germanFontType":0,
+ "spanishText":"ゴーゴー・キッチン",
+ "spanishFontType":0,
+ "chineseTText":"ゴーゴー・キッチン",
+ "chineseTFontType":0,
+ "koreanText":"ゴーゴー・キッチン",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_hadaka",
+ "japaneseText":"楽曲「裸の心」配信中",
+ "englishUsText":"\"HADAKA NO KOKORO\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「HADAKA NO KOKORO」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「HADAKA NO KOKORO」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_ohdcry",
+ "japaneseText":"楽曲「Cry Baby」配信中",
+ "englishUsText":"\"Cry Baby\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「Cry Baby」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Cry Baby」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_aquari",
+ "japaneseText":"楽曲「創聖のアクエリオン」配信中",
+ "englishUsText":"\"Genesis of AQUARION\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「Genesis of AQUARION」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Genesis of AQUARION」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_ssnkjs",
+ "japaneseText":"楽曲「怪獣少女は火を吹かない」配信中",
+ "englishUsText":"\"No Fire for Monster Girl\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「No Fire for Monster Girl」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「No Fire for Monster Girl」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_20tanm",
+ "japaneseText":"楽曲「大冒険タツドン」配信中",
+ "englishUsText":"\"DAIBOUKEN TATSUDON\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「大冒險TATSUDON」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「DAIBOUKEN TATSUDON」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_191",
+ "japaneseText":"3分でお前を調理するドン",
+ "englishUsText":"You'll be done faster than instant ramen!",
+ "englishUsFontType":3,
+ "frenchText":"Ça ira encore plus vite que des ramens instantanés !",
+ "frenchFontType":3,
+ "italianText":"Farò di te un sol boccone!",
+ "italianFontType":3,
+ "germanText":"Da bist du schneller fertig als eine Schüssel Instant-Ramen!",
+ "germanFontType":3,
+ "spanishText":"¡Acabarás antes que el ramen instantáneo de hacerse!",
+ "spanishFontType":3,
+ "chineseTText":"3分鐘就料理好你咚",
+ "chineseTFontType":1,
+ "koreanText":"3분 안에 너를 요리해주겠다쿵",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_192",
+ "japaneseText":"トントントントン・・・ドン",
+ "englishUsText":"Ton-ton-ton-ton... DON!",
+ "englishUsFontType":3,
+ "frenchText":"Ton-ton-ton-ton... DON !",
+ "frenchFontType":3,
+ "italianText":"Ti sarò indigesto!",
+ "italianFontType":3,
+ "germanText":"Ton-ton-ton-ton ... DON!",
+ "germanFontType":3,
+ "spanishText":"Ton, ton, ton, ton... ¡DON!",
+ "spanishFontType":3,
+ "chineseTText":"咕嚕咕嚕……咚",
+ "chineseTFontType":1,
+ "koreanText":"보글보글보글…쿵딱",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_193",
+ "japaneseText":"おいしくな~れ♡",
+ "englishUsText":"This is getting tasty~!",
+ "englishUsFontType":3,
+ "frenchText":"Quel délice~ !",
+ "frenchFontType":3,
+ "italianText":"Sei un bel bocconcino!",
+ "italianFontType":3,
+ "germanText":"Jetzt wird's lecker~!",
+ "germanFontType":3,
+ "spanishText":"¡Qué buena pinta!",
+ "spanishFontType":3,
+ "chineseTText":"變好吃吧~♡",
+ "chineseTFontType":1,
+ "koreanText":"맛있어져라~♡",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_kirari",
+ "japaneseText":"きらり",
+ "englishUsText":"Kirari",
+ "englishUsFontType":3,
+ "frenchText":"Kirari",
+ "frenchFontType":3,
+ "italianText":"Kirari",
+ "italianFontType":3,
+ "germanText":"Kirari",
+ "germanFontType":3,
+ "spanishText":"Kirari",
+ "spanishFontType":3,
+ "chineseTText":"Kirari",
+ "chineseTFontType":1,
+ "koreanText":"Kirari",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_kirari",
+ "japaneseText":"藤井 風",
+ "englishUsText":"Fujii Kaze",
+ "englishUsFontType":3,
+ "frenchText":"Fujii Kaze",
+ "frenchFontType":3,
+ "italianText":"Fujii Kaze",
+ "italianFontType":3,
+ "germanText":"Fujii Kaze",
+ "germanFontType":3,
+ "spanishText":"Fujii Kaze",
+ "spanishFontType":3,
+ "chineseTText":"Fujii Kaze",
+ "chineseTFontType":1,
+ "koreanText":"Fujii Kaze",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kirari",
+ "japaneseText":"",
+ "englishUsText":"きらり",
+ "englishUsFontType":0,
+ "frenchText":"きらり",
+ "frenchFontType":0,
+ "italianText":"きらり",
+ "italianFontType":0,
+ "germanText":"きらり",
+ "germanFontType":0,
+ "spanishText":"きらり",
+ "spanishFontType":0,
+ "chineseTText":"きらり",
+ "chineseTFontType":0,
+ "koreanText":"きらり",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mikvam",
+ "japaneseText":"ヴァンパイア",
+ "englishUsText":"The Vampire",
+ "englishUsFontType":3,
+ "frenchText":"The Vampire",
+ "frenchFontType":3,
+ "italianText":"The Vampire",
+ "italianFontType":3,
+ "germanText":"The Vampire",
+ "germanFontType":3,
+ "spanishText":"The Vampire",
+ "spanishFontType":3,
+ "chineseTText":"The Vampire",
+ "chineseTFontType":1,
+ "koreanText":"The Vampire",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_mikvam",
+ "japaneseText":"DECO*27 feat.初音ミク",
+ "englishUsText":"DECO*27 feat. HATSUNE MIKU",
+ "englishUsFontType":3,
+ "frenchText":"DECO*27 feat. HATSUNE MIKU",
+ "frenchFontType":3,
+ "italianText":"DECO*27 feat. HATSUNE MIKU",
+ "italianFontType":3,
+ "germanText":"DECO*27 feat. HATSUNE MIKU",
+ "germanFontType":3,
+ "spanishText":"DECO*27 feat. HATSUNE MIKU",
+ "spanishFontType":3,
+ "chineseTText":"DECO*27 feat.初音未來",
+ "chineseTFontType":1,
+ "koreanText":"DECO*27 feat.하츠네 미쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mikvam",
+ "japaneseText":"",
+ "englishUsText":"ヴァンパイア",
+ "englishUsFontType":0,
+ "frenchText":"ヴァンパイア",
+ "frenchFontType":0,
+ "italianText":"ヴァンパイア",
+ "italianFontType":0,
+ "germanText":"ヴァンパイア",
+ "germanFontType":0,
+ "spanishText":"ヴァンパイア",
+ "spanishFontType":0,
+ "chineseTText":"ヴァンパイア",
+ "chineseTFontType":0,
+ "koreanText":"ヴァンパイア",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_vfveno",
+ "japaneseText":"ベノム(feat.flower)",
+ "englishUsText":"Venom (feat.flower)",
+ "englishUsFontType":3,
+ "frenchText":"Venom (feat.flower)",
+ "frenchFontType":3,
+ "italianText":"Venom (feat.flower)",
+ "italianFontType":3,
+ "germanText":"Venom (feat.flower)",
+ "germanFontType":3,
+ "spanishText":"Venom (feat.flower)",
+ "spanishFontType":3,
+ "chineseTText":"Venom (feat.flower)",
+ "chineseTFontType":1,
+ "koreanText":"Venom (feat.flower)",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_vfveno",
+ "japaneseText":"かいりきベア",
+ "englishUsText":"Kairiki bear",
+ "englishUsFontType":3,
+ "frenchText":"Kairiki bear",
+ "frenchFontType":3,
+ "italianText":"Kairiki bear",
+ "italianFontType":3,
+ "germanText":"Kairiki bear",
+ "germanFontType":3,
+ "spanishText":"Kairiki bear",
+ "spanishFontType":3,
+ "chineseTText":"Kairiki bear",
+ "chineseTFontType":1,
+ "koreanText":"Kairiki bear",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_vfveno",
+ "japaneseText":"",
+ "englishUsText":"ベノム(feat.flower)",
+ "englishUsFontType":0,
+ "frenchText":"ベノム(feat.flower)",
+ "frenchFontType":0,
+ "italianText":"ベノム(feat.flower)",
+ "italianFontType":0,
+ "germanText":"ベノム(feat.flower)",
+ "germanFontType":0,
+ "spanishText":"ベノム(feat.flower)",
+ "spanishFontType":0,
+ "chineseTText":"ベノム(feat.flower)",
+ "chineseTFontType":0,
+ "koreanText":"ベノム(feat.flower)",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_gumiam",
+ "japaneseText":"天ノ弱",
+ "englishUsText":"Amanojaku",
+ "englishUsFontType":3,
+ "frenchText":"Amanojaku",
+ "frenchFontType":3,
+ "italianText":"Amanojaku",
+ "italianFontType":3,
+ "germanText":"Amanojaku",
+ "germanFontType":3,
+ "spanishText":"Amanojaku",
+ "spanishFontType":3,
+ "chineseTText":"天之弱",
+ "chineseTFontType":1,
+ "koreanText":"Amanojaku",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_gumiam",
+ "japaneseText":"164",
+ "englishUsText":"164",
+ "englishUsFontType":3,
+ "frenchText":"164",
+ "frenchFontType":3,
+ "italianText":"164",
+ "italianFontType":3,
+ "germanText":"164",
+ "germanFontType":3,
+ "spanishText":"164",
+ "spanishFontType":3,
+ "chineseTText":"164",
+ "chineseTFontType":1,
+ "koreanText":"164",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_gumiam",
+ "japaneseText":"",
+ "englishUsText":"天ノ弱",
+ "englishUsFontType":0,
+ "frenchText":"天ノ弱",
+ "frenchFontType":0,
+ "italianText":"天ノ弱",
+ "italianFontType":0,
+ "germanText":"天ノ弱",
+ "germanFontType":0,
+ "spanishText":"天ノ弱",
+ "spanishFontType":0,
+ "chineseTText":"天ノ弱",
+ "chineseTFontType":0,
+ "koreanText":"天ノ弱",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_20tbtu",
+ "japaneseText":"一世風靡",
+ "englishUsText":"ISSEIFUBI",
+ "englishUsFontType":3,
+ "frenchText":"ISSEIFUBI",
+ "frenchFontType":3,
+ "italianText":"ISSEIFUBI",
+ "italianFontType":3,
+ "germanText":"ISSEIFUBI",
+ "germanFontType":3,
+ "spanishText":"ISSEIFUBI",
+ "spanishFontType":3,
+ "chineseTText":"一世風靡",
+ "chineseTFontType":1,
+ "koreanText":"잇세이후비",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_20tbtu",
+ "japaneseText":"太鼓 de タイムトラベル江戸 / 西込加久見",
+ "englishUsText":"Taiko de Time Travel Edo / Kakumi Nishigomi",
+ "englishUsFontType":3,
+ "frenchText":"Taiko de Time Travel Edo / Kakumi Nishigomi",
+ "frenchFontType":3,
+ "italianText":"Taiko de Time Travel Edo / Kakumi Nishigomi",
+ "italianFontType":3,
+ "germanText":"Taiko de Time Travel Edo / Kakumi Nishigomi",
+ "germanFontType":3,
+ "spanishText":"Taiko de Time Travel Edo / Kakumi Nishigomi",
+ "spanishFontType":3,
+ "chineseTText":"Taiko de Time Travel Edo / 西込加久見",
+ "chineseTFontType":1,
+ "koreanText":"Taiko de Time Travel Edo / Kakumi Nishigomi",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_20tbtu",
+ "japaneseText":"",
+ "englishUsText":"一世風靡",
+ "englishUsFontType":0,
+ "frenchText":"一世風靡",
+ "frenchFontType":0,
+ "italianText":"一世風靡",
+ "italianFontType":0,
+ "germanText":"一世風靡",
+ "germanFontType":0,
+ "spanishText":"一世風靡",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"一世風靡",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ogm10t",
+ "japaneseText":"3Q-4U-AC00",
+ "englishUsText":"3Q-4U-AC00",
+ "englishUsFontType":3,
+ "frenchText":"3Q-4U-AC00",
+ "frenchFontType":3,
+ "italianText":"3Q-4U-AC00",
+ "italianFontType":3,
+ "germanText":"3Q-4U-AC00",
+ "germanFontType":3,
+ "spanishText":"3Q-4U-AC00",
+ "spanishFontType":3,
+ "chineseTText":"3Q-4U-AC00",
+ "chineseTFontType":1,
+ "koreanText":"3Q-4U-AC00",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ogm10t",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ogm10t",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_kirari",
+ "japaneseText":"楽曲「きらり」配信中",
+ "englishUsText":"\"Kirari\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「Kirari」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「Kirari」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_vocaropack08",
+ "japaneseText":"「ボーカロイド™曲パックVol.8」配信中",
+ "englishUsText":"VOCALOID™ Music Pack Vol.8 now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"「VOCALOID™ Music Pack Vol.8」發布中",
+ "chineseTFontType":1,
+ "koreanText":"「VOCALOID™ Music Pack Vol.8」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"shopnews_20tbtu",
+ "japaneseText":"楽曲「一世風靡」配信中",
+ "englishUsText":"\"ISSEIFUBI\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「一世風靡」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「잇세이후비」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_194",
+ "japaneseText":"フリフリでノリノリだドン!",
+ "englishUsText":"I'm fluttering around full of energy!",
+ "englishUsFontType":3,
+ "frenchText":"Je tourbillonne, débordant d'énergie !",
+ "frenchFontType":3,
+ "italianText":"Saltello pieno di energia!",
+ "italianFontType":3,
+ "germanText":"Ich flattere voller Energie umher!",
+ "germanFontType":3,
+ "spanishText":"¡Revoloteo repleto de energía!",
+ "spanishFontType":3,
+ "chineseTText":"隨風起舞也很起勁咚!",
+ "chineseTFontType":1,
+ "koreanText":"흔들흔들 신난다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_195",
+ "japaneseText":"俺たちの戦いはこれからだ!",
+ "englishUsText":"Our battle begins now!",
+ "englishUsFontType":3,
+ "frenchText":"Notre combat commence maintenant !",
+ "frenchFontType":3,
+ "italianText":"La battaglia inizia ora!",
+ "italianFontType":3,
+ "germanText":"Der Kampf beginnt jetzt!",
+ "germanFontType":3,
+ "spanishText":"¡La batalla empieza ya!",
+ "spanishFontType":3,
+ "chineseTText":"我們的戰鬥現在才要開始!",
+ "chineseTFontType":1,
+ "koreanText":"우리의 싸움은 이제부터다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_196",
+ "japaneseText":"私こそ真の太鼓の達人だ!!",
+ "englishUsText":"I'm a veritable Taiko Master!",
+ "englishUsFontType":3,
+ "frenchText":"Je suis un véritable maître Taiko !",
+ "frenchFontType":3,
+ "italianText":"Sono un vero Maestro del Taiko!",
+ "italianFontType":3,
+ "germanText":"Ich bin ein wahrhafter Taiko-Meister!",
+ "germanFontType":3,
+ "spanishText":"¡Soy un auténtico maestro de Taiko!",
+ "spanishFontType":3,
+ "chineseTText":"我才是真正的太鼓之達人!!",
+ "chineseTFontType":1,
+ "koreanText":"내가 진짜 태고의 달인이다!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_haruji",
+ "japaneseText":"ハルジオン",
+ "englishUsText":"Harujion",
+ "englishUsFontType":3,
+ "frenchText":"Harujion",
+ "frenchFontType":3,
+ "italianText":"Harujion",
+ "italianFontType":3,
+ "germanText":"Harujion",
+ "germanFontType":3,
+ "spanishText":"Harujion",
+ "spanishFontType":3,
+ "chineseTText":"春紫菀",
+ "chineseTFontType":1,
+ "koreanText":"봄망초",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_haruji",
+ "japaneseText":"YOASOBI",
+ "englishUsText":"YOASOBI",
+ "englishUsFontType":3,
+ "frenchText":"YOASOBI",
+ "frenchFontType":3,
+ "italianText":"YOASOBI",
+ "italianFontType":3,
+ "germanText":"YOASOBI",
+ "germanFontType":3,
+ "spanishText":"YOASOBI",
+ "spanishFontType":3,
+ "chineseTText":"YOASOBI",
+ "chineseTFontType":1,
+ "koreanText":"YOASOBI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_haruji",
+ "japaneseText":"",
+ "englishUsText":"ハルジオン",
+ "englishUsFontType":0,
+ "frenchText":"ハルジオン",
+ "frenchFontType":0,
+ "italianText":"ハルジオン",
+ "italianFontType":0,
+ "germanText":"ハルジオン",
+ "germanFontType":0,
+ "spanishText":"ハルジオン",
+ "spanishFontType":0,
+ "chineseTText":"ハルジオン",
+ "chineseTFontType":0,
+ "koreanText":"ハルジオン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_adodo",
+ "japaneseText":"踊",
+ "englishUsText":"Odo",
+ "englishUsFontType":3,
+ "frenchText":"Odo",
+ "frenchFontType":3,
+ "italianText":"Odo",
+ "italianFontType":3,
+ "germanText":"Odo",
+ "germanFontType":3,
+ "spanishText":"Odo",
+ "spanishFontType":3,
+ "chineseTText":"踊",
+ "chineseTFontType":1,
+ "koreanText":"Odo",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_adodo",
+ "japaneseText":"Ado",
+ "englishUsText":"Ado",
+ "englishUsFontType":3,
+ "frenchText":"Ado",
+ "frenchFontType":3,
+ "italianText":"Ado",
+ "italianFontType":3,
+ "germanText":"Ado",
+ "germanFontType":3,
+ "spanishText":"Ado",
+ "spanishFontType":3,
+ "chineseTText":"Ado",
+ "chineseTFontType":1,
+ "koreanText":"Ado",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_adodo",
+ "japaneseText":"",
+ "englishUsText":"踊",
+ "englishUsFontType":0,
+ "frenchText":"踊",
+ "frenchFontType":0,
+ "italianText":"踊",
+ "italianFontType":0,
+ "germanText":"踊",
+ "germanFontType":0,
+ "spanishText":"踊",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"踊",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ssn3rd",
+ "japaneseText":"大好きな太鼓の音",
+ "englishUsText":"Favorite Sounds of Taiko",
+ "englishUsFontType":3,
+ "frenchText":"Les sons favoris de Taiko",
+ "frenchFontType":3,
+ "italianText":"Favorite Sounds of Taiko",
+ "italianFontType":3,
+ "germanText":"Favorite Sounds of Taiko",
+ "germanFontType":3,
+ "spanishText":"Favorite Sounds of Taiko",
+ "spanishFontType":3,
+ "chineseTText":"最喜歡的太鼓鼓聲",
+ "chineseTFontType":1,
+ "koreanText":"정말 좋아하는 태고 소리",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_ssn3rd",
+ "japaneseText":"太鼓の達人20周年記念ソング / 粗品 feat. どんちゃん",
+ "englishUsText":"Taiko No Tatsujin 20th Anniversary Song / Soshina feat. DON-chan",
+ "englishUsFontType":3,
+ "frenchText":"Taiko No Tatsujin 20th Anniversary Song / Soshina feat. DON-chan",
+ "frenchFontType":3,
+ "italianText":"Taiko No Tatsujin 20th Anniversary Song / Soshina feat. DON-chan",
+ "italianFontType":3,
+ "germanText":"Taiko No Tatsujin 20th Anniversary Song / Soshina feat. DON-chan",
+ "germanFontType":3,
+ "spanishText":"Taiko No Tatsujin 20th Anniversary Song / Soshina feat. DON-chan",
+ "spanishFontType":3,
+ "chineseTText":"太鼓之達人20周年曲 / 粗品 feat. 小咚",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 20주년 곡 / Soshina feat. 동이",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ssn3rd",
+ "japaneseText":"",
+ "englishUsText":"大好きな太鼓の音",
+ "englishUsFontType":0,
+ "frenchText":"大好きな太鼓の音",
+ "frenchFontType":0,
+ "italianText":"大好きな太鼓の音",
+ "italianFontType":0,
+ "germanText":"大好きな太鼓の音",
+ "germanFontType":0,
+ "spanishText":"大好きな太鼓の音",
+ "spanishFontType":0,
+ "chineseTText":"大好きな太鼓の音",
+ "chineseTFontType":0,
+ "koreanText":"大好きな太鼓の音",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_20thei",
+ "japaneseText":"平等院鳳凰ドン vs 鳥獣戯カッ",
+ "englishUsText":"Byoudouin Hou-ou-DON vs Choju-gi-KATSU",
+ "englishUsFontType":3,
+ "frenchText":"Byoudouin Hou-ou-DON vs Choju-gi-KATSU",
+ "frenchFontType":3,
+ "italianText":"Byoudouin Hou-ou-DON vs Choju-gi-KATSU",
+ "italianFontType":3,
+ "germanText":"Byoudouin Hou-ou-DON vs Choju-gi-KATSU",
+ "germanFontType":3,
+ "spanishText":"Byoudouin Hou-ou-DON vs Choju-gi-KATSU",
+ "spanishFontType":3,
+ "chineseTText":"平等院鳳凰咚 vs 鳥獸戲咔",
+ "chineseTFontType":1,
+ "koreanText":"뵤도인호오 동 vs 쵸쥬기 딱",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_20thei",
+ "japaneseText":"太鼓 de タイムトラベル平安 / コバヤシユウヤ(IOSYS) feat. miko",
+ "englishUsText":"Taiko de Time Travel Heian / Yuya Kobayashi(IOSYS) feat. miko",
+ "englishUsFontType":3,
+ "frenchText":"Taiko de Time Travel Heian / Yuya Kobayashi(IOSYS) feat. miko",
+ "frenchFontType":3,
+ "italianText":"Taiko de Time Travel Heian / Yuya Kobayashi(IOSYS) feat. miko",
+ "italianFontType":3,
+ "germanText":"Taiko de Time Travel Heian / Yuya Kobayashi(IOSYS) feat. miko",
+ "germanFontType":3,
+ "spanishText":"Taiko de Time Travel Heian / Yuya Kobayashi(IOSYS) feat. miko",
+ "spanishFontType":3,
+ "chineseTText":"Taiko de Time Travel Heian / Yuya Kobayashi(IOSYS) feat. miko",
+ "chineseTFontType":1,
+ "koreanText":"Taiko de Time Travel Heian / Yuya Kobayashi(IOSYS) feat. miko",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_20thei",
+ "japaneseText":"",
+ "englishUsText":"平等院鳳凰ドン vs 鳥獣戯カッ",
+ "englishUsFontType":0,
+ "frenchText":"平等院鳳凰ドン vs 鳥獣戯カッ",
+ "frenchFontType":0,
+ "italianText":"平等院鳳凰ドン vs 鳥獣戯カッ",
+ "italianFontType":0,
+ "germanText":"平等院鳳凰ドン vs 鳥獣戯カッ",
+ "germanFontType":0,
+ "spanishText":"平等院鳳凰ドン vs 鳥獣戯カッ",
+ "spanishFontType":0,
+ "chineseTText":"平等院鳳凰ドン vs 鳥獣戯カッ",
+ "chineseTFontType":0,
+ "koreanText":"平等院鳳凰ドン vs 鳥獣戯カッ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_rotspd",
+ "japaneseText":"はやさいたま2000",
+ "englishUsText":"HAYA SAITAMA 2000",
+ "englishUsFontType":3,
+ "frenchText":"HAYA SAITAMA 2000",
+ "frenchFontType":3,
+ "italianText":"HAYA SAITAMA 2000",
+ "italianFontType":3,
+ "germanText":"HAYA SAITAMA 2000",
+ "germanFontType":3,
+ "spanishText":"HAYA SAITAMA 2000",
+ "spanishFontType":3,
+ "chineseTText":"快埼玉2000",
+ "chineseTFontType":1,
+ "koreanText":"HAYA 사이타마 2000",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_rotspd",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_rotspd",
+ "japaneseText":"",
+ "englishUsText":"はやさいたま2000",
+ "englishUsFontType":0,
+ "frenchText":"はやさいたま2000",
+ "frenchFontType":0,
+ "italianText":"はやさいたま2000",
+ "italianFontType":0,
+ "germanText":"はやさいたま2000",
+ "germanFontType":0,
+ "spanishText":"はやさいたま2000",
+ "spanishFontType":0,
+ "chineseTText":"はやさいたま2000",
+ "chineseTFontType":0,
+ "koreanText":"はやさいたま2000",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_psplsb",
+ "japaneseText":"きたさいたま2000",
+ "englishUsText":"KITA SAITAMA 2000",
+ "englishUsFontType":3,
+ "frenchText":"KITA SAITAMA 2000",
+ "frenchFontType":3,
+ "italianText":"KITA SAITAMA 2000",
+ "italianFontType":3,
+ "germanText":"KITA SAITAMA 2000",
+ "germanFontType":3,
+ "spanishText":"KITA SAITAMA 2000",
+ "spanishFontType":3,
+ "chineseTText":"北埼玉2000",
+ "chineseTFontType":1,
+ "koreanText":"KITA 사이타마 2000",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_psplsb",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_psplsb",
+ "japaneseText":"",
+ "englishUsText":"きたさいたま2000",
+ "englishUsFontType":0,
+ "frenchText":"きたさいたま2000",
+ "frenchFontType":0,
+ "italianText":"きたさいたま2000",
+ "italianFontType":0,
+ "germanText":"きたさいたま2000",
+ "germanFontType":0,
+ "spanishText":"きたさいたま2000",
+ "spanishFontType":0,
+ "chineseTText":"きたさいたま2000",
+ "chineseTFontType":0,
+ "koreanText":"きたさいたま2000",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_lsbspd",
+ "japaneseText":"きたさいたま200",
+ "englishUsText":"KITA SAITAMA 200",
+ "englishUsFontType":3,
+ "frenchText":"KITA SAITAMA 200",
+ "frenchFontType":3,
+ "italianText":"KITA SAITAMA 200",
+ "italianFontType":3,
+ "germanText":"KITA SAITAMA 200",
+ "germanFontType":3,
+ "spanishText":"KITA SAITAMA 200",
+ "spanishFontType":3,
+ "chineseTText":"北埼玉200",
+ "chineseTFontType":1,
+ "koreanText":"KITA 사이타마 200",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_lsbspd",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_lsbspd",
+ "japaneseText":"",
+ "englishUsText":"きたさいたま200",
+ "englishUsFontType":0,
+ "frenchText":"きたさいたま200",
+ "frenchFontType":0,
+ "italianText":"きたさいたま200",
+ "italianFontType":0,
+ "germanText":"きたさいたま200",
+ "germanFontType":0,
+ "spanishText":"きたさいたま200",
+ "spanishFontType":0,
+ "chineseTText":"きたさいたま200",
+ "chineseTFontType":0,
+ "koreanText":"きたさいたま200",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_rot3",
+ "japaneseText":"またさいたま2000",
+ "englishUsText":"MATA SAITAMA 2000",
+ "englishUsFontType":3,
+ "frenchText":"MATA SAITAMA 2000",
+ "frenchFontType":3,
+ "italianText":"MATA SAITAMA 2000",
+ "italianFontType":3,
+ "germanText":"MATA SAITAMA 2000",
+ "germanFontType":3,
+ "spanishText":"MATA SAITAMA 2000",
+ "spanishFontType":3,
+ "chineseTText":"又埼玉2000",
+ "chineseTFontType":1,
+ "koreanText":"MATA 사이타마 2000",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_rot3",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_rot3",
+ "japaneseText":"",
+ "englishUsText":"またさいたま2000",
+ "englishUsFontType":0,
+ "frenchText":"またさいたま2000",
+ "frenchFontType":0,
+ "italianText":"またさいたま2000",
+ "italianFontType":0,
+ "germanText":"またさいたま2000",
+ "germanFontType":0,
+ "spanishText":"またさいたま2000",
+ "spanishFontType":0,
+ "chineseTText":"またさいたま2000",
+ "chineseTFontType":0,
+ "koreanText":"またさいたま2000",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_rot4",
+ "japaneseText":"まださいたま2000",
+ "englishUsText":"MADA SAITAMA 2000",
+ "englishUsFontType":3,
+ "frenchText":"MADA SAITAMA 2000",
+ "frenchFontType":3,
+ "italianText":"MADA SAITAMA 2000",
+ "italianFontType":3,
+ "germanText":"MADA SAITAMA 2000",
+ "germanFontType":3,
+ "spanishText":"MADA SAITAMA 2000",
+ "spanishFontType":3,
+ "chineseTText":"還是埼玉2000",
+ "chineseTFontType":1,
+ "koreanText":"MADA 사이타마 2000",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_rot4",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_rot4",
+ "japaneseText":"",
+ "englishUsText":"まださいたま2000",
+ "englishUsFontType":0,
+ "frenchText":"まださいたま2000",
+ "frenchFontType":0,
+ "italianText":"まださいたま2000",
+ "italianFontType":0,
+ "germanText":"まださいたま2000",
+ "germanFontType":0,
+ "spanishText":"まださいたま2000",
+ "spanishFontType":0,
+ "chineseTText":"まださいたま2000",
+ "chineseTFontType":0,
+ "koreanText":"まださいたま2000",
+ "koreanFontType":0
+ },
+ {
+ "key":"shopnews_ssn3rd",
+ "japaneseText":"楽曲「大好きな太鼓の音」配信中",
+ "englishUsText":"\"Favorite Sounds of Taiko\" song now available!",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"樂曲「最喜歡的太鼓鼓聲」發布中",
+ "chineseTFontType":1,
+ "koreanText":"곡 「정말 좋아하는 태고 소리」 배포 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_end",
+ "japaneseText":"終了しました",
+ "englishUsText":"Ended.",
+ "englishUsFontType":3,
+ "frenchText":"Terminé.",
+ "frenchFontType":3,
+ "italianText":"Terminate.",
+ "italianFontType":3,
+ "germanText":" Beendet.",
+ "germanFontType":3,
+ "spanishText":"Expirado.",
+ "spanishFontType":3,
+ "chineseTText":"已結束",
+ "chineseTFontType":1,
+ "koreanText":"종료되었습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5148",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5149",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5150",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5151",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5152",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5153",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5154",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5155",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5156",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5157",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5158",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5159",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5160",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5161",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5162",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5163",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5164",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5165",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5166",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5167",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5168",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5169",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5170",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5171",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5172",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5173",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5174",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5175",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5176",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5177",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5178",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5179",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5180",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5181",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5182",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5183",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5184",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5185",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5186",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5187",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5188",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5189",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5190",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5191",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5192",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5193",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5194",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5195",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5196",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5197",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5198",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5199",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5200",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5201",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5202",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5203",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5204",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5205",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5206",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5207",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5208",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5209",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5210",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5211",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5212",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5213",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5214",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5215",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5216",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5217",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5218",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5219",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5220",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5221",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5222",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5223",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5224",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5225",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5226",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5227",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5228",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5229",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5230",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5231",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5232",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5233",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5234",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5235",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5236",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5237",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5238",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5239",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5240",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5241",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5242",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5243",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5244",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5245",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5246",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5247",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5248",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5249",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5250",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5251",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5252",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5253",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5254",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5255",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5256",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5257",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5258",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5259",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5260",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5261",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5262",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5263",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5264",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5265",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5266",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5267",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5268",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5269",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5270",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5271",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5272",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5273",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5274",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5275",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5276",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5277",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5278",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5279",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5280",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5281",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5282",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5283",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test5284",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ }
+]}
diff --git a/TaikoSongConversionTool/data/_console/ORBIS/datatableint/wordlist.json b/TaikoSongConversionTool/data/_console/ORBIS/datatableint/wordlist.json
new file mode 100644
index 0000000..18f96e2
--- /dev/null
+++ b/TaikoSongConversionTool/data/_console/ORBIS/datatableint/wordlist.json
@@ -0,0 +1,65690 @@
+{"items":[
+ {
+ "key":"dlc_body",
+ "englishUsText":"Outfit",
+ "englishUsFontType":1,
+ "frenchText":"Tenue",
+ "frenchFontType":1,
+ "italianText":"Completo",
+ "italianFontType":1,
+ "germanText":"Outfit",
+ "germanFontType":1,
+ "spanishText":"Atuendo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Atuendo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Traje",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"dlc_head",
+ "englishUsText":"Hat",
+ "englishUsFontType":1,
+ "frenchText":"Chapeau",
+ "frenchFontType":1,
+ "italianText":"Copricapo",
+ "italianFontType":1,
+ "germanText":"Hut",
+ "germanFontType":1,
+ "spanishText":"Sombrero",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sombrero",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Chapéu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"dlc_kigurumi",
+ "englishUsText":"Costume",
+ "englishUsFontType":1,
+ "frenchText":"Costume",
+ "frenchFontType":1,
+ "italianText":"Costume",
+ "italianFontType":1,
+ "germanText":"Kostüm",
+ "germanFontType":1,
+ "spanishText":"Traje",
+ "spanishFontType":1,
+ "neutralSpanishText":"Traje",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Fantasia",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"dlc_make",
+ "englishUsText":"Face Paint",
+ "englishUsFontType":1,
+ "frenchText":"Maquillage",
+ "frenchFontType":1,
+ "italianText":"Pittura facciale",
+ "italianFontType":1,
+ "germanText":"Gesichtsbemalung",
+ "germanFontType":1,
+ "spanishText":"Pintura facial",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pintura facial",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pintura facial",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"dlc_petit",
+ "englishUsText":"Mini Character",
+ "englishUsFontType":1,
+ "frenchText":"Mini personnage",
+ "frenchFontType":1,
+ "italianText":"Mini-personaggio",
+ "italianFontType":1,
+ "germanText":"Mini-Charakter",
+ "germanFontType":1,
+ "spanishText":"Minipersonaje",
+ "spanishFontType":1,
+ "neutralSpanishText":"Minipersonaje",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Personagem mini",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"dlc_song",
+ "englishUsText":"Song",
+ "englishUsFontType":1,
+ "frenchText":"Chanson",
+ "frenchFontType":1,
+ "italianText":"Canzone",
+ "italianFontType":1,
+ "germanText":"Song",
+ "germanFontType":1,
+ "spanishText":"Canción",
+ "spanishFontType":1,
+ "neutralSpanishText":"Canción",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Música",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"dlc_intrument",
+ "englishUsText":"Instrument",
+ "englishUsFontType":1,
+ "frenchText":"Instrument",
+ "frenchFontType":1,
+ "italianText":"Strumento",
+ "italianFontType":1,
+ "germanText":"Instrument",
+ "germanFontType":1,
+ "spanishText":"Instrumento",
+ "spanishFontType":1,
+ "neutralSpanishText":"Instrumento",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Instrumento",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"npc_mikuse",
+ "englishUsText":"HATSUNE MIKU",
+ "englishUsFontType":1,
+ "frenchText":"HATSUNE MIKU",
+ "frenchFontType":1,
+ "italianText":"HATSUNE MIKU",
+ "italianFontType":1,
+ "germanText":"HATSUNE MIKU",
+ "germanFontType":1,
+ "spanishText":"HATSUNE MIKU",
+ "spanishFontType":1,
+ "neutralSpanishText":"HATSUNE MIKU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HATSUNE MIKU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"npc_miku",
+ "englishUsText":"HATSUNE MIKU",
+ "englishUsFontType":1,
+ "frenchText":"HATSUNE MIKU",
+ "frenchFontType":1,
+ "italianText":"HATSUNE MIKU",
+ "italianFontType":1,
+ "germanText":"HATSUNE MIKU",
+ "germanFontType":1,
+ "spanishText":"HATSUNE MIKU",
+ "spanishFontType":1,
+ "neutralSpanishText":"HATSUNE MIKU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HATSUNE MIKU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"npc_dora",
+ "englishUsText":"DORAEMON",
+ "englishUsFontType":1,
+ "frenchText":"DORAEMON",
+ "frenchFontType":1,
+ "italianText":"DORAEMON",
+ "italianFontType":1,
+ "germanText":"DORAEMON",
+ "germanFontType":1,
+ "spanishText":"DORAEMON",
+ "spanishFontType":1,
+ "neutralSpanishText":"DORAEMON",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DORAEMON",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"npc_pacman",
+ "englishUsText":"PAC-MAN",
+ "englishUsFontType":1,
+ "frenchText":"PAC-MAN",
+ "frenchFontType":1,
+ "italianText":"PAC-MAN",
+ "italianFontType":1,
+ "germanText":"PAC-MAN",
+ "germanFontType":1,
+ "spanishText":"PAC-MAN",
+ "spanishFontType":1,
+ "neutralSpanishText":"PAC-MAN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"PAC-MAN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"npc_kitty",
+ "englishUsText":"HELLO KITTY",
+ "englishUsFontType":1,
+ "frenchText":"HELLO KITTY",
+ "frenchFontType":1,
+ "italianText":"HELLO KITTY",
+ "italianFontType":1,
+ "germanText":"HELLO KITTY",
+ "germanFontType":1,
+ "spanishText":"HELLO KITTY",
+ "spanishFontType":1,
+ "neutralSpanishText":"HELLO KITTY",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HELLO KITTY",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"npc_tkhei8",
+ "englishUsText":"HEIHACHI",
+ "englishUsFontType":1,
+ "frenchText":"HEIHACHI",
+ "frenchFontType":1,
+ "italianText":"HEIHACHI",
+ "italianFontType":1,
+ "germanText":"HEIHACHI",
+ "germanFontType":1,
+ "spanishText":"HEIHACHI",
+ "spanishFontType":1,
+ "neutralSpanishText":"HEIHACHI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HEIHACHI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha002",
+ "englishUsText":"You can do this!",
+ "englishUsFontType":1,
+ "frenchText":"Tu peux le faire !",
+ "frenchFontType":1,
+ "italianText":"Puoi farcela!",
+ "italianFontType":1,
+ "germanText":"Du schaffst es!",
+ "germanFontType":1,
+ "spanishText":"¡Puedes hacerlo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Puedes hacerlo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Você consegue!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha003",
+ "englishUsText":"Arigateau chocolat!",
+ "englishUsFontType":1,
+ "frenchText":"Arigâteau chocolat !",
+ "frenchFontType":1,
+ "italianText":"Arigateau di cioccolato!",
+ "italianFontType":1,
+ "germanText":"Arigateau chocolat!",
+ "germanFontType":1,
+ "spanishText":"¡Arigato, bombón!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Arigato, chocolate!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Arigateau chocolat!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha005",
+ "englishUsText":"Thanks a bunch!",
+ "englishUsFontType":1,
+ "frenchText":"Merci beaucoup !",
+ "frenchFontType":1,
+ "italianText":"Grazie mille!",
+ "italianFontType":1,
+ "germanText":"Vielen Dank!",
+ "germanFontType":1,
+ "spanishText":"¡Muchísimas gracias!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Muchísimas gracias!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Valeu mesmo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha006",
+ "englishUsText":"Looking good!",
+ "englishUsFontType":1,
+ "frenchText":"C'est bien parti !",
+ "frenchFontType":1,
+ "italianText":"Ottimo!",
+ "italianFontType":1,
+ "germanText":"Sieht gut aus!",
+ "germanFontType":1,
+ "spanishText":"¡Qué buen aspecto!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Qué bien se ve!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tá indo bem!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha007",
+ "englishUsText":"Nice!",
+ "englishUsFontType":1,
+ "frenchText":"Joli !",
+ "frenchFontType":1,
+ "italianText":"Wow!",
+ "italianFontType":1,
+ "germanText":"Prima!",
+ "germanFontType":1,
+ "spanishText":"¡Genial!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Genial!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Boa!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha008",
+ "englishUsText":"Good game!",
+ "englishUsFontType":1,
+ "frenchText":"Bien joué !",
+ "frenchFontType":1,
+ "italianText":"Ben fatto!",
+ "italianFontType":1,
+ "germanText":"Nettes Spiel!",
+ "germanFontType":1,
+ "spanishText":"¡Buena partida!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Buena partida!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bom jogo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha009",
+ "englishUsText":"Hurray!",
+ "englishUsFontType":1,
+ "frenchText":"Hourra !",
+ "frenchFontType":1,
+ "italianText":"Urrà!",
+ "italianFontType":1,
+ "germanText":"Hurra!",
+ "germanFontType":1,
+ "spanishText":"¡Hurra!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Hurra!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Viva!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha010",
+ "englishUsText":"This one is mine!",
+ "englishUsFontType":1,
+ "frenchText":"C'est pour moi !",
+ "frenchFontType":1,
+ "italianText":"Questa è mia!",
+ "italianFontType":1,
+ "germanText":"Der gehört mir!",
+ "germanFontType":1,
+ "spanishText":"¡Ganaré!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Ganaré!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Este é meu!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha011",
+ "englishUsText":"Welcome!",
+ "englishUsFontType":1,
+ "frenchText":"Bienvenue !",
+ "frenchFontType":1,
+ "italianText":"Benvenuto!",
+ "italianFontType":1,
+ "germanText":"Willkommen!",
+ "germanFontType":1,
+ "spanishText":"¡Te doy la bienvenida!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Te doy la bienvenida!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Boas-vindas!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha013",
+ "englishUsText":"Way to glow!",
+ "englishUsFontType":1,
+ "frenchText":"Pas mal du tout !",
+ "frenchFontType":1,
+ "italianText":"Così si fa!",
+ "italianFontType":1,
+ "germanText":"Schön geleuchtet!",
+ "germanFontType":1,
+ "spanishText":"¡Qué manera de brillar!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Qué manera de brillar!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ManDON bem!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha014",
+ "englishUsText":"Good work!",
+ "englishUsFontType":1,
+ "frenchText":"Beau travail !",
+ "frenchFontType":1,
+ "italianText":"Ottimo lavoro!",
+ "italianFontType":1,
+ "germanText":"Gute Arbeit!",
+ "germanFontType":1,
+ "spanishText":"¡Bien hecho!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Bien hecho!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bom trabalho!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha015",
+ "englishUsText":"Morning!",
+ "englishUsFontType":1,
+ "frenchText":"Bonjour !",
+ "frenchFontType":1,
+ "italianText":"Ciao!",
+ "italianFontType":1,
+ "germanText":"Guten Morgen!",
+ "germanFontType":1,
+ "spanishText":"¡Buenas!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Buen día!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bom dia!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha016",
+ "englishUsText":"Awesome!",
+ "englishUsFontType":1,
+ "frenchText":"Génial !",
+ "frenchFontType":1,
+ "italianText":"Fantastico!",
+ "italianFontType":1,
+ "germanText":"Wahnsinn!",
+ "germanFontType":1,
+ "spanishText":"¡Impresionante!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Impresionante!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Demais!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha017",
+ "englishUsText":"Go easy on me!",
+ "englishUsFontType":1,
+ "frenchText":"Vas-y doucement !",
+ "frenchFontType":1,
+ "italianText":"Vacci piano!",
+ "italianFontType":1,
+ "germanText":"Sei nett zu mir!",
+ "germanFontType":1,
+ "spanishText":"¡No te pases conmigo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡No te pases conmigo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Seja gentil comigo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha019",
+ "englishUsText":"How’s it going?",
+ "englishUsFontType":1,
+ "frenchText":"Ça roule ?",
+ "frenchFontType":1,
+ "italianText":"Come stai?",
+ "italianFontType":1,
+ "germanText":"Wie läuft's so?",
+ "germanFontType":1,
+ "spanishText":"¿Qué tal?",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Qué tal?",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Como tem andado?",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha020",
+ "englishUsText":"‘Sup.",
+ "englishUsFontType":1,
+ "frenchText":"Salut.",
+ "frenchFontType":1,
+ "italianText":"Ehi.",
+ "italianFontType":1,
+ "germanText":"Was geht?",
+ "germanFontType":1,
+ "spanishText":"¿Qué hay?",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Qué hay?",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"E aí?",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha022",
+ "englishUsText":"Nice drum roll!",
+ "englishUsFontType":1,
+ "frenchText":"Joli roulement !",
+ "frenchFontType":1,
+ "italianText":"Bel rullo!",
+ "italianFontType":1,
+ "germanText":"Netter Trommelwirbel!",
+ "germanFontType":1,
+ "spanishText":"¡Buen redoble!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Buen redoble!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Belo rufar de tambores!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha023",
+ "englishUsText":"Bye now!",
+ "englishUsFontType":1,
+ "frenchText":"Je dois filer !",
+ "frenchFontType":1,
+ "italianText":"Ci vediamo!",
+ "italianFontType":1,
+ "germanText":"Bis dann!",
+ "germanFontType":1,
+ "spanishText":"¡Adiós por ahora!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Adiós por ahora!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tchauzinho!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha024",
+ "englishUsText":"Fantastic!",
+ "englishUsFontType":1,
+ "frenchText":"Fantastique !",
+ "frenchFontType":1,
+ "italianText":"Fantastico!",
+ "italianFontType":1,
+ "germanText":"Fantastisch!",
+ "germanFontType":1,
+ "spanishText":"¡Fantástico!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Fantástico!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Fantástico!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha025",
+ "englishUsText":"Go for a full combo!",
+ "englishUsFontType":1,
+ "frenchText":"Fais un combo max !",
+ "frenchFontType":1,
+ "italianText":"Prova la combo completa!",
+ "italianFontType":1,
+ "germanText":"Los, die ganze Kombo!",
+ "germanFontType":1,
+ "spanishText":"¡A por el combo completo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ve por el combo completo.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tente um combo completo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha026",
+ "englishUsText":"Let’s do this!",
+ "englishUsFontType":1,
+ "frenchText":"C'est parti !",
+ "frenchFontType":1,
+ "italianText":"Cominciamo!",
+ "italianFontType":1,
+ "germanText":"Ziehen wir's durch!",
+ "germanFontType":1,
+ "spanishText":"¡Hagámoslo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Hagámoslo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vamos em frente!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha027",
+ "englishUsText":"Until next time!",
+ "englishUsFontType":1,
+ "frenchText":"À la prochaine !",
+ "frenchFontType":1,
+ "italianText":"Alla prossima!",
+ "italianFontType":1,
+ "germanText":"Bis zum nächsten Mal!",
+ "germanFontType":1,
+ "spanishText":"¡Hasta la próxima!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Hasta la próxima!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Até a próxima!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha028",
+ "englishUsText":"See you later!",
+ "englishUsFontType":1,
+ "frenchText":"À plus tard !",
+ "frenchFontType":1,
+ "italianText":"Ci si rivede!",
+ "italianFontType":1,
+ "germanText":"Wir sehen uns!",
+ "germanFontType":1,
+ "spanishText":"¡Nos vemos luego!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Nos vemos después!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Te vejo depois!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha030",
+ "englishUsText":"Way to go!",
+ "englishUsFontType":1,
+ "frenchText":"Pas mal !",
+ "frenchFontType":1,
+ "italianText":"Grande!",
+ "italianFontType":1,
+ "germanText":"Gut gemacht!",
+ "germanFontType":1,
+ "spanishText":"¡Tú sí que sabes!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Tú sí sabes!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mandou bem!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha033",
+ "englishUsText":"Let’s play together!",
+ "englishUsFontType":1,
+ "frenchText":"Jouons ensemble !",
+ "frenchFontType":1,
+ "italianText":"Giochiamo insieme!",
+ "italianFontType":1,
+ "germanText":"Spielen wir zusammen!",
+ "germanFontType":1,
+ "spanishText":"¡Toquemos tú y yo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Toquemos tú y yo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vamos jogar juntos!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha035",
+ "englishUsText":"Stay on your toes.",
+ "englishUsFontType":1,
+ "frenchText":"Concentre-toi bien.",
+ "frenchFontType":1,
+ "italianText":"Stai in campana.",
+ "italianFontType":1,
+ "germanText":"Pass auf.",
+ "germanFontType":1,
+ "spanishText":"No bajes la guardia.",
+ "spanishFontType":1,
+ "neutralSpanishText":"No bajes la guardia.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Fique alerta.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha036",
+ "englishUsText":"Piece of cake!",
+ "englishUsFontType":1,
+ "frenchText":"Trop facile !",
+ "frenchFontType":1,
+ "italianText":"Una passeggiata!",
+ "italianFontType":1,
+ "germanText":"Das ist doch leicht!",
+ "germanFontType":1,
+ "spanishText":"¡Está chupado!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Es facilísimo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Moleza!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha037",
+ "englishUsText":"Looking good!",
+ "englishUsFontType":1,
+ "frenchText":"C'est bien parti !",
+ "frenchFontType":1,
+ "italianText":"Ottimo!",
+ "italianFontType":1,
+ "germanText":"Sieht gut aus!",
+ "germanFontType":1,
+ "spanishText":"¡Qué buen aspecto!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Qué bien se ve!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tá indo bem!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha040",
+ "englishUsText":"Trick or treat!",
+ "englishUsFontType":1,
+ "frenchText":"Des bonbons ou un sort !",
+ "frenchFontType":1,
+ "italianText":"Dolcetto o scherzetto!",
+ "italianFontType":1,
+ "germanText":"Süßes oder Saures!",
+ "germanFontType":1,
+ "spanishText":"¿Truco o trato?",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Truco o trato?",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Doce ou travessura!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha043",
+ "englishUsText":"Don’t give up!",
+ "englishUsFontType":1,
+ "frenchText":"N'abandonne pas !",
+ "frenchFontType":1,
+ "italianText":"Non arrenderti!",
+ "italianFontType":1,
+ "germanText":"Gib nicht auf!",
+ "germanFontType":1,
+ "spanishText":"¡No te rindas!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡No te rindas!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Não desista!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha044",
+ "englishUsText":"Hang in there!",
+ "englishUsFontType":1,
+ "frenchText":"Tiens bon !",
+ "frenchFontType":1,
+ "italianText":"Resisti!",
+ "italianFontType":1,
+ "germanText":"Halt durch!",
+ "germanFontType":1,
+ "spanishText":"¡Resiste!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Resiste!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Aguente aí!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha046",
+ "englishUsText":"Just invest in me!",
+ "englishUsFontType":1,
+ "frenchText":"Crois en moi !",
+ "frenchFontType":1,
+ "italianText":"Investi in me!",
+ "italianFontType":1,
+ "germanText":"Glaub an mich!",
+ "germanFontType":1,
+ "spanishText":"¡Cree en mí!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Tú invierte en mí!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Invista em mim!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha047",
+ "englishUsText":"Yeah, I’m pretty good♥",
+ "englishUsFontType":1,
+ "frenchText":"Ouais, je suis doué(e) ♥",
+ "frenchFontType":1,
+ "italianText":"Sì, me la cavo ♥",
+ "italianFontType":1,
+ "germanText":"Ja, ich bin echt gut♥",
+ "germanFontType":1,
+ "spanishText":"Sí, se me da bien.♥",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sí, se me da bien.♥",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"É, sou excelente♥",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha048",
+ "englishUsText":"You’re good!",
+ "englishUsFontType":1,
+ "frenchText":"Tu te débrouilles bien !",
+ "frenchFontType":1,
+ "italianText":"Sei forte!",
+ "italianFontType":1,
+ "germanText":"Du bist gut!",
+ "germanFontType":1,
+ "spanishText":"¡Lo haces bien!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Lo haces bien!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Você é excelente!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha049",
+ "englishUsText":"C’mon c’mon c’mon!",
+ "englishUsFontType":1,
+ "frenchText":"Allez allez allez !",
+ "frenchFontType":1,
+ "italianText":"Forza, forza, forza!",
+ "italianFontType":1,
+ "germanText":"Komm schon, komm schon!",
+ "germanFontType":1,
+ "spanishText":"¡Vamos, venga, vamos!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Vamos, vamos, vamos!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vamos, vamos, vamos!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha050",
+ "englishUsText":"We fight alongside our drums!",
+ "englishUsFontType":1,
+ "frenchText":"Combat de tambours !",
+ "frenchFontType":1,
+ "italianText":"Battaglia di tamburi!",
+ "italianFontType":1,
+ "germanText":"Unsere Trommeln sind alles!",
+ "germanFontType":1,
+ "spanishText":"¡Luchamos con tambores!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Luchamos con tambores!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Lutemos com tambores!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha051",
+ "englishUsText":"Here comes the real fun!",
+ "englishUsFontType":1,
+ "frenchText":"C'est là que c'est fun !",
+ "frenchFontType":1,
+ "italianText":"Adesso ci divertiamo!",
+ "italianFontType":1,
+ "germanText":"Jetzt geht der Spaß los!",
+ "germanFontType":1,
+ "spanishText":"¡Ya viene lo divertido!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Aquí viene lo divertido!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Agora vai ser divertido!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha052",
+ "englishUsText":"I’m feeling sad.",
+ "englishUsFontType":1,
+ "frenchText":"Je me sens triste.",
+ "frenchFontType":1,
+ "italianText":"Sono triste...",
+ "italianFontType":1,
+ "germanText":"Ich bin traurig.",
+ "germanFontType":1,
+ "spanishText":"Estoy triste.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Estoy triste.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Estou triste.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha054",
+ "englishUsText":"Please go easy on me!",
+ "englishUsFontType":1,
+ "frenchText":"Vas-y mollo, je débute !",
+ "frenchFontType":1,
+ "italianText":"Vacci piano, per favore!",
+ "italianFontType":1,
+ "germanText":"Sei bitte nett zu mir!",
+ "germanFontType":1,
+ "spanishText":"¡No me machaques mucho!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Por favor, trátame bien!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Só seja gentil comigo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha055",
+ "englishUsText":"This match is mine!",
+ "englishUsFontType":1,
+ "frenchText":"Ce match est à moi !",
+ "frenchFontType":1,
+ "italianText":"Questa la vinco io!",
+ "italianFontType":1,
+ "germanText":"Die Partie gehört mir!",
+ "germanFontType":1,
+ "spanishText":"¡Esta partida es mía!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Esta partida es mía.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Essa eu vou ganhar!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha056",
+ "englishUsText":"No regrets for this match!",
+ "englishUsFontType":1,
+ "frenchText":"Aucun regret !",
+ "frenchFontType":1,
+ "italianText":"Diamo il massimo!",
+ "italianFontType":1,
+ "germanText":"Ich bereue nichts!",
+ "germanFontType":1,
+ "spanishText":"¡Pienso ir a por todas!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Pienso ir por todo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Não vou me arrepender!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha057",
+ "englishUsText":"This is just fine!",
+ "englishUsFontType":1,
+ "frenchText":"C'est nickel !",
+ "frenchFontType":1,
+ "italianText":"Bene così.",
+ "italianFontType":1,
+ "germanText":"Das ist in Ordnung!",
+ "germanFontType":1,
+ "spanishText":"¡Lo estás haciendo bien!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Lo estás haciendo bien!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Assim está ótimo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha059",
+ "englishUsText":"It’s showtime!",
+ "englishUsFontType":1,
+ "frenchText":"C'est l'heure du show !",
+ "frenchFontType":1,
+ "italianText":"Si balla!",
+ "italianFontType":1,
+ "germanText":"Showtime!",
+ "germanFontType":1,
+ "spanishText":"¡Empieza el espectáculo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Empieza el espectáculo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"É hora do show!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha061",
+ "englishUsText":"Hi there! It’s me!",
+ "englishUsFontType":1,
+ "frenchText":"Salut ! C'est moi !",
+ "frenchFontType":1,
+ "italianText":"Ehilà, sono io!",
+ "italianFontType":1,
+ "germanText":"Hallo! Ich bin's!",
+ "germanFontType":1,
+ "spanishText":"¡Hola, soy yo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hola, soy yo.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Olá! Sou eu!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha063",
+ "englishUsText":"Think you can handle this?!",
+ "englishUsFontType":1,
+ "frenchText":"Tu penses réussir ?!",
+ "frenchFontType":1,
+ "italianText":"Credi di farcela?",
+ "italianFontType":1,
+ "germanText":"Dachtest, du schaffst das?!",
+ "germanFontType":1,
+ "spanishText":"¿Crees que podrás?",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Crees que podrás?",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Acha que dá conta disso?",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha064",
+ "englishUsText":"I’ve got too many rivals!",
+ "englishUsFontType":1,
+ "frenchText":"J'ai trop de rivaux !",
+ "frenchFontType":1,
+ "italianText":"Ho troppi rivali!",
+ "italianFontType":1,
+ "germanText":"Ich hab zu viele Rivalen!",
+ "germanFontType":1,
+ "spanishText":"¡Demasiados rivales!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Demasiados rivales!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tenho rivais demais!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha065",
+ "englishUsText":"Well well, nicely done.",
+ "englishUsFontType":1,
+ "frenchText":"Hé hé, bien joué.",
+ "frenchFontType":1,
+ "italianText":"Bene, ottimo lavoro.",
+ "italianFontType":1,
+ "germanText":"Hey, gut gemacht.",
+ "germanFontType":1,
+ "spanishText":"Bien, muy bien hecho.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Bien, muy bien hecho.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ora, ora, bom trabalho.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha066",
+ "englishUsText":"Woah, impressive.",
+ "englishUsFontType":1,
+ "frenchText":"Wow, impressionnant.",
+ "frenchFontType":1,
+ "italianText":"Woah, impressionante.",
+ "italianFontType":1,
+ "germanText":"Wow, beeindruckend.",
+ "germanFontType":1,
+ "spanishText":"Caramba, impresionante.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Caramba, impresionante.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Nossa, impressionante.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha067",
+ "englishUsText":"No way!",
+ "englishUsFontType":1,
+ "frenchText":"Pas possible !",
+ "frenchFontType":1,
+ "italianText":"Pazzesco!",
+ "italianFontType":1,
+ "germanText":"Vergiss es!",
+ "germanFontType":1,
+ "spanishText":"¡Ni hablar!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Ni hablar!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Não creio!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha068",
+ "englishUsText":"This song is still pretty easy.",
+ "englishUsFontType":1,
+ "frenchText":"Facile, cette chanson.",
+ "frenchFontType":1,
+ "italianText":"Questa canzone è facile.",
+ "italianFontType":1,
+ "germanText":"Der Song ist ziemlich leicht.",
+ "germanFontType":1,
+ "spanishText":"Esta no será fácil.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Esta no será fácil.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Essa música é fácil.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha069",
+ "englishUsText":"Wanna go again?",
+ "englishUsFontType":1,
+ "frenchText":"Tu veux recommencer ?",
+ "frenchFontType":1,
+ "italianText":"Vuoi riprovare?",
+ "italianFontType":1,
+ "germanText":"Willst du noch mal?",
+ "germanFontType":1,
+ "spanishText":"¿Probamos de nuevo?",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Lo intentamos de nuevo?",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vamos de novo?",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha070",
+ "englishUsText":"Go for it!",
+ "englishUsFontType":1,
+ "frenchText":"Vas-y !",
+ "frenchFontType":1,
+ "italianText":"Dacci dentro!",
+ "italianFontType":1,
+ "germanText":"Dann los!",
+ "germanFontType":1,
+ "spanishText":"¡Vamos allá!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Allá vamos!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vai lá!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha073",
+ "englishUsText":"Join me for a song!",
+ "englishUsFontType":1,
+ "frenchText":"Fais un titre avec moi !",
+ "frenchFontType":1,
+ "italianText":"Unisciti a me!",
+ "italianFontType":1,
+ "germanText":"Ha, singen wir zusammen!",
+ "germanFontType":1,
+ "spanishText":"¡Toca una conmigo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Toca una conmigo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Faça um dueto comigo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha077",
+ "englishUsText":"You’re the best!",
+ "englishUsFontType":1,
+ "frenchText":"Tu es au top !",
+ "frenchFontType":1,
+ "italianText":"Sei troppo forte!",
+ "italianFontType":1,
+ "germanText":"Du bist der Beste!",
+ "germanFontType":1,
+ "spanishText":"¡Eres insuperable!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Eres insuperable!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Você é o melhor!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha078",
+ "englishUsText":"Just as I planned!",
+ "englishUsFontType":1,
+ "frenchText":"Comme je l'avais prévu !",
+ "frenchFontType":1,
+ "italianText":"Come pensavo!",
+ "italianFontType":1,
+ "germanText":"Genau wie geplant!",
+ "germanFontType":1,
+ "spanishText":"¡Justo como planeaba!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Justo como planeaba.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conforme o planejado!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha080",
+ "englishUsText":"Childish on the outside AND on the inside!",
+ "englishUsFontType":1,
+ "frenchText":"Puéril à l'extérieur ET à l'intérieur !",
+ "frenchFontType":1,
+ "italianText":"Infantile fuori E dentro!",
+ "italianFontType":1,
+ "germanText":"Kindisch - äußerlich und im Geiste!",
+ "germanFontType":1,
+ "spanishText":"¡Infantil por fuera y por dentro!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Infantil por fuera y por dentro!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tenho criança exterior E interior!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha081",
+ "englishUsText":"Time to go on the attack!",
+ "englishUsFontType":1,
+ "frenchText":"Je passe à l'attaque !",
+ "frenchFontType":1,
+ "italianText":"È l'ora di andare all'attacco!",
+ "italianFontType":1,
+ "germanText":"Zeit, anzugreifen!",
+ "germanFontType":1,
+ "spanishText":"¡Hora de seguir atacando!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Tiempo de seguir atacando!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"É hora de atacar!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha082",
+ "englishUsText":"Starting things off with a bang!",
+ "englishUsFontType":1,
+ "frenchText":"On commence à fond !",
+ "frenchFontType":1,
+ "italianText":"Cominciamo col botto!",
+ "italianFontType":1,
+ "germanText":"Fangen wir mit einem Knaller an!",
+ "germanFontType":1,
+ "spanishText":"¡Empecemos con una explosión!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Empecemos con una explosión!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Começando com um estouro!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha084",
+ "englishUsText":"Too easy!",
+ "englishUsFontType":1,
+ "frenchText":"Vraiment trop facile !",
+ "frenchFontType":1,
+ "italianText":"Troppo facile!",
+ "italianFontType":1,
+ "germanText":"Das war zu einfach!",
+ "germanFontType":1,
+ "spanishText":"¡Demasiado fácil!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Demasiado fácil!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Fácil demais!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha086",
+ "englishUsText":"The drums taught me everything.",
+ "englishUsFontType":1,
+ "frenchText":"Les tambours m'ont tout appris.",
+ "frenchFontType":1,
+ "italianText":"Il tamburo è il mio maestro.",
+ "italianFontType":1,
+ "germanText":"Die Trommeln sind meine Lehrer.",
+ "germanFontType":1,
+ "spanishText":"Los tambores son mis maestros.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Los tambores son mis maestros.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Os tambores me ensinaram tudo.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha087",
+ "englishUsText":"The drums are your friend! Don't be scared!",
+ "englishUsFontType":1,
+ "frenchText":"Les tambours sont tes amis. N'aie pas peur !",
+ "frenchFontType":1,
+ "italianText":"Il tamburo è tuo amico! Non aver paura!",
+ "italianFontType":1,
+ "germanText":"Die Trommeln sind Freunde! Keine Angst!",
+ "germanFontType":1,
+ "spanishText":"¡Los tambores son tus amigos! ¡No te asustes!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Los tambores son tus amigos! ¡No te asustes!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Os tambores são amigos! Não se assuste!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha088",
+ "englishUsText":"No retreat! No backing down! No looking back!",
+ "englishUsFontType":1,
+ "frenchText":"On ne recule pas !",
+ "frenchFontType":1,
+ "italianText":"Non si fanno prigionieri!",
+ "italianFontType":1,
+ "germanText":"Kein Zurück! Es geht immer nur weiter!",
+ "germanFontType":1,
+ "spanishText":"¡Nada de retirarse, retroceder o mirar atrás!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Nada de retirarse, retroceder o mirar atrás!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Não recuar! Não desistir! Não hesitar!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha089",
+ "englishUsText":"The skies call, the earth calls, the drums call!",
+ "englishUsFontType":1,
+ "frenchText":"Les cieux, la terre et les tambours résonnent !",
+ "frenchFontType":1,
+ "italianText":"Cielo e terra ti chiamano, il tamburo ti chiama!",
+ "italianFontType":1,
+ "germanText":"Himmel, Erde und Trommeln rufen!",
+ "germanFontType":1,
+ "spanishText":"¡Los cielos, la tierra y los tambores nos llaman!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Los tambores nos llaman!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"O céu, a terra e os tambores me chamam!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha090",
+ "englishUsText":"Are you a prodigy?",
+ "englishUsFontType":1,
+ "frenchText":"Serais-tu un prodige ?",
+ "frenchFontType":1,
+ "italianText":"Sei un fenomeno?",
+ "italianFontType":1,
+ "germanText":"Bist du ein Wunderkind?",
+ "germanFontType":1,
+ "spanishText":"¿Eres un prodigio?",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Eres un prodigio?",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Você é genial?",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha091",
+ "englishUsText":"Taking the easy way out?",
+ "englishUsFontType":1,
+ "frenchText":"Tu fuis, c'est ça ?",
+ "frenchFontType":1,
+ "italianText":"Ti arrendi così?",
+ "italianFontType":1,
+ "germanText":"Du machst es dir leicht?",
+ "germanFontType":1,
+ "spanishText":"Una salida fácil, ¿eh?",
+ "spanishFontType":1,
+ "neutralSpanishText":"Una salida fácil, ¿eh?",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Desistindo fácil assim?",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha092",
+ "englishUsText":"Even failure has value if it’s earnest.",
+ "englishUsFontType":1,
+ "frenchText":"L'échec reste utile.",
+ "frenchFontType":1,
+ "italianText":"L'importante è impegnarsi.",
+ "italianFontType":1,
+ "germanText":"Auch aus Fehlern kann man lernen.",
+ "germanFontType":1,
+ "spanishText":"De los fallos se aprende.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Del fracaso se aprende.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"A derrota é valiosa quando é honrada.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha093",
+ "englishUsText":"You’re done for!",
+ "englishUsFontType":1,
+ "frenchText":"C'en est fini de toi !",
+ "frenchFontType":1,
+ "italianText":"Non vincerai mai!",
+ "italianFontType":1,
+ "germanText":"Du bist erledigt!",
+ "germanFontType":1,
+ "spanishText":"¡Eres historia!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Eres historia!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Você já era!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha094",
+ "englishUsText":"I have no excuse!",
+ "englishUsFontType":1,
+ "frenchText":"Je n'ai aucune excuse !",
+ "frenchFontType":1,
+ "italianText":"Non ho giustificazioni...",
+ "italianFontType":1,
+ "germanText":"Das ist meine Schuld!",
+ "germanFontType":1,
+ "spanishText":"¡No tengo excusa!",
+ "spanishFontType":1,
+ "neutralSpanishText":"No tengo excusa.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Não tenho desculpas!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha095",
+ "englishUsText":"You don’t wanna miss this!",
+ "englishUsFontType":1,
+ "frenchText":"Ne rate pas ça !",
+ "frenchFontType":1,
+ "italianText":"Su! Non puoi mancare!",
+ "italianFontType":1,
+ "germanText":"Verpass das nicht!",
+ "germanFontType":1,
+ "spanishText":"¡No te pierdas esto!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡No te pierdas esto!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Não perca isso!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha062",
+ "englishUsText":"As if!",
+ "englishUsFontType":1,
+ "frenchText":"Ça risque pas !",
+ "frenchFontType":1,
+ "italianText":"Tsé. Come se!...",
+ "italianFontType":1,
+ "germanText":"Als ob!",
+ "germanFontType":1,
+ "spanishText":"¡Sí, claro!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Sí, claro!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ah, tá!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha076",
+ "englishUsText":"Nothing but perfects!",
+ "englishUsFontType":1,
+ "frenchText":"Rien que des parfaits !",
+ "frenchFontType":1,
+ "italianText":"Solo la perfezione!",
+ "italianFontType":1,
+ "germanText":"Alles perfekt!",
+ "germanFontType":1,
+ "spanishText":"¡Ha sido perfecto!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Ha sido perfecto!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Perfeição pura!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha079",
+ "englishUsText":"Time to settle this!",
+ "englishUsFontType":1,
+ "frenchText":"Réglons ça maintenant !",
+ "frenchFontType":1,
+ "italianText":"Ti sfido!",
+ "italianFontType":1,
+ "germanText":"Bringen wir das zu Ende!",
+ "germanFontType":1,
+ "spanishText":"¡Es hora de zanjar esto!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Hora de resolver esto!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vamos acertar as contas!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha072",
+ "englishUsText":"Let’s party!",
+ "englishUsFontType":1,
+ "frenchText":"Faisons la fête !",
+ "frenchFontType":1,
+ "italianText":"Divertiamoci!",
+ "italianFontType":1,
+ "germanText":"Machen wir Party!",
+ "germanFontType":1,
+ "spanishText":"¡Qué empiece la fiesta!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Que empiece la fiesta!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hora da festa!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha074",
+ "englishUsText":"My drum soul is like a volcano.",
+ "englishUsFontType":1,
+ "frenchText":"J'ai l'âme d'un volcan.",
+ "frenchFontType":1,
+ "italianText":"Un tamburo nell'anima!",
+ "italianFontType":1,
+ "germanText":"Meine Seele ist wie ein Vulkan.",
+ "germanFontType":1,
+ "spanishText":"Mi tambor es un volcán.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mi tambor es un volcán.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"É uma erupção de tambor.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha045",
+ "englishUsText":"Don’t sweat it.",
+ "englishUsFontType":1,
+ "frenchText":"C'est pas grave.",
+ "frenchFontType":1,
+ "italianText":"Non preoccuparti.",
+ "italianFontType":1,
+ "germanText":"Keine Sorge.",
+ "germanFontType":1,
+ "spanishText":"No te preocupes.",
+ "spanishFontType":1,
+ "neutralSpanishText":"No te preocupes.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Não se preocupe.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha058",
+ "englishUsText":"Could this be the turnaround?",
+ "englishUsFontType":1,
+ "frenchText":"Est-ce un revirement ?",
+ "frenchFontType":1,
+ "italianText":"Che sia la svolta?",
+ "italianFontType":1,
+ "germanText":"Könnte das die Wende sein?",
+ "germanFontType":1,
+ "spanishText":"¿Esto lo cambiará todo?",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Esto lo cambiará todo?",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vai ser de virada?",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha075",
+ "englishUsText":"The notes are running at top gear!",
+ "englishUsFontType":1,
+ "frenchText":"Les notes défilent !",
+ "frenchFontType":1,
+ "italianText":"Le note sfrecciano!",
+ "italianFontType":1,
+ "germanText":"Die Noten sind superschnell!",
+ "germanFontType":1,
+ "spanishText":"¡Las notas van a cien por hora!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Las notas van a todo lo que dan!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Que notas alucinantes!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha001",
+ "englishUsText":"Thx!",
+ "englishUsFontType":1,
+ "frenchText":"Merci à toi !",
+ "frenchFontType":1,
+ "italianText":"Grazie!",
+ "italianFontType":1,
+ "germanText":"Danke!",
+ "germanFontType":1,
+ "spanishText":"¡Gracias!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Gracias!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vlw!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha053",
+ "englishUsText":"*poke* *poke*",
+ "englishUsFontType":1,
+ "frenchText":"*Toc* *Toc*",
+ "frenchFontType":1,
+ "italianText":"*poc* *poc*",
+ "italianFontType":1,
+ "germanText":"*stups* *stups*",
+ "germanFontType":1,
+ "spanishText":"*Toc* *Toc*",
+ "spanishFontType":1,
+ "neutralSpanishText":"*Toc* *Toc*",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"*cutuca* *cutuca*",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha021",
+ "englishUsText":"Whoa!",
+ "englishUsFontType":1,
+ "frenchText":"Waouh !",
+ "frenchFontType":1,
+ "italianText":"Whoa!",
+ "italianFontType":1,
+ "germanText":"Uahh!",
+ "germanFontType":1,
+ "spanishText":"¡Caramba!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Caray!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Opa!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha060",
+ "englishUsText":"My bad! Peace♥",
+ "englishUsFontType":1,
+ "frenchText":"Pardon, c'est ma faute ♥",
+ "frenchFontType":1,
+ "italianText":"Colpa mia! Pace ♥",
+ "italianFontType":1,
+ "germanText":"Tut mir leid! Peace♥",
+ "germanFontType":1,
+ "spanishText":"¡Culpa mía! Paz.♥",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Es mi culpa! Paz.♥",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Foi mal! Paz♥",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha083",
+ "englishUsText":"I’m gonna give the greatest performance I can!",
+ "englishUsFontType":1,
+ "frenchText":"Faisons de notre mieux !",
+ "frenchFontType":1,
+ "italianText":"Farò del mio meglio!",
+ "italianFontType":1,
+ "germanText":"Ich werde mein Bestes geben!",
+ "germanFontType":1,
+ "spanishText":"¡Voy a hacerlo lo mejor posible!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Voy a hacerlo lo mejor posible!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vou dar o melhor de mim!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha038",
+ "englishUsText":"Happy new year!",
+ "englishUsFontType":1,
+ "frenchText":"Bonne année !",
+ "frenchFontType":1,
+ "italianText":"Felice anno nuovo!",
+ "italianFontType":1,
+ "germanText":"Frohes neues Jahr!",
+ "germanFontType":1,
+ "spanishText":"¡Feliz año nuevo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Feliz año nuevo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Feliz ano novo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha039",
+ "englishUsText":"Let’s make this a good one!",
+ "englishUsFontType":1,
+ "frenchText":"Bonne chance !",
+ "frenchFontType":1,
+ "italianText":"Impegniamoci!",
+ "italianFontType":1,
+ "germanText":"Das muss gut werden!",
+ "germanFontType":1,
+ "spanishText":"¡Vamos a hacerlo bien!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Vamos a hacerlo bien!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Que essa seja boa!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha041",
+ "englishUsText":"Merry Xmas!",
+ "englishUsFontType":1,
+ "frenchText":"Joyeux Noël !",
+ "frenchFontType":1,
+ "italianText":"Buon Natale!",
+ "italianFontType":1,
+ "germanText":"Frohe Weihnachten!",
+ "germanFontType":1,
+ "spanishText":"¡Feliz Navidad!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Feliz Navidad!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Feliz natal!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha042",
+ "englishUsText":"Time to beat the heat!",
+ "englishUsFontType":1,
+ "frenchText":"Accélérons la cadence !",
+ "frenchFontType":1,
+ "italianText":"Suda per un buon motivo!",
+ "italianFontType":1,
+ "germanText":"Es ist viel zu heiß!",
+ "germanFontType":1,
+ "spanishText":"¡Toca combatir el calor!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Hora de combatir el calor!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hora de quebrar tudo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha029",
+ "englishUsText":"Hi there!",
+ "englishUsFontType":1,
+ "frenchText":"Hé, salut !",
+ "frenchFontType":1,
+ "italianText":"Ehilà!",
+ "italianFontType":1,
+ "germanText":"Hallo!",
+ "germanFontType":1,
+ "spanishText":"¡Hola, buenas!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Hola, buenas!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Olá!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha031",
+ "englishUsText":"Nice to play with you!",
+ "englishUsFontType":1,
+ "frenchText":"J'adore jouer avec toi !",
+ "frenchFontType":1,
+ "italianText":"Mi piace giocare con te!",
+ "italianFontType":1,
+ "germanText":"Ich spiele gern mit dir!",
+ "germanFontType":1,
+ "spanishText":"¡Qué bien jugar contigo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Qué bien jugar contigo.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Foi bom jogar com você!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha012",
+ "englishUsText":"What’s up!",
+ "englishUsFontType":1,
+ "frenchText":"Comment ça va ?",
+ "frenchFontType":1,
+ "italianText":"Come va?",
+ "italianFontType":1,
+ "germanText":"Was geht ab?",
+ "germanFontType":1,
+ "spanishText":"¿Qué hay?",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Qué pasa?",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"E aí!?",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha034",
+ "englishUsText":"I’m here now!",
+ "englishUsFontType":1,
+ "frenchText":"Je suis là !",
+ "frenchFontType":1,
+ "italianText":"Ora ci sono io!",
+ "italianFontType":1,
+ "germanText":"Ich bin jetzt da!",
+ "germanFontType":1,
+ "spanishText":"¡Ya estoy aquí!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Ya estoy aquí!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Estou aqui agora!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha032",
+ "englishUsText":"Let’s have a good match!",
+ "englishUsFontType":1,
+ "frenchText":"Bonne partie !",
+ "frenchFontType":1,
+ "italianText":"Vinca il migliore!",
+ "italianFontType":1,
+ "germanText":"Auf eine gute Partie!",
+ "germanFontType":1,
+ "spanishText":"¡Vamos a jugar!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Vamos a jugar!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Desejo uma boa partida!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha018",
+ "englishUsText":"You have my gratitude!",
+ "englishUsFontType":1,
+ "frenchText":"Merci infiniment !",
+ "frenchFontType":1,
+ "italianText":"Hai la mia gratitudine!",
+ "italianFontType":1,
+ "germanText":"Ich danke dir!",
+ "germanFontType":1,
+ "spanishText":"¡Tienes mi gratitud!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tienes mi gratitud.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Te agradeço muito!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha085",
+ "englishUsText":"It’s all down to luck.",
+ "englishUsFontType":1,
+ "frenchText":"Rien que de la chance...",
+ "frenchFontType":1,
+ "italianText":"È tutta fortuna.",
+ "italianFontType":1,
+ "germanText":"Es ist alles nur Glück.",
+ "germanFontType":1,
+ "spanishText":"Es cuestión de suerte.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Es cuestión de suerte.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"É sorte pura.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha071",
+ "englishUsText":"Man, heavy emotions!",
+ "englishUsFontType":1,
+ "frenchText":"Que d'émotions !",
+ "frenchFontType":1,
+ "italianText":"Che emozioni!",
+ "italianFontType":1,
+ "germanText":"Mann, die Emotionen!",
+ "germanFontType":1,
+ "spanishText":"¡Caray, qué emoción!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Caray, qué emoción!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Cara, quanta emoção!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gasha004",
+ "englishUsText":"Thanks!",
+ "englishUsFontType":1,
+ "frenchText":"Merci !",
+ "frenchFontType":1,
+ "italianText":"Grazie!",
+ "italianFontType":1,
+ "germanText":"Danke!",
+ "germanFontType":1,
+ "spanishText":"¡Gracias!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Gracias!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Valeu!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_miku",
+ "englishUsText":"I ♥ HATSUNE MIKU",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ HATSUNE MIKU",
+ "frenchFontType":1,
+ "italianText":"I ♥ HATSUNE MIKU",
+ "italianFontType":1,
+ "germanText":"Ich ♥ HATSUNE MIKU.",
+ "germanFontType":1,
+ "spanishText":"I ♥ HATSUNE MIKU",
+ "spanishFontType":1,
+ "neutralSpanishText":"Yo ♥ HATSUNE MIKU.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ HATSUNE MIKU.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_default001",
+ "englishUsText":"Nice to meet you!",
+ "englishUsFontType":1,
+ "frenchText":"Enchanté(e) !",
+ "frenchFontType":1,
+ "italianText":"Piacere di conoscerti!",
+ "italianFontType":1,
+ "germanText":"Freut mich!",
+ "germanFontType":1,
+ "spanishText":"¡Un placer conocerte!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Gusto en conocerte!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Muito prazer!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_default002",
+ "englishUsText":"I’m going to win!",
+ "englishUsFontType":1,
+ "frenchText":"Je vais gagner !",
+ "frenchFontType":1,
+ "italianText":"Vincerò io!",
+ "italianFontType":1,
+ "germanText":"Ich werde gewinnen!",
+ "germanFontType":1,
+ "spanishText":"¡Voy a ganar!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Voy a ganar!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu vou vencer!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_default003",
+ "englishUsText":"Let’s play again!",
+ "englishUsFontType":1,
+ "frenchText":"Rejouons ensemble !",
+ "frenchFontType":1,
+ "italianText":"Giochiamo ancora!",
+ "italianFontType":1,
+ "germanText":"Spielen wir noch mal!",
+ "germanFontType":1,
+ "spanishText":"¡Juguemos otra vez!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Juguemos otra vez!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vamos jogar de novo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_default004",
+ "englishUsText":"That was fun!",
+ "englishUsFontType":1,
+ "frenchText":"C'était amusant !",
+ "frenchFontType":1,
+ "italianText":"È stato divertente!",
+ "italianFontType":1,
+ "germanText":"Das hat Spaß gemacht!",
+ "germanFontType":1,
+ "spanishText":"¡Ha sido divertido!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Fue divertido!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Foi divertido!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_default005",
+ "englishUsText":"Thanks for your help.",
+ "englishUsFontType":1,
+ "frenchText":"Merci pour ton aide.",
+ "frenchFontType":1,
+ "italianText":"Grazie per l'aiuto.",
+ "italianFontType":1,
+ "germanText":"Danke für deine Hilfe.",
+ "germanFontType":1,
+ "spanishText":"Gracias por tu ayuda.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Gracias por tu ayuda.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Valeu pela ajuda.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_sakuramaturi",
+ "englishUsText":"I ♥ Strawberries",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ Strawberries",
+ "frenchFontType":1,
+ "italianText":"I ♥ fragole",
+ "italianFontType":1,
+ "germanText":"Ich ♥ Erdbeeren",
+ "germanFontType":1,
+ "spanishText":"I ♥ Fresas",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ fresas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ Strawberries",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_skrexh",
+ "englishUsText":"I ♥ 「SAKURA EXHAUST」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SAKURA EXHAUST」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SAKURA EXHAUST」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SAKURA EXHAUST」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SAKURA EXHAUST」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SAKURA EXHAUST」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SAKURA EXHAUST」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_blrose",
+ "englishUsText":"I ♥ 「Blue Rose Ruin」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Blue Rose Ruin」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Blue Rose Ruin」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Blue Rose Ruin」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Blue Rose Ruin」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Blue Rose Ruin」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Blue Rose Ruin」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_haryu",
+ "englishUsText":"I ♥ 「Haryu」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Haryu」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Haryu」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Haryu」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Haryu」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Haryu」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Haryu」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_clspvn",
+ "englishUsText":"I ♥ 「Pavane For A Dead Princess」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Pavane For A Dead Princess」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Pavane For A Dead Princess」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Pavane For A Dead Princess」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Pavane For A Dead Princess」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Pavane For A Dead Princess」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Pavane For A Dead Princess」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_tank",
+ "englishUsText":"I ♥ 「Yawaraka Tank」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Yawaraka Tank」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Yawaraka Tank」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Yawaraka Tank」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Yawaraka Tank」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Yawaraka Tank」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Yawaraka Tank」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_tdm",
+ "englishUsText":"I ♥ 「Taiko Drum Monster」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Taiko Drum Monster」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Taiko Drum Monster」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Taiko Drum Monster」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Taiko Drum Monster」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Taiko Drum Monster」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Taiko Drum Monster」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_flksak",
+ "englishUsText":"I ♥ 「SAKURA(HARU)」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SAKURA(HARU)」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SAKURA(HARU)」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SAKURA(HARU)」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SAKURA(HARU)」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SAKURA(HARU)」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SAKURA(HARU)」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gekikk",
+ "englishUsText":"I ♥ 「HARDCORE NO KOKOROE」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HARDCORE NO KOKOROE」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HARDCORE NO KOKOROE」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HARDCORE NO KOKOROE」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HARDCORE NO KOKOROE」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HARDCORE NO KOKOROE」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HARDCORE NO KOKOROE」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_oka47",
+ "englishUsText":"I ♥ 「KURU KURU KUROKKURU」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「KURU KURU KUROKKURU」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「KURU KURU KUROKKURU」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「KURU KURU KUROKKURU」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「KURU KURU KUROKKURU」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「KURU KURU KUROKKURU」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「KURU KURU KUROKKURU」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_castle",
+ "englishUsText":"I ♥ 「Black Rose Apostle」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Black Rose Apostle」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Black Rose Apostle」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Black Rose Apostle」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Black Rose Apostle」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Black Rose Apostle」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Black Rose Apostle」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_thncrd",
+ "englishUsText":"I ♥ 「Necro Fantasia ~ Arr.Demetori」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Necro Fantasia ~ Arr.Demetori」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Necro Fantasia ~ Arr.Demetori」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Necro Fantasia ~ Arr.Demetori」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Necro Fantasia ~ Arr.Demetori」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Necro Fantasia ~ Arr.Demetori」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Necro Fantasia ~ Arr.Demetori」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_syclsn",
+ "englishUsText":"I ♥ 「New World」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「New World」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「New World」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「New World」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「New World」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「New World」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「New World」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_dem31k",
+ "englishUsText":"I ♥ 「Saika」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Saika」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Saika」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Saika」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Saika」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Saika」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Saika」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_kteien",
+ "englishUsText":"I ♥ 「KAICHUTEIEN WO MOTSU SHOUJO」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「KAICHUTEIEN WO MOTSU SHOUJO」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「KAICHUTEIEN WO MOTSU SHOUJO」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「KAICHUTEIEN WO MOTSU SHOUJO」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「KAICHUTEIEN WO MOTSU SHOUJO」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「KAICHUTEIEN WO MOTSU SHOUJO」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「KAICHUTEIEN WO MOTSU SHOUJO」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gunsln",
+ "englishUsText":"I ♥ 「Gunslinger Cinderella」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Gunslinger Cinderella」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Gunslinger Cinderella」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Gunslinger Cinderella」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Gunslinger Cinderella」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Gunslinger Cinderella」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Gunslinger Cinderella」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_6ne9om",
+ "englishUsText":"I ♥ 「DOKIDOKI MUNEKYUN OMATSURI Time」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「DOKIDOKI MUNEKYUN OMATSURI Time」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「DOKIDOKI MUNEKYUN OMATSURI Time」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「DOKIDOKI MUNEKYUN OMATSURI Time」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「DOKIDOKI MUNEKYUN OMATSURI Time」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「DOKIDOKI MUNEKYUN OMATSURI Time」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「DOKIDOKI MUNEKYUN OMATSURI Time」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_angel3",
+ "englishUsText":"I ♥ 「Pastel Dream」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Pastel Dream」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Pastel Dream」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Pastel Dream」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Pastel Dream」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Pastel Dream」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Pastel Dream」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_yugen",
+ "englishUsText":"I ♥ 「YUGEN NO RAN」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「YUGEN NO RAN」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「YUGEN NO RAN」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「YUGEN NO RAN」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「YUGEN NO RAN」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「YUGEN NO RAN」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「YUGEN NO RAN」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_ygnarr",
+ "englishUsText":"I ♥ 「Infinite Rebellion」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Infinite Rebellion」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Infinite Rebellion」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Infinite Rebellion」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Infinite Rebellion」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Infinite Rebellion」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Infinite Rebellion」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_57mono",
+ "englishUsText":"I ♥ 「KONAMONO☆」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「KONAMONO☆」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「KONAMONO☆」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「KONAMONO☆」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「KONAMONO☆」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「KONAMONO☆」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「KONAMONO☆」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_kaidan",
+ "englishUsText":"I ♥ 「χ-DAN」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「χ-DAN」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「χ-DAN」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「χ-DAN」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「χ-DAN」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「χ-DAN」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「χ-DAN」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_uheart",
+ "englishUsText":"I ♥ 「UNDEAD HEART (IKARI NO Warriors)」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「UNDEAD HEART (IKARI NO Warriors)」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「UNDEAD HEART (IKARI NO Warriors)」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「UNDEAD HEART (IKARI NO Warriors)」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「UNDEAD HEART (IKARI NO Warriors)」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「UNDEAD HEART (IKARI NO Warriors)」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「UNDEAD HEART (IKARI NO Warriors)」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_takamg",
+ "englishUsText":"I ♥ 「SHIRITSU TAKAMAGAHARA GAKUEN KOUKOU・KOUKA」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SHIRITSU TAKAMAGAHARA GAKUEN KOUKOU・KOUKA」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SHIRITSU TAKAMAGAHARA GAKUEN KOUKOU・KOUKA」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SHIRITSU TAKAMAGAHARA GAKUEN KOUKOU・KOUKA」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SHIRITSU TAKAMAGAHARA GAKUEN KOUKOU・KOUKA」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SHIRITSU TAKAMAGAHARA GAKUEN KOUKOU・KOUKA」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SHIRITSU TAKAMAGAHARA GAKUEN KOUKOU・KOUKA」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_83noma",
+ "englishUsText":"I ♥ 「YAMI NO MAHOUSHOUJO」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「YAMI NO MAHOUSHOUJO」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「YAMI NO MAHOUSHOUJO」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「YAMI NO MAHOUSHOUJO」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「YAMI NO MAHOUSHOUJO」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「YAMI NO MAHOUSHOUJO」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「YAMI NO MAHOUSHOUJO」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_zense",
+ "englishUsText":"I ♥ 「Zenzenzense」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Zenzenzense」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Zenzenzense」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Zenzenzense」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Zenzenzense」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Zenzenzense」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Zenzenzense」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_roadmv",
+ "englishUsText":"I ♥ 「Road Movie」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Road Movie」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Road Movie」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Road Movie」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Road Movie」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Road Movie」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Road Movie」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_4shaas",
+ "englishUsText":"I ♥ 「Ashita mo」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Ashita mo」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Ashita mo」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Ashita mo」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Ashita mo」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Ashita mo」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Ashita mo」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_ynlose",
+ "englishUsText":"I ♥ 「LOSER」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「LOSER」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「LOSER」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「LOSER」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「LOSER」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「LOSER」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「LOSER」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_uminok",
+ "englishUsText":"I ♥ 「Umi no Koe」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Umi no Koe」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Umi no Koe」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Umi no Koe」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Umi no Koe」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Umi no Koe」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Umi no Koe」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_kekka2",
+ "englishUsText":"I ♥ 「Sugar Song & Bitter Step」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Sugar Song & Bitter Step」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Sugar Song & Bitter Step」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Sugar Song & Bitter Step」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Sugar Song & Bitter Step」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Sugar Song & Bitter Step」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Sugar Song & Bitter Step」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_himyak",
+ "englishUsText":"I ♥ 「Himawari no Yakusoku」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Himawari no Yakusoku」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Himawari no Yakusoku」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Himawari no Yakusoku」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Himawari no Yakusoku」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Himawari no Yakusoku」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Himawari no Yakusoku」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gimcho",
+ "englishUsText":"I ♥ 「Gimme Chocolate!!」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Gimme Chocolate!!」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Gimme Chocolate!!」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Gimme Chocolate!!」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Gimme Chocolate!!」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Gimme Chocolate!!」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Gimme Chocolate!!」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_skorpg",
+ "englishUsText":"I ♥ 「RPG」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「RPG」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「RPG」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「RPG」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「RPG」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「RPG」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「RPG」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_ninjbb",
+ "englishUsText":"I ♥ 「Ninja Re Bang Bang」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Ninja Re Bang Bang」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Ninja Re Bang Bang」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Ninja Re Bang Bang」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Ninja Re Bang Bang」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Ninja Re Bang Bang」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Ninja Re Bang Bang」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_memesi",
+ "englishUsText":"I ♥ 「Memeshikute」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Memeshikute」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Memeshikute」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Memeshikute」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Memeshikute」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Memeshikute」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Memeshikute」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_koiama",
+ "englishUsText":"I ♥ 「Koioto to Amazora」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Koioto to Amazora」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Koioto to Amazora」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Koioto to Amazora」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Koioto to Amazora」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Koioto to Amazora」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Koioto to Amazora」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_kiseki",
+ "englishUsText":"I ♥ 「KISEKI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「KISEKI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「KISEKI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「KISEKI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「KISEKI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「KISEKI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「KISEKI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_ikenai",
+ "englishUsText":"I ♥ 「Ikenai Taiyou」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Ikenai Taiyou」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Ikenai Taiyou」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Ikenai Taiyou」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Ikenai Taiyou」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Ikenai Taiyou」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Ikenai Taiyou」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_skrnb",
+ "englishUsText":"I ♥ 「Sakuranbo」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Sakuranbo」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Sakuranbo」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Sakuranbo」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Sakuranbo」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Sakuranbo」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Sakuranbo」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_linda",
+ "englishUsText":"I ♥ 「LINDA LINDA」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「LINDA LINDA」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「LINDA LINDA」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「LINDA LINDA」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「LINDA LINDA」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「LINDA LINDA」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「LINDA LINDA」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_natsu",
+ "englishUsText":"I ♥ 「Natsumatsuri」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Natsumatsuri」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Natsumatsuri」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Natsumatsuri」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Natsumatsuri」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Natsumatsuri」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Natsumatsuri」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_10tai",
+ "englishUsText":"I ♥ 「Tentai Kansoku」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Tentai Kansoku」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Tentai Kansoku」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Tentai Kansoku」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Tentai Kansoku」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Tentai Kansoku」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Tentai Kansoku」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_xjapan",
+ "englishUsText":"I ♥ 「KURENAI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「KURENAI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「KURENAI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「KURENAI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「KURENAI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「KURENAI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「KURENAI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_apollo",
+ "englishUsText":"I ♥ 「APOLLO」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「APOLLO」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「APOLLO」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「APOLLO」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「APOLLO」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「APOLLO」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「APOLLO」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_dora4",
+ "englishUsText":"I ♥ 「Yume wo Kanaete DORAEMON」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Yume wo Kanaete DORAEMON」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Yume wo Kanaete DORAEMON」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Yume wo Kanaete DORAEMON」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Yume wo Kanaete DORAEMON」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Yume wo Kanaete DORAEMON」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Yume wo Kanaete DORAEMON」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_totoro",
+ "englishUsText":"I ♥ 「My Neighbor Totoro – Ending Theme Song」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Mon Voisin Totoro - générique de fin」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Il mio vicino Totoro - Tema principale」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Mein Nachbar Totoro – Abspann」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Mi vecino Totoro (Tema principal - Tema final)」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Mi vecino Totoro (Tema principal - Tema final)」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「My Neighbor Totoro (The Ending Song)」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_anayuk",
+ "englishUsText":"I ♥ 「Let It Go」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Let It Go」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Let It Go」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Let It Go」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Let It Go」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Let It Go」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Let It Go」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_zootop",
+ "englishUsText":"I ♥ 「Try Everything」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Try Everything」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Try Everything」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Try Everything」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Try Everything」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Try Everything」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Try Everything」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_dbcgen",
+ "englishUsText":"I ♥ 「Genkai Toppa × Survivor」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Genkai Toppa × Survivor」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Genkai Toppa × Survivor」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Genkai Toppa × Survivor」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Genkai Toppa × Survivor」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Genkai Toppa × Survivor」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Genkai Toppa × Survivor」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_batan9",
+ "englishUsText":"I ♥ 「Zenryoku Batankyuu」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Zenryoku Batankyuu」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Zenryoku Batankyuu」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Zenryoku Batankyuu」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Zenryoku Batankyuu」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Zenryoku Batankyuu」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Zenryoku Batankyuu」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_shing2",
+ "englishUsText":"I ♥ 「Guren no Yumiya」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Guren no Yumiya」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Guren no Yumiya」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Guren no Yumiya」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Guren no Yumiya」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Guren no Yumiya」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Guren no Yumiya」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_weare0",
+ "englishUsText":"I ♥ 「We Are!」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「We Are!」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「We Are!」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「We Are!」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「We Are!」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「We Are!」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「We Are!」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_eva",
+ "englishUsText":"I ♥ 「A Cruel Angel's Thesis」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「A Cruel Angel's Thesis」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「A Cruel Angel's Thesis」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「A Cruel Angel's Thesis」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「A Cruel Angel's Thesis」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「A Cruel Angel's Thesis」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「A Cruel Angel's Thesis」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_japari",
+ "englishUsText":"I ♥ 「Welcome to Japari Park」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Welcome to Japari Park」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Welcome to Japari Park」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Welcome to Japari Park」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Welcome to Japari Park」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Welcome to Japari Park」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Welcome to Japari Park」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_mikugr",
+ "englishUsText":"I ♥ 「Ghost Rule」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Ghost Rule」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Ghost Rule」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Ghost Rule」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Ghost Rule」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Ghost Rule」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Ghost Rule」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_mikuaa",
+ "englishUsText":"I ♥ 「Alien Alien」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Alien Alien」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Alien Alien」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Alien Alien」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Alien Alien」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Alien Alien」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Alien Alien」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_lost1g",
+ "englishUsText":"I ♥ 「The Lost One's Weeping」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「The Lost One's Weeping」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「The Lost One's Weeping」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「The Lost One's Weeping」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「The Lost One's Weeping」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「The Lost One's Weeping」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「The Lost One's Weeping」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_ia6cho",
+ "englishUsText":"I ♥ 「A Tale of Six Trillion Years and a Night」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「A Tale of Six Trillion Years and a Night」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「A Tale of Six Trillion Years and a Night」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「A Tale of Six Trillion Years and a Night」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「A Tale of Six Trillion Years and a Night」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「A Tale of Six Trillion Years and a Night」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「A Tale of Six Trillion Years and a Night」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_hkitty",
+ "englishUsText":"I ♥ 「HELLO KITTY」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HELLO KITTY」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HELLO KITTY」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HELLO KITTY」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HELLO KITTY」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HELLO KITTY」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HELLO KITTY」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_ppap",
+ "englishUsText":"I ♥ 「Pen-Pineapple-Apple-Pen (PPAP)」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Pen-Pineapple-Apple-Pen (PPAP)」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Pen-Pineapple-Apple-Pen (PPAP)」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Pen-Pineapple-Apple-Pen (PPAP)」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Pen-Pineapple-Apple-Pen (PPAP)」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Pen-Pineapple-Apple-Pen (PPAP)」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Pen-Pineapple-Apple-Pen (PPAP)」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_th7171",
+ "englishUsText":"I ♥ 「Night of Knights / Knight of Nights」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Night of Knights / Knight of Nights」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Night of Knights / Knight of Nights」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Night of Knights / Knight of Nights」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Night of Knights / Knight of Nights」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Night of Knights / Knight of Nights」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Night of Knights / Knight of Nights」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_thflnd",
+ "englishUsText":"I ♥ 「Last Brutal Sister Flandre S」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Last Brutal Sister Flandre S」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Last Brutal Sister Flandre S」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Last Brutal Sister Flandre S」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Last Brutal Sister Flandre S」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Last Brutal Sister Flandre S」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Last Brutal Sister Flandre S」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_thchil",
+ "englishUsText":"I ♥ 「Cirno's Perfect Math Class」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Cirno's Perfect Math Class」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Cirno's Perfect Math Class」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Cirno's Perfect Math Class」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Cirno's Perfect Math Class」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Cirno's Perfect Math Class」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Cirno's Perfect Math Class」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_clsh69",
+ "englishUsText":"I ♥ 「Hungarian Rock」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Hungarian Rock」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Hungarian Rock」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Hungarian Rock」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Hungarian Rock」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Hungarian Rock」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Hungarian Rock」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_clsca",
+ "englishUsText":"I ♥ 「Carmen Prelude」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Carmen Prelude」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Carmen Prelude」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Carmen Prelude」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Carmen Prelude」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Carmen Prelude」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Carmen Prelude」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_clsw",
+ "englishUsText":"I ♥ 「William Tell Overture」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「William Tell Overture」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「William Tell Overture」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「William Tell Overture」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「William Tell Overture」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「William Tell Overture」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「William Tell Overture」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_cls10",
+ "englishUsText":"I ♥ 「Overture from 'Orpheus in the Underworld'」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Overture from 'Orpheus in the Underworld'」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Overture from 'Orpheus in the Underworld'」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Overture from 'Orpheus in the Underworld'」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Overture from 'Orpheus in the Underworld'」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Overture from 'Orpheus in the Underworld'」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Overture from 'Orpheus in the Underworld'」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_clsr",
+ "englishUsText":"I ♥ 「Classical Music Medley (Rock version)」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Classical Music Medley (Rock version)」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Classical Music Medley (Rock version)」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Classical Music Medley (Rock version)」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Classical Music Medley (Rock version)」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Classical Music Medley (Rock version)」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Classical Music Medley (Rock version)」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_march",
+ "englishUsText":"I ♥ 「THE TAIKO MARCH」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「THE TAIKO MARCH」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「THE TAIKO MARCH」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「THE TAIKO MARCH」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「THE TAIKO MARCH」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「THE TAIKO MARCH」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「THE TAIKO MARCH」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_drsp",
+ "englishUsText":"I ♥ 「DRAGON SPIRIT Medley」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「DRAGON SPIRIT Medley」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「DRAGON SPIRIT Medley」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「DRAGON SPIRIT Medley」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「DRAGON SPIRIT Medley」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「DRAGON SPIRIT Medley」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「DRAGON SPIRIT Medley」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_druaga",
+ "englishUsText":"I ♥ 「THE TOWER OF DRUAGA Medley」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「THE TOWER OF DRUAGA Medley」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「THE TOWER OF DRUAGA Medley」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「THE TOWER OF DRUAGA Medley」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「THE TOWER OF DRUAGA Medley」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「THE TOWER OF DRUAGA Medley」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「THE TOWER OF DRUAGA Medley」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_bforc",
+ "englishUsText":"I ♥ 「BURNING FORCE Medley」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「BURNING FORCE Medley」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「BURNING FORCE Medley」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「BURNING FORCE Medley」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「BURNING FORCE Medley」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「BURNING FORCE Medley」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「BURNING FORCE Medley」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_babel",
+ "englishUsText":"I ♥ 「THE TOWER OF BABEL」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「THE TOWER OF BABEL」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「THE TOWER OF BABEL」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「THE TOWER OF BABEL」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「THE TOWER OF BABEL」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「THE TOWER OF BABEL」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「THE TOWER OF BABEL」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_mappy2",
+ "englishUsText":"I ♥ 「MAPPY Medley」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「MAPPY Medley」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「MAPPY Medley」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「MAPPY Medley」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「MAPPY Medley」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「MAPPY Medley」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「MAPPY Medley」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_moji",
+ "englishUsText":"I ♥ 「MOJIPITTAN Medley」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「MOJIPITTAN Medley」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「MOJIPITTAN Medley」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「MOJIPITTAN Medley」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「MOJIPITTAN Medley」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「MOJIPITTAN Medley」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「MOJIPITTAN Medley」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_sf5ryu",
+ "englishUsText":"I ♥ 「Theme of Ryu」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Theme of Ryu」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Theme of Ryu」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Theme of Ryu」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Theme of Ryu」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Theme of Ryu」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Theme of Ryu」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_tek7he",
+ "englishUsText":"I ♥ 「Heat Haze Shadow 2」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Heat Haze Shadow 2」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Heat Haze Shadow 2」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Heat Haze Shadow 2」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Heat Haze Shadow 2」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Heat Haze Shadow 2」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Heat Haze Shadow 2」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_tobers",
+ "englishUsText":"I ♥ 「Tales of Berseria Medley」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Tales of Berseria Medley」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Tales of Berseria Medley」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Tales of Berseria Medley」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Tales of Berseria Medley」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Tales of Berseria Medley」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Tales of Berseria Medley」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_imconc",
+ "englishUsText":"I ♥ 「Onegai! Cinderella 」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Onegai! Cinderella 」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Onegai! Cinderella 」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Onegai! Cinderella 」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Onegai! Cinderella 」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Onegai! Cinderella 」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Onegai! Cinderella 」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_immbra",
+ "englishUsText":"I ♥ 「Brand New Theater!」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Brand New Theater!」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Brand New Theater!」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Brand New Theater!」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Brand New Theater!」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Brand New Theater!」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Brand New Theater!」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_crturb",
+ "englishUsText":"I ♥ 「Urban Striker」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Urban Striker」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Urban Striker」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Urban Striker」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Urban Striker」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Urban Striker」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Urban Striker」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_eatem",
+ "englishUsText":"I ♥ 「EAT'EM UP!」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「EAT'EM UP!」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「EAT'EM UP!」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「EAT'EM UP!」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「EAT'EM UP!」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「EAT'EM UP!」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「EAT'EM UP!」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_genpe",
+ "englishUsText":"I ♥ 「KAGEKIYO」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「KAGEKIYO」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「KAGEKIYO」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「KAGEKIYO」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「KAGEKIYO」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「KAGEKIYO」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「KAGEKIYO」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_ryuhim",
+ "englishUsText":"I ♥ 「RYU TO KOKUEN NO HIMEGIMI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「RYU TO KOKUEN NO HIMEGIMI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「RYU TO KOKUEN NO HIMEGIMI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「RYU TO KOKUEN NO HIMEGIMI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「RYU TO KOKUEN NO HIMEGIMI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「RYU TO KOKUEN NO HIMEGIMI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「RYU TO KOKUEN NO HIMEGIMI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_psf1op",
+ "englishUsText":"I ♥ 「TSUNAGARE! HIROGARE! UCHIAGARE!」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「TSUNAGARE! HIROGARE! UCHIAGARE!」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「TSUNAGARE! HIROGARE! UCHIAGARE!」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「TSUNAGARE! HIROGARE! UCHIAGARE!」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「TSUNAGARE! HIROGARE! UCHIAGARE!」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「TSUNAGARE! HIROGARE! UCHIAGARE!」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「TSUNAGARE! HIROGARE! UCHIAGARE!」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_trustg",
+ "englishUsText":"I ♥ 「Trust Game」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Trust Game」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Trust Game」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Trust Game」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Trust Game」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Trust Game」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Trust Game」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_mgpafe",
+ "englishUsText":"I ♥ 「Magical Parfait」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Magical Parfait」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Magical Parfait」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Magical Parfait」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Magical Parfait」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Magical Parfait」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Magical Parfait」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_32segw",
+ "englishUsText":"I ♥ 「MITSUSEGAWA RANBU」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「MITSUSEGAWA RANBU」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「MITSUSEGAWA RANBU」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「MITSUSEGAWA RANBU」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「MITSUSEGAWA RANBU」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「MITSUSEGAWA RANBU」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「MITSUSEGAWA RANBU」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_so2omf",
+ "englishUsText":"I ♥ 「SOTSUOMESHIKI・Full」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SOTSUOMESHIKI・Full」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SOTSUOMESHIKI・Full」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SOTSUOMESHIKI・Full」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SOTSUOMESHIKI・Full」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SOTSUOMESHIKI・Full」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SOTSUOMESHIKI・Full」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_nograv",
+ "englishUsText":"I ♥ 「No Gravity」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「No Gravity」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「No Gravity」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「No Gravity」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「No Gravity」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「No Gravity」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「No Gravity」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_crkvic",
+ "englishUsText":"I ♥ 「VICTORIA」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「VICTORIA」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「VICTORIA」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「VICTORIA」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「VICTORIA」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「VICTORIA」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「VICTORIA」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_tengu",
+ "englishUsText":"I ♥ 「TENGU BAYASHI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「TENGU BAYASHI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「TENGU BAYASHI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「TENGU BAYASHI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「TENGU BAYASHI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「TENGU BAYASHI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「TENGU BAYASHI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_timtrv",
+ "englishUsText":"I ♥ 「Time Traveler」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Time Traveler」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Time Traveler」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Time Traveler」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Time Traveler」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Time Traveler」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Time Traveler」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_izanam",
+ "englishUsText":"I ♥ 「YOMI NO IZANAMI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「YOMI NO IZANAMI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「YOMI NO IZANAMI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「YOMI NO IZANAMI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「YOMI NO IZANAMI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「YOMI NO IZANAMI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「YOMI NO IZANAMI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_tksoda",
+ "englishUsText":"I ♥ 「Tokyo Soda 8Bit Edit」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Tokyo Soda 8Bit Edit」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Tokyo Soda 8Bit Edit」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Tokyo Soda 8Bit Edit」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Tokyo Soda 8Bit Edit」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Tokyo Soda 8Bit Edit」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Tokyo Soda 8Bit Edit」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_mugens",
+ "englishUsText":"I ♥ 「MUGEN NO SORA」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「MUGEN NO SORA」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「MUGEN NO SORA」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「MUGEN NO SORA」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「MUGEN NO SORA」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「MUGEN NO SORA」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「MUGEN NO SORA」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_stabof",
+ "englishUsText":"I ♥ 「GASSHO STIVAL-FE!」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「GASSHO STIVAL-FE!」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「GASSHO STIVAL-FE!」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「GASSHO STIVAL-FE!」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「GASSHO STIVAL-FE!」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「GASSHO STIVAL-FE!」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「GASSHO STIVAL-FE!」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_flyawy",
+ "englishUsText":"I ♥ 「Fly away」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Fly away」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Fly away」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Fly away」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Fly away」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Fly away」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Fly away」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_yayoi",
+ "englishUsText":"I ♥ 「HOUJO YAYOI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HOUJO YAYOI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HOUJO YAYOI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HOUJO YAYOI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HOUJO YAYOI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HOUJO YAYOI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HOUJO YAYOI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_trance",
+ "englishUsText":"I ♥ 「Angel Dream」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Angel Dream」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Angel Dream」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Angel Dream」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Angel Dream」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Angel Dream」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Angel Dream」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_vrock",
+ "englishUsText":"I ♥ 「YUGAO NO KIMI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「YUGAO NO KIMI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「YUGAO NO KIMI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「YUGAO NO KIMI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「YUGAO NO KIMI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「YUGAO NO KIMI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「YUGAO NO KIMI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_butou9",
+ "englishUsText":"I ♥ 「OUKA RANMAN」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「OUKA RANMAN」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「OUKA RANMAN」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「OUKA RANMAN」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「OUKA RANMAN」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「OUKA RANMAN」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「OUKA RANMAN」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_rdrose",
+ "englishUsText":"I ♥ 「Red Rose Evangel」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Red Rose Evangel」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Red Rose Evangel」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Red Rose Evangel」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Red Rose Evangel」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Red Rose Evangel」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Red Rose Evangel」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_d96can",
+ "englishUsText":"I ♥ 「DOKU LO CANdy♡」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「DOKU LO CANdy♡」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「DOKU LO CANdy♡」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「DOKU LO CANdy♡」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「DOKU LO CANdy♡」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「DOKU LO CANdy♡」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「DOKU LO CANdy♡」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_rot",
+ "englishUsText":"I ♥ 「SAITAMA 2000」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SAITAMA 2000」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SAITAMA 2000」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SAITAMA 2000」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SAITAMA 2000」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SAITAMA 2000」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SAITAMA 2000」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_rot4",
+ "englishUsText":"I ♥ 「MADA SAITAMA 2000」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「MADA SAITAMA 2000」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「MADA SAITAMA 2000」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「MADA SAITAMA 2000」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「MADA SAITAMA 2000」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「MADA SAITAMA 2000」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「MADA SAITAMA 2000」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_mikuse",
+ "englishUsText":"I ♥ 「Senbonzakura」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Senbonzakura」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Senbonzakura」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Senbonzakura」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Senbonzakura」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Senbonzakura」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Senbonzakura」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_omirai",
+ "englishUsText":"I ♥ 「Original MIRAI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Original MIRAI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Original MIRAI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Original MIRAI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Original MIRAI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Original MIRAI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Original MIRAI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_ymtgen",
+ "englishUsText":"I ♥ 「YUME TO GENJITSU NO KYOUKAISEN」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「YUME TO GENJITSU NO KYOUKAISEN」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「YUME TO GENJITSU NO KYOUKAISEN」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「YUME TO GENJITSU NO KYOUKAISEN」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「YUME TO GENJITSU NO KYOUKAISEN」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「YUME TO GENJITSU NO KYOUKAISEN」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「YUME TO GENJITSU NO KYOUKAISEN」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_msclht",
+ "englishUsText":"I ♥ 「My Muscle Heart」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「My Muscle Heart」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「My Muscle Heart」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「My Muscle Heart」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「My Muscle Heart」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「My Muscle Heart」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「My Muscle Heart」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_chaost",
+ "englishUsText":"I ♥ 「!!!Chaos Time!!!」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「!!!Chaos Time!!!」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「!!!Chaos Time!!!」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「!!!Chaos Time!!!」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「!!!Chaos Time!!!」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「!!!Chaos Time!!!」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「!!!Chaos Time!!!」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_souryu",
+ "englishUsText":"I ♥ 「SOURYU NO RAN」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SOURYU NO RAN」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SOURYU NO RAN」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SOURYU NO RAN」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SOURYU NO RAN」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SOURYU NO RAN」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SOURYU NO RAN」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_2ge8ji",
+ "englishUsText":"I ♥ 「Koi」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Koi」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Koi」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Koi」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Koi」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Koi」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Koi」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_kyksmj",
+ "englishUsText":"I ♥ 「Silent Majority」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Silent Majority」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Silent Majority」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Silent Majority」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Silent Majority」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Silent Majority」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Silent Majority」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_krbld",
+ "englishUsText":"I ♥ 「Be The One」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Be The One」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Be The One」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Be The One」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Be The One」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Be The One」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Be The One」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_miku39",
+ "englishUsText":"I ♥ 「Mikumiku Ni Shiteageru♪【Shiteyanyo】」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Mikumiku Ni Shiteageru♪【Shiteyanyo】」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Mikumiku Ni Shiteageru♪【Shiteyanyo】」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Mikumiku Ni Shiteageru♪【Shiteyanyo】」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Mikumiku Ni Shiteageru♪【Shiteyanyo】」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Mikumiku Ni Shiteageru♪【Shiteyanyo】」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Mikumiku Ni Shiteageru♪【Shiteyanyo】」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_mikuer",
+ "englishUsText":"I ♥ 「HATSUNE MIKU No Shoushitsu -Gekijouban-」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HATSUNE MIKU No Shoushitsu -Gekijouban-」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HATSUNE MIKU No Shoushitsu -Gekijouban-」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HATSUNE MIKU No Shoushitsu -Gekijouban-」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HATSUNE MIKU No Shoushitsu -Gekijouban-」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HATSUNE MIKU No Shoushitsu -Gekijouban-」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HATSUNE MIKU No Shoushitsu -Gekijouban-」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_otomus",
+ "englishUsText":"I ♥ 「OTOMUSHI WO TSUKAMAERO!」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「OTOMUSHI WO TSUKAMAERO!」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「OTOMUSHI WO TSUKAMAERO!」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「OTOMUSHI WO TSUKAMAERO!」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「OTOMUSHI WO TSUKAMAERO!」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「OTOMUSHI WO TSUKAMAERO!」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「OTOMUSHI WO TSUKAMAERO!」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_ymyrp4",
+ "englishUsText":"I ♥ 「BOUKYAKU NO Tír na nÓg」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「BOUKYAKU NO Tír na nÓg」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「BOUKYAKU NO Tír na nÓg」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「BOUKYAKU NO Tír na nÓg」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「BOUKYAKU NO Tír na nÓg」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「BOUKYAKU NO Tír na nÓg」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「BOUKYAKU NO Tír na nÓg」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_warya",
+ "englishUsText":"I ♥ 「SAYONARA Varya」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SAYONARA Varya」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SAYONARA Varya」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SAYONARA Varya」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SAYONARA Varya」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SAYONARA Varya」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SAYONARA Varya」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_snyq",
+ "englishUsText":"I ♥ 「SHOUNIN YOK-Q」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SHOUNIN YOK-Q」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SHOUNIN YOK-Q」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SHOUNIN YOK-Q」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SHOUNIN YOK-Q」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SHOUNIN YOK-Q」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SHOUNIN YOK-Q」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_dsadvn",
+ "englishUsText":"I ♥ 「D′s Adventure Note」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「D′s Adventure Note」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「D′s Adventure Note」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「D′s Adventure Note」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「D′s Adventure Note」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「D′s Adventure Note」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「D′s Adventure Note」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_coro4",
+ "englishUsText":"I ♥ 「CoroCoro Comic 40th Anniversary Song」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「CoroCoro Comic 40th Anniversary Song」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「CoroCoro Comic 40th Anniversary Song」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「CoroCoro Comic 40th Anniversary Song」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「CoroCoro Comic 40th Anniversary Song」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「CoroCoro Comic 40th Anniversary Song」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「CoroCoro Comic 40th Anniversary Song」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_589him",
+ "englishUsText":"I ♥ 「RUROU NO KOHAKU HIME」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「RUROU NO KOHAKU HIME」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「RUROU NO KOHAKU HIME」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「RUROU NO KOHAKU HIME」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「RUROU NO KOHAKU HIME」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「RUROU NO KOHAKU HIME」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「RUROU NO KOHAKU HIME」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_tuku43",
+ "englishUsText":"I ♥ 「TSUKUYOMI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「TSUKUYOMI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「TSUKUYOMI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「TSUKUYOMI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「TSUKUYOMI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「TSUKUYOMI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「TSUKUYOMI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_7fuku",
+ "englishUsText":"I ♥ 「GEKIUN!SHICHIFUKU Happy Crew」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「GEKIUN!SHICHIFUKU Happy Crew」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「GEKIUN!SHICHIFUKU Happy Crew」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「GEKIUN!SHICHIFUKU Happy Crew」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「GEKIUN!SHICHIFUKU Happy Crew」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「GEKIUN!SHICHIFUKU Happy Crew」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「GEKIUN!SHICHIFUKU Happy Crew」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_orochi",
+ "englishUsText":"I ♥ 「8OROCHI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「8OROCHI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「8OROCHI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「8OROCHI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「8OROCHI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「8OROCHI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「8OROCHI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_hkgmag",
+ "englishUsText":"I ♥ 「HOUKAGO☆Magician」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HOUKAGO☆Magician」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HOUKAGO☆Magician」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HOUKAGO☆Magician」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HOUKAGO☆Magician」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HOUKAGO☆Magician」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HOUKAGO☆Magician」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_tongat",
+ "englishUsText":"I ♥ 「TONGACHIN」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「TONGACHIN」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「TONGACHIN」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「TONGACHIN」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「TONGACHIN」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「TONGACHIN」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「TONGACHIN」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_ta5ta5",
+ "englishUsText":"I ♥ 「Turquoise Tachometer」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Turquoise Tachometer」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Turquoise Tachometer」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Turquoise Tachometer」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Turquoise Tachometer」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Turquoise Tachometer」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Turquoise Tachometer」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_glokey",
+ "englishUsText":"I ♥ 「Gloria」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Gloria」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Gloria」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Gloria」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Gloria」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Gloria」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Gloria」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_allimh",
+ "englishUsText":"I ♥ 「All In My Heart」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「All In My Heart」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「All In My Heart」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「All In My Heart」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「All In My Heart」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「All In My Heart」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「All In My Heart」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_goth",
+ "englishUsText":"I ♥ 「DON'T CUT」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「DON'T CUT」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「DON'T CUT」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「DON'T CUT」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「DON'T CUT」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「DON'T CUT」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「DON'T CUT」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"gasha_title",
+ "englishUsText":"Treasure Boxes",
+ "englishUsFontType":1,
+ "frenchText":"Coffres au trésor",
+ "frenchFontType":1,
+ "italianText":"Scrigni",
+ "italianFontType":1,
+ "germanText":"Schatzkisten",
+ "germanFontType":1,
+ "spanishText":"Cajas de tesoro",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cajas de tesoro",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Caixas de Tesouro",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"gasha_box_single",
+ "englishUsText":"1 Treasure Box",
+ "englishUsFontType":1,
+ "frenchText":"1 coffre au trésor",
+ "frenchFontType":1,
+ "italianText":"1 scrigno",
+ "italianFontType":1,
+ "germanText":"1 Schatzkiste",
+ "germanFontType":1,
+ "spanishText":"1 caja de tesoro",
+ "spanishFontType":1,
+ "neutralSpanishText":"1 caja de tesoro",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"1 Caixa de Tesouro",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"gasha_box_multi",
+ "englishUsText":"5 Treasure Boxes",
+ "englishUsFontType":1,
+ "frenchText":"5 coffres au trésor",
+ "frenchFontType":1,
+ "italianText":"5 scrigni",
+ "italianFontType":1,
+ "germanText":"5 Schatzkisten",
+ "germanFontType":1,
+ "spanishText":"5 cajas de tesoro",
+ "spanishFontType":1,
+ "neutralSpanishText":"5 cajas de tesoro",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"5 Caixas de Tesouro",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"gasha_guide",
+ "englishUsText":"Use DON coins to get treasure boxes!",
+ "englishUsFontType":1,
+ "frenchText":"Utilise des pièces DON pour gagner des coffres au trésor !",
+ "frenchFontType":1,
+ "italianText":"Usa monete DON per ottenere scrigni!",
+ "italianFontType":1,
+ "germanText":"Hol dir Schatzkisten mit DON-Münzen!",
+ "germanFontType":1,
+ "spanishText":"Usa monedas DON para conseguir cajas de tesoro.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Usa monedas DON para conseguir cajas de tesoro.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Use moedas DON para obter caixas de tesouro!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"gasha_complete_rate",
+ "englishUsText":"Item Completion",
+ "englishUsFontType":1,
+ "frenchText":"Objets obtenus",
+ "frenchFontType":1,
+ "italianText":"Progresso oggetto",
+ "italianFontType":1,
+ "germanText":"Objektabschluss",
+ "germanFontType":1,
+ "spanishText":"Objetos completados",
+ "spanishFontType":1,
+ "neutralSpanishText":"Objetos completados",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conclusão de itens",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"gasha_complete_rate_data",
+ "englishUsText":"%s%%",
+ "englishUsFontType":1,
+ "frenchText":"%s%%",
+ "frenchFontType":1,
+ "italianText":"%s%%",
+ "italianFontType":1,
+ "germanText":"%s%%",
+ "germanFontType":1,
+ "spanishText":"%s%%",
+ "spanishFontType":1,
+ "neutralSpanishText":"%s%%",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"%s%%",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"gasha_complete_rate_word",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"gasha_guide_playerselect",
+ "englishUsText":"Please select a player.",
+ "englishUsFontType":1,
+ "frenchText":"Choisis un joueur.",
+ "frenchFontType":1,
+ "italianText":"Seleziona un giocatore.",
+ "italianFontType":1,
+ "germanText":"Wähle einen Spieler.",
+ "germanFontType":1,
+ "spanishText":"Selecciona a un jugador.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Selecciona a un jugador.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Selecione um jogador.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"gasha_help",
+ "englishUsText":"・You can use DON coins here to get treasure boxes.\n\n・DON coins can be obtained by getting bingos in the mission bingo game.\n\n・Items are divided into instruments, hats, outfits, hats and outfits, face paint,\ncostumes, mini characters, titles, and greetings.\n\n・Not all boxes contain items.",
+ "englishUsFontType":1,
+ "frenchText":"・Tu peux utiliser des pièces DON pour gagner des coffres au trésor.\n\n・Les pièces DON s'obtiennent en marquant des bingos dans le jeu du bingo.\n\n・Objets à gagner : instruments, chapeaux, tenues, costumes,\nmaquillages, mini personnages, titres et salutations.\n\n・Tous les coffres ne contiennent pas forcément des objets.",
+ "frenchFontType":1,
+ "italianText":"・Qui puoi spendere monete DON per ottenere scrigni.\n\n・Acquisisci monete DON facendo bingo nelle missioni bingo.\n\n・Gli oggetti sono divisi in strumenti, copricapo, completi,\ncostumi, mini-personaggi, titoli e saluti.\n\n・Non tutti gli scrigni contengono oggetti.",
+ "italianFontType":1,
+ "germanText":"Du kannst dir hier mit Don-Münzen Schatzkisten holen.\n\nDON-Münzen erhältst du über Bingos im Missions-Bingospiel.\n\nEs gibt Instrumente, Hüte, Outfits und Gesichtsbemalungen,\naußerdem Kostüme, Mini-Charaktere, Titel und Begrüßungen.\n\nNicht alle Kisten enthalten Objekte.",
+ "germanFontType":1,
+ "spanishText":"・Aquí usas las monedas DON para adquirir cajas de tesoro.\n\n・Las monedas DON se obtienen consiguiendo\nbingos en el juego del bingo.\n\n・Los objetos se dividen en instrumentos, sombreros,\natuendos, sombreros y atuendos, pintura facial, trajes,\nminipersonajes, títulos y saludos.\n\n・No todas las cajas contienen objetos.",
+ "spanishFontType":1,
+ "neutralSpanishText":"・Aquí usas las monedas DON para adquirir cajas de tesoro.\n\n・Las monedas DON se obtienen consiguiendo\nbingos en el juego del bingo.\n\n・Los objetos se dividen en instrumentos, sombreros,\natuendos, sombreros y atuendos, pintura facial, trajes,\nminipersonajes, títulos y saludos.\n\n・No todas las cajas contienen objetos.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"・Pode usar moedas DON aqui e obter caixas de tesouro.\n\n・Moedas DON são obtidas com bingos no bingo de missões.\n\n・Itens se dividem em instrumentos, chapéus, trajes,\nchapéu+traje, pintura facial, fantasias, personagens mini,\n\ntítulos e saudações.・Nem todas as caixas contêm itens.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"gasha_help_title",
+ "englishUsText":"Help",
+ "englishUsFontType":1,
+ "frenchText":"Aide",
+ "frenchFontType":1,
+ "italianText":"Aiuto",
+ "italianFontType":1,
+ "germanText":"Hilfe",
+ "germanFontType":1,
+ "spanishText":"Ayuda",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ayuda",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ajuda",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"gasha_completed",
+ "englishUsText":"All treasure boxes obtained.",
+ "englishUsFontType":1,
+ "frenchText":"Tu as obtenu tous les coffres.",
+ "frenchFontType":1,
+ "italianText":"Tutti gli scrigni ottenuti.",
+ "italianFontType":1,
+ "germanText":"Alle Schatzkisten erhalten.",
+ "germanFontType":1,
+ "spanishText":"Conseguidas todas las cajas.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conseguidas todas las cajas.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Obteve todas as cx. de tesouro.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"gasha_bad_multi",
+ "englishUsText":"You don’t have enough treasure boxes.",
+ "englishUsFontType":1,
+ "frenchText":"Il n'y a plus assez de coffres.",
+ "frenchFontType":1,
+ "italianText":"Non ci sono abbastanza scrigni.",
+ "italianFontType":1,
+ "germanText":"Es gibt nicht genug Schatzkisten.",
+ "germanFontType":1,
+ "spanishText":"No hay bastantes cajas de tesoro.",
+ "spanishFontType":1,
+ "neutralSpanishText":"No tienes bastantes cajas de tesoro.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Não tem caixas de tesouro o bastante.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"gasha_shortage",
+ "englishUsText":"You don’t have enough DON coins.",
+ "englishUsFontType":1,
+ "frenchText":"Tu n'as pas assez de pièces DON.",
+ "frenchFontType":1,
+ "italianText":"Non hai monete DON sufficienti.",
+ "italianFontType":1,
+ "germanText":"Du hast nicht genug DON-Münzen.",
+ "germanFontType":1,
+ "spanishText":"No tienes bastantes monedas DON.",
+ "spanishFontType":1,
+ "neutralSpanishText":"No tienes suficientes monedas DON.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Não tem moedas DON o suficiente.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort",
+ "englishUsText":"Sort Filter",
+ "englishUsFontType":1,
+ "frenchText":"Filtre",
+ "frenchFontType":1,
+ "italianText":"Filtro",
+ "italianFontType":1,
+ "germanText":"Sortierfilter",
+ "germanFontType":1,
+ "spanishText":"Filtrar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Filtrar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Organizar filtro",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname",
+ "englishUsText":"Song Name",
+ "englishUsFontType":1,
+ "frenchText":"Nom de chanson",
+ "frenchFontType":1,
+ "italianText":"Titolo canzone",
+ "italianFontType":1,
+ "germanText":"Song-Name",
+ "germanFontType":1,
+ "spanishText":"Nombre de canción",
+ "spanishFontType":1,
+ "neutralSpanishText":"Nombre de la canción",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Nome da música",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_description",
+ "englishUsText":"Sort songs by name",
+ "englishUsFontType":1,
+ "frenchText":"Trier les chansons par nom",
+ "frenchFontType":1,
+ "italianText":"Ordina canzoni per titolo",
+ "italianFontType":1,
+ "germanText":"Songs nach Name sortieren",
+ "germanFontType":1,
+ "spanishText":"Ordenar canciones por nombre",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ordenar canciones por nombre",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Organizar músicas pelo nome",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_buy",
+ "englishUsText":"Purchase Status",
+ "englishUsFontType":1,
+ "frenchText":"Statut d'achat",
+ "frenchFontType":1,
+ "italianText":"Stato d'acquisto",
+ "italianFontType":1,
+ "germanText":"Kaufstatus",
+ "germanFontType":1,
+ "spanishText":"Estado de compra",
+ "spanishFontType":1,
+ "neutralSpanishText":"Estado de compra",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Status de compra",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_buy_noonly",
+ "englishUsText":"Not Purchased",
+ "englishUsFontType":1,
+ "frenchText":"Non achetée",
+ "frenchFontType":1,
+ "italianText":"Non acquistata",
+ "italianFontType":1,
+ "germanText":"Nicht gekauft",
+ "germanFontType":1,
+ "spanishText":"No compradas",
+ "spanishFontType":1,
+ "neutralSpanishText":"No adquirido",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Não comprou",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_buy_purchased",
+ "englishUsText":"Purchased",
+ "englishUsFontType":1,
+ "frenchText":"Achetée",
+ "frenchFontType":1,
+ "italianText":"Acquistata",
+ "italianFontType":1,
+ "germanText":"Gekauft",
+ "germanFontType":1,
+ "spanishText":"Comprada",
+ "spanishFontType":1,
+ "neutralSpanishText":"Adquirido",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Já comprou",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_buy_description",
+ "englishUsText":"Filter songs by purchase status",
+ "englishUsFontType":1,
+ "frenchText":"Trier les chansons par statut d'achat",
+ "frenchFontType":1,
+ "italianText":"Filtra canzoni per stato d'acquisto",
+ "italianFontType":1,
+ "germanText":"Songs nach Kaufstatus filtern",
+ "germanFontType":1,
+ "spanishText":"Filtrar canciones por estado de compra",
+ "spanishFontType":1,
+ "neutralSpanishText":"Filtrar canciones por estado de compra",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Filtrar músicas pelo status de compra",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_buy_noonly_description",
+ "englishUsText":"Show only unpurchased songs",
+ "englishUsFontType":1,
+ "frenchText":"Ne montrer que les chansons non achetées",
+ "frenchFontType":1,
+ "italianText":"Mostra solo canzoni non acquistate",
+ "italianFontType":1,
+ "germanText":"Nur nicht gekaufte Songs zeigen",
+ "germanFontType":1,
+ "spanishText":"Mostrar solo canciones no compradas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mostrar canciones no compradas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Exibir apenas músicas não compradas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_buy_purchased_description",
+ "englishUsText":"Show only purchased songs",
+ "englishUsFontType":1,
+ "frenchText":"Ne montrer que les chansons achetées",
+ "frenchFontType":1,
+ "italianText":"Mostra solo canzoni acquistate",
+ "italianFontType":1,
+ "germanText":"Nur gekaufte Songs zeigen",
+ "germanFontType":1,
+ "spanishText":"Mostrar solo canciones compradas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mostrar canciones compradas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Exibir apenas músicas compradas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_recommended",
+ "englishUsText":"Recommended Only",
+ "englishUsFontType":1,
+ "frenchText":"Recommandées uniqu.",
+ "frenchFontType":1,
+ "italianText":"Solo consigliate",
+ "italianFontType":1,
+ "germanText":"Nur Empfohlene",
+ "germanFontType":1,
+ "spanishText":"Solo recomendadas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Solo recomendadas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Apenas recomendadas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_recommended_description",
+ "englishUsText":"An option to show only recommended songs",
+ "englishUsFontType":1,
+ "frenchText":"Une option pour ne montrer que les chansons recommandées",
+ "frenchFontType":1,
+ "italianText":"Opzione che consente di mostrare solo le canzoni consigliate",
+ "italianFontType":1,
+ "germanText":"Eine Option, durch die nur empfohlene Songs angezeigt werden.",
+ "germanFontType":1,
+ "spanishText":"Esta opción solo muestra canciones recomendadas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Opción para que se muestren\nsolo las canciones recomendadas.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Com esta opção, apenas músicas\nrecomendadas são exibidas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_recommended_only_description",
+ "englishUsText":"Show only recommended songs",
+ "englishUsFontType":1,
+ "frenchText":"Ne montrer que les chansons recommandées",
+ "frenchFontType":1,
+ "italianText":"Mostra solo le canzoni consigliate",
+ "italianFontType":1,
+ "germanText":"Nur empfohlene Songs zeigen",
+ "germanFontType":1,
+ "spanishText":"Mostrar solo canciones recomendadas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mostrar solo canciones recomendadas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Exibe apenas músicas recomendadas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_recommended",
+ "englishUsText":"Recommended",
+ "englishUsFontType":1,
+ "frenchText":"Recommandée",
+ "frenchFontType":1,
+ "italianText":"Consigliata",
+ "italianFontType":1,
+ "germanText":"Empfohlen",
+ "germanFontType":1,
+ "spanishText":"Recomendada",
+ "spanishFontType":1,
+ "neutralSpanishText":"Recomendadas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Recomendadas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_error",
+ "englishUsText":"Could not find content.\nReturning to mode selection.",
+ "englishUsFontType":1,
+ "frenchText":"Impossible de trouver du contenu.\nRetour au choix du mode.",
+ "frenchFontType":1,
+ "italianText":"Impossibile trovare i contenuti richiesti.\nTornerai alla selezione delle modalità.",
+ "italianFontType":1,
+ "germanText":"Keine Inhalte gefunden.\nZurück zur Modusauswahl.",
+ "germanFontType":1,
+ "spanishText":"No se ha encontrado contenido.\nVolviendo a la selección de modo.",
+ "spanishFontType":1,
+ "neutralSpanishText":"No se encontraron contenidos.\nRegresarás a Elegir modo.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Não foi possível achar o conteúdo.\nRetornando à seleção de modos.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_a",
+ "englishUsText":"A",
+ "englishUsFontType":1,
+ "frenchText":"A",
+ "frenchFontType":1,
+ "italianText":"A",
+ "italianFontType":1,
+ "germanText":"A",
+ "germanFontType":1,
+ "spanishText":"A",
+ "spanishFontType":1,
+ "neutralSpanishText":"A",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"A",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_b",
+ "englishUsText":"B",
+ "englishUsFontType":1,
+ "frenchText":"B",
+ "frenchFontType":1,
+ "italianText":"B",
+ "italianFontType":1,
+ "germanText":"B",
+ "germanFontType":1,
+ "spanishText":"B",
+ "spanishFontType":1,
+ "neutralSpanishText":"B",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"B",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_c",
+ "englishUsText":"C",
+ "englishUsFontType":1,
+ "frenchText":"C",
+ "frenchFontType":1,
+ "italianText":"C",
+ "italianFontType":1,
+ "germanText":"C",
+ "germanFontType":1,
+ "spanishText":"C",
+ "spanishFontType":1,
+ "neutralSpanishText":"C",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"C",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_d",
+ "englishUsText":"D",
+ "englishUsFontType":1,
+ "frenchText":"D",
+ "frenchFontType":1,
+ "italianText":"D",
+ "italianFontType":1,
+ "germanText":"D",
+ "germanFontType":1,
+ "spanishText":"D",
+ "spanishFontType":1,
+ "neutralSpanishText":"D",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"D",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_e",
+ "englishUsText":"E",
+ "englishUsFontType":1,
+ "frenchText":"E",
+ "frenchFontType":1,
+ "italianText":"E",
+ "italianFontType":1,
+ "germanText":"E",
+ "germanFontType":1,
+ "spanishText":"E",
+ "spanishFontType":1,
+ "neutralSpanishText":"E",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"E",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_f",
+ "englishUsText":"F",
+ "englishUsFontType":1,
+ "frenchText":"F",
+ "frenchFontType":1,
+ "italianText":"F",
+ "italianFontType":1,
+ "germanText":"F",
+ "germanFontType":1,
+ "spanishText":"F",
+ "spanishFontType":1,
+ "neutralSpanishText":"F",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"F",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_g",
+ "englishUsText":"G",
+ "englishUsFontType":1,
+ "frenchText":"G",
+ "frenchFontType":1,
+ "italianText":"G",
+ "italianFontType":1,
+ "germanText":"G",
+ "germanFontType":1,
+ "spanishText":"G",
+ "spanishFontType":1,
+ "neutralSpanishText":"G",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"G",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_h",
+ "englishUsText":"H",
+ "englishUsFontType":1,
+ "frenchText":"H",
+ "frenchFontType":1,
+ "italianText":"H",
+ "italianFontType":1,
+ "germanText":"H",
+ "germanFontType":1,
+ "spanishText":"H",
+ "spanishFontType":1,
+ "neutralSpanishText":"H",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"H",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_i",
+ "englishUsText":"I",
+ "englishUsFontType":1,
+ "frenchText":"I",
+ "frenchFontType":1,
+ "italianText":"I",
+ "italianFontType":1,
+ "germanText":"I",
+ "germanFontType":1,
+ "spanishText":"I",
+ "spanishFontType":1,
+ "neutralSpanishText":"I",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"I",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_j",
+ "englishUsText":"J",
+ "englishUsFontType":1,
+ "frenchText":"J",
+ "frenchFontType":1,
+ "italianText":"J",
+ "italianFontType":1,
+ "germanText":"J",
+ "germanFontType":1,
+ "spanishText":"J",
+ "spanishFontType":1,
+ "neutralSpanishText":"J",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"J",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_k",
+ "englishUsText":"K",
+ "englishUsFontType":1,
+ "frenchText":"K",
+ "frenchFontType":1,
+ "italianText":"K",
+ "italianFontType":1,
+ "germanText":"K",
+ "germanFontType":1,
+ "spanishText":"K",
+ "spanishFontType":1,
+ "neutralSpanishText":"K",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"K",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_l",
+ "englishUsText":"L",
+ "englishUsFontType":1,
+ "frenchText":"L",
+ "frenchFontType":1,
+ "italianText":"L",
+ "italianFontType":1,
+ "germanText":"L",
+ "germanFontType":1,
+ "spanishText":"L",
+ "spanishFontType":1,
+ "neutralSpanishText":"L",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"L",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_m",
+ "englishUsText":"M",
+ "englishUsFontType":1,
+ "frenchText":"M",
+ "frenchFontType":1,
+ "italianText":"M",
+ "italianFontType":1,
+ "germanText":"M",
+ "germanFontType":1,
+ "spanishText":"M",
+ "spanishFontType":1,
+ "neutralSpanishText":"M",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"M",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_n",
+ "englishUsText":"N",
+ "englishUsFontType":1,
+ "frenchText":"N",
+ "frenchFontType":1,
+ "italianText":"N",
+ "italianFontType":1,
+ "germanText":"N",
+ "germanFontType":1,
+ "spanishText":"N",
+ "spanishFontType":1,
+ "neutralSpanishText":"N",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"N",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_o",
+ "englishUsText":"O",
+ "englishUsFontType":1,
+ "frenchText":"O",
+ "frenchFontType":1,
+ "italianText":"O",
+ "italianFontType":1,
+ "germanText":"O",
+ "germanFontType":1,
+ "spanishText":"O",
+ "spanishFontType":1,
+ "neutralSpanishText":"O",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"O",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_p",
+ "englishUsText":"P",
+ "englishUsFontType":1,
+ "frenchText":"P",
+ "frenchFontType":1,
+ "italianText":"P",
+ "italianFontType":1,
+ "germanText":"P",
+ "germanFontType":1,
+ "spanishText":"P",
+ "spanishFontType":1,
+ "neutralSpanishText":"P",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"P",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_q",
+ "englishUsText":"Q",
+ "englishUsFontType":1,
+ "frenchText":"Q",
+ "frenchFontType":1,
+ "italianText":"Q",
+ "italianFontType":1,
+ "germanText":"Q",
+ "germanFontType":1,
+ "spanishText":"Q",
+ "spanishFontType":1,
+ "neutralSpanishText":"Q",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Q",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_r",
+ "englishUsText":"R",
+ "englishUsFontType":1,
+ "frenchText":"R",
+ "frenchFontType":1,
+ "italianText":"R",
+ "italianFontType":1,
+ "germanText":"R",
+ "germanFontType":1,
+ "spanishText":"R",
+ "spanishFontType":1,
+ "neutralSpanishText":"R",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"R",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_s",
+ "englishUsText":"S",
+ "englishUsFontType":1,
+ "frenchText":"S",
+ "frenchFontType":1,
+ "italianText":"S",
+ "italianFontType":1,
+ "germanText":"S",
+ "germanFontType":1,
+ "spanishText":"S",
+ "spanishFontType":1,
+ "neutralSpanishText":"S",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"S",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_t",
+ "englishUsText":"T",
+ "englishUsFontType":1,
+ "frenchText":"T",
+ "frenchFontType":1,
+ "italianText":"T",
+ "italianFontType":1,
+ "germanText":"T",
+ "germanFontType":1,
+ "spanishText":"T",
+ "spanishFontType":1,
+ "neutralSpanishText":"T",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"T",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_u",
+ "englishUsText":"U",
+ "englishUsFontType":1,
+ "frenchText":"U",
+ "frenchFontType":1,
+ "italianText":"U",
+ "italianFontType":1,
+ "germanText":"U",
+ "germanFontType":1,
+ "spanishText":"U",
+ "spanishFontType":1,
+ "neutralSpanishText":"U",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"U",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_v",
+ "englishUsText":"V",
+ "englishUsFontType":1,
+ "frenchText":"V",
+ "frenchFontType":1,
+ "italianText":"V",
+ "italianFontType":1,
+ "germanText":"V",
+ "germanFontType":1,
+ "spanishText":"V",
+ "spanishFontType":1,
+ "neutralSpanishText":"V",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"V",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_w",
+ "englishUsText":"W",
+ "englishUsFontType":1,
+ "frenchText":"W",
+ "frenchFontType":1,
+ "italianText":"W",
+ "italianFontType":1,
+ "germanText":"W",
+ "germanFontType":1,
+ "spanishText":"W",
+ "spanishFontType":1,
+ "neutralSpanishText":"W",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"W",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_x",
+ "englishUsText":"X",
+ "englishUsFontType":1,
+ "frenchText":"X",
+ "frenchFontType":1,
+ "italianText":"X",
+ "italianFontType":1,
+ "germanText":"X",
+ "germanFontType":1,
+ "spanishText":"X",
+ "spanishFontType":1,
+ "neutralSpanishText":"X",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"X",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_y",
+ "englishUsText":"Y",
+ "englishUsFontType":1,
+ "frenchText":"Y",
+ "frenchFontType":1,
+ "italianText":"Y",
+ "italianFontType":1,
+ "germanText":"Y",
+ "germanFontType":1,
+ "spanishText":"Y",
+ "spanishFontType":1,
+ "neutralSpanishText":"Y",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Y",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_z",
+ "englishUsText":"Z",
+ "englishUsFontType":1,
+ "frenchText":"Z",
+ "frenchFontType":1,
+ "italianText":"Z",
+ "italianFontType":1,
+ "germanText":"Z",
+ "germanFontType":1,
+ "spanishText":"Z",
+ "spanishFontType":1,
+ "neutralSpanishText":"Z",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Z",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_sort_songname_etc",
+ "englishUsText":"Other",
+ "englishUsFontType":1,
+ "frenchText":"Autre",
+ "frenchFontType":1,
+ "italianText":"Altro",
+ "italianFontType":1,
+ "germanText":"Andere",
+ "germanFontType":1,
+ "spanishText":"Otros",
+ "spanishFontType":1,
+ "neutralSpanishText":"Otro",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Outro",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_update",
+ "englishUsText":"Updating Store Data",
+ "englishUsFontType":1,
+ "frenchText":"Mise à jour des données de la boutique",
+ "frenchFontType":1,
+ "italianText":"Aggiornamento dati negozio",
+ "italianFontType":1,
+ "germanText":"Aktualisiere Shop-Daten",
+ "germanFontType":1,
+ "spanishText":"Actualizando datos de la tienda",
+ "spanishFontType":1,
+ "neutralSpanishText":"Actualizando datos de la tienda",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Atualizando dados salvos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"course_mania",
+ "englishUsText":"Extreme",
+ "englishUsFontType":1,
+ "frenchText":"Extrême",
+ "frenchFontType":1,
+ "italianText":"Estremo",
+ "italianFontType":1,
+ "germanText":"Extrem",
+ "germanFontType":1,
+ "spanishText":"Extrema",
+ "spanishFontType":1,
+ "neutralSpanishText":"Extrema",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Extrema",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"course_ura",
+ "englishUsText":"Extreme",
+ "englishUsFontType":1,
+ "frenchText":"Extrême",
+ "frenchFontType":1,
+ "italianText":"Estremo",
+ "italianFontType":1,
+ "germanText":"Extrem",
+ "germanFontType":1,
+ "spanishText":"Extrema",
+ "spanishFontType":1,
+ "neutralSpanishText":"Extrema",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Extrema",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"course_easy",
+ "englishUsText":"Easy",
+ "englishUsFontType":1,
+ "frenchText":"Facile",
+ "frenchFontType":1,
+ "italianText":"Facile",
+ "italianFontType":1,
+ "germanText":"Leicht",
+ "germanFontType":1,
+ "spanishText":"Fácil",
+ "spanishFontType":1,
+ "neutralSpanishText":"Fácil",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Fácil",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"course_normal",
+ "englishUsText":"Normal",
+ "englishUsFontType":1,
+ "frenchText":"Normal",
+ "frenchFontType":1,
+ "italianText":"Normale",
+ "italianFontType":1,
+ "germanText":"Normal",
+ "germanFontType":1,
+ "spanishText":"Normal",
+ "spanishFontType":1,
+ "neutralSpanishText":"Normal",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Normal",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"course_hard",
+ "englishUsText":"Hard",
+ "englishUsFontType":1,
+ "frenchText":"Difficile",
+ "frenchFontType":1,
+ "italianText":"Difficile",
+ "italianFontType":1,
+ "germanText":"Schwer",
+ "germanFontType":1,
+ "spanishText":"Difícil",
+ "spanishFontType":1,
+ "neutralSpanishText":"Difícil",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Difícil",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"clear",
+ "englishUsText":"Clear",
+ "englishUsFontType":1,
+ "frenchText":"Terminé",
+ "frenchFontType":1,
+ "italianText":"Completata",
+ "italianFontType":1,
+ "germanText":"Abschluss",
+ "germanFontType":1,
+ "spanishText":"Superada",
+ "spanishFontType":1,
+ "neutralSpanishText":"Superado",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Concluída",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"combo",
+ "englishUsText":"Combo",
+ "englishUsFontType":1,
+ "frenchText":"Combo",
+ "frenchFontType":1,
+ "italianText":"Combo",
+ "italianFontType":1,
+ "germanText":"Kombo",
+ "germanFontType":1,
+ "spanishText":"Combo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Combo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Combo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"combo_fukidasi",
+ "englishUsText":"Combo!",
+ "englishUsFontType":1,
+ "frenchText":"Combo !",
+ "frenchFontType":1,
+ "italianText":"Combo!",
+ "italianFontType":1,
+ "germanText":"Kombo!",
+ "germanFontType":1,
+ "spanishText":"¡Combo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Combo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Combo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"hiscore_update",
+ "englishUsText":"New High Score",
+ "englishUsFontType":1,
+ "frenchText":"Meilleur score !",
+ "frenchFontType":1,
+ "italianText":"Nuovo record",
+ "italianFontType":1,
+ "germanText":"Neuer Highscore",
+ "germanFontType":1,
+ "spanishText":"Nuevo récord",
+ "spanishFontType":1,
+ "neutralSpanishText":"Nuevo récord",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Novo recorde",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"genre_anime",
+ "englishUsText":"Anime",
+ "englishUsFontType":1,
+ "frenchText":"Anime",
+ "frenchFontType":1,
+ "italianText":"Anime",
+ "italianFontType":1,
+ "germanText":"Anime",
+ "germanFontType":1,
+ "spanishText":"Anime",
+ "spanishFontType":1,
+ "neutralSpanishText":"Anime",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Anime",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"genre_children",
+ "englishUsText":"Nursery",
+ "englishUsFontType":1,
+ "frenchText":"Comptines",
+ "frenchFontType":1,
+ "italianText":"Bambini",
+ "italianFontType":1,
+ "germanText":"Kinderzimmer",
+ "germanFontType":1,
+ "spanishText":"Guardería",
+ "spanishFontType":1,
+ "neutralSpanishText":"Guardería",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Cantigas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"genre_classic",
+ "englishUsText":"Classic",
+ "englishUsFontType":1,
+ "frenchText":"Classique",
+ "frenchFontType":1,
+ "italianText":"Classica",
+ "italianFontType":1,
+ "germanText":"Klassik",
+ "germanFontType":1,
+ "spanishText":"Clásica",
+ "spanishFontType":1,
+ "neutralSpanishText":"Clásico",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Clássicas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"genre_game",
+ "englishUsText":"Game Music",
+ "englishUsFontType":1,
+ "frenchText":"Musique de jeu",
+ "frenchFontType":1,
+ "italianText":"Videogiochi",
+ "italianFontType":1,
+ "germanText":"Spielmusik",
+ "germanFontType":1,
+ "spanishText":"Música de juegos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Música de juegos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Músicas de jogo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"genre_namco",
+ "englishUsText":"Namco Original",
+ "englishUsFontType":1,
+ "frenchText":"Namco Original",
+ "frenchFontType":1,
+ "italianText":"Originali Namco",
+ "italianFontType":1,
+ "germanText":"Namco-Originale",
+ "germanFontType":1,
+ "spanishText":"Namco original",
+ "spanishFontType":1,
+ "neutralSpanishText":"Namco original",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Originais Namco",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"genre_pops",
+ "englishUsText":"Pop",
+ "englishUsFontType":1,
+ "frenchText":"Pop",
+ "frenchFontType":1,
+ "italianText":"Pop",
+ "italianFontType":1,
+ "germanText":"Pop",
+ "germanFontType":1,
+ "spanishText":"Pop",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pop",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pop",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"genre_variety",
+ "englishUsText":"Variety",
+ "englishUsFontType":1,
+ "frenchText":"Variétés",
+ "frenchFontType":1,
+ "italianText":"Varia",
+ "italianFontType":1,
+ "germanText":"Verschieden",
+ "germanFontType":1,
+ "spanishText":"Varios",
+ "spanishFontType":1,
+ "neutralSpanishText":"Variedades",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Diversas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"genre_vocalo",
+ "englishUsText":"Vocaloid™",
+ "englishUsFontType":1,
+ "frenchText":"Vocaloid™",
+ "frenchFontType":1,
+ "italianText":"Vocaloid™",
+ "italianFontType":1,
+ "germanText":"Vocaloid™",
+ "germanFontType":1,
+ "spanishText":"Vocaloid™",
+ "spanishFontType":1,
+ "neutralSpanishText":"Vocaloid™",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vocaloid™",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"pause_continue",
+ "englishUsText":"Continue",
+ "englishUsFontType":1,
+ "frenchText":"Continuer",
+ "frenchFontType":1,
+ "italianText":"Continua",
+ "italianFontType":1,
+ "germanText":"Fortfahren",
+ "germanFontType":1,
+ "spanishText":"Continuar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Continuar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Continuar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"pause_song_select",
+ "englishUsText":"Back to Select Song",
+ "englishUsFontType":1,
+ "frenchText":"Retour au choix de la chanson",
+ "frenchFontType":1,
+ "italianText":"Vai a Selez. canzone",
+ "italianFontType":1,
+ "germanText":"Zurück zur Songwahl",
+ "germanFontType":1,
+ "spanishText":"Volver a Elegir canción",
+ "spanishFontType":1,
+ "neutralSpanishText":"Volver a Elegir canción",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ir à seleção de música",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"pause_retry",
+ "englishUsText":"Retry",
+ "englishUsFontType":1,
+ "frenchText":"Réessayer",
+ "frenchFontType":1,
+ "italianText":"Riprova",
+ "italianFontType":1,
+ "germanText":"Erneut versuchen",
+ "germanFontType":1,
+ "spanishText":"Reintentar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Reintentar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tentar novamente",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"pause_help",
+ "englishUsText":"View Help",
+ "englishUsFontType":1,
+ "frenchText":"Voir l'aide",
+ "frenchFontType":1,
+ "italianText":"Vedi aiuto",
+ "italianFontType":1,
+ "germanText":"Hilfe",
+ "germanFontType":1,
+ "spanishText":"Ver ayuda",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ver ayuda",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ver ajuda",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"pause_mode_select",
+ "englishUsText":"Back to Select Mode",
+ "englishUsFontType":1,
+ "frenchText":"Retour au choix du mode",
+ "frenchFontType":1,
+ "italianText":"Vai a Sel. modalità",
+ "italianFontType":1,
+ "germanText":"Zurück zur Moduswahl",
+ "germanFontType":1,
+ "spanishText":"Volver a Elegir modo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Volver a Elegir modo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ir à seleção de modo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"pause_menu",
+ "englishUsText":"Pause Menu",
+ "englishUsFontType":1,
+ "frenchText":"Menu pause",
+ "frenchFontType":1,
+ "italianText":"Menu di pausa",
+ "italianFontType":1,
+ "germanText":"Pausemenü",
+ "germanFontType":1,
+ "spanishText":"Menú de pausa",
+ "spanishFontType":1,
+ "neutralSpanishText":"Menú de pausa",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Menu de pausa",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"gavel",
+ "englishUsText":"Drumroll rapidly!",
+ "englishUsFontType":1,
+ "frenchText":"Roulement de tambour rapide !",
+ "frenchFontType":1,
+ "italianText":"Rullo rapido!",
+ "italianFontType":1,
+ "germanText":"Schn. Trommelw.!",
+ "germanFontType":1,
+ "spanishText":"¡Redobla rápido!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Redobla rápido!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Rufe depressa!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"bunki_up",
+ "englishUsText":"Level Up",
+ "englishUsFontType":1,
+ "frenchText":"Niveau supérieur",
+ "frenchFontType":1,
+ "italianText":"Livello ottenuto",
+ "italianFontType":1,
+ "germanText":"Neue St.",
+ "germanFontType":1,
+ "spanishText":"Subida de nivel",
+ "spanishFontType":1,
+ "neutralSpanishText":"Subida de nivel",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Subiu de nível",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"bunki_down",
+ "englishUsText":"Level Down",
+ "englishUsFontType":1,
+ "frenchText":"Niveau inférieur",
+ "frenchFontType":1,
+ "italianText":"Livello perso",
+ "italianFontType":1,
+ "germanText":"Level verloren",
+ "germanFontType":1,
+ "spanishText":"Pérdida de nivel",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pérdida de nivel",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Caiu de nível",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"bunki_pro",
+ "englishUsText":"Professional",
+ "englishUsFontType":1,
+ "frenchText":"Professionnel",
+ "frenchFontType":1,
+ "italianText":"Professionista",
+ "italianFontType":1,
+ "germanText":"Profi",
+ "germanFontType":1,
+ "spanishText":"Profesional",
+ "spanishFontType":1,
+ "neutralSpanishText":"Profesional",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Profissional",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"bunki_expert",
+ "englishUsText":"Master",
+ "englishUsFontType":1,
+ "frenchText":"Maître",
+ "frenchFontType":1,
+ "italianText":"Maestro",
+ "italianFontType":1,
+ "germanText":"Meister",
+ "germanFontType":1,
+ "spanishText":"Maestro",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"bunki_normal",
+ "englishUsText":"Normal",
+ "englishUsFontType":1,
+ "frenchText":"Normal",
+ "frenchFontType":1,
+ "italianText":"Normale",
+ "italianFontType":1,
+ "germanText":"Normal",
+ "germanFontType":1,
+ "spanishText":"Normal",
+ "spanishFontType":1,
+ "neutralSpanishText":"Normal",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Normal",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"renda",
+ "englishUsText":"Drumroll!",
+ "englishUsFontType":1,
+ "frenchText":"Roulement de tambour !",
+ "frenchFontType":1,
+ "italianText":"Rullo di tamburo!",
+ "italianFontType":1,
+ "germanText":"Trommelwirbel!",
+ "germanFontType":1,
+ "spanishText":"¡Redoble!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Redoble!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Rufo de tambor!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entry_eula_decline",
+ "englishUsText":"Decline",
+ "englishUsFontType":1,
+ "frenchText":"Refuser",
+ "frenchFontType":1,
+ "italianText":"Rifiuta",
+ "italianFontType":1,
+ "germanText":"Ablehnen",
+ "germanFontType":1,
+ "spanishText":"Rechazar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Rechazar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Recusar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entry_eula_accept",
+ "englishUsText":"Accept",
+ "englishUsFontType":1,
+ "frenchText":"Accepter",
+ "frenchFontType":1,
+ "italianText":"Accetta",
+ "italianFontType":1,
+ "germanText":"Annehmen",
+ "germanFontType":1,
+ "spanishText":"Aceptar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Aceptar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Aceitar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entry_eula_select_dialog_text",
+ "englishUsText":"Dear %s,\nPlease make sure to read the online service agreement\nand privacy policy.",
+ "englishUsFontType":1,
+ "frenchText":"Chère/Cher %s,\nMerci de bien vouloir lire notre contrat de service en ligne\net notre politique de confidentialité.",
+ "frenchFontType":1,
+ "italianText":"%s,\nassicurati di leggere l'Accordo sui servizi online\ne la Politica sulla privacy.",
+ "italianFontType":1,
+ "germanText":"Liebe(r) %s,\nbitte lies dir die Online-Nutzungsbedingungen\nund die Datenschutzrichtlinie durch.",
+ "germanFontType":1,
+ "spanishText":"Querido(a) %s:\nCerciórate de leer el acuerdo del servicio online\ny la política de privacidad.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Querido(a) %s:\nCerciórate de leer el acuerdo del servicio online\ny la política de privacidad.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Prezado(a) %s,\nCertifique-se de ler o acordo de serviço online\ne a política de privacidade.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entry_eula_select_dialog_title",
+ "englishUsText":"First-Time Players",
+ "englishUsFontType":1,
+ "frenchText":"Nouveau joueur",
+ "frenchFontType":1,
+ "italianText":"Principianti",
+ "italianFontType":1,
+ "germanText":"Neuer Spieler",
+ "germanFontType":1,
+ "spanishText":"Jugador recién llegado",
+ "spanishFontType":1,
+ "neutralSpanishText":"Jugadores recién llegados",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Jogadores de primeira vez",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entry_copy_title",
+ "englishUsText":"WARNING",
+ "englishUsFontType":1,
+ "frenchText":"ATTENTION",
+ "frenchFontType":1,
+ "italianText":"ATTENZIONE",
+ "italianFontType":1,
+ "germanText":"WARNUNG",
+ "germanFontType":1,
+ "spanishText":"ATENCIÓN",
+ "spanishFontType":1,
+ "neutralSpanishText":"ATENCIÓN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"AVISO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entry_copy_detail",
+ "englishUsText":"Using the internet to distribute game software\nwithout the creator’s permission,\nor to download it via illegal methods,\nis strictly prohibited by law.\n\nWe thank you for your understanding\nand cooperation.",
+ "englishUsFontType":1,
+ "frenchText":"Utiliser Internet pour distribuer un logiciel de jeu\nsans la permission de son créateur\nou le télécharger via des méthodes illégales\nest strictement interdit par la loi.\n\nMerci pour votre compréhension\net votre coopération.",
+ "frenchFontType":1,
+ "italianText":"Utilizzare Internet per distribuire il software di gioco\nsenza il permesso del suo creatore\no scaricarlo tramite metodi illegali\nè severamente proibito dalla legge.\n\nApprezziamo la tua comprensione e collaborazione.",
+ "italianFontType":1,
+ "germanText":"Spielsoftware ohne Erlaubnis des\nRechteinhabers über das Internet \nzu verteilen oder herunterzuladen, \nist verboten. \n\nVielen Dank für dein Verständnis \nund deine Kooperation.",
+ "germanFontType":1,
+ "spanishText":"La ley prohíbe terminantemente usar Internet\npara distribuir juegos sin permiso de su creador\no descargarlos con métodos ilegales.\n\nAgradecemos tu comprensión y cooperación.",
+ "spanishFontType":1,
+ "neutralSpanishText":"La ley prohíbe terminantemente usar Internet\npara distribuir juegos sin permiso de su creador\no descargarlos con métodos ilegales.\n\nAgradecemos tu comprensión y cooperación.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Usar a internet para distribuir softwares de jogos\nsem permissão do criador,\nou baixar por métodos ilegais,\né estritamente proibido por lei.\n\nAgradecemos pela compreensão\ne cooperação.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entory_autosave",
+ "englishUsText":"This game supports autosave.\nPlease make sure to never turn off PlayStation®4 system\nor close this application when you see the upper-right save icon.",
+ "englishUsFontType":1,
+ "frenchText":"Ce jeu sauvegarde automatiquement. N'éteins pas\nle système PlayStation®4 ou l'application si\ntu vois l'icône de sauvegarde en haut à droite.",
+ "frenchFontType":1,
+ "italianText":"Il gioco supporta il salvataggio automatico. Non\nspegnere il sistema PlayStation®4 e non uscire dal\ngioco quando vedi l'icona di salvataggio in alto a destra.",
+ "italianFontType":1,
+ "germanText":"Das Spiel speichert automatisch. Schalte das\nPlayStation®4-System nicht ab und beende das Spiel\nnicht, wenn das Speichersymbol rechts oben erscheint.",
+ "germanFontType":1,
+ "spanishText":"Este juego tiene una función de guardado automático.\nNo apagues el sistema PlayStation®4 ni cierres la aplicación\ncuando veas el icono de guardado superior derecho.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Este juego tiene una función de guardado automático.\nNo apagues la consola ni cierres la aplicación\ncuando veas el icono de guardado superior derecho.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Este jogo salva automaticamente.\nNunca desligue o sistema ou feche o aplicativo\nenquanto vê o ícone de salvamento no canto superior direito.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entory_ghost_ins1",
+ "englishUsText":"Friend Session",
+ "englishUsFontType":1,
+ "frenchText":"Session d'ami",
+ "frenchFontType":1,
+ "italianText":"Sessione Amico",
+ "italianFontType":1,
+ "germanText":"Freundes-Session",
+ "germanFontType":1,
+ "spanishText":"Sesión de amigos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sesión de amigos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sessão de Amigo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entory_ghost_ins2",
+ "englishUsText":"Guest Session",
+ "englishUsFontType":1,
+ "frenchText":"Session d'invité",
+ "frenchFontType":1,
+ "italianText":"Sessione Ospite",
+ "italianFontType":1,
+ "germanText":"Gast-Session",
+ "germanFontType":1,
+ "spanishText":"Sesión de invitados",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sesión de invitados",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sessão de Convidado",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entory_ghost_ins3",
+ "englishUsText":"Ranked Match",
+ "englishUsFontType":1,
+ "frenchText":"Match classé",
+ "frenchFontType":1,
+ "italianText":"Partita classificata",
+ "italianFontType":1,
+ "germanText":"Ranglisten-Partie",
+ "germanFontType":1,
+ "spanishText":"Partida clasificatoria",
+ "spanishFontType":1,
+ "neutralSpanishText":"Partida igualada",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Partida ranqueada",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entory_ghost_ins4",
+ "englishUsText":"Best Replay",
+ "englishUsFontType":1,
+ "frenchText":"Meilleure rediffusion",
+ "frenchFontType":1,
+ "italianText":"Miglior prova",
+ "italianFontType":1,
+ "germanText":"Bestleistung wiederholen",
+ "germanFontType":1,
+ "spanishText":"Mejor repetición",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mejor repetición",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Melhor replay",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entory_ghost_title",
+ "englishUsText":"What’s a ghost?",
+ "englishUsFontType":1,
+ "frenchText":"Qu'est-ce qu'un fantôme ?",
+ "frenchFontType":1,
+ "italianText":"Cosa sono i dati fantasma?",
+ "italianFontType":1,
+ "germanText":"Was sind Geister?",
+ "germanFontType":1,
+ "spanishText":"¿Qué es un fantasma?",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Qué es un fantasma?",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"O que é um fantasma?",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entory_ghost_supple",
+ "englishUsText":"*Shared ghost settings can be managed in Game Settings > Network.",
+ "englishUsFontType":1,
+ "frenchText":"*Les paramètres du fantôme partagé peuvent\nêtre gérés dans Paramètres de jeu > Réseau.",
+ "frenchFontType":1,
+ "italianText":"*Le impostazioni dei dati fantasma condivisi\npossono essere gestite su Impostazioni > Rete.",
+ "italianFontType":1,
+ "germanText":"*Die Einstellungen für Geister können über Einstellungen > Netzwerk angepasst werden.",
+ "germanFontType":1,
+ "spanishText":"Los ajustes del fantasma compartido se pueden\ncambiar en Ajustes del juego > Red.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Los ajustes del fantasma compartido se pueden\ncambiar en Ajustes del juego > Red.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"*Pode-se ajustar configurações de fantasmas compartilhados em configurações de jogo > rede.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entory_ghost_detail",
+ "englishUsText":"This is ghost data based on the player’s performance.\nIt will be shared with other players via the network.",
+ "englishUsFontType":1,
+ "frenchText":"Ce fantôme est basé sur les performances du joueur\net sera partagé avec les autres joueurs via le réseau.",
+ "frenchFontType":1,
+ "italianText":"I dati fantasma sono basati sulla prestazione del giocatore.\nSaranno condivisi online con gli altri giocatori.",
+ "italianFontType":1,
+ "germanText":"Das ist der Geist des Spielers. Er wird\nüber das Netzwerk mit anderen Spielern geteilt.",
+ "germanFontType":1,
+ "spanishText":"Estos son datos fantasma, basados en la actuación\ndel jugador. Se comparten con otros por la red.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Estos son datos fantasma, basados en la actuación\ndel jugador. Se comparten con otros por la red.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Esses são dados fantasmas da performance do jogador.\nSerão compartilhados com outros jogadores na rede.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entry_title_2P",
+ "englishUsText":"Please log in if you wish\nto play with 2 players.",
+ "englishUsFontType":1,
+ "frenchText":"Connecte-toi si tu veux jouer\nà deux joueurs.",
+ "frenchFontType":1,
+ "italianText":"Effettua il login\nper giocare in due.",
+ "italianFontType":1,
+ "germanText":"Bitte melde dich an,\num mit 2 Spielern zu spielen.",
+ "germanFontType":1,
+ "spanishText":"Inicia sesión si quieres\njugar con 2 jugadores.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Inicia sesión si quieres\njugar con 2 jugadores.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Inicie sessão se deseja\njogar com 2 jogadores.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entry_title_savedata",
+ "englishUsText":"Checking save data.\nPlease wait.",
+ "englishUsFontType":1,
+ "frenchText":"Vérification de la sauvegarde.\nMerci de patienter.",
+ "frenchFontType":1,
+ "italianText":"Verifica del salvataggio.\nAttendi.",
+ "italianFontType":1,
+ "germanText":"Prüfe Speicherdaten.\nBitte warten.",
+ "germanFontType":1,
+ "spanishText":"Comprobando datos guardados.\nEspera.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Comprobando datos guardados.\nEspera.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Verificando dados salvos.\nAguarde.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entry_title_decide",
+ "englishUsText":"Press ㎏ to begin.",
+ "englishUsFontType":1,
+ "frenchText":"Appuie sur ㎏.",
+ "frenchFontType":1,
+ "italianText":"Premi ㎏ per iniziare.",
+ "italianFontType":1,
+ "germanText":"Drück zum Starten ㎏.",
+ "germanFontType":1,
+ "spanishText":"㎏ para empezar.",
+ "spanishFontType":1,
+ "neutralSpanishText":"㎏ para empezar.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Aperte ㎏ para começar.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entry_tatakcon_detail",
+ "englishUsText":"Watch out that the vibrations and noise don’t bother your neighbors, especially at certain times of day!\nBe careful not to swing the drumsticks or to pound the drum too hard, and don’t use them on anything except drums!",
+ "englishUsFontType":1,
+ "frenchText":"Fais attention aux vibrations et au bruit et ne dérange pas tes voisins, surtout à certains moments de la journée !\nNe lance pas les baguettes, ne tape pas trop fort avec et utilise-les uniquement sur le tambour !",
+ "frenchFontType":1,
+ "italianText":"Non disturbare i vicini, specie in certi\norari della giornata! Usa le bacchette\nsolo con i tamburi, tienile salde in mano\ne non colpire i tamburi troppo forte.",
+ "italianFontType":1,
+ "germanText":"Achte darauf, nicht zu laut zu werden, um deine Nachbarn nicht zu stören, vor allem nachts!\nSchlag nicht zu fest auf die Trommel, wirble nicht mit den Stöcken herum und benutze sie nur für die Trommel!",
+ "germanFontType":1,
+ "spanishText":"Cuidado con las vibraciones y el sonido. No molestes a los vecinos,\nespecialmente a ciertas horas. No hagas movimientos bruscos\ncon las baquetas ni golpees los tambores demasiado fuerte.\nUsa las baquetas solo con los tambores.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cuidado con las vibraciones y el sonido. No molestes a los vecinos, especialmente a ciertas horas.\nNo hagas movimientos bruscos con las baquetas ni golpees los tambores demasiado fuerte. Usa las baquetas solo con los tambores.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Cuide para que as vibrações e barulho não incomodem seus vizinhos, especialmente em certos horários!\nTome cuidado para não bater as baquetas com muita força no tambor, e não as use em nada além de tambores!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entry_login_new",
+ "englishUsText":"New",
+ "englishUsFontType":1,
+ "frenchText":"Nouveau",
+ "frenchFontType":1,
+ "italianText":"Nuovo",
+ "italianFontType":1,
+ "germanText":"Neu",
+ "germanFontType":1,
+ "spanishText":"Nuevo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Nuevo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Novo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entry_login_start",
+ "englishUsText":"Start",
+ "englishUsFontType":1,
+ "frenchText":"Commencer",
+ "frenchFontType":1,
+ "italianText":"Avvia",
+ "italianFontType":1,
+ "germanText":"Start",
+ "germanFontType":1,
+ "spanishText":"Empezar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Empezar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Começar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entry_login_title",
+ "englishUsText":"Entry",
+ "englishUsFontType":1,
+ "frenchText":"Entrée",
+ "frenchFontType":1,
+ "italianText":"Accesso",
+ "italianFontType":1,
+ "germanText":"Eingang",
+ "germanFontType":1,
+ "spanishText":"Entrada",
+ "spanishFontType":1,
+ "neutralSpanishText":"Entrada",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Inserir",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entory_tutorial_dialog_detail",
+ "englishUsText":"We recommend doing so\nif this is your first time playing.",
+ "englishUsFontType":1,
+ "frenchText":"Nous te recommandons de le voir\nsi c'est la première fois que tu joues au jeu.",
+ "frenchFontType":1,
+ "italianText":"Se non hai mai giocato,\nti consigliamo di farlo.",
+ "italianFontType":1,
+ "germanText":"Spielst du zum ersten Mal, solltest du das tun.",
+ "germanFontType":1,
+ "spanishText":"Te recomendamos que lo hagas\nsi es la primera vez que juegas.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Te recomendamos que lo hagas\nsi es la primera vez que juegas.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Recomendamos isso\nse é sua primeira vez jogando.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entory_tutorial_dialog_detail2",
+ "englishUsText":"Go to Tutorial",
+ "englishUsFontType":1,
+ "frenchText":"Aller au didacticiel",
+ "frenchFontType":1,
+ "italianText":"Vai al tutorial",
+ "italianFontType":1,
+ "germanText":"Zum Tutorial",
+ "germanFontType":1,
+ "spanishText":"Ir al tutorial",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ir al tutorial",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Acessar tutorial",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entory_tutorial_dialog",
+ "englishUsText":"View game tutorial?",
+ "englishUsFontType":1,
+ "frenchText":"Voir le didacticiel du jeu ?",
+ "frenchFontType":1,
+ "italianText":"Guardare il tutorial?",
+ "italianFontType":1,
+ "germanText":"Tutorial starten?",
+ "germanFontType":1,
+ "spanishText":"¿Quieres ver el tutorial del juego?",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Quieres ver el tutorial del juego?",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ver tutorial do jogo?",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entory_adjust_dialog_detail2",
+ "englishUsText":"Go to Game Settings",
+ "englishUsFontType":1,
+ "frenchText":"Aller aux paramètres de jeu",
+ "frenchFontType":1,
+ "italianText":"Vai alle Impostazioni",
+ "italianFontType":1,
+ "germanText":"Spieloptionen aufrufen",
+ "germanFontType":1,
+ "spanishText":"Ir a Ajustes del juego",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ir a Ajustes del juego",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Acessar config. de jogo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entory_controller_dialog_title",
+ "englishUsText":"Would you like to change the control type?",
+ "englishUsFontType":1,
+ "frenchText":"Veux-tu changer le type de contrôleur ?",
+ "frenchFontType":1,
+ "italianText":"Modificare lo schema dei comandi?",
+ "italianFontType":1,
+ "germanText":"Willst du den Steuerungstyp anpassen?",
+ "germanFontType":1,
+ "spanishText":"¿Quieres cambiar el tipo de control?",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Quieres cambiar el tipo de control?",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Gostaria de alterar o tipo de controles?",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entory_controller_dialog_detail",
+ "englishUsText":"The default settings are Type 1.",
+ "englishUsFontType":1,
+ "frenchText":"Les paramètres par défaut sont de type 1.",
+ "frenchFontType":1,
+ "italianText":"Le impostazioni predefinite sono Schema 1.",
+ "italianFontType":1,
+ "germanText":"Die Standardeinstellung ist Typ 1.",
+ "germanFontType":1,
+ "spanishText":"Los ajustes predeterminados son del tipo 1.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Los ajustes predeterminados son del tipo 1.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"As configurações padrão são o Tipo 1.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entry_pad",
+ "englishUsText":"When playing with a drum controller, make sure that the drum controller is connected to\nthe PlayStation®4 system, then press the PS button and select your account.",
+ "englishUsFontType":1,
+ "frenchText":"Lorsque tu joues avec un contrôleur tambour, assure-toi qu'il est connecté au\nsystème PlayStation®4, puis appuie sur la touche PS et sélectionne ton compte.",
+ "frenchFontType":1,
+ "italianText":"Se usi un controller tamburo, collegalo al sistema PlayStation®4,\npremi il tasto PS e seleziona il tuo account.",
+ "italianFontType":1,
+ "germanText":"Nutzt du einen Trommel-Controller, vergewissere dich,\ndass er mit dem PlayStation®4-System verbunden ist,\ndrücke die PS-Taste und wähle dein Benutzerkonto.",
+ "germanFontType":1,
+ "spanishText":"Cuando juegues con un mando tambor, asegúrate de que este se encuentre conectado al sistema PlayStation®4,\npulsa el botón PS y selecciona tu cuenta.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cuando juegues con un control tambor, asegúrate de que se encuentre conectado a la consola,\noprime el botón PS y selecciona tu cuenta.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ao jogar com um controle tambor, certifique-se de que o mesmo está conectado ao sistema,\nentão aperte o botão PS e selecione sua conta.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entory_adjust_dialog_title",
+ "englishUsText":"Would you like to adjust note positions and timing?",
+ "englishUsFontType":1,
+ "frenchText":"Ajuster la position et le timing des notes ?",
+ "frenchFontType":1,
+ "italianText":"Regolare posizione e tempismo delle note?",
+ "italianFontType":1,
+ "germanText":"Willst du Noten-Positionen und -Timing anpassen?",
+ "germanFontType":1,
+ "spanishText":"¿Ajustar posición y cadencia de las notas?",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Ajustar posición y cadencia de las notas?",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Deseja ajustar a posição e timing das notas?",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"entory_adjust_dialog_detail1",
+ "englishUsText":"Depending on your TV, note sounds and positions\nmay not always match up with button presses.",
+ "englishUsFontType":1,
+ "frenchText":"Suivant ta TV, les positions et sons des notes\npeuvent ne pas correspondre à tes actions.",
+ "frenchFontType":1,
+ "italianText":"A seconda dello schermo, il suono e la posizione delle\nnote non sempre combaciano con i tasti.",
+ "italianFontType":1,
+ "germanText":"Je nach Fernseher weichen Noten-Sounds und\n-Positionen von den gedrückten Tasten ab.",
+ "germanFontType":1,
+ "spanishText":"Según la TV, quizá la posición y el sonido de\nlas notas no se correspondan con lo pulsado.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Según la TV, quizá la posición y el sonido de\nlas notas no se correspondan con lo oprimido.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Dependendo da TV, as posições de notas e sons\npodem não estar coordenadas com os botões.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"option_abekobe",
+ "englishUsText":"Opposite",
+ "englishUsFontType":1,
+ "frenchText":"Inversion",
+ "frenchFontType":1,
+ "italianText":"Invertito",
+ "italianFontType":1,
+ "germanText":"Entgegengesetzt",
+ "germanFontType":1,
+ "spanishText":"Opuesto",
+ "spanishFontType":1,
+ "neutralSpanishText":"Opuesto",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Oposto",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"option_support",
+ "englishUsText":"Support",
+ "englishUsFontType":1,
+ "frenchText":"Soutien",
+ "frenchFontType":1,
+ "italianText":"Assistenza",
+ "italianFontType":1,
+ "germanText":"Unterstützung",
+ "germanFontType":1,
+ "spanishText":"Apoyo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Apoyo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Suporte",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"option_support_lv1",
+ "englishUsText":"Lv1",
+ "englishUsFontType":1,
+ "frenchText":"Niv 1",
+ "frenchFontType":1,
+ "italianText":"Liv. 1",
+ "italianFontType":1,
+ "germanText":"St. 1",
+ "germanFontType":1,
+ "spanishText":"Nv1",
+ "spanishFontType":1,
+ "neutralSpanishText":"Nv1",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Nv1",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"option_support_lv2",
+ "englishUsText":"Lv2",
+ "englishUsFontType":1,
+ "frenchText":"Niv 2",
+ "frenchFontType":1,
+ "italianText":"Liv. 2",
+ "italianFontType":1,
+ "germanText":"St. 2",
+ "germanFontType":1,
+ "spanishText":"Nv2",
+ "spanishFontType":1,
+ "neutralSpanishText":"Nv2",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Nv2",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"option_support_lv3",
+ "englishUsText":"Lv3",
+ "englishUsFontType":1,
+ "frenchText":"Niv 3",
+ "frenchFontType":1,
+ "italianText":"Liv. 3",
+ "italianFontType":1,
+ "germanText":"St. 3",
+ "germanFontType":1,
+ "spanishText":"Nv3",
+ "spanishFontType":1,
+ "neutralSpanishText":"Nv3",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Nv3",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"score_normal",
+ "englishUsText":"Normal",
+ "englishUsFontType":1,
+ "frenchText":"Normal",
+ "frenchFontType":1,
+ "italianText":"Normale",
+ "italianFontType":1,
+ "germanText":"Normal",
+ "germanFontType":1,
+ "spanishText":"Normal",
+ "spanishFontType":1,
+ "neutralSpanishText":"Normal",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Normal",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"option_special",
+ "englishUsText":"Special",
+ "englishUsFontType":1,
+ "frenchText":"Spécial",
+ "frenchFontType":1,
+ "italianText":"Speciale",
+ "italianFontType":1,
+ "germanText":"Spezial",
+ "germanFontType":1,
+ "spanishText":"Especial",
+ "spanishFontType":1,
+ "neutralSpanishText":"Especial",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Especial",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"option_dron",
+ "englishUsText":"Vanish",
+ "englishUsFontType":1,
+ "frenchText":"Disparition",
+ "frenchFontType":1,
+ "italianText":"Dissolvenza",
+ "italianFontType":1,
+ "germanText":"Verschwinden",
+ "germanFontType":1,
+ "spanishText":"Desvanecer",
+ "spanishFontType":1,
+ "neutralSpanishText":"Desvanecer",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Esvanecer",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"option_speed",
+ "englishUsText":"Speed",
+ "englishUsFontType":1,
+ "frenchText":"Vitesse",
+ "frenchFontType":1,
+ "italianText":"Velocità",
+ "italianFontType":1,
+ "germanText":"Tempo",
+ "germanFontType":1,
+ "spanishText":"Velocidad",
+ "spanishFontType":1,
+ "neutralSpanishText":"Velocidad",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Velocidade",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"speed_x3",
+ "englishUsText":"3x Speed",
+ "englishUsFontType":1,
+ "frenchText":"Vitesse x3",
+ "frenchFontType":1,
+ "italianText":"Velocità x3",
+ "italianFontType":1,
+ "germanText":"Tempo x3",
+ "germanFontType":1,
+ "spanishText":"Velocidad x3",
+ "spanishFontType":1,
+ "neutralSpanishText":"Velocidad x3",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Velocidade x3",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"speed_x2",
+ "englishUsText":"2x Speed",
+ "englishUsFontType":1,
+ "frenchText":"Vitesse x2",
+ "frenchFontType":1,
+ "italianText":"Velocità x2",
+ "italianFontType":1,
+ "germanText":"Tempo x2",
+ "germanFontType":1,
+ "spanishText":"Velocidad x2",
+ "spanishFontType":1,
+ "neutralSpanishText":"Velocidad x2",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Velocidade x2",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"speed_x4",
+ "englishUsText":"4x Speed",
+ "englishUsFontType":1,
+ "frenchText":"Vitesse x4",
+ "frenchFontType":1,
+ "italianText":"Velocità x4",
+ "italianFontType":1,
+ "germanText":"Tempo x4",
+ "germanFontType":1,
+ "spanishText":"Velocidad x4",
+ "spanishFontType":1,
+ "neutralSpanishText":"Velocidad x4",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Velocidade x4",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"option_random",
+ "englishUsText":"Random",
+ "englishUsFontType":1,
+ "frenchText":"Aléatoire",
+ "frenchFontType":1,
+ "italianText":"Casuale",
+ "italianFontType":1,
+ "germanText":"Zufällig",
+ "germanFontType":1,
+ "spanishText":"Aleatorio",
+ "spanishFontType":1,
+ "neutralSpanishText":"Aleatorio",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Aleatório",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"kimagure",
+ "englishUsText":"Capricious",
+ "englishUsFontType":1,
+ "frenchText":"Capricieux",
+ "frenchFontType":1,
+ "italianText":"Capriccioso",
+ "italianFontType":1,
+ "germanText":"Unberechenbar",
+ "germanFontType":1,
+ "spanishText":"Caprichosa",
+ "spanishFontType":1,
+ "neutralSpanishText":"Caprichosa",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Caprichoso",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"detarame",
+ "englishUsText":"Haphazard",
+ "englishUsFontType":1,
+ "frenchText":"Au hasard",
+ "frenchFontType":1,
+ "italianText":"Imprevedibile",
+ "italianFontType":1,
+ "germanText":"Wahllos",
+ "germanFontType":1,
+ "spanishText":"Caótico",
+ "spanishFontType":1,
+ "neutralSpanishText":"Caótico",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Caos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"off",
+ "englishUsText":"Off",
+ "englishUsFontType":1,
+ "frenchText":"Désactivé",
+ "frenchFontType":1,
+ "italianText":"No",
+ "italianFontType":1,
+ "germanText":"Aus",
+ "germanFontType":1,
+ "spanishText":"No",
+ "spanishFontType":1,
+ "neutralSpanishText":"No",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Desativado",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"on",
+ "englishUsText":"On",
+ "englishUsFontType":1,
+ "frenchText":"Activé",
+ "frenchFontType":1,
+ "italianText":"Sì",
+ "italianFontType":1,
+ "germanText":"An",
+ "germanFontType":1,
+ "spanishText":"Sí",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sí",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ativado",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_abekobe_off",
+ "englishUsText":"An option to switch between DON and KA notes.",
+ "englishUsFontType":1,
+ "frenchText":"Une option pour inverser les notes DON et KA.",
+ "frenchFontType":1,
+ "italianText":"Scambia le note DON e KA.",
+ "italianFontType":1,
+ "germanText":"Mit dieser Option wechselst du zwischen DON- und KA-Noten.",
+ "germanFontType":1,
+ "spanishText":"Una opción para alternar entre las notas DON y KA.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Una opción para alternar entre las notas DON y KA.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Uma opção para mudar entre notas DON e KA.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_abekobe_on",
+ "englishUsText":"Swap All DON and KA Notes",
+ "englishUsFontType":1,
+ "frenchText":"Inverser toutes les notes DON et KA",
+ "frenchFontType":1,
+ "italianText":"Scambia tutte le note DON e KA.",
+ "italianFontType":1,
+ "germanText":"Alle DON- und KA-Noten vertauschen",
+ "germanFontType":1,
+ "spanishText":"Intercambiar todas las notas DON y KA",
+ "spanishFontType":1,
+ "neutralSpanishText":"Intercambiar todas las notas DON y KA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alternar todas as notas DON e KA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_support_lv1",
+ "englishUsText":"Make note judgments more lenient.",
+ "englishUsFontType":1,
+ "frenchText":"Rend la notation moins sévère.",
+ "frenchFontType":1,
+ "italianText":"Rende le valutazioni più clementi.",
+ "italianFontType":1,
+ "germanText":"Die Notenbewertung etwas weniger streng machen.",
+ "germanFontType":1,
+ "spanishText":"Juzga las notas con menos rigor.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Juzga las notas con menos rigor.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Torna a avaliação das notas menos rigorosa.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_support_lv2",
+ "englishUsText":"Note judgments become more lenient, responding to DON and KA notes equally no matter which button is pressed.",
+ "englishUsFontType":1,
+ "frenchText":"Rend la notation moins sévère et toutes les touches valident DON et KA.",
+ "frenchFontType":1,
+ "italianText":"Con Val. clementi, qualunque sia il tasto premuto, la nota suonata (DON o KA) è la stessa.",
+ "italianFontType":1,
+ "germanText":"Die Notenbewertung ist lascher und akzeptiert jede Taste für alle Noten.",
+ "germanFontType":1,
+ "spanishText":"La puntuación es menos rigurosa y acepta cualquier botón para DON y KA.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Las notas se juzgan con menos rigor, respondiendo a DON y KA por igual, con independencia del botón oprimido.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Avaliações de notas menos rigorosas, respondendo igualmente às notas DON e KA, independente do botão apertado.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_support_lv3",
+ "englishUsText":"Note judgments become more lenient, and the quota gauge no longer decreases.",
+ "englishUsFontType":1,
+ "frenchText":"Rend la notation moins sévère et la jauge ne descend plus.",
+ "frenchFontType":1,
+ "italianText":"Val. clementi e l'indicatore dell'obiettivo non si riduce.",
+ "italianFontType":1,
+ "germanText":"Weniger strenge Notenbewertung, außerdem fällt die Quotenanzeige nicht mehr.",
+ "germanFontType":1,
+ "spanishText":"Las notas se juzgan con menos rigor y el indicador Superada ya no baja.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Las notas se juzgan con menos rigor y el indicador de Superado ya no baja.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Avaliações das notas ficam menos rigorosas e medidor da cota não se esvazia.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_support_off",
+ "englishUsText":"Assist Options",
+ "englishUsFontType":1,
+ "frenchText":"Options d'assistance",
+ "frenchFontType":1,
+ "italianText":"Opzioni di assistenza",
+ "italianFontType":1,
+ "germanText":"Hilfe-Optionen",
+ "germanFontType":1,
+ "spanishText":"Opciones de ayuda",
+ "spanishFontType":1,
+ "neutralSpanishText":"Opciones de ayuda",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Opções de auxílio",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_score_normal",
+ "englishUsText":"Standard grading system that awards higher scores for unbroken combos.",
+ "englishUsFontType":1,
+ "frenchText":"Plus les combos sont longs, plus le score est élevé.",
+ "frenchFontType":1,
+ "italianText":"Sistema di valutazione standard. Più punti per le combo.",
+ "italianFontType":1,
+ "germanText":"Standard-Bewertungssystem, bei dem lange Kombos viele Punkte bringen.",
+ "germanFontType":1,
+ "spanishText":"Sistema de puntuación normal. Da más puntos por no romper combos.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sistema de puntuación normal. Da más puntos por no romper combos.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Avaliação padrão que dá pontuações maiores por combos ininterruptos.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_special",
+ "englishUsText":"Options to manage special settings.",
+ "englishUsFontType":1,
+ "frenchText":"Des options pour gérer les paramètres spéciaux.",
+ "frenchFontType":1,
+ "italianText":"Opzioni per le impostazioni speciali.",
+ "italianFontType":1,
+ "germanText":"Optionen zur Verwaltung der Spezialeinstellungen.",
+ "germanFontType":1,
+ "spanishText":"Opciones para gestionar los ajustes especiales.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Opciones para gestionar los ajustes especiales.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Opções de ajustar configurações especiais.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_dron_off",
+ "englishUsText":"An option to hide notes.",
+ "englishUsFontType":1,
+ "frenchText":"Une option pour cacher les notes.",
+ "frenchFontType":1,
+ "italianText":"Nasconde le note.",
+ "italianFontType":1,
+ "germanText":"Mit dieser Option verbirgst du Noten.",
+ "germanFontType":1,
+ "spanishText":"Una opción para esconder todas las notas.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Una opción para esconder todas las notas.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Uma opção para ocultar notas.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_dron_on",
+ "englishUsText":"Hide Notes",
+ "englishUsFontType":1,
+ "frenchText":"Cacher les notes",
+ "frenchFontType":1,
+ "italianText":"Nascondi note",
+ "italianFontType":1,
+ "germanText":"Noten verbergen",
+ "germanFontType":1,
+ "spanishText":"Esconder notas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Esconder notas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ocultar notas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_neiro",
+ "englishUsText":"Change the tone of DON and KA notes.",
+ "englishUsFontType":1,
+ "frenchText":"Change la sonorité des notes DON et KA.",
+ "frenchFontType":1,
+ "italianText":"Modifica il tono delle note DON e KA.",
+ "italianFontType":1,
+ "germanText":"Ändere die Tonhöhe von DON- und KA-Noten.",
+ "germanFontType":1,
+ "spanishText":"Cambia el tono de las notas DON y KA.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cambia el tono de las notas DON y KA.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mudar o tom das notas DON e KA.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_speed_off",
+ "englishUsText":"An option to change how quickly notes appear.",
+ "englishUsFontType":1,
+ "frenchText":"Une option pour changer la vitesse d'apparition des notes.",
+ "frenchFontType":1,
+ "italianText":"Regola la velocità di apparizione delle note.",
+ "italianFontType":1,
+ "germanText":"Hier legst du fest, wie schnell die Noten erscheinen.",
+ "germanFontType":1,
+ "spanishText":"Una opción para cambiar lo rápido que aparecen las notas.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Una opción para cambiar lo rápido que aparecen las notas.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Uma opção para mudar a velocidade em que aparecem notas.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_speed_x3",
+ "englishUsText":"Notes Speed: 3x",
+ "englishUsFontType":1,
+ "frenchText":"Vitesse des notes : x3",
+ "frenchFontType":1,
+ "italianText":"Velocità note: x3",
+ "italianFontType":1,
+ "germanText":"Notentempo: x3",
+ "germanFontType":1,
+ "spanishText":"Velocidad de las notas: x3",
+ "spanishFontType":1,
+ "neutralSpanishText":"Velocidad de las notas: x3",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Velocidade das notas: x3",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_speed_x2",
+ "englishUsText":"Notes Speed: 2x",
+ "englishUsFontType":1,
+ "frenchText":"Vitesse des notes : x2",
+ "frenchFontType":1,
+ "italianText":"Velocità note: x2",
+ "italianFontType":1,
+ "germanText":"Notentempo: x2",
+ "germanFontType":1,
+ "spanishText":"Velocidad de las notas: x2",
+ "spanishFontType":1,
+ "neutralSpanishText":"Velocidad de las notas: x2",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Velocidade das notas: x2",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_speed_x4",
+ "englishUsText":"Notes Speed: 4x",
+ "englishUsFontType":1,
+ "frenchText":"Vitesse des notes : x4",
+ "frenchFontType":1,
+ "italianText":"Velocità note: x4",
+ "italianFontType":1,
+ "germanText":"Notentempo: x4",
+ "germanFontType":1,
+ "spanishText":"Velocidad de las notas: x4",
+ "spanishFontType":1,
+ "neutralSpanishText":"Velocidad de las notas: x4",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Velocidade das notas: x4",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_random_off",
+ "englishUsText":"An option to randomly show and hide DON and KA notes.",
+ "englishUsFontType":1,
+ "frenchText":"Une option pour montrer et cacher les notes DON et KA aléatoirement.",
+ "frenchFontType":1,
+ "italianText":"Mostra/nasconde casualmente le note DON e KA.",
+ "italianFontType":1,
+ "germanText":"Zufällige DON- und KA-Noten werden nicht mehr angezeigt.",
+ "germanFontType":1,
+ "spanishText":"Esta opción esconde y muestra al azar las notas DON y KA.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Esta opción esconde y muestra al azar las notas DON y KA.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Opção de mostrar e ocultar aleatoriamente notas DON e KA.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_random_kimagure",
+ "englishUsText":"Swap Some DON and KA Notes",
+ "englishUsFontType":1,
+ "frenchText":"Inverser certaines notes DON et KA",
+ "frenchFontType":1,
+ "italianText":"Scambia alcune note DON e KA.",
+ "italianFontType":1,
+ "germanText":"Einige DON- und KA-Noten vertauschen",
+ "germanFontType":1,
+ "spanishText":"Intercambiar algunas notas DON y KA",
+ "spanishFontType":1,
+ "neutralSpanishText":"Intercambiar algunas notas DON y KA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alternar algumas notas DON e KA.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_random_detarame",
+ "englishUsText":"Swap Majority of DON and KA Notes",
+ "englishUsFontType":1,
+ "frenchText":"Inverser la majorité des notes DON et KA",
+ "frenchFontType":1,
+ "italianText":"Scambia la maggior parte delle note DON e KA.",
+ "italianFontType":1,
+ "germanText":"Die meisten DON- und KA-Noten vertauschen",
+ "germanFontType":1,
+ "spanishText":"Intercambiar la mayoría de las notas DON y KA",
+ "spanishFontType":1,
+ "neutralSpanishText":"Intercambiar la mayoría de las notas DON y KA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alternar a maior parte das notas DON e KA.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_score_shinuchi",
+ "englishUsText":"Grading system that focuses on accurate note timing, regardless of combo.",
+ "englishUsFontType":1,
+ "frenchText":"Plus le timing est précis, plus le score est élevé.",
+ "frenchFontType":1,
+ "italianText":"Sistema di valutazione basato sul tempismo, non sulle combo.",
+ "italianFontType":1,
+ "germanText":"Bewertungssystem, bei dem es aufs Timing und nicht auf Kombos ankommt.",
+ "germanFontType":1,
+ "spanishText":"Sistema de puntuación que se centra más en el ritmo apropiado de las notas.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sistema de puntuación que se centra más en el ritmo apropiado de las notas.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Avaliação focada no timing correto das notas, independente dos combos.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_special_auto",
+ "englishUsText":"Auto Session",
+ "englishUsFontType":1,
+ "frenchText":"Session auto",
+ "frenchFontType":1,
+ "italianText":"Sessione automatica",
+ "italianFontType":1,
+ "germanText":"Auto-Session",
+ "germanFontType":1,
+ "spanishText":"Sesión automática",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sesión automática",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sessão Automática",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_special_perfect",
+ "englishUsText":"End Session on 1st BAD",
+ "englishUsFontType":1,
+ "frenchText":"Fin de la session au premier MAUVAIS",
+ "frenchFontType":1,
+ "italianText":"Termina sessione al primo MALE",
+ "italianFontType":1,
+ "germanText":"Session beim 1. ÜBEL beenden",
+ "germanFontType":1,
+ "spanishText":"Terminar sesión al 1er MAL",
+ "spanishFontType":1,
+ "neutralSpanishText":"Terminar sesión al 1er MAL",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Encerrar sessão no 1º RUIM",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_special_training",
+ "englishUsText":"Start Session Over on 1st BAD",
+ "englishUsFontType":1,
+ "frenchText":"Redémarrage de la session au premier MAUVAIS",
+ "frenchFontType":1,
+ "italianText":"Ricomincia sessione al primo MALE",
+ "italianFontType":1,
+ "germanText":"Session beim 1. ÜBEL neu starten",
+ "germanFontType":1,
+ "spanishText":"Volver a empezar sesión al 1er MAL",
+ "spanishFontType":1,
+ "neutralSpanishText":"Volver a empezar sesión al 1er MAL",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Recomeçar sessão no 1º RUIM",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"option_duet_using_sp",
+ "englishUsText":"*Perfect and Crash Course are unavailable in two-player modes.",
+ "englishUsFontType":1,
+ "frenchText":"*Parfait et Cours intensif sont indisponibles dans les modes 2 joueurs.",
+ "frenchFontType":1,
+ "italianText":"*Perfetto e Corso intensivo non disponibili per 2 giocatori.",
+ "italianFontType":1,
+ "germanText":"*Perfekt und Crash-Kurs sind für 2 Spieler nicht verfügbar.",
+ "germanFontType":1,
+ "spanishText":"*Perfecto y Curso intensivo no están disponibles para 2.",
+ "spanishFontType":1,
+ "neutralSpanishText":"*Perfecto y Curso intensivo no están disponibles para 2.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"*Perfeito e Intensivo indisponíveis em modos de 2 jogadores.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"option_using_support",
+ "englishUsText":"*Scores are not recorded when using Support.",
+ "englishUsFontType":1,
+ "frenchText":"*Les scores ne sont pas enregistrés si le Soutien est actif.",
+ "frenchFontType":1,
+ "italianText":"*Se si usa Assistenza, i punteggi non vengono registrati.",
+ "italianFontType":1,
+ "germanText":"*Punkte werden bei Unterstützung nicht erfasst.",
+ "germanFontType":1,
+ "spanishText":"*Si usas Apoyo, no se guardarán las puntuaciones.",
+ "spanishFontType":1,
+ "neutralSpanishText":"*Si usas Apoyo, no se guardarán las puntuaciones.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"*Pontuações não são salvas ao usar Suporte.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"option_training_using_sp",
+ "englishUsText":"*Support, Special, and Score are unavailable in Training Mode.",
+ "englishUsFontType":1,
+ "frenchText":"*Soutien, Spécial et Score sont indisponibles en mode Entraînement.",
+ "frenchFontType":1,
+ "italianText":"*Assistenza, Speciale e Punteggio non disp. in Allenamento.",
+ "italianFontType":1,
+ "germanText":"*Unterstützung, Spezial und Punkte im Training n. verfügbar.",
+ "germanFontType":1,
+ "spanishText":"*Apoyo, Especial y Puntuación no disponibles en Entrenamiento.",
+ "spanishFontType":1,
+ "neutralSpanishText":"*Apoyo, Especial y Puntuación no disponibles en Entrenamiento.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"*Suporte, Especial e Pontuação indisponíveis em modo treino.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"score_shinuchi",
+ "englishUsText":"Shin-Uchi",
+ "englishUsFontType":1,
+ "frenchText":"Shin-Uchi",
+ "frenchFontType":1,
+ "italianText":"Shin-Uchi",
+ "italianFontType":1,
+ "germanText":"Shin-Uchi",
+ "germanFontType":1,
+ "spanishText":"Shin-Uchi",
+ "spanishFontType":1,
+ "neutralSpanishText":"Shin-Uchi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Shin-Uchi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"option_auto",
+ "englishUsText":"Auto",
+ "englishUsFontType":1,
+ "frenchText":"Auto",
+ "frenchFontType":1,
+ "italianText":"Automatico",
+ "italianFontType":1,
+ "germanText":"Automatisch",
+ "germanFontType":1,
+ "spanishText":"Automático",
+ "spanishFontType":1,
+ "neutralSpanishText":"Automático",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Automático",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"option_perfect",
+ "englishUsText":"Perfect",
+ "englishUsFontType":1,
+ "frenchText":"Parfait",
+ "frenchFontType":1,
+ "italianText":"Perfetto",
+ "italianFontType":1,
+ "germanText":"Perfekt",
+ "germanFontType":1,
+ "spanishText":"Perfecto",
+ "spanishFontType":1,
+ "neutralSpanishText":"Perfecto",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Perfeito",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"option_training",
+ "englishUsText":"Crash Course",
+ "englishUsFontType":1,
+ "frenchText":"Cours intensif",
+ "frenchFontType":1,
+ "italianText":"Corso intensivo",
+ "italianFontType":1,
+ "germanText":"Crash-Kurs",
+ "germanFontType":1,
+ "spanishText":"Curso intensivo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Curso intensivo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Intensivo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_favorite_question",
+ "englishUsText":"?",
+ "englishUsFontType":1,
+ "frenchText":"?",
+ "frenchFontType":1,
+ "italianText":"?",
+ "italianFontType":1,
+ "germanText":"?",
+ "germanFontType":1,
+ "spanishText":"?",
+ "spanishFontType":1,
+ "neutralSpanishText":"?",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"?",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_greeting_friend_post",
+ "englishUsText":"Friend Session Greeting (end)",
+ "englishUsFontType":1,
+ "frenchText":"Salutation de session d'ami (fin)",
+ "frenchFontType":1,
+ "italianText":"Saluto Sessione Amico (fine)",
+ "italianFontType":1,
+ "germanText":"Freundes-Session-Begrüßung (Ende)",
+ "germanFontType":1,
+ "spanishText":"Saludo de sesión de amigos (inicio)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Saludo de sesión de amigos (fin).",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Saudação de Sessão de Amigo (fim)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_greeting_friend_pre",
+ "englishUsText":"Friend Session Greeting (start)",
+ "englishUsFontType":1,
+ "frenchText":"Salutation de session d'ami (début)",
+ "frenchFontType":1,
+ "italianText":"Saluto Sessione Amico (inizio)",
+ "italianFontType":1,
+ "germanText":"Freundes-Session-Begrüßung (Start)",
+ "germanFontType":1,
+ "spanishText":"Saludo de sesión de amigos (fin)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Saludo de sesión de amigos (inicio).",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Saudação de Sessão de Amigo (início)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_greeting_rank_post",
+ "englishUsText":"Drum Ranked Match Greeting (end)",
+ "englishUsFontType":1,
+ "frenchText":"Salutation de match classé (fin)",
+ "frenchFontType":1,
+ "italianText":"Saluto Partita classificata (fine)",
+ "italianFontType":1,
+ "germanText":"Trommel-Ranglisten-Partie-Begrüßung (Ende)",
+ "germanFontType":1,
+ "spanishText":"Saludo de partida clasificatoria de tambores (fin)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Saludo de partida igualada de tambores (fin).",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Saudação de Partida de tambor ranqueada (fim)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_greeting_rank_pre",
+ "englishUsText":"Drum Ranked Match Greeting (start)",
+ "englishUsFontType":1,
+ "frenchText":"Salutation de match classé (début)",
+ "frenchFontType":1,
+ "italianText":"Saluto Partita classificata (inizio)",
+ "italianFontType":1,
+ "germanText":"Trommel-Ranglisten-Partie-Begrüßung (Start)",
+ "germanFontType":1,
+ "spanishText":"Saludo de partida clasificatoria de tambores (inicio)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Saludo de partida igualada de tambores (inicio). ",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Saudação de Partida de tambor ranqueada (início)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_select_greeting",
+ "englishUsText":"Set which greeting to use for friends and rivals.",
+ "englishUsFontType":1,
+ "frenchText":"Choisis une salutation à utiliser pour les amis et rivaux.",
+ "frenchFontType":1,
+ "italianText":"Seleziona il saluto da usare con amici e rivali.",
+ "italianFontType":1,
+ "germanText":"Wähle eine Begrüßung für Freunde und Rivalen.",
+ "germanFontType":1,
+ "spanishText":"Configura qué saludo usar con amigos y rivales.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Configura qué saludo usar con amigos y rivales.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Selecione a saudação a usar para amigos e rivais.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_greeting_list",
+ "englishUsText":"Greetings List",
+ "englishUsFontType":1,
+ "frenchText":"Liste de salutations",
+ "frenchFontType":1,
+ "italianText":"Elenco saluti",
+ "italianFontType":1,
+ "germanText":"Begrüßungsliste",
+ "germanFontType":1,
+ "spanishText":"Lista de saludos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Lista de saludos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Lista de saudações",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_mydon_color",
+ "englishUsText":"Color",
+ "englishUsFontType":1,
+ "frenchText":"Couleur",
+ "frenchFontType":1,
+ "italianText":"Colore",
+ "italianFontType":1,
+ "germanText":"Farbe",
+ "germanFontType":1,
+ "spanishText":"Color",
+ "spanishFontType":1,
+ "neutralSpanishText":"Color",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Cor",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_mydon_color_add",
+ "englishUsText":"Select which color to use.\n*Some outfits may not show the selected color.",
+ "englishUsFontType":1,
+ "frenchText":"Choisis la couleur à utiliser.\n*Certaines tenues peuvent ne pas montrer la couleur choisie.",
+ "frenchFontType":1,
+ "italianText":"Seleziona il colore (non tutti sono sempre disponibili).\n",
+ "italianFontType":1,
+ "germanText":"Wähl eine Farbe.\n*Bei manchen Outfits erscheint die gewählte Farbe nicht.",
+ "germanFontType":1,
+ "spanishText":"Selecciona qué color usar.\n*Puede que algunos atuendos no muestren el color elegido.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Selecciona qué color usar.\n*Tal vez algunos atuendos no muestren el color elegido.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Selecione a cor a usar.\n*Certos trajes podem não mostrar a cor escolhida.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_mydon_color_face",
+ "englishUsText":"Face",
+ "englishUsFontType":1,
+ "frenchText":"Visage",
+ "frenchFontType":1,
+ "italianText":"Volto",
+ "italianFontType":1,
+ "germanText":"Gesicht",
+ "germanFontType":1,
+ "spanishText":"Rostro",
+ "spanishFontType":1,
+ "neutralSpanishText":"Rostro",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Face",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_mydon_color_other",
+ "englishUsText":"Limbs",
+ "englishUsFontType":1,
+ "frenchText":"Membres",
+ "frenchFontType":1,
+ "italianText":"Arti",
+ "italianFontType":1,
+ "germanText":"Gliedmaßen",
+ "germanFontType":1,
+ "spanishText":"Extremidades",
+ "spanishFontType":1,
+ "neutralSpanishText":"Extremidades",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Membros",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_mydon_color_body",
+ "englishUsText":"Torso",
+ "englishUsFontType":1,
+ "frenchText":"Buste",
+ "frenchFontType":1,
+ "italianText":"Busto",
+ "italianFontType":1,
+ "germanText":"Körper",
+ "germanFontType":1,
+ "spanishText":"Cuerpo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cuerpo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Torso",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_mydon_favorite",
+ "englishUsText":"Favorite Set",
+ "englishUsFontType":1,
+ "frenchText":"Ensemble préféré",
+ "frenchFontType":1,
+ "italianText":"Set preferito",
+ "italianFontType":1,
+ "germanText":"Favoriten-Set",
+ "germanFontType":1,
+ "spanishText":"Conjunto favorito",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conjunto favorito",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conjunto Favorito",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_favorite_load",
+ "englishUsText":"Change Clothes",
+ "englishUsFontType":1,
+ "frenchText":"Changer de vêtements",
+ "frenchFontType":1,
+ "italianText":"Cambia abito",
+ "italianFontType":1,
+ "germanText":"Kleidung wechseln",
+ "germanFontType":1,
+ "spanishText":"Cambiar ropa",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cambiar ropa",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mudar roupas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_favorite_load_add",
+ "englishUsText":"You can save your current outfit and color as a set.",
+ "englishUsFontType":1,
+ "frenchText":"Tu peux sauvegarder ta tenue actuelle en tant qu'ensemble.",
+ "frenchFontType":1,
+ "italianText":"Puoi salvare completo e colore attuali come set.",
+ "italianFontType":1,
+ "germanText":"Du kannst dein Outfit und die Farbe als Set speichern.",
+ "germanFontType":1,
+ "spanishText":"Puedes guardar tu atuendo y color actuales como un conjunto.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Puedes guardar tu atuendo y color actuales como un conjunto.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Você pode salvar seu traje e cores atuais como um conjunto.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_favorite_save",
+ "englishUsText":"Save",
+ "englishUsFontType":1,
+ "frenchText":"Sauvegarder",
+ "frenchFontType":1,
+ "italianText":"Salva",
+ "italianFontType":1,
+ "germanText":"Speichern",
+ "germanFontType":1,
+ "spanishText":"Guardar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Guardar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Salvar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_favorite_save_add",
+ "englishUsText":"Face Paint",
+ "englishUsFontType":1,
+ "frenchText":"Maquillage",
+ "frenchFontType":1,
+ "italianText":"Pittura facciale",
+ "italianFontType":1,
+ "germanText":"Gesichtsbemalung",
+ "germanFontType":1,
+ "spanishText":"Pintura facial",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pintura facial",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pintura facial",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_mydon_favorite_add",
+ "englishUsText":"You can save your current clothes and color as a Favorite Set\nand easily wear them again.",
+ "englishUsFontType":1,
+ "frenchText":"Tu peux sauvegarder tes vêtements actuels en tant\nqu'ensemble préféré pour les reporter facilement plus tard.",
+ "frenchFontType":1,
+ "italianText":"Puoi salvare completo e colore attuali come set\nper usarli dopo.\n",
+ "italianFontType":1,
+ "germanText":"Du kannst Kleidung und die Farbe als Favoriten-Set speichern,\num sie schnell zu finden.",
+ "germanFontType":1,
+ "spanishText":"Puedes guardar tu ropa y color actuales como un conjunto\nfavorito y volver a ponértelos fácilmente.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Puedes guardar tu ropa y color actuales como un conjunto\nfavorito y volver a ponértelos fácilmente.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Salve suas roupas e cores atuais como Conjunto Favorito\ne vista-as de novo facilmente.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_favorite_list",
+ "englishUsText":"Favorite List",
+ "englishUsFontType":1,
+ "frenchText":"Liste de préférés",
+ "frenchFontType":1,
+ "italianText":"Elenco preferiti",
+ "italianFontType":1,
+ "germanText":"Favoritenliste",
+ "germanFontType":1,
+ "spanishText":"Lista de favoritos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Lista de favoritos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Lista de favoritos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_favorite_load_select",
+ "englishUsText":"Please select the number of the Favorite Set you want to wear.",
+ "englishUsFontType":1,
+ "frenchText":"Choisis le chiffre de l'ensemble préféré que tu veux porter.",
+ "frenchFontType":1,
+ "italianText":"Seleziona il numero del set preferito da indossare.",
+ "italianFontType":1,
+ "germanText":"Wähle die Nummer des Favoriten-Sets, das du tragen willst.",
+ "germanFontType":1,
+ "spanishText":"Elige el número de conjunto favorito que quieres ponerte.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Elige el número de conjunto favorito que quieres ponerte.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Selecione o número do Conjunto Favorito que quer vestir.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_favorite_regist1",
+ "englishUsText":"Favorite Set ①",
+ "englishUsFontType":1,
+ "frenchText":"Ensemble préféré ①",
+ "frenchFontType":1,
+ "italianText":"Set preferito ①",
+ "italianFontType":1,
+ "germanText":"Favoriten-Set ①",
+ "germanFontType":1,
+ "spanishText":"Conjunto favorito ①",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conjunto favorito ①",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conjunto Favorito ①",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_favorite_regist2",
+ "englishUsText":"Favorite Set ②",
+ "englishUsFontType":1,
+ "frenchText":"Ensemble préféré ②",
+ "frenchFontType":1,
+ "italianText":"Set preferito ②",
+ "italianFontType":1,
+ "germanText":"Favoriten-Set ②",
+ "germanFontType":1,
+ "spanishText":"Conjunto favorito ②",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conjunto favorito ②",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conjunto Favorito ②",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_favorite_regist3",
+ "englishUsText":"Favorite Set ③",
+ "englishUsFontType":1,
+ "frenchText":"Ensemble préféré ③",
+ "frenchFontType":1,
+ "italianText":"Set preferito ③",
+ "italianFontType":1,
+ "germanText":"Favoriten-Set ③",
+ "germanFontType":1,
+ "spanishText":"Conjunto favorito ③",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conjunto favorito ③",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conjunto Favorito ③",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_favorite_regist4",
+ "englishUsText":"Favorite Set ④",
+ "englishUsFontType":1,
+ "frenchText":"Ensemble préféré ④",
+ "frenchFontType":1,
+ "italianText":"Set preferito ④",
+ "italianFontType":1,
+ "germanText":"Favoriten-Set ④",
+ "germanFontType":1,
+ "spanishText":"Conjunto favorito ④",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conjunto favorito ④",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conjunto Favorito ④",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_favorite_regist5",
+ "englishUsText":"Favorite Set ⑤",
+ "englishUsFontType":1,
+ "frenchText":"Ensemble préféré ⑤",
+ "frenchFontType":1,
+ "italianText":"Set preferito ⑤",
+ "italianFontType":1,
+ "germanText":"Favoriten-Set ⑤",
+ "germanFontType":1,
+ "spanishText":"Conjunto favorito ⑤",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conjunto favorito ⑤",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conjunto Favorito ⑤",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_favorite_regist6",
+ "englishUsText":"Favorite Set ⑥",
+ "englishUsFontType":1,
+ "frenchText":"Ensemble préféré ⑥",
+ "frenchFontType":1,
+ "italianText":"Set preferito ⑥",
+ "italianFontType":1,
+ "germanText":"Favoriten-Set ⑥",
+ "germanFontType":1,
+ "spanishText":"Conjunto favorito ⑥",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conjunto favorito ⑥",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conjunto Favorito ⑥",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_favorite_regist7",
+ "englishUsText":"Favorite Set ⑦",
+ "englishUsFontType":1,
+ "frenchText":"Ensemble préféré ⑦",
+ "frenchFontType":1,
+ "italianText":"Set preferito ⑦",
+ "italianFontType":1,
+ "germanText":"Favoriten-Set ⑦",
+ "germanFontType":1,
+ "spanishText":"Conjunto favorito ⑦",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conjunto favorito ⑦",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conjunto Favorito ⑦",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_favorite_regist8",
+ "englishUsText":"Favorite Set ⑧",
+ "englishUsFontType":1,
+ "frenchText":"Ensemble préféré ⑧",
+ "frenchFontType":1,
+ "italianText":"Set preferito ⑧",
+ "italianFontType":1,
+ "germanText":"Favoriten-Set ⑧",
+ "germanFontType":1,
+ "spanishText":"Conjunto favorito ⑧",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conjunto favorito ⑧",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conjunto Favorito ⑧",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_favorite_notregist",
+ "englishUsText":"Available",
+ "englishUsFontType":1,
+ "frenchText":"Disponible",
+ "frenchFontType":1,
+ "italianText":"Disponibile",
+ "italianFontType":1,
+ "germanText":"Verfügbar",
+ "germanFontType":1,
+ "spanishText":"Disponible",
+ "spanishFontType":1,
+ "neutralSpanishText":"Disponible",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Disponível",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_favorite_load_result",
+ "englishUsText":"You changed clothes!",
+ "englishUsFontType":1,
+ "frenchText":"Tu as changé de vêtements !",
+ "frenchFontType":1,
+ "italianText":"Hai cambiato abito!",
+ "italianFontType":1,
+ "germanText":"Du hast die Kleidung gewechselt!",
+ "germanFontType":1,
+ "spanishText":"Te has cambiado de ropa.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Te cambiaste de ropa.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Você mudou de roupa!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_favorite_load_title",
+ "englishUsText":"Do you want to wear this set?",
+ "englishUsFontType":1,
+ "frenchText":"Veux-tu porter cet ensemble ?",
+ "frenchFontType":1,
+ "italianText":"Indossare questo set?",
+ "italianFontType":1,
+ "germanText":"Willst du dieses Set anziehen?",
+ "germanFontType":1,
+ "spanishText":"¿Quieres ponerte este conjunto?",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Quieres ponerte este conjunto?",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Quer vestir este Conjunto?",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_favorite_load_supple",
+ "englishUsText":"You can change into previously saved Favorite Sets.",
+ "englishUsFontType":1,
+ "frenchText":"Tu peux te changer avec un ensemble sauvegardé précédemment.",
+ "frenchFontType":1,
+ "italianText":"Puoi indossare un set preferito precedentemente salvato.",
+ "italianFontType":1,
+ "germanText":"Du kannst auch zuvor gespeicherte Favoriten-Sets anziehen.",
+ "germanFontType":1,
+ "spanishText":"Puedes cambiar a conjuntos favoritos guardados previamente.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Puedes cambiar a conjuntos favoritos guardados previamente.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Você pode usar Conjuntos Favoritos salvos anteriormente.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_favorite_rewrite_title",
+ "englishUsText":"Overwrite?",
+ "englishUsFontType":1,
+ "frenchText":"Écraser ?",
+ "frenchFontType":1,
+ "italianText":"Sovrascrivere?",
+ "italianFontType":1,
+ "germanText":"Überschreiben?",
+ "germanFontType":1,
+ "spanishText":"¿Sobrescribir?",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Sobrescribir?",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sobrescrever?",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_favorite_rewrite_add",
+ "englishUsText":"*The current Favorite Set will be lost.",
+ "englishUsFontType":1,
+ "frenchText":"*L'ensemble préféré actuel sera perdu.",
+ "frenchFontType":1,
+ "italianText":"*Il set preferito attuale andrà perso.",
+ "italianFontType":1,
+ "germanText":"*Das aktuelle Favoriten-Set geht verloren.",
+ "germanFontType":1,
+ "spanishText":"*El conjunto favorito actual se perderá.",
+ "spanishFontType":1,
+ "neutralSpanishText":"*El conjunto favorito actual se perderá.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"*O Conjunto Favorito atual será perdido.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_favorite_add",
+ "englishUsText":"Please select the number of the Favorite Set you want to wear.",
+ "englishUsFontType":1,
+ "frenchText":"Choisis le chiffre de l'ensemble préféré que tu veux porter.",
+ "frenchFontType":1,
+ "italianText":"Seleziona il numero del set preferito da indossare.",
+ "italianFontType":1,
+ "germanText":"Wähle die Nummer des Favoriten-Sets, das du tragen willst.",
+ "germanFontType":1,
+ "spanishText":"Elige el número de conjunto favorito que quieres ponerte.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Elige el número de conjunto favorito que quieres ponerte.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Selecione o número do Conjunto Favorito que quer vestir.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_favorite_rewrite_result",
+ "englishUsText":"Overwrite completed!",
+ "englishUsFontType":1,
+ "frenchText":"Écrasement terminé !",
+ "frenchFontType":1,
+ "italianText":"Sovrascrittura completata!",
+ "italianFontType":1,
+ "germanText":"Überschreiben abgeschlossen!",
+ "germanFontType":1,
+ "spanishText":"Sobrescritura completada.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sobrescritura completada.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sobrescreveu com sucesso!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_mydon_costume",
+ "englishUsText":"Clothes",
+ "englishUsFontType":1,
+ "frenchText":"Vêtements",
+ "frenchFontType":1,
+ "italianText":"Abiti",
+ "italianFontType":1,
+ "germanText":"Kleidung",
+ "germanFontType":1,
+ "spanishText":"Ropa",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ropa",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Roupas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_mydon_costume_add",
+ "englishUsText":"Select what to wear.\n*Mini Characters and Costumes cannot be worn together.",
+ "englishUsFontType":1,
+ "frenchText":"Choisis quoi porter.\n*Les mini personnages et costumes ne peuvent être portés ensemble.",
+ "frenchFontType":1,
+ "italianText":"Seleziona cosa indossare.\n*Mini-personaggi e costumi non insieme\n",
+ "italianFontType":1,
+ "germanText":"Wähl Kleidung.\n*Mini-Charaktere und Kostüme sind nicht zugleich verwendbar.",
+ "germanFontType":1,
+ "spanishText":"Selecciona qué ponerte.\n*No se pueden poner a la vez minipersonajes y trajes.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Selecciona qué ponerte.\n*No se pueden poner a la vez minipersonajes y trajes.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Selecione a roupa.\n*Não pode usar personagens e fantasias mini juntas.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_costume_mydon",
+ "englishUsText":"Just trying this out!",
+ "englishUsFontType":1,
+ "frenchText":"Je fais juste un petit essayage !",
+ "frenchFontType":1,
+ "italianText":"Volevo provarlo!",
+ "italianFontType":1,
+ "germanText":"Probiere das nur aus!",
+ "germanFontType":1,
+ "spanishText":"¡Solo me estoy probando esto!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Solo me estoy probando esto!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Só tô testando!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_select_shougou",
+ "englishUsText":"Set player title.",
+ "englishUsFontType":1,
+ "frenchText":"Choisis un titre de joueur.",
+ "frenchFontType":1,
+ "italianText":"Seleziona il titolo del giocatore.",
+ "italianFontType":1,
+ "germanText":"Lege den Spielertitel fest.",
+ "germanFontType":1,
+ "spanishText":"Configura el título del jugador.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Configura el título del jugador.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Determine o título de jogador.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_syougou_list",
+ "englishUsText":"Title List",
+ "englishUsFontType":1,
+ "frenchText":"Liste de titres",
+ "frenchFontType":1,
+ "italianText":"Elenco titoli",
+ "italianFontType":1,
+ "germanText":"Titelliste",
+ "germanFontType":1,
+ "spanishText":"Lista de títulos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Lista de títulos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Lista de títulos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_question",
+ "englishUsText":"Select Player",
+ "englishUsFontType":1,
+ "frenchText":"Choisis un joueur",
+ "frenchFontType":1,
+ "italianText":"Seleziona giocatore",
+ "italianFontType":1,
+ "germanText":"Spieler wählen",
+ "germanFontType":1,
+ "spanishText":"Seleccionar jugador",
+ "spanishFontType":1,
+ "neutralSpanishText":"Seleccionar jugador",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Selecionar jogador",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_question_add_txt",
+ "englishUsText":"Select a player to customize.",
+ "englishUsFontType":1,
+ "frenchText":"Choisis un joueur à personnaliser.",
+ "frenchFontType":1,
+ "italianText":"Seleziona un giocatore da personalizzare.",
+ "italianFontType":1,
+ "germanText":"Wähle einen Spieler, den du anpassen willst.",
+ "germanFontType":1,
+ "spanishText":"Selecciona a un jugador para personalizarlo.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Selecciona un jugador para personalizarlo.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Selecione um jogador para personalizar.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_mydon_title",
+ "englishUsText":"My DON",
+ "englishUsFontType":1,
+ "frenchText":"Mon DON",
+ "frenchFontType":1,
+ "italianText":"I miei DON",
+ "italianFontType":1,
+ "germanText":"Mein DON",
+ "germanFontType":1,
+ "spanishText":"Mi DON",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mi DON",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Meu DON",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_mydon_supple1",
+ "englishUsText":"*Some Mini Characters and Costumes cannot be worn together.",
+ "englishUsFontType":1,
+ "frenchText":"*Certains mini personnages et costumes ne peuvent être portés ensemble.",
+ "frenchFontType":1,
+ "italianText":"*Alcuni mini-pers. e costumi non sono indossabili insieme.",
+ "italianFontType":1,
+ "germanText":"*Einige Mini-Charaktere und Kostüme sind n. zugleich vwndb.",
+ "germanFontType":1,
+ "spanishText":"Algunos minipersonajes y trajes no se pueden poner a la vez.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Algunos minipersonajes y trajes no se pueden poner a la vez.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"*Não se pode usar certos personagens e fantasias mini juntos.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_mydon_supple2",
+ "englishUsText":"*Some outfits may not show the selected color.",
+ "englishUsFontType":1,
+ "frenchText":"*Certaines tenues peuvent ne pas montrer la couleur choisie.",
+ "frenchFontType":1,
+ "italianText":"*Alcuni completi possono non prevedere il colore selezionato.",
+ "italianFontType":1,
+ "germanText":"*Bei manchen Outfits erscheint die gewählte Farbe nicht.",
+ "germanFontType":1,
+ "spanishText":"*Puede que algunos atuendos no muestren el color elegido.",
+ "spanishFontType":1,
+ "neutralSpanishText":"*Puede que algunos atuendos no muestren el color elegido.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"*Alguns trajes podem não mostrar a cor selecionada.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_select_mydon",
+ "englishUsText":"Set DON-chan’s clothes and Mini Character.",
+ "englishUsFontType":1,
+ "frenchText":"Choisis des vêtements et un mini personnage pour DON-chan.",
+ "frenchFontType":1,
+ "italianText":"Seleziona gli abiti e il mini-personaggio di DON-chan.",
+ "italianFontType":1,
+ "germanText":"Lege DON-chans Kleidung und Mini-Charakter fest.",
+ "germanFontType":1,
+ "spanishText":"Configura la ropa y el minipersonaje de DON-chan.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Configura las ropas y el minipersonaje de DON-chan.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Determine as roupas e personagem mini de DON-chan.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_title",
+ "englishUsText":"Customization Room ",
+ "englishUsFontType":1,
+ "frenchText":"Salle de personnalisation ",
+ "frenchFontType":1,
+ "italianText":"Personalizza ",
+ "italianFontType":1,
+ "germanText":"Anpassungsraum ",
+ "germanFontType":1,
+ "spanishText":"Sala de personalización ",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sala de personalización",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sala de personalização ",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_syougou_detail_word",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"customize_syougou_detail",
+ "englishUsText":"Song\n“%s”\nMission Bingo Complete",
+ "englishUsFontType":1,
+ "frenchText":"Chanson\n\"%s\"\nMission de bingo terminé",
+ "frenchFontType":1,
+ "italianText":"Canzone\n\"%s\"\nMissione bingo completata",
+ "italianFontType":1,
+ "germanText":"Song\n\"%s\"\nMissions-Bingo abgeschlossen",
+ "germanFontType":1,
+ "spanishText":"Canción\n\"%s\"\nCompletada misión del bingo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Canción\n\"%s\"\nCompletada misión del bingo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Música\n“%s”\nBingo de missões completado",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_arashi",
+ "englishUsText":"Arashi",
+ "englishUsFontType":1,
+ "frenchText":"Arashi",
+ "frenchFontType":1,
+ "italianText":"Arashi",
+ "italianFontType":1,
+ "germanText":"Arashi",
+ "germanFontType":1,
+ "spanishText":"Arashi",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tormenta",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tempestade",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_okame",
+ "englishUsText":"Masked Kid (Okame)",
+ "englishUsFontType":1,
+ "frenchText":"Enfant masqué (Okame)",
+ "frenchFontType":1,
+ "italianText":"Maschera di Okame",
+ "italianFontType":1,
+ "germanText":"Masken-Kind (Okame)",
+ "germanFontType":1,
+ "spanishText":"Enmascarado (Okame)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Enmascarado (Okame)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Jovem mascarado (Okame)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_fox",
+ "englishUsText":"Masked Kid (Fox)",
+ "englishUsFontType":1,
+ "frenchText":"Enfant masqué (renard)",
+ "frenchFontType":1,
+ "italianText":"Maschera da volpe",
+ "italianFontType":1,
+ "germanText":"Masken-Kind (Fuchs)",
+ "germanFontType":1,
+ "spanishText":"Enmascarado (zorro)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Enmascarado (zorro)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Jovem mascarado (raposa)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_hyotto",
+ "englishUsText":"Masked Kid (Hyottoko)",
+ "englishUsFontType":1,
+ "frenchText":"Enfant masqué (Hyottoko)",
+ "frenchFontType":1,
+ "italianText":"Maschera da Hyottoko",
+ "italianFontType":1,
+ "germanText":"Masken-Kind (Hyottoko)",
+ "germanFontType":1,
+ "spanishText":"Enmascarado (Hyottoko)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Enmascarado (Hyottoko)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Jovem mascar. (Hyottoko)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_suwaru",
+ "englishUsText":"Sitting DON",
+ "englishUsFontType":1,
+ "frenchText":"DON assis",
+ "frenchFontType":1,
+ "italianText":"DON seduto",
+ "italianFontType":1,
+ "germanText":"Sitzender DON",
+ "germanFontType":1,
+ "spanishText":"DON sentado",
+ "spanishFontType":1,
+ "neutralSpanishText":"DON sentado",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DON sentado",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_sop",
+ "englishUsText":"Princess Soprano",
+ "englishUsFontType":1,
+ "frenchText":"Princesse Soprano",
+ "frenchFontType":1,
+ "italianText":"Principessa Soprano",
+ "italianFontType":1,
+ "germanText":"Prinzessin Soprano",
+ "germanFontType":1,
+ "spanishText":"Princesa Soprano",
+ "spanishFontType":1,
+ "neutralSpanishText":"Princesa Soprano",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Princesa Soprano",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_chochin",
+ "englishUsText":"Lantern Eel",
+ "englishUsFontType":1,
+ "frenchText":"Anguille lanterne",
+ "frenchFontType":1,
+ "italianText":"Anguilla lanterna",
+ "italianFontType":1,
+ "germanText":"Laternen-Aal",
+ "germanFontType":1,
+ "spanishText":"Anguila linterna",
+ "spanishFontType":1,
+ "neutralSpanishText":"Anguila linterna",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Enguia luminosa",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_thia",
+ "englishUsText":"Tia & Popokaka",
+ "englishUsFontType":1,
+ "frenchText":"Tia et Popokaka",
+ "frenchFontType":1,
+ "italianText":"Tia e Popokaka",
+ "italianFontType":1,
+ "germanText":"Tia & Popokaka",
+ "germanFontType":1,
+ "spanishText":"Tia y Popokaka",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tia y Popokaka",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tia & Popokaka",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_nekoshaku",
+ "englishUsText":"Neko and Shaxy",
+ "englishUsFontType":1,
+ "frenchText":"Neko et Shaxy",
+ "frenchFontType":1,
+ "italianText":"Neko e Shaxy",
+ "italianFontType":1,
+ "germanText":"Neko und Shaxy",
+ "germanFontType":1,
+ "spanishText":"Neko y Shaxy",
+ "spanishFontType":1,
+ "neutralSpanishText":"Neko y Shaxy",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Neko e Shaxy",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_huga",
+ "englishUsText":"Fuga",
+ "englishUsFontType":1,
+ "frenchText":"Fuga",
+ "frenchFontType":1,
+ "italianText":"Fuga",
+ "italianFontType":1,
+ "germanText":"Fuga",
+ "germanFontType":1,
+ "spanishText":"Fuga",
+ "spanishFontType":1,
+ "neutralSpanishText":"Fuga",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Fuga",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_maou",
+ "englishUsText":"Maoh",
+ "englishUsFontType":1,
+ "frenchText":"Maoh",
+ "frenchFontType":1,
+ "italianText":"Maoh",
+ "italianFontType":1,
+ "germanText":"Maoh",
+ "germanFontType":1,
+ "spanishText":"Maoh",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maoh",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Maoh",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_mirai",
+ "englishUsText":"Mirai",
+ "englishUsFontType":1,
+ "frenchText":"Mirai",
+ "frenchFontType":1,
+ "italianText":"Mirai",
+ "italianFontType":1,
+ "germanText":"Mirai",
+ "germanFontType":1,
+ "spanishText":"Mirai",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mirai",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mirai",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_yogadon",
+ "englishUsText":"Yoga DON",
+ "englishUsFontType":1,
+ "frenchText":"DON yoga",
+ "frenchFontType":1,
+ "italianText":"DON yoga",
+ "italianFontType":1,
+ "germanText":"Yoga-DON",
+ "germanFontType":1,
+ "spanishText":"DON yoga",
+ "spanishFontType":1,
+ "neutralSpanishText":"DON yoga",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DON ioga",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_yotun",
+ "englishUsText":"Crawling DON",
+ "englishUsFontType":1,
+ "frenchText":"DON rampant",
+ "frenchFontType":1,
+ "italianText":"DON strisciante",
+ "italianFontType":1,
+ "germanText":"Kriechender DON",
+ "germanFontType":1,
+ "spanishText":"DON reptante",
+ "spanishFontType":1,
+ "neutralSpanishText":"DON reptante",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DON rastejando",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_ralco",
+ "englishUsText":"Ralco",
+ "englishUsFontType":1,
+ "frenchText":"Ralco",
+ "frenchFontType":1,
+ "italianText":"Ralco",
+ "italianFontType":1,
+ "germanText":"Ralco",
+ "germanFontType":1,
+ "spanishText":"Ralco",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ralco",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ralco",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_mecha",
+ "englishUsText":"Mecha-DON",
+ "englishUsFontType":1,
+ "frenchText":"Mecha DON",
+ "frenchFontType":1,
+ "italianText":"Mecha-DON",
+ "italianFontType":1,
+ "germanText":"Mecha-DON",
+ "germanFontType":1,
+ "spanishText":"Robot-DON",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mecha-DON",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mecha-DON",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_10zikizu",
+ "englishUsText":"Cross-Scarred Man",
+ "englishUsFontType":1,
+ "frenchText":"Homme balafré",
+ "frenchFontType":1,
+ "italianText":"Cicatrice a croce",
+ "italianFontType":1,
+ "germanText":"Narbenbedeckter Mann",
+ "germanFontType":1,
+ "spanishText":"Tipo con cicatriz",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tipo con cicatriz",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Homem com cicatrizes",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_akabeko",
+ "englishUsText":"Akabeko",
+ "englishUsFontType":1,
+ "frenchText":"Akabeko",
+ "frenchFontType":1,
+ "italianText":"Akabeko",
+ "italianFontType":1,
+ "germanText":"Akabeko",
+ "germanFontType":1,
+ "spanishText":"Akabeko",
+ "spanishFontType":1,
+ "neutralSpanishText":"Akabeko",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Akabeko",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_akazukin",
+ "englishUsText":"Little Red Riding Hood",
+ "englishUsFontType":1,
+ "frenchText":"Petit chaperon rouge",
+ "frenchFontType":1,
+ "italianText":"Cappuccetto rosso",
+ "italianFontType":1,
+ "germanText":"Rotkäppchen",
+ "germanFontType":1,
+ "spanishText":"Caperucita Roja",
+ "spanishFontType":1,
+ "neutralSpanishText":"Caperucita Roja",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Chapeuzinho Vermelho",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_alpaka",
+ "englishUsText":"Alpaca",
+ "englishUsFontType":1,
+ "frenchText":"Alpaga",
+ "frenchFontType":1,
+ "italianText":"Alpaca",
+ "italianFontType":1,
+ "germanText":"Alpaka",
+ "germanFontType":1,
+ "spanishText":"Alpaca",
+ "spanishFontType":1,
+ "neutralSpanishText":"Alpaca",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alpaca",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_anime",
+ "englishUsText":"Anime Eyes",
+ "englishUsFontType":1,
+ "frenchText":"Yeux de dessin animé",
+ "frenchFontType":1,
+ "italianText":"Occhi da anime",
+ "italianFontType":1,
+ "germanText":"Anime-Augen",
+ "germanFontType":1,
+ "spanishText":"Ojos de anime",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ojos de anime",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Olhos Anime",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_blind",
+ "englishUsText":"Blindfold",
+ "englishUsFontType":1,
+ "frenchText":"Bandeau",
+ "frenchFontType":1,
+ "italianText":"Barra nera",
+ "italianFontType":1,
+ "germanText":"Augenbinde",
+ "germanFontType":1,
+ "spanishText":"Venda",
+ "spanishFontType":1,
+ "neutralSpanishText":"Venda",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Venda",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_bulldog",
+ "englishUsText":"Bulldog",
+ "englishUsFontType":1,
+ "frenchText":"Bouledogue",
+ "frenchFontType":1,
+ "italianText":"Bulldog",
+ "italianFontType":1,
+ "germanText":"Bulldogge",
+ "germanFontType":1,
+ "spanishText":"Bulldog",
+ "spanishFontType":1,
+ "neutralSpanishText":"Bulldog",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Buldogue",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_camera",
+ "englishUsText":"Camera",
+ "englishUsFontType":1,
+ "frenchText":"Appareil photo",
+ "frenchFontType":1,
+ "italianText":"Macchina fotografica",
+ "italianFontType":1,
+ "germanText":"Kamera",
+ "germanFontType":1,
+ "spanishText":"Cámara",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cámara",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Câmera",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_catmake",
+ "englishUsText":"Cat Face",
+ "englishUsFontType":1,
+ "frenchText":"Tête de chat",
+ "frenchFontType":1,
+ "italianText":"Volto da gatto",
+ "italianFontType":1,
+ "germanText":"Katzengesicht",
+ "germanFontType":1,
+ "spanishText":"Cara de gato",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cara de gato",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Face de gato",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_celeb",
+ "englishUsText":"Glamorous Glasses",
+ "englishUsFontType":1,
+ "frenchText":"Lunettes glamour",
+ "frenchFontType":1,
+ "italianText":"Occhiali da star",
+ "italianFontType":1,
+ "germanText":"Schicke Brille",
+ "germanFontType":1,
+ "spanishText":"Gafas glamurosas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Lentes glamurosos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Óculos glamourosos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_cheese",
+ "englishUsText":"Cheeseburger",
+ "englishUsFontType":1,
+ "frenchText":"Cheeseburger",
+ "frenchFontType":1,
+ "italianText":"Cheeseburger",
+ "italianFontType":1,
+ "germanText":"Cheeseburger",
+ "germanFontType":1,
+ "spanishText":"Hamburguesa con queso",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hamburguesa con queso",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"X-Burguer",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_cosmo",
+ "englishUsText":"Spacesuit",
+ "englishUsFontType":1,
+ "frenchText":"Combinaison spatiale",
+ "frenchFontType":1,
+ "italianText":"Tuta spaziale",
+ "italianFontType":1,
+ "germanText":"Raumanzug",
+ "germanFontType":1,
+ "spanishText":"Traje espacial",
+ "spanishFontType":1,
+ "neutralSpanishText":"Traje espacial",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Traje espacial",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_dai3nome",
+ "englishUsText":"Third Eye",
+ "englishUsFontType":1,
+ "frenchText":"Troisième œil",
+ "frenchFontType":1,
+ "italianText":"Terzo occhio",
+ "italianFontType":1,
+ "germanText":"Das Dritte Auge",
+ "germanFontType":1,
+ "spanishText":"Tercer ojo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tercer ojo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Terceiro olho",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_danbo",
+ "englishUsText":"Cardboard",
+ "englishUsFontType":1,
+ "frenchText":"Carton",
+ "frenchFontType":1,
+ "italianText":"Scatola di cartone",
+ "italianFontType":1,
+ "germanText":"Pappe",
+ "germanFontType":1,
+ "spanishText":"Cartón",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cartón",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Papelão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_densha",
+ "englishUsText":"Train",
+ "englishUsFontType":1,
+ "frenchText":"Train",
+ "frenchFontType":1,
+ "italianText":"Treno",
+ "italianFontType":1,
+ "germanText":"Zug",
+ "germanFontType":1,
+ "spanishText":"Tren",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tren",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Trem",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_devil",
+ "englishUsText":"Devil",
+ "englishUsFontType":1,
+ "frenchText":"Diable",
+ "frenchFontType":1,
+ "italianText":"Diavolo",
+ "italianFontType":1,
+ "germanText":"Teufel",
+ "germanFontType":1,
+ "spanishText":"Diablo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Diablo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Demônio",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_dododo",
+ "englishUsText":"DoDoDoDo",
+ "englishUsFontType":1,
+ "frenchText":"DoDoDoDo",
+ "frenchFontType":1,
+ "italianText":"DoDoDoDo",
+ "italianFontType":1,
+ "germanText":"DoDoDoDo",
+ "germanFontType":1,
+ "spanishText":"DoDoDoDo",
+ "spanishFontType":1,
+ "neutralSpanishText":"DoDoDoDo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DoDoDoDo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_doguu",
+ "englishUsText":"Jomon Statue",
+ "englishUsFontType":1,
+ "frenchText":"Statue Jomon",
+ "frenchFontType":1,
+ "italianText":"Statuetta di argilla",
+ "italianFontType":1,
+ "germanText":"Jomon-Statue",
+ "germanFontType":1,
+ "spanishText":"Estatua de arcilla",
+ "spanishFontType":1,
+ "neutralSpanishText":"Muñeco de arcilla",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Boneca de argila",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_drill",
+ "englishUsText":"Drill",
+ "englishUsFontType":1,
+ "frenchText":"Foreuse",
+ "frenchFontType":1,
+ "italianText":"Trapano",
+ "italianFontType":1,
+ "germanText":"Bohrer",
+ "germanFontType":1,
+ "spanishText":"Perforadora",
+ "spanishFontType":1,
+ "neutralSpanishText":"Perforadora",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Furadeira",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_drum",
+ "englishUsText":"Drum Set",
+ "englishUsFontType":1,
+ "frenchText":"Batterie",
+ "frenchFontType":1,
+ "italianText":"Batteria",
+ "italianFontType":1,
+ "germanText":"Schlagzeug",
+ "germanFontType":1,
+ "spanishText":"Batería",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tambores",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tambores",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_electric",
+ "englishUsText":"Electric Guitar",
+ "englishUsFontType":1,
+ "frenchText":"Guitare électrique",
+ "frenchFontType":1,
+ "italianText":"Chitarra elettrica",
+ "italianFontType":1,
+ "germanText":"E-Gitarre",
+ "germanFontType":1,
+ "spanishText":"Guitarra eléctrica",
+ "spanishFontType":1,
+ "neutralSpanishText":"Guitarra eléctrica",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Guitarra elétrica",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_extu",
+ "englishUsText":"Huh?!",
+ "englishUsFontType":1,
+ "frenchText":"Hein ?!",
+ "frenchFontType":1,
+ "italianText":"Eh?!?",
+ "italianFontType":1,
+ "germanText":"Was?!",
+ "germanFontType":1,
+ "spanishText":"¡¿Eh?!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡¿Eh?!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hein?!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_fang",
+ "englishUsText":"Fang",
+ "englishUsFontType":1,
+ "frenchText":"Croc",
+ "frenchFontType":1,
+ "italianText":"Zanne",
+ "italianFontType":1,
+ "germanText":"Fänge",
+ "germanFontType":1,
+ "spanishText":"Colmillo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Colmillo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Presa",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_flanken",
+ "englishUsText":"Frankenstein",
+ "englishUsFontType":1,
+ "frenchText":"Frankenstein",
+ "frenchFontType":1,
+ "italianText":"Frankenstein",
+ "italianFontType":1,
+ "germanText":"Frankenstein",
+ "germanFontType":1,
+ "spanishText":"Frankenstein",
+ "spanishFontType":1,
+ "neutralSpanishText":"Frankenstein",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Frankenstein",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_fullmake",
+ "englishUsText":"Full Makeup",
+ "englishUsFontType":1,
+ "frenchText":"Maquillage complet",
+ "frenchFontType":1,
+ "italianText":"Volto truccato",
+ "italianFontType":1,
+ "germanText":"Komplettes Make-up",
+ "germanFontType":1,
+ "spanishText":"Maquillaje completo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maquillaje completo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Maquiagem total",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_gakki",
+ "englishUsText":"Harmonica",
+ "englishUsFontType":1,
+ "frenchText":"Harmonica",
+ "frenchFontType":1,
+ "italianText":"Armonica",
+ "italianFontType":1,
+ "germanText":"Harmonika",
+ "germanFontType":1,
+ "spanishText":"Armónica",
+ "spanishFontType":1,
+ "neutralSpanishText":"Armónica",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Gaita",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_gantai",
+ "englishUsText":"Eyepatch",
+ "englishUsFontType":1,
+ "frenchText":"Cache-œil",
+ "frenchFontType":1,
+ "italianText":"Benda sull'occhio",
+ "italianFontType":1,
+ "germanText":"Augenklappe",
+ "germanFontType":1,
+ "spanishText":"Parche",
+ "spanishFontType":1,
+ "neutralSpanishText":"Parche",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tapa-olho",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_goldunch",
+ "englishUsText":"Lucky Gold",
+ "englishUsFontType":1,
+ "frenchText":"Or chanceux",
+ "frenchFontType":1,
+ "italianText":"Fortuna dorata",
+ "italianFontType":1,
+ "germanText":"Glücksgold",
+ "germanFontType":1,
+ "spanishText":"Oro de la suerte",
+ "spanishFontType":1,
+ "neutralSpanishText":"Oro de la suerte",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ouro da sorte",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_hakase",
+ "englishUsText":"Professor",
+ "englishUsFontType":1,
+ "frenchText":"Professeur",
+ "frenchFontType":1,
+ "italianText":"Scienziato pazzo",
+ "italianFontType":1,
+ "germanText":"Professor",
+ "germanFontType":1,
+ "spanishText":"Profesor",
+ "spanishFontType":1,
+ "neutralSpanishText":"Profesor",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Professor",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_hamster",
+ "englishUsText":"Hamster",
+ "englishUsFontType":1,
+ "frenchText":"Hamster",
+ "frenchFontType":1,
+ "italianText":"Criceto",
+ "italianFontType":1,
+ "germanText":"Hamster",
+ "germanFontType":1,
+ "spanishText":"Hámster",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hámster",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hamster",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_hanakazari",
+ "englishUsText":"Flower Decoration",
+ "englishUsFontType":1,
+ "frenchText":"Décoration florale",
+ "frenchFontType":1,
+ "italianText":"Decorazione floreale",
+ "italianFontType":1,
+ "germanText":"Blumendekoration",
+ "germanFontType":1,
+ "spanishText":"Decoración floral",
+ "spanishFontType":1,
+ "neutralSpanishText":"Decoración floral",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Decoração de flor",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_harajuku",
+ "englishUsText":"Harajuku",
+ "englishUsFontType":1,
+ "frenchText":"Harajuku",
+ "frenchFontType":1,
+ "italianText":"Trendy",
+ "italianFontType":1,
+ "germanText":"Harajuku",
+ "germanFontType":1,
+ "spanishText":"Harajuku",
+ "spanishFontType":1,
+ "neutralSpanishText":"Harajuku",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Harajuku",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_headphone",
+ "englishUsText":"Headphones",
+ "englishUsFontType":1,
+ "frenchText":"Écouteurs",
+ "frenchFontType":1,
+ "italianText":"Cuffie",
+ "italianFontType":1,
+ "germanText":"Kopfhörer",
+ "germanFontType":1,
+ "spanishText":"Auriculares",
+ "spanishFontType":1,
+ "neutralSpanishText":"Auriculares",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Headphones",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_hearcheek",
+ "englishUsText":"Heart Cheeks",
+ "englishUsFontType":1,
+ "frenchText":"Joues en cœur",
+ "frenchFontType":1,
+ "italianText":"Guance a cuore",
+ "italianFontType":1,
+ "germanText":"Herzbäckchen",
+ "germanFontType":1,
+ "spanishText":"Mejillas con corazones",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mejillas con corazones",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bochecas de coração",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_heart",
+ "englishUsText":"Heart",
+ "englishUsFontType":1,
+ "frenchText":"Cœur",
+ "frenchFontType":1,
+ "italianText":"Cuori",
+ "italianFontType":1,
+ "germanText":"Herz",
+ "germanFontType":1,
+ "spanishText":"Corazones",
+ "spanishFontType":1,
+ "neutralSpanishText":"Corazón",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Coração",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_heartgnt",
+ "englishUsText":"Heart Eyepatch",
+ "englishUsFontType":1,
+ "frenchText":"Cache-œil cœur",
+ "frenchFontType":1,
+ "italianText":"Benda a cuore",
+ "italianFontType":1,
+ "germanText":"Herz-Augenklappe",
+ "germanFontType":1,
+ "spanishText":"Parche con corazón",
+ "spanishFontType":1,
+ "neutralSpanishText":"Parche con corazón",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tapa-olho de coração",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_heartmake",
+ "englishUsText":"Joker",
+ "englishUsFontType":1,
+ "frenchText":"Joker",
+ "frenchFontType":1,
+ "italianText":"Joker",
+ "italianFontType":1,
+ "germanText":"Joker",
+ "germanFontType":1,
+ "spanishText":"Joker",
+ "spanishFontType":1,
+ "neutralSpanishText":"Joker",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Curinga",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_helico",
+ "englishUsText":"Helicopter",
+ "englishUsFontType":1,
+ "frenchText":"Hélicoptère",
+ "frenchFontType":1,
+ "italianText":"Elicottero",
+ "italianFontType":1,
+ "germanText":"Helikopter",
+ "germanFontType":1,
+ "spanishText":"Helicóptero",
+ "spanishFontType":1,
+ "neutralSpanishText":"Helicóptero",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Helicóptero",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_holstein",
+ "englishUsText":"Holstein",
+ "englishUsFontType":1,
+ "frenchText":"Vache",
+ "frenchFontType":1,
+ "italianText":"Mucca",
+ "italianFontType":1,
+ "germanText":"Holstein",
+ "germanFontType":1,
+ "spanishText":"Vaca",
+ "spanishFontType":1,
+ "neutralSpanishText":"Holstein",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Holstein",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_housaku",
+ "englishUsText":"Harvest",
+ "englishUsFontType":1,
+ "frenchText":"Récolte",
+ "frenchFontType":1,
+ "italianText":"Raccolto",
+ "italianFontType":1,
+ "germanText":"Ernte",
+ "germanFontType":1,
+ "spanishText":"Cosecha",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cosecha",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Colheita",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_houseki",
+ "englishUsText":"Jewelled",
+ "englishUsFontType":1,
+ "frenchText":"Orné",
+ "frenchFontType":1,
+ "italianText":"Gioielli",
+ "italianFontType":1,
+ "germanText":"Juwelen",
+ "germanFontType":1,
+ "spanishText":"Enjoyado",
+ "spanishFontType":1,
+ "neutralSpanishText":"Joya",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Joia",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_hukumake",
+ "englishUsText":"Kabuki Wrestler",
+ "englishUsFontType":1,
+ "frenchText":"Catcheur kabuki",
+ "frenchFontType":1,
+ "italianText":"Lottatore kabuki",
+ "italianFontType":1,
+ "germanText":"Kabuki-Ringer",
+ "germanFontType":1,
+ "spanishText":"Luchador de kabuki",
+ "spanishFontType":1,
+ "neutralSpanishText":"Luchador de kabuki",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Lutador Kabuki",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_hukumen",
+ "englishUsText":"Ski Mask",
+ "englishUsFontType":1,
+ "frenchText":"Masque de ski",
+ "frenchFontType":1,
+ "italianText":"Passamontagna",
+ "italianFontType":1,
+ "germanText":"Ski-Maske",
+ "germanFontType":1,
+ "spanishText":"Máscara de esquí",
+ "spanishFontType":1,
+ "neutralSpanishText":"Máscara",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Máscara",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_ikari",
+ "englishUsText":"Angry Face",
+ "englishUsFontType":1,
+ "frenchText":"Visage énervé",
+ "frenchFontType":1,
+ "italianText":"Arrabbiato",
+ "italianFontType":1,
+ "germanText":"Wütendes Gesicht",
+ "germanFontType":1,
+ "spanishText":"Cara enfadada",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cara enojada",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Face braba",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_ikesun",
+ "englishUsText":"Trendy Sunglasses",
+ "englishUsFontType":1,
+ "frenchText":"Lunettes de soleil branchées",
+ "frenchFontType":1,
+ "italianText":"Occhiali da sole trendy",
+ "italianFontType":1,
+ "germanText":"Schicke Sonnenbrille",
+ "germanFontType":1,
+ "spanishText":"Gafas de sol elegantes",
+ "spanishFontType":1,
+ "neutralSpanishText":"Lentes oscuros elegantes",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Óculos de sol estilosos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_illusion",
+ "englishUsText":"Illusion",
+ "englishUsFontType":1,
+ "frenchText":"Illusion",
+ "frenchFontType":1,
+ "italianText":"Illusione",
+ "italianFontType":1,
+ "germanText":"Illusion",
+ "germanFontType":1,
+ "spanishText":"Ilusión",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ilusión",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ilusão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_iwa",
+ "englishUsText":"Rock",
+ "englishUsFontType":1,
+ "frenchText":"Pierre",
+ "frenchFontType":1,
+ "italianText":"Roccia",
+ "italianFontType":1,
+ "germanText":"Stein",
+ "germanFontType":1,
+ "spanishText":"Roca",
+ "spanishFontType":1,
+ "neutralSpanishText":"Rock",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pedra",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_jungle",
+ "englishUsText":"Jungle",
+ "englishUsFontType":1,
+ "frenchText":"Jungle",
+ "frenchFontType":1,
+ "italianText":"Giungla",
+ "italianFontType":1,
+ "germanText":"Dschungel",
+ "germanFontType":1,
+ "spanishText":"Selva",
+ "spanishFontType":1,
+ "neutralSpanishText":"Selva",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Selva",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_kaba",
+ "englishUsText":"Hippo",
+ "englishUsFontType":1,
+ "frenchText":"Hippopotame",
+ "frenchFontType":1,
+ "italianText":"Ippopotamo",
+ "italianFontType":1,
+ "germanText":"Nilpferd",
+ "germanFontType":1,
+ "spanishText":"Hipo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hipo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hipopótamo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_kabuto",
+ "englishUsText":"Horned Dynastid",
+ "englishUsFontType":1,
+ "frenchText":"Scarabée cornu",
+ "frenchFontType":1,
+ "italianText":"Scarabeo rinoceronte",
+ "italianFontType":1,
+ "germanText":"Gehörnter Dynastid",
+ "germanFontType":1,
+ "spanishText":"Escarabajo con cuernos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Escarabajo con cuernos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Besouro-rinoceronte",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_kagemu",
+ "englishUsText":"Disgraced Warrior Makeup",
+ "englishUsFontType":1,
+ "frenchText":"Guerrier déchu",
+ "frenchFontType":1,
+ "italianText":"Guerriero in disgrazia",
+ "italianFontType":1,
+ "germanText":"Ehrloser-Krieger-Make-up",
+ "germanFontType":1,
+ "spanishText":"Guerrero en desgracia",
+ "spanishFontType":1,
+ "neutralSpanishText":"Guerrero en desgracia",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Maquiagem herói decaído",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_kajiki",
+ "englishUsText":"Marlin",
+ "englishUsFontType":1,
+ "frenchText":"Marlin",
+ "frenchFontType":1,
+ "italianText":"Marlin",
+ "italianFontType":1,
+ "germanText":"Schwertfisch",
+ "germanFontType":1,
+ "spanishText":"Pez aguja",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pez espada",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Espadarte",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_kame",
+ "englishUsText":"Turtle",
+ "englishUsFontType":1,
+ "frenchText":"Tortue",
+ "frenchFontType":1,
+ "italianText":"Tartaruga",
+ "italianFontType":1,
+ "germanText":"Schildkröte",
+ "germanFontType":1,
+ "spanishText":"Tortuga",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tortuga",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tartaruga",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_kani",
+ "englishUsText":"Crab",
+ "englishUsFontType":1,
+ "frenchText":"Crabe",
+ "frenchFontType":1,
+ "italianText":"Granchio",
+ "italianFontType":1,
+ "germanText":"Krabbe",
+ "germanFontType":1,
+ "spanishText":"Cangrejo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cangrejo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Caranguejo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_kaseki",
+ "englishUsText":"Fossil",
+ "englishUsFontType":1,
+ "frenchText":"Fossile",
+ "frenchFontType":1,
+ "italianText":"Fossile",
+ "italianFontType":1,
+ "germanText":"Fossil",
+ "germanFontType":1,
+ "spanishText":"Fósil",
+ "spanishFontType":1,
+ "neutralSpanishText":"Fósil",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Fóssil",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_katatu",
+ "englishUsText":"Snail",
+ "englishUsFontType":1,
+ "frenchText":"Escargot",
+ "frenchFontType":1,
+ "italianText":"Lumaca",
+ "italianFontType":1,
+ "germanText":"Schnecke",
+ "germanFontType":1,
+ "spanishText":"Caracol",
+ "spanishFontType":1,
+ "neutralSpanishText":"Caracol",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Lesma",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_kingyo",
+ "englishUsText":"Goldfish Mask",
+ "englishUsFontType":1,
+ "frenchText":"Masque de poisson rouge",
+ "frenchFontType":1,
+ "italianText":"Maschera da pesce rosso",
+ "italianFontType":1,
+ "germanText":"Goldfisch-Maske",
+ "germanFontType":1,
+ "spanishText":"Máscara de pececillo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Máscara de pececillo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Máscara de peixe dourado",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_kinoko",
+ "englishUsText":"Mushroom",
+ "englishUsFontType":1,
+ "frenchText":"Champignon",
+ "frenchFontType":1,
+ "italianText":"Funghi",
+ "italianFontType":1,
+ "germanText":"Pilz",
+ "germanFontType":1,
+ "spanishText":"Seta",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hongo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Cogumelo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_kirikabu",
+ "englishUsText":"Stump",
+ "englishUsFontType":1,
+ "frenchText":"Souche",
+ "frenchFontType":1,
+ "italianText":"Ceppo",
+ "italianFontType":1,
+ "germanText":"Stumpf",
+ "germanFontType":1,
+ "spanishText":"Tocón",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tronco",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Cotoco",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_koino",
+ "englishUsText":"Carp Banner",
+ "englishUsFontType":1,
+ "frenchText":"Banderole de carpe",
+ "frenchFontType":1,
+ "italianText":"Carpa",
+ "italianFontType":1,
+ "germanText":"Karpfenbanner",
+ "germanFontType":1,
+ "spanishText":"Carpa",
+ "spanishFontType":1,
+ "neutralSpanishText":"Estandarte con carpa",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bandeira de carpa",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_kok",
+ "englishUsText":"Chef",
+ "englishUsFontType":1,
+ "frenchText":"Chef",
+ "frenchFontType":1,
+ "italianText":"Chef",
+ "italianFontType":1,
+ "germanText":"Koch",
+ "germanFontType":1,
+ "spanishText":"Chef",
+ "spanishFontType":1,
+ "neutralSpanishText":"Chef",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Chef",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_komari",
+ "englishUsText":"Troubled Eyebrows",
+ "englishUsFontType":1,
+ "frenchText":"Sourcils inquiets",
+ "frenchFontType":1,
+ "italianText":"Corrucciato",
+ "italianFontType":1,
+ "germanText":"Besorgte Augenbrauen",
+ "germanFontType":1,
+ "spanishText":"Cejas de preocupación",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cejas de preocupación",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sobrancelhas preocupadas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_koutei",
+ "englishUsText":"Emperor (Three Kingdoms)",
+ "englishUsFontType":1,
+ "frenchText":"Empereur (Trois royaumes)",
+ "frenchFontType":1,
+ "italianText":"Imperatore (Tre Regni)",
+ "italianFontType":1,
+ "germanText":"Kaiser (3 Königreiche)",
+ "germanFontType":1,
+ "spanishText":"Emperador (Tres Reinos)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Emperador (Tres Reinos)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Imperador (Três Reinos)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_kujaku",
+ "englishUsText":"Peacock",
+ "englishUsFontType":1,
+ "frenchText":"Paon",
+ "frenchFontType":1,
+ "italianText":"Pavone",
+ "italianFontType":1,
+ "germanText":"Pfau",
+ "germanFontType":1,
+ "spanishText":"Pavo real",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pavo real",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pavão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_lion",
+ "englishUsText":"Lion",
+ "englishUsFontType":1,
+ "frenchText":"Lion",
+ "frenchFontType":1,
+ "italianText":"Leone",
+ "italianFontType":1,
+ "germanText":"Löwe",
+ "germanFontType":1,
+ "spanishText":"León",
+ "spanishFontType":1,
+ "neutralSpanishText":"León",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Leão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_mahou",
+ "englishUsText":"Wizard",
+ "englishUsFontType":1,
+ "frenchText":"Magicien",
+ "frenchFontType":1,
+ "italianText":"Mago",
+ "italianFontType":1,
+ "germanText":"Zauberer",
+ "germanFontType":1,
+ "spanishText":"Mago",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mago",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mago",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_maid",
+ "englishUsText":"Maid (Black)",
+ "englishUsFontType":1,
+ "frenchText":"Domestique (noir)",
+ "frenchFontType":1,
+ "italianText":"Cameriera (nero)",
+ "italianFontType":1,
+ "germanText":"Dienstmädchen (schwarz)",
+ "germanFontType":1,
+ "spanishText":"Doncella (negro)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Doncella (negro)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Camareira (preto)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_mask",
+ "englishUsText":"Cold Mask",
+ "englishUsFontType":1,
+ "frenchText":"Masque de rhume",
+ "frenchFontType":1,
+ "italianText":"Mascherina",
+ "italianFontType":1,
+ "germanText":"Kalte Maske",
+ "germanFontType":1,
+ "spanishText":"Máscara fría",
+ "spanishFontType":1,
+ "neutralSpanishText":"Máscara",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Máscara",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_mato",
+ "englishUsText":"Target",
+ "englishUsFontType":1,
+ "frenchText":"Cible",
+ "frenchFontType":1,
+ "italianText":"Bersaglio",
+ "italianFontType":1,
+ "germanText":"Ziel",
+ "germanFontType":1,
+ "spanishText":"Diana",
+ "spanishFontType":1,
+ "neutralSpanishText":"Objetivo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alvo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_meat",
+ "englishUsText":"Meat",
+ "englishUsFontType":1,
+ "frenchText":"Viande",
+ "frenchFontType":1,
+ "italianText":"Carne",
+ "italianFontType":1,
+ "germanText":"Fleisch",
+ "germanFontType":1,
+ "spanishText":"Carne",
+ "spanishFontType":1,
+ "neutralSpanishText":"Carne",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Carne",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_medmake",
+ "englishUsText":"Gorgon",
+ "englishUsFontType":1,
+ "frenchText":"Gorgone",
+ "frenchFontType":1,
+ "italianText":"Gorgone",
+ "italianFontType":1,
+ "germanText":"Gorgone",
+ "germanFontType":1,
+ "spanishText":"Gorgona",
+ "spanishFontType":1,
+ "neutralSpanishText":"Gorgona",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Górgona",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_medusa",
+ "englishUsText":"Medusa",
+ "englishUsFontType":1,
+ "frenchText":"Méduse",
+ "frenchFontType":1,
+ "italianText":"Medusa",
+ "italianFontType":1,
+ "germanText":"Medusa",
+ "germanFontType":1,
+ "spanishText":"Medusa",
+ "spanishFontType":1,
+ "neutralSpanishText":"Medusa",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Medusa",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_mekakusi",
+ "englishUsText":"Blindfold",
+ "englishUsFontType":1,
+ "frenchText":"Bandeau",
+ "frenchFontType":1,
+ "italianText":"Benda sugli occhi",
+ "italianFontType":1,
+ "germanText":"Augenbinde",
+ "germanFontType":1,
+ "spanishText":"Venda",
+ "spanishFontType":1,
+ "neutralSpanishText":"Venda",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Venda",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_metalic",
+ "englishUsText":"Metallic",
+ "englishUsFontType":1,
+ "frenchText":"Métallique",
+ "frenchFontType":1,
+ "italianText":"Metallico",
+ "italianFontType":1,
+ "germanText":"Metallisch",
+ "germanFontType":1,
+ "spanishText":"Metálico",
+ "spanishFontType":1,
+ "neutralSpanishText":"Metálico",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Metálico",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_mexican",
+ "englishUsText":"Mexico",
+ "englishUsFontType":1,
+ "frenchText":"Mexique",
+ "frenchFontType":1,
+ "italianText":"Messicano",
+ "italianFontType":1,
+ "germanText":"Mexiko",
+ "germanFontType":1,
+ "spanishText":"México",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mexicano",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mexicano",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_miira",
+ "englishUsText":"Mummy",
+ "englishUsFontType":1,
+ "frenchText":"Momie",
+ "frenchFontType":1,
+ "italianText":"Mummia",
+ "italianFontType":1,
+ "germanText":"Mumie",
+ "germanFontType":1,
+ "spanishText":"Momia",
+ "spanishFontType":1,
+ "neutralSpanishText":"Momia",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Múmia",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_miku",
+ "englishUsText":"HATSUNE MIKU",
+ "englishUsFontType":1,
+ "frenchText":"HATSUNE MIKU",
+ "frenchFontType":1,
+ "italianText":"HATSUNE MIKU",
+ "italianFontType":1,
+ "germanText":"HATSUNE MIKU",
+ "germanFontType":1,
+ "spanishText":"HATSUNE MIKU",
+ "spanishFontType":1,
+ "neutralSpanishText":"HATSUNE MIKU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HATSUNE MIKU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_mishojo",
+ "englishUsText":"Beauty’s Mask",
+ "englishUsFontType":1,
+ "frenchText":"Masque de beauté",
+ "frenchFontType":1,
+ "italianText":"Maschera da ragazza",
+ "italianFontType":1,
+ "germanText":"Schönheitsmaske",
+ "germanFontType":1,
+ "spanishText":"Máscara preciosa",
+ "spanishFontType":1,
+ "neutralSpanishText":"Máscara de belleza",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Máscara da beleza",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_mitubati",
+ "englishUsText":"Honey Bee",
+ "englishUsFontType":1,
+ "frenchText":"Abeille",
+ "frenchFontType":1,
+ "italianText":"Ape",
+ "italianFontType":1,
+ "germanText":"Honigbiene",
+ "germanFontType":1,
+ "spanishText":"Abeja",
+ "spanishFontType":1,
+ "neutralSpanishText":"Abeja",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Abelha",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_mitudomake",
+ "englishUsText":"Three-Way Fight",
+ "englishUsFontType":1,
+ "frenchText":"Shinto",
+ "frenchFontType":1,
+ "italianText":"Shinto",
+ "italianFontType":1,
+ "germanText":"Shinto",
+ "germanFontType":1,
+ "spanishText":"Shinto",
+ "spanishFontType":1,
+ "neutralSpanishText":"Lucha a tres",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Luta tripla",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_mizukabu",
+ "englishUsText":"Drenched",
+ "englishUsFontType":1,
+ "frenchText":"Trempé",
+ "frenchFontType":1,
+ "italianText":"Inzuppato",
+ "italianFontType":1,
+ "germanText":"Durchnässt",
+ "germanFontType":1,
+ "spanishText":"Empapado",
+ "spanishFontType":1,
+ "neutralSpanishText":"Empapado",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Encharcado",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_mizutama",
+ "englishUsText":"Polka Dotted Ribbon",
+ "englishUsFontType":1,
+ "frenchText":"Ruban à pois",
+ "frenchFontType":1,
+ "italianText":"Fiocco a pois",
+ "italianFontType":1,
+ "germanText":"Gepunktete Schleife",
+ "germanFontType":1,
+ "spanishText":"Lazo de lunares",
+ "spanishFontType":1,
+ "neutralSpanishText":"Lazo de lunares",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Fita pintada",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_moai",
+ "englishUsText":"Moai",
+ "englishUsFontType":1,
+ "frenchText":"Moaï",
+ "frenchFontType":1,
+ "italianText":"Moai",
+ "italianFontType":1,
+ "germanText":"Moai",
+ "germanFontType":1,
+ "spanishText":"Moai",
+ "spanishFontType":1,
+ "neutralSpanishText":"Moai",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Moai",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_nabe",
+ "englishUsText":"Favorite Pot",
+ "englishUsFontType":1,
+ "frenchText":"Pot préféré",
+ "frenchFontType":1,
+ "italianText":"Pentola",
+ "italianFontType":1,
+ "germanText":"Lieblingstopf",
+ "germanFontType":1,
+ "spanishText":"Cacerola favorita",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maceta favorita",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pote favorito",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_namida",
+ "englishUsText":"Tears",
+ "englishUsFontType":1,
+ "frenchText":"Larmes",
+ "frenchFontType":1,
+ "italianText":"Lacrime",
+ "italianFontType":1,
+ "germanText":"Tränen",
+ "germanFontType":1,
+ "spanishText":"Lágrimas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Lágrimas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Lágrimas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_nebusoku",
+ "englishUsText":"Sleepy",
+ "englishUsFontType":1,
+ "frenchText":"Endormi",
+ "frenchFontType":1,
+ "italianText":"Occhiaie",
+ "italianFontType":1,
+ "germanText":"Schläfrig",
+ "germanFontType":1,
+ "spanishText":"Con sueño",
+ "spanishFontType":1,
+ "neutralSpanishText":"Con sueño",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sonolento",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_nejire",
+ "englishUsText":"Twisty Eyebrows",
+ "englishUsFontType":1,
+ "frenchText":"Sourcils noueux",
+ "frenchFontType":1,
+ "italianText":"Monociglio",
+ "italianFontType":1,
+ "germanText":"Geschwungene Augenbrauen",
+ "germanFontType":1,
+ "spanishText":"Cejas sinuosas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cejas sinuosas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sobrancelhas retorcidas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_ninja",
+ "englishUsText":"Ninja",
+ "englishUsFontType":1,
+ "frenchText":"Ninja",
+ "frenchFontType":1,
+ "italianText":"Ninja",
+ "italianFontType":1,
+ "germanText":"Ninja",
+ "germanFontType":1,
+ "spanishText":"Ninja",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ninja",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ninja",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_nisedon",
+ "englishUsText":"Fake DON",
+ "englishUsFontType":1,
+ "frenchText":"Faux DON",
+ "frenchFontType":1,
+ "italianText":"DON falso",
+ "italianFontType":1,
+ "germanText":"Falscher DON",
+ "germanFontType":1,
+ "spanishText":"DON falso",
+ "spanishFontType":1,
+ "neutralSpanishText":"DON falso",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DON fajuto",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_noisemake",
+ "englishUsText":"Noise",
+ "englishUsFontType":1,
+ "frenchText":"Bruit",
+ "frenchFontType":1,
+ "italianText":"Ghigno",
+ "italianFontType":1,
+ "germanText":"Lärm",
+ "germanFontType":1,
+ "spanishText":"Malvado",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ruido",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Barulho",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_nuri",
+ "englishUsText":"Wet Paint",
+ "englishUsFontType":1,
+ "frenchText":"Peinture humide",
+ "frenchFontType":1,
+ "italianText":"Pittura fresca",
+ "italianFontType":1,
+ "germanText":"Nasse Farbe",
+ "germanFontType":1,
+ "spanishText":"Pintura fresca",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pintura fresca",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tinta molhada",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_ohuro",
+ "englishUsText":"Bath Set",
+ "englishUsFontType":1,
+ "frenchText":"Ensemble de bain",
+ "frenchFontType":1,
+ "italianText":"Set da bagno",
+ "italianFontType":1,
+ "germanText":"Bade-Set",
+ "germanFontType":1,
+ "spanishText":"Conjunto de baño",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conjunto de baño",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conjunto de banho",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_omaturi",
+ "englishUsText":"Festival Set",
+ "englishUsFontType":1,
+ "frenchText":"Ensemble de festival",
+ "frenchFontType":1,
+ "italianText":"Festival",
+ "italianFontType":1,
+ "germanText":"Festival-Set",
+ "germanFontType":1,
+ "spanishText":"Conjunto festivo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conjunto festivo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conjunto de festival",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_omikosi",
+ "englishUsText":"Portable Shrine",
+ "englishUsFontType":1,
+ "frenchText":"Temple portable",
+ "frenchFontType":1,
+ "italianText":"Tempio portatile",
+ "italianFontType":1,
+ "germanText":"Tragbarer Schrein",
+ "germanFontType":1,
+ "spanishText":"Altar portátil",
+ "spanishFontType":1,
+ "neutralSpanishText":"Altar portátil",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Templo portátil",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_onpueye",
+ "englishUsText":"Musical Note Eyes",
+ "englishUsFontType":1,
+ "frenchText":"Yeux notes de musique",
+ "frenchFontType":1,
+ "italianText":"Occhi a nota musicale",
+ "italianFontType":1,
+ "germanText":"Notenaugen",
+ "germanFontType":1,
+ "spanishText":"Ojos de notas musicales",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ojos de notas musicales",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Olhos de nota musical",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_osumou",
+ "englishUsText":"Sumo Wrestler",
+ "englishUsFontType":1,
+ "frenchText":"Combattant sumo",
+ "frenchFontType":1,
+ "italianText":"Sumo",
+ "italianFontType":1,
+ "germanText":"Sumoringer",
+ "germanFontType":1,
+ "spanishText":"Luchador de sumo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Luchador de sumo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Lutador de Sumô",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_otokogi",
+ "englishUsText":"Manly Eyebrows",
+ "englishUsFontType":1,
+ "frenchText":"Sourcils masculins",
+ "frenchFontType":1,
+ "italianText":"Sopracciglia da macho",
+ "italianFontType":1,
+ "germanText":"Männer-Augenbrauen",
+ "germanFontType":1,
+ "spanishText":"Cejas viriles",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cejas viriles",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sobrancelhas másculas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_pajama",
+ "englishUsText":"Pajamas",
+ "englishUsFontType":1,
+ "frenchText":"Pyjama",
+ "frenchFontType":1,
+ "italianText":"Pigiama",
+ "italianFontType":1,
+ "germanText":"Pyjama",
+ "germanFontType":1,
+ "spanishText":"Pijama",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pijama",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pijama",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_panda",
+ "englishUsText":"Panda Face",
+ "englishUsFontType":1,
+ "frenchText":"Tête de panda",
+ "frenchFontType":1,
+ "italianText":"Volto da panda",
+ "italianFontType":1,
+ "germanText":"Panda-Gesicht",
+ "germanFontType":1,
+ "spanishText":"Cara de panda",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cara de panda",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Face de panda",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_piza",
+ "englishUsText":"Pizza",
+ "englishUsFontType":1,
+ "frenchText":"Pizza",
+ "frenchFontType":1,
+ "italianText":"Pizza",
+ "italianFontType":1,
+ "germanText":"Pizza",
+ "germanFontType":1,
+ "spanishText":"Pizza",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pizza",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pizza",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_polynesian",
+ "englishUsText":"Polynesian",
+ "englishUsFontType":1,
+ "frenchText":"Polynésien",
+ "frenchFontType":1,
+ "italianText":"Polinesiano",
+ "italianFontType":1,
+ "germanText":"Polynesier",
+ "germanFontType":1,
+ "spanishText":"Polinesio",
+ "spanishFontType":1,
+ "neutralSpanishText":"Polinesio",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Polinésio",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_propela",
+ "englishUsText":"Propeller Plane",
+ "englishUsFontType":1,
+ "frenchText":"Avion à hélice",
+ "frenchFontType":1,
+ "italianText":"Aereo a elica",
+ "italianFontType":1,
+ "germanText":"Propellerflugzeug",
+ "germanFontType":1,
+ "spanishText":"Avión con hélices",
+ "spanishFontType":1,
+ "neutralSpanishText":"Avión con hélices",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bimotor",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_puchiDora",
+ "englishUsText":"DORAEMON",
+ "englishUsFontType":1,
+ "frenchText":"DORAEMON",
+ "frenchFontType":1,
+ "italianText":"DORAEMON",
+ "italianFontType":1,
+ "germanText":"DORAEMON",
+ "germanFontType":1,
+ "spanishText":"DORAEMON",
+ "spanishFontType":1,
+ "neutralSpanishText":"DORAEMON",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DORAEMON",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_puchiMiku",
+ "englishUsText":"HATSUNE MIKU",
+ "englishUsFontType":1,
+ "frenchText":"HATSUNE MIKU",
+ "frenchFontType":1,
+ "italianText":"HATSUNE MIKU",
+ "italianFontType":1,
+ "germanText":"HATSUNE MIKU",
+ "germanFontType":1,
+ "spanishText":"HATSUNE MIKU",
+ "spanishFontType":1,
+ "neutralSpanishText":"HATSUNE MIKU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HATSUNE MIKU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_puchiMirai",
+ "englishUsText":"MIRAI KASUGA",
+ "englishUsFontType":1,
+ "frenchText":"MIRAI KASUGA",
+ "frenchFontType":1,
+ "italianText":"MIRAI KASUGA",
+ "italianFontType":1,
+ "germanText":"MIRAI KASUGA",
+ "germanFontType":1,
+ "spanishText":"MIRAI KASUGA",
+ "spanishFontType":1,
+ "neutralSpanishText":"MIRAI KASUGA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"MIRAI KASUGA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_puchiPac",
+ "englishUsText":"PAC-MAN",
+ "englishUsFontType":1,
+ "frenchText":"PAC-MAN",
+ "frenchFontType":1,
+ "italianText":"PAC-MAN",
+ "italianFontType":1,
+ "germanText":"PAC-MAN",
+ "germanFontType":1,
+ "spanishText":"PAC-MAN",
+ "spanishFontType":1,
+ "neutralSpanishText":"PAC-MAN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"PAC-MAN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_puchiUduki",
+ "englishUsText":"UZUKI SHIMAMURA",
+ "englishUsFontType":1,
+ "frenchText":"UZUKI SHIMAMURA",
+ "frenchFontType":1,
+ "italianText":"UZUKI SHIMAMURA",
+ "italianFontType":1,
+ "germanText":"UZUKI SHIMAMURA",
+ "germanFontType":1,
+ "spanishText":"UZUKI SHIMAMURA",
+ "spanishFontType":1,
+ "neutralSpanishText":"UZUKI SHIMAMURA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"UZUKI SHIMAMURA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_racecar",
+ "englishUsText":"Racecar",
+ "englishUsFontType":1,
+ "frenchText":"Voiture de course",
+ "frenchFontType":1,
+ "italianText":"Auto da corsa",
+ "italianFontType":1,
+ "germanText":"Rennauto",
+ "germanFontType":1,
+ "spanishText":"Coche de carreras",
+ "spanishFontType":1,
+ "neutralSpanishText":"Coche de carreras",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Carro de corrida",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_rikisi",
+ "englishUsText":"Sumo Wrestler",
+ "englishUsFontType":1,
+ "frenchText":"Combattant sumo",
+ "frenchFontType":1,
+ "italianText":"Sumo",
+ "italianFontType":1,
+ "germanText":"Sumoringer",
+ "germanFontType":1,
+ "spanishText":"Luchador de sumo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Luchador de sumo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Lutador de Sumô",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_ringo",
+ "englishUsText":"Apple",
+ "englishUsFontType":1,
+ "frenchText":"Pomme",
+ "frenchFontType":1,
+ "italianText":"Mela",
+ "italianFontType":1,
+ "germanText":"Apfel",
+ "germanFontType":1,
+ "spanishText":"Manzana",
+ "spanishFontType":1,
+ "neutralSpanishText":"Manzana",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Maçã",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_robo",
+ "englishUsText":"Robot",
+ "englishUsFontType":1,
+ "frenchText":"Robot",
+ "frenchFontType":1,
+ "italianText":"Robot",
+ "italianFontType":1,
+ "germanText":"Roboter",
+ "germanFontType":1,
+ "spanishText":"Robot",
+ "spanishFontType":1,
+ "neutralSpanishText":"Robot",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Robô",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_rocket",
+ "englishUsText":"Rocket",
+ "englishUsFontType":1,
+ "frenchText":"Fusée",
+ "frenchFontType":1,
+ "italianText":"Razzo",
+ "italianFontType":1,
+ "germanText":"Rakete",
+ "germanFontType":1,
+ "spanishText":"Cohete",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cohete",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Foguete",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_sakura",
+ "englishUsText":"Sakura Rice Cake",
+ "englishUsFontType":1,
+ "frenchText":"Gâteau de riz Sakura",
+ "frenchFontType":1,
+ "italianText":"Dolcetto giapponese",
+ "italianFontType":1,
+ "germanText":"Sakura-Reiskuchen",
+ "germanFontType":1,
+ "spanishText":"Pastel de arroz sakura",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pastel de arroz sakura",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bolinho de arroz Sakura",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_same",
+ "englishUsText":"Shark",
+ "englishUsFontType":1,
+ "frenchText":"Requin",
+ "frenchFontType":1,
+ "italianText":"Squalo",
+ "italianFontType":1,
+ "germanText":"Hai",
+ "germanFontType":1,
+ "spanishText":"Tiburón",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tiburón",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tubarão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_seilor",
+ "englishUsText":"Schoolgirl",
+ "englishUsFontType":1,
+ "frenchText":"Lycéenne",
+ "frenchFontType":1,
+ "italianText":"Marinaretta",
+ "italianFontType":1,
+ "germanText":"Schulmädchen",
+ "germanFontType":1,
+ "spanishText":"Uniforme de colegiala",
+ "spanishFontType":1,
+ "neutralSpanishText":"Uniforme de marinero",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Uniforme de marinheiro",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_shiroime",
+ "englishUsText":"Cold Eyes",
+ "englishUsFontType":1,
+ "frenchText":"Yeux froids",
+ "frenchFontType":1,
+ "italianText":"Occhi bianchi",
+ "italianFontType":1,
+ "germanText":"Kalte Augen",
+ "germanFontType":1,
+ "spanishText":"Ojos blancos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ojos fríos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Olhos frios",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_shock",
+ "englishUsText":"Shock",
+ "englishUsFontType":1,
+ "frenchText":"Choc",
+ "frenchFontType":1,
+ "italianText":"Imbarazzato",
+ "italianFontType":1,
+ "germanText":"Schock",
+ "germanFontType":1,
+ "spanishText":"En shock",
+ "spanishFontType":1,
+ "neutralSpanishText":"Shock",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Choque",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_shogakuse",
+ "englishUsText":"Elementary School",
+ "englishUsFontType":1,
+ "frenchText":"École primaire",
+ "frenchFontType":1,
+ "italianText":"Scuola elementare",
+ "italianFontType":1,
+ "germanText":"Grundschule",
+ "germanFontType":1,
+ "spanishText":"Escuela de primaria",
+ "spanishFontType":1,
+ "neutralSpanishText":"Escuela primaria",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Jardim de infância",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_sirohige",
+ "englishUsText":"Whitebeard",
+ "englishUsFontType":1,
+ "frenchText":"Barbe blanche",
+ "frenchFontType":1,
+ "italianText":"Barba bianca",
+ "italianFontType":1,
+ "germanText":"Weißbart",
+ "germanFontType":1,
+ "spanishText":"Barba blanca",
+ "spanishFontType":1,
+ "neutralSpanishText":"Barba blanca",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Barba branca",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_sudon",
+ "englishUsText":"None",
+ "englishUsFontType":1,
+ "frenchText":"Rien",
+ "frenchFontType":1,
+ "italianText":"Nessuno",
+ "italianFontType":1,
+ "germanText":"Keines",
+ "germanFontType":1,
+ "spanishText":"Nada",
+ "spanishFontType":1,
+ "neutralSpanishText":"Nada",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Nada",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_suihei",
+ "englishUsText":"Sailor",
+ "englishUsFontType":1,
+ "frenchText":"Marin",
+ "frenchFontType":1,
+ "italianText":"Marinaio",
+ "italianFontType":1,
+ "germanText":"Seemann",
+ "germanFontType":1,
+ "spanishText":"Marinero",
+ "spanishFontType":1,
+ "neutralSpanishText":"Marinero",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Marinheiro",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_susi",
+ "englishUsText":"Sushi",
+ "englishUsFontType":1,
+ "frenchText":"Sushi",
+ "frenchFontType":1,
+ "italianText":"Sushi",
+ "italianFontType":1,
+ "germanText":"Sushi",
+ "germanFontType":1,
+ "spanishText":"Sushi",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sushi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sushi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_sweets",
+ "englishUsText":"Sweets",
+ "englishUsFontType":1,
+ "frenchText":"Douceurs",
+ "frenchFontType":1,
+ "italianText":"Dolci",
+ "italianFontType":1,
+ "germanText":"Süßigkeiten",
+ "germanFontType":1,
+ "spanishText":"Dulces",
+ "spanishFontType":1,
+ "neutralSpanishText":"Dulces",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Doces",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_takara",
+ "englishUsText":"Treasure Ship",
+ "englishUsFontType":1,
+ "frenchText":"Bateau trésor",
+ "frenchFontType":1,
+ "italianText":"Nave del tesoro",
+ "italianFontType":1,
+ "germanText":"Schatzschiff",
+ "germanFontType":1,
+ "spanishText":"Barco del tesoro",
+ "spanishFontType":1,
+ "neutralSpanishText":"Barco del tesoro",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Navio do tesouro",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_tako",
+ "englishUsText":"Takoyaki",
+ "englishUsFontType":1,
+ "frenchText":"Takoyaki",
+ "frenchFontType":1,
+ "italianText":"Takoyaki",
+ "italianFontType":1,
+ "germanText":"Takoyaki",
+ "germanFontType":1,
+ "spanishText":"Takoyaki",
+ "spanishFontType":1,
+ "neutralSpanishText":"Takoyaki",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Takoyaki",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_tatu",
+ "englishUsText":"Year of the Dragon",
+ "englishUsFontType":1,
+ "frenchText":"Année du dragon",
+ "frenchFontType":1,
+ "italianText":"Anno del drago",
+ "italianFontType":1,
+ "germanText":"Jahr des Drachen",
+ "germanFontType":1,
+ "spanishText":"Año del Dragón",
+ "spanishFontType":1,
+ "neutralSpanishText":"Año del Dragón",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ano do Dragão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_tehe",
+ "englishUsText":"Embarrassed DON",
+ "englishUsFontType":1,
+ "frenchText":"DON embarrassé",
+ "frenchFontType":1,
+ "italianText":"DON imbarazzato",
+ "italianFontType":1,
+ "germanText":"Verlegener DON",
+ "germanFontType":1,
+ "spanishText":"DON avergonzado",
+ "spanishFontType":1,
+ "neutralSpanishText":"DON avergonzado",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DON envergonhado",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_tetuo",
+ "englishUsText":"Tetsuo",
+ "englishUsFontType":1,
+ "frenchText":"Tetsuo",
+ "frenchFontType":1,
+ "italianText":"Tetsuo",
+ "italianFontType":1,
+ "germanText":"Tetsuo",
+ "germanFontType":1,
+ "spanishText":"Tetsuo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tetsuo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tetsuo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_tetuoride",
+ "englishUsText":"Tetsuo Ride",
+ "englishUsFontType":1,
+ "frenchText":"Moto de Tetsuo",
+ "frenchFontType":1,
+ "italianText":"Tetsuo a cavalcioni",
+ "italianFontType":1,
+ "germanText":"Tetsuo-Wagen",
+ "germanFontType":1,
+ "spanishText":"Vehículo de Tetsuo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Vehículo de Tetsuo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Carona Tetsuo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_tora",
+ "englishUsText":"Tiger",
+ "englishUsFontType":1,
+ "frenchText":"Tigre",
+ "frenchFontType":1,
+ "italianText":"Tigre",
+ "italianFontType":1,
+ "germanText":"Tiger",
+ "germanFontType":1,
+ "spanishText":"Tigre",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tigre",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tigre",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_tugihagi",
+ "englishUsText":"Patchwork",
+ "englishUsFontType":1,
+ "frenchText":"Patchwork",
+ "frenchFontType":1,
+ "italianText":"Patchwork",
+ "italianFontType":1,
+ "germanText":"Flickenteppich",
+ "germanFontType":1,
+ "spanishText":"Retales",
+ "spanishFontType":1,
+ "neutralSpanishText":"Retazos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Retalhos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_uchu",
+ "englishUsText":"Alien",
+ "englishUsFontType":1,
+ "frenchText":"Alien",
+ "frenchFontType":1,
+ "italianText":"Alieno",
+ "italianFontType":1,
+ "germanText":"Außerirdischer",
+ "germanFontType":1,
+ "spanishText":"Alienígena",
+ "spanishFontType":1,
+ "neutralSpanishText":"Alienígena",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alien",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_ufo",
+ "englishUsText":"UFO",
+ "englishUsFontType":1,
+ "frenchText":"Soucoupe volante",
+ "frenchFontType":1,
+ "italianText":"UFO",
+ "italianFontType":1,
+ "germanText":"UFO",
+ "germanFontType":1,
+ "spanishText":"OVNI",
+ "spanishFontType":1,
+ "neutralSpanishText":"OVNI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"OVNI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_usagi",
+ "englishUsText":"Rabbit Face",
+ "englishUsFontType":1,
+ "frenchText":"Tête de lapin",
+ "frenchFontType":1,
+ "italianText":"Volto da coniglio",
+ "italianFontType":1,
+ "germanText":"Hasengesicht",
+ "germanFontType":1,
+ "spanishText":"Cara de conejo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cara de conejo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Face de coelho",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_wagtagasi",
+ "englishUsText":"Cotton Candy",
+ "englishUsFontType":1,
+ "frenchText":"Barbe à papa",
+ "frenchFontType":1,
+ "italianText":"Zucchero filato",
+ "italianFontType":1,
+ "germanText":"Zuckerwatte",
+ "germanFontType":1,
+ "spanishText":"Algodón de azúcar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Algodón de azúcar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Algodão-doce",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_wild",
+ "englishUsText":"Wild Hair",
+ "englishUsFontType":1,
+ "frenchText":"Cheveux ébouriffés",
+ "frenchFontType":1,
+ "italianText":"Capelli selvaggi",
+ "italianFontType":1,
+ "germanText":"Wilde Frisur",
+ "germanFontType":1,
+ "spanishText":"Despeinado",
+ "spanishFontType":1,
+ "neutralSpanishText":"Despeinado",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Cabelo desgrenhado",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_yatai",
+ "englishUsText":"Food Cart",
+ "englishUsFontType":1,
+ "frenchText":"Stand de nourriture",
+ "frenchFontType":1,
+ "italianText":"Bancarella",
+ "italianFontType":1,
+ "germanText":"Essenskarren",
+ "germanFontType":1,
+ "spanishText":"Puesto de comida",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cabina",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Cabine",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_yosenabe",
+ "englishUsText":"Stew",
+ "englishUsFontType":1,
+ "frenchText":"Ragoût",
+ "frenchFontType":1,
+ "italianText":"Stufato",
+ "italianFontType":1,
+ "germanText":"Eintopf",
+ "germanFontType":1,
+ "spanishText":"Guisado",
+ "spanishFontType":1,
+ "neutralSpanishText":"Guiso",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Cozido",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_yousetu",
+ "englishUsText":"Welder’s Mask",
+ "englishUsFontType":1,
+ "frenchText":"Masque de soudeur",
+ "frenchFontType":1,
+ "italianText":"Maschera da saldatore",
+ "italianFontType":1,
+ "germanText":"Schweißermaske",
+ "germanFontType":1,
+ "spanishText":"Máscara de soldador",
+ "spanishFontType":1,
+ "neutralSpanishText":"Máscara de soldador",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Máscara de soldador",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_yurei",
+ "englishUsText":"Ghost",
+ "englishUsFontType":1,
+ "frenchText":"Fantôme",
+ "frenchFontType":1,
+ "italianText":"Fantasma",
+ "italianFontType":1,
+ "germanText":"Geist",
+ "germanFontType":1,
+ "spanishText":"Fantasma",
+ "spanishFontType":1,
+ "neutralSpanishText":"Fantasma",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Fantasma",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_zipper",
+ "englishUsText":"Zipper",
+ "englishUsFontType":1,
+ "frenchText":"Fermeture éclair",
+ "frenchFontType":1,
+ "italianText":"Cerniera",
+ "italianFontType":1,
+ "germanText":"Reißverschluss",
+ "germanFontType":1,
+ "spanishText":"Cremallera",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cremallera",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Zíper",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_puchiKitty",
+ "englishUsText":"HELLO KITTY",
+ "englishUsFontType":1,
+ "frenchText":"HELLO KITTY",
+ "frenchFontType":1,
+ "italianText":"HELLO KITTY",
+ "italianFontType":1,
+ "germanText":"HELLO KITTY",
+ "germanFontType":1,
+ "spanishText":"HELLO KITTY",
+ "spanishFontType":1,
+ "neutralSpanishText":"HELLO KITTY",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HELLO KITTY",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_puchiTkhei8",
+ "englishUsText":"HEIHACHI",
+ "englishUsFontType":1,
+ "frenchText":"HEIHACHI",
+ "frenchFontType":1,
+ "italianText":"HEIHACHI",
+ "italianFontType":1,
+ "germanText":"HEIHACHI",
+ "germanFontType":1,
+ "spanishText":"HEIHACHI",
+ "spanishFontType":1,
+ "neutralSpanishText":"HEIHACHI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HEIHACHI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_puchiKuma",
+ "englishUsText":"KUMA",
+ "englishUsFontType":1,
+ "frenchText":"KUMA",
+ "frenchFontType":1,
+ "italianText":"KUMA",
+ "italianFontType":1,
+ "germanText":"KUMA",
+ "germanFontType":1,
+ "spanishText":"KUMA",
+ "spanishFontType":1,
+ "neutralSpanishText":"KUMA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KUMA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_puchiPanda",
+ "englishUsText":"PANDA",
+ "englishUsFontType":1,
+ "frenchText":"PANDA",
+ "frenchFontType":1,
+ "italianText":"PANDA",
+ "italianFontType":1,
+ "germanText":"PANDA",
+ "germanFontType":1,
+ "spanishText":"PANDA",
+ "spanishFontType":1,
+ "neutralSpanishText":"PANDA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"PANDA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_puchiDeemo",
+ "englishUsText":"Deemo & the Little Girl",
+ "englishUsFontType":1,
+ "frenchText":"Deemo et la petite fille",
+ "frenchFontType":1,
+ "italianText":"Deemo e la ragazzina",
+ "italianFontType":1,
+ "germanText":"Deemo & das kleine Mädel",
+ "germanFontType":1,
+ "spanishText":"Deemo y la chica",
+ "spanishFontType":1,
+ "neutralSpanishText":"Deemo y la chica",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Deemo & the Little Girl",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_puchiMikuse",
+ "englishUsText":"HATSUNE MIKU",
+ "englishUsFontType":1,
+ "frenchText":"HATSUNE MIKU",
+ "frenchFontType":1,
+ "italianText":"HATSUNE MIKU",
+ "italianFontType":1,
+ "germanText":"HATSUNE MIKU",
+ "germanFontType":1,
+ "spanishText":"HATSUNE MIKU",
+ "spanishFontType":1,
+ "neutralSpanishText":"HATSUNE MIKU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HATSUNE MIKU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_choucho",
+ "englishUsText":"Butterfly",
+ "englishUsFontType":1,
+ "frenchText":"Papillon",
+ "frenchFontType":1,
+ "italianText":"Farfalla",
+ "italianFontType":1,
+ "germanText":"Schmetterling",
+ "germanFontType":1,
+ "spanishText":"Mariposa",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mariposa",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Borboleta",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_doctor",
+ "englishUsText":"Doctor",
+ "englishUsFontType":1,
+ "frenchText":"Docteur",
+ "frenchFontType":1,
+ "italianText":"Medico",
+ "italianFontType":1,
+ "germanText":"Doktor",
+ "germanFontType":1,
+ "spanishText":"Doctor",
+ "spanishFontType":1,
+ "neutralSpanishText":"Doctor",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Doutor",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_hatake",
+ "englishUsText":"Farmer",
+ "englishUsFontType":1,
+ "frenchText":"Fermier",
+ "frenchFontType":1,
+ "italianText":"Contadino",
+ "italianFontType":1,
+ "germanText":"Bauer",
+ "germanFontType":1,
+ "spanishText":"Granjero",
+ "spanishFontType":1,
+ "neutralSpanishText":"Granjero",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Fazendeiro",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_kaizoku",
+ "englishUsText":"Pirate",
+ "englishUsFontType":1,
+ "frenchText":"Pirate",
+ "frenchFontType":1,
+ "italianText":"Pirata",
+ "italianFontType":1,
+ "germanText":"Pirat",
+ "germanFontType":1,
+ "spanishText":"Pirata",
+ "spanishFontType":1,
+ "neutralSpanishText":"Barco pirata",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Navio pirata",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_kyouryu",
+ "englishUsText":"T-Rex",
+ "englishUsFontType":1,
+ "frenchText":"T-Rex",
+ "frenchFontType":1,
+ "italianText":"T-rex",
+ "italianFontType":1,
+ "germanText":"T-Rex",
+ "germanFontType":1,
+ "spanishText":"Tiranosaurio",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tiranosaurio",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"T-Rex",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_miko",
+ "englishUsText":"Shrine Maiden Robe",
+ "englishUsFontType":1,
+ "frenchText":"Toge de prêtresse",
+ "frenchFontType":1,
+ "italianText":"Sacerdotessa",
+ "italianFontType":1,
+ "germanText":"Schreinmaid-Robe",
+ "germanFontType":1,
+ "spanishText":"Doncella del templo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Doncella del templo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Robe de Dama do Templo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_rakuda",
+ "englishUsText":"Camel Hump",
+ "englishUsFontType":1,
+ "frenchText":"Bosse de chameau",
+ "frenchFontType":1,
+ "italianText":"Gobba di cammello",
+ "italianFontType":1,
+ "germanText":"Kamelhöcker",
+ "germanFontType":1,
+ "spanishText":"Joroba de camello",
+ "spanishFontType":1,
+ "neutralSpanishText":"Joroba de camello",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Lombo de camelo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_wakusei",
+ "englishUsText":"Planet",
+ "englishUsFontType":1,
+ "frenchText":"Planète",
+ "frenchFontType":1,
+ "italianText":"Pianeti",
+ "italianFontType":1,
+ "germanText":"Planet",
+ "germanFontType":1,
+ "spanishText":"Planeta",
+ "spanishFontType":1,
+ "neutralSpanishText":"Planeta",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Planeta",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_yusha",
+ "englishUsText":"Hero",
+ "englishUsFontType":1,
+ "frenchText":"Héros",
+ "frenchFontType":1,
+ "italianText":"Eroe",
+ "italianFontType":1,
+ "germanText":"Held",
+ "germanFontType":1,
+ "spanishText":"Héroe",
+ "spanishFontType":1,
+ "neutralSpanishText":"Héroe",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Herói",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_daitensi",
+ "englishUsText":"White Enlightenment",
+ "englishUsFontType":1,
+ "frenchText":"Illumination blanche",
+ "frenchFontType":1,
+ "italianText":"Ali bianche",
+ "italianFontType":1,
+ "germanText":"Weiße Erleuchtung",
+ "germanFontType":1,
+ "spanishText":"Alas blancas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Iluminación blanca",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Iluminação branca",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_maromayu",
+ "englishUsText":"Old-Fashioned Eyebrows",
+ "englishUsFontType":1,
+ "frenchText":"Sourcils traditionnels",
+ "frenchFontType":1,
+ "italianText":"Sopracciglia antiquate",
+ "italianFontType":1,
+ "germanText":"Altbackene Augenbrauen",
+ "germanFontType":1,
+ "spanishText":"Cejas anticuadas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cejas anticuadas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sobrancelhas antigas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_sanbon",
+ "englishUsText":"Whiskers",
+ "englishUsFontType":1,
+ "frenchText":"Moustaches",
+ "frenchFontType":1,
+ "italianText":"Baffi da gatto",
+ "italianFontType":1,
+ "germanText":"Schnurrhaare",
+ "germanFontType":1,
+ "spanishText":"Bigotes",
+ "spanishFontType":1,
+ "neutralSpanishText":"Bigotes",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bigodes felinos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_gira",
+ "englishUsText":"Bloodshot Eyes",
+ "englishUsFontType":1,
+ "frenchText":"Yeux injectés de sang",
+ "frenchFontType":1,
+ "italianText":"Occhi rosso sangue",
+ "italianFontType":1,
+ "germanText":"Blutunterlaufene Augen",
+ "germanFontType":1,
+ "spanishText":"Ojos enrojecidos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ojos enrojecidos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Olhos vermelhos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_killereye",
+ "englishUsText":"Sparkling Eyes",
+ "englishUsFontType":1,
+ "frenchText":"Yeux étincelants",
+ "frenchFontType":1,
+ "italianText":"Occhi luccicanti",
+ "italianFontType":1,
+ "germanText":"Glitzernde Augen",
+ "germanFontType":1,
+ "spanishText":"Ojos chispeantes",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ojos brillantes",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Olhos brilhantes",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_mike",
+ "englishUsText":"Calico Cat",
+ "englishUsFontType":1,
+ "frenchText":"Chat calico",
+ "frenchFontType":1,
+ "italianText":"Gatta calico",
+ "italianFontType":1,
+ "germanText":"Schildpatt-Katze",
+ "germanFontType":1,
+ "spanishText":"Gato carey",
+ "spanishFontType":1,
+ "neutralSpanishText":"Gato carey",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Gato Calico",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_nekonoshu",
+ "englishUsText":"Meeting of Cats",
+ "englishUsFontType":1,
+ "frenchText":"Réunion de chats",
+ "frenchFontType":1,
+ "italianText":"Raduno di gatti",
+ "italianFontType":1,
+ "germanText":"Treffen der Katzen",
+ "germanFontType":1,
+ "spanishText":"Reunión de gatos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Reunión de gatos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Reunião felina",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_melomelo",
+ "englishUsText":"Charmed Eyes",
+ "englishUsFontType":1,
+ "frenchText":"Yeux charmés",
+ "frenchFontType":1,
+ "italianText":"Occhi a cuore",
+ "italianFontType":1,
+ "germanText":"Verzauberte Augen",
+ "germanFontType":1,
+ "spanishText":"Ojos enamorados",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ojos encantados",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Olhos encantados",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_kintaro",
+ "englishUsText":"Kintaro Candy",
+ "englishUsFontType":1,
+ "frenchText":"Bonbon Kintaro",
+ "frenchFontType":1,
+ "italianText":"Caramella Kintaro",
+ "italianFontType":1,
+ "germanText":"Kintaro-Süßigkeiten",
+ "germanFontType":1,
+ "spanishText":"Caramelo kintaro",
+ "spanishFontType":1,
+ "neutralSpanishText":"Caramelo kintaro",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Doce Kintaro",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_gouka",
+ "englishUsText":"Decorated Deluxe Taiko",
+ "englishUsFontType":1,
+ "frenchText":"Taiko de luxe décoré",
+ "frenchFontType":1,
+ "italianText":"Taiko decorato",
+ "italianFontType":1,
+ "germanText":"Verzierte Deluxe-Taiko",
+ "germanFontType":1,
+ "spanishText":"Taiko lujoso ornamentado",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko lujoso ornamentado",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Taiko decorado Deluxe",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_marubatu",
+ "englishUsText":"Doodle Makeup",
+ "englishUsFontType":1,
+ "frenchText":"Maquillage griffonné",
+ "frenchFontType":1,
+ "italianText":"Scarabocchi",
+ "italianFontType":1,
+ "germanText":"Kritzel-Make-up",
+ "germanFontType":1,
+ "spanishText":"Maquillaje de garabatos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maquillaje de garabatos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Maquiagem rascunho",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_matuge",
+ "englishUsText":"Eyelashes",
+ "englishUsFontType":1,
+ "frenchText":"Cils",
+ "frenchFontType":1,
+ "italianText":"Ciglia",
+ "italianFontType":1,
+ "germanText":"Wimpern",
+ "germanFontType":1,
+ "spanishText":"Pestañas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pestañas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Cílios",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_intelimake",
+ "englishUsText":"Intelligent Glasses",
+ "englishUsFontType":1,
+ "frenchText":"Lunettes intelligentes",
+ "frenchFontType":1,
+ "italianText":"Occhiali intelligenti",
+ "italianFontType":1,
+ "germanText":"Schlauberger-Brille",
+ "germanFontType":1,
+ "spanishText":"Gafas de inteligente",
+ "spanishFontType":1,
+ "neutralSpanishText":"Lentes de inteligente",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Óculos inteligentes",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_kaminari",
+ "englishUsText":"Lord of Thunder",
+ "englishUsFontType":1,
+ "frenchText":"Seigneur de la foudre",
+ "frenchFontType":1,
+ "italianText":"Dio del tuono",
+ "italianFontType":1,
+ "germanText":"Herr des Donners",
+ "germanFontType":1,
+ "spanishText":"Señor del trueno",
+ "spanishFontType":1,
+ "neutralSpanishText":"Señor del trueno",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Senhor do Trovão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_ikemen",
+ "englishUsText":"Cool Hair (silver)",
+ "englishUsFontType":1,
+ "frenchText":"Coiffure stylée (argent)",
+ "frenchFontType":1,
+ "italianText":"Capelli trendy (argento)",
+ "italianFontType":1,
+ "germanText":"Coole Haare (silber)",
+ "germanFontType":1,
+ "spanishText":"Pelo guay (plateado)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pelo genial (plateado)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Cabelo legal (prateado)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_heavymt",
+ "englishUsText":"Heavy Metal",
+ "englishUsFontType":1,
+ "frenchText":"Heavy Metal",
+ "frenchFontType":1,
+ "italianText":"Heavy metal",
+ "italianFontType":1,
+ "germanText":"Heavy Metal",
+ "germanFontType":1,
+ "spanishText":"Heavy Metal",
+ "spanishFontType":1,
+ "neutralSpanishText":"Heavy Metal",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Heavy Metal",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_kaxtu",
+ "englishUsText":"Got it!",
+ "englishUsFontType":1,
+ "frenchText":"Compris !",
+ "frenchFontType":1,
+ "italianText":"Occhi splendenti",
+ "italianFontType":1,
+ "germanText":"Ich hab's!",
+ "germanFontType":1,
+ "spanishText":"¡Lo tengo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Lo tengo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Entendi!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_hirameki",
+ "englishUsText":"Inspiration",
+ "englishUsFontType":1,
+ "frenchText":"Inspiration",
+ "frenchFontType":1,
+ "italianText":"Lampo di genio",
+ "italianFontType":1,
+ "germanText":"Inspiration",
+ "germanFontType":1,
+ "spanishText":"Inspiración",
+ "spanishFontType":1,
+ "neutralSpanishText":"Inspiración",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Inspiração",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_kiran",
+ "englishUsText":"Inspired Eyes",
+ "englishUsFontType":1,
+ "frenchText":"Yeux inspirés",
+ "frenchFontType":1,
+ "italianText":"Occhi ispirati",
+ "italianFontType":1,
+ "germanText":"Inspirierte Augen",
+ "germanFontType":1,
+ "spanishText":"Ojos inspirados",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ojos inspirados",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Olhos inspirados",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_kumadori",
+ "englishUsText":"Kabuki Makeup",
+ "englishUsFontType":1,
+ "frenchText":"Maquillage kabuki",
+ "frenchFontType":1,
+ "italianText":"Trucco da kabuki",
+ "italianFontType":1,
+ "germanText":"Kabuki-Make-up",
+ "germanFontType":1,
+ "spanishText":"Maquillaje de kabuki",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maquillaje de kabuki",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Maquiagem Kabuki",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_chu",
+ "englishUsText":"Kiss",
+ "englishUsFontType":1,
+ "frenchText":"Bisou",
+ "frenchFontType":1,
+ "italianText":"Bacio",
+ "italianFontType":1,
+ "germanText":"Kuss",
+ "germanFontType":1,
+ "spanishText":"Beso",
+ "spanishFontType":1,
+ "neutralSpanishText":"Beso",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Beijo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_block",
+ "englishUsText":"Block",
+ "englishUsFontType":1,
+ "frenchText":"Bloc",
+ "frenchFontType":1,
+ "italianText":"Blocchi",
+ "italianFontType":1,
+ "germanText":"Block",
+ "germanFontType":1,
+ "spanishText":"Bloque",
+ "spanishFontType":1,
+ "neutralSpanishText":"Bloque",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bloqueio",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_negane",
+ "englishUsText":"Missing Glasses",
+ "englishUsFontType":1,
+ "frenchText":"Lunettes perdues",
+ "frenchFontType":1,
+ "italianText":"Accecato",
+ "italianFontType":1,
+ "germanText":"Verschwundene Brille",
+ "germanFontType":1,
+ "spanishText":"Sin gafas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sin lentes",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sem óculos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_koinwo",
+ "englishUsText":"Money Face",
+ "englishUsFontType":1,
+ "frenchText":"Visage monétaire",
+ "frenchFontType":1,
+ "italianText":"Occhi avidi",
+ "italianFontType":1,
+ "germanText":"Geldgesicht",
+ "germanFontType":1,
+ "spanishText":"Cara de dinero",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cara de mono",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Face de dinheiro",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_moeru",
+ "englishUsText":"Burning Eyes",
+ "englishUsFontType":1,
+ "frenchText":"Yeux brûlants",
+ "frenchFontType":1,
+ "italianText":"Occhi motivati",
+ "italianFontType":1,
+ "germanText":"Brennende Augen",
+ "germanFontType":1,
+ "spanishText":"Ojos ardientes",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ojos motivados",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Olhos motivados",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_denchu",
+ "englishUsText":"Electric Pole",
+ "englishUsFontType":1,
+ "frenchText":"Poteau électrique",
+ "frenchFontType":1,
+ "italianText":"Palo della luce",
+ "italianFontType":1,
+ "germanText":"Elektrostange",
+ "germanFontType":1,
+ "spanishText":"Poste eléctrico",
+ "spanishFontType":1,
+ "neutralSpanishText":"Poste de electricidad",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Poste elétrico",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_chibidon",
+ "englishUsText":"Mini DON Rainbow",
+ "englishUsFontType":1,
+ "frenchText":"Arc-en-ciel mini DON",
+ "frenchFontType":1,
+ "italianText":"Mini arcobaleno",
+ "italianFontType":1,
+ "germanText":"Mini-DON-Regenbogen",
+ "germanFontType":1,
+ "spanishText":"Mini DON arcoíris",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mini DON arcoíris",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mini arco-íris DON",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_richiman",
+ "englishUsText":"Rich Man",
+ "englishUsFontType":1,
+ "frenchText":"Homme riche",
+ "frenchFontType":1,
+ "italianText":"Uomo ricco",
+ "italianFontType":1,
+ "germanText":"Reicher Mann",
+ "germanFontType":1,
+ "spanishText":"Rico",
+ "spanishFontType":1,
+ "neutralSpanishText":"Rico",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Homem rico",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_manma",
+ "englishUsText":"Round Beard",
+ "englishUsFontType":1,
+ "frenchText":"Barbe ronde",
+ "frenchFontType":1,
+ "italianText":"Barba rotonda",
+ "italianFontType":1,
+ "germanText":"Runder Bart",
+ "germanFontType":1,
+ "spanishText":"Barba recortada",
+ "spanishFontType":1,
+ "neutralSpanishText":"Barba recortada",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Barba redonda",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_nekotoshakusi",
+ "englishUsText":"Neko and Shaxy",
+ "englishUsFontType":1,
+ "frenchText":"Neko et Shaxy",
+ "frenchFontType":1,
+ "italianText":"Neko e Shaxy",
+ "italianFontType":1,
+ "germanText":"Neko und Shaxy",
+ "germanFontType":1,
+ "spanishText":"Neko y Shaxy",
+ "spanishFontType":1,
+ "neutralSpanishText":"Neko y Shaxy",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Neko e Shaxy",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_siba",
+ "englishUsText":"Shiba Dog",
+ "englishUsFontType":1,
+ "frenchText":"Shiba",
+ "frenchFontType":1,
+ "italianText":"Cane shiba",
+ "italianFontType":1,
+ "germanText":"Shiba-Hund",
+ "germanFontType":1,
+ "spanishText":"Perro shiba",
+ "spanishFontType":1,
+ "neutralSpanishText":"Perro shiba",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Cachorro Shiba",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_sengoku",
+ "englishUsText":"Shogun",
+ "englishUsFontType":1,
+ "frenchText":"Shogun",
+ "frenchFontType":1,
+ "italianText":"Shogun",
+ "italianFontType":1,
+ "germanText":"Shogun",
+ "germanFontType":1,
+ "spanishText":"Shogun",
+ "spanishFontType":1,
+ "neutralSpanishText":"Shogun",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Xogum",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_kunkun",
+ "englishUsText":"Sniffing Nose",
+ "englishUsFontType":1,
+ "frenchText":"Nez renifleur",
+ "frenchFontType":1,
+ "italianText":"Naso all'insù",
+ "italianFontType":1,
+ "germanText":"Schnüffelnase",
+ "germanFontType":1,
+ "spanishText":"Nariz husmeadora",
+ "spanishFontType":1,
+ "neutralSpanishText":"Nariz husmeadora",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Nariz farejador",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_guruguru",
+ "englishUsText":"Spiral Cheeks",
+ "englishUsFontType":1,
+ "frenchText":"Joues en spirale",
+ "frenchFontType":1,
+ "italianText":"Guance a spirale",
+ "italianFontType":1,
+ "germanText":"Spiralbäckchen",
+ "germanFontType":1,
+ "spanishText":"Mejillas con espirales",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mejillas con espirales",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bochecas em espiral",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_senju",
+ "englishUsText":"Avalokiteshvara",
+ "englishUsFontType":1,
+ "frenchText":"Avalokiteshvara",
+ "frenchFontType":1,
+ "italianText":"Avalokiteshvara",
+ "italianFontType":1,
+ "germanText":"Avalokiteshvara",
+ "germanFontType":1,
+ "spanishText":"Avalokiteshvara",
+ "spanishFontType":1,
+ "neutralSpanishText":"Avalokiteshvara",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Avalokiteshvara",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_truth",
+ "englishUsText":"Gaze of Truth",
+ "englishUsFontType":1,
+ "frenchText":"Regard de vérité",
+ "frenchFontType":1,
+ "italianText":"Sguardo intenso",
+ "italianFontType":1,
+ "germanText":"Blick der Wahrheit",
+ "germanFontType":1,
+ "spanishText":"Mirada de la verdad",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mirada de la verdad",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vislumbre da verdade",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_dk",
+ "englishUsText":"BGOC",
+ "englishUsFontType":1,
+ "frenchText":"Fille populaire",
+ "frenchFontType":1,
+ "italianText":"Popolare tra i ragazzi",
+ "italianFontType":1,
+ "germanText":"Jungenschwarm",
+ "germanFontType":1,
+ "spanishText":"La guay del insti",
+ "spanishFontType":1,
+ "neutralSpanishText":"El grande de la secu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Famoso com os colegiais",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_jk",
+ "englishUsText":"BMOC",
+ "englishUsFontType":1,
+ "frenchText":"Garçon populaire",
+ "frenchFontType":1,
+ "italianText":"Popolare tra le ragazze",
+ "italianFontType":1,
+ "germanText":"Mädchenschwarm",
+ "germanFontType":1,
+ "spanishText":"El guay del insti",
+ "spanishFontType":1,
+ "neutralSpanishText":"La grande de la secu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Famoso com as colegiais",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_miken",
+ "englishUsText":"Worried Face",
+ "englishUsFontType":1,
+ "frenchText":"Visage inquiet",
+ "frenchFontType":1,
+ "italianText":"Preoccupato",
+ "italianFontType":1,
+ "germanText":"Besorgtes Gesicht",
+ "germanFontType":1,
+ "spanishText":"Cara de preocupación",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cara de preocupación",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Face preocupada",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_gesso",
+ "englishUsText":"Worn Out",
+ "englishUsFontType":1,
+ "frenchText":"Usé",
+ "frenchFontType":1,
+ "italianText":"Stanchezza",
+ "italianFontType":1,
+ "germanText":"Abgetragen",
+ "germanFontType":1,
+ "spanishText":"Desgastado",
+ "spanishFontType":1,
+ "neutralSpanishText":"Desgastado",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Desgastado",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_omenkozo",
+ "englishUsText":"Masked Kid (Fox)",
+ "englishUsFontType":1,
+ "frenchText":"Enfant masqué (renard)",
+ "frenchFontType":1,
+ "italianText":"Maschera da volpe",
+ "italianFontType":1,
+ "germanText":"Masken-Kind (Fuchs)",
+ "germanFontType":1,
+ "spanishText":"Enmascarado (zorro)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Enmascarado (zorro)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Jovem mascarado (raposa)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_umino",
+ "englishUsText":"Marine Life",
+ "englishUsFontType":1,
+ "frenchText":"Vie marine",
+ "frenchFontType":1,
+ "italianText":"Fauna marina",
+ "italianFontType":1,
+ "germanText":"Leben im Meer",
+ "germanFontType":1,
+ "spanishText":"Vida marina",
+ "spanishFontType":1,
+ "neutralSpanishText":"Vida marina",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vida marinha",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_hukidasi",
+ "englishUsText":"Speech Balloon",
+ "englishUsFontType":1,
+ "frenchText":"Bulle de dialogue",
+ "frenchFontType":1,
+ "italianText":"Fumetto",
+ "italianFontType":1,
+ "germanText":"Sprechblase",
+ "germanFontType":1,
+ "spanishText":"Bocadillo de diálogo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Globo de diálogo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Balão de fala",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_siawase",
+ "englishUsText":"Happy Birds",
+ "englishUsFontType":1,
+ "frenchText":"Oiseaux joyeux",
+ "frenchFontType":1,
+ "italianText":"Uccelli felici",
+ "italianFontType":1,
+ "germanText":"Frohe Vögel",
+ "germanFontType":1,
+ "spanishText":"Pájaros felices",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pájaros felices",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pássaros alegres",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_morino",
+ "englishUsText":"Forest Animals",
+ "englishUsFontType":1,
+ "frenchText":"Animaux de la forêt",
+ "frenchFontType":1,
+ "italianText":"Animali della foresta",
+ "italianFontType":1,
+ "germanText":"Tiere aus dem Wald",
+ "germanFontType":1,
+ "spanishText":"Animales del bosque",
+ "spanishFontType":1,
+ "neutralSpanishText":"Animales del bosque",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Animais da floresta",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_bigribbon",
+ "englishUsText":"Big Ribbon",
+ "englishUsFontType":1,
+ "frenchText":"Gros ruban",
+ "frenchFontType":1,
+ "italianText":"Fiocco grande",
+ "italianFontType":1,
+ "germanText":"Große Schleife",
+ "germanFontType":1,
+ "spanishText":"Gran lazo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Gran lazo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Fita grande",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_oiran",
+ "englishUsText":"Geisha",
+ "englishUsFontType":1,
+ "frenchText":"Geisha",
+ "frenchFontType":1,
+ "italianText":"Geisha",
+ "italianFontType":1,
+ "germanText":"Geisha",
+ "germanFontType":1,
+ "spanishText":"Geisha",
+ "spanishFontType":1,
+ "neutralSpanishText":"Geisha",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Geisha",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_torino",
+ "englishUsText":"Fortune Cat",
+ "englishUsFontType":1,
+ "frenchText":"Chat porte-bonheur",
+ "frenchFontType":1,
+ "italianText":"Gatto della fortuna",
+ "italianFontType":1,
+ "germanText":"Glückskatze",
+ "germanFontType":1,
+ "spanishText":"Gato de la fortuna",
+ "spanishFontType":1,
+ "neutralSpanishText":"Gato de la fortuna",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Gato da sorte",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_gakuran",
+ "englishUsText":"Schoolboy",
+ "englishUsFontType":1,
+ "frenchText":"Lycéen",
+ "frenchFontType":1,
+ "italianText":"Liceale",
+ "italianFontType":1,
+ "germanText":"Schuljunge",
+ "germanFontType":1,
+ "spanishText":"Uniforme de colegial",
+ "spanishFontType":1,
+ "neutralSpanishText":"Uniforme de la escuela",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Uniforme escolar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_himegal",
+ "englishUsText":"Gyaru Princess",
+ "englishUsFontType":1,
+ "frenchText":"Princesse Gyaru",
+ "frenchFontType":1,
+ "italianText":"Principessa alla moda",
+ "italianFontType":1,
+ "germanText":"Gyaru-Prinzessin",
+ "germanFontType":1,
+ "spanishText":"Princesa Gyaru",
+ "spanishFontType":1,
+ "neutralSpanishText":"Princesa Gyaru",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Princesa Gyaru",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_donyan",
+ "englishUsText":"DON-Cat",
+ "englishUsFontType":1,
+ "frenchText":"Chat DON",
+ "frenchFontType":1,
+ "italianText":"Gatto",
+ "italianFontType":1,
+ "germanText":"DON-Katze",
+ "germanFontType":1,
+ "spanishText":"DON gato",
+ "spanishFontType":1,
+ "neutralSpanishText":"DON gato",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DON-Gato",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_manga",
+ "englishUsText":"Manga Eyes",
+ "englishUsFontType":1,
+ "frenchText":"Yeux manga",
+ "frenchFontType":1,
+ "italianText":"Occhi da manga",
+ "italianFontType":1,
+ "germanText":"Manga-Augen",
+ "germanFontType":1,
+ "spanishText":"Ojos de manga",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ojos de manga",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Olhos Manga",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_chili",
+ "englishUsText":"Belled Rope",
+ "englishUsFontType":1,
+ "frenchText":"Corde à cloches",
+ "frenchFontType":1,
+ "italianText":"Corda con campanelli",
+ "italianFontType":1,
+ "germanText":"Seil mit Glocken",
+ "germanFontType":1,
+ "spanishText":"Cuerda con campanas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cuerda con campanas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Corda de sino",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_korokoro",
+ "englishUsText":"CoroCoro Comic",
+ "englishUsFontType":1,
+ "frenchText":"CoroCoro Comic",
+ "frenchFontType":1,
+ "italianText":"CoroCoro Comic",
+ "italianFontType":1,
+ "germanText":"CoroCoro Comic",
+ "germanFontType":1,
+ "spanishText":"CoroCoro Comic",
+ "spanishFontType":1,
+ "neutralSpanishText":"CoroCoro Comic",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"CoroCoro Comic",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_puchiKorodora",
+ "englishUsText":"Coro Dragon",
+ "englishUsFontType":1,
+ "frenchText":"Coro Dragon",
+ "frenchFontType":1,
+ "italianText":"Coro Dragon",
+ "italianFontType":1,
+ "germanText":"Coro Dragon",
+ "germanFontType":1,
+ "spanishText":"Coro Dragon",
+ "spanishFontType":1,
+ "neutralSpanishText":"Coro Dragon",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Coro Dragon",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_ichigo",
+ "englishUsText":"Strawberry",
+ "englishUsFontType":1,
+ "frenchText":"Fraise",
+ "frenchFontType":1,
+ "italianText":"Fragola",
+ "italianFontType":1,
+ "germanText":"Erdbeere",
+ "germanFontType":1,
+ "spanishText":"Fresa",
+ "spanishFontType":1,
+ "neutralSpanishText":"Fresa",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Morango",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"play_mode_normal",
+ "englishUsText":"Normal Play",
+ "englishUsFontType":1,
+ "frenchText":"Partie normale",
+ "frenchFontType":1,
+ "italianText":"Impostazioni standard",
+ "italianFontType":1,
+ "germanText":"Normales Spiel",
+ "germanFontType":1,
+ "spanishText":"Juego normal",
+ "spanishFontType":1,
+ "neutralSpanishText":"Juego normal",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Jogo normal",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"play_mode_traning",
+ "englishUsText":"Training",
+ "englishUsFontType":1,
+ "frenchText":"Entraînement",
+ "frenchFontType":1,
+ "italianText":"Allenamento",
+ "italianFontType":1,
+ "germanText":"Training",
+ "germanFontType":1,
+ "spanishText":"Entrenamiento",
+ "spanishFontType":1,
+ "neutralSpanishText":"Entrenamiento",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Treino",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"play_mode_best_replay",
+ "englishUsText":"Best Replay",
+ "englishUsFontType":1,
+ "frenchText":"Meilleure rediffusion",
+ "frenchFontType":1,
+ "italianText":"Miglior prova",
+ "italianFontType":1,
+ "germanText":"Bestleistung wiederholen",
+ "germanFontType":1,
+ "spanishText":"Mejor repetición",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mejor repetición",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Melhor replay",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"songselect_confirmed",
+ "englishUsText":"Re-Select",
+ "englishUsFontType":1,
+ "frenchText":"Rechoisir",
+ "frenchFontType":1,
+ "italianText":"Ri-seleziona",
+ "italianFontType":1,
+ "germanText":"Erneut wählen",
+ "germanFontType":1,
+ "spanishText":"Volver a selecc.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Volver a seleccionar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Resselecionar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"session_friend_updated",
+ "englishUsText":"Friend song data has been updated.",
+ "englishUsFontType":1,
+ "frenchText":"Les données Ami ont été mises à jour.",
+ "frenchFontType":1,
+ "italianText":"I dati degli amici sono ora aggiornati.",
+ "italianFontType":1,
+ "germanText":"Freund-Songdaten wurden aktualisiert.",
+ "germanFontType":1,
+ "spanishText":"Se han actualizado los datos de amigos.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Datos actualizados: canciones de amigos.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Dados de músicas de amigos atualizados.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"session_friend_missed",
+ "englishUsText":"Cannot find Friend data.",
+ "englishUsFontType":1,
+ "frenchText":"Impossible de trouver les données Ami.",
+ "frenchFontType":1,
+ "italianText":"Impossibile trovare dati degli amici.",
+ "italianFontType":1,
+ "germanText":"Freunddaten nicht gefunden.",
+ "germanFontType":1,
+ "spanishText":"No se encuentran datos de amigos.",
+ "spanishFontType":1,
+ "neutralSpanishText":"No se encuentran datos de amigos.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Dados de amigos não encontrados.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"session_friend_updating",
+ "englishUsText":"Updating Friend data",
+ "englishUsFontType":1,
+ "frenchText":"Mise à jour des données Ami",
+ "frenchFontType":1,
+ "italianText":"Aggiornamento dei dati degli amici",
+ "italianFontType":1,
+ "germanText":"Aktualisiere Freunddaten",
+ "germanFontType":1,
+ "spanishText":"Actualizando datos de amigos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Actualizando datos de amigos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Atualizando dados de amigos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"select_song",
+ "englishUsText":"Select Song",
+ "englishUsFontType":1,
+ "frenchText":"Choix de la chanson",
+ "frenchFontType":1,
+ "italianText":"Selez. canzone",
+ "italianFontType":1,
+ "germanText":"Song wählen",
+ "germanFontType":1,
+ "spanishText":"Elegir canción",
+ "spanishFontType":1,
+ "neutralSpanishText":"Elegir canción",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sel. música",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"genre_friends",
+ "englishUsText":"Friend",
+ "englishUsFontType":1,
+ "frenchText":"Ami",
+ "frenchFontType":1,
+ "italianText":"Amici",
+ "italianFontType":1,
+ "germanText":"Freunde",
+ "germanFontType":1,
+ "spanishText":"Amigo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Amigo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Amigos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"filter_songs",
+ "englishUsText":"Number of Songs: %s",
+ "englishUsFontType":1,
+ "frenchText":"Nombre de chansons : %s",
+ "frenchFontType":1,
+ "italianText":"Numero di canzoni: %s",
+ "italianFontType":1,
+ "germanText":"Zahl der Songs: %s",
+ "germanFontType":1,
+ "spanishText":"Número de canciones: %s",
+ "spanishFontType":1,
+ "neutralSpanishText":"Número de canciones: %s",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Número de músicas: %s",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"filter_songs_title",
+ "englishUsText":"Filtered Results",
+ "englishUsFontType":1,
+ "frenchText":"Résultats triés",
+ "frenchFontType":1,
+ "italianText":"Risultati (filtrati)",
+ "italianFontType":1,
+ "germanText":"Gefilterte Ergb.",
+ "germanFontType":1,
+ "spanishText":"Resultados filtrados",
+ "spanishFontType":1,
+ "neutralSpanishText":"Resultados filtrados",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Res. filtrados",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"filter_used",
+ "englishUsText":"Sort Filters On",
+ "englishUsFontType":1,
+ "frenchText":"Filtres activés",
+ "frenchFontType":1,
+ "italianText":"Filtri attivi",
+ "italianFontType":1,
+ "germanText":"Sortierfilter ein",
+ "germanFontType":1,
+ "spanishText":"Filtros activados",
+ "spanishFontType":1,
+ "neutralSpanishText":"Filtros activados",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Filtros ativados",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo",
+ "englishUsText":"Mission Bingo",
+ "englishUsFontType":1,
+ "frenchText":"Mission de bingo",
+ "frenchFontType":1,
+ "italianText":"Missione Bingo",
+ "italianFontType":1,
+ "germanText":"Missions-Bingo",
+ "germanFontType":1,
+ "spanishText":"Misión del bingo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Misión del bingo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bingo de missões",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"select_difficulty",
+ "englishUsText":"Select Difficulty",
+ "englishUsFontType":1,
+ "frenchText":"Choix de la difficulté",
+ "frenchFontType":1,
+ "italianText":"Seleziona difficoltà",
+ "italianFontType":1,
+ "germanText":"Schwierigkeit wählen",
+ "germanFontType":1,
+ "spanishText":"Elegir dificultad",
+ "spanishFontType":1,
+ "neutralSpanishText":"Elegir dificultad",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sel. dificuldade",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"credit_part_29",
+ "englishUsText":"DON-chan’s Ensemble",
+ "englishUsFontType":1,
+ "frenchText":"Ensemble de Don-chan",
+ "frenchFontType":1,
+ "italianText":"Ensemble di DON-chan",
+ "italianFontType":1,
+ "germanText":"DON-chans Ensemble",
+ "germanFontType":1,
+ "spanishText":"Grupo de DON-chan",
+ "spanishFontType":1,
+ "neutralSpanishText":"Grupo de DON-chan",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Grupo do DON-chan",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_tutorial",
+ "englishUsText":"Tutorial",
+ "englishUsFontType":1,
+ "frenchText":"Didacticiel",
+ "frenchFontType":1,
+ "italianText":"Tutorial",
+ "italianFontType":1,
+ "germanText":"Tutorial",
+ "germanFontType":1,
+ "spanishText":"Tutorial",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tutorial",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tutorial",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_comment_tutorial",
+ "englishUsText":"View Taiko Mode tutorial.",
+ "englishUsFontType":1,
+ "frenchText":"Regarder le didacticiel du mode Taiko.",
+ "frenchFontType":1,
+ "italianText":"Vedi il tutorial della modalità Taiko.",
+ "italianFontType":1,
+ "germanText":"Taiko-Modus-Tutorial ansehen.",
+ "germanFontType":1,
+ "spanishText":"Para ver el tutorial del modo Taiko.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Para ver el tutorial del modo Taiko.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ver o tutorial do Modo Taiko.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_tutorial_finish",
+ "englishUsText":"End Video",
+ "englishUsFontType":1,
+ "frenchText":"Passer vidéo",
+ "frenchFontType":1,
+ "italianText":"Chiudi video",
+ "italianFontType":1,
+ "germanText":"Video beenden",
+ "germanFontType":1,
+ "spanishText":"Acabar vídeo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Acabar video",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Fim de vídeo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_tutorial_clear",
+ "englishUsText":"Get past this to clear the song!",
+ "englishUsFontType":1,
+ "frenchText":"Dépasse la limite pour terminer la chanson !",
+ "frenchFontType":1,
+ "italianText":"Supera qui per completare la canzone!",
+ "italianFontType":1,
+ "germanText":"Schaffe das hier zum Abschluss!",
+ "germanFontType":1,
+ "spanishText":"¡Pasa esto para superar la canción!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Pasa esto para superar la canción!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Supere para completar a música!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_tutorial_text01",
+ "englishUsText":"Here’s how to play the game!",
+ "englishUsFontType":1,
+ "frenchText":"Voici comment jouer au jeu !",
+ "frenchFontType":1,
+ "italianText":"Ecco come si gioca!",
+ "italianFontType":1,
+ "germanText":"So wird gespielt!",
+ "germanFontType":1,
+ "spanishText":"Se juega de la manera siguiente:",
+ "spanishFontType":1,
+ "neutralSpanishText":"Se juega de la siguiente manera:",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"É assim que se joga o jogo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_tutorial_text02",
+ "englishUsText":"When a note overlaps the frame,\nthat’s your cue to hit the drum.",
+ "englishUsFontType":1,
+ "frenchText":"Tu dois tambouriner au moment\noù la note passe sur le cadre.",
+ "frenchFontType":1,
+ "italianText":"Batti sul tamburo quando\nuna nota tocca la linea.",
+ "italianFontType":1,
+ "germanText":"Wandert eine Note über den Rahmen,\nmusst du in dem Moment auf die Trommel schlagen.",
+ "germanFontType":1,
+ "spanishText":"Cuando una nota entra en el\nmarco, hay que tocar el tambor.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cuando una nota entra en el\nmarco, hay que tocar el tambor.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Quando uma nota está acima do quadro,\né sua deixa para bater no tambor.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_tutorial_text03",
+ "englishUsText":"Hit the surface for red notes.",
+ "englishUsFontType":1,
+ "frenchText":"Tambourine la surface pour les notes rouges.",
+ "frenchFontType":1,
+ "italianText":"Colpisci la superficie per le note rosse.",
+ "italianFontType":1,
+ "germanText":"Rote Noten: Oberfläche",
+ "germanFontType":1,
+ "spanishText":"Notas rojas: toca la superficie.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Notas rojas: toca la superficie.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bata na superfície nas notas vermelhas.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_tutorial_text04",
+ "englishUsText":"Hit the rim for blue notes.",
+ "englishUsFontType":1,
+ "frenchText":"Tambourine le rebord pour les notes bleues.",
+ "frenchFontType":1,
+ "italianText":"Colpisci il bordo per le note blu.",
+ "italianFontType":1,
+ "germanText":"Blaue Noten: Rand.",
+ "germanFontType":1,
+ "spanishText":"Notas azules: toca el borde.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Notas azules: toca el borde.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bata na borda nas notas azuis.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_tutorial_text05",
+ "englishUsText":"When playing with a DUALSHOCK®4 Wireless Controller,\nuse either the ㎡/㏍ directional buttons\nor the ㎏/㎜ button\nto hit the red notes.",
+ "englishUsFontType":1,
+ "frenchText":"Si tu joues avec une manette sans fil\nDUALSHOCK®4, utilise la touche\n㎡/touche ㏍ ou la touche ㎏/touche ㎜\npour frapper les notes rouges.",
+ "frenchFontType":1,
+ "italianText":"Con il controller wireless DUALSHOCK®4,\nusa il tasto ㎡/tasto ㏍\no il tasto ㎏/tasto ㎜\nper suonare le note rosse.",
+ "italianFontType":1,
+ "germanText":"Nutzt du einen DUALSHOCK®4 Wireless-Controller,\nverwende entweder ㎡/㏍ von den Richtungstasten\noder die ㎏-Taste/㎜-Taste\nfür rote Noten.",
+ "germanFontType":1,
+ "spanishText":"Si usas un mando inalámbrico DUALSHOCK®4,\npulsa el botón ㎡/botón ㏍ o\nel botón ㎏/botón ㎜\npara tocar las notas rojas.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cuando juegues con un control\ninalámbrico DUALSHOCK®4, usa los\nbotones de dirección ㎡/㏍ o el botón\n㎏/㎜ para tocar las notas rojas.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Com um controle sem fio DUALSHOCK®4,\nuse ou o ㎡/㏍ botões direcionais\nou o ㎏/botão ㎜ \npara atingir as notas vermelhas.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_tutorial_text06",
+ "englishUsText":"For the blue notes,\nuse either the ㎞/㏄ directional buttons,\n㎎/㎝ buttons, or the L1/R1 buttons.",
+ "englishUsFontType":1,
+ "frenchText":"Pour les notes bleues, utilise\nla touche ㎞/touche ㏄,\nou la touche ㎎/touche ㎝,\nou bien la touche L1/touche R1.",
+ "frenchFontType":1,
+ "italianText":"Per le note blu, usa il tasto ㎞/tasto ㏄,\no il tasto ㎎/tasto ㎝ , o il tasto L1/tasto R1.",
+ "italianFontType":1,
+ "germanText":"Für blaue Noten verwendest du\n㎞/㏄ von den Richtungstasten,\ndie ㎎-Taste/㎝-Taste oder die L1-Taste/R1-Taste.",
+ "germanFontType":1,
+ "spanishText":"Para las notas azules,\npulsa el botón ㎞/botón ㏄ o el botón ㎎/botón ㎝\no el botón L1/botón R1.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Para las notas azules,\noprime el botón ㎞/botón ㏄ o el botón ㎎/botón ㎝\no el botón L1/botón R1.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Para as notas azuis,\nPressione o botão ㎞/botão ㏄ ou o botão ㎎/botão ㎝\nOu o botão L1/botão R1.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_tutorial_text07",
+ "englishUsText":"For large notes, the drum can be struck on both sides to get extra points!",
+ "englishUsFontType":1,
+ "frenchText":"Pour les grosses notes, tu dois\nmarteler le tambour des deux côtés\npour obtenir des points supplémentaires !",
+ "frenchFontType":1,
+ "italianText":"In caso di note grandi, colpisci il tamburo\nsu entrambi i lati per ottenere\npunti extra!",
+ "italianFontType":1,
+ "germanText":"Bei großen Noten musst du auf beide Seiten der Trommel schlagen,\num dir Extrapunkte zu sichern!",
+ "germanFontType":1,
+ "spanishText":"Con las notas grandes, toca ambos lados\ndel tambor para conseguir puntos adicionales.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Para las notas grandes, usa ambos\nlados para conseguir puntos adicionales.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Para notas longas, atinja os dois lados do tambor para pontos extras!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_tutorial_text08",
+ "englishUsText":"Yellow music notes are your cue to do a drumroll!",
+ "englishUsFontType":1,
+ "frenchText":"Quand tu vois des notes jaunes, fais un roulement de tambour !",
+ "frenchFontType":1,
+ "italianText":"Se la nota è gialla, esegui un rullo di tamburo!",
+ "italianFontType":1,
+ "germanText":"Gelbe Noten signalisieren einen Trommelwirbel!",
+ "germanFontType":1,
+ "spanishText":"Las notas amarillas indican un redoble.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Las notas amarillas indican un redoble.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Notas musicais amarelas pedem rufos de tambor!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_tutorial_text09",
+ "englishUsText":"Balloon notes and mallet notes\ncall for a drumroll too!",
+ "englishUsFontType":1,
+ "frenchText":"Les notes ballon et maillet nécessitent\naussi un roulement de tambour !",
+ "frenchFontType":1,
+ "italianText":"Anche le note a palloncino e a martello\nrichiedono il rullo di tamburo.\n",
+ "italianFontType":1,
+ "germanText":"Bei Ballon- und Schlägel-Noten\nmuss ein Trommelwirbel folgen!",
+ "germanFontType":1,
+ "spanishText":"¡Las notas con un mazo o un globo también!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Las notas con un mazo o un globo también!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Notas balão e marreta\ntambém indicam rufar de tambores!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_tutorial_text10",
+ "englishUsText":"Hit the notes at just the right time\nto fill up your Soul gauge!",
+ "englishUsFontType":1,
+ "frenchText":"Frappe les notes au bon moment\npour remplir ta jauge d'âme !",
+ "frenchFontType":1,
+ "italianText":"Suona le note al momento giusto per riempire l'indic. Anima!\n",
+ "italianFontType":1,
+ "germanText":"Triffst du Noten genau richtig,\nfüllt sich die Seelenanzeige!",
+ "germanFontType":1,
+ "spanishText":"Toca las notas en el momento justo\npara llenar el indicador de Alma.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Toca las notas en el momento justo\npara llenar el indicador de Alma.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Acerte notas no momento certo\ne preencha seu Medidor de Alma!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_tutorial_text11",
+ "englishUsText":"Stay on rhythm and try to beat the game!",
+ "englishUsFontType":1,
+ "frenchText":"Garde le rythme et termine la chanson !",
+ "frenchFontType":1,
+ "italianText":"Segui il ritmo e completa il gioco!",
+ "italianFontType":1,
+ "germanText":"Bleib im Takt und du bringst es weit!",
+ "germanFontType":1,
+ "spanishText":"¡Sigue el ritmo e intenta ganar!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Sigue el ritmo e intenta ganar!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mantenha o ritmo e tente vencer o jogo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_tutorial_info_title",
+ "englishUsText":"Important Notice",
+ "englishUsFontType":1,
+ "frenchText":"Remarque importante",
+ "frenchFontType":1,
+ "italianText":"Avviso importante",
+ "italianFontType":1,
+ "germanText":"Wichtiger Hinweis",
+ "germanFontType":1,
+ "spanishText":"Aviso importante",
+ "spanishFontType":1,
+ "neutralSpanishText":"Aviso importante",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Aviso importante",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_tutorial_info_txt",
+ "englishUsText":"Certain TVs may introduce lag in the game’s audio and visuals,\nwhich can cause note timing to fall out of sync\nand result in failure.\n\nIf you encounter lag issues like this,\ntry calibrating the game by going to Game Settings > Calibration.",
+ "englishUsFontType":1,
+ "frenchText":"Certaines TV peuvent introduire du lag dans les sons et images du jeu,\nce qui peut provoquer une désynchronisation du timing des notes\net te faire échouer.\n\nSi tu rencontres des problèmes de lag,\nessaie de calibrer le jeu en passant par Paramètres de jeu > Calibrage.",
+ "frenchFontType":1,
+ "italianText":"Alcuni schermi possono introdurre un ritardo\ntra grafica e audio, facendo apparire le note\nfuori sincrono e inducendo all'errore.\n\nSe è il tuo caso, calibra il gioco\nselezionando Impostazioni > Calibrazione.",
+ "italianFontType":1,
+ "germanText":"Bei bestimmten Fernsehern kann es zu Ton- und Bildverzögerungen kommen,\nsodass das Noten-Timing asynchron wird\nund du scheiterst.\n\nTritt dieses Problem auf,\nkalibriere das Spiel über Spieloptionen > Kalibrierung.",
+ "germanFontType":1,
+ "spanishText":"Ciertas TV pueden retardar la imagen y el sonido, lo cual puede hacer que la\ncadencia de las notas se desincronice y dé\nfallos. Si experimentas problemas como\nestos, prueba a calibrar el juego en\nAjustes del juego > Calibración.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ciertas TV pueden retardar la imagen y el sonido, lo cual puede hacer que la\ncadencia de las notas se desincronice y dé\nfallos. Si experimentas problemas como\nestos, intenta calibrar el juego en\nAjustes del juego > Calibración.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Certas TVs podem causar lag no áudio e visuais do jogo,\no que pode afetar a sincronia do timing das notas\ne resultar em fracasso.\n\nSe encontrar problemas de lag deste tipo,\ntente calibrar o jogo acessando Configurações de jogo > Calibragem.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_sound",
+ "englishUsText":"Calibration",
+ "englishUsFontType":1,
+ "frenchText":"Calibrage",
+ "frenchFontType":1,
+ "italianText":"Calibrazione",
+ "italianFontType":1,
+ "germanText":"Kalibrierung",
+ "germanFontType":1,
+ "spanishText":"Calibración",
+ "spanishFontType":1,
+ "neutralSpanishText":"Calibración",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Calibragem",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_comment_sound",
+ "englishUsText":"Adjust BGM and sound effect volume, and calibrate note positions and timing.",
+ "englishUsFontType":1,
+ "frenchText":"Ajuste le volume des musiques et effets,\net calibre la position et le timing des notes.",
+ "frenchFontType":1,
+ "italianText":"Regola il volume di musica ed effetti e\ncalibra posizione e tempismo delle note.",
+ "italianFontType":1,
+ "germanText":"Passe Musik- und Effekt-Lautstärke an und kalibriere Noten-Position und -Timing.",
+ "germanFontType":1,
+ "spanishText":"Ajusta el volumen de la música de fondo y de los efectos.\nCalibra la posición y la cadencia de notas.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ajusta volumen del fondo y de efectos.\nCalibra posición y cadencia de notas.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ajusta o volume da trilha e efeitos sonoros, e calibra as posições e timings das notas.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_auto_txt_supple",
+ "englishUsText":"Drum controller calibrations are only reflected when the control type is set to Type 4.",
+ "englishUsFontType":1,
+ "frenchText":"Le calibrage du contrôleur tambour ne fonctionne\nque si le type de contrôleur est sur type 4.",
+ "frenchFontType":1,
+ "italianText":"Le calibrazioni per il controller tamburo vengono applicate solo quando\nSchema di comandi è impostato su Schema 4.",
+ "italianFontType":1,
+ "germanText":"Die Kalibrierung des Trommel-Controllers ist nur wirksam, wenn Steuerungstyp 4 gewählt wird.",
+ "germanFontType":1,
+ "spanishText":"La calibración del mando tambor solo se refleja\nsi el control está configurado en tipo 4.",
+ "spanishFontType":1,
+ "neutralSpanishText":"La calibración del control tambor solo se refleja\nsi el control está configurado en tipo 4.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Calibragens de controles tambor só têm efeito se o tipo de controle está no Tipo 4.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_auto_txt_supple2",
+ "englishUsText":"A single unit is equivalent to approximately 4 milliseconds.",
+ "englishUsFontType":1,
+ "frenchText":"Une unité équivaut environ à 4 millisecondes.",
+ "frenchFontType":1,
+ "italianText":"Un'unità equivale a circa 4 millisecondi.",
+ "italianFontType":1,
+ "germanText":"Eine Einheit entspricht etwa 4 Millisekunden.",
+ "germanFontType":1,
+ "spanishText":"Una unidad equivale a 4 milésimas\nde segundo, aproximadamente.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Una unidad equivale a 4 milésimas\nde segundo, aproximadamente.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Uma única unidade equivale a cerca de 4 milissegundos.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_help_title",
+ "englishUsText":"How to change audio output",
+ "englishUsFontType":1,
+ "frenchText":"Comment changer la sortie audio",
+ "frenchFontType":1,
+ "italianText":"Modificare l'output audio",
+ "italianFontType":1,
+ "germanText":"Die Audioausgabe ändern",
+ "germanFontType":1,
+ "spanishText":"Cambiar la salida de audio",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cambiar la salida de audio",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Como mudar saída de áudio",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_help",
+ "englishUsText":"Audio Output Guide",
+ "englishUsFontType":1,
+ "frenchText":"Guide de sortie audio",
+ "frenchFontType":1,
+ "italianText":"Guida output audio",
+ "italianFontType":1,
+ "germanText":"Audio-Ausgabe-Hinweise",
+ "germanFontType":1,
+ "spanishText":"Guía de salida de audio",
+ "spanishFontType":1,
+ "neutralSpanishText":"Guía de salida de audio",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Guia de saída de áudio",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_note_point_title",
+ "englishUsText":"Adjust Note Positions",
+ "englishUsFontType":1,
+ "frenchText":"Ajuster la position des notes",
+ "frenchFontType":1,
+ "italianText":"Regola posizioni note",
+ "italianFontType":1,
+ "germanText":"Noten-Positionen anpassen",
+ "germanFontType":1,
+ "spanishText":"Ajustar posición de notas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ajustar posición de notas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ajustar posições de notas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_note_point_txt",
+ "englishUsText":"Adjusts where notes appear on the screen.\n+ values move notes to the right,\nand - values move notes to the left.",
+ "englishUsFontType":1,
+ "frenchText":"Ajuste l'endroit où les notes apparaissent\nà l'écran. Les valeurs + déplacent les notes\nà droite, les valeurs - à gauche.",
+ "frenchFontType":1,
+ "italianText":"Imposta dove appaiono le note sullo schermo.\n\"+\" sposta la nota a destra,\n\"-\" sposta la nota a sinistra.",
+ "italianFontType":1,
+ "germanText":"Passe an, wo die Noten auf dem Bildschirm erscheinen.\nPositive Werte verschieben die Noten nach rechts,\nnegative nach links.",
+ "germanFontType":1,
+ "spanishText":"Ajusta dónde aparecen las notas.\nLos valores + mueven las notas hacia la derecha;\nlos valores -, hacia la izquierda.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ajusta dónde aparecen las notas.\nLos valores + mueven las notas hacia la derecha;\nlos valores -, hacia la izquierda.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ajusta onde as notas aparecem na tela.\nValores + vão para a direita,\ne valores - para a esquerda.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_note_timing_title",
+ "englishUsText":"Adjust Note Recognition",
+ "englishUsFontType":1,
+ "frenchText":"Ajuster la reconnaissance des notes",
+ "frenchFontType":1,
+ "italianText":"Regola riconoscimento nota",
+ "italianFontType":1,
+ "germanText":"Noten-Erkennung anpassen",
+ "germanFontType":1,
+ "spanishText":"Ajustar reconocimiento de notas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ajustar reconocimiento de notas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ajustar reconhecimento de notas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_note_timing_txt",
+ "englishUsText":"Adjusts the window used to determine note timing.\n+ values move this window right,\nand - values move it left.",
+ "englishUsFontType":1,
+ "frenchText":"Ajuste la fenêtre utilisée pour déterminer le timing\ndes notes. Les valeurs + déplacent la fenêtre de\nreconnaissance à droite du cadre, les valeurs - à gauche.",
+ "frenchFontType":1,
+ "italianText":"Imposta l'intervallo di tempo di riconoscimento della nota.\n\"+\" lo aumenta, \"-\" lo diminuisce.",
+ "italianFontType":1,
+ "germanText":"Passe das Fenster für das Noten-Timing an.\nPositive Werte verschieben das Fenster nach rechts,\nnegative nach links.",
+ "germanFontType":1,
+ "spanishText":"Ajusta la ventana de la cadencia de las notas.\nLos valores + la mueven hacia la derecha;\nlos valores -, hacia la izquierda.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ajusta la ventana de la cadencia de las notas.\nLos valores + la mueven hacia la derecha;\nlos valores -, hacia la izquierda.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ajusta o intervalo usado para determinar o timing das notas.\n+ valores movem esta janela para a direita\ne - os valores movem-se para a esquerda.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_sound_vol_bgm_title",
+ "englishUsText":"BGM",
+ "englishUsFontType":1,
+ "frenchText":"Musique",
+ "frenchFontType":1,
+ "italianText":"Musica",
+ "italianFontType":1,
+ "germanText":"Musik",
+ "germanFontType":1,
+ "spanishText":"Música",
+ "spanishFontType":1,
+ "neutralSpanishText":"Fondo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Trilha",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_sound_vol_bgm_txt",
+ "englishUsText":"Adjust BGM volume.",
+ "englishUsFontType":1,
+ "frenchText":"Ajuste le volume de la musique.",
+ "frenchFontType":1,
+ "italianText":"Regola il volume della musica.",
+ "italianFontType":1,
+ "germanText":"Die Musik-Lautstärke anpassen.",
+ "germanFontType":1,
+ "spanishText":"Ajusta el volumen de la música de fondo.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ajusta el volumen de fondo.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ajusta o volume da trilha.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_sound_vol_se_title",
+ "englishUsText":"SE",
+ "englishUsFontType":1,
+ "frenchText":"Effets sonores",
+ "frenchFontType":1,
+ "italianText":"Effetti",
+ "italianFontType":1,
+ "germanText":"Soundeffekte",
+ "germanFontType":1,
+ "spanishText":"Efectos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Efectos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Efeitos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_sound_vol_se_txt",
+ "englishUsText":"Adjust sound effect volume.",
+ "englishUsFontType":1,
+ "frenchText":"Ajuste le volume des effets sonores.",
+ "frenchFontType":1,
+ "italianText":"Regola il volume degli effetti.",
+ "italianFontType":1,
+ "germanText":"Die Effekt-Lautstärke anpassen.",
+ "germanFontType":1,
+ "spanishText":"Ajusta el volumen de los efectos.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ajusta el volumen de los efectos.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ajusta o volume dos efeitos.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_staffroll_detail",
+ "englishUsText":"View Credits.",
+ "englishUsFontType":1,
+ "frenchText":"Voir les crédits.",
+ "frenchFontType":1,
+ "italianText":"Vedi riconoscimenti.",
+ "italianFontType":1,
+ "germanText":"Liste der Mitwirkenden.",
+ "germanFontType":1,
+ "spanishText":"Ver créditos.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ver créditos.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ver créditos.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_title",
+ "englishUsText":"Game Settings",
+ "englishUsFontType":1,
+ "frenchText":"Paramètres de jeu",
+ "frenchFontType":1,
+ "italianText":"Impostazioni",
+ "italianFontType":1,
+ "germanText":"Spieloptionen",
+ "germanFontType":1,
+ "spanishText":"Ajustes del juego",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ajustes del juego",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Configurações de jogo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_dialog_title",
+ "englishUsText":"Play Test",
+ "englishUsFontType":1,
+ "frenchText":"Test de jeu",
+ "frenchFontType":1,
+ "italianText":"Avvia prova",
+ "italianFontType":1,
+ "germanText":"Test spielen",
+ "germanFontType":1,
+ "spanishText":"Prueba de sonido",
+ "spanishFontType":1,
+ "neutralSpanishText":"Prueba de sonido",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Teste de jogo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_dialog",
+ "englishUsText":"Test in Taiko Mode?",
+ "englishUsFontType":1,
+ "frenchText":"Tester en mode Taiko ?",
+ "frenchFontType":1,
+ "italianText":"Provare in modalità Taiko?",
+ "italianFontType":1,
+ "germanText":"Im Taiko-Modus testen?",
+ "germanFontType":1,
+ "spanishText":"¿Probar en modo Taiko?",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Probar en modo Taiko?",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Testar no Modo Taiko?",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_comment_supple",
+ "englishUsText":"Reflects calibrations for the drum controller.",
+ "englishUsFontType":1,
+ "frenchText":"Reflète les calibrages pour\nle contrôleur tambour.",
+ "frenchFontType":1,
+ "italianText":"Applica le calibrazioni\nal controller tamburo.",
+ "italianFontType":1,
+ "germanText":"Spiegelt die Kalibrierung für den Trommel-Controller wider.",
+ "germanFontType":1,
+ "spanishText":"Refleja las calibraciones\ndel mando tambor.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Refleja las calibraciones\ndel control tambor.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Reflete as calibragens para o controle tambor.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_buttontype4_supple",
+ "englishUsText":"Use Calibration to fix anything that feels out of sync.",
+ "englishUsFontType":1,
+ "frenchText":"Utilise le calibrage pour corriger\ntout ce qui semble désynchronisé.",
+ "frenchFontType":1,
+ "italianText":"Se qualcosa ti pare fuori sincrono, usa\nCalibrazione per risolvere il problema.",
+ "italianFontType":1,
+ "germanText":"Nutze die Kalibrierung, um etwas anzupassen, das asynchron ist.",
+ "germanFontType":1,
+ "spanishText":"Usa la calibración para arreglar todo lo\nque te parezca desincronizado.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Usa la calibración para arreglar todo lo\nque te parezca desincronizado.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Use a Calibragem para ajustar o que parece fora de sincronia.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_net_send_no",
+ "englishUsText":"Do Not Upload",
+ "englishUsFontType":1,
+ "frenchText":"Ne pas envoyer",
+ "frenchFontType":1,
+ "italianText":"Non caricare",
+ "italianFontType":1,
+ "germanText":"Nicht hochladen",
+ "germanFontType":1,
+ "spanishText":"No transferir",
+ "spanishFontType":1,
+ "neutralSpanishText":"No transferir",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Não carregar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_net_send_no_txt",
+ "englishUsText":"Stop your own ghosts from being uploaded.\n*This will prevent your ghost from showing up\nin other players’ games, including your friends.",
+ "englishUsFontType":1,
+ "frenchText":"Empêche tes fantômes d'être envoyés.\n*Cela empêchera ton fantôme d'apparaître\ndans la partie des autres joueurs, amis compris.",
+ "frenchFontType":1,
+ "italianText":"Blocca la condivisione dei tuoi dati fantasma.\n*I tuoi dati fantasma non appariranno nelle\npartite di altri giocatori e dei tuoi amici.",
+ "italianFontType":1,
+ "germanText":"Verhindert, dass dein Geist hochgeladen wird.\n*Dein Geist taucht dann nicht in den Partien anderer\nSpieler auf, auch bei deinen Freunden nicht.",
+ "germanFontType":1,
+ "spanishText":"Detiene la transferencia de tus fantasmas.\n*Esto impedirá que tu fantasma aparezca en las\npartidas de otros, incluidos tus amigos.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Detiene la transferencia de tus fantasmas.\n*Esto impedirá que tu fantasma aparezca en las\npartidas de otros, incluidos tus amigos.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Impede seus fantasmas de serem carregados.\n*Isso impedirá seu fantasma de aparecer\nno jogo de outros jogadores, inclusive seus amigos.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_net_send_yes",
+ "englishUsText":"Upload",
+ "englishUsFontType":1,
+ "frenchText":"Envoyer",
+ "frenchFontType":1,
+ "italianText":"Carica",
+ "italianFontType":1,
+ "germanText":"Hochladen",
+ "germanFontType":1,
+ "spanishText":"Transferir",
+ "spanishFontType":1,
+ "neutralSpanishText":"Transferir",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Carregar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_net_send_title",
+ "englishUsText":"Ghost Settings",
+ "englishUsFontType":1,
+ "frenchText":"Paramètres de fantôme",
+ "frenchFontType":1,
+ "italianText":"Impost. dati fantasma",
+ "italianFontType":1,
+ "germanText":"Geist-Einstellungen",
+ "germanFontType":1,
+ "spanishText":"Ajustes de fantasmas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ajustes de fantasmas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Config. de fantasmas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_net_send_yes_txt",
+ "englishUsText":"Upload your own ghosts.\n*This will let your ghost appear in\nother players’ games, including your friends.",
+ "englishUsFontType":1,
+ "frenchText":"Envoie tes fantômes.\n*Cela fera apparaître ton fantôme\ndans la partie des autres joueurs, amis compris.",
+ "frenchFontType":1,
+ "italianText":"Condivide i tuoi dati fantasma.\n*I tuoi dati fantasma appariranno nelle\npartite di altri giocatori e dei tuoi amici.",
+ "italianFontType":1,
+ "germanText":"Dein Geist wird hochgeladen.\n*Dein Geist kann dann in den Partien anderer\nSpieler auftauchen, auch bei deinen Freunden.",
+ "germanFontType":1,
+ "spanishText":"Transfiere tus fantasmas.\n*Esto permitirá que tu fantasma aparezca en las\npartidas de otros, incluidos tus amigos.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Transfiere tus fantasmas.\n*Esto permitirá que tu fantasma aparezca en las\npartidas de otros, incluidos tus amigos.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Carrega seus próprios fantasmas.\n*Isso deixará seu fantasma aparecer\nno jogo de outros jogadores, inclusive seus amigos.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_buttontype",
+ "englishUsText":"Control Type",
+ "englishUsFontType":1,
+ "frenchText":"Type de contrôleur",
+ "frenchFontType":1,
+ "italianText":"Schema dei comandi",
+ "italianFontType":1,
+ "germanText":"Steuerungstyp",
+ "germanFontType":1,
+ "spanishText":"Tipo de control",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tipo de control",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tipo de controle",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_listening_result1",
+ "englishUsText":"Note Position Calibration:",
+ "englishUsFontType":1,
+ "frenchText":"Calibrage de la position des notes :",
+ "frenchFontType":1,
+ "italianText":"Calibr. posiz. nota:",
+ "italianFontType":1,
+ "germanText":"Noten-Positions-Kalibr.:",
+ "germanFontType":1,
+ "spanishText":"Posición calibración notas:",
+ "spanishFontType":1,
+ "neutralSpanishText":"Posición calibración notas:",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Calib. posição de notas:",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_listening_result2",
+ "englishUsText":"Drum Controller Calibration:",
+ "englishUsFontType":1,
+ "frenchText":"Calibrage du contrôleur tambour :",
+ "frenchFontType":1,
+ "italianText":"Calibrazione controller tamburo:",
+ "italianFontType":1,
+ "germanText":"Trommel-Controller-Kalibrierung:",
+ "germanFontType":1,
+ "spanishText":"Calibración del mando tambor:",
+ "spanishFontType":1,
+ "neutralSpanishText":"Calibración del control tambor:",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Calibragem do controle tambor:",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"vib_off",
+ "englishUsText":"Vibration Off",
+ "englishUsFontType":1,
+ "frenchText":"Vibration désactivée",
+ "frenchFontType":1,
+ "italianText":"Vibrazione No",
+ "italianFontType":1,
+ "germanText":"Vibration an",
+ "germanFontType":1,
+ "spanishText":"Vibración activada",
+ "spanishFontType":1,
+ "neutralSpanishText":"Vibración desactivada",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vibração desligado",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"vib_on",
+ "englishUsText":"Vibration On",
+ "englishUsFontType":1,
+ "frenchText":"Vibration activée",
+ "frenchFontType":1,
+ "italianText":"Vibrazione Sì",
+ "italianFontType":1,
+ "germanText":"Vibration aus",
+ "germanFontType":1,
+ "spanishText":"Vibración desactivada",
+ "spanishFontType":1,
+ "neutralSpanishText":"Vibración activada",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vibração ligado",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_staffroll",
+ "englishUsText":"Credits",
+ "englishUsFontType":1,
+ "frenchText":"Crédits",
+ "frenchFontType":1,
+ "italianText":"Riconoscimenti",
+ "italianFontType":1,
+ "germanText":"Mitwirkende",
+ "germanFontType":1,
+ "spanishText":"Créditos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Créditos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Créditos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_comment_staffroll",
+ "englishUsText":"View Credits.",
+ "englishUsFontType":1,
+ "frenchText":"Voir les crédits.",
+ "frenchFontType":1,
+ "italianText":"Vedi riconoscimenti.",
+ "italianFontType":1,
+ "germanText":"Liste der Mitwirkenden.",
+ "germanFontType":1,
+ "spanishText":"Ver créditos.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ver créditos.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ver créditos.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_tatacon_timing_title",
+ "englishUsText":"Drum Controller Calibration",
+ "englishUsFontType":1,
+ "frenchText":"Calibrage du contrôleur tambour",
+ "frenchFontType":1,
+ "italianText":"Calibrazione controller tamburo",
+ "italianFontType":1,
+ "germanText":"Trommel-Controller-Kalibrierung",
+ "germanFontType":1,
+ "spanishText":"Calibración del mando tambor",
+ "spanishFontType":1,
+ "neutralSpanishText":"Calibración del control tambor",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Calibragem do controle tambor",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_tatacon_timing",
+ "englishUsText":"Manually adjust the drum controller’s recognition timing.\n- values make the timing slower.",
+ "englishUsFontType":1,
+ "frenchText":"Ajuste manuellement le timing\ndu contrôleur tambour. Les valeurs -\nrendent le timing plus lent.",
+ "frenchFontType":1,
+ "italianText":"Regola manualmente la finestra di\nriconoscimento quando si usa il controller\ntamburo. \"-\" amplia l'intervallo di tempo.",
+ "italianFontType":1,
+ "germanText":"Passe die Erkennung des Trommel-Controllers von Hand an.\nNegative Werte verlangsamen das Timing.",
+ "germanFontType":1,
+ "spanishText":"Ajusta manualmente la cadencia de\nreconocimiento del mando tambor.\nLos valores - bajan la cadencia.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ajusta manualmente la cadencia de\nreconocimiento del control tambor.\nLos valores - bajan la cadencia.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ajusta manualmente o timing de reconhecimento do controle tambor.\nValores - deixam o timing mais devagar.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_auto_txt1",
+ "englishUsText":"①Please ensure that you have\nthe mono headset included with\nyour PlayStation®4 system.",
+ "englishUsFontType":1,
+ "frenchText":"①Assure-toi de disposer de\nl'oreillette-micro mono incluse\navec ton système PlayStation®4. \n",
+ "frenchFontType":1,
+ "italianText":"①Assicurati di avere con \nte l'auricolare mono \nfornito insieme al \nsistema PlayStation®4.",
+ "italianFontType":1,
+ "germanText":"①Bitte vergewissere dich, \ndass du das Mono-Headset hast, \ndas mit deinem \nPlayStation®4-System geliefert wurde.",
+ "germanFontType":1,
+ "spanishText":"①Asegúrate de tener el\nauricular mono con micrófono\nque se incluye con tu\nsistema PlayStation®4.",
+ "spanishFontType":1,
+ "neutralSpanishText":"①Asegúrate de tener el auricular\nmonoaural que se incluye en tu consola\nPlayStation®4.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"①Certifique-se de que tem o headset\nmono incluído no sistema\nPlayStation®4.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_auto_txt2",
+ "englishUsText":"②Connect to %s's\nDUALSHOCK®4 Wireless Controller.\n",
+ "englishUsFontType":1,
+ "frenchText":"②Connecte-la à la\nmanette sans fil DUALSHOCK®4 de\n%s.\n",
+ "frenchFontType":1,
+ "italianText":"②Collegale al \ncontroller wireless DUALSHOCK®4\ndi %s.\n",
+ "italianFontType":1,
+ "germanText":"②Verbinde dich mit dem \nDUALSHOCK®4 Wireless-Controller \nvon %s.\n",
+ "germanFontType":1,
+ "spanishText":"②Conéctalo al mando inalámbrico\nDUALSHOCK®4\nde %s.\n",
+ "spanishFontType":1,
+ "neutralSpanishText":"②Conéctalo al control inalámbrico\nDUALSHOCK®4 de %s.\n",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"②Conecte-o ao controle sem fio\nDUALSHOCK®4 de %s.\n",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_auto_txt3",
+ "englishUsText":"③Turn the mono headset’s microphone\non and place it near the TV’s speaker\nbefore beginning the calibration.",
+ "englishUsFontType":1,
+ "frenchText":"③Allume le microphone de\nl'oreillette-micro mono et place-le\ndevant le haut-parleur de la TV\navant de commencer le calibrage.",
+ "frenchFontType":1,
+ "italianText":"③Accendi il microfono dell'auricolare mono\ne posizionalo accanto all'altoparlante dello\nschermo prima di iniziare la calibrazione.\n",
+ "italianFontType":1,
+ "germanText":"③Schalte das Mikrofon des \nMono-Headsets ein und platziere es \nin der Nähe der Lautsprecher des \nFernsehers, bevor du die Kalibrierung startest.",
+ "germanFontType":1,
+ "spanishText":"③Enciende el micrófono del auricular mono\ncon micrófono y colócalo cerca del altavoz\nde la TV antes de empezar la calibración.\n",
+ "spanishFontType":1,
+ "neutralSpanishText":"③Enciende el micrófono del auricular\nmonoaural y colócalo cerca del altavoz de\nla TV antes de empezar la calibración.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"③Ligue o microfone do fone headset\nmono e o deixe próximo ao alto-falante\nda TV antes de iniciar a calibragem.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_auto_title",
+ "englishUsText":"Automatically calibrate sound and notes for your TV.",
+ "englishUsFontType":1,
+ "frenchText":"Calibre automatiquement le son et les notes pour ta TV.",
+ "frenchFontType":1,
+ "italianText":"Calibra automaticamente suono e note sul tuo schermo.",
+ "italianFontType":1,
+ "germanText":"Sound und Noten automatisch kalibrieren.",
+ "germanFontType":1,
+ "spanishText":"Calibración automática de sonido y notas para tu TV.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Calibración automática de sonido y notas para tu TV.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Calibra automaticamente o som e notas para a sua TV.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_auto",
+ "englishUsText":"Start Measuring",
+ "englishUsFontType":1,
+ "frenchText":"Commencer à mesurer",
+ "frenchFontType":1,
+ "italianText":"Avvia la misurazione",
+ "italianFontType":1,
+ "germanText":"Messung starten",
+ "germanFontType":1,
+ "spanishText":"Empezar medición",
+ "spanishFontType":1,
+ "neutralSpanishText":"Empezar medición",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Comece a medir",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_listening_now",
+ "englishUsText":"Current Calibration",
+ "englishUsFontType":1,
+ "frenchText":"Calibrage actuel",
+ "frenchFontType":1,
+ "italianText":"Calibrazione attuale",
+ "italianFontType":1,
+ "germanText":"Aktuelle Kalibrierung",
+ "germanFontType":1,
+ "spanishText":"Calibración actual",
+ "spanishFontType":1,
+ "neutralSpanishText":"Calibración actual",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Calibragem atual",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_listening_title",
+ "englishUsText":"Calibrating",
+ "englishUsFontType":1,
+ "frenchText":"Calibrage",
+ "frenchFontType":1,
+ "italianText":"In corso",
+ "italianFontType":1,
+ "germanText":"Kalibriere",
+ "germanFontType":1,
+ "spanishText":"Calibrando",
+ "spanishFontType":1,
+ "neutralSpanishText":"Calibrando",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Calibrando",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_auto_add_txt1",
+ "englishUsText":" *You will need to readjust calibrations when changing controllers or TVs.",
+ "englishUsFontType":1,
+ "frenchText":" *Tu devras réajuster le calibrage si tu changes de TV ou de manette.",
+ "frenchFontType":1,
+ "italianText":" *Occorre effettuare una ricalibrazione ogni volta che si cambia controller o schermo.",
+ "italianFontType":1,
+ "germanText":" *Du musst die Kalibrierung erneut durchführen, wenn du den Controller oder den Fernseher austauschst.",
+ "germanFontType":1,
+ "spanishText":" *Cuando cambies de mando o de televisor, tendrás que reajustar la calibración.",
+ "spanishFontType":1,
+ "neutralSpanishText":" *Cuando cambies de control o de televisión, tendrás que reajustar la calibración.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":" *É preciso reajustar as calibragens ao mudar de controles ou TV.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_auto_add_txt2",
+ "englishUsText":"*Auto calibration may not work properly if the volume is too low or if there is too much background noise.",
+ "englishUsFontType":1,
+ "frenchText":"*L'autocalibrage peut ne pas fonctionner correctement si le volume est trop faible ou s'il y a trop de bruit en arrière-plan.",
+ "frenchFontType":1,
+ "italianText":"*Se il volume è troppo basso o se c'è troppo rumore di sottofondo, la calibrazione automatica può non dare un risultato ottimale.",
+ "italianFontType":1,
+ "germanText":"*Die automatische Kalibrierung kann versagen, wenn die Lautstärke zu niedrig eingestellt ist oder es zu viele Hintergrundgeräusche gibt.",
+ "germanFontType":1,
+ "spanishText":"*Puede que la calibración no funcione adecuadamente si el volumen está muy bajo o hay demasiado ruido de fondo.",
+ "spanishFontType":1,
+ "neutralSpanishText":"*Puede que la calibración no funcione adecuadamente\nsi el volumen está muy bajo o hay demasiado ruido de fondo.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"*Autocalibrar pode não funcionar devidamente se o volume está muito baixo ou se há muito barulho no ambiente.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_auto_add_txt3",
+ "englishUsText":"*If the TV does not output sound when headphones are connected, you will need to change your\nPlayStation®4 system settings. You can see how to do so by pressing OPTIONS.",
+ "englishUsFontType":1,
+ "frenchText":"*Si aucun son ne sort de la TV lorsque des écouteurs sont connectés, tu devras modifier les paramètres de ton système PlayStation®4.\nTu peux découvrir comment faire en appuyant sur la touche OPTIONS.",
+ "frenchFontType":1,
+ "italianText":"*Se collegando gli auricolari lo schermo non emette alcun suono, occorre modificare le impostazioni\ndel sistema PlayStation®4. Per sapere come fare, premi il tasto OPTIONS.",
+ "italianFontType":1,
+ "germanText":"*Gibt der Fernseher keinen Ton aus, wenn Kopfhörer angeschlossen sind, musst du die Einstellungen deines PlayStation®4-Systems anpassen.\nDu erhältst eine Anleitung, wenn du die OPTIONS-Taste drückst.",
+ "germanFontType":1,
+ "spanishText":"*Si la TV no emite sonido con los auriculares conectados deberás cambiar\nlos ajustes del sistema PlayStation®4. Pulsa el botón OPTIONS para ver cómo hacerlo.",
+ "spanishFontType":1,
+ "neutralSpanishText":" *Si la TV no emite sonido con los auriculares conectados deberás\ncambiar los ajustes de la consola. Oprime OPTIONS para ver cómo hacerlo.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":" *Se a TV não gera som quando fones estão conectados a ela, será preciso mudar suas configurações de sistema.\nAperte OPTIONS para ver como fazê-lo.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_listening_NG",
+ "englishUsText":"Calibration Failed",
+ "englishUsFontType":1,
+ "frenchText":"Échec du calibrage",
+ "frenchFontType":1,
+ "italianText":"Calibrazione fallita",
+ "italianFontType":1,
+ "germanText":"Kalibrierung fehlgeschlagen",
+ "germanFontType":1,
+ "spanishText":"Calibración fallida",
+ "spanishFontType":1,
+ "neutralSpanishText":"Calibración fallida",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Calibragem falhou",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_listening_NG_txt",
+ "englishUsText":"Connect your mono headset to the DUALSHOCK®4 Wireless Controller,\nthen place it near the TV and try again.",
+ "englishUsFontType":1,
+ "frenchText":"Connecte ton oreillette-micro mono à la manette sans fil DUALSHOCK®4,\napproche-la de la TV puis recommence.",
+ "frenchFontType":1,
+ "italianText":"Collega l'auricolare mono al controller wireless\nDUALSHOCK®4, posizionalo vicino allo schermo e riprova.",
+ "italianFontType":1,
+ "germanText":"Schließ das Mono-Headset an den DUALSHOCK®4 Wireless-Controller\nan, leg es neben den Fernseher und versuch es erneut.",
+ "germanFontType":1,
+ "spanishText":"Conecta el auricular mono con micrófono al mando inalámbrico\nDUALSHOCK®4, ponlo cerca de la TV y reinténtalo.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conecta el auricular monoaural al control inalámbrico\nDUALSHOCK®4, ponlo cerca de la TV y reinténtalo.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conecte seu headset mono ao controle sem fio DUALSHOCK®4,\nposicione-o perto da TV e tente de novo.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_listening_OK",
+ "englishUsText":"Calibration Successful",
+ "englishUsFontType":1,
+ "frenchText":"Calibrage réussi",
+ "frenchFontType":1,
+ "italianText":"Completata",
+ "italianFontType":1,
+ "germanText":"Kalibr. erfolgreich",
+ "germanFontType":1,
+ "spanishText":"Calibración conseguida",
+ "spanishFontType":1,
+ "neutralSpanishText":"Calibración conseguida",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Calibragem concluída",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_test_options",
+ "englishUsText":"Test Complete",
+ "englishUsFontType":1,
+ "frenchText":"Test terminé",
+ "frenchFontType":1,
+ "italianText":"Test completato",
+ "italianFontType":1,
+ "germanText":"Test abgeschlossen",
+ "germanFontType":1,
+ "spanishText":"Prueba completada",
+ "spanishFontType":1,
+ "neutralSpanishText":"Prueba completada",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Teste concluído",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_test",
+ "englishUsText":"Play Test",
+ "englishUsFontType":1,
+ "frenchText":"Test de jeu",
+ "frenchFontType":1,
+ "italianText":"Avvia prova",
+ "italianFontType":1,
+ "germanText":"Test spielen",
+ "germanFontType":1,
+ "spanishText":"Prueba de sonido",
+ "spanishFontType":1,
+ "neutralSpanishText":"Prueba de sonido",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Teste de jogo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_net",
+ "englishUsText":"Network",
+ "englishUsFontType":1,
+ "frenchText":"Réseau",
+ "frenchFontType":1,
+ "italianText":"Rete",
+ "italianFontType":1,
+ "germanText":"Netzwerk",
+ "germanFontType":1,
+ "spanishText":"Red",
+ "spanishFontType":1,
+ "neutralSpanishText":"Red",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Rede",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_comment_net",
+ "englishUsText":"Set ghost transmission settings.",
+ "englishUsFontType":1,
+ "frenchText":"Ajuste les paramètres\nde transmission de fantôme.",
+ "frenchFontType":1,
+ "italianText":"Imposta le opzioni di trasmissione\ndei dati fantasma.",
+ "italianFontType":1,
+ "germanText":"Lege die Geister-Übertragungseinstellungen fest.",
+ "germanFontType":1,
+ "spanishText":"Configura los ajustes de\ntransmisión de fantasmas.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Configura los ajustes de\ntransmisión de fantasmas.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Determinar configurações de transmissão de fantasma.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_buttontype4_supple_ex",
+ "englishUsText":"When changing controllers, please press the PS button\non the controller you want to use, then select your account.",
+ "englishUsFontType":1,
+ "frenchText":"Si tu changes de manette, appuie sur la touche PS\nde la manette que tu souhaites utiliser puis choisis ton compte.",
+ "frenchFontType":1,
+ "italianText":"Se colleghi un nuovo controller, premi\nil suo tasto PS e scegli il tuo account.",
+ "italianFontType":1,
+ "germanText":"Nutze beim Controller-Wechsel die PS-Taste des\nControllers, den du benutzen willst, und wähle dein Benutzerkonto.",
+ "germanFontType":1,
+ "spanishText":"Cambio de mando: pulsa el botón PS en el\nmando y elige tu cuenta.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cambio de control: oprime el botón PS en el\ncontrol y elige tu cuenta.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ao mudar de controles, aperte o botão PS\nno controle que deseja usar, e então selecione sua conta.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_auto_guide_complete",
+ "englishUsText":"Done",
+ "englishUsFontType":1,
+ "frenchText":"Terminer",
+ "frenchFontType":1,
+ "italianText":"Fine",
+ "italianFontType":1,
+ "germanText":"Fertig",
+ "germanFontType":1,
+ "spanishText":"Hecho",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hecho",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pronto",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_auto_guide_cancel",
+ "englishUsText":"Cancel",
+ "englishUsFontType":1,
+ "frenchText":"Annuler",
+ "frenchFontType":1,
+ "italianText":"Annulla",
+ "italianFontType":1,
+ "germanText":"Abbrechen",
+ "germanFontType":1,
+ "spanishText":"Cancelar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cancelar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Cancelar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_net_get_title",
+ "englishUsText":"Friend Ghost Settings",
+ "englishUsFontType":1,
+ "frenchText":"Paramètres des fantômes amis",
+ "frenchFontType":1,
+ "italianText":"Impost. dati fantasma amici",
+ "italianFontType":1,
+ "germanText":"Freund-Geister-Optionen",
+ "germanFontType":1,
+ "spanishText":"Ajustes de fantasmas amigos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ajustes de fantasmas amigos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Config. fantasmas de amigos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_net_get_no",
+ "englishUsText":"Decline",
+ "englishUsFontType":1,
+ "frenchText":"Refuser",
+ "frenchFontType":1,
+ "italianText":"Rifiuta",
+ "italianFontType":1,
+ "germanText":"Ablehnen",
+ "germanFontType":1,
+ "spanishText":"Rechazar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Rechazar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Recusar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_net_get_no_txt",
+ "englishUsText":"Do not download friend ghosts.\n*Also eliminates the Friend genre from songs\nand prevents you from playing Friend Sessions.",
+ "englishUsFontType":1,
+ "frenchText":"Ne télécharge pas les fantômes des amis.\n*Supprime également le genre Ami des chansons\net t'empêche de jouer aux Sessions d'ami.",
+ "frenchFontType":1,
+ "italianText":"Non scarica i dati fantasma degli amici.\n*Disabilita il genere Amici dalle canzoni\ne impedisce di giocare Sessioni Amici.",
+ "italianFontType":1,
+ "germanText":"Keine Geister von Freunden herunterladen.\n*Entfernt auch das Freunde-Genre bei den Songs\nund verhindert, dass du Freundes-Sessions spielen kannst.",
+ "germanFontType":1,
+ "spanishText":"No descarga fantasmas de amigos.\n*Además elimina el género Amigo de las canciones\ne impide que juegues sesiones de amigos.",
+ "spanishFontType":1,
+ "neutralSpanishText":"No descarga fantasmas de amigos.\n*Además elimina el género Amigo de las canciones\ne impide que juegues sesiones de amigos.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Não baixa fantasmas de amigos.\n*Também exclui o gênero Amigos de músicas\ne impede você de jogar Sessões de Amigos.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_net_get_yes",
+ "englishUsText":"Accept",
+ "englishUsFontType":1,
+ "frenchText":"Accepter",
+ "frenchFontType":1,
+ "italianText":"Accetta",
+ "italianFontType":1,
+ "germanText":"Annehmen",
+ "germanFontType":1,
+ "spanishText":"Aceptar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Aceptar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Aceitar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_net_get_yes_txt",
+ "englishUsText":"Download friend ghosts.\n*Also enables the Friend genre in songs\nand lets you play Friend Sessions.",
+ "englishUsFontType":1,
+ "frenchText":"Télécharge les fantômes des amis.\n*Ajoute également le genre Ami aux chansons\net te permet de jouer aux Sessions d'ami.",
+ "frenchFontType":1,
+ "italianText":"Scarica i dati fantasma degli amici.\n*Abilita il genere Amici nelle canzoni\ne permette di giocare Sessioni Amici.",
+ "italianFontType":1,
+ "germanText":"Geister von Freunden herunterladen.\n*Aktiviert das Freunde-Genre bei den Songs\nund erlaubt dir, Freundes-Sessions zu spielen.",
+ "germanFontType":1,
+ "spanishText":"Descarga fantasmas de amigos.\n*Además activa el género Amigo de las canciones\ny permite que juegues sesiones de amigos.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Descarga fantasmas de amigos.\n*Además activa el género Amigo de las canciones\ny permite que juegues sesiones de amigos.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Baixa fantasmas de amigos.\n*Ativa também o gênero Amigos em músicas\ne permite jogar Sessões de Amigos.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_dialo_back",
+ "englishUsText":"No input from other player detected.\nClosing screen.",
+ "englishUsFontType":1,
+ "frenchText":"Aucune saisie de l'autre joueur détectée.\nFermeture de l'écran.",
+ "frenchFontType":1,
+ "italianText":"Nessun input dall'altro giocatore rile-\nvato. La schermata verrà chiusa.",
+ "italianFontType":1,
+ "germanText":"Keine Eingabe von Spieler.\nSchließe Bildschirm.",
+ "germanFontType":1,
+ "spanishText":"No se detectan otros jugadores.\nCerrando pantalla.",
+ "spanishFontType":1,
+ "neutralSpanishText":"No se detectan otros jugadores.\nCerrando pantalla.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Nenhum comando de outro jogador detectado.\nFechando tela.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_comment_buttontype",
+ "englishUsText":"Change the control type used in Taiko Mode.\n*Can also change to the drum controller.",
+ "englishUsFontType":1,
+ "frenchText":"Change le type de contrôleur utilisé en mode Taiko.\n*Peut aussi être changé pour utiliser le contrôleur tambour.",
+ "frenchFontType":1,
+ "italianText":"Cambia schema comandi in modalità Taiko.\n*Puoi anche scegliere il contr. tamburo.",
+ "italianFontType":1,
+ "germanText":"Ändere den Steuerungstyp im Taiko-Modus.\n*Wechsel zum Trommel-Controller möglich.",
+ "germanFontType":1,
+ "spanishText":"Cambia el tipo de control usado en modo Taiko.\n*También puede cambiar al mando tambor.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cambia el tipo de control usado en modo Taiko.\n*También puede cambiar el control tambor.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Muda o tipo de controle usado no Modo Taiko.\n*Também pode mudar para o controle tambor.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_comment_buttontype4",
+ "englishUsText":"Controlled via Drum Controller",
+ "englishUsFontType":1,
+ "frenchText":"Contrôlé via le contrôleur tambour",
+ "frenchFontType":1,
+ "italianText":"Controllato tramite controller tamburo",
+ "italianFontType":1,
+ "germanText":"Steuerung über Trommel-Controller",
+ "germanFontType":1,
+ "spanishText":"Controlado mediante mando tambor",
+ "spanishFontType":1,
+ "neutralSpanishText":"Controlado mediante control tambor",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Controlado com controle tambor",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_buttontype_type",
+ "englishUsText":"Type",
+ "englishUsFontType":1,
+ "frenchText":"Type",
+ "frenchFontType":1,
+ "italianText":"Schema",
+ "italianFontType":1,
+ "germanText":"Typ",
+ "germanFontType":1,
+ "spanishText":"Tipo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tipo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tipo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_buttontype_type_1",
+ "englishUsText":"Type 1",
+ "englishUsFontType":1,
+ "frenchText":"Type 1",
+ "frenchFontType":1,
+ "italianText":"Schema 1",
+ "italianFontType":1,
+ "germanText":"Typ 1",
+ "germanFontType":1,
+ "spanishText":"Tipo 1",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tipo 1",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tipo 1",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_buttontype_type_2",
+ "englishUsText":"Type 2",
+ "englishUsFontType":1,
+ "frenchText":"Type 2",
+ "frenchFontType":1,
+ "italianText":"Schema 2",
+ "italianFontType":1,
+ "germanText":"Typ 2",
+ "germanFontType":1,
+ "spanishText":"Tipo 2",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tipo 2",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tipo 2",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_buttontype_type_3",
+ "englishUsText":"Type 3",
+ "englishUsFontType":1,
+ "frenchText":"Type 3",
+ "frenchFontType":1,
+ "italianText":"Schema 3",
+ "italianFontType":1,
+ "germanText":"Typ 3",
+ "germanFontType":1,
+ "spanishText":"Tipo 3",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tipo 3",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tipo 3",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_buttontype_type_4",
+ "englishUsText":"Type 4 (drum)",
+ "englishUsFontType":1,
+ "frenchText":"Type 4 (tambour)",
+ "frenchFontType":1,
+ "italianText":"Schema 4 (T)",
+ "italianFontType":1,
+ "germanText":"Typ 4 (Trommel)",
+ "germanFontType":1,
+ "spanishText":"Tipo 4 (tam.)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tipo 4 (tam.)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tipo 4 (tambor)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_buttontype_type_indicate1",
+ "englishUsText":"Rim (left)",
+ "englishUsFontType":1,
+ "frenchText":"Rebord (gauche)",
+ "frenchFontType":1,
+ "italianText":"Bordo (sx)",
+ "italianFontType":1,
+ "germanText":"Rand (links)",
+ "germanFontType":1,
+ "spanishText":"Borde (izq.)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Borde (izq.)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Borda (esquerda)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_buttontype_type_indicate4",
+ "englishUsText":"Rim (right)",
+ "englishUsFontType":1,
+ "frenchText":"Rebord (droite)",
+ "frenchFontType":1,
+ "italianText":"Bordo (dx)",
+ "italianFontType":1,
+ "germanText":"Rand (rechts)",
+ "germanFontType":1,
+ "spanishText":"Borde (der.)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Borde (der.)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Borda (direita)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_buttontype_type_indicate2",
+ "englishUsText":"Surface (left)",
+ "englishUsFontType":1,
+ "frenchText":"Surface (gauche)",
+ "frenchFontType":1,
+ "italianText":"Superficie (sx)",
+ "italianFontType":1,
+ "germanText":"Oberfläche (links)",
+ "germanFontType":1,
+ "spanishText":"Superficie (izq.)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Superficie (izq.)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Superfície (esquerda)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_buttontype_type_indicate3",
+ "englishUsText":"Surface (right)",
+ "englishUsFontType":1,
+ "frenchText":"Surface (droite)",
+ "frenchFontType":1,
+ "italianText":"Superficie (dx)",
+ "italianFontType":1,
+ "germanText":"Oberfläche (rechts)",
+ "germanFontType":1,
+ "spanishText":"Superficie (der.)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Superficie (der.)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Superfície (direita)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_buttontype_type_indicate5",
+ "englishUsText":"L1",
+ "englishUsFontType":1,
+ "frenchText":"L1",
+ "frenchFontType":1,
+ "italianText":"L1",
+ "italianFontType":1,
+ "germanText":"L1",
+ "germanFontType":1,
+ "spanishText":"L1",
+ "spanishFontType":1,
+ "neutralSpanishText":"L1",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"L1",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_buttontype_type_indicate6",
+ "englishUsText":"L2",
+ "englishUsFontType":1,
+ "frenchText":"L2",
+ "frenchFontType":1,
+ "italianText":"L2",
+ "italianFontType":1,
+ "germanText":"L2",
+ "germanFontType":1,
+ "spanishText":"L2",
+ "spanishFontType":1,
+ "neutralSpanishText":"L2",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"L2",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_buttontype_type_indicate7",
+ "englishUsText":"R1",
+ "englishUsFontType":1,
+ "frenchText":"R1",
+ "frenchFontType":1,
+ "italianText":"R1",
+ "italianFontType":1,
+ "germanText":"R1",
+ "germanFontType":1,
+ "spanishText":"R1",
+ "spanishFontType":1,
+ "neutralSpanishText":"R1",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"R1",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_buttontype_type_indicate8",
+ "englishUsText":"R2",
+ "englishUsFontType":1,
+ "frenchText":"R2",
+ "frenchFontType":1,
+ "italianText":"R2",
+ "italianFontType":1,
+ "germanText":"R2",
+ "germanFontType":1,
+ "spanishText":"R2",
+ "spanishFontType":1,
+ "neutralSpanishText":"R2",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"R2",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_buttontype_setting",
+ "englishUsText":"Select the button type for the\nDUALSHOCK®4 Wireless Controller\nyou wish to use with the game.",
+ "englishUsFontType":1,
+ "frenchText":"Sélectionne la combinaison de touches à utiliser avec la manette sans fil DUALSHOCK®4.",
+ "frenchFontType":1,
+ "italianText":"Seleziona lo schema dei comandi per il controller wireless DUALSHOCK®4.",
+ "italianFontType":1,
+ "germanText":"Wähle den Tastentyp für den DUALSHOCK®4 Wireless-Controller, den du im Spiel verwenden willst.",
+ "germanFontType":1,
+ "spanishText":"Elige el tipo de control que quieres usar en el juego para el mando inalámbrico DUALSHOCK®4.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Elige el tipo de control que quieres usar en el juego para el control inalámbrico DUALSHOCK®4.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Selecione o tipo de botão do controle sem fio DUALSHOCK®4 que deseja usar com o jogo.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_buttontype_setting_taiko",
+ "englishUsText":"Controlled via Drum Controller",
+ "englishUsFontType":1,
+ "frenchText":"Contrôlé via le contrôleur tambour",
+ "frenchFontType":1,
+ "italianText":"Controllato tramite controller tamburo",
+ "italianFontType":1,
+ "germanText":"Steuerung über Trommel-Controller",
+ "germanFontType":1,
+ "spanishText":"Controlado mediante mando tambor",
+ "spanishFontType":1,
+ "neutralSpanishText":"Controlado mediante control tambor",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Controlado com controle tambor",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_auto_2p_supple",
+ "englishUsText":"Adjustments for two-player calibrations are saved in the save data for %s.",
+ "englishUsFontType":1,
+ "frenchText":"Les ajustements de calibrage pour deux joueurs\nsont sauvegardés dans les données de %s.",
+ "frenchFontType":1,
+ "italianText":"Le calibrazioni per le modalità a due giocatori\nsono salvate tra i salvataggi di %s.",
+ "italianFontType":1,
+ "germanText":"Anpassungen der Zwei-Spieler-Kalibrierung werden in der Speicherdatei für %s gesichert.",
+ "germanFontType":1,
+ "spanishText":"Los ajustes para la calibración de dos jugadores\nse guardan en los datos guardados de %s.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Los ajustes para la calibración de dos jugadores\nse guardan en los datos guardados de %s.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ajustes para calibragens de 2 jogadores são salvos nos dados salvos de %s.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_help_txt",
+ "englishUsText":"Depending on your console settings, connecting a headset\nmay prevent the TV from outputting audio.\n\nHowever, auto-calibration requires that audio is outputted from the TV.\nTo change your audio output settings, hold down the PS button to bring up the Quick Menu,\n\nselect Sound/Devices > Output to Headphones,\n\nthen make sure it is set to Chat Audio.",
+ "englishUsFontType":1,
+ "frenchText":"Suivant les paramètres de ta console, connecter un casque\npeut empêcher la TV d'émettre du son.\n\nCependant, le calibrage auto nécessite que du son sorte de la TV.\nPour changer les paramètres, appuie sur la touche PS pour accéder au Menu rapide,\n\nsélectionne Son/Périphériques > Sortie vers le casque,\n\npuis règle la sortie sur Audio du chat.",
+ "frenchFontType":1,
+ "italianText":"A seconda delle impostazioni del sistema, se colleghi delle\ncuffie lo schermo potrebbe non emettere più alcun suono.\n\nLa calibrazione automatica necessita che il suono venga\nemesso dallo schermo. Per modificare le impostazioni, tieni\n\npremuto il tasto PS, seleziona Dispositivi audio >\n\nRiproduci l'audio tramite cuffie > Audio della chat.",
+ "italianFontType":1,
+ "germanText":"Je nach Konsoleneinstellungen kann der Anschluss\neines Headsets verhindern, dass der Fernseher Ton ausgibt.\n\nFür die automatische Kalibrierung ist das allerdings nötig.\nUm die Audioeinstellungen zu ändern, halte die PS-Taste gedrückt, um das Schnellmenü aufzurufen,\n\nwähle Ton/Geräte > Ausgabe über Kopfhörer\n\nund vergewissere dich, dass \"Chat-Audio\" gewählt ist.",
+ "germanFontType":1,
+ "spanishText":"Según los ajustes de tu sistema, conectar unos auriculares\npuede impedir que la TV suene.\n\nNo obstante, la calibración automática requiere que la TV\nemita sonido.\n\nPara cambiar los ajustes, mantén pulsado el botón PS para que\naparezca el menú rápido, elige Sonido/Dispositivos >\nSalida a auriculares y selecciona Audio del chat.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Según los ajustes de tu consola, conectar unos auriculares\npuede impedir que la TV suene. Pero la calibración\nautomática requiere que la TV emita sonido. Para cambiar los\najustes, mantén oprimido el botón PS para que aparezca el\nmenú rápido, elige Sonido/Dispositivo >\nSalida a auriculares y selecciona Audio del chat.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Dependendo das config. de seu sistema, conectar um headset\npode impedir a saída de áudio da TV.\n\nPorém, a autocalibragem requer que saia áudio da TV.\nPara mudar as configurações de saída de áudio, segure o botão PS para acessar o Menu Rápido,\n\nselecione Som/Dispositivos > Saída para Fones,\n\ne certifique-se que está marcado para Áudio de Chat.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips044",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips045",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips046",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips047",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips048",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips049",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips050",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips038",
+ "englishUsText":"DON coins can be traded for Treasure Boxes!",
+ "englishUsFontType":1,
+ "frenchText":"Les pièces DON peuvent être échangées\ncontre des coffres au trésor !",
+ "frenchFontType":1,
+ "italianText":"Le monete DON possono essere usate\nper acquistare gli scrigni!",
+ "italianFontType":1,
+ "germanText":"DON-Münzen können gegen Schatzkisten eingetauscht werden!",
+ "germanFontType":1,
+ "spanishText":"¡Las monedas DON se pueden\ncambiar por cajas de tesoro!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Las monedas DON se pueden\ncambiar por cajas de tesoro.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Moedas DON podem ser trocadas por Caixas de Tesouro!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips039",
+ "englishUsText":"You can get DON coins by getting bingos\nor playing with friends!",
+ "englishUsFontType":1,
+ "frenchText":"Tu peux gagner des pièces DON en obtenant\ndes bingos ou en jouant avec tes amis !",
+ "frenchFontType":1,
+ "italianText":"Le monete DON si ottengono facendo\nbingo o giocando con gli amici!",
+ "italianFontType":1,
+ "germanText":"Du erhältst DON-Münzen über Bingos oder\nindem du mit Freunden spielst!",
+ "germanFontType":1,
+ "spanishText":"Consigues monedas DON ganando\nbingos o jugando con amigos.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Consigues monedas DON ganando\nbingos o jugando con amigos.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Você obtém moedas DOM obtendo bingos\nou jogando com amigos!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips036",
+ "englishUsText":"Use the Customization Room\nto change DON-chan’s appearance and title!",
+ "englishUsFontType":1,
+ "frenchText":"Utilise la salle de personnalisation pour\nmodifier l'apparence et le titre de DON-chan !",
+ "frenchFontType":1,
+ "italianText":"Usa Personalizza per modificare\nl'aspetto e il titolo di DON-chan!",
+ "italianFontType":1,
+ "germanText":"Nutze den Anpassungsraum,\num DON-chans Aussehen und Titel anzupassen!",
+ "germanFontType":1,
+ "spanishText":"Usa la sala de personalización para cambiar\nla apariencia y el título de DON-chan.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Usa la sala de personalización para cambiar\nla apariencia y el título de DON-chan.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Use a sala de personalização\npara mudar a aparência e o título de DON-chan!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips037",
+ "englishUsText":"Try setting a greeting for friends and rivals!\nYou can set one in the Customization Room!",
+ "englishUsFontType":1,
+ "frenchText":"Paramètre une salutation pour tes amis et\ntes rivaux depuis la salle de personnalisation !",
+ "frenchFontType":1,
+ "italianText":"Prova a impostare un saluto per amici e rivali!\nPer farlo, seleziona Personalizza.",
+ "italianFontType":1,
+ "germanText":"Lege eine Begrüßung für Freunde und Rivalen fest!\nDu kannst das im Anpassungsraum tun!",
+ "germanFontType":1,
+ "spanishText":"Configura un saludo para amigos y rivales.\nPuedes hacerlo en la sala de personalización.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Configura un saludo para amigos y rivales.\nPuedes hacerlo en la sala de personalización.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tente determinar uma saudação para amigos e rivais!\nDetermine uma na sala de personalização!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips041",
+ "englishUsText":"You can change the buttons used for DON and KA\nby going to Game Settings, then Control Type.",
+ "englishUsFontType":1,
+ "frenchText":"Tu peux changer les touches utilisées pour DON\net KA dans Paramètres puis Type de contrôleur.",
+ "frenchFontType":1,
+ "italianText":"Per cambiare i tasti per le note DON e KA\nseleziona Impostazioni e poi Schema dei comandi.",
+ "italianFontType":1,
+ "germanText":"Du kannst die Tasten für DON und KA\nin den Spieloptionen unter Steuerungstyp anpassen.",
+ "germanFontType":1,
+ "spanishText":"Cambia los botones que se usan para DON y KA\nen Ajustes del juego > Tipo de control.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cambia los botones que se usan para DON y KA\nen Ajustes del juego > Tipo de control.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mude os botões usados para DON e KA\nem configurações de jogo, e então tipo de controle.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips043",
+ "englishUsText":"You can view the tutorial in Game Settings.",
+ "englishUsFontType":1,
+ "frenchText":"Tu peux voir le didacticiel\ndans les Paramètres de jeu.",
+ "frenchFontType":1,
+ "italianText":"Vai in Impostazioni per guardare il tutorial.",
+ "italianFontType":1,
+ "germanText":"Du kannst dir das Tutorial in den Spieloptionen ansehen.",
+ "germanFontType":1,
+ "spanishText":"En Ajustes del juego encontrarás el tutorial.",
+ "spanishFontType":1,
+ "neutralSpanishText":"En Ajustes del juego encontrarás el tutorial.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Acesse o tutorial em configurações de jogo.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips040",
+ "englishUsText":"Please make sure to set the control type to Type 4\nwhen using the drum controller.",
+ "englishUsFontType":1,
+ "frenchText":"Assure-toi d'utiliser le type de contrôleur 4\npour utiliser le contrôleur tambour.",
+ "frenchFontType":1,
+ "italianText":"Se usi il controller tamburo, imposta\nSchema dei comandi su Schema 4.",
+ "italianFontType":1,
+ "germanText":"Setze den Steuerungstyp auf Typ 4,\nwenn du den Trommel-Controller verwendest.",
+ "germanFontType":1,
+ "spanishText":"Asegúrate de configurar el tipo de control\nen tipo 4 cuando uses el mando tambor.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Asegúrate de configurar el tipo de control\nen tipo 4 cuando uses el control tambor.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mude o tipo de controle para o Tipo 4\nao usar o controle tambor.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips042",
+ "englishUsText":"If you feel like the notes are out of sync,\ntry adjusting them in Calibration.",
+ "englishUsFontType":1,
+ "frenchText":"Si tu as l'impression que les notes ne sont pas\nsynchronisées, va les ajuster dans Calibrage.",
+ "frenchFontType":1,
+ "italianText":"Se le note ti sembrano fuori sincrono,\nprova a regolarle con Calibrazione.",
+ "italianFontType":1,
+ "germanText":"Hast du das Gefühl, dass die Noten nicht synchron sind,\npasse sie über die Kalibrierung an.",
+ "germanFontType":1,
+ "spanishText":"Si crees que las notas no están sincronizadas,\nprueba a ajustarlas en Calibración.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Si crees que las notas no están sincronizadas,\nintenta ajustarlas en Calibración.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Se acha que as notas não estão sincronizadas,\ntente ajustá-las em Calibragem.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips026",
+ "englishUsText":"Getting a bingo\nwill award you with a DON coin!",
+ "englishUsFontType":1,
+ "frenchText":"Obtenir un bingo t'octroiera\nune pièce DON !",
+ "frenchFontType":1,
+ "italianText":"Per ogni bingo riceverai\nuna moneta DON!",
+ "italianFontType":1,
+ "germanText":"Schaffst du ein Bingo,\nerhältst du eine DON-Münze!",
+ "germanFontType":1,
+ "spanishText":"Conseguir un bingo\nte dará como premio una moneda DON.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conseguir un bingo\nte dará como premio una moneda DON.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Obter um bingo\ndá a você uma moeda DON!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips027",
+ "englishUsText":"Try looking at the bingo card\nafter you’ve completed all 9 missions!",
+ "englishUsFontType":1,
+ "frenchText":"Jette un œil à la carte de bingo\naprès avoir terminé les 9 missions !",
+ "frenchFontType":1,
+ "italianText":"Prova a dare un'occhiata alla scheda bingo\ndopo aver completato tutte e 9 le missioni!",
+ "italianFontType":1,
+ "germanText":"Schau dir die Bingokarte an, wenn\ndu alle neun Missionen abgeschlossen hast!",
+ "germanFontType":1,
+ "spanishText":"Prueba a mirar el cartón de bingo\ndespués de haber completado las 9 misiones.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Intenta mirar el cartón de bingo\ndespués de haber completado las 9 misiones.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tente ver a cartela de bingo\napós ter completado todas as 9 missões!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips025",
+ "englishUsText":"In Taiko Mode, each song’s bingo card\nhas a total of 9 missions!",
+ "englishUsFontType":1,
+ "frenchText":"En mode Taiko, la carte de bingo de chaque\nchanson possède un total de 9 missions !",
+ "frenchFontType":1,
+ "italianText":"In modalità Taiko, la scheda bingo di ciascuna\ncanzone prevede un totale di 9 missioni!",
+ "italianFontType":1,
+ "germanText":"Im Taiko-Modus gibt es auf der Bingokarte jedes Songs\nneue Missionen!",
+ "germanFontType":1,
+ "spanishText":"¡En el modo Taiko, el cartón de bingo de\ncada canción tiene 9 misiones en total!",
+ "spanishFontType":1,
+ "neutralSpanishText":"En el modo Taiko, el cartón de bingo de\ncada canción tiene 9 misiones en total.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"No Modo Taiko, a cartela de bingo de cada música\ntem um total de 9 missões!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips035",
+ "englishUsText":"Ranked Match rankings are determined\nby the amount of VS points you possess.",
+ "englishUsFontType":1,
+ "frenchText":"Les classements d'un match classé sont\ndéterminés par ta quantité de points VS.",
+ "frenchFontType":1,
+ "italianText":"La classifica da partite classificate\nè determinata dai punti VS posseduti.",
+ "italianFontType":1,
+ "germanText":"Ranglisten in Ranglisten-Partien werden\nanhand der VS-Punkte bestimmt, die die Spieler besitzen.",
+ "germanFontType":1,
+ "spanishText":"Las clasificaciones por combates se determinan\npor los puntos de combate (PC) que consigas.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Las clasificaciones por combates se determinan\npor los puntos de combate (PC) que consigas.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Os rankings de partidas ranqueadas são determinados\npela quantidade de pontos VS que você tem.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips032",
+ "englishUsText":"Ranked Match winners are determined\nby whoever has the higher score at the end.",
+ "englishUsFontType":1,
+ "frenchText":"Le vainqueur d'un match classé est celui\nqui a obtenu le meilleur score à la fin.",
+ "frenchFontType":1,
+ "italianText":"Vince la partita classificata chi alla fine\nha il punteggio più alto.",
+ "italianFontType":1,
+ "germanText":"In Ranglisten-Partien wird der Sieger\nanhand des Punktestands ermittelt.",
+ "germanFontType":1,
+ "spanishText":"Las partidas clasificatorias las gana el que\nconsiga la puntuación más alta al final.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Las partidas igualadas las gana el que\nconsiga la puntuación más alta al final.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Os vencedores de partidas ranqueadas são determinados\npor quem tem a maior pontuação no final.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips033",
+ "englishUsText":"Getting higher ranks in Ranked Matches\nawards you with special titles!",
+ "englishUsFontType":1,
+ "frenchText":"Gagner des niveaux en match classé\nte permettra d'obtenir des titres spéciaux !",
+ "frenchFontType":1,
+ "italianText":"Ottieni ranghi più elevati nelle partite\nclassificate per ricevere titoli speciali!",
+ "italianFontType":1,
+ "germanText":"Erreichst du höhere Ränge in Ranglisten-Partien,\nerhältst du spezielle Titel!",
+ "germanFontType":1,
+ "spanishText":"Conseguir las puntuaciones más altas en las\npartidas clasificatorias te dará títulos especiales.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conseguir las puntuaciones más altas en las\npartidas igualadas te dará títulos especiales.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Obter rankings maiores em partidas ranqueadas\ndá títulos especiais para você!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips034",
+ "englishUsText":"Be warned that quitting a Ranked Match early\nwill result in a penalty.",
+ "englishUsFontType":1,
+ "frenchText":"Attention : quitter un match classé avant\nqu'il ne soit fini inflige une pénalité.",
+ "frenchFontType":1,
+ "italianText":"Attenzione: se abbandoni una partita\nclassificata anzitempo, subirai una penalità.",
+ "italianFontType":1,
+ "germanText":"Verlässt du eine Ranglisten-Partie vorzeitig,\nbringt das eine Strafe mit sich.",
+ "germanFontType":1,
+ "spanishText":"Ten cuidado: salir de una partida clasificatoria\nantes de tiempo comporta una penalización.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ten cuidado: salir de una partida igualada\nantes de tiempo comporta una penalización.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Porém, sair de uma partida ranqueada antes do\nfim resultará em uma penalidade.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips031",
+ "englishUsText":"In Ranked Matches, you can try your hand\nagainst other players’ ghosts!",
+ "englishUsFontType":1,
+ "frenchText":"Dans les matchs classés, tu peux essayer\nde battre le fantôme des autres joueurs !",
+ "frenchFontType":1,
+ "italianText":"Nelle partite classificate è possibile\nsfidare i dati fantasma di altri giocatori!",
+ "italianFontType":1,
+ "germanText":"In Ranglisten-Partien kannst du gegen die\nGeister anderer Spieler antreten!",
+ "germanFontType":1,
+ "spanishText":"En las partidas clasificatorias, puedes medir tu\nhabilidad contra los fantasmas de otros.",
+ "spanishFontType":1,
+ "neutralSpanishText":"En las partidas igualadas, puedes medir tu\nhabilidad contra los fantasmas de otros.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Em partida ranqueado, veja como você se sai\ncontra fantasmas de outros jogadores!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips013",
+ "englishUsText":"On Extreme difficulty,\nsome songs have secret versions.",
+ "englishUsFontType":1,
+ "frenchText":"En difficulté Extrême, certaines chansons\npossèdent des versions secrètes.",
+ "frenchFontType":1,
+ "italianText":"Al livello di difficoltà Estremo, alcune\ncanzoni presentano anche una versione segreta.",
+ "italianFontType":1,
+ "germanText":"Für den Schwierigkeitsgrad \"Extrem\"\ngibt es für einige Songs Geheimversionen.",
+ "germanFontType":1,
+ "spanishText":"En dificultad Extrema, algunas\ncanciones tienen versiones secretas.",
+ "spanishFontType":1,
+ "neutralSpanishText":"En dificultad Extrema, algunas\ncanciones tienen versiones secretas.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Na dificuldade Extrema,\nalgumas músicas têm versões secretas.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips014",
+ "englishUsText":"Repeatedly press the Right button when the cursor\nis on Extreme to select a song’s secret version.",
+ "englishUsFontType":1,
+ "frenchText":"Appuie sur la touche droite lorsque le curseur est sur\nExtrême pour sélectionner la version secrète d'une chanson.",
+ "frenchFontType":1,
+ "italianText":"Al livello Estremo, premi ripetutamente il tasto destra\nper accedere alla versione segreta della canzone.",
+ "italianFontType":1,
+ "germanText":"Drücke wiederholt die Rechts-Taste, wenn \"Extrem\" markiert ist,\num die Geheimversion des Songs zu wählen.",
+ "germanFontType":1,
+ "spanishText":"Con el cursor en Extrema, pulsa el botón hacia la derecha\nvarias veces para la versión secreta de una canción.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Con el cursor en Extrema, oprime derecha varias\nveces para la versión secreta de una canción.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Aperte para a direita repetidamente quando o cursor estiver na Extrema\npara selecionar a versão secreta de uma música.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips006",
+ "englishUsText":"The more hits you can land on drumroll notes,\nthe better your score will be!",
+ "englishUsFontType":1,
+ "frenchText":"Plus tu tambourines sur les notes roulement\nde tambour, meilleur sera ton score !",
+ "frenchFontType":1,
+ "italianText":"Più colpi riesci a effettuare durante i rulli\ndi tamburo, più punti otterrai!",
+ "italianFontType":1,
+ "germanText":"Je mehr Trommelwirbel-Noten du erwischst,\ndesto höher deine Punkte!",
+ "germanFontType":1,
+ "spanishText":"Cuantos más golpes des en las notas de\nlos redobles, mayor será tu puntuación.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mientras más golpes des en las notas de\nlos redobles, mayor será tu puntuación.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Quando mais acertos tiver em notas de rufo de tambor,\nmelhor será sua pontuação!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips007",
+ "englishUsText":"Hitting notes at just the right time scores a Good,\nwhich awards more points than an OK!",
+ "englishUsFontType":1,
+ "frenchText":"Tambouriner au bon moment marque un Bon,\nqui octroie plus de points qu'un OK !",
+ "frenchFontType":1,
+ "italianText":"Se il tuo tempismo è perfetto, otterrai un \"Buono\",\nche vale più punti di un \"OK\".",
+ "italianFontType":1,
+ "germanText":"Triffst du Noten genau, bekommst du ein \"Gut\",\ndas stets mehr Punkte bringt als ein \"OK\"!",
+ "germanFontType":1,
+ "spanishText":"Dar a las notas en el momento preciso te supone\nun Bien, que da más puntos que un Vale.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Dar a las notas en el momento preciso te supone\nun Bien, que da más puntos que un Ok.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Acertar as notas no tempo correto cede um BOM,\nque dá mais pontos que um OK!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips008",
+ "englishUsText":"Keep drumming without missing notes\nto get a combo bonus!",
+ "englishUsFontType":1,
+ "frenchText":"Continue à tambouriner sans rater de notes\npour obtenir un bonus de combo !",
+ "frenchFontType":1,
+ "italianText":"Suona il tamburo senza sbagliare\nper ottenere punti combo!",
+ "italianFontType":1,
+ "germanText":"Verpasse keine Noten, um dir\neinen Kombo-Bonus zu sichern!",
+ "germanFontType":1,
+ "spanishText":"Sigue tocando sin fallar notas para\nconseguir una bonificación por combo.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sigue tocando sin fallar notas para\nconseguir una bonificación por combo.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Continue batucando sem perder notas\npara ganhar um bônus de combo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips009",
+ "englishUsText":"Drum through mallet notes quickly for lots of points!",
+ "englishUsFontType":1,
+ "frenchText":"Tambourine rapidement sur les notes maillet\npour obtenir beaucoup de points !",
+ "frenchFontType":1,
+ "italianText":"Colpisci il tamburo rapidamente durante le note\na martello per ottenere tanti punti!",
+ "italianFontType":1,
+ "germanText":"Trommle bei Schlägel-Noten möglichst schnell, um dir viele Punkte zu sichern!",
+ "germanFontType":1,
+ "spanishText":"Toca las notas de mazo rápidamente\npara conseguir montones de puntos.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Toca las notas de mazo rápidamente\npara conseguir montones de puntos.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Batuque rapidamente nas notas de marreta para ganhar muitos pontos!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips010",
+ "englishUsText":"Songs with Diverge notes have points\nwhere the number and type of notes changes.",
+ "englishUsFontType":1,
+ "frenchText":"Dans les chansons avec des notes divergentes,\nle nombre et le type de notes peuvent changer.",
+ "frenchFontType":1,
+ "italianText":"Nelle canzoni con note divergenti ci sono\npunti in cui il numero e il tipo di note varia.",
+ "italianFontType":1,
+ "germanText":"Songs mit Abweichungs-Noten haben Stellen,\nan denen sich Zahl und Typ der Noten ändern.",
+ "germanFontType":1,
+ "spanishText":"Las canciones con notas divergentes tienen\npartes en que el número y tipo de notas cambian.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Las canciones con notas divergentes tienen\npartes en que el número y tipo de notas cambian.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Músicas com notas divergentes têm partes\nonde o número e o tipo de notas mudam.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips029",
+ "englishUsText":"You can also use the sub-menu\nto choose Training Mode!",
+ "englishUsFontType":1,
+ "frenchText":"Tu peux également utiliser le sous-menu\npour choisir le mode Entraînement !",
+ "frenchFontType":1,
+ "italianText":"Dal sottomenu è anche possibile selezionare\nla modalità Allenamento!",
+ "italianFontType":1,
+ "germanText":"Du kannst im Untermenü auch den\nTrainingsmodus wählen!",
+ "germanFontType":1,
+ "spanishText":"Además, puedes usar el submenú\npara elegir el modo Entrenamiento.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Además, puedes usar el submenú\npara elegir el modo Entrenamiento.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Você também pode usar o submenu\npara escolher o modo de treino!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips024",
+ "englishUsText":"Press □ when choosing a difficulty\nto see that song’s bingo card!",
+ "englishUsFontType":1,
+ "frenchText":"Appuie sur □ en choisissant une difficulté\npour voir la carte de bingo de la chanson !",
+ "frenchFontType":1,
+ "italianText":"Quando selezioni il livello di difficoltà,\npremi □ per vedere la scheda bingo della canzone!",
+ "italianFontType":1,
+ "germanText":"Drücke bei der Wahl des Schwierigkeitsgrads □,\num dir die Bingokarte des Songs anzusehen!",
+ "germanFontType":1,
+ "spanishText":"Pulsa □ al elegir una dificultad\npara ver el cartón de bingo de esa canción.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Oprime □ al elegir una dificultad para\nver el cartón de bingo de esa canción.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Aperte □ ao escolher uma dificuldade\npara ver a cartela de bingo da música!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips030",
+ "englishUsText":"Select Best Replay in the sub-menu\nto compete against your own best score!",
+ "englishUsFontType":1,
+ "frenchText":"Choisis Meilleure rediffusion dans le sous-menu\npour affronter ton propre meilleur score !",
+ "frenchFontType":1,
+ "italianText":"Seleziona Miglior prova dal sottomenu\nper competere contro il tuo punteggio record!",
+ "italianFontType":1,
+ "germanText":"Wähle \"Bestleistung wiederholen\" im Untermenü,\num deinen Highscore zu schlagen!",
+ "germanFontType":1,
+ "spanishText":"Elige Mejor repetición en el submenú\npara competir contra tu mejor puntuación.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Elige Mejor repetición en el submenú\npara competir contra tu mejor puntuación.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Selecione melhor replay no submenu\npara competir contra a sua própria melhor pontuação!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips017",
+ "englishUsText":"Press △ when selecting a difficulty\nto set various options.",
+ "englishUsFontType":1,
+ "frenchText":"Appuie sur △ en choisissant une difficulté\npour paramétrer plusieurs options.",
+ "frenchFontType":1,
+ "italianText":"Quando selezioni il livello di difficoltà,\npremi △ per impostare varie opzioni.",
+ "italianFontType":1,
+ "germanText":"Drücke bei der Wahl des Schwierigkeitsgrads △,\num verschiedene Optionen festzulegen.",
+ "germanFontType":1,
+ "spanishText":"Al seleccionar una dificultad, pulsa △\npara configurar diversas opciones.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Al seleccionar una dificultad, oprime △\npara configurar diversas opciones.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Aperte △ ao selecionar uma dificuldade\npara determinar diversas opções.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips018",
+ "englishUsText":"The Shin-Uchi scoring method\ndisregards combos entirely.",
+ "englishUsFontType":1,
+ "frenchText":"La méthode de notation Shin-Uchi\nignore complètement les combos.",
+ "frenchFontType":1,
+ "italianText":"Il sistema di punteggio Shin-Uchi\nnon tiene conto delle combo.",
+ "italianFontType":1,
+ "germanText":"Beim Shin-Uchi-Bewertungssystem spielen\nKombos keine Rolle.",
+ "germanFontType":1,
+ "spanishText":"El método de puntuación Shin-Uchi\ndescarta los combos por completo.",
+ "spanishFontType":1,
+ "neutralSpanishText":"El método de puntuación Shin-Uchi\ndescarta los combos por completo.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"O método de pontuação Shin-Uchi\ndesconsidera totalmente combos.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips019",
+ "englishUsText":"Special - Crash Course lets you start over\nautomatically if you miss a note.",
+ "englishUsFontType":1,
+ "frenchText":"Le Cours intensif peut te faire recommencer\nautomatiquement si tu rates une note.",
+ "frenchFontType":1,
+ "italianText":"Con Speciale - Corso intensivo si ricomincia\nautomaticamente daccapo se si salta una nota.",
+ "italianFontType":1,
+ "germanText":"Mit \"Spezial - Crash-Kurs\" kannst du automatisch von vorne anfangen,\nwenn du eine Note verpasst.",
+ "germanFontType":1,
+ "spanishText":"Especial - Curso intensivo te permite empezar\nde nuevo automáticamente si fallas una nota.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Especial - Curso intensivo te permite empezar\nde nuevo automáticamente si fallas una nota.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Especial - Intensivo permite que você reinicie\nautomaticamente se perder uma nota.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips015",
+ "englishUsText":"Press △ when selecting a song\nto open the sub-menu.",
+ "englishUsFontType":1,
+ "frenchText":"Appuie sur △ en choisissant une chanson\npour ouvrir le sous-menu.",
+ "frenchFontType":1,
+ "italianText":"Quando selezioni una canzone, premi △\nper accedere al sottomenu.",
+ "italianFontType":1,
+ "germanText":"Drücke bei der Song-Auswahl △,\num das Untermenü aufzurufen.",
+ "germanFontType":1,
+ "spanishText":"Pulsa △ al elegir una canción\npara abrir el submenú.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Oprime △ al elegir una canción\npara abrir el submenú.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Aperte △ ao selecionar uma música\npara abrir o submenu.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips016",
+ "englishUsText":"Use the sub-menu’s Sort Filter setting\nto choose which songs are shown.",
+ "englishUsFontType":1,
+ "frenchText":"Utilise les filtres de tri du sous-menu\npour choisir quelles chansons sont visibles.",
+ "frenchFontType":1,
+ "italianText":"Usa la funzione Filtra del sottomenu\nper scegliere le canzoni da mostrare.",
+ "italianFontType":1,
+ "germanText":"Nutze den Filter des Untermenüs,\num zu bestimmen, welche Songs angezeigt werden.",
+ "germanFontType":1,
+ "spanishText":"Usa los filtros del submenú\npara elegir qué canciones se muestran.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Usa los filtros del submenú\npara elegir qué canciones se muestran.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Use a opção de Organizar Filtro do submenu\npara determinar que músicas aparecem.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips011",
+ "englishUsText":"Songs with a character icon on the Select Song screen\ncan be played with guest characters!",
+ "englishUsFontType":1,
+ "frenchText":"Tu peux jouer aux chansons dotées d'une icône\nde personnage avec des personnages invités !",
+ "frenchFontType":1,
+ "italianText":"Le canzoni con l'icona di un personaggio\npossono essere affrontate insieme a un ospite!",
+ "italianFontType":1,
+ "germanText":"Songs mit einem Charaktersymbol können zusammen\nmit Gast-Charakteren gespielt werden!",
+ "germanFontType":1,
+ "spanishText":"Las canciones con un icono de personaje\nse pueden tocar con personajes invitados.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Las canciones con un icono de personaje\nse pueden tocar con personajes invitados.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Músicas com ícone de personagem na tela de selecionar música\npodem ser jogadas com personagens convidados!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips012",
+ "englishUsText":"Press □ at \"Select Song\" to add\nthe song to your favorites.",
+ "englishUsFontType":1,
+ "frenchText":"Appuie sur □ dans le choix de chanson\npour l'ajouter à tes favorites.",
+ "frenchFontType":1,
+ "italianText":"In Selez. canzone, premi □\nper aggiungerla alle canzoni preferite.",
+ "italianFontType":1,
+ "germanText":"Drücke bei der Song-Auswahl □,\num den Song als Favoriten zu markieren.",
+ "germanFontType":1,
+ "spanishText":"Pulsa □ en \"Elegir canción\"\npara añadirla a tus favoritos.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Oprime arriba al elegir una canción\npara añadirla a tus favoritos.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Aperte para cima ao selecionar uma música\npara adicioná-la aos seus favoritos.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips028",
+ "englishUsText":"Select the Friend genre to play the last song\nthat a friend played, together!",
+ "englishUsFontType":1,
+ "frenchText":"Choisis le genre Ami pour jouer\nla dernière chanson jouée avec un ami !",
+ "frenchFontType":1,
+ "italianText":"Seleziona il genere Amico per suonare\nl'ultima canzone suonata insieme a un amico!",
+ "italianFontType":1,
+ "germanText":"Wähle den Freunde-Modus,\num den letzten gemeinsamen Song zu spielen!",
+ "germanFontType":1,
+ "spanishText":"Selecciona el género Amigo para tocar la\núltima canción que tocaste con un amigo.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Selecciona el género Amigo para tocar la\núltima canción que tocaste con un amigo.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Selecione o gênero Amigo para jogar a última música\nque um amigo jogou em dupla!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips002",
+ "englishUsText":"Use both hands for large notes to get extra points!",
+ "englishUsFontType":1,
+ "frenchText":"Utilise tes deux mains pour les grosses notes\nafin de marquer plus de points !",
+ "frenchFontType":1,
+ "italianText":"Usa entrambe le mani per le note grandi\nper ottenere punti extra!",
+ "italianFontType":1,
+ "germanText":"Benutze für große Noten beide Hände, um dir Extrapunkte zu sichern!",
+ "germanFontType":1,
+ "spanishText":"¡Usa ambas manos para las notas grandes\ny consigue puntos adicionales!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Usa ambas manos para las notas grandes\ny consigue puntos adicionales!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Use as duas mãos para notas grande para obter pontos extra!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips003",
+ "englishUsText":"When you see yellow notes, just keep drumming!",
+ "englishUsFontType":1,
+ "frenchText":"Lorsque tu vois des notes jaunes,\ncontinue à tambouriner !",
+ "frenchFontType":1,
+ "italianText":"Se vedi delle note gialle, colpisci il tamburo senza fermarti!",
+ "italianFontType":1,
+ "germanText":"Siehst du gelbe Noten, trommel einfach weiter!",
+ "germanFontType":1,
+ "spanishText":"¡Cuando veas notas amarillas, sigue tocando!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Cuando veas notas amarillas, sigue tocando!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ao ver notas amarelas, continue batucando!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips004",
+ "englishUsText":"When you see balloon or mallet notes,\ngo for a rapid drumroll!",
+ "englishUsFontType":1,
+ "frenchText":"Lorsque tu vois des notes ballon ou maillet,\neffectue un roulement de tambour rapide !",
+ "frenchFontType":1,
+ "italianText":"Se vedi note a palloncino o a martello\nesegui un veloce rullo di tamburo!",
+ "italianFontType":1,
+ "germanText":"Siehst du Ballon- oder Schlägel-Noten,\nmach einen schnellen Trommelwirbel!",
+ "germanFontType":1,
+ "spanishText":"Cuando veas notas con un mazo o globo,\n¡haz un redoble rápido!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cuando veas notas con un mazo o globo,\n¡haz un redoble rápido!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ao ver notas de balão ou marreta,\nfaça rufos rápidos de tambor!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips020",
+ "englishUsText":"Use Support if you need help beating the game!",
+ "englishUsFontType":1,
+ "frenchText":"Utilise le Soutien si tu as besoin d'aide\npour progresser dans le jeu !",
+ "frenchFontType":1,
+ "italianText":"Se hai bisogno di aiuto per completare\nil gioco, usa Assistenza!",
+ "italianFontType":1,
+ "germanText":"Nutze \"Unterstützung\", wenn du im Spiel nicht weiterkommst!",
+ "germanFontType":1,
+ "spanishText":"Usa Apoyo si necesitas\nayuda para ganar la partida.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Usa Apoyo si necesitas\nayuda para ganar la partida.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Use Suporte se precisa de ajudar para vencer o jogo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips021",
+ "englishUsText":"Support Lv1 makes notes more lenient.",
+ "englishUsFontType":1,
+ "frenchText":"Le Soutien niv 1 rend la notation moins sévère.",
+ "frenchFontType":1,
+ "italianText":"Con Assistenza Liv. 1 la valutazione\ndel tempismo è più clemente.",
+ "italianFontType":1,
+ "germanText":"Unterstützung St. 1 macht die Notenbewertung weniger streng.",
+ "germanFontType":1,
+ "spanishText":"Apoyo de nv1 hace que\nlas notas sean menos rigurosas.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Apoyo de nv1 hace que\nlas notas sean menos rigurosas.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Suporte Nv1 torna as notas mais flexíveis.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips022",
+ "englishUsText":"Support Lv2 makes DON and KA\nrespond to all buttons equally.",
+ "englishUsFontType":1,
+ "frenchText":"Le Soutien niv 2 ignore sur quelle touche\ntu appuies pour faire un DON ou un KA.",
+ "frenchFontType":1,
+ "italianText":"Con Assistenza Liv. 2 non c'è più alcuna\ndifferenza tra le note DON e KA.",
+ "italianFontType":1,
+ "germanText":"Bei Unterstützung St. 2 reagieren DON und KA\nauf alle Tasten.",
+ "germanFontType":1,
+ "spanishText":"Apoyo de nv2 hace que DON y KA\nrespondan igual a todos los botones.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Apoyo de nv2 hace que DON y KA\nrespondan igual a todos los botones.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Suporte Nv2: DON e KA respondem\nda mesma forma a todos os botões.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips023",
+ "englishUsText":"Support Lv3 stops your Clear gauge\nfrom going down if you miss a note.",
+ "englishUsFontType":1,
+ "frenchText":"Le Soutien niv 3 empêche ta jauge de descendre\nsi jamais tu rates une note.",
+ "frenchFontType":1,
+ "italianText":"Con Assistenza Liv. 3 l'indicatore dell'obietti-\nvo non si riduce in caso di errore.",
+ "italianFontType":1,
+ "germanText":"Bei Unterstützung St. 3 sinkt deine Abschlussanzeige nicht,\nwenn du eine Note verpasst.",
+ "germanFontType":1,
+ "spanishText":"Apoyo de nv3 impide que el indicador\nSuperada baje si fallas una nota.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Apoyo de nv3 impide que el indicador\nde Superado baje si fallas una nota.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Suporte Nv3: o medidor de Concluída\nnão esvazia se perder uma nota.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips005",
+ "englishUsText":"If your drum is out of sync,\ntry playing on Silent!",
+ "englishUsFontType":1,
+ "frenchText":"Si ton tambour est désynchronisé,\nessaie de jouer en Silence !",
+ "frenchFontType":1,
+ "italianText":"Se il tuo tamburo è fuori sincrono,\nprova a giocare in modalità silenziosa!",
+ "italianFontType":1,
+ "germanText":"Ist deine Trommel nicht synchron,\nstelle sie stumm!",
+ "germanFontType":1,
+ "spanishText":"Si no tienes el tambor sincronizado,\nprueba a jugar en Silencio.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Si no tienes el tambor sincronizado,\nprueba jugar en Silencio.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Se seu tambor não está sincronizado,\ntente jogar no Silêncio!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tips001",
+ "englishUsText":"Start the game by logging in with 2 players\nand you can both play together.",
+ "englishUsFontType":1,
+ "frenchText":"Lance le jeu en connectant deux joueurs et\nvous pourrez jouer l'un et l'autre ensemble.",
+ "frenchFontType":1,
+ "italianText":"Avvia la partita facendo effettuare il login\na due giocatori per giocare insieme.",
+ "italianFontType":1,
+ "germanText":"Melde zu Beginn 2 Spieler an,\num gemeinsam zu spielen.",
+ "germanFontType":1,
+ "spanishText":"Empieza el juego iniciando sesión con 2\njugadores y podréis jugar juntos.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Empieza el juego iniciando sesión con 2\njugadores y podrán jugar juntos.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Inicie o jogo ao iniciar sessão com 2 jogadores\ne vocês poderão jogar juntos.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_guide_auto",
+ "englishUsText":"Auto-Adjust Recognition",
+ "englishUsFontType":1,
+ "frenchText":"Ajustement automatique",
+ "frenchFontType":1,
+ "italianText":"Autoregolazione note",
+ "italianFontType":1,
+ "germanText":"Auto-Anpassungserkennung",
+ "germanFontType":1,
+ "spanishText":"Autoajustar reconocimiento",
+ "spanishFontType":1,
+ "neutralSpanishText":"Autoajustar reconocim.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Auto-ajustar reconhecim.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"config_se_test",
+ "englishUsText":"Sound Effect Test",
+ "englishUsFontType":1,
+ "frenchText":"Test effets sonores",
+ "frenchFontType":1,
+ "italianText":"Prova effetti sonori",
+ "italianFontType":1,
+ "germanText":"Soundeffekt-Test",
+ "germanFontType":1,
+ "spanishText":"Prueba de efectos sonido",
+ "spanishFontType":1,
+ "neutralSpanishText":"Prueba de efectos sonido",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Teste ef. sonoro",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_kitty_balloon01",
+ "englishUsText":"Yo!",
+ "englishUsFontType":1,
+ "frenchText":"Yo !",
+ "frenchFontType":1,
+ "italianText":"Ehi!",
+ "italianFontType":1,
+ "germanText":"Yo!",
+ "germanFontType":1,
+ "spanishText":"¡Eo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Eo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Aê!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_kitty_balloon02",
+ "englishUsText":"Ha!",
+ "englishUsFontType":1,
+ "frenchText":"Ha !",
+ "frenchFontType":1,
+ "italianText":"Ah!",
+ "italianFontType":1,
+ "germanText":"Ha!",
+ "germanFontType":1,
+ "spanishText":"¡Ja!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Ja!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ha!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_kitty_balloon03",
+ "englishUsText":"Yah!",
+ "englishUsFontType":1,
+ "frenchText":"Yah !",
+ "frenchFontType":1,
+ "italianText":"Yah!",
+ "italianFontType":1,
+ "germanText":"Jah!",
+ "germanFontType":1,
+ "spanishText":"¡Sí!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Sí!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Iêê!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_kitty_balloon04",
+ "englishUsText":"Whoo!",
+ "englishUsFontType":1,
+ "frenchText":"Wouhou !",
+ "frenchFontType":1,
+ "italianText":"Whoo!",
+ "italianFontType":1,
+ "germanText":"Wuhu!",
+ "germanFontType":1,
+ "spanishText":"¡Uooo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Uooo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Uhul!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_kitty_balloon07",
+ "englishUsText":"Ha ha ha!",
+ "englishUsFontType":1,
+ "frenchText":"Ha ha ha !",
+ "frenchFontType":1,
+ "italianText":"Ah ah ah!",
+ "italianFontType":1,
+ "germanText":"Hahaha!",
+ "germanFontType":1,
+ "spanishText":"¡Ja, ja, ja!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Ja, ja, ja!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ha ha ha!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_kitty_balloon08",
+ "englishUsText":"Tee hee!",
+ "englishUsFontType":1,
+ "frenchText":"Hé hé !",
+ "frenchFontType":1,
+ "italianText":"Tee hee!",
+ "italianFontType":1,
+ "germanText":"Hee-hee!",
+ "germanFontType":1,
+ "spanishText":"¡Ji, ji!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Ji, ji!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hi, hi!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_kitty_balloon09",
+ "englishUsText":"I did it!",
+ "englishUsFontType":1,
+ "frenchText":"J'ai réussi !",
+ "frenchFontType":1,
+ "italianText":"Ce l'ho fatta!",
+ "italianFontType":1,
+ "germanText":"Ich hab's geschafft!",
+ "germanFontType":1,
+ "spanishText":"¡Lo conseguí!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Lo conseguí!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Consegui!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_kitty_balloon10",
+ "englishUsText":"Hurray! Hurray!",
+ "englishUsFontType":1,
+ "frenchText":"Hourra ! Hourra !",
+ "frenchFontType":1,
+ "italianText":"Urrà! Urrà!",
+ "italianFontType":1,
+ "germanText":"Hurra! Hurra!",
+ "germanFontType":1,
+ "spanishText":"¡Hurra! ¡Hurra!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Hurra! ¡Hurra!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Viva! Viva!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_kitty_balloon05",
+ "englishUsText":"*sigh*",
+ "englishUsFontType":1,
+ "frenchText":"*soupir*",
+ "frenchFontType":1,
+ "italianText":"*sigh*",
+ "italianFontType":1,
+ "germanText":"*seufz*",
+ "germanFontType":1,
+ "spanishText":"*Suspiro*",
+ "spanishFontType":1,
+ "neutralSpanishText":"*Suspiro*",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"*suspiro*",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_kitty_balloon06",
+ "englishUsText":"Eeep!",
+ "englishUsFontType":1,
+ "frenchText":"Oups !",
+ "frenchFontType":1,
+ "italianText":"Eeep!",
+ "italianFontType":1,
+ "germanText":"Iahh!",
+ "germanFontType":1,
+ "spanishText":"¡Uuueee!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Uuueee!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Iiih!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_tekken_balloon01",
+ "englishUsText":"Yah!",
+ "englishUsFontType":1,
+ "frenchText":"Yah !",
+ "frenchFontType":1,
+ "italianText":"Yah!",
+ "italianFontType":1,
+ "germanText":"Jah!",
+ "germanFontType":1,
+ "spanishText":"¡Sí!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Sí!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Iêê!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_tekken_balloon02",
+ "englishUsText":"Hah!",
+ "englishUsFontType":1,
+ "frenchText":"Hah !",
+ "frenchFontType":1,
+ "italianText":"Ah!",
+ "italianFontType":1,
+ "germanText":"Hah!",
+ "germanFontType":1,
+ "spanishText":"¡Ja!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Ja!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hah!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_tekken_balloon03",
+ "englishUsText":"Hrn!",
+ "englishUsFontType":1,
+ "frenchText":"Hrn !",
+ "frenchFontType":1,
+ "italianText":"Hrn!",
+ "italianFontType":1,
+ "germanText":"Hrn!",
+ "germanFontType":1,
+ "spanishText":"¡Grr!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Grr!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Umm!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_tekken_balloon04",
+ "englishUsText":"What?!",
+ "englishUsFontType":1,
+ "frenchText":"Quoi ?!",
+ "frenchFontType":1,
+ "italianText":"Cosa?!?",
+ "italianFontType":1,
+ "germanText":"Was?!",
+ "germanFontType":1,
+ "spanishText":"¡¿Qué?!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡¿Qué?!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"O quê?",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_tekken_balloon05",
+ "englishUsText":"Aargh!",
+ "englishUsFontType":1,
+ "frenchText":"Argh !",
+ "frenchFontType":1,
+ "italianText":"Aargh!",
+ "italianFontType":1,
+ "germanText":"Aargh!",
+ "germanFontType":1,
+ "spanishText":"¡Aargh!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Aargh!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Aargh!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_tekken_balloon06",
+ "englishUsText":"Guh!",
+ "englishUsFontType":1,
+ "frenchText":"Guh !",
+ "frenchFontType":1,
+ "italianText":"Guh!",
+ "italianFontType":1,
+ "germanText":"Uuh!",
+ "germanFontType":1,
+ "spanishText":"¡Uf!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Uf!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Agh!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_tekken_balloon07",
+ "englishUsText":"Got you!",
+ "englishUsFontType":1,
+ "frenchText":"Je te tiens !",
+ "frenchFontType":1,
+ "italianText":"Sto vincendo!",
+ "italianFontType":1,
+ "germanText":"Hab dich!",
+ "germanFontType":1,
+ "spanishText":"¡Te pillé!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Te atrapé!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Te peguei!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_tekken_balloon08",
+ "englishUsText":"This isn’t over!",
+ "englishUsFontType":1,
+ "frenchText":"Ce n'est pas fini !",
+ "frenchFontType":1,
+ "italianText":"Non è ancora finita!",
+ "italianFontType":1,
+ "germanText":"Das ist noch nicht vorbei!",
+ "germanFontType":1,
+ "spanishText":"¡Esto no se ha terminado!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Esto no se ha terminado!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Isto não acabou!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_tekken_balloon09",
+ "englishUsText":"Amateurish!",
+ "englishUsFontType":1,
+ "frenchText":"Amateur !",
+ "frenchFontType":1,
+ "italianText":"Dilettante!",
+ "italianFontType":1,
+ "germanText":"Wie amateurhaft!",
+ "germanFontType":1,
+ "spanishText":"¡Esto es de aficionado!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Esto es de aficionado!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Coisa de amador!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_tekken_balloon10",
+ "englishUsText":"Yaaah!",
+ "englishUsFontType":1,
+ "frenchText":"Yaaah !",
+ "frenchFontType":1,
+ "italianText":"Yaaah!",
+ "italianFontType":1,
+ "germanText":"Jaaah!",
+ "germanFontType":1,
+ "spanishText":"¡Sííí!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Sííí!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Iéé!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_dora_balloon01",
+ "englishUsText":"All right!",
+ "englishUsFontType":1,
+ "frenchText":"Très bien !",
+ "frenchFontType":1,
+ "italianText":"OK!",
+ "italianFontType":1,
+ "germanText":"Okay!",
+ "germanFontType":1,
+ "spanishText":"¡Muy bien!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Muy bien!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Isso aí!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_dora_balloon02",
+ "englishUsText":"Here goes!",
+ "englishUsFontType":1,
+ "frenchText":"C'est parti !",
+ "frenchFontType":1,
+ "italianText":"Ci siamo!",
+ "italianFontType":1,
+ "germanText":"Auf geht's!",
+ "germanFontType":1,
+ "spanishText":"¡Allá vamos!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Allá vamos!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Aí vai!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_dora_balloon03",
+ "englishUsText":"Go! Go!",
+ "englishUsFontType":1,
+ "frenchText":"Go ! Go !",
+ "frenchFontType":1,
+ "italianText":"Forza!",
+ "italianFontType":1,
+ "germanText":"Los! Los!",
+ "germanFontType":1,
+ "spanishText":"¡Venga, vamos!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Vamos, vamos!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vai! Vai!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_dora_balloon04",
+ "englishUsText":"Ah!",
+ "englishUsFontType":1,
+ "frenchText":"Ah !",
+ "frenchFontType":1,
+ "italianText":"Ah!",
+ "italianFontType":1,
+ "germanText":"Ah!",
+ "germanFontType":1,
+ "spanishText":"¡Ah!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Ah!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ah!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_dora_balloon05",
+ "englishUsText":"Uh oh.",
+ "englishUsFontType":1,
+ "frenchText":"Oh oh...",
+ "frenchFontType":1,
+ "italianText":"Oh-oh.",
+ "italianFontType":1,
+ "germanText":"Oh-oh.",
+ "germanFontType":1,
+ "spanishText":"Oh, oh.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Oh, oh.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Oh-ou.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_dora_balloon06",
+ "englishUsText":"Oh my.",
+ "englishUsFontType":1,
+ "frenchText":"Oh là là...",
+ "frenchFontType":1,
+ "italianText":"Oh cielo.",
+ "italianFontType":1,
+ "germanText":"Meine Güte.",
+ "germanFontType":1,
+ "spanishText":"Ay, vaya.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ay, caramba.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Minha nossa.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_dora_balloon07",
+ "englishUsText":"Yay!",
+ "englishUsFontType":1,
+ "frenchText":"Ouais !",
+ "frenchFontType":1,
+ "italianText":"Sì!",
+ "italianFontType":1,
+ "germanText":"Juhu!",
+ "germanFontType":1,
+ "spanishText":"¡Yupi!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Yupi!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Viva!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_dora_balloon08",
+ "englishUsText":"Heh heh heh.",
+ "englishUsFontType":1,
+ "frenchText":"Hé hé hé.",
+ "frenchFontType":1,
+ "italianText":"Eh eh eh.",
+ "italianFontType":1,
+ "germanText":"Hehehe.",
+ "germanFontType":1,
+ "spanishText":"Je, je, je.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Je, je, je.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Heh heh heh.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_dora_balloon09",
+ "englishUsText":"Nice!",
+ "englishUsFontType":1,
+ "frenchText":"Joli !",
+ "frenchFontType":1,
+ "italianText":"Wow!",
+ "italianFontType":1,
+ "germanText":"Prima!",
+ "germanFontType":1,
+ "spanishText":"¡Genial!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Genial!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Boa!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_dora_balloon10",
+ "englishUsText":"Hopter!",
+ "englishUsFontType":1,
+ "frenchText":"Hélico !",
+ "frenchFontType":1,
+ "italianText":"È l'ora del copter!",
+ "italianFontType":1,
+ "germanText":"Zeit für Hopter!",
+ "germanFontType":1,
+ "spanishText":"¡Es hora del gorrocóptero!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Es hora del helicóptero!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hora de pular!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_pac_balloon01",
+ "englishUsText":"Power...UP!",
+ "englishUsFontType":1,
+ "frenchText":"Puissance... À FOND !",
+ "frenchFontType":1,
+ "italianText":"Potenziamento!",
+ "italianFontType":1,
+ "germanText":"Volle ... KRAFT!",
+ "germanFontType":1,
+ "spanishText":"¡Potenciador...!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Potenciador...!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mais forte!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_miku_balloon01",
+ "englishUsText":"Yo!",
+ "englishUsFontType":1,
+ "frenchText":"Yo !",
+ "frenchFontType":1,
+ "italianText":"Ehi!",
+ "italianFontType":1,
+ "germanText":"Yo!",
+ "germanFontType":1,
+ "spanishText":"¡Eo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Eo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Aê!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_miku_balloon02",
+ "englishUsText":"Ha!",
+ "englishUsFontType":1,
+ "frenchText":"Ha !",
+ "frenchFontType":1,
+ "italianText":"Ah!",
+ "italianFontType":1,
+ "germanText":"Ha!",
+ "germanFontType":1,
+ "spanishText":"¡Ja!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Ja!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ha!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_miku_balloon03",
+ "englishUsText":"Yah!",
+ "englishUsFontType":1,
+ "frenchText":"Yah !",
+ "frenchFontType":1,
+ "italianText":"Yah!",
+ "italianFontType":1,
+ "germanText":"Jah!",
+ "germanFontType":1,
+ "spanishText":"¡Sí!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Sí!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Iêê!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_miku_balloon04",
+ "englishUsText":"Aaah!",
+ "englishUsFontType":1,
+ "frenchText":"Aaah !",
+ "frenchFontType":1,
+ "italianText":"Aaah!",
+ "italianFontType":1,
+ "germanText":"Aaah!",
+ "germanFontType":1,
+ "spanishText":"¡Aaah!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Aaah!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Aaah!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_miku_balloon05",
+ "englishUsText":"Huh?!",
+ "englishUsFontType":1,
+ "frenchText":"Hein ?!",
+ "frenchFontType":1,
+ "italianText":"Eh?",
+ "italianFontType":1,
+ "germanText":"Was?!",
+ "germanFontType":1,
+ "spanishText":"¡¿Eh?!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡¿Eh?!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hein?!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_miku_balloon06",
+ "englishUsText":"No way!",
+ "englishUsFontType":1,
+ "frenchText":"Pas possible !",
+ "frenchFontType":1,
+ "italianText":"Pazzesco!",
+ "italianFontType":1,
+ "germanText":"Vergiss es!",
+ "germanFontType":1,
+ "spanishText":"¡Ni hablar!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Ni hablar!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Não creio!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_miku_balloon07",
+ "englishUsText":"Steady!",
+ "englishUsFontType":1,
+ "frenchText":"Du calme !",
+ "frenchFontType":1,
+ "italianText":"Calma!",
+ "italianFontType":1,
+ "germanText":"Ganz ruhig!",
+ "germanFontType":1,
+ "spanishText":"¡Sigue!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Sigue!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Preparar!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_miku_balloon08",
+ "englishUsText":"Not over yet!",
+ "englishUsFontType":1,
+ "frenchText":"C'est pas encore fini !",
+ "frenchFontType":1,
+ "italianText":"Non è ancora finita!",
+ "italianFontType":1,
+ "germanText":"Noch ist es nicht vorbei!",
+ "germanFontType":1,
+ "spanishText":"¡Esto no se ha acabado!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Esto todavía no se acaba!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ainda não acabou!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_miku_balloon09",
+ "englishUsText":"Okay!",
+ "englishUsFontType":1,
+ "frenchText":"OK !",
+ "frenchFontType":1,
+ "italianText":"OK!",
+ "italianFontType":1,
+ "germanText":"Okay!",
+ "germanFontType":1,
+ "spanishText":"¡Vale!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Ok!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tá bom!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_miku_balloon10",
+ "englishUsText":"Here goes!",
+ "englishUsFontType":1,
+ "frenchText":"C'est parti !",
+ "frenchFontType":1,
+ "italianText":"Ci siamo!",
+ "italianFontType":1,
+ "germanText":"Auf geht's!",
+ "germanFontType":1,
+ "spanishText":"¡Allá vamos!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Allá vamos!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Aí vai!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"enso_type_normal",
+ "englishUsText":"Normal Play",
+ "englishUsFontType":1,
+ "frenchText":"Partie normale",
+ "frenchFontType":1,
+ "italianText":"Impostazioni standard",
+ "italianFontType":1,
+ "germanText":"Normales Spiel",
+ "germanFontType":1,
+ "spanishText":"Juego normal",
+ "spanishFontType":1,
+ "neutralSpanishText":"Juego normal",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Jogo normal",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"enso_type_training",
+ "englishUsText":"Training",
+ "englishUsFontType":1,
+ "frenchText":"Entraînement",
+ "frenchFontType":1,
+ "italianText":"Allenamento",
+ "italianFontType":1,
+ "germanText":"Training",
+ "germanFontType":1,
+ "spanishText":"Entrenamiento",
+ "spanishFontType":1,
+ "neutralSpanishText":"Entrenamiento",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Treino",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"enso_type_replay",
+ "englishUsText":"Best Replay",
+ "englishUsFontType":1,
+ "frenchText":"Meilleure rediffusion",
+ "frenchFontType":1,
+ "italianText":"Miglior prova",
+ "italianFontType":1,
+ "germanText":"Bestleistung wiederholen",
+ "germanFontType":1,
+ "spanishText":"Mejor repetición",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mejor repetición",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Melhor replay",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"submenu_title_enso",
+ "englishUsText":"Play Settings",
+ "englishUsFontType":1,
+ "frenchText":"Paramètres de jeu",
+ "frenchFontType":1,
+ "italianText":"Impostaz. di gioco",
+ "italianFontType":1,
+ "germanText":"Spieleinstellungen",
+ "germanFontType":1,
+ "spanishText":"Ajustes de tocar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ajustes de tocar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Config. de jogo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"submenu_title_sort",
+ "englishUsText":"Sort Filter Settings",
+ "englishUsFontType":1,
+ "frenchText":"Paramètres de tri",
+ "frenchFontType":1,
+ "italianText":"Impostazioni filtri",
+ "italianFontType":1,
+ "germanText":"Filterein. sortieren",
+ "germanFontType":1,
+ "spanishText":"Ajustes de filtros",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ajustes de filtros",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Config. de filtros",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"submenu_title_display",
+ "englishUsText":"Display Settings",
+ "englishUsFontType":1,
+ "frenchText":"Paramètres d'affichage",
+ "frenchFontType":1,
+ "italianText":"Impostazioni video",
+ "italianFontType":1,
+ "germanText":"Anzeigeeinstellungen",
+ "germanFontType":1,
+ "spanishText":"Ajustes visualización",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ajustes de visualización",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Config. de exibição",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"sort_genre",
+ "englishUsText":"Genre",
+ "englishUsFontType":1,
+ "frenchText":"Genre",
+ "frenchFontType":1,
+ "italianText":"Genere",
+ "italianFontType":1,
+ "germanText":"Genre",
+ "germanFontType":1,
+ "spanishText":"Género",
+ "spanishFontType":1,
+ "neutralSpanishText":"Género",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Gênero",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"sort_star",
+ "englishUsText":"Number of ★",
+ "englishUsFontType":1,
+ "frenchText":"Nombre de ★",
+ "frenchFontType":1,
+ "italianText":"Numero di ★",
+ "italianFontType":1,
+ "germanText":"Zahl der ★",
+ "germanFontType":1,
+ "spanishText":"Número de ★",
+ "spanishFontType":1,
+ "neutralSpanishText":"Número de ★",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Número de ★",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"course_all",
+ "englishUsText":"All",
+ "englishUsFontType":1,
+ "frenchText":"Tout",
+ "frenchFontType":1,
+ "italianText":"Tutto",
+ "italianFontType":1,
+ "germanText":"Alle",
+ "germanFontType":1,
+ "spanishText":"Todo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Todo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Todas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"submenu_filter_favorite",
+ "englishUsText":"Show Favorites Only.",
+ "englishUsFontType":1,
+ "frenchText":"Ne montrer que les favorites",
+ "frenchFontType":1,
+ "italianText":"Mostra solo prefer.",
+ "italianFontType":1,
+ "germanText":"Nur Favoriten anz.",
+ "germanFontType":1,
+ "spanishText":"Mostrar solo favoritas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mostrar solo favoritas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mostrar só favoritas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"submenu_filter_clear",
+ "englishUsText":"Clear Status",
+ "englishUsFontType":1,
+ "frenchText":"Statut Terminé",
+ "frenchFontType":1,
+ "italianText":"Stato di complet.",
+ "italianFontType":1,
+ "germanText":"Abschlussstatus",
+ "germanFontType":1,
+ "spanishText":"Superación",
+ "spanishFontType":1,
+ "neutralSpanishText":"Superación",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conclusão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"submenu_sort_type",
+ "englishUsText":"Order",
+ "englishUsFontType":1,
+ "frenchText":"Ordre",
+ "frenchFontType":1,
+ "italianText":"Ordine",
+ "italianFontType":1,
+ "germanText":"Reihenfolge",
+ "germanFontType":1,
+ "spanishText":"Orden",
+ "spanishFontType":1,
+ "neutralSpanishText":"Orden",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ordem",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"submenu_course",
+ "englishUsText":"Difficulty",
+ "englishUsFontType":1,
+ "frenchText":"Difficulté",
+ "frenchFontType":1,
+ "italianText":"Difficoltà",
+ "italianFontType":1,
+ "germanText":"Schwierigkeitsgrad",
+ "germanFontType":1,
+ "spanishText":"Dificultad",
+ "spanishFontType":1,
+ "neutralSpanishText":"Dificultad",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Dificuldade",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"setting_on",
+ "englishUsText":"On",
+ "englishUsFontType":1,
+ "frenchText":"Activé",
+ "frenchFontType":1,
+ "italianText":"Sì",
+ "italianFontType":1,
+ "germanText":"An",
+ "germanFontType":1,
+ "spanishText":"Sí",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sí",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ativado",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"disp_on",
+ "englishUsText":"Show",
+ "englishUsFontType":1,
+ "frenchText":"Montrer",
+ "frenchFontType":1,
+ "italianText":"Mostra",
+ "italianFontType":1,
+ "germanText":"Anzeigen",
+ "germanFontType":1,
+ "spanishText":"Mostrar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mostrar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mostrar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"setting_off",
+ "englishUsText":"Off",
+ "englishUsFontType":1,
+ "frenchText":"Désactivé",
+ "frenchFontType":1,
+ "italianText":"No",
+ "italianFontType":1,
+ "germanText":"Aus",
+ "germanFontType":1,
+ "spanishText":"No",
+ "spanishFontType":1,
+ "neutralSpanishText":"No",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Desativado",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"disp_off",
+ "englishUsText":"Hide",
+ "englishUsFontType":1,
+ "frenchText":"Masquer",
+ "frenchFontType":1,
+ "italianText":"Nascondi",
+ "italianFontType":1,
+ "germanText":"Verbergen",
+ "germanFontType":1,
+ "spanishText":"Ocultar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ocultar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ocultar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"submenu_disp_hiscore",
+ "englishUsText":"Show High Score.",
+ "englishUsFontType":1,
+ "frenchText":"Montrer meilleur score",
+ "frenchFontType":1,
+ "italianText":"Mostra record",
+ "italianFontType":1,
+ "germanText":"Highscore anzeigen",
+ "germanFontType":1,
+ "spanishText":"Mostrar récord",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mostrar récord",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mostrar recorde",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"submenu_disp_bingo",
+ "englishUsText":"Show Mission Bingo.",
+ "englishUsFontType":1,
+ "frenchText":"Montrer mission de bingo",
+ "frenchFontType":1,
+ "italianText":"Mostra missioni bingo",
+ "italianFontType":1,
+ "germanText":"Missions-Bingo anz.",
+ "germanFontType":1,
+ "spanishText":"Mostrar misión del bingo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mostrar misión del bingo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mostrar bingo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"dualplay_add_txt",
+ "englishUsText":"*Two-player sessions use Normal Play settings.",
+ "englishUsFontType":1,
+ "frenchText":"*Les sessions à deux joueurs utilisent les paramètres de partie normale.",
+ "frenchFontType":1,
+ "italianText":"*Nelle sessioni a due giocatori, si usano le Impostazioni standard.",
+ "italianFontType":1,
+ "germanText":"*Bei 2 Spielern gelten die Einstellungen für \"Normales Spiel\".",
+ "germanFontType":1,
+ "spanishText":"*Las sesiones de dos jugadores usan los ajustes del juego normal.",
+ "spanishFontType":1,
+ "neutralSpanishText":"*Las sesiones de dos jugadores usan los ajustes del juego normal.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"*Sessões de dois jogadores usam configurações de jogo normal.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"enso_type_txt3",
+ "englishUsText":"Practice any portion of any song you like using fast-forward and fast-rewind.",
+ "englishUsFontType":1,
+ "frenchText":"Entraîne-toi sur une chanson grâce aux fonctions d'avance et de retour rapide.",
+ "frenchFontType":1,
+ "italianText":"Concentrati su un pezzo di una canzone usando avanti veloce e indietro veloce.",
+ "italianFontType":1,
+ "germanText":"Mit Vor- und Zurückspulen kannst du beliebige Stellen im Song üben.",
+ "germanFontType":1,
+ "spanishText":"Practica cualquier parte de una canción con avance y retroceso rápidos.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Practica cualquier parte de una canción con avance y retroceso rápidos.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pratique qualquer parte de qualquer música podendo avançar e retroceder.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"enso_type_txt2",
+ "englishUsText":"Have your own ghost join you as a second player!",
+ "englishUsFontType":1,
+ "frenchText":"Fais intervenir ton propre fantôme comme deuxième joueur !",
+ "frenchFontType":1,
+ "italianText":"Usa i tuoi dati fantasma come secondo giocatore!",
+ "italianFontType":1,
+ "germanText":"Dein Geist tritt als zweiter Spieler an!",
+ "germanFontType":1,
+ "spanishText":"Haz que tu fantasma sea el segundo jugador.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Haz que tu fantasma sea el segundo jugador.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Seu próprio fantasma se junta a você como outro jogador!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"filter_no_star_txt",
+ "englishUsText":"Show only favorites.",
+ "englishUsFontType":1,
+ "frenchText":"Ne montrer que les favorites",
+ "frenchFontType":1,
+ "italianText":"Mostra solo preferite",
+ "italianFontType":1,
+ "germanText":"Nur Favoriten",
+ "germanFontType":1,
+ "spanishText":"Solo favoritas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Solo favoritas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mostrar só favoritas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"filter_only_star_txt",
+ "englishUsText":"Show only favorites.",
+ "englishUsFontType":1,
+ "frenchText":"Ne montrer que les favorites",
+ "frenchFontType":1,
+ "italianText":"Mostra solo preferite",
+ "italianFontType":1,
+ "germanText":"Nur Favoriten",
+ "germanFontType":1,
+ "spanishText":"Solo favoritas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Solo favoritas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mostrar só favoritas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"filter_no_txt",
+ "englishUsText":"Filter by clear status.",
+ "englishUsFontType":1,
+ "frenchText":"Trier par Terminé",
+ "frenchFontType":1,
+ "italianText":"Filtra per completamento",
+ "italianFontType":1,
+ "germanText":"Nach Abschluss filtern",
+ "germanFontType":1,
+ "spanishText":"Filtrar por superación",
+ "spanishFontType":1,
+ "neutralSpanishText":"Filtrar por superación",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Filtrar por conclusão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"hiscore_off_txt",
+ "englishUsText":"Show high score when selecting songs.",
+ "englishUsFontType":1,
+ "frenchText":"Montrer le meilleur score pendant le choix d'une chanson",
+ "frenchFontType":1,
+ "italianText":"Mostra record durante la selezione delle canzoni",
+ "italianFontType":1,
+ "germanText":"Highscore bei Songauswahl anzeigen",
+ "germanFontType":1,
+ "spanishText":"Mostrar récord al elegir canciones",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mostrar récord al elegir canciones",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mostrar recorde ao selecionar músicas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"hiscore_sin_txt",
+ "englishUsText":"Show Shin-Uchi high score",
+ "englishUsFontType":1,
+ "frenchText":"Montrer le meilleur score Shin-Uchi",
+ "frenchFontType":1,
+ "italianText":"Mostra record Shin-Uchi",
+ "italianFontType":1,
+ "germanText":"Shin-Uchi-Highscore anz.",
+ "germanFontType":1,
+ "spanishText":"Mostrar récord de Shin-Uchi",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mostrar récord de Shin-Uchi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mostrar recorde Shin-Uchi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"sort_genre_txt",
+ "englishUsText":"Sort by genre.",
+ "englishUsFontType":1,
+ "frenchText":"Trier par genre",
+ "frenchFontType":1,
+ "italianText":"Ordina per genere",
+ "italianFontType":1,
+ "germanText":"Nach Genre sortieren",
+ "germanFontType":1,
+ "spanishText":"Ordenar por género",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ordenar por género",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ordenar por gênero",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"sort_star_txt",
+ "englishUsText":"Ascending ★ Order.",
+ "englishUsFontType":1,
+ "frenchText":"★ en ordre croissant",
+ "frenchFontType":1,
+ "italianText":"Per ★ (ascendente)",
+ "italianFontType":1,
+ "germanText":"Aufsteig. ★-Reihenfolge",
+ "germanFontType":1,
+ "spanishText":"Orden ascendente ★",
+ "spanishFontType":1,
+ "neutralSpanishText":"Orden ascendente ★",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ordem de ★ ascendente",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"course_mania_txt",
+ "englishUsText":"Make Extreme the default difficulty.",
+ "englishUsFontType":1,
+ "frenchText":"Extrême par défaut",
+ "frenchFontType":1,
+ "italianText":"Predefinito: Estremo",
+ "italianFontType":1,
+ "germanText":"\"Extrem\" als Standard",
+ "germanFontType":1,
+ "spanishText":"Extrema predeterminada",
+ "spanishFontType":1,
+ "neutralSpanishText":"Extrema predeterminada",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tornar extrema o padrão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"course_easy_txt",
+ "englishUsText":"Make Easy the default difficulty.",
+ "englishUsFontType":1,
+ "frenchText":"Facile par défaut",
+ "frenchFontType":1,
+ "italianText":"Predefinito: Facile",
+ "italianFontType":1,
+ "germanText":"\"Einfach\" als Standard",
+ "germanFontType":1,
+ "spanishText":"Fácil predeterminada",
+ "spanishFontType":1,
+ "neutralSpanishText":"Fácil predeterminada",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tornar fácil o padrão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"couse_all_txt",
+ "englishUsText":"Sort song difficulty using order and clear status.",
+ "englishUsFontType":1,
+ "frenchText":"Trie la difficulté en utilisant Ordre et Statut Terminé",
+ "frenchFontType":1,
+ "italianText":"Ordina le canzoni per difficoltà con ordine e completamento",
+ "italianFontType":1,
+ "germanText":"Song-Schwierigkeit nach Reihenfolge und Abschluss.",
+ "germanFontType":1,
+ "spanishText":"Clasifica la dificultad de canciones por orden y superación",
+ "spanishFontType":1,
+ "neutralSpanishText":"Clasifica la dificultad de canciones por orden y superación.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ordena a dificuldade da música por ordem e se já completou.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"course_normal_txt",
+ "englishUsText":"Make Normal the default difficulty.",
+ "englishUsFontType":1,
+ "frenchText":"Normal par défaut",
+ "frenchFontType":1,
+ "italianText":"Predefinito: Normale",
+ "italianFontType":1,
+ "germanText":"\"Normal\" als Standard",
+ "germanFontType":1,
+ "spanishText":"Normal predeterminada",
+ "spanishFontType":1,
+ "neutralSpanishText":"Normal predeterminada",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tornar normal o padrão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"course_hard_txt",
+ "englishUsText":"Make Hard the default difficulty.",
+ "englishUsFontType":1,
+ "frenchText":"Difficile par défaut",
+ "frenchFontType":1,
+ "italianText":"Predefinito: Difficile",
+ "italianFontType":1,
+ "germanText":"\"Schwer\" als Standard",
+ "germanFontType":1,
+ "spanishText":"Difícil predeterminada",
+ "spanishFontType":1,
+ "neutralSpanishText":"Difícil predeterminada",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tornar difícil o padrão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"sortfilter_add_txt",
+ "englishUsText":"*Cannot select Order or Cleared when difficulty is set to All.",
+ "englishUsFontType":1,
+ "frenchText":"*Impossible de choisir Ordre ou Terminé lorsque la difficulté est sur Tout.",
+ "frenchFontType":1,
+ "italianText":"*Impossibile selezionare Ordine o Complet. se la difficoltà è \"Tutte\".",
+ "italianFontType":1,
+ "germanText":"*Beim Schwierigktsgrd. \"Alle\" sind Reihenf. und Abgeschl. nicht wählbar.",
+ "germanFontType":1,
+ "spanishText":"*No se puede elegir Orden ni Superación cuando la dificultad es Todo.",
+ "spanishFontType":1,
+ "neutralSpanishText":"No se puede elegir \"Orden\" ni \"Superación\" cuando la dificultad es \"Todo\".",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"*Impossível selecionar Ordem ou Concluídas na dificuldade Todas.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"hiscore_nor_txt",
+ "englishUsText":"Show high score.",
+ "englishUsFontType":1,
+ "frenchText":"Montrer le meilleur score",
+ "frenchFontType":1,
+ "italianText":"Mostra record",
+ "italianFontType":1,
+ "germanText":"Highscore anzeigen",
+ "germanFontType":1,
+ "spanishText":"Mostrar récord",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mostrar récord",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mostrar recorde",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"traning_add_txt",
+ "englishUsText":"*Scores are not recorded for Training Mode.\nFurthermore, friends and guest characters are not available in this mode.",
+ "englishUsFontType":1,
+ "frenchText":"*Les scores ne sont pas enregistrés en mode Entraînement.\nDe plus, les amis et personnages invités ne sont pas disponibles dans ce mode.",
+ "frenchFontType":1,
+ "italianText":"*In Allenamento i punteggi non sono\nregistrati e amici e ospiti non sono disponibili.",
+ "italianFontType":1,
+ "germanText":"*Punkte werden im Trainingsmodus nicht erfasst.\nFreunde und Gast-Charaktere sind in diesem Modus nicht verfügbar.",
+ "germanFontType":1,
+ "spanishText":"En modo Entrenamiento no se guardan puntuaciones.\n*Además los amigos y los invitados no están disponibles en este modo.",
+ "spanishFontType":1,
+ "neutralSpanishText":"En modo Entrenamiento no se guardan puntuaciones.\n*Además los amigos y los invitados no están disponibles en este modo.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"*Pontuações não são gravadas no modo Treino.\nAlém disso, amigos e personagens convidados não são disponíveis nesse modo.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"best_replay_add_txt",
+ "englishUsText":"*Friends and guest characters are not available during Best Replay.",
+ "englishUsFontType":1,
+ "frenchText":"*Les amis et personnages invités sont indisponibles pour la meilleure rediffusion.",
+ "frenchFontType":1,
+ "italianText":"*Amici e ospiti non sono disponibili in Miglior prova.",
+ "italianFontType":1,
+ "germanText":"*Freunde und Gast-Char. bei \"Bestleistung wiederholen\" nicht verfügbar.",
+ "germanFontType":1,
+ "spanishText":"*Amigos y personajes invitados no están disponibles en Mejor repetición.",
+ "spanishFontType":1,
+ "neutralSpanishText":"*Amigos y personajes invitados no están disponibles en Mejor repetición.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"*Amigos e personagens convidados não são disponíveis em melhor replay.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"filter_not_clear_txt",
+ "englishUsText":"Show only non-cleared songs.",
+ "englishUsFontType":1,
+ "frenchText":"Ne montrer que les chansons non terminées",
+ "frenchFontType":1,
+ "italianText":"Mostra solo non compl.",
+ "italianFontType":1,
+ "germanText":"Nur nicht abgeschlossene Songs",
+ "germanFontType":1,
+ "spanishText":"Mostrar solo no superadas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mostrar solo no superadas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mostrar só não concluídas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"misbin_off_txt",
+ "englishUsText":"Show mission bingo status when selecting songs.",
+ "englishUsFontType":1,
+ "frenchText":"Montrer le statut de mission de bingo pendant le choix d'une chanson",
+ "frenchFontType":1,
+ "italianText":"Mostra stato missione bingo durante selezione canzoni",
+ "italianFontType":1,
+ "germanText":"Missions-Bingostatus bei Songauswahl anzeigen",
+ "germanFontType":1,
+ "spanishText":"Mostrar estado de misión de bingo al elegir canción",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mostrar estado de misión de bingo con canciones",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mostrar estado do bingo ao selecionar músicas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"misbin_on_txt",
+ "englishUsText":"Show mission bingo progress.",
+ "englishUsFontType":1,
+ "frenchText":"Montrer la progression de la mission de bingo",
+ "frenchFontType":1,
+ "italianText":"Mostra progressi missioni bingo",
+ "italianFontType":1,
+ "germanText":"Missions-Bingofortschritt anzeigen",
+ "germanFontType":1,
+ "spanishText":"Mostrar progreso de la misión del bingo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mostrar progreso de la misión del bingo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mostrar progresso do bingo de missões",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"filter_not_fullcombo_txt",
+ "englishUsText":"Show only songs that haven’t been fully comboed.",
+ "englishUsFontType":1,
+ "frenchText":"Ne montrer que les chansons n'ayant pas un combo max",
+ "frenchFontType":1,
+ "italianText":"Mostra solo non compl. con combo",
+ "italianFontType":1,
+ "germanText":"Nur Songs ohne vollständige Kombo",
+ "germanFontType":1,
+ "spanishText":"Mostrar solo canciones con combos incompletos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mostrar solo canciones con combos incompletos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mostrar só músicas sem combo completo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"filter_not_play_txt",
+ "englishUsText":"Show only unplayed songs.",
+ "englishUsFontType":1,
+ "frenchText":"Ne montrer que les chansons non jouées",
+ "frenchFontType":1,
+ "italianText":"Mostra solo mai provate",
+ "italianFontType":1,
+ "germanText":"Nur ungespielte Songs",
+ "germanFontType":1,
+ "spanishText":"Mostrar solo canciones sin tocar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mostrar solo canciones sin tocar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mostrar só não jogadas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"enso_type_txt1",
+ "englishUsText":"A normal play session. Play together with friends or guest characters!",
+ "englishUsFontType":1,
+ "frenchText":"Une session de jeu normale. Joue avec des amis ou des personnages invités !",
+ "frenchFontType":1,
+ "italianText":"Una sessione normale con amici o ospiti.",
+ "italianFontType":1,
+ "germanText":"Eine normale Session. Spiele mit Freunden oder Gast-Charakteren!",
+ "germanFontType":1,
+ "spanishText":"Una sesión de juego normal. Juega con tus amigos o personajes invitados",
+ "spanishFontType":1,
+ "neutralSpanishText":"Una sesión de juego normal. Juega con tus amigos o personajes invitados.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Uma sessão de jogo normal. Jogue com amigos ou personagens convidados!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"not_clear",
+ "englishUsText":"Not Cleared",
+ "englishUsFontType":1,
+ "frenchText":"Pas terminée",
+ "frenchFontType":1,
+ "italianText":"Non completata",
+ "italianFontType":1,
+ "germanText":"Nicht abgeschlossen",
+ "germanFontType":1,
+ "spanishText":"No superadas",
+ "spanishFontType":1,
+ "neutralSpanishText":"No superadas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Não concluída",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"not_fullcombo",
+ "englishUsText":"Not Full Comboed",
+ "englishUsFontType":1,
+ "frenchText":"Pas de combo max",
+ "frenchFontType":1,
+ "italianText":"Non compl. con combo",
+ "italianFontType":1,
+ "germanText":"Keine vollst. Kombo",
+ "germanFontType":1,
+ "spanishText":"Sin combos completos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sin combos completos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sem combo completo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"not_play",
+ "englishUsText":"Not Played",
+ "englishUsFontType":1,
+ "frenchText":"Pas jouée",
+ "frenchFontType":1,
+ "italianText":"Mai provata",
+ "italianFontType":1,
+ "germanText":"Nicht gespielt",
+ "germanFontType":1,
+ "spanishText":"No tocada",
+ "spanishFontType":1,
+ "neutralSpanishText":"No tocadas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Não jogada",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"hiscore_shinuchi",
+ "englishUsText":"Shin-Uchi high score",
+ "englishUsFontType":1,
+ "frenchText":"Meilleur score Shin-Uchi",
+ "frenchFontType":1,
+ "italianText":"Record Shin-Uchi",
+ "italianFontType":1,
+ "germanText":"Shin-Uchi-Highscore",
+ "germanFontType":1,
+ "spanishText":"Récord de Shin-Uchi",
+ "spanishFontType":1,
+ "neutralSpanishText":"Récord de Shin-Uchi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Recorde Shin-Uchi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"hiscore_normal",
+ "englishUsText":"Normal high score",
+ "englishUsFontType":1,
+ "frenchText":"Meilleur score normal",
+ "frenchFontType":1,
+ "italianText":"Record normale",
+ "italianFontType":1,
+ "germanText":"Normaler Highscore",
+ "germanFontType":1,
+ "spanishText":"Récord normal",
+ "spanishFontType":1,
+ "neutralSpanishText":"Récord normal",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Recorde normal",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"result_bingo_koban",
+ "englishUsText":"GET!",
+ "englishUsFontType":1,
+ "frenchText":"OBTENU !",
+ "frenchFontType":1,
+ "italianText":"ORA!",
+ "italianFontType":1,
+ "germanText":"HOLEN!",
+ "germanFontType":1,
+ "spanishText":"¡CONSEGUIR!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡CONSEGUIR!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"CONSEGUIU!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"session_success",
+ "englishUsText":"Fantastic Session!",
+ "englishUsFontType":1,
+ "frenchText":"Super session !",
+ "frenchFontType":1,
+ "italianText":"Grande sessione!",
+ "italianFontType":1,
+ "germanText":"Tolle Session!",
+ "germanFontType":1,
+ "spanishText":"¡Una sesión fantástica!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Una sesión fantástica!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sessão fantástica!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"fullcombo_success",
+ "englishUsText":"Successful Full Combo!",
+ "englishUsFontType":1,
+ "frenchText":"Combo max réussi !",
+ "frenchFontType":1,
+ "italianText":"Combo unica!",
+ "italianFontType":1,
+ "germanText":"Erfolg. vollst. Kombo!",
+ "germanFontType":1,
+ "spanishText":"¡Combo completo logrado!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Combo completo logrado!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Combo completado!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rankup_success",
+ "englishUsText":"Rank Achieved!",
+ "englishUsFontType":1,
+ "frenchText":"Niveau gagné !",
+ "frenchFontType":1,
+ "italianText":"Rango ottenuto!",
+ "italianFontType":1,
+ "germanText":"Rang erreicht!",
+ "germanFontType":1,
+ "spanishText":"¡Rango alcanzado!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Rango alcanzado!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ranque alcançado!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"crown_gold",
+ "englishUsText":"Full Combo",
+ "englishUsFontType":1,
+ "frenchText":"Combo max",
+ "frenchFontType":1,
+ "italianText":"Combo unica",
+ "italianFontType":1,
+ "germanText":"Vollständige Kombo",
+ "germanFontType":1,
+ "spanishText":"Combo completo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Combo completo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Combo completo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"crown_silver",
+ "englishUsText":"Song Cleared",
+ "englishUsFontType":1,
+ "frenchText":"Chanson réussie",
+ "frenchFontType":1,
+ "italianText":"Canzone completata",
+ "italianFontType":1,
+ "germanText":"Song abgeschlossen",
+ "germanFontType":1,
+ "spanishText":"Canción superada",
+ "spanishFontType":1,
+ "neutralSpanishText":"Superar canción",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Música concluída",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"result",
+ "englishUsText":"Results",
+ "englishUsFontType":1,
+ "frenchText":"Résultats",
+ "frenchFontType":1,
+ "italianText":"Risultati",
+ "italianFontType":1,
+ "germanText":"Ergebnisse",
+ "germanFontType":1,
+ "spanishText":"Resultados",
+ "spanishFontType":1,
+ "neutralSpanishText":"Resultados",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Resultados",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"result_don_failure_high",
+ "englishUsText":"Too bad. You were really close!",
+ "englishUsFontType":1,
+ "frenchText":"Dommage. Tu n'étais vraiment pas loin !",
+ "frenchFontType":1,
+ "italianText":"Peccato. C'eri quasi.",
+ "italianFontType":1,
+ "germanText":"Zu schade. Es war echt knapp!",
+ "germanFontType":1,
+ "spanishText":"Qué pena. ¡Te faltaba muy poco!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Qué pena. ¡Te faltaba muy poco!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Que pena. Você chegou bem perto!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"result_don_failure_low",
+ "englishUsText":"Too bad... You’ll get it next time!",
+ "englishUsFontType":1,
+ "frenchText":"Dommage... Tu réussiras la prochaine fois !",
+ "frenchFontType":1,
+ "italianText":"Peccato. Alla prossima!",
+ "italianFontType":1,
+ "germanText":"Zu schade ... nächstes Mal dann!",
+ "germanFontType":1,
+ "spanishText":"¡Lástima... La próxima lo conseguirás!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Lástima... La próxima lo conseguirás.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Que pena... Na próxima vai!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"result_don_success_low",
+ "englishUsText":"Hurray! That was a great performance!",
+ "englishUsFontType":1,
+ "frenchText":"Hourra ! C'était une super performance !",
+ "frenchFontType":1,
+ "italianText":"Urrà! Grande prestazione!",
+ "italianFontType":1,
+ "germanText":"Hurra! Das war super!",
+ "germanFontType":1,
+ "spanishText":"¡Hurra! ¡Qué gran actuación!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Hurra! ¡Qué gran actuación!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Viva! Que ótimo desempenho!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"result_don_success_high",
+ "englishUsText":"You did it! A Full Combo!",
+ "englishUsFontType":1,
+ "frenchText":"Tu as réussi ! Combo max !",
+ "frenchFontType":1,
+ "italianText":"Wow! Una combo unica!",
+ "italianFontType":1,
+ "germanText":"Geschafft! Vollständige Kombo!",
+ "germanFontType":1,
+ "spanishText":"¡Síí! ¡Un combo completo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Sí! ¡Un combo completo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Uau! Um combo completo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"result_don_meka",
+ "englishUsText":"You did it, mecha!",
+ "englishUsFontType":1,
+ "frenchText":"Tu as réussi, Mecha !",
+ "frenchFontType":1,
+ "italianText":"Ce l'hai fatta, mecha!",
+ "italianFontType":1,
+ "germanText":"Das war's, Mecha!",
+ "germanFontType":1,
+ "spanishText":"¡Lo conseguiste, máquina!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Lo conseguiste, máquina!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Você conseguiu, mecha!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"crown_bronze",
+ "englishUsText":"Support-Enabled Clear",
+ "englishUsFontType":1,
+ "frenchText":"Chanson réussie avec Soutien",
+ "frenchFontType":1,
+ "italianText":"Complet. (Ass.)",
+ "italianFontType":1,
+ "germanText":"Abschl. mit Unterst.",
+ "germanFontType":1,
+ "spanishText":"Superación con apoyo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Superación con apoyo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conclusão com Suporte",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"result_bestscore",
+ "englishUsText":"New high score!",
+ "englishUsFontType":1,
+ "frenchText":"Nouveau meilleur score !",
+ "frenchFontType":1,
+ "italianText":"Nuovo record!",
+ "italianFontType":1,
+ "germanText":"Neuer Highscore!",
+ "germanFontType":1,
+ "spanishText":"¡Nuevo récord!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Nuevo récord!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Novo recorde!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"enso_pad_type_error",
+ "englishUsText":"Your current controller type and settings\nmay not be appropriate for this controller.",
+ "englishUsFontType":1,
+ "frenchText":"Le type de contrôleur actuel et ses paramètres\npeuvent ne pas être appropriés pour cette manette.",
+ "frenchFontType":1,
+ "italianText":"Il tipo di controller e le impostazioni attuali\npotrebbero non essere appropriati per questo controller.",
+ "italianFontType":1,
+ "germanText":"Dein aktueller Steuerungstyp und die Einstellungen passen\nunter Umständen nicht zu deinem Controller.",
+ "germanFontType":1,
+ "spanishText":"Es posible que el tipo y ajuste del mando actual\nno sean apropiados para este mando.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Es posible que el tipo y ajuste del control actual\nno sean apropiados para este control.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Suas configurações e tipo de controle\npodem não ser adequados a este controle.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"result_pad_type_error",
+ "englishUsText":"Your current controller type and settings\nmay not be appropriate for this controller.\nOpen Game Settings?",
+ "englishUsFontType":1,
+ "frenchText":"Le type de contrôleur actuel et ses paramètres\npeuvent ne pas être appropriés pour cette manette.\nOuvrir les Paramètres de jeu ?",
+ "frenchFontType":1,
+ "italianText":"Il tipo di controller e le impostazioni attuali\npotrebbero non essere appropriati per questo controller.\nAccedere a Impostazioni?",
+ "italianFontType":1,
+ "germanText":"Dein aktueller Steuerungstyp und die Einstellungen passen\nunter Umständen nicht zu deinem Controller.\nSpieloptionen aufrufen?",
+ "germanFontType":1,
+ "spanishText":"Es posible que el tipo y ajuste del mando actual\nno sean apropiados para este mando.\n¿Abrir ajustes del juego?",
+ "spanishFontType":1,
+ "neutralSpanishText":"Es posible que el tipo y ajuste del control actual\nno sean apropiados para este control.\n¿Abrir ajustes del juego?",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Suas configurações e tipo de controle\npodem não ser adequados a este controle.\nAbrir configurações de jogo?",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"result_bingo_complete",
+ "englishUsText":"Complete!",
+ "englishUsFontType":1,
+ "frenchText":"Carte terminée !",
+ "frenchFontType":1,
+ "italianText":"Completata!",
+ "italianFontType":1,
+ "germanText":"Abgeschlossen!",
+ "germanFontType":1,
+ "spanishText":"¡Completado!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Completado!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Completado!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"result_bingo_get",
+ "englishUsText":"Bingo!",
+ "englishUsFontType":1,
+ "frenchText":"Bingo !",
+ "frenchFontType":1,
+ "italianText":"Bingo!",
+ "italianFontType":1,
+ "germanText":"Bingo!",
+ "germanFontType":1,
+ "spanishText":"¡Bingo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Bingo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bingo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"result_bingo_title",
+ "englishUsText":"Mission Bingo",
+ "englishUsFontType":1,
+ "frenchText":"Mission de bingo",
+ "frenchFontType":1,
+ "italianText":"Missione bingo",
+ "italianFontType":1,
+ "germanText":"Missions-Bingo",
+ "germanFontType":1,
+ "spanishText":"Misión del bingo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Misión del bingo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bingo de missões",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_success",
+ "englishUsText":"Completed Bingo Card!",
+ "englishUsFontType":1,
+ "frenchText":"Carte de bingo terminée !",
+ "frenchFontType":1,
+ "italianText":"Scheda bingo completata!",
+ "italianFontType":1,
+ "germanText":"Bingokarte abgeschl.!",
+ "germanFontType":1,
+ "spanishText":"¡Cartón de bingo completo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Cartón de bingo completado!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Cartela completada!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"koban_get",
+ "englishUsText":"Acquired DON Coin!",
+ "englishUsFontType":1,
+ "frenchText":"Pièce DON obtenue !",
+ "frenchFontType":1,
+ "italianText":"Moneta DON ottenuta!",
+ "italianFontType":1,
+ "germanText":"DON-Münze erhalten!",
+ "germanFontType":1,
+ "spanishText":"¡Moneda DON conseguida!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Moneda DON conseguida!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Moeda DON obtida!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"requirement",
+ "englishUsText":"Criteria",
+ "englishUsFontType":1,
+ "frenchText":"Critères",
+ "frenchFontType":1,
+ "italianText":"Criteri",
+ "italianFontType":1,
+ "germanText":"Kriterien",
+ "germanFontType":1,
+ "spanishText":"Criterios",
+ "spanishFontType":1,
+ "neutralSpanishText":"Criterios",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Critérios",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"aisatsu",
+ "englishUsText":"Greetings",
+ "englishUsFontType":1,
+ "frenchText":"Salutations",
+ "frenchFontType":1,
+ "italianText":"Saluti",
+ "italianFontType":1,
+ "germanText":"Begrüßungen",
+ "germanFontType":1,
+ "spanishText":"Saludos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Saludos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Saudações",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_kigurumi",
+ "englishUsText":"Costume",
+ "englishUsFontType":1,
+ "frenchText":"Costume",
+ "frenchFontType":1,
+ "italianText":"Costume",
+ "italianFontType":1,
+ "germanText":"Kostüm",
+ "germanFontType":1,
+ "spanishText":"Traje",
+ "spanishFontType":1,
+ "neutralSpanishText":"Disfraz",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Fantasia",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou",
+ "englishUsText":"Title",
+ "englishUsFontType":1,
+ "frenchText":"Titre",
+ "frenchFontType":1,
+ "italianText":"Titolo",
+ "italianFontType":1,
+ "germanText":"Titel",
+ "germanFontType":1,
+ "spanishText":"Título",
+ "spanishFontType":1,
+ "neutralSpanishText":"Título",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Título",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"koban",
+ "englishUsText":"DON Coin",
+ "englishUsFontType":1,
+ "frenchText":"Pièce DON",
+ "frenchFontType":1,
+ "italianText":"Moneta DON",
+ "italianFontType":1,
+ "germanText":"DON-Münze",
+ "germanFontType":1,
+ "spanishText":"Moneda DON",
+ "spanishFontType":1,
+ "neutralSpanishText":"Moneda DON",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Moeda DON",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro",
+ "englishUsText":"Instrument",
+ "englishUsFontType":1,
+ "frenchText":"Instrument",
+ "frenchFontType":1,
+ "italianText":"Strumento",
+ "italianFontType":1,
+ "germanText":"Instrument",
+ "germanFontType":1,
+ "spanishText":"Instrumento",
+ "spanishFontType":1,
+ "neutralSpanishText":"Instrumento",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Instrumento",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"hazure",
+ "englishUsText":"Try Again",
+ "englishUsFontType":1,
+ "frenchText":"Essaie encore",
+ "frenchFontType":1,
+ "italianText":"Riprova",
+ "italianFontType":1,
+ "germanText":"Neu versuchen",
+ "germanFontType":1,
+ "spanishText":"Reintentar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Reintentar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tentar de novo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_body",
+ "englishUsText":"Outfit",
+ "englishUsFontType":1,
+ "frenchText":"Tenue",
+ "frenchFontType":1,
+ "italianText":"Completo",
+ "italianFontType":1,
+ "germanText":"Outfit",
+ "germanFontType":1,
+ "spanishText":"Atuendo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Atuendo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Traje",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_putichara",
+ "englishUsText":"Mini Character",
+ "englishUsFontType":1,
+ "frenchText":"Mini personnage",
+ "frenchFontType":1,
+ "italianText":"Mini-personaggio",
+ "italianFontType":1,
+ "germanText":"Mini-Charakter",
+ "germanFontType":1,
+ "spanishText":"Minipersonaje",
+ "spanishFontType":1,
+ "neutralSpanishText":"Minipersonaje",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mini personagem",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_head",
+ "englishUsText":"Hat",
+ "englishUsFontType":1,
+ "frenchText":"Chapeau",
+ "frenchFontType":1,
+ "italianText":"Copricapo",
+ "italianFontType":1,
+ "germanText":"Hut",
+ "germanFontType":1,
+ "spanishText":"Sombrero",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sombrero",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Chapéu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_set",
+ "englishUsText":"Hat + Outfit",
+ "englishUsFontType":1,
+ "frenchText":"Chapeau + tenue",
+ "frenchFontType":1,
+ "italianText":"Copricapo + Completo",
+ "italianFontType":1,
+ "germanText":"Hut + Outfit",
+ "germanFontType":1,
+ "spanishText":"Sombrero y atuendo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sombrero y atuendo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Chapéu + traje",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_makeup",
+ "englishUsText":"Face Paint",
+ "englishUsFontType":1,
+ "frenchText":"Maquillage",
+ "frenchFontType":1,
+ "italianText":"Pittura facciale",
+ "italianFontType":1,
+ "germanText":"Gesichtsbemalung",
+ "germanFontType":1,
+ "spanishText":"Pintura facial",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pintura facial",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pintura facial",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"combo_num",
+ "englishUsText":"Max Combo",
+ "englishUsFontType":1,
+ "frenchText":"Meilleur combo",
+ "frenchFontType":1,
+ "italianText":"Max combo",
+ "italianFontType":1,
+ "germanText":"Max. Kombo",
+ "germanFontType":1,
+ "spanishText":"Combo máximo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Combo máximo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Combo máximo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"score",
+ "englishUsText":"Score",
+ "englishUsFontType":1,
+ "frenchText":"Score",
+ "frenchFontType":1,
+ "italianText":"Punteggio",
+ "italianFontType":1,
+ "germanText":"Punkte",
+ "germanFontType":1,
+ "spanishText":"Puntuación",
+ "spanishFontType":1,
+ "neutralSpanishText":"Puntuación",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pontuação",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"renda_num",
+ "englishUsText":"Drumroll Hits",
+ "englishUsFontType":1,
+ "frenchText":"Roul. de tambour",
+ "frenchFontType":1,
+ "italianText":"Colpi di rullo",
+ "italianFontType":1,
+ "germanText":"Trommelwirbel",
+ "germanFontType":1,
+ "spanishText":"Golpes de redoble",
+ "spanishFontType":1,
+ "neutralSpanishText":"Golpes de redoble",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Batidas de rufo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"reference_book",
+ "englishUsText":"Guide",
+ "englishUsFontType":1,
+ "frenchText":"Guide",
+ "frenchFontType":1,
+ "italianText":"Guida",
+ "italianFontType":1,
+ "germanText":"Anleitung",
+ "germanFontType":1,
+ "spanishText":"Guía",
+ "spanishFontType":1,
+ "neutralSpanishText":"Guía",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Guia",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"level_skip",
+ "englishUsText":"Skip",
+ "englishUsFontType":1,
+ "frenchText":"Passer",
+ "frenchFontType":1,
+ "italianText":"Salta",
+ "italianFontType":1,
+ "germanText":"Überspringen",
+ "germanFontType":1,
+ "spanishText":"Saltar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Omitir",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pular",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"move",
+ "englishUsText":"Move",
+ "englishUsFontType":1,
+ "frenchText":"Naviguer",
+ "frenchFontType":1,
+ "italianText":"Sfoglia",
+ "italianFontType":1,
+ "germanText":"Wechseln",
+ "germanFontType":1,
+ "spanishText":"Pasar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Desplazar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mover",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"toggle_favorite",
+ "englishUsText":"Favorite",
+ "englishUsFontType":1,
+ "frenchText":"Favorite",
+ "frenchFontType":1,
+ "italianText":"Preferita",
+ "italianFontType":1,
+ "germanText":"Favorit",
+ "germanFontType":1,
+ "spanishText":"Favorita",
+ "spanishFontType":1,
+ "neutralSpanishText":"Favoritos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Favorita",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"option",
+ "englishUsText":"Options",
+ "englishUsFontType":1,
+ "frenchText":"Options",
+ "frenchFontType":1,
+ "italianText":"Opzioni",
+ "italianFontType":1,
+ "germanText":"Optionen",
+ "germanFontType":1,
+ "spanishText":"Opciones",
+ "spanishFontType":1,
+ "neutralSpanishText":"Opciones",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Opções",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"decide",
+ "englishUsText":"Confirm",
+ "englishUsFontType":1,
+ "frenchText":"Confirmer",
+ "frenchFontType":1,
+ "italianText":"Conferma",
+ "italianFontType":1,
+ "germanText":"Bestätigen",
+ "germanFontType":1,
+ "spanishText":"Confirmar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Confirmar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Confirmar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"submenu",
+ "englishUsText":"Sub-Menu",
+ "englishUsFontType":1,
+ "frenchText":"Sous-menu",
+ "frenchFontType":1,
+ "italianText":"Sottomenu",
+ "italianFontType":1,
+ "germanText":"Untermenü",
+ "germanFontType":1,
+ "spanishText":"Submenú",
+ "spanishFontType":1,
+ "neutralSpanishText":"Submenú",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Submenu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"genre_skip_songselect",
+ "englishUsText":"Skip",
+ "englishUsFontType":1,
+ "frenchText":"Passer",
+ "frenchFontType":1,
+ "italianText":"Salta",
+ "italianFontType":1,
+ "germanText":"Überspringen",
+ "germanFontType":1,
+ "spanishText":"Saltar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Omitir",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pular",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"genre_skip",
+ "englishUsText":"Skip",
+ "englishUsFontType":1,
+ "frenchText":"Passer",
+ "frenchFontType":1,
+ "italianText":"Salta",
+ "italianFontType":1,
+ "germanText":"Überspringen",
+ "germanFontType":1,
+ "spanishText":"Saltar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Omitir",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pular",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"restore_defaults",
+ "englishUsText":"Restore Defaults",
+ "englishUsFontType":1,
+ "frenchText":"Restaurer par défaut",
+ "frenchFontType":1,
+ "italianText":"Riprist. predef.",
+ "italianFontType":1,
+ "germanText":"Standard-Einstell.",
+ "germanFontType":1,
+ "spanishText":"Predeterminados",
+ "spanishFontType":1,
+ "neutralSpanishText":"Predeterminados",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Restaurar padrão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"toggle_true_hit",
+ "englishUsText":"Toggle Shin-Uchi",
+ "englishUsFontType":1,
+ "frenchText":"Avec/Sans Shin-Uchi.",
+ "frenchFontType":1,
+ "italianText":"Shin-Uchi Sì/No",
+ "italianFontType":1,
+ "germanText":"Shin-Uchi umschalten",
+ "germanFontType":1,
+ "spanishText":"Shin-Uchi sí/no",
+ "spanishFontType":1,
+ "neutralSpanishText":"Shin-Uchi sí/no",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alternar Shin-Uchi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"toggle_vib",
+ "englishUsText":"Toggle Vibration",
+ "englishUsFontType":1,
+ "frenchText":"Activer/Désactiver vibration",
+ "frenchFontType":1,
+ "italianText":"Vibrazione Sì/No",
+ "italianFontType":1,
+ "germanText":"Vibration ein/aus",
+ "germanFontType":1,
+ "spanishText":"Vibración sí/no",
+ "spanishFontType":1,
+ "neutralSpanishText":"Vibración sí/no",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alternar vibração",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"toggle_session",
+ "englishUsText":"Toggle Session",
+ "englishUsFontType":1,
+ "frenchText":"Activer/Désactiver session",
+ "frenchFontType":1,
+ "italianText":"Sessione Sì/No",
+ "italianFontType":1,
+ "germanText":"Session wechseln",
+ "germanFontType":1,
+ "spanishText":"Sesión sí/no",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sesión sí/no",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alternar sessão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"select",
+ "englishUsText":"Select",
+ "englishUsFontType":1,
+ "frenchText":"Choisir",
+ "frenchFontType":1,
+ "italianText":"Selez.",
+ "italianFontType":1,
+ "germanText":"Wählen",
+ "germanFontType":1,
+ "spanishText":"Seleccionar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Seleccionar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Selecionar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"tabchange",
+ "englishUsText":"Switch Tab",
+ "englishUsFontType":1,
+ "frenchText":"Changer d'onglet",
+ "frenchFontType":1,
+ "italianText":"Cambia scheda",
+ "italianFontType":1,
+ "germanText":"Tab wechseln",
+ "germanFontType":1,
+ "spanishText":"Alternar pestaña",
+ "spanishFontType":1,
+ "neutralSpanishText":"Alternar pestaña",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mudar de aba",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"next",
+ "englishUsText":"Next",
+ "englishUsFontType":1,
+ "frenchText":"Suivant",
+ "frenchFontType":1,
+ "italianText":"Avanti",
+ "italianFontType":1,
+ "germanText":"Weiter",
+ "germanFontType":1,
+ "spanishText":"Siguiente",
+ "spanishFontType":1,
+ "neutralSpanishText":"Siguiente",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Próximo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"close",
+ "englishUsText":"Close",
+ "englishUsFontType":1,
+ "frenchText":"Fermer",
+ "frenchFontType":1,
+ "italianText":"Chiudi",
+ "italianFontType":1,
+ "germanText":"Schließ.",
+ "germanFontType":1,
+ "spanishText":"Cerrar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cerrar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Fechar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"autosetting",
+ "englishUsText":"Auto Calibration",
+ "englishUsFontType":1,
+ "frenchText":"Calibrage auto",
+ "frenchFontType":1,
+ "italianText":"Calibraz. autom.",
+ "italianFontType":1,
+ "germanText":"Auto-Kalibr.",
+ "germanFontType":1,
+ "spanishText":"Autocalibración",
+ "spanishFontType":1,
+ "neutralSpanishText":"Autocalibración",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Calibragem auto.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"show_bingo_card",
+ "englishUsText":"View Bingo Card",
+ "englishUsFontType":1,
+ "frenchText":"Voir la carte de bingo",
+ "frenchFontType":1,
+ "italianText":"Vedi scheda bingo",
+ "italianFontType":1,
+ "germanText":"Bingokarte ansehen",
+ "germanFontType":1,
+ "spanishText":"Ver cartón de bingo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ver cartón de bingo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ver cartela de bingo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help",
+ "englishUsText":"Help",
+ "englishUsFontType":1,
+ "frenchText":"Aide",
+ "frenchFontType":1,
+ "italianText":"Aiuto",
+ "italianFontType":1,
+ "germanText":"Hilfe",
+ "germanFontType":1,
+ "spanishText":"Ayuda",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ayuda",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ajuda",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"change",
+ "englishUsText":"Change",
+ "englishUsFontType":1,
+ "frenchText":"Changer",
+ "frenchFontType":1,
+ "italianText":"Cambia",
+ "italianFontType":1,
+ "germanText":"Ändern",
+ "germanFontType":1,
+ "spanishText":"Cambiar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cambiar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alterar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"save_and_close",
+ "englishUsText":"Update and Close",
+ "englishUsFontType":1,
+ "frenchText":"Actualiser et fermer",
+ "frenchFontType":1,
+ "italianText":"Aggiorna ed esci",
+ "italianFontType":1,
+ "germanText":"Aktualis./Schließen",
+ "germanFontType":1,
+ "spanishText":"Actualizar y salir",
+ "spanishFontType":1,
+ "neutralSpanishText":"Actualizar y Cerrar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Atualizar e fechar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"discard_changes",
+ "englishUsText":"Revert",
+ "englishUsFontType":1,
+ "frenchText":"Revenir",
+ "frenchFontType":1,
+ "italianText":"Ripristina",
+ "italianFontType":1,
+ "germanText":"Zurücksetzen",
+ "germanFontType":1,
+ "spanishText":"Invertir",
+ "spanishFontType":1,
+ "neutralSpanishText":"Invertir",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Reverter",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"back",
+ "englishUsText":"Back",
+ "englishUsFontType":1,
+ "frenchText":"Retour",
+ "frenchFontType":1,
+ "italianText":"Indietro",
+ "italianFontType":1,
+ "germanText":"Zurück",
+ "germanFontType":1,
+ "spanishText":"Atrás",
+ "spanishFontType":1,
+ "neutralSpanishText":"Atrás",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Voltar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"random_song",
+ "englishUsText":"Random Song",
+ "englishUsFontType":1,
+ "frenchText":"Chanson aléatoire",
+ "frenchFontType":1,
+ "italianText":"Canzone casuale",
+ "italianFontType":1,
+ "germanText":"Zufälliger Song",
+ "germanFontType":1,
+ "spanishText":"Canción aleatoria",
+ "spanishFontType":1,
+ "neutralSpanishText":"Canción aleatoria",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Música aleatória",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"title_sub_logo",
+ "englishUsText":"Drum Session!",
+ "englishUsFontType":1,
+ "frenchText":"Drum Session!",
+ "frenchFontType":1,
+ "italianText":"Drum Session!",
+ "italianFontType":1,
+ "germanText":"Drum Session!",
+ "germanFontType":1,
+ "spanishText":"Drum Session!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Drum Session!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Drum Session!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"title_logo",
+ "englishUsText":"Taiko no Tatsujin",
+ "englishUsFontType":1,
+ "frenchText":"Taiko no Tatsujin",
+ "frenchFontType":1,
+ "italianText":"Taiko no Tatsujin",
+ "italianFontType":1,
+ "germanText":"Taiko no Tatsujin",
+ "germanFontType":1,
+ "spanishText":"Taiko no Tatsujin",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko no Tatsujin",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Taiko no Tatsujin",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"patch_version",
+ "englishUsText":"Ver. %s",
+ "englishUsFontType":1,
+ "frenchText":"Ver. %s",
+ "frenchFontType":1,
+ "italianText":"Ver. %s",
+ "italianFontType":1,
+ "germanText":"Ver. %s",
+ "germanFontType":1,
+ "spanishText":"Vers. %s",
+ "spanishFontType":1,
+ "neutralSpanishText":"Vers. %s",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ver. %s",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"patch_version_word",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"training_auto",
+ "englishUsText":"Auto On/Off",
+ "englishUsFontType":1,
+ "frenchText":"Auto activé/désactivé",
+ "frenchFontType":1,
+ "italianText":"Auto Sì/No",
+ "italianFontType":1,
+ "germanText":"Auto an/aus",
+ "germanFontType":1,
+ "spanishText":"Automático sí/no",
+ "spanishFontType":1,
+ "neutralSpanishText":"Automático sí/no",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ativar/Des. auto.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"traning_auto_on",
+ "englishUsText":"Auto On",
+ "englishUsFontType":1,
+ "frenchText":"Auto activé",
+ "frenchFontType":1,
+ "italianText":"Auto Sì",
+ "italianFontType":1,
+ "germanText":"Auto an",
+ "germanFontType":1,
+ "spanishText":"Automático sí",
+ "spanishFontType":1,
+ "neutralSpanishText":"Automático sí",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ativar automático",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"traning_dialog_title",
+ "englishUsText":"Speed Adjustments",
+ "englishUsFontType":1,
+ "frenchText":"Ajustement de la vitesse",
+ "frenchFontType":1,
+ "italianText":"Regolazioni velocità",
+ "italianFontType":1,
+ "germanText":"Tempoanpassung",
+ "germanFontType":1,
+ "spanishText":"Ajustes de velocidad",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ajustes de velocidad",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ajustes de velocidade",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"traning_dialog_txt",
+ "englishUsText":"Training mode lets you slow down note speed from 0.9x to 0.5x,\nbut without the accompanying music.",
+ "englishUsFontType":1,
+ "frenchText":"Le mode Entraînement vous permet de ralentir la vitesse des\nnotes de x0,9 à x0,5 mais sans la musique qui accompagne.",
+ "frenchFontType":1,
+ "italianText":"In Allenamento puoi ridurre la velocità a x0,9 e x0,5,\nma senza la musica di accompagnamento.",
+ "italianFontType":1,
+ "germanText":"Im Trainingsmodus kannst du das Notentempo zwischen x0,9 und x0,5 festlegen,\naber nicht für die Musik.",
+ "germanFontType":1,
+ "spanishText":"El modo Entrenamiento permite ralentizar la velocidad de\nx0,9 a x 0,5, pero sin la música de acompañamiento.",
+ "spanishFontType":1,
+ "neutralSpanishText":"El modo Entrenamiento permite ralentizar la velocidad de\nx0.9 a x0.5, pero sin la música de acompañamiento.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"O modo Treino permite reduzir a velocidade das notas de 0,9x até 0,5x,\nmas sem acompanhamento de música.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"traning_tempo",
+ "englishUsText":"x",
+ "englishUsFontType":1,
+ "frenchText":"x",
+ "frenchFontType":1,
+ "italianText":"x",
+ "italianFontType":1,
+ "germanText":"x",
+ "germanFontType":1,
+ "spanishText":"x",
+ "spanishFontType":1,
+ "neutralSpanishText":"x",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"x",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"traning_hit_rate",
+ "englishUsText":"Hit Rate",
+ "englishUsFontType":1,
+ "frenchText":"Taux de frappe",
+ "frenchFontType":1,
+ "italianText":"Tasso di precisione",
+ "italianFontType":1,
+ "germanText":"Trefferrate",
+ "germanFontType":1,
+ "spanishText":"Índice de aciertos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Índice de aciertos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Taxa de acerto",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"training_guide_change",
+ "englishUsText":"Toggle Control Guide",
+ "englishUsFontType":1,
+ "frenchText":"Type de contrôleur",
+ "frenchFontType":1,
+ "italianText":"Guida comandi",
+ "italianFontType":1,
+ "germanText":"Steuerungstipps",
+ "germanFontType":1,
+ "spanishText":"Guía de controles sí/no",
+ "spanishFontType":1,
+ "neutralSpanishText":"Guía de controles sí/no",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alternar controles",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"traning_song_tempo",
+ "englishUsText":"Song Tempo",
+ "englishUsFontType":1,
+ "frenchText":"Tempo de la chanson",
+ "frenchFontType":1,
+ "italianText":"Tempo canzone",
+ "italianFontType":1,
+ "germanText":"Song-Tempo",
+ "germanFontType":1,
+ "spanishText":"Tempo de canción",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tempo de canción",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tempo da música",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"traning_result_title",
+ "englishUsText":"Quit",
+ "englishUsFontType":1,
+ "frenchText":"Quitter",
+ "frenchFontType":1,
+ "italianText":"Esci",
+ "italianFontType":1,
+ "germanText":"Beenden",
+ "germanFontType":1,
+ "spanishText":"Salir",
+ "spanishFontType":1,
+ "neutralSpanishText":"Salir",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sair",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"traning_result_menu",
+ "englishUsText":"Open\nTraining Menu",
+ "englishUsFontType":1,
+ "frenchText":"Ouvrir\nmenu d'entraînement",
+ "frenchFontType":1,
+ "italianText":"Apri menu\nAllenamento",
+ "italianFontType":1,
+ "germanText":"Trainingsmenü\nöffnen",
+ "germanFontType":1,
+ "spanishText":"Abrir\nmenú de entrenamiento",
+ "spanishFontType":1,
+ "neutralSpanishText":"Abrir\nmenú de entrenamiento",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Abrir\nmenu de treino",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"traning_pause",
+ "englishUsText":"Hold down to pause",
+ "englishUsFontType":1,
+ "frenchText":"Maintenir pour mettre en pause",
+ "frenchFontType":1,
+ "italianText":"Tieni premuto per pausa",
+ "italianFontType":1,
+ "germanText":"Für Pause drücken",
+ "germanFontType":1,
+ "spanishText":"Mantener pulsado para pausar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mantener para pausar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Segure para pausar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"traning_bar",
+ "englishUsText":"Bar",
+ "englishUsFontType":1,
+ "frenchText":"Barre",
+ "frenchFontType":1,
+ "italianText":"Barra",
+ "italianFontType":1,
+ "germanText":"Takt",
+ "germanFontType":1,
+ "spanishText":"Barra",
+ "spanishFontType":1,
+ "neutralSpanishText":"Barra",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Barra",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"traning_menu",
+ "englishUsText":"Training Menu",
+ "englishUsFontType":1,
+ "frenchText":"Menu d'entraînement",
+ "frenchFontType":1,
+ "italianText":"Menu Allenamento",
+ "italianFontType":1,
+ "germanText":"Trainingsmenü",
+ "germanFontType":1,
+ "spanishText":"Menú de entrenamiento",
+ "spanishFontType":1,
+ "neutralSpanishText":"Menú de entrenamiento",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Menu de treino",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"traning_tatacon_menu_forward",
+ "englishUsText":"Fast Forward",
+ "englishUsFontType":1,
+ "frenchText":"Avance rapide",
+ "frenchFontType":1,
+ "italianText":"Avanti veloce",
+ "italianFontType":1,
+ "germanText":"Vorspulen",
+ "germanFontType":1,
+ "spanishText":"Avance rápido",
+ "spanishFontType":1,
+ "neutralSpanishText":"Avance rápido",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Avançar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"traning_tatacon_menu_reward",
+ "englishUsText":"Fast Rewind",
+ "englishUsFontType":1,
+ "frenchText":"Retour rapide",
+ "frenchFontType":1,
+ "italianText":"Indietro veloce",
+ "italianFontType":1,
+ "germanText":"Zurückspulen",
+ "germanFontType":1,
+ "spanishText":"Retroceso rápido",
+ "spanishFontType":1,
+ "neutralSpanishText":"Retroceso rápido",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Retroceder",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"traning_tatacon_menu_slow",
+ "englishUsText":"Slower",
+ "englishUsFontType":1,
+ "frenchText":"Moins vite",
+ "frenchFontType":1,
+ "italianText":"Più lento",
+ "italianFontType":1,
+ "germanText":"Langsamer",
+ "germanFontType":1,
+ "spanishText":"Más lento",
+ "spanishFontType":1,
+ "neutralSpanishText":"Más lento",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mais devagar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"traning_tatacon_menu_continue",
+ "englishUsText":"Resume",
+ "englishUsFontType":1,
+ "frenchText":"Reprendre",
+ "frenchFontType":1,
+ "italianText":"Riprendi",
+ "italianFontType":1,
+ "germanText":"Fortsetzen",
+ "germanFontType":1,
+ "spanishText":"Reanudar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Reanudar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Retomar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"traning_tatacon_menu_fast",
+ "englishUsText":"Faster",
+ "englishUsFontType":1,
+ "frenchText":"Plus vite",
+ "frenchFontType":1,
+ "italianText":"Più veloce",
+ "italianFontType":1,
+ "germanText":"Schneller",
+ "germanFontType":1,
+ "spanishText":"Más rápido",
+ "spanishFontType":1,
+ "neutralSpanishText":"Más rápido",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mais rápido",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"traning_tatacon_menu_branch",
+ "englishUsText":"Toggle Notes",
+ "englishUsFontType":1,
+ "frenchText":"Activer/Désactiver les notes",
+ "frenchFontType":1,
+ "italianText":"Mos./Nasc. note",
+ "italianFontType":1,
+ "germanText":"Noten umschalten",
+ "germanFontType":1,
+ "spanishText":"Notas sí/no",
+ "spanishFontType":1,
+ "neutralSpanishText":"Notas sí/no",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alternar notas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"traning_tatacon_menu_branch_var",
+ "englishUsText":"(Normal/Expert/Master)",
+ "englishUsFontType":1,
+ "frenchText":"(Normal/Expert/Maître)",
+ "frenchFontType":1,
+ "italianText":"(Normale/Esperto/Maestro)",
+ "italianFontType":1,
+ "germanText":"(Normal/Exp./Meist.)",
+ "germanFontType":1,
+ "spanishText":"(Normal/Experto/Maestro)",
+ "spanishFontType":1,
+ "neutralSpanishText":"(Normal/Experto/Maestro)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"(Normal/Perito/Mestre)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"training_guide__ds4",
+ "englishUsText":"DUALSHOCK®4 Wireless Controller",
+ "englishUsFontType":1,
+ "frenchText":"Manette sans fil DUALSHOCK®4",
+ "frenchFontType":1,
+ "italianText":"Controller wireless DUALSHOCK®4",
+ "italianFontType":1,
+ "germanText":"DUALSHOCK®4 Wireless-Controller",
+ "germanFontType":1,
+ "spanishText":"Mando inalámbrico DUALSHOCK®4",
+ "spanishFontType":1,
+ "neutralSpanishText":"Control inalámbrico DUALSHOCK®4",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Controle sem fio DUALSHOCK®4",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"training_guide_tatacon",
+ "englishUsText":"Drum Controller",
+ "englishUsFontType":1,
+ "frenchText":"Contrôleur tambour",
+ "frenchFontType":1,
+ "italianText":"Contr. tamburo",
+ "italianFontType":1,
+ "germanText":"Trommel-Controller",
+ "germanFontType":1,
+ "spanishText":"Mando tambor",
+ "spanishFontType":1,
+ "neutralSpanishText":"Control tambor",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Controle tambor",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"traning_tatacon_detail",
+ "englishUsText":"*Music will not play if song tempo is set to 0.9x or lower.",
+ "englishUsFontType":1,
+ "frenchText":"*La musique ne sera pas jouée si le tempo de la chanson\nest paramétré sur x0,9 ou inférieur.",
+ "frenchFontType":1,
+ "italianText":"*Se il tempo della canzone è impostato su x0,9 o inferiore,\nnon sentirai la musica di accompagnamento.",
+ "italianFontType":1,
+ "germanText":"*Die Musik wird bei einem Song-Tempo von x0,9 oder darunter nicht mehr abgespielt.",
+ "germanFontType":1,
+ "spanishText":"*La música no se reproduce con el tempo a x0,9 o menos.",
+ "spanishFontType":1,
+ "neutralSpanishText":"*La música no se reproduce con el tempo a x0.9 o menos.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"*A música não será reproduzida se o tempo for definido como 0,9x ou inferior.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"bingo_clear_dialog_title",
+ "englishUsText":"Try your hand at Secret Bingo?",
+ "englishUsFontType":1,
+ "frenchText":"S'essayer au bingo secret ?",
+ "frenchFontType":1,
+ "italianText":"Provare il bingo segreto?",
+ "italianFontType":1,
+ "germanText":"Am Geheimbingo versuchen?",
+ "germanFontType":1,
+ "spanishText":"¿Probar con el bingo secreto?",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Probar con el bingo secreto?",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tentar a sorte no bingo secreto?",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"bingo_clear_dialog_txt",
+ "englishUsText":"For those who want a greater challenge than Hard",
+ "englishUsFontType":1,
+ "frenchText":"Pour ceux qui veulent un défi plus dur qu'en Difficile",
+ "frenchFontType":1,
+ "italianText":"Per chi reputa Difficile troppo facile",
+ "italianFontType":1,
+ "germanText":"Für alle, denen Schwer nicht reicht!",
+ "germanFontType":1,
+ "spanishText":"Para los que quieren un mayor desafío que Difícil.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Para los que quieren más desafío que lo difícil.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Para quem deseja um desafio além do Difícil",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"bingo_clear_dialog_suppl",
+ "englishUsText":"Press the □ button when selecting a difficulty\nto attempt at any time.",
+ "englishUsFontType":1,
+ "frenchText":"Appuie sur la touche □ quand tu choisis une difficulté\npour essayer à tout moment.",
+ "frenchFontType":1,
+ "italianText":"Quando selezioni il livello di difficoltà,\npremi □ per tentare.\n",
+ "italianFontType":1,
+ "germanText":"Drück □ beim Schwierigkeitsgrad,\num es jederzeit zu versuchen.",
+ "germanFontType":1,
+ "spanishText":"Pulsa el botón □ al elegir una dificultad\npara intentarlo en cualquier momento.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Oprime el botón □ al elegir una dificultad\npara intentarlo en cualquier momento.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Aperte o botão □ ao selecionar uma dificuldade\npara tentar a qualquer momento.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"hiscore",
+ "englishUsText":"High Score",
+ "englishUsFontType":1,
+ "frenchText":"Meilleur score",
+ "frenchFontType":1,
+ "italianText":"Record",
+ "italianFontType":1,
+ "germanText":"Highscore",
+ "germanFontType":1,
+ "spanishText":"Récord",
+ "spanishFontType":1,
+ "neutralSpanishText":"Récord",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Recorde",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"session_npc_off",
+ "englishUsText":"Solo Play",
+ "englishUsFontType":1,
+ "frenchText":"Solo",
+ "frenchFontType":1,
+ "italianText":"Solitaria",
+ "italianFontType":1,
+ "germanText":"Einzelspieler",
+ "germanFontType":1,
+ "spanishText":"Juego solitario",
+ "spanishFontType":1,
+ "neutralSpanishText":"Juego solitario",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Jogo individual",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"replay_ghost_off",
+ "englishUsText":"*If there is no existing high score, the session will be set to solo play.",
+ "englishUsFontType":1,
+ "frenchText":"*S'il n'existe aucun meilleur score, la session basculera en solo.",
+ "frenchFontType":1,
+ "italianText":"*In assenza di record da battere, la sessione sarà in solitaria.",
+ "italianFontType":1,
+ "germanText":"*Existiert kein Highscore, wird eine Einzelspielerpartie gestartet.",
+ "germanFontType":1,
+ "spanishText":"*Si no existe un récord, la sesión se jugará en solitario.",
+ "spanishFontType":1,
+ "neutralSpanishText":"*Si no hay récord, la sesión se jugará en solitario.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"*Na ausência de um recorde, a sessão será definida como jogo individual.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"dialog_yes",
+ "englishUsText":"Yes",
+ "englishUsFontType":1,
+ "frenchText":"Oui",
+ "frenchFontType":1,
+ "italianText":"Sì",
+ "italianFontType":1,
+ "germanText":"Ja",
+ "germanFontType":1,
+ "spanishText":"Sí",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sí",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sim",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"dialog_no",
+ "englishUsText":"No",
+ "englishUsFontType":1,
+ "frenchText":"Non",
+ "frenchFontType":1,
+ "italianText":"No",
+ "italianFontType":1,
+ "germanText":"Nein",
+ "germanFontType":1,
+ "spanishText":"No",
+ "spanishFontType":1,
+ "neutralSpanishText":"No",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Não",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"bingo_card_ex_title",
+ "englishUsText":"Bingo",
+ "englishUsFontType":1,
+ "frenchText":"Bingo",
+ "frenchFontType":1,
+ "italianText":"Bingo",
+ "italianFontType":1,
+ "germanText":"Bingo",
+ "germanFontType":1,
+ "spanishText":"Bingo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Bingo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bingo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"bingo_card_nor_title",
+ "englishUsText":"Bingo",
+ "englishUsFontType":1,
+ "frenchText":"Bingo",
+ "frenchFontType":1,
+ "italianText":"Bingo",
+ "italianFontType":1,
+ "germanText":"Bingo",
+ "germanFontType":1,
+ "spanishText":"Bingo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Bingo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bingo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"course_back",
+ "englishUsText":"No input by other players detected.\nReturning to Select Song.",
+ "englishUsFontType":1,
+ "frenchText":"Aucune saisie des autres joueurs détectée.\nRetour au choix de chanson.",
+ "frenchFontType":1,
+ "italianText":"Nessun input da altri giocatori rilevato.\nTornerai a Seleziona canzone.",
+ "italianFontType":1,
+ "germanText":"Keine Eingabe von Spieler erkannt.\nKehre zur Songwahl zurück.",
+ "germanFontType":1,
+ "spanishText":"No se detectan otros jugadores.\nVolviendo a Elegir canción.",
+ "spanishFontType":1,
+ "neutralSpanishText":"No se detectan otros jugadores.\nVolviendo a Elegir canción.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Dados de outros jogadores não detectados.\nVoltando à seleção.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"bingo_clear",
+ "englishUsText":"Clear!",
+ "englishUsFontType":1,
+ "frenchText":"Terminé !",
+ "frenchFontType":1,
+ "italianText":"Completata!",
+ "italianFontType":1,
+ "germanText":"Abgeschlossen!",
+ "germanFontType":1,
+ "spanishText":"¡Superado!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Superado!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Completado!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"branch",
+ "englishUsText":"Diverge Notes",
+ "englishUsFontType":1,
+ "frenchText":"Notes divergentes",
+ "frenchFontType":1,
+ "italianText":"Note divergenti",
+ "italianFontType":1,
+ "germanText":"Abweichungs-Not.",
+ "germanFontType":1,
+ "spanishText":"Notas divergen.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Notas divergen.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Divergir notas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"wait_a_minutes",
+ "englishUsText":"Just a moment...",
+ "englishUsFontType":1,
+ "frenchText":"Un instant...",
+ "frenchFontType":1,
+ "italianText":"Attendi...",
+ "italianFontType":1,
+ "germanText":"Einen Moment ...",
+ "germanFontType":1,
+ "spanishText":"Un momento...",
+ "spanishFontType":1,
+ "neutralSpanishText":"Un momento...",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Só um momento...",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"wait_a_minutes_suppl",
+ "englishUsText":"Waiting for other player’s input...",
+ "englishUsFontType":1,
+ "frenchText":"En attente d'une saisie de l'autre joueur...",
+ "frenchFontType":1,
+ "italianText":"In attesa di input altro gioc.",
+ "italianFontType":1,
+ "germanText":"Warte auf anderen Spieler ...",
+ "germanFontType":1,
+ "spanishText":"Esperando a otros jugadores...",
+ "spanishFontType":1,
+ "neutralSpanishText":"Esperando a otros jugadores...",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Aguardando dados de outro jogador...",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"wait_4_input_course",
+ "englishUsText":"To return to Select Song, another player\nmust press “㎎ Re-Select.”",
+ "englishUsFontType":1,
+ "frenchText":"Pour revenir au choix de chanson, un autre joueur\ndoit appuyer sur \"㎎ Rechoisir\".",
+ "frenchFontType":1,
+ "italianText":"Per tornare a Seleziona canzone,\nun altro gioc. deve premere \"㎎ Ri-seleziona.\"",
+ "italianFontType":1,
+ "germanText":"Mit \"㎎ erneut wählen\" geht es zurück zur\nSongwahl.",
+ "germanFontType":1,
+ "spanishText":"Para volver a Elegir canción, otro jugador\ndebe pulsar \"㎎ Volver a seleccionar\".",
+ "spanishFontType":1,
+ "neutralSpanishText":"Para volver a Elegir canción, otro jugador\ndebe oprimir \"㎎ Volver a seleccionar\".",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Para voltar à seleção de música, outro jogador\ndeve apertar \"㎎ Resselecionar\".",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"wait_4_input_mission",
+ "englishUsText":"Waiting for other player’s input...",
+ "englishUsFontType":1,
+ "frenchText":"En attente d'une saisie de l'autre joueur...",
+ "frenchFontType":1,
+ "italianText":"In attesa di input altro gioc.",
+ "italianFontType":1,
+ "germanText":"Warte auf anderen Spieler ...",
+ "germanFontType":1,
+ "spanishText":"Esperando a otros jugadores...",
+ "spanishFontType":1,
+ "neutralSpanishText":"Esperando a otros jugadores...",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Aguardando dados de outro jogador...",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"user_koban_p1",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"user_koban_p2",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"user_title_p1",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"user_title_p2",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"user_name_p1",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"user_name_p2",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_4",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_8",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_2",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_5",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_6",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_0",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_3",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_7",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_1",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_13",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_17",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_11",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_14",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_15",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_9",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_12",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_16",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_10",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_4_1p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_4_2p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_8_1p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_8_2p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_2_1p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_2_2p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_5_1p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_5_2p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_6_1p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_6_2p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_0_1p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_0_2p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_3_1p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_3_2p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_7_1p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_7_2p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_1_1p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_1_2p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_13_1p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_13_2p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_17_1p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_17_2p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_11_1p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_11_2p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_14_1p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_14_2p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_15_1p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_15_2p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_9_1p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_9_2p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_12_1p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_12_2p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_16_1p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_16_2p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_10_1p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_cumulative_10_2p",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"dummy_word",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"not_found",
+ "englishUsText":"Not found!",
+ "englishUsFontType":0,
+ "frenchText":"見つからない!!",
+ "frenchFontType":0,
+ "italianText":"見つからない!!",
+ "italianFontType":0,
+ "germanText":"見つからない!!",
+ "germanFontType":0,
+ "spanishText":"見つからない!!",
+ "spanishFontType":0,
+ "neutralSpanishText":"¡No se encuentra!",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Não encontrado!",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"help_txt_01_title",
+ "englishUsText":"Play a session together with a guest character!",
+ "englishUsFontType":1,
+ "frenchText":"Fais une session avec un personnage invité !",
+ "frenchFontType":1,
+ "italianText":"Gioca una sessione con un ospite!",
+ "italianFontType":1,
+ "germanText":"Spiel eine Session mit einem Gast-Charakter!",
+ "germanFontType":1,
+ "spanishText":"Toca una tamborrada con un invitado.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Toca una tamborada con un invitado.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Jogue uma sessão com um personagem convidado!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_txt_01content",
+ "englishUsText":"Select a song with a guest character icon!",
+ "englishUsFontType":1,
+ "frenchText":"Choisis une chanson avec une icône de personnage invité !",
+ "frenchFontType":1,
+ "italianText":"Seleziona una canzone con l'icona di un ospite!",
+ "italianFontType":1,
+ "germanText":"Wähle einen Song mit dem Gast-Charakter-Symbol!\n",
+ "germanFontType":1,
+ "spanishText":"Elige una canción con icono de invitado.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Elige una canción con icono de invitado.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Selecione uma música com ícone de convidado!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_txt_02_title",
+ "englishUsText":"Play a casual session with a friend!",
+ "englishUsFontType":1,
+ "frenchText":"Fais une session détente avec un ami !",
+ "frenchFontType":1,
+ "italianText":"Gioca una sessione con un amico!",
+ "italianFontType":1,
+ "germanText":"Spiel eine Session mit einem Freund!",
+ "germanFontType":1,
+ "spanishText":"Toca una tamborrada informal con un amigo.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Toca una tamborada informal con un amigo.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Jogue uma sessão casual com um amigo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_txt_02content",
+ "englishUsText":"These are the last songs your friends played!",
+ "englishUsFontType":1,
+ "frenchText":"Voici les dernières chansons\njouées par tes amis !",
+ "frenchFontType":1,
+ "italianText":"Queste sono le ultime canzoni\nsuonate dai tuoi amici!",
+ "italianFontType":1,
+ "germanText":"Das sind die Songs, die deine Freunde zuletzt gespielt haben!",
+ "germanFontType":1,
+ "spanishText":"Estas son las últimas canciones\nque han tocado tus amigos.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Estas son las últimas canciones\nque tocaron tus amigos.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Estas são as últimas músicas que seus amigos jogaram!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_txt_03_title",
+ "englishUsText":"Try to complete mission bingo!",
+ "englishUsFontType":1,
+ "frenchText":"Essaie de terminer la mission de bingo !",
+ "frenchFontType":1,
+ "italianText":"Cerca di completare le missioni bingo!",
+ "italianFontType":1,
+ "germanText":"Versuch, das Missions-Bingo abzuschließen!",
+ "germanFontType":1,
+ "spanishText":"Intenta completar una misión del bingo.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Intenta completar una misión del bingo.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tente completar o bingo de missões!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_txt_03content",
+ "englishUsText":"There are bingo cards for every song title!",
+ "englishUsFontType":1,
+ "frenchText":"Il y a des cartes de bingo\npour toutes les chansons !",
+ "frenchFontType":1,
+ "italianText":"A ciascuna canzone corrisponde\nuna scheda bingo!",
+ "italianFontType":1,
+ "germanText":"Es gibt für jeden Song Bingokarten!",
+ "germanFontType":1,
+ "spanishText":"Hay cartones de bingo\npor cada título de canción.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hay cartones de bingo\npor cada título de canción.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Há cartelas de bingo para todas as músicas!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_txt_04_title",
+ "englishUsText":"Use Training Mode to overcome difficult sections!",
+ "englishUsFontType":1,
+ "frenchText":"Utilise le mode Entraînement pour surmonter les passages difficiles !",
+ "frenchFontType":1,
+ "italianText":"Usa la modalità Allenamento per padroneggiare le parti più difficili!",
+ "italianFontType":1,
+ "germanText":"Meistere schwere Stellen mit dem Trainingsmodus!",
+ "germanFontType":1,
+ "spanishText":"Usa el modo Entrenamiento para superar las tamborradas difíciles.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Usa el modo Entrenamiento para\nsuperar las tamboradas difíciles.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Use o modo Treino para superar partes difíceis!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_txt_04content",
+ "englishUsText":"Use fast-forward and fast-rewind to practice difficult sections!\nYou can set this in the sub-menu!",
+ "englishUsFontType":1,
+ "frenchText":"Utilise l'avance et le retour rapide pour t'entraîner sur les passages difficiles !\nTu peux les paramétrer dans le sous-menu !",
+ "frenchFontType":1,
+ "italianText":"Usa avanti veloce e indietro veloce per allenarti\nnelle parti più difficili (imposta dal sottomenu).",
+ "italianFontType":1,
+ "germanText":"Nutze Vor- und Zurückspulen, um schwere Stellen zu üben!\nDie Funktionen findest du im Untermenü!",
+ "germanFontType":1,
+ "spanishText":"Usa avance y retroceso rápido para practicar las tamborradas difíciles.\nConfigúralo en el submenú.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Usa avance y retroceso rápido para practicar las tamboradas difíciles.\nConfigúralo en el submenú.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Use as funções avançar e retroceder para praticar partes difíceis!\nVocê pode configurar isso no submenu!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_txt_05_title",
+ "englishUsText":"Use Best Replay to improve your performance!",
+ "englishUsFontType":1,
+ "frenchText":"Utilise la Meilleure rediffusion pour améliorer tes performances !",
+ "frenchFontType":1,
+ "italianText":"Usa Miglior prova per migliorare\nle tue prestazioni!",
+ "italianFontType":1,
+ "germanText":"Verbessere dich mit \"Bestleistung wiederholen\"!",
+ "germanFontType":1,
+ "spanishText":"Usa Mejor repetición para rendir más.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Usa Mejor repetición para rendir más.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Melhore seu desempenho em \"Melhor replay\"!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_txt_05content",
+ "englishUsText":"Watch your previous best performance and beat your record!\nYou can set this in the sub-menu!",
+ "englishUsFontType":1,
+ "frenchText":"Regarde ta meilleure performance précédente et bats ton record !\nTu peux paramétrer ceci dans le sous-menu !",
+ "frenchFontType":1,
+ "italianText":"Osserva la tua prestazione migliore e batti\nil tuo record (imposta dal sottomenu)!",
+ "italianFontType":1,
+ "germanText":"Schau dir deine vorherige Leistung an und überbiete sie!\nDie Funktion findest du im Untermenü!",
+ "germanFontType":1,
+ "spanishText":"Ve tus actuaciones anteriores y supera tu\nrécord. Configúralo en el submenú.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ve tus actuaciones anteriores y supera tu\nrécord. Configúralo en el submenú.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Assista ao seu melhor desempenho anterior e bata seu recorde!\nVocê pode configurar isso no submenu!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_txt_06_title",
+ "englishUsText":"Use Support to get help with difficult songs!",
+ "englishUsFontType":1,
+ "frenchText":"Utilise le Soutien pour t'aider sur les chansons difficiles !",
+ "frenchFontType":1,
+ "italianText":"Usa Assistenza per facilitarti la vita!",
+ "italianFontType":1,
+ "germanText":"Nutze die Unterstützung bei schweren Songs!",
+ "germanFontType":1,
+ "spanishText":"¡Usa Apoyo como ayuda en las canciones difíciles!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Usa Apoyo como ayuda en las canciones difíciles.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Use a ajuda do Suporte em músicas difíceis!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"help_txt_06content",
+ "englishUsText":"There are settings to make note timings more lenient,\nto use the same buttons for both DON and KA, and numerous others!",
+ "englishUsFontType":1,
+ "frenchText":"Il existe des paramètres pour rendre le timing des notes plus souple,\npour valider les DON et KA avec n'importe quelle touche et bien d'autres choses !",
+ "frenchFontType":1,
+ "italianText":"Puoi rendere la sincronizzazione delle note più flessibile,\nusare gli stessi tasti sia per DON che per KA, e altro ancora!",
+ "italianFontType":1,
+ "germanText":"Es gibt Einstellungen, die das Noten-Timing vereinfachen,\nalle Tasten für DON und KA zulassen und vieles mehr!",
+ "germanFontType":1,
+ "spanishText":"Hay ajustes para que la cadencia de las notas sea más flexible,\npara usar los mismos botones para DON y KA, y más.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hay ajustes para que la cadencia de las notas sea más flexible,\npara usar los mismos botones para DON y KA, y más.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Há configurações para tornar o timing das notas mais leniente,\npara usar os mesmos botões para DON e KA, entre várias outras!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_abekobe_kimagure_clear",
+ "englishUsText":"Clear song with Opposite and Capricious",
+ "englishUsFontType":1,
+ "frenchText":"Termine la chanson avec\nInversion et Capricieux",
+ "frenchFontType":1,
+ "italianText":"Completa con Invertito e Capriccioso",
+ "italianFontType":1,
+ "germanText":"Song mit Entgegengesetzt und\nUnberechenbar abschließen",
+ "germanFontType":1,
+ "spanishText":"Superar canción con Opuesto y Caprichosa",
+ "spanishFontType":1,
+ "neutralSpanishText":"Superar canción con Opuesto y Caprichosa",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conclua a música com Oposto e Caprichoso",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_abekobe_clear",
+ "englishUsText":"Clear song with Opposite",
+ "englishUsFontType":1,
+ "frenchText":"Termine la chanson avec Inversion",
+ "frenchFontType":1,
+ "italianText":"Completa con Invertito",
+ "italianFontType":1,
+ "germanText":"Song mit Entgegengesetzt abschließen",
+ "germanFontType":1,
+ "spanishText":"Superar canción con Opuesto",
+ "spanishFontType":1,
+ "neutralSpanishText":"Superar canción con Opuesto",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conclua a música com Oposto",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_kimagure_clear",
+ "englishUsText":"Clear song with Capricious",
+ "englishUsFontType":1,
+ "frenchText":"Termine la chanson avec Capricieux",
+ "frenchFontType":1,
+ "italianText":"Completa con Capriccioso",
+ "italianFontType":1,
+ "germanText":"Song mit Unberechenbar abschließen",
+ "germanFontType":1,
+ "spanishText":"Superar canción con Caprichosa",
+ "spanishFontType":1,
+ "neutralSpanishText":"Superar canción con Caprichosa",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conclua a música com Caprichoso",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_x3_clear",
+ "englishUsText":"Clear song with 3x Speed",
+ "englishUsFontType":1,
+ "frenchText":"Termine la chanson avec Vitesse x3",
+ "frenchFontType":1,
+ "italianText":"Completa a velocità x3",
+ "italianFontType":1,
+ "germanText":"Song mit Tempo x3 abschließen",
+ "germanFontType":1,
+ "spanishText":"Superar canción con velocidad x3",
+ "spanishFontType":1,
+ "neutralSpanishText":"Superar canción con velocidad x3",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conclua a música com Velocidade x3",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_detarame_clear",
+ "englishUsText":"Clear song with Haphazard",
+ "englishUsFontType":1,
+ "frenchText":"Termine la chanson avec Au hasard",
+ "frenchFontType":1,
+ "italianText":"Completa con Imprevedibile",
+ "italianFontType":1,
+ "germanText":"Song mit Wahllos abschließen",
+ "germanFontType":1,
+ "spanishText":"Superar canción con Caótico",
+ "spanishFontType":1,
+ "neutralSpanishText":"Superar canción con Caótico",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conclua a música com Caos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_dron_clear",
+ "englishUsText":"Clear song with Vanish",
+ "englishUsFontType":1,
+ "frenchText":"Termine la chanson avec Disparition",
+ "frenchFontType":1,
+ "italianText":"Completa con Dissolvenza",
+ "italianFontType":1,
+ "germanText":"Song mit Verschwinden abschließen",
+ "germanFontType":1,
+ "spanishText":"Superar canción con Desvanecer",
+ "spanishFontType":1,
+ "neutralSpanishText":"Superar canción con Desvanecer",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conclua a música com Esvanecer",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_x2_abekobe_clear",
+ "englishUsText":"Clear song with 2x Speed and Opposite",
+ "englishUsFontType":1,
+ "frenchText":"Termine la chanson avec\nVitesse x2 et Inversion",
+ "frenchFontType":1,
+ "italianText":"Completa a velocità x2 e con Invertito",
+ "italianFontType":1,
+ "germanText":"Song mit Tempo x2 und Entgegengesetzt abschließen",
+ "germanFontType":1,
+ "spanishText":"Superar canción con velocidad x2 y Opuesto",
+ "spanishFontType":1,
+ "neutralSpanishText":"Superar canción con velocidad x2 y Opuesto",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conclua a música com Velocidade x2 e Oposto",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_x2_kimagure_clear",
+ "englishUsText":"Clear song with 2x Speed and Capricious",
+ "englishUsFontType":1,
+ "frenchText":"Termine la chanson avec\nVitesse x2 et Capricieux",
+ "frenchFontType":1,
+ "italianText":"Completa a velocità x2 e con Capriccioso",
+ "italianFontType":1,
+ "germanText":"Song mit Tempo x2 und Unberechenbar abschließen",
+ "germanFontType":1,
+ "spanishText":"Superar canción con velocidad \nx2 y Caprichosa",
+ "spanishFontType":1,
+ "neutralSpanishText":"Superar canción con velocidad x2 y Caprichosa",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conclua a música com Velocidade x2 e Caprichoso",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_x2_detarame_clear",
+ "englishUsText":"Clear song with 2x Speed and Haphazard",
+ "englishUsFontType":1,
+ "frenchText":"Termine la chanson avec\nVitesse x2 et Au hasard",
+ "frenchFontType":1,
+ "italianText":"Completa a velocità x2 e con Imprevedibile",
+ "italianFontType":1,
+ "germanText":"Song mit Tempo x2 und \nWahllos abschließen",
+ "germanFontType":1,
+ "spanishText":"Superar canción con velocidad\nx2 y Caótico",
+ "spanishFontType":1,
+ "neutralSpanishText":"Superar canción con velocidad x2 y Caótico",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conclua a música com Velocidade x2 e Caos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_x2_clear",
+ "englishUsText":"Clear song with 2x Speed",
+ "englishUsFontType":1,
+ "frenchText":"Termine la chanson avec Vitesse x2",
+ "frenchFontType":1,
+ "italianText":"Completa a velocità x2",
+ "italianFontType":1,
+ "germanText":"Song mit Tempo x2 abschließen",
+ "germanFontType":1,
+ "spanishText":"Superar canción con velocidad x2",
+ "spanishFontType":1,
+ "neutralSpanishText":"Superar canción con velocidad x2",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conclua a música com Velocidade x2",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_normaclear_hard",
+ "englishUsText":"Clear song on Hard or higher",
+ "englishUsFontType":1,
+ "frenchText":"Termine la chanson en\nDifficile ou supérieur",
+ "frenchFontType":1,
+ "italianText":"Completa (livello Difficile o superiore)",
+ "italianFontType":1,
+ "germanText":"Song auf Schwer oder höher\nabschließen",
+ "germanFontType":1,
+ "spanishText":"Superar canción en Difícil o +",
+ "spanishFontType":1,
+ "neutralSpanishText":"Superar canción en Difícil o +",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conclua a música em Difícil ou sup.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_fullcombo_hard",
+ "englishUsText":"Full Combo on Hard or higher",
+ "englishUsFontType":1,
+ "frenchText":"Combo max en Difficile ou supérieur",
+ "frenchFontType":1,
+ "italianText":"Combo unica (livello Difficile o superiore)",
+ "italianFontType":1,
+ "germanText":"Vollständige Kombo auf\nSchwer oder höher",
+ "germanFontType":1,
+ "spanishText":"Combo completo en Difícil o +",
+ "spanishFontType":1,
+ "neutralSpanishText":"Combo completo en Difícil o +",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Combo completo em Difícil ou sup.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_tamachii_hard",
+ "englishUsText":"Raise your Soul Gauge to %d\non Hard or higher",
+ "englishUsFontType":1,
+ "frenchText":"Fais monter ta jauge jusqu'à %d\nou plus en Difficile ou supérieur",
+ "frenchFontType":1,
+ "italianText":"Porta l'indic. Anima a %d\n(livello Difficile o superiore)",
+ "italianFontType":1,
+ "germanText":"Seelenanzeige auf %d oder höher\nauf Schwer",
+ "germanFontType":1,
+ "spanishText":"Subir el indicador de Alma a %d\nen Difícil o +",
+ "spanishFontType":1,
+ "neutralSpanishText":"Subir el indicador de Alma a %d o + en Difícil o +",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eleve seu Medidor de Alma a %d\nem Difícil ou sup.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_sscore_hard",
+ "englishUsText":"Get a Shin-Uchi score of %d\non Hard or higher",
+ "englishUsFontType":1,
+ "frenchText":"Fais un score Shin-Uchi de %d\nou plus en Difficile ou supérieur",
+ "frenchFontType":1,
+ "italianText":"Ottieni un punteggio Shin-Uchi di %d\n(livello Difficile o superiore)",
+ "italianFontType":1,
+ "germanText":"Shin-Uchi-Punktestand von %d \noder höher auf Schwer",
+ "germanFontType":1,
+ "spanishText":"Conseguir puntuación Shin-Uchi de %d\nen Difícil o +",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conseguir puntuación Shin-Uchi de %d en Difícil o +",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Faça pontuação Shin-Uchi de %d\nem Difícil ou sup.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_fuka_hard",
+ "englishUsText":"Get fewer than %d BADs\non Hard or higher",
+ "englishUsFontType":1,
+ "frenchText":"Fais moins de %d MAUVAIS\nen Difficile ou supérieur",
+ "frenchFontType":1,
+ "italianText":"Ottieni meno di %d MALE (livello Difficile o superiore)\n",
+ "italianFontType":1,
+ "germanText":"Weniger als %d ÜBEL\nauf Schwer oder höher",
+ "germanFontType":1,
+ "spanishText":"Conseguir menos de %d MAL\nen Difícil o +",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conseguir menos de %d MAL\nen Difícil o +",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Receba menos de %d RUINS\nem Difícil ou sup.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_x4_clear",
+ "englishUsText":"Clear song with 4x Speed",
+ "englishUsFontType":1,
+ "frenchText":"Termine la chanson avec Vitesse x4",
+ "frenchFontType":1,
+ "italianText":"Completa a velocità x4",
+ "italianFontType":1,
+ "germanText":"Song mit Tempo x4 abschließen",
+ "germanFontType":1,
+ "spanishText":"Superar canción con velocidad x4",
+ "spanishFontType":1,
+ "neutralSpanishText":"Superar canción con velocidad x4",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conclua a música com Velocidade x4",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_score",
+ "englishUsText":"Get a normal score of %d or higher",
+ "englishUsFontType":1,
+ "frenchText":"Fais un score normal\nde %d ou plus",
+ "frenchFontType":1,
+ "italianText":"Ottieni un punteggio standard di almeno %d",
+ "italianFontType":1,
+ "germanText":"Normaler Punktestand von %d \noder höher",
+ "germanFontType":1,
+ "spanishText":"Conseguir puntuación normal de %d o +",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conseguir puntuación normal de %d o +",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Faça pontuação normal de %d ou mais",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_total_score",
+ "englishUsText":"Get a total normal score of %d or higher",
+ "englishUsFontType":1,
+ "frenchText":"Fais un score normal total\nde %d ou plus",
+ "frenchFontType":1,
+ "italianText":"Ottieni un punteggio standard di almeno %d",
+ "italianFontType":1,
+ "germanText":"Normaler Gesamtpunktestand von %d oder höher",
+ "germanFontType":1,
+ "spanishText":"Conseguir puntuación normal total\nde %d o +",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conseguir puntuación normal total de %d o +",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Faça pontuação normal total de %d ou mais",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_normaclear",
+ "englishUsText":"Clear song",
+ "englishUsFontType":1,
+ "frenchText":"Termine la chanson",
+ "frenchFontType":1,
+ "italianText":"Completa canzone",
+ "italianFontType":1,
+ "germanText":"Song abschließen",
+ "germanFontType":1,
+ "spanishText":"Superar canción",
+ "spanishFontType":1,
+ "neutralSpanishText":"Superar canción",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conclua a música",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_fullcombo",
+ "englishUsText":"Full Combo",
+ "englishUsFontType":1,
+ "frenchText":"Combo max",
+ "frenchFontType":1,
+ "italianText":"Combo unica",
+ "italianFontType":1,
+ "germanText":"Vollständige Kombo",
+ "germanFontType":1,
+ "spanishText":"Combo completo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Combo completo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Combo completo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_total_left",
+ "englishUsText":"%d to go",
+ "englishUsFontType":1,
+ "frenchText":"Plus que %d",
+ "frenchFontType":1,
+ "italianText":"%d rimasti",
+ "italianFontType":1,
+ "germanText":"Noch %d",
+ "germanFontType":1,
+ "spanishText":"Falta(n) %d",
+ "spanishFontType":1,
+ "neutralSpanishText":"Falta(n) %d",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Falta(m) %d",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_neiro_clear",
+ "englishUsText":"Clear the quota with\nthe %s.",
+ "englishUsFontType":1,
+ "frenchText":"Remplis le quota avec\n%s.",
+ "frenchFontType":1,
+ "italianText":"Raggiungi l'obiettivo con\n %s.",
+ "italianFontType":1,
+ "germanText":"Quote mit\n%s abschließen.",
+ "germanFontType":1,
+ "spanishText":"Consigue el mínimo con\nel %s.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Consigue el mínimo con\nel %s.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Atinja a cota com\n%s.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_tamachii",
+ "englishUsText":"Raise your Soul Gauge to %d or higher",
+ "englishUsFontType":1,
+ "frenchText":"Fais monter ta jauge\njusqu'à %d ou plus",
+ "frenchFontType":1,
+ "italianText":"Porta l'indic. Anima ad almeno %d",
+ "italianFontType":1,
+ "germanText":"Seelenanzeige auf %d oder höher",
+ "germanFontType":1,
+ "spanishText":"Subir el indicador de Alma a %d o +",
+ "spanishFontType":1,
+ "neutralSpanishText":"Subir el indicador de Alma a %d o +",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eleve seu Medidor de Alma a %d ou mais",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_maxcombo",
+ "englishUsText":"Get a max combo of %d or higher",
+ "englishUsFontType":1,
+ "frenchText":"Fais un combo max de %d ou plus",
+ "frenchFontType":1,
+ "italianText":"Esegui una combo massima di almeno %d",
+ "italianFontType":1,
+ "germanText":"Maximale Kombo mit %d oder mehr",
+ "germanFontType":1,
+ "spanishText":"Conseguir combo máximo de %d o +",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conseguir combo máximo de %d o +",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Faça um combo máx. de %d ou mais",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_sscore",
+ "englishUsText":"Get a Shin-Uchi score of %d or higher",
+ "englishUsFontType":1,
+ "frenchText":"Fais un score Shin-Uchi\nde %d ou plus",
+ "frenchFontType":1,
+ "italianText":"Ottieni un punteggio Shin-Uchi di almeno %d",
+ "italianFontType":1,
+ "germanText":"Shin-Uchi-Punktestand von %d \noder höher",
+ "germanFontType":1,
+ "spanishText":"Conseguir puntuación Shin-Uchi \nde %d o +",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conseguir puntuación Shin-Uchi de %d o +",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Faça pontuação Shin-Uchi de %d ou mais",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_total_sscore",
+ "englishUsText":"Get a total Shin-Uchi score of %d or higher",
+ "englishUsFontType":1,
+ "frenchText":"Fais un score Shin-Uchi total\nde %d ou plus",
+ "frenchFontType":1,
+ "italianText":"Ottieni un punteggio Shin-Uchi\ntotale di almeno %d",
+ "italianFontType":1,
+ "germanText":"Gesamt Shin-Uchi-Punktestand\nvon %d oder höher",
+ "germanFontType":1,
+ "spanishText":"Conseguir puntuación Shin-Uchi\ntotal de %d o +",
+ "spanishFontType":1,
+ "neutralSpanishText":"Obtén un puntaje Shin-Uchi de %d o superior",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Obtenha uma pontuação Shin-Uchi de %d ou superior",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_hitcount",
+ "englishUsText":"Get more than %d hits",
+ "englishUsFontType":1,
+ "frenchText":"Réussis plus de %d notes",
+ "frenchFontType":1,
+ "italianText":"Suona più di %d note a tempo",
+ "italianFontType":1,
+ "germanText":"Mehr als %d Treffer",
+ "germanFontType":1,
+ "spanishText":"Conseguir más de %d golpes",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conseguir más de %d golpes",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Faça mais de %d acertos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_total_hitcount",
+ "englishUsText":"Get %d or more total hits",
+ "englishUsFontType":1,
+ "frenchText":"Réussis un total de %d notes ou plus",
+ "frenchFontType":1,
+ "italianText":"Suona corrett. almeno %d note",
+ "italianFontType":1,
+ "germanText":"%d oder mehr Treffer",
+ "germanFontType":1,
+ "spanishText":"Conseguir %d golpes en total o +",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conseguir %d golpes en total o +",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Faça %d ou mais acertos totais",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_fuka",
+ "englishUsText":"Get fewer than %d BADs",
+ "englishUsFontType":1,
+ "frenchText":"Fais moins de %d MAUVAIS",
+ "frenchFontType":1,
+ "italianText":"Ottieni meno di %d MALE",
+ "italianFontType":1,
+ "germanText":"Weniger als %d ÜBEL",
+ "germanFontType":1,
+ "spanishText":"Conseguir menos de %d MAL",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conseguir menos de %d MAL",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Receba menos de %d RUINS",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_ryo",
+ "englishUsText":"Get more than %d GOODs",
+ "englishUsFontType":1,
+ "frenchText":"Fais plus de %d BONS",
+ "frenchFontType":1,
+ "italianText":"Ottieni più di %d BUONO",
+ "italianFontType":1,
+ "germanText":"Mehr als %d GUT",
+ "germanFontType":1,
+ "spanishText":"Conseguir más de %d BIEN",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conseguir más de %d BIEN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Receba mais de %d BONS",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_total_ryo",
+ "englishUsText":"Get %d or more total GOOD hits",
+ "englishUsFontType":1,
+ "frenchText":"Réussis un total de %d BONS ou plus",
+ "frenchFontType":1,
+ "italianText":"Ottieni almeno %d BUONO",
+ "italianFontType":1,
+ "germanText":"%d oder mehr GUTE Treffer",
+ "germanFontType":1,
+ "spanishText":"Conseguir %d golpes BIEN en total o +",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conseguir %d golpes BUENO en total o +",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Faça %d ou mais acertos BONS totais",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mission_bingo_renda",
+ "englishUsText":"Get a drumroll of %d or higher",
+ "englishUsFontType":1,
+ "frenchText":"Fais un roulement de tambour\nde %d ou plus",
+ "frenchFontType":1,
+ "italianText":"Esegui un rullo di tamburo di almeno %d",
+ "italianFontType":1,
+ "germanText":"Trommelwirbel mit %d \noder höher",
+ "germanFontType":1,
+ "spanishText":"Conseguir redoble de %d o +",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conseguir redoble de %d o +",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Faça um rufo de tambor de %d ou mais",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mode_select_gasha",
+ "englishUsText":"Treasure Boxes",
+ "englishUsFontType":1,
+ "frenchText":"Coffres\nau trésor",
+ "frenchFontType":1,
+ "italianText":"Scrigni",
+ "italianFontType":1,
+ "germanText":"Schatzkisten",
+ "germanFontType":1,
+ "spanishText":"Cajas de tesoro",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cajas de tesoro",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Caixas de\nTesouro",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mode_select_comment_gasha",
+ "englishUsText":"Use the DON coins you’ve collected to open Treasure Boxes\nand get clothes, instruments, titles, and more.",
+ "englishUsFontType":1,
+ "frenchText":"Utilise les pièces DON récupérées pour ouvrir des coffres\net obtenir des vêtements, des instruments, des titres et bien plus.",
+ "frenchFontType":1,
+ "italianText":"Spendi le monete DON raccolte per aprire gli scrigni\ne ottenere abiti, strumenti, titoli e altro.",
+ "italianFontType":1,
+ "germanText":"Nutze deine DON-Münzen, um Schatzkisten zu öffnen\nund so an Kleidung, Instrumente, Titel und vieles mehr zu kommen.",
+ "germanFontType":1,
+ "spanishText":"Usa las monedas DON que has reunido para abrir cajas de tesoro\ny conseguir ropa, instrumentos, títulos y más cosas.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Usa las monedas DON que recibiste para abrir cajas de tesoro\ny conseguir ropa, instrumentos, títulos y más cosas.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Use as moedas DON que você coletou para abrir Caixas de Tesouro\ne obter roupas, instrumentos, títulos e mais.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mode_select_comment_event",
+ "englishUsText":"(tentative)View status of currently ongoing events.\nEvents let players join one of two teams\nand compete to see who can earn the most points.",
+ "englishUsFontType":1,
+ "frenchText":"Consulte le statut des événements en cours. Les événements\npermettent aux joueurs de rejoindre une équipe et de concourir\ncontre une autre pour voir qui obtiendra le plus de points.",
+ "frenchFontType":1,
+ "italianText":"(prova) Vedi lo stato degli eventi in corso.\nNegli eventi i giocatori si dividono in squadre\ne competono per ottenere il punteggio più elevato.",
+ "italianFontType":1,
+ "germanText":"(vorläufig)Schau dir den Status derzeit laufender Events an.\nBei Events können sich die Spieler einem von zwei Teams anschließen,\ndie gegeneinander antreten und versuchen, möglichst viele Punkte zu sammeln.",
+ "germanFontType":1,
+ "spanishText":"Ve el estado de los eventos en curso.\nLos eventos permiten a los jugadores entrar en uno de dos\nequipos y competir a ver quién gana más puntos.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ve el estado de los eventos en curso.\nLos eventos permiten a los jugadores entrar en uno de dos\nequipos y competir a ver quién gana más puntos.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Veja o status dos eventos em andamento.\nEm eventos, os jogadores escolhem uma de duas equipes\npara entrar e competir pela maior arrecadação de pontos.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mode_select_event",
+ "englishUsText":"Events",
+ "englishUsFontType":1,
+ "frenchText":"Événements",
+ "frenchFontType":1,
+ "italianText":"Eventi",
+ "italianFontType":1,
+ "germanText":"Events",
+ "germanFontType":1,
+ "spanishText":"Eventos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Eventos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eventos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mode_select_studio",
+ "englishUsText":"Customization Room",
+ "englishUsFontType":1,
+ "frenchText":"Salle de\npersonnalisation",
+ "frenchFontType":1,
+ "italianText":"Personalizza",
+ "italianFontType":1,
+ "germanText":"Anpassungsraum",
+ "germanFontType":1,
+ "spanishText":"Sala de personalización",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sala de personalización",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sala de\npersonalização",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mode_select_comment_studio",
+ "englishUsText":"Change DON-chan’s appearance and title.",
+ "englishUsFontType":1,
+ "frenchText":"Modifie l'apparence et le titre de DON-chan.",
+ "frenchFontType":1,
+ "italianText":"Modifica l'aspetto e il titolo di DON-chan.",
+ "italianFontType":1,
+ "germanText":"Passe DON-chans Aussehen und Titel an.",
+ "germanFontType":1,
+ "spanishText":"Cambia la apariencia y el título de DON-chan.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cambia la apariencia y el título de DON-chan.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mude a aparência e o título de DON-chan.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mode_select_configuration",
+ "englishUsText":"Game Settings",
+ "englishUsFontType":1,
+ "frenchText":"Paramètres de jeu",
+ "frenchFontType":1,
+ "italianText":"Impostazioni",
+ "italianFontType":1,
+ "germanText":"Spieloptionen",
+ "germanFontType":1,
+ "spanishText":"Ajustes del juego",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ajustes del juego",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Configurações\nde jogo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mode_select_comment_configuration",
+ "englishUsText":"View and change various settings.\nAdjust note positions and timing, view the tutorial, and more.",
+ "englishUsFontType":1,
+ "frenchText":"Consulte et change divers paramètres.\nAjuste la position et le timing des notes,\nregarde le didacticiel et bien plus encore.",
+ "frenchFontType":1,
+ "italianText":"Vedi e modifica varie impostazioni.\nRegola posizione e tempismo delle note, vedi il tutorial e altro.",
+ "italianFontType":1,
+ "germanText":"Lege verschiedene Optionen fest.\nPasse etwa Noten-Position und -Timing an, schau dir das Tutorial an und vieles mehr.",
+ "germanFontType":1,
+ "spanishText":"Ve y cambia diversos ajustes.\nAjusta la posición y la cadencia de las\nnotas, mira el tutorial y más cosas.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ve y cambia diversos ajustes.\nAjusta la posición y la cadencia de las\nnotas, mira el tutorial y más cosas.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Veja e altere várias configurações.\nAjuste posições e timing de notas, veja o tutorial e mais.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mode_select",
+ "englishUsText":"Select Mode",
+ "englishUsFontType":1,
+ "frenchText":"Choisis un mode",
+ "frenchFontType":1,
+ "italianText":"Seleziona modalità",
+ "italianFontType":1,
+ "germanText":"Modus wählen",
+ "germanFontType":1,
+ "spanishText":"Elegir modo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Elegir modo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Selecionar modo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mode_select_enso",
+ "englishUsText":"Taiko Mode",
+ "englishUsFontType":1,
+ "frenchText":"Mode Taiko",
+ "frenchFontType":1,
+ "italianText":"Modalità Taiko",
+ "italianFontType":1,
+ "germanText":"Taiko-Modus",
+ "germanFontType":1,
+ "spanishText":"Modo Taiko",
+ "spanishFontType":1,
+ "neutralSpanishText":"Modo Taiko",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Modo Taiko",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mode_select_dlc",
+ "englishUsText":"DLC",
+ "englishUsFontType":1,
+ "frenchText":"DLC",
+ "frenchFontType":1,
+ "italianText":"DLC",
+ "italianFontType":1,
+ "germanText":"DLC",
+ "germanFontType":1,
+ "spanishText":"Contenido descargable",
+ "spanishFontType":1,
+ "neutralSpanishText":"Contenido descargable",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DLC",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"report_card_clear_songs",
+ "englishUsText":"Songs Cleared",
+ "englishUsFontType":1,
+ "frenchText":"Chansons terminées",
+ "frenchFontType":1,
+ "italianText":"Canzoni completate",
+ "italianFontType":1,
+ "germanText":"Abgeschlossene Songs",
+ "germanFontType":1,
+ "spanishText":"Canciones superadas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Canciones superadas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Músicas concluídas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"report_card_full_songs",
+ "englishUsText":"Songs Full Comboed",
+ "englishUsFontType":1,
+ "frenchText":"Chansons terminées avec combo max",
+ "frenchFontType":1,
+ "italianText":"Canzoni compl. con combo",
+ "italianFontType":1,
+ "germanText":"Songs mit vollständigen Kombos",
+ "germanFontType":1,
+ "spanishText":"Canciones con combos completos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Canciones con combos completos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Músicas com combo completo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"report_card_play_count",
+ "englishUsText":"Sessions",
+ "englishUsFontType":1,
+ "frenchText":"Sessions",
+ "frenchFontType":1,
+ "italianText":"Sessioni",
+ "italianFontType":1,
+ "germanText":"Sessions",
+ "germanFontType":1,
+ "spanishText":"Tamborradas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tamboradas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sessões",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"report_bingo_comp",
+ "englishUsText":"Completed Cards",
+ "englishUsFontType":1,
+ "frenchText":"Cartes terminées",
+ "frenchFontType":1,
+ "italianText":"Carte completate",
+ "italianFontType":1,
+ "germanText":"Abgeschlossene Karten",
+ "germanFontType":1,
+ "spanishText":"Cartones completados",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cartones completados",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Cartelas completadas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"report_card",
+ "englishUsText":"Report Card",
+ "englishUsFontType":1,
+ "frenchText":"Bulletin",
+ "frenchFontType":1,
+ "italianText":"Segnapunti",
+ "italianFontType":1,
+ "germanText":"Zeugnis",
+ "germanFontType":1,
+ "spanishText":"Mostrar cartón",
+ "spanishFontType":1,
+ "neutralSpanishText":"Presentar cartón",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Desempenho",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"dialog_save_error",
+ "englishUsText":"Unable to overwrite due to insufficient storage.",
+ "englishUsFontType":1,
+ "frenchText":"Impossible d'écraser, espace disponible insuffisant.",
+ "frenchFontType":1,
+ "italianText":"Impossibile sovrascrivere. Spazio libero insufficiente.",
+ "italianFontType":1,
+ "germanText":"Überschreiben nicht möglich, nicht genug Speicherplatz.",
+ "germanFontType":1,
+ "spanishText":"No se puede sobrescribir porque no hay suficiente espacio.",
+ "spanishFontType":1,
+ "neutralSpanishText":"No se puede sobrescribir porque no hay suficiente espacio.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Não foi possível sobrescrever devido a espaço insuficiente.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mode_select_dani",
+ "englishUsText":"Ranked Match",
+ "englishUsFontType":1,
+ "frenchText":"Match classé",
+ "frenchFontType":1,
+ "italianText":"Partita classificata",
+ "italianFontType":1,
+ "germanText":"Ranglisten-Partie",
+ "germanFontType":1,
+ "spanishText":"Partida clasificatoria",
+ "spanishFontType":1,
+ "neutralSpanishText":"Partida igualada",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Partida\nranqueada",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mode_select_comment_dani",
+ "englishUsText":"Try your hand against other players’ ghosts.\n*Only available in solo play.",
+ "englishUsFontType":1,
+ "frenchText":"Fais-toi la main contre le fantôme des autres joueurs.\n*Uniquement disponible en solo.",
+ "frenchFontType":1,
+ "italianText":"Confrontati con i dati fantasma di altri giocatori.\n*Disponibile solo in solitaria.",
+ "italianFontType":1,
+ "germanText":"Tritt gegen die Geister anderer Spieler an.\n*Nur im Einzelspielermodus verfügbar.",
+ "germanFontType":1,
+ "spanishText":"Mide tu habilidad contra los\nfantasmas de otros jugadores.\n*Solo disponible en solitario.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mide tu habilidad contra los\nfantasmas de otros jugadores.\n*Solo disponible en solitario.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Veja como você se sai contra fantasmas de outros jogadores.\n*Disponível apenas em jogo individual.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mode_select_comment_enso",
+ "englishUsText":"Play your favorite songs on a difficulty that’s just right for you.\nYou can also play with characters or friends\nor practice any song you like.",
+ "englishUsFontType":1,
+ "frenchText":"Joue à tes chansons préférées dans une difficulté adaptée\nà ton niveau. Tu peux également jouer avec des personnages\net des amis ou t'entraîner sur la chanson de ton choix.",
+ "frenchFontType":1,
+ "italianText":"Suona le tue canzoni preferite al livello di difficoltà giusto per te.\nPuoi anche giocare insieme ad amici e ospiti\no allenarti con la canzone che preferisci.",
+ "italianFontType":1,
+ "germanText":"Spiele deine Lieblingssongs auf dem Schwierigkeitsgrad, der am besten zu dir passt.\nDu kannst auch mit Charakteren oder Freunden spielen\noder einen beliebigen Song üben.",
+ "germanFontType":1,
+ "spanishText":"Toca tus canciones favoritas en la dificultad más acorde para ti.\nTambién puedes tocar con personajes o amigos\no practicar la canción que quieras.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Toca tus canciones favoritas en la dificultad más acorde para ti.\nTambién puedes tocar con personajes o amigos\no practicar la canción que quieras.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Jogue suas músicas favoritas na dificuldade certa para você.\nTambém é possível jogar com personagens e amigos\nou praticar qualquer música que desejar.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"mode_select_comment_dlc",
+ "englishUsText":"Visit the PlayStation™Store to get new\nsongs and other additional content.\n*You can also listen to the songs.",
+ "englishUsFontType":1,
+ "frenchText":"Rends-toi sur le PlayStation™Store pour obtenir\nde nouvelles chansons et d'autres contenus supplémentaires.\n*Tu peux également écouter les chansons.",
+ "frenchFontType":1,
+ "italianText":"Visita il PlayStation™Store per ottenere\nnuove canzoni e altri contenuti aggiuntivi.\n*Puoi anche ascoltare le canzoni.",
+ "italianFontType":1,
+ "germanText":"Besuche den PlayStation™Store, um dir neue\nSongs und andere Inhalte herunterzuladen.\n*Du kannst die Songs auch anhören.",
+ "germanFontType":1,
+ "spanishText":"Visita la PlayStation™Store para conseguir nuevas\ncanciones y contenido adicional.\n*También puedes escuchar las canciones.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Visita PlayStation™Store para conseguir nuevas\ncanciones y contenido adicional.\n*También puedes escuchar las canciones.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Visite a PlayStation™Store para obter novas\nmúsicas e outros conteúdos adicionais.\n*Você também pode ouvir as músicas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_point",
+ "englishUsText":"VS Points",
+ "englishUsFontType":1,
+ "frenchText":"Points VS",
+ "frenchFontType":1,
+ "italianText":"Punti VS",
+ "italianFontType":1,
+ "germanText":"VS-Punkte",
+ "germanFontType":1,
+ "spanishText":"Puntos de combate",
+ "spanishFontType":1,
+ "neutralSpanishText":"Puntos de combate",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pontos VS",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_pause_menu1",
+ "englishUsText":"%n Remaining",
+ "englishUsFontType":1,
+ "frenchText":"%n restant(s)",
+ "frenchFontType":1,
+ "italianText":"%n rimasti",
+ "italianFontType":1,
+ "germanText":"%n verbleibend",
+ "germanFontType":1,
+ "spanishText":"%n restante(s)",
+ "spanishFontType":1,
+ "neutralSpanishText":"%n restante(s)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Restante: %n",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_pause_menu2",
+ "englishUsText":"Give Up",
+ "englishUsFontType":1,
+ "frenchText":"Abandonner",
+ "frenchFontType":1,
+ "italianText":"Arrenditi",
+ "italianFontType":1,
+ "germanText":"Aufgeben",
+ "germanFontType":1,
+ "spanishText":"Rendirse",
+ "spanishFontType":1,
+ "neutralSpanishText":"Rendirse",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Desistir",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_pause_quit_cert",
+ "englishUsText":"Quit Evaluation Match",
+ "englishUsFontType":1,
+ "frenchText":"Quitter le match\nd'évaluation",
+ "frenchFontType":1,
+ "italianText":"Abbandona partita\ndi valutazione",
+ "italianFontType":1,
+ "germanText":"Bewertungspartie beenden",
+ "germanFontType":1,
+ "spanishText":"Dejar partida\nde evaluación",
+ "spanishFontType":1,
+ "neutralSpanishText":"Dejar partida de eval.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sair da partida avaliativa",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_ranking_guide1",
+ "englishUsText":"Toggle Top and Self",
+ "englishUsFontType":1,
+ "frenchText":"Meilleur/Moi",
+ "frenchFontType":1,
+ "italianText":"Cima/Tu",
+ "italianFontType":1,
+ "germanText":"Top/selbst",
+ "germanFontType":1,
+ "spanishText":"Alternar mejor/tú",
+ "spanishFontType":1,
+ "neutralSpanishText":"Alternar superior y propio",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alternar Melhores/Eu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_ranking_guide3",
+ "englishUsText":"Friend ⇔ All",
+ "englishUsFontType":1,
+ "frenchText":"Ami ⇔ Tout",
+ "frenchFontType":1,
+ "italianText":"Amici ⇔ Tutti",
+ "italianFontType":1,
+ "germanText":"Freunde ⇔ Alle",
+ "germanFontType":1,
+ "spanishText":"Amigo ⇔ Todo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Amigo ⇔ Todo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Amigos ⇔ Todos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_ranking_guide2",
+ "englishUsText":"Profile",
+ "englishUsFontType":1,
+ "frenchText":"Profil",
+ "frenchFontType":1,
+ "italianText":"Profilo",
+ "italianFontType":1,
+ "germanText":"Profil",
+ "germanFontType":1,
+ "spanishText":"Perfil",
+ "spanishFontType":1,
+ "neutralSpanishText":"Perfil",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Perfil",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rankmatch_npc_katsu",
+ "englishUsText":"KATSU-chan",
+ "englishUsFontType":1,
+ "frenchText":"KATSU-chan",
+ "frenchFontType":1,
+ "italianText":"KATSU-chan",
+ "italianFontType":1,
+ "germanText":"KATSU-chan",
+ "germanFontType":1,
+ "spanishText":"KATSU-chan",
+ "spanishFontType":1,
+ "neutralSpanishText":"KATSU-chan",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KATSU-chan",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rankmatch_npc_curry",
+ "englishUsText":"Currycutta-DONdy",
+ "englishUsFontType":1,
+ "frenchText":"Currycutta-DONdy",
+ "frenchFontType":1,
+ "italianText":"Currycutta-DONdy",
+ "italianFontType":1,
+ "germanText":"Currycutta-DONdy",
+ "germanFontType":1,
+ "spanishText":"Currycutta-DONdy",
+ "spanishFontType":1,
+ "neutralSpanishText":"Currycutta-DONdy",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Currycutta-DONdy",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rankmatch_npc_don",
+ "englishUsText":"DON-chan",
+ "englishUsFontType":1,
+ "frenchText":"DON-chan",
+ "frenchFontType":1,
+ "italianText":"DON-chan",
+ "italianFontType":1,
+ "germanText":"DON-chan",
+ "germanFontType":1,
+ "spanishText":"DON-chan",
+ "spanishFontType":1,
+ "neutralSpanishText":"DON-chan",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DON-chan",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rankmatch_npc_yomo",
+ "englishUsText":"Yomogimaru",
+ "englishUsFontType":1,
+ "frenchText":"Yomogimaru",
+ "frenchFontType":1,
+ "italianText":"Yomogimaru",
+ "italianFontType":1,
+ "germanText":"Yomogimaru",
+ "germanFontType":1,
+ "spanishText":"Yomogimaru",
+ "spanishFontType":1,
+ "neutralSpanishText":"Yomogimaru",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Yomogimaru",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_match_search",
+ "englishUsText":"Looking for opponents...",
+ "englishUsFontType":1,
+ "frenchText":"Recherche d'adversaires...",
+ "frenchFontType":1,
+ "italianText":"Ricerca di avversari in corso",
+ "italianFontType":1,
+ "germanText":"Suche nach Gegnern ...",
+ "germanFontType":1,
+ "spanishText":"Buscando rivales...",
+ "spanishFontType":1,
+ "neutralSpanishText":"Buscando rivales...",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Buscando oponentes...",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_match_error",
+ "englishUsText":"The game was interrupted during your last match.\nThis has resulted in a loss being added to your record.",
+ "englishUsFontType":1,
+ "frenchText":"La partie a été interrompue pendant ton dernier match.\nUne défaite a été ajoutée à ton dossier.",
+ "frenchFontType":1,
+ "italianText":"La tua ultima partita è stata interrotta.\nLa partita sarà conteggiata come sconfitta.",
+ "italianFontType":1,
+ "germanText":"Das Spiel wurde während der letzten Partie unterbrochen.\nDaher wurde dir eine Niederlage zugeschrieben.",
+ "germanFontType":1,
+ "spanishText":"El juego se interrumpió en tu última partida.\nPor ello se añade una derrota a tu historial.",
+ "spanishFontType":1,
+ "neutralSpanishText":"El juego se interrumpió en tu última partida.\nPor eso se añade una derrota a tu historial.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"O jogo foi interrompido durante a sua última partida.\nIsso fez uma derrota ser adicionada à sua ficha.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_top_result",
+ "englishUsText":"VS Results",
+ "englishUsFontType":1,
+ "frenchText":"Résultats VS",
+ "frenchFontType":1,
+ "italianText":"Risultati VS",
+ "italianFontType":1,
+ "germanText":"VS-Ergebnisse",
+ "germanFontType":1,
+ "spanishText":"Resultados de combates",
+ "spanishFontType":1,
+ "neutralSpanishText":"Resultados de combates",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Resultados VS",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_top_result_help",
+ "englishUsText":"View VS Results",
+ "englishUsFontType":1,
+ "frenchText":"Voir les résultats VS",
+ "frenchFontType":1,
+ "italianText":"Vedi risultati VS",
+ "italianFontType":1,
+ "germanText":"VS-Ergebnisse ansehen",
+ "germanFontType":1,
+ "spanishText":"Ver resultados de combates",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ver resultados de combates",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ver resultados VS",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_top_title",
+ "englishUsText":"Ranked Match",
+ "englishUsFontType":1,
+ "frenchText":"Match classé",
+ "frenchFontType":1,
+ "italianText":"Partita classificata",
+ "italianFontType":1,
+ "germanText":"Ranglisten-Partie",
+ "germanFontType":1,
+ "spanishText":"Partida clasificatoria",
+ "spanishFontType":1,
+ "neutralSpanishText":"Partida igualada",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Partida ranqueada",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_top_ranking",
+ "englishUsText":"VS Points\nRanking",
+ "englishUsFontType":1,
+ "frenchText":"Classement\nde points VS",
+ "frenchFontType":1,
+ "italianText":"Classifica\npunti VS",
+ "italianFontType":1,
+ "germanText":"VS-Punkte-\nRangliste",
+ "germanFontType":1,
+ "spanishText":"Clasif. por\npuntos de combate",
+ "spanishFontType":1,
+ "neutralSpanishText":"Clasificaciones\npor PC",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ranking:\nPontos VS",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_top_ranking_help",
+ "englishUsText":"View VS Points Rankings",
+ "englishUsFontType":1,
+ "frenchText":"Voir les classements de points VS",
+ "frenchFontType":1,
+ "italianText":"Vedi classifica punti VS",
+ "italianFontType":1,
+ "germanText":"VS-Punkte-Rangliste ansehen",
+ "germanFontType":1,
+ "spanishText":"Ver clasificaciones por puntos de combate",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ver clasificaciones por puntos de combate",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ver rankings de pontos VS",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_top_match",
+ "englishUsText":"VS Match",
+ "englishUsFontType":1,
+ "frenchText":"Match VS",
+ "frenchFontType":1,
+ "italianText":"Partita VS",
+ "italianFontType":1,
+ "germanText":"VS-Partie",
+ "germanFontType":1,
+ "spanishText":"Combate",
+ "spanishFontType":1,
+ "neutralSpanishText":"Combate",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Partida VS",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_top_match_help",
+ "englishUsText":"Compete with ghosts for the top score.\nYou will be matched with an opponent at your rank.",
+ "englishUsFontType":1,
+ "frenchText":"Affronte des fantômes et fais le meilleur score.\nTon adversaire sera du même niveau que toi.",
+ "frenchFontType":1,
+ "italianText":"Competi con dati fantasma altrui.\nL'avversario sarà del tuo stesso rango.",
+ "italianFontType":1,
+ "germanText":"Kämpfe mit Geistern um den Highscore.\nDu trittst gegen Spieler ähnlichen Rangs an.",
+ "germanFontType":1,
+ "spanishText":"Compite con fantasmas por la máxima puntuación.\nTe enfrentarás a un rival de tu rango.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Compite con fantasmas por la máxima puntuación.\nTe enfrentarás a un rival de tu rango.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Compita contra fantasmas pela melhor pontuação.\nVocê enfrentará um oponente do seu ranque.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_top_match_status",
+ "englishUsText":"Evaluating Rank",
+ "englishUsFontType":1,
+ "frenchText":"Évaluation du niveau",
+ "frenchFontType":1,
+ "italianText":"Valutazione di rango",
+ "italianFontType":1,
+ "germanText":"Rangbewertung",
+ "germanFontType":1,
+ "spanishText":"Evaluando rango",
+ "spanishFontType":1,
+ "neutralSpanishText":"Evaluando rango",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Avaliando ranque",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_certification_guide",
+ "englishUsText":"Compete in an Evaluation Match\nto evaluate your rank.",
+ "englishUsFontType":1,
+ "frenchText":"Participe à un match d'évaluation\npour évaluer ton niveau.",
+ "frenchFontType":1,
+ "italianText":"Gioca una partita di valutazione\nper definire il tuo rango.",
+ "italianFontType":1,
+ "germanText":"Tritt in einer Bewertungspartie an\nund lass deinen Rang bewerten.",
+ "germanFontType":1,
+ "spanishText":"Haz una partida de evaluación\npara sopesar tu rango.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Haz una partida de evaluación\npara sopesar tu rango.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Compita em uma partida avaliativa\npara avaliar seu ranque.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_certification_help3_text",
+ "englishUsText":"View VS Points Rankings",
+ "englishUsFontType":1,
+ "frenchText":"Voir les classements de points VS",
+ "frenchFontType":1,
+ "italianText":"Vedi classifica punti VS",
+ "italianFontType":1,
+ "germanText":"VS-Punkte-Rangliste ansehen",
+ "germanFontType":1,
+ "spanishText":"Ver clasificaciones por puntos de combate",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ver clasificaciones por puntos de combate",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ver rankings de pontos VS",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_certification_help1_text",
+ "englishUsText":"Your rank will be evaluated based\non 5 Evaluation Matches.",
+ "englishUsFontType":1,
+ "frenchText":"Ton niveau sera évalué\naprès avoir effectué 5 matchs.",
+ "frenchFontType":1,
+ "italianText":"Il tuo rango verrà definito\ncon 5 partite di valutazione.",
+ "italianFontType":1,
+ "germanText":"Dein Rang wird durch 5\nBewertungspartien festgelegt.",
+ "germanFontType":1,
+ "spanishText":"Tu rango se evaluará en función\nde 5 partidas de evaluación.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tu rango se sopesará en función\nde 5 partidas de evaluación.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Seu ranque será avaliado com base\nem 5 partidas avaliativas.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_certification_help2_text",
+ "englishUsText":"Compete with ghosts for high scores.\nYou will be matched with an opponent at your rank.",
+ "englishUsFontType":1,
+ "frenchText":"Affronte des fantômes et fais le meilleur score.\nTon adversaire sera du même niveau que toi.",
+ "frenchFontType":1,
+ "italianText":"Competi con dati fantasma altrui.\nL'avversario sarà del tuo stesso rango.",
+ "italianFontType":1,
+ "germanText":"Kämpfe mit Geistern um den Highscore.\nDu trittst gegen Spieler ähnlichen Rangs an.",
+ "germanFontType":1,
+ "spanishText":"Compite con fantasmas para conseguir récords.\nSe te enfrentará a un rival de tu rango.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Compite con fantasmas para conseguir récords.\nSe te enfrentará a un rival de tu rango.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Compita contra fantasmas por recordes.\nVocê enfrentará um oponente do seu ranque.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_certification_help1_title",
+ "englishUsText":"VS Match",
+ "englishUsFontType":1,
+ "frenchText":"Match VS",
+ "frenchFontType":1,
+ "italianText":"Partita VS",
+ "italianFontType":1,
+ "germanText":"VS-Partie",
+ "germanFontType":1,
+ "spanishText":"Combate",
+ "spanishFontType":1,
+ "neutralSpanishText":"Combate",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Partida VS",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_certification_intro",
+ "englishUsText":"Play 5 Evaluation Matches to\ndetermine your starting rank.",
+ "englishUsFontType":1,
+ "frenchText":"Fais 5 matchs d'évaluation pour\ndéterminer ton niveau de départ.",
+ "frenchFontType":1,
+ "italianText":"Gioca 5 partite di valutazione\nper definire il tuo rango iniziale.",
+ "italianFontType":1,
+ "germanText":"Spiele 5 Bewertungspartien,\num deinen Rang zu bestimmen.",
+ "germanFontType":1,
+ "spanishText":"Juega 5 partidas de evaluación\npara determinar tu rango.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Juega 5 partidas de evaluación\npara determinar tu rango.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Jogue 5 partidas avaliativas para\ndeterminar seu ranque inicial.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_certification_help3_title",
+ "englishUsText":"VS Points Rankings",
+ "englishUsFontType":1,
+ "frenchText":"Classements de points VS",
+ "frenchFontType":1,
+ "italianText":"Classifica punti VS",
+ "italianFontType":1,
+ "germanText":"VS-Punkte-Rangliste",
+ "germanFontType":1,
+ "spanishText":"Clasificaciones por puntos de combate",
+ "spanishFontType":1,
+ "neutralSpanishText":"Clasificaciones por puntos de combate",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Rankings de pontos VS",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_certification_help4_text",
+ "englishUsText":"View VS Results",
+ "englishUsFontType":1,
+ "frenchText":"Voir les résultats VS",
+ "frenchFontType":1,
+ "italianText":"Vedi risultati VS",
+ "italianFontType":1,
+ "germanText":"VS-Ergebnisse ansehen",
+ "germanFontType":1,
+ "spanishText":"Ver resultados de combates",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ver resultados de combates",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ver resultados VS",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_certification_help4_title",
+ "englishUsText":"VS Results",
+ "englishUsFontType":1,
+ "frenchText":"Résultats VS",
+ "frenchFontType":1,
+ "italianText":"Risultati VS",
+ "italianFontType":1,
+ "germanText":"VS-Ergebnisse",
+ "germanFontType":1,
+ "spanishText":"Resultados de combates",
+ "spanishFontType":1,
+ "neutralSpanishText":"Resultados de combates",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Resultados VS",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_help1_title",
+ "englishUsText":"What are Ranked Matches?",
+ "englishUsFontType":1,
+ "frenchText":"Que sont les matchs classés ?",
+ "frenchFontType":1,
+ "italianText":"Cosa sono le partite classificate?",
+ "italianFontType":1,
+ "germanText":"Was sind Ranglisten-Partien?",
+ "germanFontType":1,
+ "spanishText":"¿Qué son las partidas clasificatorias?",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Qué son las partidas igualadas?",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"O que são partidas ranqueadas?",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_help1_txt",
+ "englishUsText":"Face off with other players’ ghosts!\nPlay against opponents matched to your skill level!\nKeep winning and climb the ranks!",
+ "englishUsFontType":1,
+ "frenchText":"Affronte les fantômes des autres joueurs !\nJoue contre des adversaires de même niveau !\nAccumule les victoires et monte en grade !",
+ "frenchFontType":1,
+ "italianText":"Competi con i dati fantasma altrui!\nAffronta avversari del tuo stesso rango!\nVinci e scala la classifica!",
+ "italianFontType":1,
+ "germanText":"Tritt gegen Geister anderer Spieler an!\nMiss dich mit Spielern auf deinem Niveau!\nGewinne, um im Rang aufzusteigen!",
+ "germanFontType":1,
+ "spanishText":"Enfréntate a los fantasmas de otros jugadores.\nJuega contra rivales de igual habilidad.\nSigue ganando y sube de rango.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Enfréntate a los fantasmas de otros jugadores.\nJuega contra rivales de igual habilidad.\nSigue ganando y sube de rango.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Enfrente fantasmas de outros jogadores!\nJogue contra oponentes de nível similar ao seu!\nContinue vencendo e suba nos rankings!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_help2_lose",
+ "englishUsText":"You lose!",
+ "englishUsFontType":1,
+ "frenchText":"Tu as perdu !",
+ "frenchFontType":1,
+ "italianText":"Hai perso!",
+ "italianFontType":1,
+ "germanText":"Niederlage!",
+ "germanFontType":1,
+ "spanishText":"¡Has perdido!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Perdiste!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Você perdeu!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_help2_win",
+ "englishUsText":"You win!",
+ "englishUsFontType":1,
+ "frenchText":"Tu as gagné !",
+ "frenchFontType":1,
+ "italianText":"Hai vinto!",
+ "italianFontType":1,
+ "germanText":"Sieg!",
+ "germanFontType":1,
+ "spanishText":"¡Has ganado!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Ganaste!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Você venceu!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_help2_title",
+ "englishUsText":"Compete for the top score!",
+ "englishUsFontType":1,
+ "frenchText":"Essaie d'obtenir le meilleur score !",
+ "frenchFontType":1,
+ "italianText":"Competi per il punteggio più elevato!",
+ "italianFontType":1,
+ "germanText":"Kämpfe um den Highscore!",
+ "germanFontType":1,
+ "spanishText":"¡Compite para conseguir la mayor puntuación!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Compite para conseguir la mayor puntuación!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Compita pela melhor pontuação!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_help2_txt",
+ "englishUsText":"The player with the higher score wins!",
+ "englishUsFontType":1,
+ "frenchText":"Le joueur avec le meilleur score gagne !",
+ "frenchFontType":1,
+ "italianText":"Vince il giocatore col punteggio più elevato!",
+ "italianFontType":1,
+ "germanText":"Der Spieler mit den meisten Punkten gewinnt!",
+ "germanFontType":1,
+ "spanishText":"¡Ganará el jugador que consiga más puntos!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Ganará el jugador que consiga más puntos!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"O jogador com a maior pontuação vence!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_help3_rank",
+ "englishUsText":"Rank",
+ "englishUsFontType":1,
+ "frenchText":"Niveau",
+ "frenchFontType":1,
+ "italianText":"Rango",
+ "italianFontType":1,
+ "germanText":"Rang",
+ "germanFontType":1,
+ "spanishText":"Rango",
+ "spanishFontType":1,
+ "neutralSpanishText":"Rango",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ranque",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_help3_title",
+ "englishUsText":"Collect victory medals!",
+ "englishUsFontType":1,
+ "frenchText":"Collecte des médailles de victoire !",
+ "frenchFontType":1,
+ "italianText":"Colleziona le medaglie della vittoria!",
+ "italianFontType":1,
+ "germanText":"Sammle Siegesmedaillen!",
+ "germanFontType":1,
+ "spanishText":"¡Colecciona medallas de victoria!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Colecciona medallas de victoria.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Colete medalhas de vitória!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_help3_txt",
+ "englishUsText":"You receive one medal for every win, and a bonus medal for consecutive wins!",
+ "englishUsFontType":1,
+ "frenchText":"Tu reçois une médaille par victoire et une médaille bonus pour des victoires consécutives !",
+ "frenchFontType":1,
+ "italianText":"Ricevi una medaglia per ogni vittoria e un'altra bonus in caso di vittorie consecutive.",
+ "italianFontType":1,
+ "germanText":"Du erhältst eine Medaille für jeden Sieg und eine für Siege in Folge!",
+ "germanFontType":1,
+ "spanishText":"¡Recibes una medalla por cada victoria y una extra por victorias consecutivas!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Recibes una medalla por cada victoria y una extra por victorias consecutivas.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vitórias concedem uma medalha e vitórias consecutivas dão uma medalha bônus!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_help4_title",
+ "englishUsText":"Try to climb the ranks!",
+ "englishUsFontType":1,
+ "frenchText":"Essaie de monter en grade !",
+ "frenchFontType":1,
+ "italianText":"Prova a scalare la classifica!",
+ "italianFontType":1,
+ "germanText":"Kämpfe dich an die Spitze!",
+ "germanFontType":1,
+ "spanishText":"¡Intenta subir de rango!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Intenta subir de rango.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tente subir de ranque!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_help4_txt",
+ "englishUsText":"Your rank increases once you have enough victory medals!",
+ "englishUsFontType":1,
+ "frenchText":"Ton niveau augmente lorsque tu as assez de médailles de victoires !",
+ "frenchFontType":1,
+ "italianText":"Accumula medaglie per salire di rango!",
+ "italianFontType":1,
+ "germanText":"Hast du genug Siegesmedaillen, steigst du im Rang auf!",
+ "germanFontType":1,
+ "spanishText":"¡Subirás de rango cuando tengas suficientes medallas!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Subirás de rango cuando tengas suficientes medallas.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Seu ranque aumenta obtendo medalhas de vitória suficientes!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_help5_title",
+ "englishUsText":"Collect VS points!",
+ "englishUsFontType":1,
+ "frenchText":"Collecte des points VS !",
+ "frenchFontType":1,
+ "italianText":"Colleziona punti VS!",
+ "italianFontType":1,
+ "germanText":"Sammle VS-Punkte!",
+ "germanFontType":1,
+ "spanishText":"¡Consigue puntos de combate (PC)!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Consigue puntos de combate (PC)!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Colete pontos VS!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_help5_txt",
+ "englishUsText":"Rank in and leave your friends and rivals in the dust!",
+ "englishUsFontType":1,
+ "frenchText":"Gagne des niveaux et fais mordre\nla poussière à tes amis et rivaux !",
+ "frenchFontType":1,
+ "italianText":"Sali di rango e fai mangiare la polvere\nai tuoi amici e rivali!",
+ "italianFontType":1,
+ "germanText":"Steige auf und lasse deine Freunde und Rivalen hinter dir!",
+ "germanFontType":1,
+ "spanishText":"¡Sube de rango y supera a amigos y rivales!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Sube de rango y supera a amigos y rivales!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Entre no ranking e faça seus amigos e rivais comerem poeira!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_help6_title",
+ "englishUsText":"NOTE: Quitting In-Progress Matches",
+ "englishUsFontType":1,
+ "frenchText":"REMARQUE : quitter un match en cours",
+ "frenchFontType":1,
+ "italianText":"NOTA: Abbandonare partite in corso",
+ "italianFontType":1,
+ "germanText":"HINWEIS: Laufende Partien verlassen",
+ "germanFontType":1,
+ "spanishText":"NOTA: abandonar partidas en marcha",
+ "spanishFontType":1,
+ "neutralSpanishText":"NOTA: abandonar partidas en marcha",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"OBSERVAÇÃO: Saindo de partidas em andamento",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_help6_add_txt",
+ "englishUsText":"*Please visit our official site for more details on penalties.",
+ "englishUsFontType":1,
+ "frenchText":"*Consulte notre site pour en savoir plus sur les pénalités.",
+ "frenchFontType":1,
+ "italianText":"*Per info sulle penalità, visita il nostro sito ufficiale.",
+ "italianFontType":1,
+ "germanText":"*Näheres zu Strafen findest du auf der offiziellen Webseite.",
+ "germanFontType":1,
+ "spanishText":"*Visita nuestro sitio web para saber más sobre las penalizaciones.",
+ "spanishFontType":1,
+ "neutralSpanishText":"*Visita nuestro sitio web para saber más sobre las penalizaciones.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"*Veja mais detalhes sobre penalidades no nosso site oficial.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_help6_txt",
+ "englishUsText":"If you quit the game while a match is in progress,\nit will be marked as a loss and result in a poor evaluation.",
+ "englishUsFontType":1,
+ "frenchText":"Si tu quittes la partie pendant qu'un match est en cours,\nce dernier sera considéré comme une défaite.",
+ "frenchFontType":1,
+ "italianText":"Le partite abbandonate vengono conteggiate\ncome sconfitte e costano una valutazione scarsa.",
+ "italianFontType":1,
+ "germanText":"Verlässt du eine laufende Partie,\nzählt das als Niederlage, außerdem erhältst du eine schlechte Bewertung.",
+ "germanFontType":1,
+ "spanishText":"Salir del juego durante una partida se considera\nderrota y supone una mala evaluación.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Salir del juego durante una partida se considera\nderrota y supone una mala evaluación.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Se você sair do jogo durante uma partida,\nela será considerada uma derrota e resultará em avaliação negativa.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_superior",
+ "englishUsText":"Advantage",
+ "englishUsFontType":1,
+ "frenchText":"Avantage",
+ "frenchFontType":1,
+ "italianText":"Vantaggio",
+ "italianFontType":1,
+ "germanText":"Vorteil",
+ "germanFontType":1,
+ "spanishText":"Ventaja",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ventaja",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vantagem",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_ranking_sub_id",
+ "englishUsText":"Online ID",
+ "englishUsFontType":1,
+ "frenchText":"ID en ligne",
+ "frenchFontType":1,
+ "italianText":"ID online",
+ "italianFontType":1,
+ "germanText":"Online-ID",
+ "germanFontType":1,
+ "spanishText":"ID online",
+ "spanishFontType":1,
+ "neutralSpanishText":"ID online",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ID online",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_ranking_sub_rank",
+ "englishUsText":"Ranking",
+ "englishUsFontType":1,
+ "frenchText":"Classement",
+ "frenchFontType":1,
+ "italianText":"Classifica",
+ "italianFontType":1,
+ "germanText":"Rangliste",
+ "germanFontType":1,
+ "spanishText":"Clasificación",
+ "spanishFontType":1,
+ "neutralSpanishText":"Clasificación",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ranking",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_ranking_all",
+ "englishUsText":"All",
+ "englishUsFontType":1,
+ "frenchText":"Tout",
+ "frenchFontType":1,
+ "italianText":"Tutto",
+ "italianFontType":1,
+ "germanText":"Alle",
+ "germanFontType":1,
+ "spanishText":"Todo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Todo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Todos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_ranking_L1",
+ "englishUsText":"L1",
+ "englishUsFontType":1,
+ "frenchText":"L1",
+ "frenchFontType":1,
+ "italianText":"L1",
+ "italianFontType":1,
+ "germanText":"L1",
+ "germanFontType":1,
+ "spanishText":"L1",
+ "spanishFontType":1,
+ "neutralSpanishText":"L1",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"L1",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_ranking_R1",
+ "englishUsText":"R1",
+ "englishUsFontType":1,
+ "frenchText":"R1",
+ "frenchFontType":1,
+ "italianText":"R1",
+ "italianFontType":1,
+ "germanText":"R1",
+ "germanFontType":1,
+ "spanishText":"R1",
+ "spanishFontType":1,
+ "neutralSpanishText":"R1",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"R1",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_ranking_friend",
+ "englishUsText":"Friend",
+ "englishUsFontType":1,
+ "frenchText":"Ami",
+ "frenchFontType":1,
+ "italianText":"Amici",
+ "italianFontType":1,
+ "germanText":"Freunde",
+ "germanFontType":1,
+ "spanishText":"Amigo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Amigo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Amigos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_rankup",
+ "englishUsText":"Rank Up",
+ "englishUsFontType":1,
+ "frenchText":"Niveau supérieur",
+ "frenchFontType":1,
+ "italianText":"Rango ottenuto",
+ "italianFontType":1,
+ "germanText":"Rang erhöht",
+ "germanFontType":1,
+ "spanishText":"Subida de rango",
+ "spanishFontType":1,
+ "neutralSpanishText":"Subida de rango",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Subiu de ranque",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_rankdown",
+ "englishUsText":"Rank Down",
+ "englishUsFontType":1,
+ "frenchText":"Niveau inférieur",
+ "frenchFontType":1,
+ "italianText":"Rango perso",
+ "italianFontType":1,
+ "germanText":"Rang verloren",
+ "germanFontType":1,
+ "spanishText":"Pérdida de rango",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pérdida de rango",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Caiu de ranque",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_reached_rank20",
+ "englishUsText":"Rank 20 achieved!",
+ "englishUsFontType":1,
+ "frenchText":"Niveau 20 atteint !",
+ "frenchFontType":1,
+ "italianText":"Raggiunto il rango 20!",
+ "italianFontType":1,
+ "germanText":"Rang 20 erreicht!",
+ "germanFontType":1,
+ "spanishText":"¡Rango 20 alcanzado!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Rango 20 alcanzado!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ranque 20 alcançado!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_reached_rank25",
+ "englishUsText":"Rank 25 achieved!",
+ "englishUsFontType":1,
+ "frenchText":"Niveau 25 atteint !",
+ "frenchFontType":1,
+ "italianText":"Raggiunto il rango 25!",
+ "italianFontType":1,
+ "germanText":"Rang 25 erreicht!",
+ "germanFontType":1,
+ "spanishText":"¡Rango 25 alcanzado!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Rango 25 alcanzado!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ranque 25 alcançado!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_reached_rank30",
+ "englishUsText":"Rank 30 achieved!",
+ "englishUsFontType":1,
+ "frenchText":"Niveau 30 atteint !",
+ "frenchFontType":1,
+ "italianText":"Raggiunto il rango 30!",
+ "italianFontType":1,
+ "germanText":"Rang 30 erreicht!",
+ "germanFontType":1,
+ "spanishText":"¡Rango 30 alcanzado!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Rango 30 alcanzado!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ranque 30 alcançado!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_reached_rank40",
+ "englishUsText":"Rank 40 achieved!",
+ "englishUsFontType":1,
+ "frenchText":"Niveau 40 atteint !",
+ "frenchFontType":1,
+ "italianText":"Raggiunto il rango 40!",
+ "italianFontType":1,
+ "germanText":"Rang 40 erreicht!",
+ "germanFontType":1,
+ "spanishText":"¡Rango 40 alcanzado!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Rango 40 alcanzado!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ranque 40 alcançado!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_reached_rank50",
+ "englishUsText":"Rank 50 achieved!",
+ "englishUsFontType":1,
+ "frenchText":"Niveau 50 atteint !",
+ "frenchFontType":1,
+ "italianText":"Raggiunto il rango 50!",
+ "italianFontType":1,
+ "germanText":"Rang 50 erreicht!",
+ "germanFontType":1,
+ "spanishText":"¡Rango 50 alcanzado!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Rango 50 alcanzado!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ranque 50 alcançado!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_reached_rank60",
+ "englishUsText":"Rank 60 achieved!",
+ "englishUsFontType":1,
+ "frenchText":"Niveau 60 atteint !",
+ "frenchFontType":1,
+ "italianText":"Raggiunto il rango 60!",
+ "italianFontType":1,
+ "germanText":"Rang 60 erreicht!",
+ "germanFontType":1,
+ "spanishText":"¡Rango 60 alcanzado!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Rango 60 alcanzado!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ranque 60 alcançado!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_reached_rank70",
+ "englishUsText":"Rank 70 achieved!",
+ "englishUsFontType":1,
+ "frenchText":"Niveau 70 atteint !",
+ "frenchFontType":1,
+ "italianText":"Raggiunto il rango 70!",
+ "italianFontType":1,
+ "germanText":"Rang 70 erreicht!",
+ "germanFontType":1,
+ "spanishText":"¡Rango 70 alcanzado!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Rango 70 alcanzado!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ranque 70 alcançado!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_reached_rank80",
+ "englishUsText":"Rank 80 achieved!",
+ "englishUsFontType":1,
+ "frenchText":"Niveau 80 atteint !",
+ "frenchFontType":1,
+ "italianText":"Raggiunto il rango 80!",
+ "italianFontType":1,
+ "germanText":"Rang 80 erreicht!",
+ "germanFontType":1,
+ "spanishText":"¡Rango 80 alcanzado!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Rango 80 alcanzado!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ranque 80 alcançado!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_reached_rank90",
+ "englishUsText":"Rank 90 achieved!",
+ "englishUsFontType":1,
+ "frenchText":"Niveau 90 atteint !",
+ "frenchFontType":1,
+ "italianText":"Raggiunto il rango 90!",
+ "italianFontType":1,
+ "germanText":"Rang 90 erreicht!",
+ "germanFontType":1,
+ "spanishText":"¡Rango 90 alcanzado!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Rango 90 alcanzado!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ranque 90 alcançado!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_reached_rank99",
+ "englishUsText":"Rank 99 achieved!",
+ "englishUsFontType":1,
+ "frenchText":"Niveau 99 atteint !",
+ "frenchFontType":1,
+ "italianText":"Raggiunto il rango 99!",
+ "italianFontType":1,
+ "germanText":"Rang 99 erreicht!",
+ "germanFontType":1,
+ "spanishText":"¡Rango 99 alcanzado!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Rango 99 alcanzado!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ranque 99 alcançado!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_certification",
+ "englishUsText":"Evaluation Match",
+ "englishUsFontType":1,
+ "frenchText":"Match d'évaluation",
+ "frenchFontType":1,
+ "italianText":"Partita di valutazione",
+ "italianFontType":1,
+ "germanText":"Bewertungspartie",
+ "germanFontType":1,
+ "spanishText":"Partida de evaluación",
+ "spanishFontType":1,
+ "neutralSpanishText":"Partida de evaluación",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Partida avaliativa",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_top_status_rensho",
+ "englishUsText":"%d consecutive wins!",
+ "englishUsFontType":1,
+ "frenchText":"%d victoires consécutives !",
+ "frenchFontType":1,
+ "italianText":"%d vittorie consecutive!",
+ "italianFontType":1,
+ "germanText":"%d Siege in Folge",
+ "germanFontType":1,
+ "spanishText":"¡%d victorias seguidas!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡%d victorias seguidas!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"%d vitórias consecutivas!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_top_status_progress",
+ "englishUsText":"Progress",
+ "englishUsFontType":1,
+ "frenchText":"Progression",
+ "frenchFontType":1,
+ "italianText":"Progressi",
+ "italianFontType":1,
+ "germanText":"Fortschritt",
+ "germanFontType":1,
+ "spanishText":"Progreso",
+ "spanishFontType":1,
+ "neutralSpanishText":"Progreso",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Progresso",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_certification_times_1",
+ "englishUsText":"1st Match",
+ "englishUsFontType":1,
+ "frenchText":"1er match",
+ "frenchFontType":1,
+ "italianText":"Partita 1",
+ "italianFontType":1,
+ "germanText":"1. Partie",
+ "germanFontType":1,
+ "spanishText":"1.ª partida",
+ "spanishFontType":1,
+ "neutralSpanishText":"1.ª partida",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"1ª partida",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_certification_times_2",
+ "englishUsText":"2nd Match",
+ "englishUsFontType":1,
+ "frenchText":"2e match",
+ "frenchFontType":1,
+ "italianText":"Partita 2",
+ "italianFontType":1,
+ "germanText":"2. Partie",
+ "germanFontType":1,
+ "spanishText":"2.ª partida",
+ "spanishFontType":1,
+ "neutralSpanishText":"2.ª partida",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"2ª partida",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_certification_times_3",
+ "englishUsText":"3rd Match",
+ "englishUsFontType":1,
+ "frenchText":"3e match",
+ "frenchFontType":1,
+ "italianText":"Partita 3",
+ "italianFontType":1,
+ "germanText":"3. Partie",
+ "germanFontType":1,
+ "spanishText":"3.ª partida",
+ "spanishFontType":1,
+ "neutralSpanishText":"3.ª partida",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"3ª partida",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_certification_times_4",
+ "englishUsText":"4th Match",
+ "englishUsFontType":1,
+ "frenchText":"4e match",
+ "frenchFontType":1,
+ "italianText":"Partita 4",
+ "italianFontType":1,
+ "germanText":"4. Partie",
+ "germanFontType":1,
+ "spanishText":"4.ª partida",
+ "spanishFontType":1,
+ "neutralSpanishText":"4.ª partida",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"4ª partida",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_certification_times_5",
+ "englishUsText":"5th Match",
+ "englishUsFontType":1,
+ "frenchText":"5e match",
+ "frenchFontType":1,
+ "italianText":"Partita 5",
+ "italianFontType":1,
+ "germanText":"5. Partie",
+ "germanFontType":1,
+ "spanishText":"5.ª partida",
+ "spanishFontType":1,
+ "neutralSpanishText":"5.ª partida",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"5ª partida",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_inferior",
+ "englishUsText":"Disadvantage",
+ "englishUsFontType":1,
+ "frenchText":"Désavantage",
+ "frenchFontType":1,
+ "italianText":"Svantaggio",
+ "italianFontType":1,
+ "germanText":"Nachteil",
+ "germanFontType":1,
+ "spanishText":"Desventaja",
+ "spanishFontType":1,
+ "neutralSpanishText":"Desventaja",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Desvantagem",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_result_win",
+ "englishUsText":"Win",
+ "englishUsFontType":1,
+ "frenchText":"Victoire",
+ "frenchFontType":1,
+ "italianText":"Vittoria",
+ "italianFontType":1,
+ "germanText":"Sieg",
+ "germanFontType":1,
+ "spanishText":"Victoria",
+ "spanishFontType":1,
+ "neutralSpanishText":"Victoria",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vitória",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_result_win_1word",
+ "englishUsText":"W",
+ "englishUsFontType":1,
+ "frenchText":"V",
+ "frenchFontType":1,
+ "italianText":"V",
+ "italianFontType":1,
+ "germanText":"S",
+ "germanFontType":1,
+ "spanishText":"V",
+ "spanishFontType":1,
+ "neutralSpanishText":"V",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"V",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_result_draw",
+ "englishUsText":"Draw",
+ "englishUsFontType":1,
+ "frenchText":"Égalité",
+ "frenchFontType":1,
+ "italianText":"Pareggio",
+ "italianFontType":1,
+ "germanText":"Unentschieden",
+ "germanFontType":1,
+ "spanishText":"Empate",
+ "spanishFontType":1,
+ "neutralSpanishText":"Empate",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Empate",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_result_draw_1word",
+ "englishUsText":"D",
+ "englishUsFontType":1,
+ "frenchText":"É",
+ "frenchFontType":1,
+ "italianText":"P",
+ "italianFontType":1,
+ "germanText":"U",
+ "germanFontType":1,
+ "spanishText":"E",
+ "spanishFontType":1,
+ "neutralSpanishText":"E",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"E",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_result_lose",
+ "englishUsText":"Lose",
+ "englishUsFontType":1,
+ "frenchText":"Défaite",
+ "frenchFontType":1,
+ "italianText":"Sconfitta",
+ "italianFontType":1,
+ "germanText":"Verloren",
+ "germanFontType":1,
+ "spanishText":"Derrota",
+ "spanishFontType":1,
+ "neutralSpanishText":"Derrota",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Derrota",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_result_lose_1word",
+ "englishUsText":"L",
+ "englishUsFontType":1,
+ "frenchText":"D",
+ "frenchFontType":1,
+ "italianText":"S",
+ "italianFontType":1,
+ "germanText":"V",
+ "germanFontType":1,
+ "spanishText":"D",
+ "spanishFontType":1,
+ "neutralSpanishText":"D",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"D",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_result_times_rensho",
+ "englishUsText":"Most Consecutive Wins",
+ "englishUsFontType":1,
+ "frenchText":"Maximum de victoires consécutives",
+ "frenchFontType":1,
+ "italianText":"Record vittorie consecutive",
+ "italianFontType":1,
+ "germanText":"Meiste Siege in Folge",
+ "germanFontType":1,
+ "spanishText":"Más victorias seguidas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Más victorias seguidas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vitórias consecutivas (máx.)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_result_times_win",
+ "englishUsText":"Wins",
+ "englishUsFontType":1,
+ "frenchText":"Victoires",
+ "frenchFontType":1,
+ "italianText":"Vittorie",
+ "italianFontType":1,
+ "germanText":"Siege",
+ "germanFontType":1,
+ "spanishText":"Victorias",
+ "spanishFontType":1,
+ "neutralSpanishText":"Victorias",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vitórias",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_result_win_rate",
+ "englishUsText":"Win Rate",
+ "englishUsFontType":1,
+ "frenchText":"Taux de victoire",
+ "frenchFontType":1,
+ "italianText":"% vittorie",
+ "italianFontType":1,
+ "germanText":"Siegverhältnis",
+ "germanFontType":1,
+ "spanishText":"Índice de victorias",
+ "spanishFontType":1,
+ "neutralSpanishText":"Índice de victorias",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Taxa de vitórias",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_result_times_match",
+ "englishUsText":"VS Match Count",
+ "englishUsFontType":1,
+ "frenchText":"Compteur de match VS",
+ "frenchFontType":1,
+ "italianText":"Partite VS",
+ "italianFontType":1,
+ "germanText":"VS-Partien",
+ "germanFontType":1,
+ "spanishText":"Conteo combates",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conteo combates",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Partidas VS",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_result_times_fullcombo",
+ "englishUsText":"Total Full Combo",
+ "englishUsFontType":1,
+ "frenchText":"Combo max total",
+ "frenchFontType":1,
+ "italianText":"Combo uniche totali",
+ "italianFontType":1,
+ "germanText":"Vollst. Kombos (gesamt)",
+ "germanFontType":1,
+ "spanishText":"Total combos completos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Total combos completos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Combo completo total",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_result_add_txt",
+ "englishUsText":"*Average Drumroll Hits per Second, Average Hit Rate, and GOOD Accuracy\nare tallied using the 100 most recent VS matches.",
+ "englishUsFontType":1,
+ "frenchText":"*Le taux de frappe moyen, la moyenne de coups en roulement de tambour\net la précision des BONS sont calculés sur les 100 derniers matchs VS.",
+ "frenchFontType":1,
+ "italianText":"*Colpi di rullo medi al secondo, Colpi corretti medi e Precisione: BUONO\nsono calcolati in base alle ultime 100 partite VS.",
+ "italianFontType":1,
+ "germanText":"*Treffer pro Sekunde bei Trommelwirbel, Trefferrate und GUTE Genauigkeit\nwerden anhand der letzten 100 VS-Partien bestimmt.",
+ "germanFontType":1,
+ "spanishText":"*Se cuenta el promedio de redobles conseguidos por segundo, el promedio\nde aciertos y la BUENA precisión de los últimos 100 combates.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Se cuenta el promedio de redobles conseguidos por segundo, el promedio\nde aciertos y la BUENA precisión de los últimos 100 enfrentamientos.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"*Batidas de rufo por segundo, média de acertos e precisão de BONS\nsão calculadas com base nas 100 partidas VS mais recentes.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_result_times_hit_second",
+ "englishUsText":"Max Drumroll Hits per Second",
+ "englishUsFontType":1,
+ "frenchText":"Maximum de coups en roulement de tambour par seconde",
+ "frenchFontType":1,
+ "italianText":"Colpi di rullo max/sec",
+ "italianFontType":1,
+ "germanText":"Max. Treffer/Sek. bei Tromm.",
+ "germanFontType":1,
+ "spanishText":"Redobles máximos por segundo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Redobles máximos por segundo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Batidas de rufo por s. (máx.)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_result_hit_success_rate",
+ "englishUsText":"Average Hit Rate",
+ "englishUsFontType":1,
+ "frenchText":"Taux de frappe moyen",
+ "frenchFontType":1,
+ "italianText":"Colpi corretti medi",
+ "italianFontType":1,
+ "germanText":"Trefferrate",
+ "germanFontType":1,
+ "spanishText":"Promedio de aciertos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Promedio de aciertos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Média de acertos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_result_average_hit_second",
+ "englishUsText":"Average Drumroll Hits per Second",
+ "englishUsFontType":1,
+ "frenchText":"Moyenne de coups en roulement de tambour par seconde",
+ "frenchFontType":1,
+ "italianText":"Colpi di rullo medi/sec",
+ "italianFontType":1,
+ "germanText":"Treffer/Sek. bei Trommelwirbel",
+ "germanFontType":1,
+ "spanishText":"Promedio de redobles por segundo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Promedio de redobles por segundo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Batidas de rufo por s. (média)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_result_hit_great_rate",
+ "englishUsText":"GOOD Accuracy",
+ "englishUsFontType":1,
+ "frenchText":"Précision des BONS",
+ "frenchFontType":1,
+ "italianText":"Precisione: BUONO",
+ "italianFontType":1,
+ "germanText":"GUTE Genauigkeit",
+ "germanFontType":1,
+ "spanishText":"BUENA precisión",
+ "spanishFontType":1,
+ "neutralSpanishText":"BUENA precisión",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Precisão de BONS",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_match_miss",
+ "englishUsText":"Cannot find opponents.",
+ "englishUsFontType":1,
+ "frenchText":"Aucun adversaire trouvé.",
+ "frenchFontType":1,
+ "italianText":"Impossibile trovare avversari.",
+ "italianFontType":1,
+ "germanText":"Keine Gegner gefunden.",
+ "germanFontType":1,
+ "spanishText":"No se encuentran rivales.",
+ "spanishFontType":1,
+ "neutralSpanishText":"No se encuentran rivales.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Oponentes não encontrados.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"rank_consecutive_win_bonus",
+ "englishUsText":"Consecutive Win Bonus",
+ "englishUsFontType":1,
+ "frenchText":"Bonus de victoire consécutive",
+ "frenchFontType":1,
+ "italianText":"Bonus vittorie consecutive",
+ "italianFontType":1,
+ "germanText":"Siege-in-Folge-Bonus",
+ "germanFontType":1,
+ "spanishText":"Bonif. victoria consecutiva",
+ "spanishFontType":1,
+ "neutralSpanishText":"Bonif. victoria consecutiva",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bônus por vitória consecutiva",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_banner_subtitle",
+ "englishUsText":"Limited-Time Event",
+ "englishUsFontType":1,
+ "frenchText":"Événement à durée limitée",
+ "frenchFontType":1,
+ "italianText":"Evento a tempo limitato",
+ "italianFontType":1,
+ "germanText":"Limitiertes Event",
+ "germanFontType":1,
+ "spanishText":"Evento por tiempo limitado",
+ "spanishFontType":1,
+ "neutralSpanishText":"Evento temporal",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Evento de tempo limitado",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_banner_title",
+ "englishUsText":"%s",
+ "englishUsFontType":1,
+ "frenchText":"%s",
+ "frenchFontType":1,
+ "italianText":"%s",
+ "italianFontType":1,
+ "germanText":"%s",
+ "germanFontType":1,
+ "spanishText":"%s",
+ "spanishFontType":1,
+ "neutralSpanishText":"%s",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"%s",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_banner_remain",
+ "englishUsText":"Remaining",
+ "englishUsFontType":1,
+ "frenchText":"Temps restant",
+ "frenchFontType":1,
+ "italianText":"Restanti",
+ "italianFontType":1,
+ "germanText":"Übrig",
+ "germanFontType":1,
+ "spanishText":"Restante",
+ "spanishFontType":1,
+ "neutralSpanishText":"Restante",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Restam",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_banner_remain_end",
+ "englishUsText":"Over",
+ "englishUsFontType":1,
+ "frenchText":"Terminé",
+ "frenchFontType":1,
+ "italianText":"Oltre",
+ "italianFontType":1,
+ "germanText":"Vorbei",
+ "germanFontType":1,
+ "spanishText":"Finalizado",
+ "spanishFontType":1,
+ "neutralSpanishText":"Finalizado",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Encerrado",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"days",
+ "englishUsText":"Days",
+ "englishUsFontType":1,
+ "frenchText":"Jours",
+ "frenchFontType":1,
+ "italianText":"Giorni",
+ "italianFontType":1,
+ "germanText":"Tage",
+ "germanFontType":1,
+ "spanishText":"días",
+ "spanishFontType":1,
+ "neutralSpanishText":"Días",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Dias",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"hours",
+ "englishUsText":"Hours",
+ "englishUsFontType":1,
+ "frenchText":"Heures",
+ "frenchFontType":1,
+ "italianText":"Ore",
+ "italianFontType":1,
+ "germanText":"Std.",
+ "germanFontType":1,
+ "spanishText":"horas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Horas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Horas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"minutes",
+ "englishUsText":"Min.",
+ "englishUsFontType":1,
+ "frenchText":"Min.",
+ "frenchFontType":1,
+ "italianText":"Minuti",
+ "italianFontType":1,
+ "germanText":"Min.",
+ "germanFontType":1,
+ "spanishText":"min",
+ "spanishFontType":1,
+ "neutralSpanishText":"Min.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Min.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"seconds",
+ "englishUsText":"Sec.",
+ "englishUsFontType":1,
+ "frenchText":"Sec.",
+ "frenchFontType":1,
+ "italianText":"Secondi",
+ "italianFontType":1,
+ "germanText":"Sek.",
+ "germanFontType":1,
+ "spanishText":"s",
+ "spanishFontType":1,
+ "neutralSpanishText":"Seg.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Seg.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_gohoubi",
+ "englishUsText":"Rewards",
+ "englishUsFontType":1,
+ "frenchText":"Récompenses",
+ "frenchFontType":1,
+ "italianText":"Ricompense",
+ "italianFontType":1,
+ "germanText":"Belohnungen",
+ "germanFontType":1,
+ "spanishText":"Recompensas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Recompensas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Recompensas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_need_fp",
+ "englishUsText":"FP Needed",
+ "englishUsFontType":1,
+ "frenchText":"PF requis",
+ "frenchFontType":1,
+ "italianText":"PF richiesti",
+ "italianFontType":1,
+ "germanText":"FP erforderlich",
+ "germanFontType":1,
+ "spanishText":"PF neces.",
+ "spanishFontType":1,
+ "neutralSpanishText":"PF neces.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"PF neces.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_acquired_rank",
+ "englishUsText":"Achievement Counter",
+ "englishUsFontType":1,
+ "frenchText":"Vainqueurs",
+ "frenchFontType":1,
+ "italianText":"Vincitori",
+ "italianFontType":1,
+ "germanText":"Gewinner",
+ "germanFontType":1,
+ "spanishText":"Ganadores",
+ "spanishFontType":1,
+ "neutralSpanishText":"Contador de logros",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conquistas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_get_fp",
+ "englishUsText":"FP Awarded",
+ "englishUsFontType":1,
+ "frenchText":"PF octroyés",
+ "frenchFontType":1,
+ "italianText":"PF guadagnati",
+ "italianFontType":1,
+ "germanText":"FP erhalten",
+ "germanFontType":1,
+ "spanishText":"PF concedidos",
+ "spanishFontType":1,
+ "neutralSpanishText":"PF otorgados",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"PF premiados",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_fp_boost",
+ "englishUsText":"FP Boost",
+ "englishUsFontType":1,
+ "frenchText":"Bonus PF",
+ "frenchFontType":1,
+ "italianText":"PF+",
+ "italianFontType":1,
+ "germanText":"FP-Boost",
+ "germanFontType":1,
+ "spanishText":"Potenciador PF",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pot. de PF",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Impulso de PF",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_guide_goal",
+ "englishUsText":"Collect Festival Points (FP) to get special rewards!",
+ "englishUsFontType":1,
+ "frenchText":"Collecte des points de festival (PF) pour gagner des prix !",
+ "frenchFontType":1,
+ "italianText":"Ottieni Punti Festival (PF) per ricevere ricompense speciali!",
+ "italianFontType":1,
+ "germanText":"Sammle Festivalpunkte und erhalte besondere Belohnungen!",
+ "germanFontType":1,
+ "spanishText":"¡Obtén Puntos Festival (PF) y gana recompensas especiales!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Consigue puntos de festival (PF) y llévate recompensas!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Colete Pontos de Festival (PF) e ganhe prêmios especiais!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_participation_notice",
+ "englishUsText":"*You can play online after\nranking in.",
+ "englishUsFontType":1,
+ "frenchText":"*Tu peux jouer en ligne après\nles matchs d'évaluation.",
+ "frenchFontType":1,
+ "italianText":"*Ottieni una valutazione\nper giocare online.",
+ "italianFontType":1,
+ "germanText":"*Du kannst online spielen,\nsobald du auf der Rangliste bist.",
+ "germanFontType":1,
+ "spanishText":"*Puedes jugar online tras\nclasificarte.",
+ "spanishFontType":1,
+ "neutralSpanishText":"*Podrás jugar online\ndespués de clasificarte.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"*Você pode jogar online após\nalcançar uma posição.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_duration",
+ "englishUsText":"%s to %s",
+ "englishUsFontType":1,
+ "frenchText":"%s à %s",
+ "frenchFontType":1,
+ "italianText":"%s a %s",
+ "italianFontType":1,
+ "germanText":"%s bis %s",
+ "germanFontType":1,
+ "spanishText":"%s - %s",
+ "spanishFontType":1,
+ "neutralSpanishText":"%s - %s",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"%s a %s",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_gohoubi_type_song",
+ "englishUsText":"Song \"%s\"",
+ "englishUsFontType":1,
+ "frenchText":"Chanson \"%s\"",
+ "frenchFontType":1,
+ "italianText":"Canzone: %s",
+ "italianFontType":1,
+ "germanText":"Song \"%s\"",
+ "germanFontType":1,
+ "spanishText":"Canción \"%s\"",
+ "spanishFontType":1,
+ "neutralSpanishText":"Canción \"%s\"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Música: %s",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_gohoubi_type_song_ex",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_open_info_window",
+ "englishUsText":"Events",
+ "englishUsFontType":1,
+ "frenchText":"Événement",
+ "frenchFontType":1,
+ "italianText":"Evento",
+ "italianFontType":1,
+ "germanText":"Event",
+ "germanFontType":1,
+ "spanishText":"Evento",
+ "spanishFontType":1,
+ "neutralSpanishText":"Eventos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eventos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_fp_boost_confirm",
+ "englishUsText":"Spend 3 DON Coins to double FP attained.\nUse FP Boost?",
+ "englishUsFontType":1,
+ "frenchText":"Dépense 3 pièces DON pour doubler\nles PF obtenus. Utiliser le bonus PF ?",
+ "frenchFontType":1,
+ "italianText":"Spendi 3 monete DON per raddoppiare i PF\nottenuti. Usare PF+?",
+ "italianFontType":1,
+ "germanText":"Zahl 3 DON-Münzen, um deine FP zu verdoppeln.\nFP-Boost nutzen?",
+ "germanFontType":1,
+ "spanishText":"Gasta 3 monedas DON para duplicar los PF.\n¿Usar Potenciador PF?",
+ "spanishFontType":1,
+ "neutralSpanishText":"Gasta 3 monedas DON para duplicar los PF logrados.\n¿Usar potenciador de PF?",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Use 3 moedas DON para dobrar os PF ganhos.\nVai usar um impulso de PF?",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_fp_boost_no_coin",
+ "englishUsText":"Spend 3 DON Coins to double FP earned.\n\n*You don't have enough DON Coins.",
+ "englishUsFontType":1,
+ "frenchText":"Dépense 3 pièces DON pour doubler\nles PF obtenus.\n*Tu n'as pas assez de pièces DON.",
+ "frenchFontType":1,
+ "italianText":"Spendi 3 monete DON per raddoppiate i PF\nottenuti.\n*Non disponi di monete DON sufficienti.",
+ "italianFontType":1,
+ "germanText":"Zahl 3 DON-Münzen, um deine FP zu verdoppeln.\n\n*Du hast nicht genug DON-Münzen.",
+ "germanFontType":1,
+ "spanishText":"Gasta 3 monedas DON para duplicar los PF.\n\n*No tienes suficientes monedas DON.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Gasta 3 monedas DON para duplicar los PF.\n\n*No tienes suficientes monedas DON.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Use 3 moedas DON para dobrar os PF recebidos.\n\n*Você não tem moedas DON suficientes.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_fp_boost_note",
+ "englishUsText":"*You can change this before VS Matches begin.",
+ "englishUsFontType":1,
+ "frenchText":"*Modifiable avant le début des matchs VS.",
+ "frenchFontType":1,
+ "italianText":"*Modificabile prima dell'inizio delle partite VS.",
+ "italianFontType":1,
+ "germanText":"*Du kannst dies vor Start von VS-Partien ändern.",
+ "germanFontType":1,
+ "spanishText":"*Puedes cambiarlo antes del combate.",
+ "spanishFontType":1,
+ "neutralSpanishText":"*Puedes cambiarlo antes de los combates.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"*Isso pode ser mudado antes das partidas VS.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_open_fp_boost_confirm",
+ "englishUsText":"FP Boost",
+ "englishUsFontType":1,
+ "frenchText":"Bonus PF",
+ "frenchFontType":1,
+ "italianText":"PF+",
+ "italianFontType":1,
+ "germanText":"FP-Boost",
+ "germanFontType":1,
+ "spanishText":"Potenciador PF",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pot. de PF",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Impulso de PF",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_reword_message_ex",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_reword_message_ex1",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_reword_message_ex2",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_reword_message_ex3",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_reword_message_ex4",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_reword_message",
+ "englishUsText":"%s FP attained!",
+ "englishUsFontType":1,
+ "frenchText":"%s PF atteint(s) !",
+ "frenchFontType":1,
+ "italianText":"%s PF ottenuto(i)!",
+ "italianFontType":1,
+ "germanText":"%s FP erhalten!",
+ "germanFontType":1,
+ "spanishText":"¡%s PF ganado(s)!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Lograste %s PF!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"%s PF obtidos!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_koban_get_ex",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_koban_get",
+ "englishUsText":"%s DON Coins earned!",
+ "englishUsFontType":1,
+ "frenchText":"%s pièces DON gagnées !",
+ "frenchFontType":1,
+ "italianText":"%s monete DON ottenute!",
+ "italianFontType":1,
+ "germanText":"%s DON-Münzen erhalten!",
+ "germanFontType":1,
+ "spanishText":"¡%s monedas DON ganadas!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Ganas %s mon. DON!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"%s moedas Don ganhas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_result_fp",
+ "englishUsText":"Festival Points",
+ "englishUsFontType":1,
+ "frenchText":"Points de festival",
+ "frenchFontType":1,
+ "italianText":"Punti Festival",
+ "italianFontType":1,
+ "germanText":"Festivalpunkte",
+ "germanFontType":1,
+ "spanishText":"Puntos Festival",
+ "spanishFontType":1,
+ "neutralSpanishText":"Puntos festival",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"P. de Festival",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song",
+ "englishUsText":"Song",
+ "englishUsFontType":1,
+ "frenchText":"Chanson",
+ "frenchFontType":1,
+ "italianText":"Canzone",
+ "italianFontType":1,
+ "germanText":"Song",
+ "germanFontType":1,
+ "spanishText":"Canción",
+ "spanishFontType":1,
+ "neutralSpanishText":"Canción",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Música",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_gohoubi_type_1",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_gohoubi_type_2",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_gohoubi_type_3",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_gohoubi_type_4",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_gohoubi_type_5",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_gohoubi_type_6",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_gohoubi_value_1",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_gohoubi_value_2",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_gohoubi_value_3",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_gohoubi_value_4",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_gohoubi_value_5",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_gohoubi_value_6",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_duration_body",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_fp_value_win",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_fp_value_draw",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_fp_value_lose",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_fp_value_dlc",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_fp_value_fp_boost",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_banner_title_detail",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_dlc_up",
+ "englishUsText":"Match rate up!",
+ "englishUsFontType":1,
+ "frenchText":"Corresp. améliorée",
+ "frenchFontType":1,
+ "italianText":"Frequenza aumentata!",
+ "italianFontType":1,
+ "germanText":"Trefferrate erhöht!",
+ "germanFontType":1,
+ "spanishText":"¡Clasificación!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Índ. part. arr.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"+ tx. de acerto!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_koban_info",
+ "englishUsText":"*Get 3 coins for every 10 FP",
+ "englishUsFontType":1,
+ "frenchText":"*Obtiens 3 pièces tous les 10 PF",
+ "frenchFontType":1,
+ "italianText":"*Ottieni 3 monete per ogni 10 PF",
+ "italianFontType":1,
+ "germanText":"*Erhalte 3 Münzen für jede 10 FP",
+ "germanFontType":1,
+ "spanishText":"*Consigue 3 monedas por cada 10 PF",
+ "spanishFontType":1,
+ "neutralSpanishText":"*Obtén 3 monedas por cada 10 PF",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"*Ganhe 3 moedas para cada 10 PF",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_sakura",
+ "englishUsText":"Spring Festival",
+ "englishUsFontType":1,
+ "frenchText":"Festival printanier",
+ "frenchFontType":1,
+ "italianText":"Festival primaverile",
+ "italianFontType":1,
+ "germanText":"Frühlingsfest",
+ "germanFontType":1,
+ "spanishText":"Festival primavera",
+ "spanishFontType":1,
+ "neutralSpanishText":"Fest. primavera",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"F. de Primavera",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"hint",
+ "englishUsText":"Hint",
+ "englishUsFontType":1,
+ "frenchText":"Astuce",
+ "frenchFontType":1,
+ "italianText":"Suggerimento",
+ "italianFontType":1,
+ "germanText":"Hinweis",
+ "germanFontType":1,
+ "spanishText":"Consejo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Consejo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Dica",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"loading",
+ "englishUsText":"Loading",
+ "englishUsFontType":1,
+ "frenchText":"Chargement",
+ "frenchFontType":1,
+ "italianText":"Caricamento",
+ "italianFontType":1,
+ "germanText":"Ladevorgang",
+ "germanFontType":1,
+ "spanishText":"Cargando",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cargando",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Carregando",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"session_vs",
+ "englishUsText":"Session\nwith",
+ "englishUsFontType":1,
+ "frenchText":"Session\navec",
+ "frenchFontType":1,
+ "italianText":"Sessione\ncon",
+ "italianFontType":1,
+ "germanText":"Session\nmit",
+ "germanFontType":1,
+ "spanishText":"Tamborrada con",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tamborada con",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sessão\ncom",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_kitty_load1",
+ "englishUsText":"Hello! I’m Kitty! Nice to meet you!",
+ "englishUsFontType":1,
+ "frenchText":"Salut ! Je suis Kitty !\nRavie de faire ta connaissance !",
+ "frenchFontType":1,
+ "italianText":"Ciao! Io sono Kitty!\nPiacere di conoscerti!",
+ "italianFontType":1,
+ "germanText":"Hallo! Ich bin Kitty! Schön, dich kennenzulernen!",
+ "germanFontType":1,
+ "spanishText":"Hola, soy Kitty. ¡Un placer conocerte!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hola, soy Kitty. ¡Gusto en conocerte!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Oi! Eu sou a Kitty! Muito prazer!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_kitty_load2",
+ "englishUsText":"Let’s play Taiko no Tatsujin!",
+ "englishUsFontType":1,
+ "frenchText":"Jouons à Taiko no Tatsujin !",
+ "frenchFontType":1,
+ "italianText":"Giochiamo a Taiko no Tatsujin!",
+ "italianFontType":1,
+ "germanText":"Spielen wir Taiko no Tatsujin!",
+ "germanFontType":1,
+ "spanishText":"¡Juguemos a Taiko no Tatsujin!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Juguemos a Taiko no Tatsujin!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vamos jogar Taiko no Tatsujin!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_dora_load",
+ "englishUsText":"I’m Doraemon. Nice to meet you.",
+ "englishUsFontType":1,
+ "frenchText":"Je m'appelle Doraemon.\nRavi de faire ta connaissance.",
+ "frenchFontType":1,
+ "italianText":"Io sono Doraemon.\nPiacere di conoscerti.",
+ "italianFontType":1,
+ "germanText":"Ich bin Doraemon. Schön, dich kennenzulernen.",
+ "germanFontType":1,
+ "spanishText":"Soy Doraemon. Un placer conocerte.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Soy Doraemon. Gusto en conocerte.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu sou Doraemon. Muito prazer.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_kekken_load1",
+ "englishUsText":"Let’s get started!",
+ "englishUsFontType":1,
+ "frenchText":"Commençons !",
+ "frenchFontType":1,
+ "italianText":"Cominciamo!",
+ "italianFontType":1,
+ "germanText":"Fangen wir an!",
+ "germanFontType":1,
+ "spanishText":"¡Empecemos!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Empecemos!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vamos começar!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_kekken_load2",
+ "englishUsText":"Are you ready?",
+ "englishUsFontType":1,
+ "frenchText":"Tu es prêt(e) ?",
+ "frenchFontType":1,
+ "italianText":"Siamo pronti?",
+ "italianFontType":1,
+ "germanText":"Bist du bereit?",
+ "germanFontType":1,
+ "spanishText":"¿Todo listo?",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Todo listo?",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Já se preparou?",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_miku_load1",
+ "englishUsText":"Hi there! Let’s play together!",
+ "englishUsFontType":1,
+ "frenchText":"Salut ! Jouons ensemble !",
+ "frenchFontType":1,
+ "italianText":"Ehilà! Giochiamo insieme!",
+ "italianFontType":1,
+ "germanText":"Hallo! Spielen wir zusammen!",
+ "germanFontType":1,
+ "spanishText":"Hola. ¡Toquemos algo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hola. ¡Toquemos algo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Olá! Vamos nos juntar para jogar!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_miku_load2",
+ "englishUsText":"Thanks for playing with me!",
+ "englishUsFontType":1,
+ "frenchText":"Merci de jouer avec moi !",
+ "frenchFontType":1,
+ "italianText":"Grazie per la compagnia!",
+ "italianFontType":1,
+ "germanText":"Danke, dass du mit mir spielst!",
+ "germanFontType":1,
+ "spanishText":"Gracias por jugar conmigo.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Gracias por jugar conmigo.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Obrigada por jogar comigo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"ka",
+ "englishUsText":"OK",
+ "englishUsFontType":1,
+ "frenchText":"OK",
+ "frenchFontType":1,
+ "italianText":"OK",
+ "italianFontType":1,
+ "germanText":"OK",
+ "germanFontType":1,
+ "spanishText":"VALE",
+ "spanishFontType":1,
+ "neutralSpanishText":"Casi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"OK",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"fuka",
+ "englishUsText":"BAD",
+ "englishUsFontType":1,
+ "frenchText":"MAUVAIS",
+ "frenchFontType":1,
+ "italianText":"MALE",
+ "italianFontType":1,
+ "germanText":"ÜBEL",
+ "germanFontType":1,
+ "spanishText":"MAL",
+ "spanishFontType":1,
+ "neutralSpanishText":"MAL",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"RUIM",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"ryo",
+ "englishUsText":"GOOD",
+ "englishUsFontType":1,
+ "frenchText":"BON",
+ "frenchFontType":1,
+ "italianText":"BUONO",
+ "italianFontType":1,
+ "germanText":"GUT",
+ "germanFontType":1,
+ "spanishText":"BIEN",
+ "spanishFontType":1,
+ "neutralSpanishText":"BIEN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"BOM",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_baseball",
+ "englishUsText":"Baseball",
+ "englishUsFontType":1,
+ "frenchText":"Baseball",
+ "frenchFontType":1,
+ "italianText":"Baseball",
+ "italianFontType":1,
+ "germanText":"Baseball",
+ "germanFontType":1,
+ "spanishText":"Béisbol",
+ "spanishFontType":1,
+ "neutralSpanishText":"Beisbol",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Beisebol",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_bit-tuned",
+ "englishUsText":"8-bit Drum",
+ "englishUsFontType":1,
+ "frenchText":"Tambour 8-bit",
+ "frenchFontType":1,
+ "italianText":"Tamburo 8-bit",
+ "italianFontType":1,
+ "germanText":"8-Bit-Drum",
+ "germanFontType":1,
+ "spanishText":"Tambor 8 bits",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tambor 8 bits",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tambor 8-bits",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_bongo",
+ "englishUsText":"Bongo",
+ "englishUsFontType":1,
+ "frenchText":"Bongo",
+ "frenchFontType":1,
+ "italianText":"Bongo",
+ "italianFontType":1,
+ "germanText":"Bongo",
+ "germanFontType":1,
+ "spanishText":"Bongo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Bongo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bongô",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_chinese",
+ "englishUsText":"Chinese",
+ "englishUsFontType":1,
+ "frenchText":"Chinois",
+ "frenchFontType":1,
+ "italianText":"Cinese",
+ "italianFontType":1,
+ "germanText":"Chinesisch",
+ "germanFontType":1,
+ "spanishText":"Chino",
+ "spanishFontType":1,
+ "neutralSpanishText":"Chino",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Chinês",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_conga",
+ "englishUsText":"Conga",
+ "englishUsFontType":1,
+ "frenchText":"Conga",
+ "frenchFontType":1,
+ "italianText":"Conga",
+ "italianFontType":1,
+ "germanText":"Conga",
+ "germanFontType":1,
+ "spanishText":"Conga",
+ "spanishFontType":1,
+ "neutralSpanishText":"Conga",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conga",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_digdug",
+ "englishUsText":"Dig Dug",
+ "englishUsFontType":1,
+ "frenchText":"Dig Dug",
+ "frenchFontType":1,
+ "italianText":"Dig Dug",
+ "italianFontType":1,
+ "germanText":"Dig Dug",
+ "germanFontType":1,
+ "spanishText":"Dig Dug",
+ "spanishFontType":1,
+ "neutralSpanishText":"Dig Dug",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Dig Dug",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_dolaga",
+ "englishUsText":"Druaga",
+ "englishUsFontType":1,
+ "frenchText":"Druaga",
+ "frenchFontType":1,
+ "italianText":"Druaga",
+ "italianFontType":1,
+ "germanText":"Druaga",
+ "germanFontType":1,
+ "spanishText":"Druaga",
+ "spanishFontType":1,
+ "neutralSpanishText":"Druaga",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Druaga",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_donvoice",
+ "englishUsText":"DON-chan",
+ "englishUsFontType":1,
+ "frenchText":"DON-chan",
+ "frenchFontType":1,
+ "italianText":"DON-chan",
+ "italianFontType":1,
+ "germanText":"DON-chan",
+ "germanFontType":1,
+ "spanishText":"DON-chan",
+ "spanishFontType":1,
+ "neutralSpanishText":"DON-chan",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DON-chan",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_drumkit",
+ "englishUsText":"Drumkit",
+ "englishUsFontType":1,
+ "frenchText":"Batterie",
+ "frenchFontType":1,
+ "italianText":"Batteria",
+ "italianFontType":1,
+ "germanText":"Drumkit",
+ "germanFontType":1,
+ "spanishText":"Batería",
+ "spanishFontType":1,
+ "neutralSpanishText":"Batería",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bateria",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_electric",
+ "englishUsText":"Electric Guitar",
+ "englishUsFontType":1,
+ "frenchText":"Guitare électrique",
+ "frenchFontType":1,
+ "italianText":"Chitarra elettrica",
+ "italianFontType":1,
+ "germanText":"E-Gitarre",
+ "germanFontType":1,
+ "spanishText":"Guitarra eléctrica",
+ "spanishFontType":1,
+ "neutralSpanishText":"Guitarra eléctrica",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Guitarra",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_english",
+ "englishUsText":"English",
+ "englishUsFontType":1,
+ "frenchText":"Anglais",
+ "frenchFontType":1,
+ "italianText":"Inglese",
+ "italianFontType":1,
+ "germanText":"Englisch",
+ "germanFontType":1,
+ "spanishText":"Inglés",
+ "spanishFontType":1,
+ "neutralSpanishText":"Inglés",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Inglês",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_firecracker",
+ "englishUsText":"Firecracker",
+ "englishUsFontType":1,
+ "frenchText":"Pétard",
+ "frenchFontType":1,
+ "italianText":"Petardo",
+ "italianFontType":1,
+ "germanText":"Böller",
+ "germanFontType":1,
+ "spanishText":"Petardo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Petardo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Fogos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_football",
+ "englishUsText":"Soccer",
+ "englishUsFontType":1,
+ "frenchText":"Football",
+ "frenchFontType":1,
+ "italianText":"Calcio",
+ "italianFontType":1,
+ "germanText":"Fußball",
+ "germanFontType":1,
+ "spanishText":"Fútbol",
+ "spanishFontType":1,
+ "neutralSpanishText":"Futbol",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Futebol",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_galaga",
+ "englishUsText":"Galaga",
+ "englishUsFontType":1,
+ "frenchText":"Galaga",
+ "frenchFontType":1,
+ "italianText":"Galaga",
+ "italianFontType":1,
+ "germanText":"Galaga",
+ "germanFontType":1,
+ "spanishText":"Galaga",
+ "spanishFontType":1,
+ "neutralSpanishText":"Galaga",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Galaga",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_gorgeous",
+ "englishUsText":"Deluxe Drum",
+ "englishUsFontType":1,
+ "frenchText":"Tambour de luxe",
+ "frenchFontType":1,
+ "italianText":"Tamburo deluxe",
+ "italianFontType":1,
+ "germanText":"Deluxe-Trommel",
+ "germanFontType":1,
+ "spanishText":"Tambor de lujo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tambor de lujo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tambor deluxe",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_hero",
+ "englishUsText":"Hero",
+ "englishUsFontType":1,
+ "frenchText":"Héros",
+ "frenchFontType":1,
+ "italianText":"Eroe",
+ "italianFontType":1,
+ "germanText":"Held",
+ "germanFontType":1,
+ "spanishText":"Héroe",
+ "spanishFontType":1,
+ "neutralSpanishText":"Héroe",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Herói",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_heroine",
+ "englishUsText":"Heroine",
+ "englishUsFontType":1,
+ "frenchText":"Héroïne",
+ "frenchFontType":1,
+ "italianText":"Eroina",
+ "italianFontType":1,
+ "germanText":"Heldin",
+ "germanFontType":1,
+ "spanishText":"Heroína",
+ "spanishFontType":1,
+ "neutralSpanishText":"Heroína",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Heroína",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_koban",
+ "englishUsText":"Coin",
+ "englishUsFontType":1,
+ "frenchText":"Pièce",
+ "frenchFontType":1,
+ "italianText":"Moneta",
+ "italianFontType":1,
+ "germanText":"Münze",
+ "germanFontType":1,
+ "spanishText":"Moneda",
+ "spanishFontType":1,
+ "neutralSpanishText":"Moneda",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Moeda",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_maid",
+ "englishUsText":"Maid",
+ "englishUsFontType":1,
+ "frenchText":"Domestique",
+ "frenchFontType":1,
+ "italianText":"Cameriera",
+ "italianFontType":1,
+ "germanText":"Dienstmädchen",
+ "germanFontType":1,
+ "spanishText":"Doncella",
+ "spanishFontType":1,
+ "neutralSpanishText":"Doncella",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Camareira",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_mappy",
+ "englishUsText":"Mappy",
+ "englishUsFontType":1,
+ "frenchText":"Mappy",
+ "frenchFontType":1,
+ "italianText":"Mappy",
+ "italianFontType":1,
+ "germanText":"Mappy",
+ "germanFontType":1,
+ "spanishText":"Mappy",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mappy",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mappy",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_mechadeath",
+ "englishUsText":"Mecha-Death",
+ "englishUsFontType":1,
+ "frenchText":"Mecha Death",
+ "frenchFontType":1,
+ "italianText":"Mecha-Death",
+ "italianFontType":1,
+ "germanText":"Mecha-Tod",
+ "germanFontType":1,
+ "spanishText":"Mecha-Death",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mecha-Death",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mecha-Death",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_moju",
+ "englishUsText":"Beast",
+ "englishUsFontType":1,
+ "frenchText":"Bête",
+ "frenchFontType":1,
+ "italianText":"Belva",
+ "italianFontType":1,
+ "germanText":"Bestie",
+ "germanFontType":1,
+ "spanishText":"Bestia",
+ "spanishFontType":1,
+ "neutralSpanishText":"Bestia",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Fera",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_mokugyo",
+ "englishUsText":"Wooden Fish",
+ "englishUsFontType":1,
+ "frenchText":"Poisson en bois",
+ "frenchFontType":1,
+ "italianText":"Mokugyo",
+ "italianFontType":1,
+ "germanText":"Holzfisch",
+ "germanFontType":1,
+ "spanishText":"Pez de madera",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pez de madera",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Peixe de madeira",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_onara",
+ "englishUsText":"Fart",
+ "englishUsFontType":1,
+ "frenchText":"Pet",
+ "frenchFontType":1,
+ "italianText":"Peto",
+ "italianFontType":1,
+ "germanText":"Furz",
+ "germanFontType":1,
+ "spanishText":"Pedo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pedo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Peido",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_pacman",
+ "englishUsText":"Pac-Man",
+ "englishUsFontType":1,
+ "frenchText":"Pac-Man",
+ "frenchFontType":1,
+ "italianText":"Pac-Man",
+ "italianFontType":1,
+ "germanText":"Pac-Man",
+ "germanFontType":1,
+ "spanishText":"Pac-Man",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pac-Man",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pac-Man",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_quiz",
+ "englishUsText":"Quiz",
+ "englishUsFontType":1,
+ "frenchText":"Quiz",
+ "frenchFontType":1,
+ "italianText":"Quiz",
+ "italianFontType":1,
+ "germanText":"Quiz",
+ "germanFontType":1,
+ "spanishText":"Concurso",
+ "spanishFontType":1,
+ "neutralSpanishText":"Concurso",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Quiz",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_register",
+ "englishUsText":"Cash Register",
+ "englishUsFontType":1,
+ "frenchText":"Tiroir-caisse",
+ "frenchFontType":1,
+ "italianText":"Registr. cassa",
+ "italianFontType":1,
+ "germanText":"Registrierkasse",
+ "germanFontType":1,
+ "spanishText":"Registradora",
+ "spanishFontType":1,
+ "neutralSpanishText":"Registradora",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Cx. registradora",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_silent",
+ "englishUsText":"Silent",
+ "englishUsFontType":1,
+ "frenchText":"Silence",
+ "frenchFontType":1,
+ "italianText":"Silenzio",
+ "italianFontType":1,
+ "germanText":"Stumm",
+ "germanFontType":1,
+ "spanishText":"Silencio",
+ "spanishFontType":1,
+ "neutralSpanishText":"Silencio",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Silêncio",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_soroban",
+ "englishUsText":"Abacus",
+ "englishUsFontType":1,
+ "frenchText":"Boulier",
+ "frenchFontType":1,
+ "italianText":"Abaco",
+ "italianFontType":1,
+ "germanText":"Abakus",
+ "germanFontType":1,
+ "spanishText":"Ábaco",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ábaco",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ábaco",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_sword",
+ "englishUsText":"Katana",
+ "englishUsFontType":1,
+ "frenchText":"Katana",
+ "frenchFontType":1,
+ "italianText":"Katana",
+ "italianFontType":1,
+ "germanText":"Katana",
+ "germanFontType":1,
+ "spanishText":"Catana",
+ "spanishFontType":1,
+ "neutralSpanishText":"Catana",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Katana",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_syndrum",
+ "englishUsText":"Synth Drum",
+ "englishUsFontType":1,
+ "frenchText":"Batterie électronique",
+ "frenchFontType":1,
+ "italianText":"Tamburo sintet.",
+ "italianFontType":1,
+ "germanText":"Synthie-Trommel",
+ "germanFontType":1,
+ "spanishText":"Sintetitambor",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sintetitambor",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bat. eletrônica",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_taiho",
+ "englishUsText":"Cannon",
+ "englishUsFontType":1,
+ "frenchText":"Canon",
+ "frenchFontType":1,
+ "italianText":"Cannone",
+ "italianFontType":1,
+ "germanText":"Kanone",
+ "germanFontType":1,
+ "spanishText":"Cañón",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cañón",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Canhão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_taiko",
+ "englishUsText":"Drum",
+ "englishUsFontType":1,
+ "frenchText":"Tambour",
+ "frenchFontType":1,
+ "italianText":"Tamburo",
+ "italianFontType":1,
+ "germanText":"Trommel",
+ "germanFontType":1,
+ "spanishText":"Tambor",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tambor",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tambor",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_tanba",
+ "englishUsText":"Tamborine",
+ "englishUsFontType":1,
+ "frenchText":"Tambourin",
+ "frenchFontType":1,
+ "italianText":"Tamburello",
+ "italianFontType":1,
+ "germanText":"Tamburin",
+ "germanFontType":1,
+ "spanishText":"Pandereta",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pandereta",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pandeiro",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_tansan",
+ "englishUsText":"Soft Drink",
+ "englishUsFontType":1,
+ "frenchText":"Boisson",
+ "frenchFontType":1,
+ "italianText":"Cola",
+ "italianFontType":1,
+ "germanText":"Limonade",
+ "germanFontType":1,
+ "spanishText":"Refresco",
+ "spanishFontType":1,
+ "neutralSpanishText":"Refresco",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Refrigerante",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_tudumi",
+ "englishUsText":"Hand Drum",
+ "englishUsFontType":1,
+ "frenchText":"Tambour à main",
+ "frenchFontType":1,
+ "italianText":"Tamburo a mano",
+ "italianFontType":1,
+ "germanText":"Handtrommel",
+ "germanFontType":1,
+ "spanishText":"Timbal",
+ "spanishFontType":1,
+ "neutralSpanishText":"Timbal",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tambor de mão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_wakare",
+ "englishUsText":"Parting Words",
+ "englishUsFontType":1,
+ "frenchText":"Paroles d'adieu",
+ "frenchFontType":1,
+ "italianText":"Parole di addio",
+ "italianFontType":1,
+ "germanText":"Abschiedsworte",
+ "germanFontType":1,
+ "spanishText":"Palabras de despedida",
+ "spanishFontType":1,
+ "neutralSpanishText":"Palabras de despedida",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Despedida",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_xevi",
+ "englishUsText":"Xevious",
+ "englishUsFontType":1,
+ "frenchText":"Xevious",
+ "frenchFontType":1,
+ "italianText":"Xevious",
+ "italianFontType":1,
+ "germanText":"Xevious",
+ "germanFontType":1,
+ "spanishText":"Xevious",
+ "spanishFontType":1,
+ "neutralSpanishText":"Xevious",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Xevious",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_yakiniku",
+ "englishUsText":"Barbecue",
+ "englishUsFontType":1,
+ "frenchText":"Barbecue",
+ "frenchFontType":1,
+ "italianText":"Barbecue",
+ "italianFontType":1,
+ "germanText":"Barbecue",
+ "germanFontType":1,
+ "spanishText":"Barbacoa",
+ "spanishFontType":1,
+ "neutralSpanishText":"Barbacoa",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Churrasco",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_puti",
+ "englishUsText":"Bubble Wrap",
+ "englishUsFontType":1,
+ "frenchText":"Papier bulle",
+ "frenchFontType":1,
+ "italianText":"Pluriball",
+ "italianFontType":1,
+ "germanText":"Blisterfolie",
+ "germanFontType":1,
+ "spanishText":"Plástico burbuja",
+ "spanishFontType":1,
+ "neutralSpanishText":"Plástico burbuja",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Plástico bolha",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_okama",
+ "englishUsText":"Entertainer",
+ "englishUsFontType":1,
+ "frenchText":"Artiste",
+ "frenchFontType":1,
+ "italianText":"Intrattenitore",
+ "italianFontType":1,
+ "germanText":"Entertainer",
+ "germanFontType":1,
+ "spanishText":"Animador",
+ "spanishFontType":1,
+ "neutralSpanishText":"Drag Queen",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Drag queen",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_genpei",
+ "englishUsText":"Genpei Toma Den",
+ "englishUsFontType":1,
+ "frenchText":"Genpei Toma Den",
+ "frenchFontType":1,
+ "italianText":"Genpei Toma Den",
+ "italianFontType":1,
+ "germanText":"Genpei Toma Den",
+ "germanFontType":1,
+ "spanishText":"Genpei Toma Den",
+ "spanishFontType":1,
+ "neutralSpanishText":"Genpei Tōma Den",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Genpei Toma Den",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_soiya",
+ "englishUsText":"Heave-Ho",
+ "englishUsFontType":1,
+ "frenchText":"Oh hisse !",
+ "frenchFontType":1,
+ "italianText":"Oh issa",
+ "italianFontType":1,
+ "germanText":"Hau-ruck",
+ "germanFontType":1,
+ "spanishText":"Esfuerzo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Esfuerzo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Esforço",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_daisuki",
+ "englishUsText":"Love You",
+ "englishUsFontType":1,
+ "frenchText":"Amour",
+ "frenchFontType":1,
+ "italianText":"Ti amo",
+ "italianFontType":1,
+ "germanText":"Liebe dich",
+ "germanFontType":1,
+ "spanishText":"Te quiero",
+ "spanishFontType":1,
+ "neutralSpanishText":"Te quiero",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Te amo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_mechadon",
+ "englishUsText":"Mecha-DON",
+ "englishUsFontType":1,
+ "frenchText":"Mecha DON",
+ "frenchFontType":1,
+ "italianText":"Mecha-DON",
+ "italianFontType":1,
+ "germanText":"Mecha-DON",
+ "germanFontType":1,
+ "spanishText":"Mecha-DON",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mecha-DON",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mecha-DON",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_kaiju",
+ "englishUsText":"Monster",
+ "englishUsFontType":1,
+ "frenchText":"Monstre",
+ "frenchFontType":1,
+ "italianText":"Mostro",
+ "italianFontType":1,
+ "germanText":"Monster",
+ "germanFontType":1,
+ "spanishText":"Monstruo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Monstruo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Monstro",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_syuri",
+ "englishUsText":"Shuriken",
+ "englishUsFontType":1,
+ "frenchText":"Shuriken",
+ "frenchFontType":1,
+ "italianText":"Shuriken",
+ "italianFontType":1,
+ "germanText":"Shuriken",
+ "germanFontType":1,
+ "spanishText":"Shuriken",
+ "spanishFontType":1,
+ "neutralSpanishText":"Shuriken",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Shuriken",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_youkai",
+ "englishUsText":"Yokai Dochuki",
+ "englishUsFontType":1,
+ "frenchText":"Yokai Dochuki",
+ "frenchFontType":1,
+ "italianText":"Yokai Dochuki",
+ "italianFontType":1,
+ "germanText":"Yokai Dochuki",
+ "germanFontType":1,
+ "spanishText":"Yokai Dochuki",
+ "spanishFontType":1,
+ "neutralSpanishText":"Yokai Dochuki",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Yokai Dochuki",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_kakegoe",
+ "englishUsText":"Cheer",
+ "englishUsFontType":1,
+ "frenchText":"Encouragement",
+ "frenchFontType":1,
+ "italianText":"Tifo",
+ "italianFontType":1,
+ "germanText":"Jubel",
+ "germanFontType":1,
+ "spanishText":"Ánimos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Vivas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vivas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_dogcat",
+ "englishUsText":"Dogs & Cats",
+ "englishUsFontType":1,
+ "frenchText":"Chiens et chats",
+ "frenchFontType":1,
+ "italianText":"Cani e gatti",
+ "italianFontType":1,
+ "germanText":"Hunde & Katzen",
+ "germanFontType":1,
+ "spanishText":"Perros y gatos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Perros y gatos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Cães e gatos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_omairi",
+ "englishUsText":"Shrine Visit",
+ "englishUsFontType":1,
+ "frenchText":"Visite au temple",
+ "frenchFontType":1,
+ "italianText":"Visita al tempio",
+ "italianFontType":1,
+ "germanText":"Schreinbesuch",
+ "germanFontType":1,
+ "spanishText":"Visita al templo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Visita al altar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Visita a templo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"neiro_cooking",
+ "englishUsText":"Cooking",
+ "englishUsFontType":1,
+ "frenchText":"Cuisine",
+ "frenchFontType":1,
+ "italianText":"Cucina",
+ "italianFontType":1,
+ "germanText":"Kochen",
+ "germanFontType":1,
+ "spanishText":"Cocina",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cocina",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Cozinha",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_4shaas",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_anayuk",
+ "englishUsText":"From \" Frozen \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" Frozen \"",
+ "frenchFontType":1,
+ "italianText":"Da \" Frozen \"",
+ "italianFontType":1,
+ "germanText":"Aus \" Frozen \"",
+ "germanFontType":1,
+ "spanishText":"De \" Frozen \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" Frozen \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" Frozen \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_batan9",
+ "englishUsText":"From \" Osomatsu San \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" Osomatsu San \"",
+ "frenchFontType":1,
+ "italianText":"Da \" Osomatsu San \"",
+ "italianFontType":1,
+ "germanText":"Aus \" Osomatsu San \"",
+ "germanFontType":1,
+ "spanishText":"De \" Osomatsu San \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" Osomatsu San \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" Osomatsu San \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_cls10",
+ "englishUsText":"Jacques Offenbach",
+ "englishUsFontType":1,
+ "frenchText":"Jacques Offenbach",
+ "frenchFontType":1,
+ "italianText":"Jacques Offenbach",
+ "italianFontType":1,
+ "germanText":"Jacques Offenbach",
+ "germanFontType":1,
+ "spanishText":"Jacques Offenbach",
+ "spanishFontType":1,
+ "neutralSpanishText":"Jacques Offenbach",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Jacques Offenbach",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_clsca",
+ "englishUsText":"Georges Bizet",
+ "englishUsFontType":1,
+ "frenchText":"Georges Bizet",
+ "frenchFontType":1,
+ "italianText":"Georges Bizet",
+ "italianFontType":1,
+ "germanText":"Georges Bizet",
+ "germanFontType":1,
+ "spanishText":"Georges Bizet",
+ "spanishFontType":1,
+ "neutralSpanishText":"Georges Bizet",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Georges Bizet",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_clsw",
+ "englishUsText":"Gioachino Rossini",
+ "englishUsFontType":1,
+ "frenchText":"Gioachino Rossini",
+ "frenchFontType":1,
+ "italianText":"Gioachino Rossini",
+ "italianFontType":1,
+ "germanText":"Gioachino Rossini",
+ "germanFontType":1,
+ "spanishText":"Gioachino Rossini",
+ "spanishFontType":1,
+ "neutralSpanishText":"Gioachino Rossini",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Gioachino Rossini",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_crkvic",
+ "englishUsText":"Cranky",
+ "englishUsFontType":1,
+ "frenchText":"Cranky",
+ "frenchFontType":1,
+ "italianText":"Cranky",
+ "italianFontType":1,
+ "germanText":"Cranky",
+ "germanFontType":1,
+ "spanishText":"Cranky",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cranky",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Cranky",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_crturb",
+ "englishUsText":"From \" CRITICAL VELOCITY \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" CRITICAL VELOCITY \"",
+ "frenchFontType":1,
+ "italianText":"Da \" CRITICAL VELOCITY \"",
+ "italianFontType":1,
+ "germanText":"Aus \" CRITICAL VELOCITY \"",
+ "germanFontType":1,
+ "spanishText":"De \" CRITICAL VELOCITY \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" CRITICAL VELOCITY \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" CRITICAL VELOCITY \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_d96can",
+ "englishUsText":"t+pazolite",
+ "englishUsFontType":1,
+ "frenchText":"t+pazolite",
+ "frenchFontType":1,
+ "italianText":"t+pazolite",
+ "italianFontType":1,
+ "germanText":"t+pazolite",
+ "germanFontType":1,
+ "spanishText":"t+pazolite",
+ "spanishFontType":1,
+ "neutralSpanishText":"t+pazolite",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"t+pazolite",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_dbcgen",
+ "englishUsText":"From \" Dragon Ball Super \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" Dragon Ball Super \"",
+ "frenchFontType":1,
+ "italianText":"Da \" Dragon Ball Super \"",
+ "italianFontType":1,
+ "germanText":"Aus \" Dragon Ball Super \"",
+ "germanFontType":1,
+ "spanishText":"De \" Dragon Ball Super \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" Dragon Ball Super \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" Dragon Ball Super \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_eatem",
+ "englishUsText":"From \" R4 -RIDGE RACER TYPE4- \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" R4 -RIDGE RACER TYPE4- \"",
+ "frenchFontType":1,
+ "italianText":"Da \" R4 -RIDGE RACER TYPE4- \"",
+ "italianFontType":1,
+ "germanText":"Aus \" R4 -RIDGE RACER TYPE4- \"",
+ "germanFontType":1,
+ "spanishText":"De \" R4 -RIDGE RACER TYPE4- \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" R4 -RIDGE RACER TYPE4- \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" R4 -RIDGE RACER TYPE4- \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_eva",
+ "englishUsText":"From \" Neon Genesis EVANGELION \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" Neon Genesis EVANGELION \"",
+ "frenchFontType":1,
+ "italianText":"Da \" Neon Genesis EVANGELION \"",
+ "italianFontType":1,
+ "germanText":"Aus \" Neon Genesis EVANGELION \"",
+ "germanFontType":1,
+ "spanishText":"De \" Neon Genesis EVANGELION \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" Neon Genesis EVANGELION \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" Neon Genesis EVANGELION \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_genpe",
+ "englishUsText":"\"The Genji and the Heike Clans\" Medley",
+ "englishUsFontType":1,
+ "frenchText":"\"The Genji and the Heike Clans\" Medley",
+ "frenchFontType":1,
+ "italianText":"\"The Genji and the Heike Clans\" Medley",
+ "italianFontType":1,
+ "germanText":"\"The Genji and the Heike Clans\" Medley",
+ "germanFontType":1,
+ "spanishText":"\"The Genji and the Heike Clans\" Medley",
+ "spanishFontType":1,
+ "neutralSpanishText":"\"The Genji and the Heike Clans\" Medley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"\"The Genji and the Heike Clans\" Medley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_ia6cho",
+ "englishUsText":"Kemu feat. IA",
+ "englishUsFontType":1,
+ "frenchText":"Kemu feat. IA",
+ "frenchFontType":1,
+ "italianText":"Kemu feat. IA",
+ "italianFontType":1,
+ "germanText":"Kemu feat. IA",
+ "germanFontType":1,
+ "spanishText":"Kemu feat. IA",
+ "spanishFontType":1,
+ "neutralSpanishText":"Kemu feat. IA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Kemu feat. IA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_imconc",
+ "englishUsText":"From \" THE iDOLM@STER CINDERELLA GIRLS \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" THE iDOLM@STER CINDERELLA GIRLS \"",
+ "frenchFontType":1,
+ "italianText":"Da \" THE iDOLM@STER CINDERELLA GIRLS \"",
+ "italianFontType":1,
+ "germanText":"Aus \" THE iDOLM@STER CINDERELLA GIRLS \"",
+ "germanFontType":1,
+ "spanishText":"De \" THE iDOLM@STER CINDERELLA GIRLS \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" THE iDOLM@STER CINDERELLA GIRLS \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" THE iDOLM@STER CINDERELLA GIRLS \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_japari",
+ "englishUsText":"From \" Kemono Friends \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" Kemono Friends \"",
+ "frenchFontType":1,
+ "italianText":"Da \" Kemono Friends \"",
+ "italianFontType":1,
+ "germanText":"Aus \" Kemono Friends \"",
+ "germanFontType":1,
+ "spanishText":"De \" Kemono Friends \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" Kemono Friends \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" Kemono Friends \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_lost1g",
+ "englishUsText":"Neru feat. Kagamine Rin",
+ "englishUsFontType":1,
+ "frenchText":"Neru feat. Kagamine Rin",
+ "frenchFontType":1,
+ "italianText":"Neru feat. Kagamine Rin",
+ "italianFontType":1,
+ "germanText":"Neru feat. Kagamine Rin",
+ "germanFontType":1,
+ "spanishText":"Neru feat. Kagamine Rin",
+ "spanishFontType":1,
+ "neutralSpanishText":"Neru feat. Kagamine Rin",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Neru feat. Kagamine Rin",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_memesi",
+ "englishUsText":"Goldenbomber",
+ "englishUsFontType":1,
+ "frenchText":"Goldenbomber",
+ "frenchFontType":1,
+ "italianText":"Goldenbomber",
+ "italianFontType":1,
+ "germanText":"Goldenbomber",
+ "germanFontType":1,
+ "spanishText":"Goldenbomber",
+ "spanishFontType":1,
+ "neutralSpanishText":"Goldenbomber",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Goldenbomber",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_mikuaa",
+ "englishUsText":"Nayutan Seijin feat.Hatsune Miku",
+ "englishUsFontType":1,
+ "frenchText":"Nayutan Seijin feat.Hatsune Miku",
+ "frenchFontType":1,
+ "italianText":"Nayutan Seijin feat.Hatsune Miku",
+ "italianFontType":1,
+ "germanText":"Nayutan Seijin feat.Hatsune Miku",
+ "germanFontType":1,
+ "spanishText":"Nayutan Seijin feat.Hatsune Miku",
+ "spanishFontType":1,
+ "neutralSpanishText":"Nayutan Seijin feat.Hatsune Miku",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Nayutan Seijin feat.Hatsune Miku",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_mikugr",
+ "englishUsText":"DECO*27 feat. Hatsune Miku",
+ "englishUsFontType":1,
+ "frenchText":"DECO*27 feat. Hatsune Miku",
+ "frenchFontType":1,
+ "italianText":"DECO*27 feat. Hatsune Miku",
+ "italianFontType":1,
+ "germanText":"DECO*27 feat. Hatsune Miku",
+ "germanFontType":1,
+ "spanishText":"DECO*27 feat. Hatsune Miku",
+ "spanishFontType":1,
+ "neutralSpanishText":"DECO*27 feat. Hatsune Miku",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DECO*27 feat. Hatsune Miku",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_mugens",
+ "englishUsText":"Silver Forest feat. SAYA",
+ "englishUsFontType":1,
+ "frenchText":"Silver Forest feat. SAYA",
+ "frenchFontType":1,
+ "italianText":"Silver Forest feat. SAYA",
+ "italianFontType":1,
+ "germanText":"Silver Forest feat. SAYA",
+ "germanFontType":1,
+ "spanishText":"Silver Forest feat. SAYA",
+ "spanishFontType":1,
+ "neutralSpanishText":"Silver Forest feat. SAYA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Silver Forest feat. SAYA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_ppap",
+ "englishUsText":"Piko Taro",
+ "englishUsFontType":1,
+ "frenchText":"Piko Taro",
+ "frenchFontType":1,
+ "italianText":"Piko Taro",
+ "italianFontType":1,
+ "germanText":"Piko Taro",
+ "germanFontType":1,
+ "spanishText":"Piko Taro",
+ "spanishFontType":1,
+ "neutralSpanishText":"Piko Taro",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Piko Taro",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_roadmv",
+ "englishUsText":"From \" Crayon Shin-chan \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" Crayon Shin-chan \"",
+ "frenchFontType":1,
+ "italianText":"Da \" Crayon Shin-chan \"",
+ "italianFontType":1,
+ "germanText":"Aus \" Crayon Shin-chan \"",
+ "germanFontType":1,
+ "spanishText":"De \" Crayon Shin-chan \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" Crayon Shin-chan \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" Crayon Shin-chan \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_sf5ryu",
+ "englishUsText":"From \" Street Fighter V \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" Street Fighter V \"",
+ "frenchFontType":1,
+ "italianText":"Da \" Street Fighter V \"",
+ "italianFontType":1,
+ "germanText":"Aus \" Street Fighter V \"",
+ "germanFontType":1,
+ "spanishText":"De \" Street Fighter V \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" Street Fighter V \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" Street Fighter V \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_shing2",
+ "englishUsText":"From \" Attack on Titan \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" Attack on Titan \"",
+ "frenchFontType":1,
+ "italianText":"Da \" Attack on Titan \"",
+ "italianFontType":1,
+ "germanText":"Aus \" Attack on Titan \"",
+ "germanFontType":1,
+ "spanishText":"De \" Attack on Titan \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" Attack on Titan \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" Attack on Titan \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_so2omf",
+ "englishUsText":"feat. unmo",
+ "englishUsFontType":1,
+ "frenchText":"feat. unmo",
+ "frenchFontType":1,
+ "italianText":"feat. unmo",
+ "italianFontType":1,
+ "germanText":"feat. unmo",
+ "germanFontType":1,
+ "spanishText":"feat. unmo",
+ "spanishFontType":1,
+ "neutralSpanishText":"feat. unmo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"feat. unmo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_stabof",
+ "englishUsText":"with Tama☆Tai feat. Danchinomiya",
+ "englishUsFontType":1,
+ "frenchText":"with Tama☆Tai feat. Danchinomiya",
+ "frenchFontType":1,
+ "italianText":"with Tama☆Tai feat. Danchinomiya",
+ "italianFontType":1,
+ "germanText":"with Tama☆Tai feat. Danchinomiya",
+ "germanFontType":1,
+ "spanishText":"with Tama☆Tai feat. Danchinomiya",
+ "spanishFontType":1,
+ "neutralSpanishText":"with Tama☆Tai feat. Danchinomiya",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"with Tama☆Tai feat. Danchinomiya",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_tek7he",
+ "englishUsText":"From \" Tekken 7 \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" Tekken 7 \"",
+ "frenchFontType":1,
+ "italianText":"Da \" Tekken 7 \"",
+ "italianFontType":1,
+ "germanText":"Aus \" Tekken 7 \"",
+ "germanFontType":1,
+ "spanishText":"De \" Tekken 7 \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" Tekken 7 \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" Tekken 7 \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_th7171",
+ "englishUsText":"Toho Project Arrange / beatMARIO",
+ "englishUsFontType":1,
+ "frenchText":"Toho Project Arrange / beatMARIO",
+ "frenchFontType":1,
+ "italianText":"Toho Project Arrange / beatMARIO",
+ "italianFontType":1,
+ "germanText":"Toho Project Arrange / beatMARIO",
+ "germanFontType":1,
+ "spanishText":"Toho Project Arrange / beatMARIO",
+ "spanishFontType":1,
+ "neutralSpanishText":"Toho Project Arrange / beatMARIO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Toho Project Arrange / beatMARIO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_thchil",
+ "englishUsText":"Toho Project Arrange / Arm + Yuno Yoshimi(IOSYS) feat. Miko",
+ "englishUsFontType":1,
+ "frenchText":"Toho Project Arrange / Arm + Yuno Yoshimi(IOSYS) feat. Miko",
+ "frenchFontType":1,
+ "italianText":"Toho Project Arrange / Arm + Yuno Yoshimi(IOSYS) feat. Miko",
+ "italianFontType":1,
+ "germanText":"Toho Project Arrange / Arm + Yuno Yoshimi(IOSYS) feat. Miko",
+ "germanFontType":1,
+ "spanishText":"Toho Project Arrange / Arm + Yuno Yoshimi(IOSYS) feat. Miko",
+ "spanishFontType":1,
+ "neutralSpanishText":"Toho Project Arrange / Arm + Yuno Yoshimi(IOSYS) feat. Miko",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Toho Project Arrange / Arm + Yuno Yoshimi(IOSYS) feat. Miko",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_thflnd",
+ "englishUsText":"Toho Project Arrange / beatMARIO",
+ "englishUsFontType":1,
+ "frenchText":"Toho Project Arrange / beatMARIO",
+ "frenchFontType":1,
+ "italianText":"Toho Project Arrange / beatMARIO",
+ "italianFontType":1,
+ "germanText":"Toho Project Arrange / beatMARIO",
+ "germanFontType":1,
+ "spanishText":"Toho Project Arrange / beatMARIO",
+ "spanishFontType":1,
+ "neutralSpanishText":"Toho Project Arrange / beatMARIO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Toho Project Arrange / beatMARIO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_timtrv",
+ "englishUsText":"Ito Kashitaro",
+ "englishUsFontType":1,
+ "frenchText":"Ito Kashitaro",
+ "frenchFontType":1,
+ "italianText":"Ito Kashitaro",
+ "italianFontType":1,
+ "germanText":"Ito Kashitaro",
+ "germanFontType":1,
+ "spanishText":"Ito Kashitaro",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ito Kashitaro",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ito Kashitaro",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_tksoda",
+ "englishUsText":"Hige DriVAN",
+ "englishUsFontType":1,
+ "frenchText":"Hige DriVAN",
+ "frenchFontType":1,
+ "italianText":"Hige DriVAN",
+ "italianFontType":1,
+ "germanText":"Hige DriVAN",
+ "germanFontType":1,
+ "spanishText":"Hige DriVAN",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hige DriVAN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hige DriVAN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_trustg",
+ "englishUsText":"feat. SaChi(harineko)",
+ "englishUsFontType":1,
+ "frenchText":"feat. SaChi(harineko)",
+ "frenchFontType":1,
+ "italianText":"feat. SaChi(harineko)",
+ "italianFontType":1,
+ "germanText":"feat. SaChi(harineko)",
+ "germanFontType":1,
+ "spanishText":"feat. SaChi(harineko)",
+ "spanishFontType":1,
+ "neutralSpanishText":"feat. SaChi(harineko)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"feat. SaChi(harineko)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_uminok",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_weare0",
+ "englishUsText":"From \" One Piece \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" One Piece \"",
+ "frenchFontType":1,
+ "italianText":"Da \" One Piece \"",
+ "italianFontType":1,
+ "germanText":"Aus \" One Piece \"",
+ "germanFontType":1,
+ "spanishText":"De \" One Piece \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" One Piece \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" One Piece \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_ynlose",
+ "englishUsText":"Kenshi Yonezu",
+ "englishUsFontType":1,
+ "frenchText":"Kenshi Yonezu",
+ "frenchFontType":1,
+ "italianText":"Kenshi Yonezu",
+ "italianFontType":1,
+ "germanText":"Kenshi Yonezu",
+ "germanFontType":1,
+ "spanishText":"Kenshi Yonezu",
+ "spanishFontType":1,
+ "neutralSpanishText":"Kenshi Yonezu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Kenshi Yonezu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_zense",
+ "englishUsText":"From \" Your name. \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" Your name. \"",
+ "frenchFontType":1,
+ "italianText":"Da \" Your name. \"",
+ "italianFontType":1,
+ "germanText":"Aus \" Your name. \"",
+ "germanFontType":1,
+ "spanishText":"De \" Your name. \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" Your name. \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" Your name. \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_zootop",
+ "englishUsText":"From \" Zootopia \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" Zootopia \"",
+ "frenchFontType":1,
+ "italianText":"Da \" Zootopia \"",
+ "italianFontType":1,
+ "germanText":"Aus \" Zootopia \"",
+ "germanFontType":1,
+ "spanishText":"De \" Zootopia \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" Zootopia \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" Zootopia \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_immbra",
+ "englishUsText":"From \" THE iDOLM@STER MILLION LIVE! \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" THE iDOLM@STER MILLION LIVE! \"",
+ "frenchFontType":1,
+ "italianText":"Da \" THE iDOLM@STER MILLION LIVE! \"",
+ "italianFontType":1,
+ "germanText":"Aus \" THE iDOLM@STER MILLION LIVE! \"",
+ "germanFontType":1,
+ "spanishText":"De \" THE iDOLM@STER MILLION LIVE! \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" THE iDOLM@STER MILLION LIVE! \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" THE iDOLM@STER MILLION LIVE! \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_dem31k",
+ "englishUsText":"From \" DEEMO \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" DEEMO \"",
+ "frenchFontType":1,
+ "italianText":"Da \" DEEMO \"",
+ "italianFontType":1,
+ "germanText":"Aus \" DEEMO \"",
+ "germanFontType":1,
+ "spanishText":"De \" DEEMO \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" DEEMO \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" DEEMO \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_kteien",
+ "englishUsText":"Harunaba feat. Chihiro Ishiguro",
+ "englishUsFontType":1,
+ "frenchText":"Harunaba feat. Chihiro Ishiguro",
+ "frenchFontType":1,
+ "italianText":"Harunaba feat. Chihiro Ishiguro",
+ "italianFontType":1,
+ "germanText":"Harunaba feat. Chihiro Ishiguro",
+ "germanFontType":1,
+ "spanishText":"Harunaba feat. Chihiro Ishiguro",
+ "spanishFontType":1,
+ "neutralSpanishText":"Harunaba feat. Chihiro Ishiguro",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Harunaba feat. Chihiro Ishiguro",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_yugen",
+ "englishUsText":"Xeami",
+ "englishUsFontType":1,
+ "frenchText":"Xeami",
+ "frenchFontType":1,
+ "italianText":"Xeami",
+ "italianFontType":1,
+ "germanText":"Xeami",
+ "germanFontType":1,
+ "spanishText":"Xeami",
+ "spanishFontType":1,
+ "neutralSpanishText":"Xeami",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Xeami",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_ygnarr",
+ "englishUsText":"Daisuke Kurosawa From \" YUGEN NO RAN /Xeami (Tatsh) \"",
+ "englishUsFontType":1,
+ "frenchText":"Daisuke Kurosawa tiré de \" YUGEN NO RAN /Xeami (Tatsh) \"",
+ "frenchFontType":1,
+ "italianText":"Daisuke Kurosawa Da \" YUGEN NO RAN /Xeami (Tatsh) \"",
+ "italianFontType":1,
+ "germanText":"Daisuke Kurosawa Aus \" YUGEN NO RAN /Xeami (Tatsh) \"",
+ "germanFontType":1,
+ "spanishText":"Daisuke Kurosawa De \" YUGEN NO RAN /Xeami (Tatsh) \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"Daisuke Kurosawa De \" YUGEN NO RAN /Xeami (Tatsh) \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Daisuke Kurosawa De \" YUGEN NO RAN /Xeami (Tatsh) \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_57mono",
+ "englishUsText":"Takuro Go",
+ "englishUsFontType":1,
+ "frenchText":"Takuro Go",
+ "frenchFontType":1,
+ "italianText":"Takuro Go",
+ "italianFontType":1,
+ "germanText":"Takuro Go",
+ "germanFontType":1,
+ "spanishText":"Takuro Go",
+ "spanishFontType":1,
+ "neutralSpanishText":"Takuro Go",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Takuro Go",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_kaidan",
+ "englishUsText":"Chiharu Kaneko",
+ "englishUsFontType":1,
+ "frenchText":"Chiharu Kaneko",
+ "frenchFontType":1,
+ "italianText":"Chiharu Kaneko",
+ "italianFontType":1,
+ "germanText":"Chiharu Kaneko",
+ "germanFontType":1,
+ "spanishText":"Chiharu Kaneko",
+ "spanishFontType":1,
+ "neutralSpanishText":"Chiharu Kaneko",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Chiharu Kaneko",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_uheart",
+ "englishUsText":"Eizo Sakamoto × Yusuke Takahama",
+ "englishUsFontType":1,
+ "frenchText":"Eizo Sakamoto × Yusuke Takahama",
+ "frenchFontType":1,
+ "italianText":"Eizo Sakamoto × Yusuke Takahama",
+ "italianFontType":1,
+ "germanText":"Eizo Sakamoto × Yusuke Takahama",
+ "germanFontType":1,
+ "spanishText":"Eizo Sakamoto × Yusuke Takahama",
+ "spanishFontType":1,
+ "neutralSpanishText":"Eizo Sakamoto × Yusuke Takahama",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eizo Sakamoto × Yusuke Takahama",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_takamg",
+ "englishUsText":"D.watt(IOSYS) feat. Np Inutahiko & Yamamoto Momiji",
+ "englishUsFontType":1,
+ "frenchText":"D.watt(IOSYS) feat. Np Inutahiko & Yamamoto Momiji",
+ "frenchFontType":1,
+ "italianText":"D.watt(IOSYS) feat. Np Inutahiko & Yamamoto Momiji",
+ "italianFontType":1,
+ "germanText":"D.watt(IOSYS) feat. Np Inutahiko & Yamamoto Momiji",
+ "germanFontType":1,
+ "spanishText":"D.watt(IOSYS) feat. Np Inutahiko & Yamamoto Momiji",
+ "spanishFontType":1,
+ "neutralSpanishText":"D.watt(IOSYS) feat. Np Inutahiko & Yamamoto Momiji",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"D.watt(IOSYS) feat. Np Inutahiko & Yamamoto Momiji",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_83noma",
+ "englishUsText":"Silver Forest feat. Aki",
+ "englishUsFontType":1,
+ "frenchText":"Silver Forest feat. Aki",
+ "frenchFontType":1,
+ "italianText":"Silver Forest feat. Aki",
+ "italianFontType":1,
+ "germanText":"Silver Forest feat. Aki",
+ "germanFontType":1,
+ "spanishText":"Silver Forest feat. Aki",
+ "spanishFontType":1,
+ "neutralSpanishText":"Silver Forest feat. Aki",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Silver Forest feat. Aki",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_mikuse",
+ "englishUsText":"Kurousa P feat. Hatsune Miku",
+ "englishUsFontType":1,
+ "frenchText":"Kurousa P feat. Hatsune Miku",
+ "frenchFontType":1,
+ "italianText":"Kurousa P feat. Hatsune Miku",
+ "italianFontType":1,
+ "germanText":"Kurousa P feat. Hatsune Miku",
+ "germanFontType":1,
+ "spanishText":"Kurousa P feat. Hatsune Miku",
+ "spanishFontType":1,
+ "neutralSpanishText":"Kurousa P feat. Hatsune Miku",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Kurousa P feat. Hatsune Miku",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_msclht",
+ "englishUsText":"~Takamagahara's TV Anime \"Kinnikumahoushojo Takeminakata\" theme song~\nYuya Kobayashi(IOSYS) feat. Momiji Yamamoto (monotone)",
+ "englishUsFontType":1,
+ "frenchText":"~Takamagahara's TV Anime \"Kinnikumahoushojo Takeminakata\" theme song~\nYuya Kobayashi(IOSYS) feat. Momiji Yamamoto (monotone)",
+ "frenchFontType":1,
+ "italianText":"~Takamagahara's TV Anime \"Kinnikumahoushojo Takeminakata\" theme song~\nYuya Kobayashi(IOSYS) feat. Momiji Yamamoto (monotone)",
+ "italianFontType":1,
+ "germanText":"~Takamagahara's TV Anime \"Kinnikumahoushojo Takeminakata\" theme song~\nYuya Kobayashi(IOSYS) feat. Momiji Yamamoto (monotone)",
+ "germanFontType":1,
+ "spanishText":"~Takamagahara's TV Anime \"Kinnikumahoushojo Takeminakata\" theme song~\nYuya Kobayashi(IOSYS) feat. Momiji Yamamoto (monotone)",
+ "spanishFontType":1,
+ "neutralSpanishText":"~Takamagahara's TV Anime \"Kinnikumahoushojo Takeminakata\" theme song~\nYuya Kobayashi(IOSYS) feat. Momiji Yamamoto (monotone)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"~Takamagahara's TV Anime \"Kinnikumahoushojo Takeminakata\" theme song~\nYuya Kobayashi(IOSYS) feat. Momiji Yamamoto (monotone)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_chaost",
+ "englishUsText":"t+pazolite",
+ "englishUsFontType":1,
+ "frenchText":"t+pazolite",
+ "frenchFontType":1,
+ "italianText":"t+pazolite",
+ "italianFontType":1,
+ "germanText":"t+pazolite",
+ "germanFontType":1,
+ "spanishText":"t+pazolite",
+ "spanishFontType":1,
+ "neutralSpanishText":"t+pazolite",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"t+pazolite",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_souryu",
+ "englishUsText":"Xeami",
+ "englishUsFontType":1,
+ "frenchText":"Xeami",
+ "frenchFontType":1,
+ "italianText":"Xeami",
+ "italianFontType":1,
+ "germanText":"Xeami",
+ "germanFontType":1,
+ "spanishText":"Xeami",
+ "spanishFontType":1,
+ "neutralSpanishText":"Xeami",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Xeami",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_2ge8ji",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_krbld",
+ "englishUsText":"From \" Kamen Rider Build \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" Kamen Rider Build \"",
+ "frenchFontType":1,
+ "italianText":"Da \" Kamen Rider Build \"",
+ "italianFontType":1,
+ "germanText":"Aus \" Kamen Rider Build \"",
+ "germanFontType":1,
+ "spanishText":"De \" Kamen Rider Build \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" Kamen Rider Build \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" Kamen Rider Build \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_miku39",
+ "englishUsText":"ika feat. Hatsune Miku",
+ "englishUsFontType":1,
+ "frenchText":"ika feat. Hatsune Miku",
+ "frenchFontType":1,
+ "italianText":"ika feat. Hatsune Miku",
+ "italianFontType":1,
+ "germanText":"ika feat. Hatsune Miku",
+ "germanFontType":1,
+ "spanishText":"ika feat. Hatsune Miku",
+ "spanishFontType":1,
+ "neutralSpanishText":"ika feat. Hatsune Miku",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ika feat. Hatsune Miku",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_omirai",
+ "englishUsText":"feat. Mamoru(nhhmbase)",
+ "englishUsFontType":1,
+ "frenchText":"feat. Mamoru(nhhmbase)",
+ "frenchFontType":1,
+ "italianText":"feat. Mamoru(nhhmbase)",
+ "italianFontType":1,
+ "germanText":"feat. Mamoru(nhhmbase)",
+ "germanFontType":1,
+ "spanishText":"feat. Mamoru(nhhmbase)",
+ "spanishFontType":1,
+ "neutralSpanishText":"feat. Mamoru(nhhmbase)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"feat. Mamoru(nhhmbase)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_otomus",
+ "englishUsText":"KiWi",
+ "englishUsFontType":1,
+ "frenchText":"KiWi",
+ "frenchFontType":1,
+ "italianText":"KiWi",
+ "italianFontType":1,
+ "germanText":"KiWi",
+ "germanFontType":1,
+ "spanishText":"KiWi",
+ "spanishFontType":1,
+ "neutralSpanishText":"KiWi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KiWi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_warya",
+ "englishUsText":"Mirai Kodai Orchestra feat. Haruka Shimotsuki",
+ "englishUsFontType":1,
+ "frenchText":"Mirai Kodai Orchestra feat. Haruka Shimotsuki",
+ "frenchFontType":1,
+ "italianText":"Mirai Kodai Orchestra feat. Haruka Shimotsuki",
+ "italianFontType":1,
+ "germanText":"Mirai Kodai Orchestra feat. Haruka Shimotsuki",
+ "germanFontType":1,
+ "spanishText":"Mirai Kodai Orchestra feat. Haruka Shimotsuki",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mirai Kodai Orchestra feat. Haruka Shimotsuki",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mirai Kodai Orchestra feat. Haruka Shimotsuki",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_snyq",
+ "englishUsText":"Chiharu Kaneko feat. haxchi",
+ "englishUsFontType":1,
+ "frenchText":"Chiharu Kaneko feat. haxchi",
+ "frenchFontType":1,
+ "italianText":"Chiharu Kaneko feat. haxchi",
+ "italianFontType":1,
+ "germanText":"Chiharu Kaneko feat. haxchi",
+ "germanFontType":1,
+ "spanishText":"Chiharu Kaneko feat. haxchi",
+ "spanishFontType":1,
+ "neutralSpanishText":"Chiharu Kaneko feat. haxchi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Chiharu Kaneko feat. haxchi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_dsadvn",
+ "englishUsText":"Dan@Yomi",
+ "englishUsFontType":1,
+ "frenchText":"Dan@Yomi",
+ "frenchFontType":1,
+ "italianText":"Dan@Yomi",
+ "italianFontType":1,
+ "germanText":"Dan@Yomi",
+ "germanFontType":1,
+ "spanishText":"Dan@Yomi",
+ "spanishFontType":1,
+ "neutralSpanishText":"Dan@Yomi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Dan@Yomi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_kekka2",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_himyak",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_gimcho",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_skorpg",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_ninjbb",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_koiama",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_kiseki",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_ikenai",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_skrnb",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_linda",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_natsu",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_10tai",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_xjapan",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_apollo",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_dora4",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_totoro",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_hkitty",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_clsh69",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_clsr",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_march",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_drsp",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_druaga",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_bforc",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_babel",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_mappy2",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_moji",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_tobers",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_ryuhim",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_psf1op",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_mgpafe",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_32segw",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_nograv",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_tengu",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_izanam",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_flyawy",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_yayoi",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_trance",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_vrock",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_butou9",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_rdrose",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_rot",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_rot4",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_gunsln",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_6ne9om",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_angel3",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_ymtgen",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_kyksmj",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_mikuer",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_ymyrp4",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_coro4",
+ "englishUsText":"Okazaki Taiiku",
+ "englishUsFontType":1,
+ "frenchText":"Okazaki Taiiku",
+ "frenchFontType":1,
+ "italianText":"Okazaki Taiiku",
+ "italianFontType":1,
+ "germanText":"Okazaki Taiiku",
+ "germanFontType":1,
+ "spanishText":"Okazaki Taiiku",
+ "spanishFontType":1,
+ "neutralSpanishText":"Okazaki Taiiku",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Okazaki Taiiku",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_589him",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_tuku43",
+ "englishUsText":"Tatsh a.k.a Xeami",
+ "englishUsFontType":1,
+ "frenchText":"Tatsh a.k.a Xeami",
+ "frenchFontType":1,
+ "italianText":"Tatsh a.k.a Xeami",
+ "italianFontType":1,
+ "germanText":"Tatsh a.k.a Xeami",
+ "germanFontType":1,
+ "spanishText":"Tatsh a.k.a Xeami",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tatsh a.k.a Xeami",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tatsh a.k.a Xeami",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_7fuku",
+ "englishUsText":"Yuya Kobayashi (IOSYS) feat. Yamamoto Momiji (monotone)",
+ "englishUsFontType":1,
+ "frenchText":"Yuya Kobayashi (IOSYS) feat. Yamamoto Momiji (monotone)",
+ "frenchFontType":1,
+ "italianText":"Yuya Kobayashi (IOSYS) feat. Yamamoto Momiji (monotone)",
+ "italianFontType":1,
+ "germanText":"Yuya Kobayashi (IOSYS) feat. Yamamoto Momiji (monotone)",
+ "germanFontType":1,
+ "spanishText":"Yuya Kobayashi (IOSYS) feat. Yamamoto Momiji (monotone)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Yuya Kobayashi (IOSYS) feat. Yamamoto Momiji (monotone)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Yuya Kobayashi (IOSYS) feat. Yamamoto Momiji (monotone)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_orochi",
+ "englishUsText":"REDALiCE",
+ "englishUsFontType":1,
+ "frenchText":"REDALiCE",
+ "frenchFontType":1,
+ "italianText":"REDALiCE",
+ "italianFontType":1,
+ "germanText":"REDALiCE",
+ "germanFontType":1,
+ "spanishText":"REDALiCE",
+ "spanishFontType":1,
+ "neutralSpanishText":"REDALiCE",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"REDALiCE",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_hkgmag",
+ "englishUsText":"Marine base",
+ "englishUsFontType":1,
+ "frenchText":"Marine base",
+ "frenchFontType":1,
+ "italianText":"Marine base",
+ "italianFontType":1,
+ "germanText":"Marine base",
+ "germanFontType":1,
+ "spanishText":"Marine base",
+ "spanishFontType":1,
+ "neutralSpanishText":"Marine base",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Marine base",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_tongat",
+ "englishUsText":"Kimitaka Matsumae",
+ "englishUsFontType":1,
+ "frenchText":"Kimitaka Matsumae",
+ "frenchFontType":1,
+ "italianText":"Kimitaka Matsumae",
+ "italianFontType":1,
+ "germanText":"Kimitaka Matsumae",
+ "germanFontType":1,
+ "spanishText":"Kimitaka Matsumae",
+ "spanishFontType":1,
+ "neutralSpanishText":"Kimitaka Matsumae",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Kimitaka Matsumae",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_ta5ta5",
+ "englishUsText":"AJURIKA",
+ "englishUsFontType":1,
+ "frenchText":"AJURIKA",
+ "frenchFontType":1,
+ "italianText":"AJURIKA",
+ "italianFontType":1,
+ "germanText":"AJURIKA",
+ "germanFontType":1,
+ "spanishText":"AJURIKA",
+ "spanishFontType":1,
+ "neutralSpanishText":"AJURIKA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"AJURIKA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_glokey",
+ "englishUsText":"K. key",
+ "englishUsFontType":1,
+ "frenchText":"K. key",
+ "frenchFontType":1,
+ "italianText":"K. key",
+ "italianFontType":1,
+ "germanText":"K. key",
+ "germanFontType":1,
+ "spanishText":"K. key",
+ "spanishFontType":1,
+ "neutralSpanishText":"K. key",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"K. key",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_allimh",
+ "englishUsText":"Someiyoshino feat. Takagi Miyu (Wake Up, Girls!)",
+ "englishUsFontType":1,
+ "frenchText":"Someiyoshino feat. Takagi Miyu (Wake Up, Girls!)",
+ "frenchFontType":1,
+ "italianText":"Someiyoshino feat. Takagi Miyu (Wake Up, Girls!)",
+ "italianFontType":1,
+ "germanText":"Someiyoshino feat. Takagi Miyu (Wake Up, Girls!)",
+ "germanFontType":1,
+ "spanishText":"Someiyoshino feat. Takagi Miyu (Wake Up, Girls!)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Someiyoshino feat. Takagi Miyu (Wake Up, Girls!)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Someiyoshino feat. Takagi Miyu (Wake Up, Girls!)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_goth",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_clspvn",
+ "englishUsText":"~Kimi no Kodou~",
+ "englishUsFontType":1,
+ "frenchText":"~Kimi no Kodou~",
+ "frenchFontType":1,
+ "italianText":"~Kimi no Kodou~",
+ "italianFontType":1,
+ "germanText":"~Kimi no Kodou~",
+ "germanFontType":1,
+ "spanishText":"~Kimi no Kodou~",
+ "spanishFontType":1,
+ "neutralSpanishText":"~Kimi no Kodou~",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"~Kimi no Kodou~",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_tdm",
+ "englishUsText":"steμ feat.siroa",
+ "englishUsFontType":1,
+ "frenchText":"steμ feat.siroa",
+ "frenchFontType":1,
+ "italianText":"steμ feat.siroa",
+ "italianFontType":1,
+ "germanText":"steμ feat.siroa",
+ "germanFontType":1,
+ "spanishText":"steμ feat.siroa",
+ "spanishFontType":1,
+ "neutralSpanishText":"steμ feat.siroa",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"steμ feat.siroa",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_gekikk",
+ "englishUsText":"DJ Myosuke",
+ "englishUsFontType":1,
+ "frenchText":"DJ Myosuke",
+ "frenchFontType":1,
+ "italianText":"DJ Myosuke",
+ "italianFontType":1,
+ "germanText":"DJ Myosuke",
+ "germanFontType":1,
+ "spanishText":"DJ Myosuke",
+ "spanishFontType":1,
+ "neutralSpanishText":"DJ Myosuke",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DJ Myosuke",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_syclsn",
+ "englishUsText":"From \" Synchronica \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" Synchronica \"",
+ "frenchFontType":1,
+ "italianText":"Da \" Synchronica \"",
+ "italianFontType":1,
+ "germanText":"Aus \" Synchronica \"",
+ "germanFontType":1,
+ "spanishText":"De \" Synchronica \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" Synchronica \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" Synchronica \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_thncrd",
+ "englishUsText":"Toho Project Arrange / Demetori",
+ "englishUsFontType":1,
+ "frenchText":"Toho Project Arrange / Demetori",
+ "frenchFontType":1,
+ "italianText":"Toho Project Arrange / Demetori",
+ "italianFontType":1,
+ "germanText":"Toho Project Arrange / Demetori",
+ "germanFontType":1,
+ "spanishText":"Toho Project Arrange / Demetori",
+ "spanishFontType":1,
+ "neutralSpanishText":"Toho Project Arrange / Demetori",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Toho Project Arrange / Demetori",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_flksak",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_skrexh",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_blrose",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_haryu",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_tank",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_oka47",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_castle",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_chaost",
+ "englishUsText":"!!!Chaos Time!!!",
+ "englishUsFontType":1,
+ "frenchText":"!!!Chaos Time!!!",
+ "frenchFontType":1,
+ "italianText":"!!!Chaos Time!!!",
+ "italianFontType":1,
+ "germanText":"!!!Chaos Time!!!",
+ "germanFontType":1,
+ "spanishText":"!!!Chaos Time!!!",
+ "spanishFontType":1,
+ "neutralSpanishText":"!!!Chaos Time!!!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"!!!Chaos Time!!!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_krbld",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_immbra",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_dsadvn",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_eatem",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_flyawy",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_tek7he",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_ygnarr",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_genpe",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_anayuk",
+ "englishUsText":"Let It Go",
+ "englishUsFontType":1,
+ "frenchText":"Let It Go",
+ "frenchFontType":1,
+ "italianText":"Let It Go",
+ "italianFontType":1,
+ "germanText":"Let It Go",
+ "germanFontType":1,
+ "spanishText":"Let It Go",
+ "spanishFontType":1,
+ "neutralSpanishText":"Let It Go",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Let It Go",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_ynlose",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_msclht",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_nograv",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_rdrose",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_skorpg",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_dem31k",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_sf5ryu",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_uheart",
+ "englishUsText":"UNDEAD HEART (IKARI NO Warriors)",
+ "englishUsFontType":1,
+ "frenchText":"UNDEAD HEART (IKARI NO Warriors)",
+ "frenchFontType":1,
+ "italianText":"UNDEAD HEART (IKARI NO Warriors)",
+ "italianFontType":1,
+ "germanText":"UNDEAD HEART (IKARI NO Warriors)",
+ "germanFontType":1,
+ "spanishText":"UNDEAD HEART (IKARI NO Warriors)",
+ "spanishFontType":1,
+ "neutralSpanishText":"UNDEAD HEART (IKARI NO Warriors)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"UNDEAD HEART (IKARI NO Warriors)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_crturb",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_crkvic",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_kaidan",
+ "englishUsText":"χ-DAN",
+ "englishUsFontType":1,
+ "frenchText":"χ-DAN",
+ "frenchFontType":1,
+ "italianText":"χ-DAN",
+ "italianFontType":1,
+ "germanText":"χ-DAN",
+ "germanFontType":1,
+ "spanishText":"χ-DAN",
+ "spanishFontType":1,
+ "neutralSpanishText":"χ-DAN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"χ-DAN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_apollo",
+ "englishUsText":"APOLLO",
+ "englishUsFontType":1,
+ "frenchText":"APOLLO",
+ "frenchFontType":1,
+ "italianText":"APOLLO",
+ "italianFontType":1,
+ "germanText":"APOLLO",
+ "germanFontType":1,
+ "spanishText":"APOLLO",
+ "spanishFontType":1,
+ "neutralSpanishText":"APOLLO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"APOLLO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_ikenai",
+ "englishUsText":"Ikenai Taiyou",
+ "englishUsFontType":1,
+ "frenchText":"Ikenai Taiyou",
+ "frenchFontType":1,
+ "italianText":"Ikenai Taiyou",
+ "italianFontType":1,
+ "germanText":"Ikenai Taiyou",
+ "germanFontType":1,
+ "spanishText":"Ikenai Taiyou",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ikenai Taiyou",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ikenai Taiyou",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_weare0",
+ "englishUsText":"We Are!",
+ "englishUsFontType":1,
+ "frenchText":"We Are!",
+ "frenchFontType":1,
+ "italianText":"We Are!",
+ "italianFontType":1,
+ "germanText":"We Are!",
+ "germanFontType":1,
+ "spanishText":"We Are!",
+ "spanishFontType":1,
+ "neutralSpanishText":"We Are!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"We Are!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_clsw",
+ "englishUsText":"William Tell Overture",
+ "englishUsFontType":1,
+ "frenchText":"William Tell Overture",
+ "frenchFontType":1,
+ "italianText":"William Tell Overture",
+ "italianFontType":1,
+ "germanText":"William Tell Overture",
+ "germanFontType":1,
+ "spanishText":"William Tell Overture",
+ "spanishFontType":1,
+ "neutralSpanishText":"William Tell Overture",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"William Tell Overture",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_mikuaa",
+ "englishUsText":"Alien Alien",
+ "englishUsFontType":1,
+ "frenchText":"Alien Alien",
+ "frenchFontType":1,
+ "italianText":"Alien Alien",
+ "italianFontType":1,
+ "germanText":"Alien Alien",
+ "germanFontType":1,
+ "spanishText":"Alien Alien",
+ "spanishFontType":1,
+ "neutralSpanishText":"Alien Alien",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alien Alien",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_trance",
+ "englishUsText":"Angel Dream",
+ "englishUsFontType":1,
+ "frenchText":"Angel Dream",
+ "frenchFontType":1,
+ "italianText":"Angel Dream",
+ "italianFontType":1,
+ "germanText":"Angel Dream",
+ "germanFontType":1,
+ "spanishText":"Angel Dream",
+ "spanishFontType":1,
+ "neutralSpanishText":"Angel Dream",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Angel Dream",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_omirai",
+ "englishUsText":"Original MIRAI",
+ "englishUsFontType":1,
+ "frenchText":"Original MIRAI",
+ "frenchFontType":1,
+ "italianText":"Original MIRAI",
+ "italianFontType":1,
+ "germanText":"Original MIRAI",
+ "germanFontType":1,
+ "spanishText":"Original MIRAI",
+ "spanishFontType":1,
+ "neutralSpanishText":"Original MIRAI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Original MIRAI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_imconc",
+ "englishUsText":"Onegai! Cinderella ",
+ "englishUsFontType":1,
+ "frenchText":"Onegai! Cinderella ",
+ "frenchFontType":1,
+ "italianText":"Onegai! Cinderella ",
+ "italianFontType":1,
+ "germanText":"Onegai! Cinderella ",
+ "germanFontType":1,
+ "spanishText":"Onegai! Cinderella ",
+ "spanishFontType":1,
+ "neutralSpanishText":"Onegai! Cinderella ",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Onegai! Cinderella ",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_clsca",
+ "englishUsText":"Carmen Prelude",
+ "englishUsFontType":1,
+ "frenchText":"Carmen Prelude",
+ "frenchFontType":1,
+ "italianText":"Carmen Prelude",
+ "italianFontType":1,
+ "germanText":"Carmen Prelude",
+ "germanFontType":1,
+ "spanishText":"Carmen Prelude",
+ "spanishFontType":1,
+ "neutralSpanishText":"Carmen Prelude",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Carmen Prelude",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_gunsln",
+ "englishUsText":"Gunslinger Cinderella",
+ "englishUsFontType":1,
+ "frenchText":"Gunslinger Cinderella",
+ "frenchFontType":1,
+ "italianText":"Gunslinger Cinderella",
+ "italianFontType":1,
+ "germanText":"Gunslinger Cinderella",
+ "germanFontType":1,
+ "spanishText":"Gunslinger Cinderella",
+ "spanishFontType":1,
+ "neutralSpanishText":"Gunslinger Cinderella",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Gunslinger Cinderella",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_kiseki",
+ "englishUsText":"KISEKI",
+ "englishUsFontType":1,
+ "frenchText":"KISEKI",
+ "frenchFontType":1,
+ "italianText":"KISEKI",
+ "italianFontType":1,
+ "germanText":"KISEKI",
+ "germanFontType":1,
+ "spanishText":"KISEKI",
+ "spanishFontType":1,
+ "neutralSpanishText":"KISEKI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KISEKI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_gimcho",
+ "englishUsText":"Gimme Chocolate!!",
+ "englishUsFontType":1,
+ "frenchText":"Gimme Chocolate!!",
+ "frenchFontType":1,
+ "italianText":"Gimme Chocolate!!",
+ "italianFontType":1,
+ "germanText":"Gimme Chocolate!!",
+ "germanFontType":1,
+ "spanishText":"Gimme Chocolate!!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Gimme Chocolate!!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Gimme Chocolate!!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_clsr",
+ "englishUsText":"Classical Music Medley (Rock version)",
+ "englishUsFontType":1,
+ "frenchText":"Classical Music Medley (Rock version)",
+ "frenchFontType":1,
+ "italianText":"Classical Music Medley (Rock version)",
+ "italianFontType":1,
+ "germanText":"Classical Music Medley (Rock version)",
+ "germanFontType":1,
+ "spanishText":"Classical Music Medley (Rock version)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Classical Music Medley (Rock version)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Classical Music Medley (Rock version)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_mikugr",
+ "englishUsText":"Ghost Rule",
+ "englishUsFontType":1,
+ "frenchText":"Ghost Rule",
+ "frenchFontType":1,
+ "italianText":"Ghost Rule",
+ "italianFontType":1,
+ "germanText":"Ghost Rule",
+ "germanFontType":1,
+ "spanishText":"Ghost Rule",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ghost Rule",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ghost Rule",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_57mono",
+ "englishUsText":"KONAMONO☆",
+ "englishUsFontType":1,
+ "frenchText":"KONAMONO☆",
+ "frenchFontType":1,
+ "italianText":"KONAMONO☆",
+ "italianFontType":1,
+ "germanText":"KONAMONO☆",
+ "germanFontType":1,
+ "spanishText":"KONAMONO☆",
+ "spanishFontType":1,
+ "neutralSpanishText":"KONAMONO☆",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KONAMONO☆",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_rot",
+ "englishUsText":"SAITAMA 2000",
+ "englishUsFontType":1,
+ "frenchText":"SAITAMA 2000",
+ "frenchFontType":1,
+ "italianText":"SAITAMA 2000",
+ "italianFontType":1,
+ "germanText":"SAITAMA 2000",
+ "germanFontType":1,
+ "spanishText":"SAITAMA 2000",
+ "spanishFontType":1,
+ "neutralSpanishText":"SAITAMA 2000",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SAITAMA 2000",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_kyksmj",
+ "englishUsText":"Silent Majority",
+ "englishUsFontType":1,
+ "frenchText":"Silent Majority",
+ "frenchFontType":1,
+ "italianText":"Silent Majority",
+ "italianFontType":1,
+ "germanText":"Silent Majority",
+ "germanFontType":1,
+ "spanishText":"Silent Majority",
+ "spanishFontType":1,
+ "neutralSpanishText":"Silent Majority",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Silent Majority",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_skrnb",
+ "englishUsText":"Sakuranbo",
+ "englishUsFontType":1,
+ "frenchText":"Sakuranbo",
+ "frenchFontType":1,
+ "italianText":"Sakuranbo",
+ "italianFontType":1,
+ "germanText":"Sakuranbo",
+ "germanFontType":1,
+ "spanishText":"Sakuranbo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sakuranbo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sakuranbo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_warya",
+ "englishUsText":"SAYONARA Varya",
+ "englishUsFontType":1,
+ "frenchText":"SAYONARA Varya",
+ "frenchFontType":1,
+ "italianText":"SAYONARA Varya",
+ "italianFontType":1,
+ "germanText":"SAYONARA Varya",
+ "germanFontType":1,
+ "spanishText":"SAYONARA Varya",
+ "spanishFontType":1,
+ "neutralSpanishText":"SAYONARA Varya",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SAYONARA Varya",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_kekka2",
+ "englishUsText":"Sugar Song & Bitter Step",
+ "englishUsFontType":1,
+ "frenchText":"Sugar Song & Bitter Step",
+ "frenchFontType":1,
+ "italianText":"Sugar Song & Bitter Step",
+ "italianFontType":1,
+ "germanText":"Sugar Song & Bitter Step",
+ "germanFontType":1,
+ "spanishText":"Sugar Song & Bitter Step",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sugar Song & Bitter Step",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sugar Song & Bitter Step",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_so2omf",
+ "englishUsText":"SOTSUOMESHIKI・Full",
+ "englishUsFontType":1,
+ "frenchText":"SOTSUOMESHIKI・Full",
+ "frenchFontType":1,
+ "italianText":"SOTSUOMESHIKI・Full",
+ "italianFontType":1,
+ "germanText":"SOTSUOMESHIKI・Full",
+ "germanFontType":1,
+ "spanishText":"SOTSUOMESHIKI・Full",
+ "spanishFontType":1,
+ "neutralSpanishText":"SOTSUOMESHIKI・Full",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SOTSUOMESHIKI・Full",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_timtrv",
+ "englishUsText":"Time Traveler",
+ "englishUsFontType":1,
+ "frenchText":"Time Traveler",
+ "frenchFontType":1,
+ "italianText":"Time Traveler",
+ "italianFontType":1,
+ "germanText":"Time Traveler",
+ "germanFontType":1,
+ "spanishText":"Time Traveler",
+ "spanishFontType":1,
+ "neutralSpanishText":"Time Traveler",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Time Traveler",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_thchil",
+ "englishUsText":"Cirno's Perfect Math Class",
+ "englishUsFontType":1,
+ "frenchText":"Cirno's Perfect Math Class",
+ "frenchFontType":1,
+ "italianText":"Cirno's Perfect Math Class",
+ "italianFontType":1,
+ "germanText":"Cirno's Perfect Math Class",
+ "germanFontType":1,
+ "spanishText":"Cirno's Perfect Math Class",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cirno's Perfect Math Class",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Cirno's Perfect Math Class",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_psf1op",
+ "englishUsText":"TSUNAGARE! HIROGARE! UCHIAGARE!",
+ "englishUsFontType":1,
+ "frenchText":"TSUNAGARE! HIROGARE! UCHIAGARE!",
+ "frenchFontType":1,
+ "italianText":"TSUNAGARE! HIROGARE! UCHIAGARE!",
+ "italianFontType":1,
+ "germanText":"TSUNAGARE! HIROGARE! UCHIAGARE!",
+ "germanFontType":1,
+ "spanishText":"TSUNAGARE! HIROGARE! UCHIAGARE!",
+ "spanishFontType":1,
+ "neutralSpanishText":"TSUNAGARE! HIROGARE! UCHIAGARE!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"TSUNAGARE! HIROGARE! UCHIAGARE!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_tobers",
+ "englishUsText":"Tales of Berseria Medley",
+ "englishUsFontType":1,
+ "frenchText":"Tales of Berseria Medley",
+ "frenchFontType":1,
+ "italianText":"Tales of Berseria Medley",
+ "italianFontType":1,
+ "germanText":"Tales of Berseria Medley",
+ "germanFontType":1,
+ "spanishText":"Tales of Berseria Medley",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tales of Berseria Medley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tales of Berseria Medley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_6ne9om",
+ "englishUsText":"DOKIDOKI MUNEKYUN OMATSURI Time",
+ "englishUsFontType":1,
+ "frenchText":"DOKIDOKI MUNEKYUN OMATSURI Time",
+ "frenchFontType":1,
+ "italianText":"DOKIDOKI MUNEKYUN OMATSURI Time",
+ "italianFontType":1,
+ "germanText":"DOKIDOKI MUNEKYUN OMATSURI Time",
+ "germanFontType":1,
+ "spanishText":"DOKIDOKI MUNEKYUN OMATSURI Time",
+ "spanishFontType":1,
+ "neutralSpanishText":"DOKIDOKI MUNEKYUN OMATSURI Time",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DOKIDOKI MUNEKYUN OMATSURI Time",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_totoro",
+ "englishUsText":"My Neighbor Totoro – Ending Theme Song",
+ "englishUsFontType":1,
+ "frenchText":"Mon Voisin Totoro - générique de fin",
+ "frenchFontType":1,
+ "italianText":"Il mio vicino Totoro - Tema principale",
+ "italianFontType":1,
+ "germanText":"Mein Nachbar Totoro – Abspann",
+ "germanFontType":1,
+ "spanishText":"Mi vecino Totoro (Tema principal - Tema final)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mi vecino Totoro (Tema principal - Tema final)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"My Neighbor Totoro (The Ending Song)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_zootop",
+ "englishUsText":"Try Everything",
+ "englishUsFontType":1,
+ "frenchText":"Try Everything",
+ "frenchFontType":1,
+ "italianText":"Try Everything",
+ "italianFontType":1,
+ "germanText":"Try Everything",
+ "germanFontType":1,
+ "spanishText":"Try Everything",
+ "spanishFontType":1,
+ "neutralSpanishText":"Try Everything",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Try Everything",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_drsp",
+ "englishUsText":"DRAGON SPIRIT Medley",
+ "englishUsFontType":1,
+ "frenchText":"DRAGON SPIRIT Medley",
+ "frenchFontType":1,
+ "italianText":"DRAGON SPIRIT Medley",
+ "italianFontType":1,
+ "germanText":"DRAGON SPIRIT Medley",
+ "germanFontType":1,
+ "spanishText":"DRAGON SPIRIT Medley",
+ "spanishFontType":1,
+ "neutralSpanishText":"DRAGON SPIRIT Medley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DRAGON SPIRIT Medley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_trustg",
+ "englishUsText":"Trust Game",
+ "englishUsFontType":1,
+ "frenchText":"Trust Game",
+ "frenchFontType":1,
+ "italianText":"Trust Game",
+ "italianFontType":1,
+ "germanText":"Trust Game",
+ "germanFontType":1,
+ "spanishText":"Trust Game",
+ "spanishFontType":1,
+ "neutralSpanishText":"Trust Game",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Trust Game",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_druaga",
+ "englishUsText":"THE TOWER OF DRUAGA Medley",
+ "englishUsFontType":1,
+ "frenchText":"THE TOWER OF DRUAGA Medley",
+ "frenchFontType":1,
+ "italianText":"THE TOWER OF DRUAGA Medley",
+ "italianFontType":1,
+ "germanText":"THE TOWER OF DRUAGA Medley",
+ "germanFontType":1,
+ "spanishText":"THE TOWER OF DRUAGA Medley",
+ "spanishFontType":1,
+ "neutralSpanishText":"THE TOWER OF DRUAGA Medley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"THE TOWER OF DRUAGA Medley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_th7171",
+ "englishUsText":"Night of Knights / Knight of Nights",
+ "englishUsFontType":1,
+ "frenchText":"Night of Knights / Knight of Nights",
+ "frenchFontType":1,
+ "italianText":"Night of Knights / Knight of Nights",
+ "italianFontType":1,
+ "germanText":"Night of Knights / Knight of Nights",
+ "germanFontType":1,
+ "spanishText":"Night of Knights / Knight of Nights",
+ "spanishFontType":1,
+ "neutralSpanishText":"Night of Knights / Knight of Nights",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Night of Knights / Knight of Nights",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_ninjbb",
+ "englishUsText":"Ninja Re Bang Bang",
+ "englishUsFontType":1,
+ "frenchText":"Ninja Re Bang Bang",
+ "frenchFontType":1,
+ "italianText":"Ninja Re Bang Bang",
+ "italianFontType":1,
+ "germanText":"Ninja Re Bang Bang",
+ "germanFontType":1,
+ "spanishText":"Ninja Re Bang Bang",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ninja Re Bang Bang",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ninja Re Bang Bang",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_bforc",
+ "englishUsText":"BURNING FORCE Medley",
+ "englishUsFontType":1,
+ "frenchText":"BURNING FORCE Medley",
+ "frenchFontType":1,
+ "italianText":"BURNING FORCE Medley",
+ "italianFontType":1,
+ "germanText":"BURNING FORCE Medley",
+ "germanFontType":1,
+ "spanishText":"BURNING FORCE Medley",
+ "spanishFontType":1,
+ "neutralSpanishText":"BURNING FORCE Medley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"BURNING FORCE Medley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_angel3",
+ "englishUsText":"Pastel Dream",
+ "englishUsFontType":1,
+ "frenchText":"Pastel Dream",
+ "frenchFontType":1,
+ "italianText":"Pastel Dream",
+ "italianFontType":1,
+ "germanText":"Pastel Dream",
+ "germanFontType":1,
+ "spanishText":"Pastel Dream",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pastel Dream",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pastel Dream",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_babel",
+ "englishUsText":"THE TOWER OF BABEL",
+ "englishUsFontType":1,
+ "frenchText":"THE TOWER OF BABEL",
+ "frenchFontType":1,
+ "italianText":"THE TOWER OF BABEL",
+ "italianFontType":1,
+ "germanText":"THE TOWER OF BABEL",
+ "germanFontType":1,
+ "spanishText":"THE TOWER OF BABEL",
+ "spanishFontType":1,
+ "neutralSpanishText":"THE TOWER OF BABEL",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"THE TOWER OF BABEL",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_hkitty",
+ "englishUsText":"HELLO KITTY",
+ "englishUsFontType":1,
+ "frenchText":"HELLO KITTY",
+ "frenchFontType":1,
+ "italianText":"HELLO KITTY",
+ "italianFontType":1,
+ "germanText":"HELLO KITTY",
+ "germanFontType":1,
+ "spanishText":"HELLO KITTY",
+ "spanishFontType":1,
+ "neutralSpanishText":"HELLO KITTY",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HELLO KITTY",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_clsh69",
+ "englishUsText":"Hungarian Rock",
+ "englishUsFontType":1,
+ "frenchText":"Hungarian Rock",
+ "frenchFontType":1,
+ "italianText":"Hungarian Rock",
+ "italianFontType":1,
+ "germanText":"Hungarian Rock",
+ "germanFontType":1,
+ "spanishText":"Hungarian Rock",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hungarian Rock",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hungarian Rock",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_himyak",
+ "englishUsText":"Himawari no Yakusoku",
+ "englishUsFontType":1,
+ "frenchText":"Himawari no Yakusoku",
+ "frenchFontType":1,
+ "italianText":"Himawari no Yakusoku",
+ "italianFontType":1,
+ "germanText":"Himawari no Yakusoku",
+ "germanFontType":1,
+ "spanishText":"Himawari no Yakusoku",
+ "spanishFontType":1,
+ "neutralSpanishText":"Himawari no Yakusoku",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Himawari no Yakusoku",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_ppap",
+ "englishUsText":"Pen-Pineapple-Apple-Pen (PPAP)",
+ "englishUsFontType":1,
+ "frenchText":"Pen-Pineapple-Apple-Pen (PPAP)",
+ "frenchFontType":1,
+ "italianText":"Pen-Pineapple-Apple-Pen (PPAP)",
+ "italianFontType":1,
+ "germanText":"Pen-Pineapple-Apple-Pen (PPAP)",
+ "germanFontType":1,
+ "spanishText":"Pen-Pineapple-Apple-Pen (PPAP)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pen-Pineapple-Apple-Pen (PPAP)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pen-Pineapple-Apple-Pen (PPAP)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_mgpafe",
+ "englishUsText":"Magical Parfait",
+ "englishUsFontType":1,
+ "frenchText":"Magical Parfait",
+ "frenchFontType":1,
+ "italianText":"Magical Parfait",
+ "italianFontType":1,
+ "germanText":"Magical Parfait",
+ "germanFontType":1,
+ "spanishText":"Magical Parfait",
+ "spanishFontType":1,
+ "neutralSpanishText":"Magical Parfait",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Magical Parfait",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_rot4",
+ "englishUsText":"MADA SAITAMA 2000",
+ "englishUsFontType":1,
+ "frenchText":"MADA SAITAMA 2000",
+ "frenchFontType":1,
+ "italianText":"MADA SAITAMA 2000",
+ "italianFontType":1,
+ "germanText":"MADA SAITAMA 2000",
+ "germanFontType":1,
+ "spanishText":"MADA SAITAMA 2000",
+ "spanishFontType":1,
+ "neutralSpanishText":"MADA SAITAMA 2000",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"MADA SAITAMA 2000",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_mappy2",
+ "englishUsText":"MAPPY Medley",
+ "englishUsFontType":1,
+ "frenchText":"MAPPY Medley",
+ "frenchFontType":1,
+ "italianText":"MAPPY Medley",
+ "italianFontType":1,
+ "germanText":"MAPPY Medley",
+ "germanFontType":1,
+ "spanishText":"MAPPY Medley",
+ "spanishFontType":1,
+ "neutralSpanishText":"MAPPY Medley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"MAPPY Medley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_miku39",
+ "englishUsText":"Mikumiku Ni Shiteageru♪【Shiteyanyo】",
+ "englishUsFontType":1,
+ "frenchText":"Mikumiku Ni Shiteageru♪【Shiteyanyo】",
+ "frenchFontType":1,
+ "italianText":"Mikumiku Ni Shiteageru♪【Shiteyanyo】",
+ "italianFontType":1,
+ "germanText":"Mikumiku Ni Shiteageru♪【Shiteyanyo】",
+ "germanFontType":1,
+ "spanishText":"Mikumiku Ni Shiteageru♪【Shiteyanyo】",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mikumiku Ni Shiteageru♪【Shiteyanyo】",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mikumiku Ni Shiteageru♪【Shiteyanyo】",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_moji",
+ "englishUsText":"MOJIPITTAN Medley",
+ "englishUsFontType":1,
+ "frenchText":"MOJIPITTAN Medley",
+ "frenchFontType":1,
+ "italianText":"MOJIPITTAN Medley",
+ "italianFontType":1,
+ "germanText":"MOJIPITTAN Medley",
+ "germanFontType":1,
+ "spanishText":"MOJIPITTAN Medley",
+ "spanishFontType":1,
+ "neutralSpanishText":"MOJIPITTAN Medley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"MOJIPITTAN Medley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_vrock",
+ "englishUsText":"YUGAO NO KIMI",
+ "englishUsFontType":1,
+ "frenchText":"YUGAO NO KIMI",
+ "frenchFontType":1,
+ "italianText":"YUGAO NO KIMI",
+ "italianFontType":1,
+ "germanText":"YUGAO NO KIMI",
+ "germanFontType":1,
+ "spanishText":"YUGAO NO KIMI",
+ "spanishFontType":1,
+ "neutralSpanishText":"YUGAO NO KIMI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"YUGAO NO KIMI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_japari",
+ "englishUsText":"Welcome to Japari Park",
+ "englishUsFontType":1,
+ "frenchText":"Welcome to Japari Park",
+ "frenchFontType":1,
+ "italianText":"Welcome to Japari Park",
+ "italianFontType":1,
+ "germanText":"Welcome to Japari Park",
+ "germanFontType":1,
+ "spanishText":"Welcome to Japari Park",
+ "spanishFontType":1,
+ "neutralSpanishText":"Welcome to Japari Park",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Welcome to Japari Park",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_linda",
+ "englishUsText":"LINDA LINDA",
+ "englishUsFontType":1,
+ "frenchText":"LINDA LINDA",
+ "frenchFontType":1,
+ "italianText":"LINDA LINDA",
+ "italianFontType":1,
+ "germanText":"LINDA LINDA",
+ "germanFontType":1,
+ "spanishText":"LINDA LINDA",
+ "spanishFontType":1,
+ "neutralSpanishText":"LINDA LINDA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"LINDA LINDA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_roadmv",
+ "englishUsText":"Road Movie",
+ "englishUsFontType":1,
+ "frenchText":"Road Movie",
+ "frenchFontType":1,
+ "italianText":"Road Movie",
+ "italianFontType":1,
+ "germanText":"Road Movie",
+ "germanFontType":1,
+ "spanishText":"Road Movie",
+ "spanishFontType":1,
+ "neutralSpanishText":"Road Movie",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Road Movie",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_lost1g",
+ "englishUsText":"The Lost One's Weeping",
+ "englishUsFontType":1,
+ "frenchText":"The Lost One's Weeping",
+ "frenchFontType":1,
+ "italianText":"The Lost One's Weeping",
+ "italianFontType":1,
+ "germanText":"The Lost One's Weeping",
+ "germanFontType":1,
+ "spanishText":"The Lost One's Weeping",
+ "spanishFontType":1,
+ "neutralSpanishText":"The Lost One's Weeping",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"The Lost One's Weeping",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_83noma",
+ "englishUsText":"YAMI NO MAHOUSHOUJO",
+ "englishUsFontType":1,
+ "frenchText":"YAMI NO MAHOUSHOUJO",
+ "frenchFontType":1,
+ "italianText":"YAMI NO MAHOUSHOUJO",
+ "italianFontType":1,
+ "germanText":"YAMI NO MAHOUSHOUJO",
+ "germanFontType":1,
+ "spanishText":"YAMI NO MAHOUSHOUJO",
+ "spanishFontType":1,
+ "neutralSpanishText":"YAMI NO MAHOUSHOUJO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"YAMI NO MAHOUSHOUJO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_izanam",
+ "englishUsText":"YOMI NO IZANAMI",
+ "englishUsFontType":1,
+ "frenchText":"YOMI NO IZANAMI",
+ "frenchFontType":1,
+ "italianText":"YOMI NO IZANAMI",
+ "italianFontType":1,
+ "germanText":"YOMI NO IZANAMI",
+ "germanFontType":1,
+ "spanishText":"YOMI NO IZANAMI",
+ "spanishFontType":1,
+ "neutralSpanishText":"YOMI NO IZANAMI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"YOMI NO IZANAMI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_otomus",
+ "englishUsText":"OTOMUSHI WO TSUKAMAERO!",
+ "englishUsFontType":1,
+ "frenchText":"OTOMUSHI WO TSUKAMAERO!",
+ "frenchFontType":1,
+ "italianText":"OTOMUSHI WO TSUKAMAERO!",
+ "italianFontType":1,
+ "germanText":"OTOMUSHI WO TSUKAMAERO!",
+ "germanFontType":1,
+ "spanishText":"OTOMUSHI WO TSUKAMAERO!",
+ "spanishFontType":1,
+ "neutralSpanishText":"OTOMUSHI WO TSUKAMAERO!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"OTOMUSHI WO TSUKAMAERO!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_natsu",
+ "englishUsText":"Natsumatsuri",
+ "englishUsFontType":1,
+ "frenchText":"Natsumatsuri",
+ "frenchFontType":1,
+ "italianText":"Natsumatsuri",
+ "italianFontType":1,
+ "germanText":"Natsumatsuri",
+ "germanFontType":1,
+ "spanishText":"Natsumatsuri",
+ "spanishFontType":1,
+ "neutralSpanishText":"Natsumatsuri",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Natsumatsuri",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_kteien",
+ "englishUsText":"KAICHUTEIEN WO MOTSU SHOUJO",
+ "englishUsFontType":1,
+ "frenchText":"KAICHUTEIEN WO MOTSU SHOUJO",
+ "frenchFontType":1,
+ "italianText":"KAICHUTEIEN WO MOTSU SHOUJO",
+ "italianFontType":1,
+ "germanText":"KAICHUTEIEN WO MOTSU SHOUJO",
+ "germanFontType":1,
+ "spanishText":"KAICHUTEIEN WO MOTSU SHOUJO",
+ "spanishFontType":1,
+ "neutralSpanishText":"KAICHUTEIEN WO MOTSU SHOUJO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KAICHUTEIEN WO MOTSU SHOUJO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_uminok",
+ "englishUsText":"Umi no Koe",
+ "englishUsFontType":1,
+ "frenchText":"Umi no Koe",
+ "frenchFontType":1,
+ "italianText":"Umi no Koe",
+ "italianFontType":1,
+ "germanText":"Umi no Koe",
+ "germanFontType":1,
+ "spanishText":"Umi no Koe",
+ "spanishFontType":1,
+ "neutralSpanishText":"Umi no Koe",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Umi no Koe",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_dbcgen",
+ "englishUsText":"Genkai Toppa × Survivor",
+ "englishUsFontType":1,
+ "frenchText":"Genkai Toppa × Survivor",
+ "frenchFontType":1,
+ "italianText":"Genkai Toppa × Survivor",
+ "italianFontType":1,
+ "germanText":"Genkai Toppa × Survivor",
+ "germanFontType":1,
+ "spanishText":"Genkai Toppa × Survivor",
+ "spanishFontType":1,
+ "neutralSpanishText":"Genkai Toppa × Survivor",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Genkai Toppa × Survivor",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_xjapan",
+ "englishUsText":"KURENAI",
+ "englishUsFontType":1,
+ "frenchText":"KURENAI",
+ "frenchFontType":1,
+ "italianText":"KURENAI",
+ "italianFontType":1,
+ "germanText":"KURENAI",
+ "germanFontType":1,
+ "spanishText":"KURENAI",
+ "spanishFontType":1,
+ "neutralSpanishText":"KURENAI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KURENAI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_shing2",
+ "englishUsText":"Guren no Yumiya",
+ "englishUsFontType":1,
+ "frenchText":"Guren no Yumiya",
+ "frenchFontType":1,
+ "italianText":"Guren no Yumiya",
+ "italianFontType":1,
+ "germanText":"Guren no Yumiya",
+ "germanFontType":1,
+ "spanishText":"Guren no Yumiya",
+ "spanishFontType":1,
+ "neutralSpanishText":"Guren no Yumiya",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Guren no Yumiya",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_stabof",
+ "englishUsText":"GASSHO STIVAL-FE!",
+ "englishUsFontType":1,
+ "frenchText":"GASSHO STIVAL-FE!",
+ "frenchFontType":1,
+ "italianText":"GASSHO STIVAL-FE!",
+ "italianFontType":1,
+ "germanText":"GASSHO STIVAL-FE!",
+ "germanFontType":1,
+ "spanishText":"GASSHO STIVAL-FE!",
+ "spanishFontType":1,
+ "neutralSpanishText":"GASSHO STIVAL-FE!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"GASSHO STIVAL-FE!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_thflnd",
+ "englishUsText":"Last Brutal Sister Flandre S",
+ "englishUsFontType":1,
+ "frenchText":"Last Brutal Sister Flandre S",
+ "frenchFontType":1,
+ "italianText":"Last Brutal Sister Flandre S",
+ "italianFontType":1,
+ "germanText":"Last Brutal Sister Flandre S",
+ "germanFontType":1,
+ "spanishText":"Last Brutal Sister Flandre S",
+ "spanishFontType":1,
+ "neutralSpanishText":"Last Brutal Sister Flandre S",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Last Brutal Sister Flandre S",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_butou9",
+ "englishUsText":"OUKA RANMAN",
+ "englishUsFontType":1,
+ "frenchText":"OUKA RANMAN",
+ "frenchFontType":1,
+ "italianText":"OUKA RANMAN",
+ "italianFontType":1,
+ "germanText":"OUKA RANMAN",
+ "germanFontType":1,
+ "spanishText":"OUKA RANMAN",
+ "spanishFontType":1,
+ "neutralSpanishText":"OUKA RANMAN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"OUKA RANMAN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_32segw",
+ "englishUsText":"MITSUSEGAWA RANBU",
+ "englishUsFontType":1,
+ "frenchText":"MITSUSEGAWA RANBU",
+ "frenchFontType":1,
+ "italianText":"MITSUSEGAWA RANBU",
+ "italianFontType":1,
+ "germanText":"MITSUSEGAWA RANBU",
+ "germanFontType":1,
+ "spanishText":"MITSUSEGAWA RANBU",
+ "spanishFontType":1,
+ "neutralSpanishText":"MITSUSEGAWA RANBU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"MITSUSEGAWA RANBU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_eva",
+ "englishUsText":"A Cruel Angel's Thesis",
+ "englishUsFontType":1,
+ "frenchText":"A Cruel Angel's Thesis",
+ "frenchFontType":1,
+ "italianText":"A Cruel Angel's Thesis",
+ "italianFontType":1,
+ "germanText":"A Cruel Angel's Thesis",
+ "germanFontType":1,
+ "spanishText":"A Cruel Angel's Thesis",
+ "spanishFontType":1,
+ "neutralSpanishText":"A Cruel Angel's Thesis",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"A Cruel Angel's Thesis",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_takamg",
+ "englishUsText":"SHIRITSU TAKAMAGAHARA GAKUEN KOUKOU・KOUKA",
+ "englishUsFontType":1,
+ "frenchText":"SHIRITSU TAKAMAGAHARA GAKUEN KOUKOU・KOUKA",
+ "frenchFontType":1,
+ "italianText":"SHIRITSU TAKAMAGAHARA GAKUEN KOUKOU・KOUKA",
+ "italianFontType":1,
+ "germanText":"SHIRITSU TAKAMAGAHARA GAKUEN KOUKOU・KOUKA",
+ "germanFontType":1,
+ "spanishText":"SHIRITSU TAKAMAGAHARA GAKUEN KOUKOU・KOUKA",
+ "spanishFontType":1,
+ "neutralSpanishText":"SHIRITSU TAKAMAGAHARA GAKUEN KOUKOU・KOUKA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SHIRITSU TAKAMAGAHARA GAKUEN KOUKOU・KOUKA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_mikuer",
+ "englishUsText":"HATSUNE MIKU No Shoushitsu -Gekijouban-",
+ "englishUsFontType":1,
+ "frenchText":"HATSUNE MIKU No Shoushitsu -Gekijouban-",
+ "frenchFontType":1,
+ "italianText":"HATSUNE MIKU No Shoushitsu -Gekijouban-",
+ "italianFontType":1,
+ "germanText":"HATSUNE MIKU No Shoushitsu -Gekijouban-",
+ "germanFontType":1,
+ "spanishText":"HATSUNE MIKU No Shoushitsu -Gekijouban-",
+ "spanishFontType":1,
+ "neutralSpanishText":"HATSUNE MIKU No Shoushitsu -Gekijouban-",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HATSUNE MIKU No Shoushitsu -Gekijouban-",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_memesi",
+ "englishUsText":"Memeshikute",
+ "englishUsFontType":1,
+ "frenchText":"Memeshikute",
+ "frenchFontType":1,
+ "italianText":"Memeshikute",
+ "italianFontType":1,
+ "germanText":"Memeshikute",
+ "germanFontType":1,
+ "spanishText":"Memeshikute",
+ "spanishFontType":1,
+ "neutralSpanishText":"Memeshikute",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Memeshikute",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_snyq",
+ "englishUsText":"SHOUNIN YOK-Q",
+ "englishUsFontType":1,
+ "frenchText":"SHOUNIN YOK-Q",
+ "frenchFontType":1,
+ "italianText":"SHOUNIN YOK-Q",
+ "italianFontType":1,
+ "germanText":"SHOUNIN YOK-Q",
+ "germanFontType":1,
+ "spanishText":"SHOUNIN YOK-Q",
+ "spanishFontType":1,
+ "neutralSpanishText":"SHOUNIN YOK-Q",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SHOUNIN YOK-Q",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_mikuse",
+ "englishUsText":"Senbonzakura",
+ "englishUsFontType":1,
+ "frenchText":"Senbonzakura",
+ "frenchFontType":1,
+ "italianText":"Senbonzakura",
+ "italianFontType":1,
+ "germanText":"Senbonzakura",
+ "germanFontType":1,
+ "spanishText":"Senbonzakura",
+ "spanishFontType":1,
+ "neutralSpanishText":"Senbonzakura",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Senbonzakura",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_zense",
+ "englishUsText":"Zenzenzense",
+ "englishUsFontType":1,
+ "frenchText":"Zenzenzense",
+ "frenchFontType":1,
+ "italianText":"Zenzenzense",
+ "italianFontType":1,
+ "germanText":"Zenzenzense",
+ "germanFontType":1,
+ "spanishText":"Zenzenzense",
+ "spanishFontType":1,
+ "neutralSpanishText":"Zenzenzense",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Zenzenzense",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_batan9",
+ "englishUsText":"Zenryoku Batankyuu",
+ "englishUsFontType":1,
+ "frenchText":"Zenryoku Batankyuu",
+ "frenchFontType":1,
+ "italianText":"Zenryoku Batankyuu",
+ "italianFontType":1,
+ "germanText":"Zenryoku Batankyuu",
+ "germanFontType":1,
+ "spanishText":"Zenryoku Batankyuu",
+ "spanishFontType":1,
+ "neutralSpanishText":"Zenryoku Batankyuu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Zenryoku Batankyuu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_souryu",
+ "englishUsText":"SOURYU NO RAN",
+ "englishUsFontType":1,
+ "frenchText":"SOURYU NO RAN",
+ "frenchFontType":1,
+ "italianText":"SOURYU NO RAN",
+ "italianFontType":1,
+ "germanText":"SOURYU NO RAN",
+ "germanFontType":1,
+ "spanishText":"SOURYU NO RAN",
+ "spanishFontType":1,
+ "neutralSpanishText":"SOURYU NO RAN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SOURYU NO RAN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_march",
+ "englishUsText":"THE TAIKO MARCH",
+ "englishUsFontType":1,
+ "frenchText":"THE TAIKO MARCH",
+ "frenchFontType":1,
+ "italianText":"THE TAIKO MARCH",
+ "italianFontType":1,
+ "germanText":"THE TAIKO MARCH",
+ "germanFontType":1,
+ "spanishText":"THE TAIKO MARCH",
+ "spanishFontType":1,
+ "neutralSpanishText":"THE TAIKO MARCH",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"THE TAIKO MARCH",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_tengu",
+ "englishUsText":"TENGU BAYASHI",
+ "englishUsFontType":1,
+ "frenchText":"TENGU BAYASHI",
+ "frenchFontType":1,
+ "italianText":"TENGU BAYASHI",
+ "italianFontType":1,
+ "germanText":"TENGU BAYASHI",
+ "germanFontType":1,
+ "spanishText":"TENGU BAYASHI",
+ "spanishFontType":1,
+ "neutralSpanishText":"TENGU BAYASHI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"TENGU BAYASHI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_cls10",
+ "englishUsText":"Overture from 'Orpheus in the Underworld'",
+ "englishUsFontType":1,
+ "frenchText":"Overture from 'Orpheus in the Underworld'",
+ "frenchFontType":1,
+ "italianText":"Overture from 'Orpheus in the Underworld'",
+ "italianFontType":1,
+ "germanText":"Overture from 'Orpheus in the Underworld'",
+ "germanFontType":1,
+ "spanishText":"Overture from 'Orpheus in the Underworld'",
+ "spanishFontType":1,
+ "neutralSpanishText":"Overture from 'Orpheus in the Underworld'",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Overture from 'Orpheus in the Underworld'",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_10tai",
+ "englishUsText":"Tentai Kansoku",
+ "englishUsFontType":1,
+ "frenchText":"Tentai Kansoku",
+ "frenchFontType":1,
+ "italianText":"Tentai Kansoku",
+ "italianFontType":1,
+ "germanText":"Tentai Kansoku",
+ "germanFontType":1,
+ "spanishText":"Tentai Kansoku",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tentai Kansoku",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tentai Kansoku",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_tksoda",
+ "englishUsText":"Tokyo Soda 8Bit Edit",
+ "englishUsFontType":1,
+ "frenchText":"Tokyo Soda 8Bit Edit",
+ "frenchFontType":1,
+ "italianText":"Tokyo Soda 8Bit Edit",
+ "italianFontType":1,
+ "germanText":"Tokyo Soda 8Bit Edit",
+ "germanFontType":1,
+ "spanishText":"Tokyo Soda 8Bit Edit",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tokyo Soda 8Bit Edit",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tokyo Soda 8Bit Edit",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_d96can",
+ "englishUsText":"DOKU LO CANdy♡",
+ "englishUsFontType":1,
+ "frenchText":"DOKU LO CANdy♡",
+ "frenchFontType":1,
+ "italianText":"DOKU LO CANdy♡",
+ "italianFontType":1,
+ "germanText":"DOKU LO CANdy♡",
+ "germanFontType":1,
+ "spanishText":"DOKU LO CANdy♡",
+ "spanishFontType":1,
+ "neutralSpanishText":"DOKU LO CANdy♡",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DOKU LO CANdy♡",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_yayoi",
+ "englishUsText":"HOUJO YAYOI",
+ "englishUsFontType":1,
+ "frenchText":"HOUJO YAYOI",
+ "frenchFontType":1,
+ "italianText":"HOUJO YAYOI",
+ "italianFontType":1,
+ "germanText":"HOUJO YAYOI",
+ "germanFontType":1,
+ "spanishText":"HOUJO YAYOI",
+ "spanishFontType":1,
+ "neutralSpanishText":"HOUJO YAYOI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HOUJO YAYOI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_ymyrp4",
+ "englishUsText":"BOUKYAKU NO Tír na nÓg",
+ "englishUsFontType":1,
+ "frenchText":"BOUKYAKU NO Tír na nÓg",
+ "frenchFontType":1,
+ "italianText":"BOUKYAKU NO Tír na nÓg",
+ "italianFontType":1,
+ "germanText":"BOUKYAKU NO Tír na nÓg",
+ "germanFontType":1,
+ "spanishText":"BOUKYAKU NO Tír na nÓg",
+ "spanishFontType":1,
+ "neutralSpanishText":"BOUKYAKU NO Tír na nÓg",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"BOUKYAKU NO Tír na nÓg",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_ymtgen",
+ "englishUsText":"YUME TO GENJITSU NO KYOUKAISEN",
+ "englishUsFontType":1,
+ "frenchText":"YUME TO GENJITSU NO KYOUKAISEN",
+ "frenchFontType":1,
+ "italianText":"YUME TO GENJITSU NO KYOUKAISEN",
+ "italianFontType":1,
+ "germanText":"YUME TO GENJITSU NO KYOUKAISEN",
+ "germanFontType":1,
+ "spanishText":"YUME TO GENJITSU NO KYOUKAISEN",
+ "spanishFontType":1,
+ "neutralSpanishText":"YUME TO GENJITSU NO KYOUKAISEN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"YUME TO GENJITSU NO KYOUKAISEN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_dora4",
+ "englishUsText":"Yume wo Kanaete DORAEMON",
+ "englishUsFontType":1,
+ "frenchText":"Yume wo Kanaete DORAEMON",
+ "frenchFontType":1,
+ "italianText":"Yume wo Kanaete DORAEMON",
+ "italianFontType":1,
+ "germanText":"Yume wo Kanaete DORAEMON",
+ "germanFontType":1,
+ "spanishText":"Yume wo Kanaete DORAEMON",
+ "spanishFontType":1,
+ "neutralSpanishText":"Yume wo Kanaete DORAEMON",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Yume wo Kanaete DORAEMON",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_mugens",
+ "englishUsText":"MUGEN NO SORA",
+ "englishUsFontType":1,
+ "frenchText":"MUGEN NO SORA",
+ "frenchFontType":1,
+ "italianText":"MUGEN NO SORA",
+ "italianFontType":1,
+ "germanText":"MUGEN NO SORA",
+ "germanFontType":1,
+ "spanishText":"MUGEN NO SORA",
+ "spanishFontType":1,
+ "neutralSpanishText":"MUGEN NO SORA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"MUGEN NO SORA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_4shaas",
+ "englishUsText":"Ashita mo",
+ "englishUsFontType":1,
+ "frenchText":"Ashita mo",
+ "frenchFontType":1,
+ "italianText":"Ashita mo",
+ "italianFontType":1,
+ "germanText":"Ashita mo",
+ "germanFontType":1,
+ "spanishText":"Ashita mo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ashita mo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ashita mo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_yugen",
+ "englishUsText":"YUGEN NO RAN",
+ "englishUsFontType":1,
+ "frenchText":"YUGEN NO RAN",
+ "frenchFontType":1,
+ "italianText":"YUGEN NO RAN",
+ "italianFontType":1,
+ "germanText":"YUGEN NO RAN",
+ "germanFontType":1,
+ "spanishText":"YUGEN NO RAN",
+ "spanishFontType":1,
+ "neutralSpanishText":"YUGEN NO RAN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"YUGEN NO RAN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_ryuhim",
+ "englishUsText":"RYU TO KOKUEN NO HIMEGIMI",
+ "englishUsFontType":1,
+ "frenchText":"RYU TO KOKUEN NO HIMEGIMI",
+ "frenchFontType":1,
+ "italianText":"RYU TO KOKUEN NO HIMEGIMI",
+ "italianFontType":1,
+ "germanText":"RYU TO KOKUEN NO HIMEGIMI",
+ "germanFontType":1,
+ "spanishText":"RYU TO KOKUEN NO HIMEGIMI",
+ "spanishFontType":1,
+ "neutralSpanishText":"RYU TO KOKUEN NO HIMEGIMI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"RYU TO KOKUEN NO HIMEGIMI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_2ge8ji",
+ "englishUsText":"Koi",
+ "englishUsFontType":1,
+ "frenchText":"Koi",
+ "frenchFontType":1,
+ "italianText":"Koi",
+ "italianFontType":1,
+ "germanText":"Koi",
+ "germanFontType":1,
+ "spanishText":"Koi",
+ "spanishFontType":1,
+ "neutralSpanishText":"Koi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Koi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_koiama",
+ "englishUsText":"Koioto to Amazora",
+ "englishUsFontType":1,
+ "frenchText":"Koioto to Amazora",
+ "frenchFontType":1,
+ "italianText":"Koioto to Amazora",
+ "italianFontType":1,
+ "germanText":"Koioto to Amazora",
+ "germanFontType":1,
+ "spanishText":"Koioto to Amazora",
+ "spanishFontType":1,
+ "neutralSpanishText":"Koioto to Amazora",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Koioto to Amazora",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_ia6cho",
+ "englishUsText":"A Tale of Six Trillion Years and a Night",
+ "englishUsFontType":1,
+ "frenchText":"A Tale of Six Trillion Years and a Night",
+ "frenchFontType":1,
+ "italianText":"A Tale of Six Trillion Years and a Night",
+ "italianFontType":1,
+ "germanText":"A Tale of Six Trillion Years and a Night",
+ "germanFontType":1,
+ "spanishText":"A Tale of Six Trillion Years and a Night",
+ "spanishFontType":1,
+ "neutralSpanishText":"A Tale of Six Trillion Years and a Night",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"A Tale of Six Trillion Years and a Night",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_coro4",
+ "englishUsText":"CoroCoro Comic 40th Anniversary Song",
+ "englishUsFontType":1,
+ "frenchText":"CoroCoro Comic 40th Anniversary Song",
+ "frenchFontType":1,
+ "italianText":"CoroCoro Comic 40th Anniversary Song",
+ "italianFontType":1,
+ "germanText":"CoroCoro Comic 40th Anniversary Song",
+ "germanFontType":1,
+ "spanishText":"CoroCoro Comic 40th Anniversary Song",
+ "spanishFontType":1,
+ "neutralSpanishText":"CoroCoro Comic 40th Anniversary Song",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"CoroCoro Comic 40th Anniversary Song",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_589him",
+ "englishUsText":"RUROU NO KOHAKU HIME",
+ "englishUsFontType":1,
+ "frenchText":"RUROU NO KOHAKU HIME",
+ "frenchFontType":1,
+ "italianText":"RUROU NO KOHAKU HIME",
+ "italianFontType":1,
+ "germanText":"RUROU NO KOHAKU HIME",
+ "germanFontType":1,
+ "spanishText":"RUROU NO KOHAKU HIME",
+ "spanishFontType":1,
+ "neutralSpanishText":"RUROU NO KOHAKU HIME",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"RUROU NO KOHAKU HIME",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_tuku43",
+ "englishUsText":"TSUKUYOMI",
+ "englishUsFontType":1,
+ "frenchText":"TSUKUYOMI",
+ "frenchFontType":1,
+ "italianText":"TSUKUYOMI",
+ "italianFontType":1,
+ "germanText":"TSUKUYOMI",
+ "germanFontType":1,
+ "spanishText":"TSUKUYOMI",
+ "spanishFontType":1,
+ "neutralSpanishText":"TSUKUYOMI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"TSUKUYOMI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_7fuku",
+ "englishUsText":"GEKIUN!SHICHIFUKU Happy Crew",
+ "englishUsFontType":1,
+ "frenchText":"GEKIUN!SHICHIFUKU Happy Crew",
+ "frenchFontType":1,
+ "italianText":"GEKIUN!SHICHIFUKU Happy Crew",
+ "italianFontType":1,
+ "germanText":"GEKIUN!SHICHIFUKU Happy Crew",
+ "germanFontType":1,
+ "spanishText":"GEKIUN!SHICHIFUKU Happy Crew",
+ "spanishFontType":1,
+ "neutralSpanishText":"GEKIUN!SHICHIFUKU Happy Crew",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"GEKIUN!SHICHIFUKU Happy Crew",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_orochi",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_hkgmag",
+ "englishUsText":"HOUKAGO☆Magician",
+ "englishUsFontType":1,
+ "frenchText":"HOUKAGO☆Magician",
+ "frenchFontType":1,
+ "italianText":"HOUKAGO☆Magician",
+ "italianFontType":1,
+ "germanText":"HOUKAGO☆Magician",
+ "germanFontType":1,
+ "spanishText":"HOUKAGO☆Magician",
+ "spanishFontType":1,
+ "neutralSpanishText":"HOUKAGO☆Magician",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HOUKAGO☆Magician",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_tongat",
+ "englishUsText":"TONGACHIN",
+ "englishUsFontType":1,
+ "frenchText":"TONGACHIN",
+ "frenchFontType":1,
+ "italianText":"TONGACHIN",
+ "italianFontType":1,
+ "germanText":"TONGACHIN",
+ "germanFontType":1,
+ "spanishText":"TONGACHIN",
+ "spanishFontType":1,
+ "neutralSpanishText":"TONGACHIN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"TONGACHIN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_ta5ta5",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_glokey",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_allimh",
+ "englishUsText":"All In My Heart",
+ "englishUsFontType":1,
+ "frenchText":"All In My Heart",
+ "frenchFontType":1,
+ "italianText":"All In My Heart",
+ "italianFontType":1,
+ "germanText":"All In My Heart",
+ "germanFontType":1,
+ "spanishText":"All In My Heart",
+ "spanishFontType":1,
+ "neutralSpanishText":"All In My Heart",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"All In My Heart",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_goth",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_skrexh",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_blrose",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_haryu",
+ "englishUsText":"Haryu",
+ "englishUsFontType":1,
+ "frenchText":"Haryu",
+ "frenchFontType":1,
+ "italianText":"Haryu",
+ "italianFontType":1,
+ "germanText":"Haryu",
+ "germanFontType":1,
+ "spanishText":"Haryu",
+ "spanishFontType":1,
+ "neutralSpanishText":"Haryu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Haryu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_clspvn",
+ "englishUsText":"Pavane For A Dead Princess",
+ "englishUsFontType":1,
+ "frenchText":"Pavane For A Dead Princess",
+ "frenchFontType":1,
+ "italianText":"Pavane For A Dead Princess",
+ "italianFontType":1,
+ "germanText":"Pavane For A Dead Princess",
+ "germanFontType":1,
+ "spanishText":"Pavane For A Dead Princess",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pavane For A Dead Princess",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pavane For A Dead Princess",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_tank",
+ "englishUsText":"Yawaraka Tank",
+ "englishUsFontType":1,
+ "frenchText":"Yawaraka Tank",
+ "frenchFontType":1,
+ "italianText":"Yawaraka Tank",
+ "italianFontType":1,
+ "germanText":"Yawaraka Tank",
+ "germanFontType":1,
+ "spanishText":"Yawaraka Tank",
+ "spanishFontType":1,
+ "neutralSpanishText":"Yawaraka Tank",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Yawaraka Tank",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_tdm",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_flksak",
+ "englishUsText":"SAKURA(HARU)",
+ "englishUsFontType":1,
+ "frenchText":"SAKURA(HARU)",
+ "frenchFontType":1,
+ "italianText":"SAKURA(HARU)",
+ "italianFontType":1,
+ "germanText":"SAKURA(HARU)",
+ "germanFontType":1,
+ "spanishText":"SAKURA(HARU)",
+ "spanishFontType":1,
+ "neutralSpanishText":"SAKURA(HARU)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SAKURA(HARU)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_gekikk",
+ "englishUsText":"HARDCORE NO KOKOROE",
+ "englishUsFontType":1,
+ "frenchText":"HARDCORE NO KOKOROE",
+ "frenchFontType":1,
+ "italianText":"HARDCORE NO KOKOROE",
+ "italianFontType":1,
+ "germanText":"HARDCORE NO KOKOROE",
+ "germanFontType":1,
+ "spanishText":"HARDCORE NO KOKOROE",
+ "spanishFontType":1,
+ "neutralSpanishText":"HARDCORE NO KOKOROE",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HARDCORE NO KOKOROE",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_oka47",
+ "englishUsText":"KURU KURU KUROKKURU",
+ "englishUsFontType":1,
+ "frenchText":"KURU KURU KUROKKURU",
+ "frenchFontType":1,
+ "italianText":"KURU KURU KUROKKURU",
+ "italianFontType":1,
+ "germanText":"KURU KURU KUROKKURU",
+ "germanFontType":1,
+ "spanishText":"KURU KURU KUROKKURU",
+ "spanishFontType":1,
+ "neutralSpanishText":"KURU KURU KUROKKURU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KURU KURU KUROKKURU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_castle",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_thncrd",
+ "englishUsText":"Necro Fantasia ~ Arr.Demetori",
+ "englishUsFontType":1,
+ "frenchText":"Necro Fantasia ~ Arr.Demetori",
+ "frenchFontType":1,
+ "italianText":"Necro Fantasia ~ Arr.Demetori",
+ "italianFontType":1,
+ "germanText":"Necro Fantasia ~ Arr.Demetori",
+ "germanFontType":1,
+ "spanishText":"Necro Fantasia ~ Arr.Demetori",
+ "spanishFontType":1,
+ "neutralSpanishText":"Necro Fantasia ~ Arr.Demetori",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Necro Fantasia ~ Arr.Demetori",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_syclsn",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_10tai",
+ "englishUsText":"Tentai Kansoku",
+ "englishUsFontType":1,
+ "frenchText":"Tentai Kansoku",
+ "frenchFontType":1,
+ "italianText":"Tentai Kansoku",
+ "italianFontType":1,
+ "germanText":"Tentai Kansoku",
+ "germanFontType":1,
+ "spanishText":"Tentai Kansoku",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tentai Kansoku",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tentai Kansoku",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_32segw",
+ "englishUsText":"MITSUSEGAWA RANBU",
+ "englishUsFontType":1,
+ "frenchText":"MITSUSEGAWA RANBU",
+ "frenchFontType":1,
+ "italianText":"MITSUSEGAWA RANBU",
+ "italianFontType":1,
+ "germanText":"MITSUSEGAWA RANBU",
+ "germanFontType":1,
+ "spanishText":"MITSUSEGAWA RANBU",
+ "spanishFontType":1,
+ "neutralSpanishText":"MITSUSEGAWA RANBU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"MITSUSEGAWA RANBU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_4shaas",
+ "englishUsText":"Ashita mo",
+ "englishUsFontType":1,
+ "frenchText":"Ashita mo",
+ "frenchFontType":1,
+ "italianText":"Ashita mo",
+ "italianFontType":1,
+ "germanText":"Ashita mo",
+ "germanFontType":1,
+ "spanishText":"Ashita mo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ashita mo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ashita mo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_anayuk",
+ "englishUsText":"Let It Go",
+ "englishUsFontType":1,
+ "frenchText":"Let It Go",
+ "frenchFontType":1,
+ "italianText":"Let It Go",
+ "italianFontType":1,
+ "germanText":"Let It Go",
+ "germanFontType":1,
+ "spanishText":"Let It Go",
+ "spanishFontType":1,
+ "neutralSpanishText":"Let It Go",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Let It Go",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_batan9",
+ "englishUsText":"Zenryoku Batankyuu",
+ "englishUsFontType":1,
+ "frenchText":"Zenryoku Batankyuu",
+ "frenchFontType":1,
+ "italianText":"Zenryoku Batankyuu",
+ "italianFontType":1,
+ "germanText":"Zenryoku Batankyuu",
+ "germanFontType":1,
+ "spanishText":"Zenryoku Batankyuu",
+ "spanishFontType":1,
+ "neutralSpanishText":"Zenryoku Batankyuu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Zenryoku Batankyuu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_bforc",
+ "englishUsText":"BURNING FORCE Medley",
+ "englishUsFontType":1,
+ "frenchText":"BURNING FORCE Medley",
+ "frenchFontType":1,
+ "italianText":"BURNING FORCE Medley",
+ "italianFontType":1,
+ "germanText":"BURNING FORCE Medley",
+ "germanFontType":1,
+ "spanishText":"BURNING FORCE Medley",
+ "spanishFontType":1,
+ "neutralSpanishText":"BURNING FORCE Medley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"BURNING FORCE Medley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_butou9",
+ "englishUsText":"OUKA RANMAN",
+ "englishUsFontType":1,
+ "frenchText":"OUKA RANMAN",
+ "frenchFontType":1,
+ "italianText":"OUKA RANMAN",
+ "italianFontType":1,
+ "germanText":"OUKA RANMAN",
+ "germanFontType":1,
+ "spanishText":"OUKA RANMAN",
+ "spanishFontType":1,
+ "neutralSpanishText":"OUKA RANMAN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"OUKA RANMAN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_cls10",
+ "englishUsText":"Overture from 'Orpheus in the Underworld'",
+ "englishUsFontType":1,
+ "frenchText":"Overture from 'Orpheus in the Underworld'",
+ "frenchFontType":1,
+ "italianText":"Overture from 'Orpheus in the Underworld'",
+ "italianFontType":1,
+ "germanText":"Overture from 'Orpheus in the Underworld'",
+ "germanFontType":1,
+ "spanishText":"Overture from 'Orpheus in the Underworld'",
+ "spanishFontType":1,
+ "neutralSpanishText":"Overture from 'Orpheus in the Underworld'",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Overture from 'Orpheus in the Underworld'",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_clsca",
+ "englishUsText":"Carmen Prelude",
+ "englishUsFontType":1,
+ "frenchText":"Carmen Prelude",
+ "frenchFontType":1,
+ "italianText":"Carmen Prelude",
+ "italianFontType":1,
+ "germanText":"Carmen Prelude",
+ "germanFontType":1,
+ "spanishText":"Carmen Prelude",
+ "spanishFontType":1,
+ "neutralSpanishText":"Carmen Prelude",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Carmen Prelude",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_clsh69",
+ "englishUsText":"Hungarian Rock",
+ "englishUsFontType":1,
+ "frenchText":"Hungarian Rock",
+ "frenchFontType":1,
+ "italianText":"Hungarian Rock",
+ "italianFontType":1,
+ "germanText":"Hungarian Rock",
+ "germanFontType":1,
+ "spanishText":"Hungarian Rock",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hungarian Rock",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hungarian Rock",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_clsr",
+ "englishUsText":"Classical Music Medley (Rock version)",
+ "englishUsFontType":1,
+ "frenchText":"Classical Music Medley (Rock version)",
+ "frenchFontType":1,
+ "italianText":"Classical Music Medley (Rock version)",
+ "italianFontType":1,
+ "germanText":"Classical Music Medley (Rock version)",
+ "germanFontType":1,
+ "spanishText":"Classical Music Medley (Rock version)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Classical Music Medley (Rock version)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Classical Music Medley (Rock version)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_clsw",
+ "englishUsText":"William Tell Overture",
+ "englishUsFontType":1,
+ "frenchText":"William Tell Overture",
+ "frenchFontType":1,
+ "italianText":"William Tell Overture",
+ "italianFontType":1,
+ "germanText":"William Tell Overture",
+ "germanFontType":1,
+ "spanishText":"William Tell Overture",
+ "spanishFontType":1,
+ "neutralSpanishText":"William Tell Overture",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"William Tell Overture",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_crkvic",
+ "englishUsText":"VICTORIA",
+ "englishUsFontType":1,
+ "frenchText":"VICTORIA",
+ "frenchFontType":1,
+ "italianText":"VICTORIA",
+ "italianFontType":1,
+ "germanText":"VICTORIA",
+ "germanFontType":1,
+ "spanishText":"VICTORIA",
+ "spanishFontType":1,
+ "neutralSpanishText":"VICTORIA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"VICTORIA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_crturb",
+ "englishUsText":"Urban Striker",
+ "englishUsFontType":1,
+ "frenchText":"Urban Striker",
+ "frenchFontType":1,
+ "italianText":"Urban Striker",
+ "italianFontType":1,
+ "germanText":"Urban Striker",
+ "germanFontType":1,
+ "spanishText":"Urban Striker",
+ "spanishFontType":1,
+ "neutralSpanishText":"Urban Striker",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Urban Striker",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_d96can",
+ "englishUsText":"DOKU LO CANdy♡",
+ "englishUsFontType":1,
+ "frenchText":"DOKU LO CANdy♡",
+ "frenchFontType":1,
+ "italianText":"DOKU LO CANdy♡",
+ "italianFontType":1,
+ "germanText":"DOKU LO CANdy♡",
+ "germanFontType":1,
+ "spanishText":"DOKU LO CANdy♡",
+ "spanishFontType":1,
+ "neutralSpanishText":"DOKU LO CANdy♡",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DOKU LO CANdy♡",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_dbcgen",
+ "englishUsText":"Genkai Toppa × Survivor",
+ "englishUsFontType":1,
+ "frenchText":"Genkai Toppa × Survivor",
+ "frenchFontType":1,
+ "italianText":"Genkai Toppa × Survivor",
+ "italianFontType":1,
+ "germanText":"Genkai Toppa × Survivor",
+ "germanFontType":1,
+ "spanishText":"Genkai Toppa × Survivor",
+ "spanishFontType":1,
+ "neutralSpanishText":"Genkai Toppa × Survivor",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Genkai Toppa × Survivor",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_dora4",
+ "englishUsText":"Yume wo Kanaete DORAEMON",
+ "englishUsFontType":1,
+ "frenchText":"Yume wo Kanaete DORAEMON",
+ "frenchFontType":1,
+ "italianText":"Yume wo Kanaete DORAEMON",
+ "italianFontType":1,
+ "germanText":"Yume wo Kanaete DORAEMON",
+ "germanFontType":1,
+ "spanishText":"Yume wo Kanaete DORAEMON",
+ "spanishFontType":1,
+ "neutralSpanishText":"Yume wo Kanaete DORAEMON",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Yume wo Kanaete DORAEMON",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_drsp",
+ "englishUsText":"DRAGON SPIRIT Medley",
+ "englishUsFontType":1,
+ "frenchText":"DRAGON SPIRIT Medley",
+ "frenchFontType":1,
+ "italianText":"DRAGON SPIRIT Medley",
+ "italianFontType":1,
+ "germanText":"DRAGON SPIRIT Medley",
+ "germanFontType":1,
+ "spanishText":"DRAGON SPIRIT Medley",
+ "spanishFontType":1,
+ "neutralSpanishText":"DRAGON SPIRIT Medley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DRAGON SPIRIT Medley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_druaga",
+ "englishUsText":"THE TOWER OF DRUAGA Medley",
+ "englishUsFontType":1,
+ "frenchText":"THE TOWER OF DRUAGA Medley",
+ "frenchFontType":1,
+ "italianText":"THE TOWER OF DRUAGA Medley",
+ "italianFontType":1,
+ "germanText":"THE TOWER OF DRUAGA Medley",
+ "germanFontType":1,
+ "spanishText":"THE TOWER OF DRUAGA Medley",
+ "spanishFontType":1,
+ "neutralSpanishText":"THE TOWER OF DRUAGA Medley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"THE TOWER OF DRUAGA Medley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_eatem",
+ "englishUsText":"EAT'EM UP!",
+ "englishUsFontType":1,
+ "frenchText":"EAT'EM UP!",
+ "frenchFontType":1,
+ "italianText":"EAT'EM UP!",
+ "italianFontType":1,
+ "germanText":"EAT'EM UP!",
+ "germanFontType":1,
+ "spanishText":"EAT'EM UP!",
+ "spanishFontType":1,
+ "neutralSpanishText":"EAT'EM UP!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"EAT'EM UP!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_eva",
+ "englishUsText":"A Cruel Angel's Thesis",
+ "englishUsFontType":1,
+ "frenchText":"A Cruel Angel's Thesis",
+ "frenchFontType":1,
+ "italianText":"A Cruel Angel's Thesis",
+ "italianFontType":1,
+ "germanText":"A Cruel Angel's Thesis",
+ "germanFontType":1,
+ "spanishText":"A Cruel Angel's Thesis",
+ "spanishFontType":1,
+ "neutralSpanishText":"A Cruel Angel's Thesis",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"A Cruel Angel's Thesis",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_flyawy",
+ "englishUsText":"Fly away",
+ "englishUsFontType":1,
+ "frenchText":"Fly away",
+ "frenchFontType":1,
+ "italianText":"Fly away",
+ "italianFontType":1,
+ "germanText":"Fly away",
+ "germanFontType":1,
+ "spanishText":"Fly away",
+ "spanishFontType":1,
+ "neutralSpanishText":"Fly away",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Fly away",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_genpe",
+ "englishUsText":"KAGEKIYO",
+ "englishUsFontType":1,
+ "frenchText":"KAGEKIYO",
+ "frenchFontType":1,
+ "italianText":"KAGEKIYO",
+ "italianFontType":1,
+ "germanText":"KAGEKIYO",
+ "germanFontType":1,
+ "spanishText":"KAGEKIYO",
+ "spanishFontType":1,
+ "neutralSpanishText":"KAGEKIYO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KAGEKIYO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_gimcho",
+ "englishUsText":"Gimme Chocolate!!",
+ "englishUsFontType":1,
+ "frenchText":"Gimme Chocolate!!",
+ "frenchFontType":1,
+ "italianText":"Gimme Chocolate!!",
+ "italianFontType":1,
+ "germanText":"Gimme Chocolate!!",
+ "germanFontType":1,
+ "spanishText":"Gimme Chocolate!!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Gimme Chocolate!!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Gimme Chocolate!!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_himyak",
+ "englishUsText":"Himawari no Yakusoku",
+ "englishUsFontType":1,
+ "frenchText":"Himawari no Yakusoku",
+ "frenchFontType":1,
+ "italianText":"Himawari no Yakusoku",
+ "italianFontType":1,
+ "germanText":"Himawari no Yakusoku",
+ "germanFontType":1,
+ "spanishText":"Himawari no Yakusoku",
+ "spanishFontType":1,
+ "neutralSpanishText":"Himawari no Yakusoku",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Himawari no Yakusoku",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_hkitty",
+ "englishUsText":"HELLO KITTY",
+ "englishUsFontType":1,
+ "frenchText":"HELLO KITTY",
+ "frenchFontType":1,
+ "italianText":"HELLO KITTY",
+ "italianFontType":1,
+ "germanText":"HELLO KITTY",
+ "germanFontType":1,
+ "spanishText":"HELLO KITTY",
+ "spanishFontType":1,
+ "neutralSpanishText":"HELLO KITTY",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HELLO KITTY",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_ia6cho",
+ "englishUsText":"A Tale of Six Trillion Years and a Night",
+ "englishUsFontType":1,
+ "frenchText":"A Tale of Six Trillion Years and a Night",
+ "frenchFontType":1,
+ "italianText":"A Tale of Six Trillion Years and a Night",
+ "italianFontType":1,
+ "germanText":"A Tale of Six Trillion Years and a Night",
+ "germanFontType":1,
+ "spanishText":"A Tale of Six Trillion Years and a Night",
+ "spanishFontType":1,
+ "neutralSpanishText":"A Tale of Six Trillion Years and a Night",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"A Tale of Six Trillion Years and a Night",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_ikenai",
+ "englishUsText":"Ikenai Taiyou",
+ "englishUsFontType":1,
+ "frenchText":"Ikenai Taiyou",
+ "frenchFontType":1,
+ "italianText":"Ikenai Taiyou",
+ "italianFontType":1,
+ "germanText":"Ikenai Taiyou",
+ "germanFontType":1,
+ "spanishText":"Ikenai Taiyou",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ikenai Taiyou",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ikenai Taiyou",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_imconc",
+ "englishUsText":"Onegai! Cinderella ",
+ "englishUsFontType":1,
+ "frenchText":"Onegai! Cinderella ",
+ "frenchFontType":1,
+ "italianText":"Onegai! Cinderella ",
+ "italianFontType":1,
+ "germanText":"Onegai! Cinderella ",
+ "germanFontType":1,
+ "spanishText":"Onegai! Cinderella ",
+ "spanishFontType":1,
+ "neutralSpanishText":"Onegai! Cinderella ",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Onegai! Cinderella ",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_izanam",
+ "englishUsText":"YOMI NO IZANAMI",
+ "englishUsFontType":1,
+ "frenchText":"YOMI NO IZANAMI",
+ "frenchFontType":1,
+ "italianText":"YOMI NO IZANAMI",
+ "italianFontType":1,
+ "germanText":"YOMI NO IZANAMI",
+ "germanFontType":1,
+ "spanishText":"YOMI NO IZANAMI",
+ "spanishFontType":1,
+ "neutralSpanishText":"YOMI NO IZANAMI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"YOMI NO IZANAMI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japari",
+ "englishUsText":"Welcome to Japari Park",
+ "englishUsFontType":1,
+ "frenchText":"Welcome to Japari Park",
+ "frenchFontType":1,
+ "italianText":"Welcome to Japari Park",
+ "italianFontType":1,
+ "germanText":"Welcome to Japari Park",
+ "germanFontType":1,
+ "spanishText":"Welcome to Japari Park",
+ "spanishFontType":1,
+ "neutralSpanishText":"Welcome to Japari Park",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Welcome to Japari Park",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_kekka2",
+ "englishUsText":"Sugar Song & Bitter Step",
+ "englishUsFontType":1,
+ "frenchText":"Sugar Song & Bitter Step",
+ "frenchFontType":1,
+ "italianText":"Sugar Song & Bitter Step",
+ "italianFontType":1,
+ "germanText":"Sugar Song & Bitter Step",
+ "germanFontType":1,
+ "spanishText":"Sugar Song & Bitter Step",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sugar Song & Bitter Step",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sugar Song & Bitter Step",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_kiseki",
+ "englishUsText":"KISEKI",
+ "englishUsFontType":1,
+ "frenchText":"KISEKI",
+ "frenchFontType":1,
+ "italianText":"KISEKI",
+ "italianFontType":1,
+ "germanText":"KISEKI",
+ "germanFontType":1,
+ "spanishText":"KISEKI",
+ "spanishFontType":1,
+ "neutralSpanishText":"KISEKI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KISEKI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_koiama",
+ "englishUsText":"Koioto to Amazora",
+ "englishUsFontType":1,
+ "frenchText":"Koioto to Amazora",
+ "frenchFontType":1,
+ "italianText":"Koioto to Amazora",
+ "italianFontType":1,
+ "germanText":"Koioto to Amazora",
+ "germanFontType":1,
+ "spanishText":"Koioto to Amazora",
+ "spanishFontType":1,
+ "neutralSpanishText":"Koioto to Amazora",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Koioto to Amazora",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_linda",
+ "englishUsText":"LINDA LINDA",
+ "englishUsFontType":1,
+ "frenchText":"LINDA LINDA",
+ "frenchFontType":1,
+ "italianText":"LINDA LINDA",
+ "italianFontType":1,
+ "germanText":"LINDA LINDA",
+ "germanFontType":1,
+ "spanishText":"LINDA LINDA",
+ "spanishFontType":1,
+ "neutralSpanishText":"LINDA LINDA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"LINDA LINDA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_lost1g",
+ "englishUsText":"The Lost One's Weeping",
+ "englishUsFontType":1,
+ "frenchText":"The Lost One's Weeping",
+ "frenchFontType":1,
+ "italianText":"The Lost One's Weeping",
+ "italianFontType":1,
+ "germanText":"The Lost One's Weeping",
+ "germanFontType":1,
+ "spanishText":"The Lost One's Weeping",
+ "spanishFontType":1,
+ "neutralSpanishText":"The Lost One's Weeping",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"The Lost One's Weeping",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_mappy2",
+ "englishUsText":"MAPPY Medley",
+ "englishUsFontType":1,
+ "frenchText":"MAPPY Medley",
+ "frenchFontType":1,
+ "italianText":"MAPPY Medley",
+ "italianFontType":1,
+ "germanText":"MAPPY Medley",
+ "germanFontType":1,
+ "spanishText":"MAPPY Medley",
+ "spanishFontType":1,
+ "neutralSpanishText":"MAPPY Medley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"MAPPY Medley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_march",
+ "englishUsText":"THE TAIKO MARCH",
+ "englishUsFontType":1,
+ "frenchText":"THE TAIKO MARCH",
+ "frenchFontType":1,
+ "italianText":"THE TAIKO MARCH",
+ "italianFontType":1,
+ "germanText":"THE TAIKO MARCH",
+ "germanFontType":1,
+ "spanishText":"THE TAIKO MARCH",
+ "spanishFontType":1,
+ "neutralSpanishText":"THE TAIKO MARCH",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"THE TAIKO MARCH",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_memesi",
+ "englishUsText":"Memeshikute",
+ "englishUsFontType":1,
+ "frenchText":"Memeshikute",
+ "frenchFontType":1,
+ "italianText":"Memeshikute",
+ "italianFontType":1,
+ "germanText":"Memeshikute",
+ "germanFontType":1,
+ "spanishText":"Memeshikute",
+ "spanishFontType":1,
+ "neutralSpanishText":"Memeshikute",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Memeshikute",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_mgpafe",
+ "englishUsText":"Magical Parfait",
+ "englishUsFontType":1,
+ "frenchText":"Magical Parfait",
+ "frenchFontType":1,
+ "italianText":"Magical Parfait",
+ "italianFontType":1,
+ "germanText":"Magical Parfait",
+ "germanFontType":1,
+ "spanishText":"Magical Parfait",
+ "spanishFontType":1,
+ "neutralSpanishText":"Magical Parfait",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Magical Parfait",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_mikuaa",
+ "englishUsText":"Alien Alien",
+ "englishUsFontType":1,
+ "frenchText":"Alien Alien",
+ "frenchFontType":1,
+ "italianText":"Alien Alien",
+ "italianFontType":1,
+ "germanText":"Alien Alien",
+ "germanFontType":1,
+ "spanishText":"Alien Alien",
+ "spanishFontType":1,
+ "neutralSpanishText":"Alien Alien",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alien Alien",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_mikugr",
+ "englishUsText":"Ghost Rule",
+ "englishUsFontType":1,
+ "frenchText":"Ghost Rule",
+ "frenchFontType":1,
+ "italianText":"Ghost Rule",
+ "italianFontType":1,
+ "germanText":"Ghost Rule",
+ "germanFontType":1,
+ "spanishText":"Ghost Rule",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ghost Rule",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ghost Rule",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_moji",
+ "englishUsText":"MOJIPITTAN Medley",
+ "englishUsFontType":1,
+ "frenchText":"MOJIPITTAN Medley",
+ "frenchFontType":1,
+ "italianText":"MOJIPITTAN Medley",
+ "italianFontType":1,
+ "germanText":"MOJIPITTAN Medley",
+ "germanFontType":1,
+ "spanishText":"MOJIPITTAN Medley",
+ "spanishFontType":1,
+ "neutralSpanishText":"MOJIPITTAN Medley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"MOJIPITTAN Medley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_mugens",
+ "englishUsText":"MUGEN NO SORA",
+ "englishUsFontType":1,
+ "frenchText":"MUGEN NO SORA",
+ "frenchFontType":1,
+ "italianText":"MUGEN NO SORA",
+ "italianFontType":1,
+ "germanText":"MUGEN NO SORA",
+ "germanFontType":1,
+ "spanishText":"MUGEN NO SORA",
+ "spanishFontType":1,
+ "neutralSpanishText":"MUGEN NO SORA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"MUGEN NO SORA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_natsu",
+ "englishUsText":"Natsumatsuri",
+ "englishUsFontType":1,
+ "frenchText":"Natsumatsuri",
+ "frenchFontType":1,
+ "italianText":"Natsumatsuri",
+ "italianFontType":1,
+ "germanText":"Natsumatsuri",
+ "germanFontType":1,
+ "spanishText":"Natsumatsuri",
+ "spanishFontType":1,
+ "neutralSpanishText":"Natsumatsuri",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Natsumatsuri",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_ninjbb",
+ "englishUsText":"Ninja Re Bang Bang",
+ "englishUsFontType":1,
+ "frenchText":"Ninja Re Bang Bang",
+ "frenchFontType":1,
+ "italianText":"Ninja Re Bang Bang",
+ "italianFontType":1,
+ "germanText":"Ninja Re Bang Bang",
+ "germanFontType":1,
+ "spanishText":"Ninja Re Bang Bang",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ninja Re Bang Bang",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ninja Re Bang Bang",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_nograv",
+ "englishUsText":"No Gravity",
+ "englishUsFontType":1,
+ "frenchText":"No Gravity",
+ "frenchFontType":1,
+ "italianText":"No Gravity",
+ "italianFontType":1,
+ "germanText":"No Gravity",
+ "germanFontType":1,
+ "spanishText":"No Gravity",
+ "spanishFontType":1,
+ "neutralSpanishText":"No Gravity",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"No Gravity",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_ppap",
+ "englishUsText":"Pen-Pineapple-Apple-Pen (PPAP)",
+ "englishUsFontType":1,
+ "frenchText":"Pen-Pineapple-Apple-Pen (PPAP)",
+ "frenchFontType":1,
+ "italianText":"Pen-Pineapple-Apple-Pen (PPAP)",
+ "italianFontType":1,
+ "germanText":"Pen-Pineapple-Apple-Pen (PPAP)",
+ "germanFontType":1,
+ "spanishText":"Pen-Pineapple-Apple-Pen (PPAP)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pen-Pineapple-Apple-Pen (PPAP)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pen-Pineapple-Apple-Pen (PPAP)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_rdrose",
+ "englishUsText":"Red Rose Evangel",
+ "englishUsFontType":1,
+ "frenchText":"Red Rose Evangel",
+ "frenchFontType":1,
+ "italianText":"Red Rose Evangel",
+ "italianFontType":1,
+ "germanText":"Red Rose Evangel",
+ "germanFontType":1,
+ "spanishText":"Red Rose Evangel",
+ "spanishFontType":1,
+ "neutralSpanishText":"Red Rose Evangel",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Red Rose Evangel",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_roadmv",
+ "englishUsText":"Road Movie",
+ "englishUsFontType":1,
+ "frenchText":"Road Movie",
+ "frenchFontType":1,
+ "italianText":"Road Movie",
+ "italianFontType":1,
+ "germanText":"Road Movie",
+ "germanFontType":1,
+ "spanishText":"Road Movie",
+ "spanishFontType":1,
+ "neutralSpanishText":"Road Movie",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Road Movie",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_rot",
+ "englishUsText":"SAITAMA 2000",
+ "englishUsFontType":1,
+ "frenchText":"SAITAMA 2000",
+ "frenchFontType":1,
+ "italianText":"SAITAMA 2000",
+ "italianFontType":1,
+ "germanText":"SAITAMA 2000",
+ "germanFontType":1,
+ "spanishText":"SAITAMA 2000",
+ "spanishFontType":1,
+ "neutralSpanishText":"SAITAMA 2000",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SAITAMA 2000",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_rot4",
+ "englishUsText":"MADA SAITAMA 2000",
+ "englishUsFontType":1,
+ "frenchText":"MADA SAITAMA 2000",
+ "frenchFontType":1,
+ "italianText":"MADA SAITAMA 2000",
+ "italianFontType":1,
+ "germanText":"MADA SAITAMA 2000",
+ "germanFontType":1,
+ "spanishText":"MADA SAITAMA 2000",
+ "spanishFontType":1,
+ "neutralSpanishText":"MADA SAITAMA 2000",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"MADA SAITAMA 2000",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_ryuhim",
+ "englishUsText":"RYU TO KOKUEN NO HIMEGIMI",
+ "englishUsFontType":1,
+ "frenchText":"RYU TO KOKUEN NO HIMEGIMI",
+ "frenchFontType":1,
+ "italianText":"RYU TO KOKUEN NO HIMEGIMI",
+ "italianFontType":1,
+ "germanText":"RYU TO KOKUEN NO HIMEGIMI",
+ "germanFontType":1,
+ "spanishText":"RYU TO KOKUEN NO HIMEGIMI",
+ "spanishFontType":1,
+ "neutralSpanishText":"RYU TO KOKUEN NO HIMEGIMI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"RYU TO KOKUEN NO HIMEGIMI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sf5ryu",
+ "englishUsText":"Theme of Ryu",
+ "englishUsFontType":1,
+ "frenchText":"Theme of Ryu",
+ "frenchFontType":1,
+ "italianText":"Theme of Ryu",
+ "italianFontType":1,
+ "germanText":"Theme of Ryu",
+ "germanFontType":1,
+ "spanishText":"Theme of Ryu",
+ "spanishFontType":1,
+ "neutralSpanishText":"Theme of Ryu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Theme of Ryu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_shing2",
+ "englishUsText":"Guren no Yumiya",
+ "englishUsFontType":1,
+ "frenchText":"Guren no Yumiya",
+ "frenchFontType":1,
+ "italianText":"Guren no Yumiya",
+ "italianFontType":1,
+ "germanText":"Guren no Yumiya",
+ "germanFontType":1,
+ "spanishText":"Guren no Yumiya",
+ "spanishFontType":1,
+ "neutralSpanishText":"Guren no Yumiya",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Guren no Yumiya",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_skorpg",
+ "englishUsText":"RPG",
+ "englishUsFontType":1,
+ "frenchText":"RPG",
+ "frenchFontType":1,
+ "italianText":"RPG",
+ "italianFontType":1,
+ "germanText":"RPG",
+ "germanFontType":1,
+ "spanishText":"RPG",
+ "spanishFontType":1,
+ "neutralSpanishText":"RPG",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"RPG",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_skrnb",
+ "englishUsText":"Sakuranbo",
+ "englishUsFontType":1,
+ "frenchText":"Sakuranbo",
+ "frenchFontType":1,
+ "italianText":"Sakuranbo",
+ "italianFontType":1,
+ "germanText":"Sakuranbo",
+ "germanFontType":1,
+ "spanishText":"Sakuranbo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sakuranbo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sakuranbo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_so2omf",
+ "englishUsText":"SOTSUOMESHIKI・Full",
+ "englishUsFontType":1,
+ "frenchText":"SOTSUOMESHIKI・Full",
+ "frenchFontType":1,
+ "italianText":"SOTSUOMESHIKI・Full",
+ "italianFontType":1,
+ "germanText":"SOTSUOMESHIKI・Full",
+ "germanFontType":1,
+ "spanishText":"SOTSUOMESHIKI・Full",
+ "spanishFontType":1,
+ "neutralSpanishText":"SOTSUOMESHIKI・Full",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SOTSUOMESHIKI・Full",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_stabof",
+ "englishUsText":"GASSHO STIVAL-FE!",
+ "englishUsFontType":1,
+ "frenchText":"GASSHO STIVAL-FE!",
+ "frenchFontType":1,
+ "italianText":"GASSHO STIVAL-FE!",
+ "italianFontType":1,
+ "germanText":"GASSHO STIVAL-FE!",
+ "germanFontType":1,
+ "spanishText":"GASSHO STIVAL-FE!",
+ "spanishFontType":1,
+ "neutralSpanishText":"GASSHO STIVAL-FE!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"GASSHO STIVAL-FE!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_tek7he",
+ "englishUsText":"Heat Haze Shadow 2",
+ "englishUsFontType":1,
+ "frenchText":"Heat Haze Shadow 2",
+ "frenchFontType":1,
+ "italianText":"Heat Haze Shadow 2",
+ "italianFontType":1,
+ "germanText":"Heat Haze Shadow 2",
+ "germanFontType":1,
+ "spanishText":"Heat Haze Shadow 2",
+ "spanishFontType":1,
+ "neutralSpanishText":"Heat Haze Shadow 2",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Heat Haze Shadow 2",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_tengu",
+ "englishUsText":"TENGU BAYASHI",
+ "englishUsFontType":1,
+ "frenchText":"TENGU BAYASHI",
+ "frenchFontType":1,
+ "italianText":"TENGU BAYASHI",
+ "italianFontType":1,
+ "germanText":"TENGU BAYASHI",
+ "germanFontType":1,
+ "spanishText":"TENGU BAYASHI",
+ "spanishFontType":1,
+ "neutralSpanishText":"TENGU BAYASHI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"TENGU BAYASHI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_th7171",
+ "englishUsText":"Night of Knights / Knight of Nights",
+ "englishUsFontType":1,
+ "frenchText":"Night of Knights / Knight of Nights",
+ "frenchFontType":1,
+ "italianText":"Night of Knights / Knight of Nights",
+ "italianFontType":1,
+ "germanText":"Night of Knights / Knight of Nights",
+ "germanFontType":1,
+ "spanishText":"Night of Knights / Knight of Nights",
+ "spanishFontType":1,
+ "neutralSpanishText":"Night of Knights / Knight of Nights",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Night of Knights / Knight of Nights",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_thchil",
+ "englishUsText":"Cirno's Perfect Math Class",
+ "englishUsFontType":1,
+ "frenchText":"Cirno's Perfect Math Class",
+ "frenchFontType":1,
+ "italianText":"Cirno's Perfect Math Class",
+ "italianFontType":1,
+ "germanText":"Cirno's Perfect Math Class",
+ "germanFontType":1,
+ "spanishText":"Cirno's Perfect Math Class",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cirno's Perfect Math Class",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Cirno's Perfect Math Class",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_thflnd",
+ "englishUsText":"Last Brutal Sister Flandre S",
+ "englishUsFontType":1,
+ "frenchText":"Last Brutal Sister Flandre S",
+ "frenchFontType":1,
+ "italianText":"Last Brutal Sister Flandre S",
+ "italianFontType":1,
+ "germanText":"Last Brutal Sister Flandre S",
+ "germanFontType":1,
+ "spanishText":"Last Brutal Sister Flandre S",
+ "spanishFontType":1,
+ "neutralSpanishText":"Last Brutal Sister Flandre S",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Last Brutal Sister Flandre S",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_timtrv",
+ "englishUsText":"Time Traveler",
+ "englishUsFontType":1,
+ "frenchText":"Time Traveler",
+ "frenchFontType":1,
+ "italianText":"Time Traveler",
+ "italianFontType":1,
+ "germanText":"Time Traveler",
+ "germanFontType":1,
+ "spanishText":"Time Traveler",
+ "spanishFontType":1,
+ "neutralSpanishText":"Time Traveler",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Time Traveler",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_tksoda",
+ "englishUsText":"Tokyo Soda 8Bit Edit",
+ "englishUsFontType":1,
+ "frenchText":"Tokyo Soda 8Bit Edit",
+ "frenchFontType":1,
+ "italianText":"Tokyo Soda 8Bit Edit",
+ "italianFontType":1,
+ "germanText":"Tokyo Soda 8Bit Edit",
+ "germanFontType":1,
+ "spanishText":"Tokyo Soda 8Bit Edit",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tokyo Soda 8Bit Edit",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tokyo Soda 8Bit Edit",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_tobers",
+ "englishUsText":"Tales of Berseria Medley",
+ "englishUsFontType":1,
+ "frenchText":"Tales of Berseria Medley",
+ "frenchFontType":1,
+ "italianText":"Tales of Berseria Medley",
+ "italianFontType":1,
+ "germanText":"Tales of Berseria Medley",
+ "germanFontType":1,
+ "spanishText":"Tales of Berseria Medley",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tales of Berseria Medley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tales of Berseria Medley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_totoro",
+ "englishUsText":"My Neighbor Totoro – Ending Theme Song",
+ "englishUsFontType":1,
+ "frenchText":"Mon Voisin Totoro - générique de fin",
+ "frenchFontType":1,
+ "italianText":"Il mio vicino Totoro - Tema principale",
+ "italianFontType":1,
+ "germanText":"Mein Nachbar Totoro – Abspann",
+ "germanFontType":1,
+ "spanishText":"Mi vecino Totoro (Tema principal - Tema final)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mi vecino Totoro (Tema principal - Tema final)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"My Neighbor Totoro (The Ending Song)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_trance",
+ "englishUsText":"Angel Dream",
+ "englishUsFontType":1,
+ "frenchText":"Angel Dream",
+ "frenchFontType":1,
+ "italianText":"Angel Dream",
+ "italianFontType":1,
+ "germanText":"Angel Dream",
+ "germanFontType":1,
+ "spanishText":"Angel Dream",
+ "spanishFontType":1,
+ "neutralSpanishText":"Angel Dream",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Angel Dream",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_trustg",
+ "englishUsText":"Trust Game",
+ "englishUsFontType":1,
+ "frenchText":"Trust Game",
+ "frenchFontType":1,
+ "italianText":"Trust Game",
+ "italianFontType":1,
+ "germanText":"Trust Game",
+ "germanFontType":1,
+ "spanishText":"Trust Game",
+ "spanishFontType":1,
+ "neutralSpanishText":"Trust Game",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Trust Game",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_uminok",
+ "englishUsText":"Umi no Koe",
+ "englishUsFontType":1,
+ "frenchText":"Umi no Koe",
+ "frenchFontType":1,
+ "italianText":"Umi no Koe",
+ "italianFontType":1,
+ "germanText":"Umi no Koe",
+ "germanFontType":1,
+ "spanishText":"Umi no Koe",
+ "spanishFontType":1,
+ "neutralSpanishText":"Umi no Koe",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Umi no Koe",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_vrock",
+ "englishUsText":"YUGAO NO KIMI",
+ "englishUsFontType":1,
+ "frenchText":"YUGAO NO KIMI",
+ "frenchFontType":1,
+ "italianText":"YUGAO NO KIMI",
+ "italianFontType":1,
+ "germanText":"YUGAO NO KIMI",
+ "germanFontType":1,
+ "spanishText":"YUGAO NO KIMI",
+ "spanishFontType":1,
+ "neutralSpanishText":"YUGAO NO KIMI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"YUGAO NO KIMI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_weare0",
+ "englishUsText":"We Are!",
+ "englishUsFontType":1,
+ "frenchText":"We Are!",
+ "frenchFontType":1,
+ "italianText":"We Are!",
+ "italianFontType":1,
+ "germanText":"We Are!",
+ "germanFontType":1,
+ "spanishText":"We Are!",
+ "spanishFontType":1,
+ "neutralSpanishText":"We Are!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"We Are!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_xjapan",
+ "englishUsText":"KURENAI",
+ "englishUsFontType":1,
+ "frenchText":"KURENAI",
+ "frenchFontType":1,
+ "italianText":"KURENAI",
+ "italianFontType":1,
+ "germanText":"KURENAI",
+ "germanFontType":1,
+ "spanishText":"KURENAI",
+ "spanishFontType":1,
+ "neutralSpanishText":"KURENAI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KURENAI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_yayoi",
+ "englishUsText":"HOUJO YAYOI",
+ "englishUsFontType":1,
+ "frenchText":"HOUJO YAYOI",
+ "frenchFontType":1,
+ "italianText":"HOUJO YAYOI",
+ "italianFontType":1,
+ "germanText":"HOUJO YAYOI",
+ "germanFontType":1,
+ "spanishText":"HOUJO YAYOI",
+ "spanishFontType":1,
+ "neutralSpanishText":"HOUJO YAYOI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HOUJO YAYOI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_ynlose",
+ "englishUsText":"LOSER",
+ "englishUsFontType":1,
+ "frenchText":"LOSER",
+ "frenchFontType":1,
+ "italianText":"LOSER",
+ "italianFontType":1,
+ "germanText":"LOSER",
+ "germanFontType":1,
+ "spanishText":"LOSER",
+ "spanishFontType":1,
+ "neutralSpanishText":"LOSER",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"LOSER",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_zense",
+ "englishUsText":"Zenzenzense",
+ "englishUsFontType":1,
+ "frenchText":"Zenzenzense",
+ "frenchFontType":1,
+ "italianText":"Zenzenzense",
+ "italianFontType":1,
+ "germanText":"Zenzenzense",
+ "germanFontType":1,
+ "spanishText":"Zenzenzense",
+ "spanishFontType":1,
+ "neutralSpanishText":"Zenzenzense",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Zenzenzense",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_zootop",
+ "englishUsText":"Try Everything",
+ "englishUsFontType":1,
+ "frenchText":"Try Everything",
+ "frenchFontType":1,
+ "italianText":"Try Everything",
+ "italianFontType":1,
+ "germanText":"Try Everything",
+ "germanFontType":1,
+ "spanishText":"Try Everything",
+ "spanishFontType":1,
+ "neutralSpanishText":"Try Everything",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Try Everything",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_babel",
+ "englishUsText":"THE TOWER OF BABEL",
+ "englishUsFontType":1,
+ "frenchText":"THE TOWER OF BABEL",
+ "frenchFontType":1,
+ "italianText":"THE TOWER OF BABEL",
+ "italianFontType":1,
+ "germanText":"THE TOWER OF BABEL",
+ "germanFontType":1,
+ "spanishText":"THE TOWER OF BABEL",
+ "spanishFontType":1,
+ "neutralSpanishText":"THE TOWER OF BABEL",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"THE TOWER OF BABEL",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_immbra",
+ "englishUsText":"Brand New Theater!",
+ "englishUsFontType":1,
+ "frenchText":"Brand New Theater!",
+ "frenchFontType":1,
+ "italianText":"Brand New Theater!",
+ "italianFontType":1,
+ "germanText":"Brand New Theater!",
+ "germanFontType":1,
+ "spanishText":"Brand New Theater!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Brand New Theater!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Brand New Theater!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_apollo",
+ "englishUsText":"APOLLO",
+ "englishUsFontType":1,
+ "frenchText":"APOLLO",
+ "frenchFontType":1,
+ "italianText":"APOLLO",
+ "italianFontType":1,
+ "germanText":"APOLLO",
+ "germanFontType":1,
+ "spanishText":"APOLLO",
+ "spanishFontType":1,
+ "neutralSpanishText":"APOLLO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"APOLLO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_psf1op",
+ "englishUsText":"TSUNAGARE! HIROGARE! UCHIAGARE!",
+ "englishUsFontType":1,
+ "frenchText":"TSUNAGARE! HIROGARE! UCHIAGARE!",
+ "frenchFontType":1,
+ "italianText":"TSUNAGARE! HIROGARE! UCHIAGARE!",
+ "italianFontType":1,
+ "germanText":"TSUNAGARE! HIROGARE! UCHIAGARE!",
+ "germanFontType":1,
+ "spanishText":"TSUNAGARE! HIROGARE! UCHIAGARE!",
+ "spanishFontType":1,
+ "neutralSpanishText":"TSUNAGARE! HIROGARE! UCHIAGARE!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"TSUNAGARE! HIROGARE! UCHIAGARE!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_dem31k",
+ "englishUsText":"Saika",
+ "englishUsFontType":1,
+ "frenchText":"Saika",
+ "frenchFontType":1,
+ "italianText":"Saika",
+ "italianFontType":1,
+ "germanText":"Saika",
+ "germanFontType":1,
+ "spanishText":"Saika",
+ "spanishFontType":1,
+ "neutralSpanishText":"Saika",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Saika",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_kteien",
+ "englishUsText":"KAICHUTEIEN WO MOTSU SHOUJO",
+ "englishUsFontType":1,
+ "frenchText":"KAICHUTEIEN WO MOTSU SHOUJO",
+ "frenchFontType":1,
+ "italianText":"KAICHUTEIEN WO MOTSU SHOUJO",
+ "italianFontType":1,
+ "germanText":"KAICHUTEIEN WO MOTSU SHOUJO",
+ "germanFontType":1,
+ "spanishText":"KAICHUTEIEN WO MOTSU SHOUJO",
+ "spanishFontType":1,
+ "neutralSpanishText":"KAICHUTEIEN WO MOTSU SHOUJO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KAICHUTEIEN WO MOTSU SHOUJO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_gunsln",
+ "englishUsText":"Gunslinger Cinderella",
+ "englishUsFontType":1,
+ "frenchText":"Gunslinger Cinderella",
+ "frenchFontType":1,
+ "italianText":"Gunslinger Cinderella",
+ "italianFontType":1,
+ "germanText":"Gunslinger Cinderella",
+ "germanFontType":1,
+ "spanishText":"Gunslinger Cinderella",
+ "spanishFontType":1,
+ "neutralSpanishText":"Gunslinger Cinderella",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Gunslinger Cinderella",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_6ne9om",
+ "englishUsText":"DOKIDOKI MUNEKYUN OMATSURI Time",
+ "englishUsFontType":1,
+ "frenchText":"DOKIDOKI MUNEKYUN OMATSURI Time",
+ "frenchFontType":1,
+ "italianText":"DOKIDOKI MUNEKYUN OMATSURI Time",
+ "italianFontType":1,
+ "germanText":"DOKIDOKI MUNEKYUN OMATSURI Time",
+ "germanFontType":1,
+ "spanishText":"DOKIDOKI MUNEKYUN OMATSURI Time",
+ "spanishFontType":1,
+ "neutralSpanishText":"DOKIDOKI MUNEKYUN OMATSURI Time",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DOKIDOKI MUNEKYUN OMATSURI Time",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_angel3",
+ "englishUsText":"Pastel Dream",
+ "englishUsFontType":1,
+ "frenchText":"Pastel Dream",
+ "frenchFontType":1,
+ "italianText":"Pastel Dream",
+ "italianFontType":1,
+ "germanText":"Pastel Dream",
+ "germanFontType":1,
+ "spanishText":"Pastel Dream",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pastel Dream",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pastel Dream",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_yugen",
+ "englishUsText":"YUGEN NO RAN",
+ "englishUsFontType":1,
+ "frenchText":"YUGEN NO RAN",
+ "frenchFontType":1,
+ "italianText":"YUGEN NO RAN",
+ "italianFontType":1,
+ "germanText":"YUGEN NO RAN",
+ "germanFontType":1,
+ "spanishText":"YUGEN NO RAN",
+ "spanishFontType":1,
+ "neutralSpanishText":"YUGEN NO RAN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"YUGEN NO RAN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_ygnarr",
+ "englishUsText":"Infinite Rebellion",
+ "englishUsFontType":1,
+ "frenchText":"Infinite Rebellion",
+ "frenchFontType":1,
+ "italianText":"Infinite Rebellion",
+ "italianFontType":1,
+ "germanText":"Infinite Rebellion",
+ "germanFontType":1,
+ "spanishText":"Infinite Rebellion",
+ "spanishFontType":1,
+ "neutralSpanishText":"Infinite Rebellion",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Infinite Rebellion",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_57mono",
+ "englishUsText":"KONAMONO☆",
+ "englishUsFontType":1,
+ "frenchText":"KONAMONO☆",
+ "frenchFontType":1,
+ "italianText":"KONAMONO☆",
+ "italianFontType":1,
+ "germanText":"KONAMONO☆",
+ "germanFontType":1,
+ "spanishText":"KONAMONO☆",
+ "spanishFontType":1,
+ "neutralSpanishText":"KONAMONO☆",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KONAMONO☆",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_kaidan",
+ "englishUsText":"χ-DAN",
+ "englishUsFontType":1,
+ "frenchText":"χ-DAN",
+ "frenchFontType":1,
+ "italianText":"χ-DAN",
+ "italianFontType":1,
+ "germanText":"χ-DAN",
+ "germanFontType":1,
+ "spanishText":"χ-DAN",
+ "spanishFontType":1,
+ "neutralSpanishText":"χ-DAN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"χ-DAN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_uheart",
+ "englishUsText":"UNDEAD HEART (IKARI NO Warriors)",
+ "englishUsFontType":1,
+ "frenchText":"UNDEAD HEART (IKARI NO Warriors)",
+ "frenchFontType":1,
+ "italianText":"UNDEAD HEART (IKARI NO Warriors)",
+ "italianFontType":1,
+ "germanText":"UNDEAD HEART (IKARI NO Warriors)",
+ "germanFontType":1,
+ "spanishText":"UNDEAD HEART (IKARI NO Warriors)",
+ "spanishFontType":1,
+ "neutralSpanishText":"UNDEAD HEART (IKARI NO Warriors)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"UNDEAD HEART (IKARI NO Warriors)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_takamg",
+ "englishUsText":"SHIRITSU TAKAMAGAHARA GAKUEN KOUKOU・KOUKA",
+ "englishUsFontType":1,
+ "frenchText":"SHIRITSU TAKAMAGAHARA GAKUEN KOUKOU・KOUKA",
+ "frenchFontType":1,
+ "italianText":"SHIRITSU TAKAMAGAHARA GAKUEN KOUKOU・KOUKA",
+ "italianFontType":1,
+ "germanText":"SHIRITSU TAKAMAGAHARA GAKUEN KOUKOU・KOUKA",
+ "germanFontType":1,
+ "spanishText":"SHIRITSU TAKAMAGAHARA GAKUEN KOUKOU・KOUKA",
+ "spanishFontType":1,
+ "neutralSpanishText":"SHIRITSU TAKAMAGAHARA GAKUEN KOUKOU・KOUKA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SHIRITSU TAKAMAGAHARA GAKUEN KOUKOU・KOUKA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_83noma",
+ "englishUsText":"YAMI NO MAHOUSHOUJO",
+ "englishUsFontType":1,
+ "frenchText":"YAMI NO MAHOUSHOUJO",
+ "frenchFontType":1,
+ "italianText":"YAMI NO MAHOUSHOUJO",
+ "italianFontType":1,
+ "germanText":"YAMI NO MAHOUSHOUJO",
+ "germanFontType":1,
+ "spanishText":"YAMI NO MAHOUSHOUJO",
+ "spanishFontType":1,
+ "neutralSpanishText":"YAMI NO MAHOUSHOUJO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"YAMI NO MAHOUSHOUJO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_mikuse",
+ "englishUsText":"Senbonzakura",
+ "englishUsFontType":1,
+ "frenchText":"Senbonzakura",
+ "frenchFontType":1,
+ "italianText":"Senbonzakura",
+ "italianFontType":1,
+ "germanText":"Senbonzakura",
+ "germanFontType":1,
+ "spanishText":"Senbonzakura",
+ "spanishFontType":1,
+ "neutralSpanishText":"Senbonzakura",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Senbonzakura",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_omirai",
+ "englishUsText":"Original MIRAI",
+ "englishUsFontType":1,
+ "frenchText":"Original MIRAI",
+ "frenchFontType":1,
+ "italianText":"Original MIRAI",
+ "italianFontType":1,
+ "germanText":"Original MIRAI",
+ "germanFontType":1,
+ "spanishText":"Original MIRAI",
+ "spanishFontType":1,
+ "neutralSpanishText":"Original MIRAI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Original MIRAI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_ymtgen",
+ "englishUsText":"YUME TO GENJITSU NO KYOUKAISEN",
+ "englishUsFontType":1,
+ "frenchText":"YUME TO GENJITSU NO KYOUKAISEN",
+ "frenchFontType":1,
+ "italianText":"YUME TO GENJITSU NO KYOUKAISEN",
+ "italianFontType":1,
+ "germanText":"YUME TO GENJITSU NO KYOUKAISEN",
+ "germanFontType":1,
+ "spanishText":"YUME TO GENJITSU NO KYOUKAISEN",
+ "spanishFontType":1,
+ "neutralSpanishText":"YUME TO GENJITSU NO KYOUKAISEN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"YUME TO GENJITSU NO KYOUKAISEN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_msclht",
+ "englishUsText":"My Muscle Heart",
+ "englishUsFontType":1,
+ "frenchText":"My Muscle Heart",
+ "frenchFontType":1,
+ "italianText":"My Muscle Heart",
+ "italianFontType":1,
+ "germanText":"My Muscle Heart",
+ "germanFontType":1,
+ "spanishText":"My Muscle Heart",
+ "spanishFontType":1,
+ "neutralSpanishText":"My Muscle Heart",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"My Muscle Heart",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_chaost",
+ "englishUsText":"!!!Chaos Time!!!",
+ "englishUsFontType":1,
+ "frenchText":"!!!Chaos Time!!!",
+ "frenchFontType":1,
+ "italianText":"!!!Chaos Time!!!",
+ "italianFontType":1,
+ "germanText":"!!!Chaos Time!!!",
+ "germanFontType":1,
+ "spanishText":"!!!Chaos Time!!!",
+ "spanishFontType":1,
+ "neutralSpanishText":"!!!Chaos Time!!!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"!!!Chaos Time!!!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_souryu",
+ "englishUsText":"SOURYU NO RAN",
+ "englishUsFontType":1,
+ "frenchText":"SOURYU NO RAN",
+ "frenchFontType":1,
+ "italianText":"SOURYU NO RAN",
+ "italianFontType":1,
+ "germanText":"SOURYU NO RAN",
+ "germanFontType":1,
+ "spanishText":"SOURYU NO RAN",
+ "spanishFontType":1,
+ "neutralSpanishText":"SOURYU NO RAN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SOURYU NO RAN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_2ge8ji",
+ "englishUsText":"Koi",
+ "englishUsFontType":1,
+ "frenchText":"Koi",
+ "frenchFontType":1,
+ "italianText":"Koi",
+ "italianFontType":1,
+ "germanText":"Koi",
+ "germanFontType":1,
+ "spanishText":"Koi",
+ "spanishFontType":1,
+ "neutralSpanishText":"Koi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Koi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_kyksmj",
+ "englishUsText":"Silent Majority",
+ "englishUsFontType":1,
+ "frenchText":"Silent Majority",
+ "frenchFontType":1,
+ "italianText":"Silent Majority",
+ "italianFontType":1,
+ "germanText":"Silent Majority",
+ "germanFontType":1,
+ "spanishText":"Silent Majority",
+ "spanishFontType":1,
+ "neutralSpanishText":"Silent Majority",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Silent Majority",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_krbld",
+ "englishUsText":"Be The One",
+ "englishUsFontType":1,
+ "frenchText":"Be The One",
+ "frenchFontType":1,
+ "italianText":"Be The One",
+ "italianFontType":1,
+ "germanText":"Be The One",
+ "germanFontType":1,
+ "spanishText":"Be The One",
+ "spanishFontType":1,
+ "neutralSpanishText":"Be The One",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Be The One",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_miku39",
+ "englishUsText":"Mikumiku Ni Shiteageru♪【Shiteyanyo】",
+ "englishUsFontType":1,
+ "frenchText":"Mikumiku Ni Shiteageru♪【Shiteyanyo】",
+ "frenchFontType":1,
+ "italianText":"Mikumiku Ni Shiteageru♪【Shiteyanyo】",
+ "italianFontType":1,
+ "germanText":"Mikumiku Ni Shiteageru♪【Shiteyanyo】",
+ "germanFontType":1,
+ "spanishText":"Mikumiku Ni Shiteageru♪【Shiteyanyo】",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mikumiku Ni Shiteageru♪【Shiteyanyo】",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mikumiku Ni Shiteageru♪【Shiteyanyo】",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_mikuer",
+ "englishUsText":"HATSUNE MIKU No Shoushitsu -Gekijouban-",
+ "englishUsFontType":1,
+ "frenchText":"HATSUNE MIKU No Shoushitsu -Gekijouban-",
+ "frenchFontType":1,
+ "italianText":"HATSUNE MIKU No Shoushitsu -Gekijouban-",
+ "italianFontType":1,
+ "germanText":"HATSUNE MIKU No Shoushitsu -Gekijouban-",
+ "germanFontType":1,
+ "spanishText":"HATSUNE MIKU No Shoushitsu -Gekijouban-",
+ "spanishFontType":1,
+ "neutralSpanishText":"HATSUNE MIKU No Shoushitsu -Gekijouban-",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HATSUNE MIKU No Shoushitsu -Gekijouban-",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_otomus",
+ "englishUsText":"OTOMUSHI WO TSUKAMAERO!",
+ "englishUsFontType":1,
+ "frenchText":"OTOMUSHI WO TSUKAMAERO!",
+ "frenchFontType":1,
+ "italianText":"OTOMUSHI WO TSUKAMAERO!",
+ "italianFontType":1,
+ "germanText":"OTOMUSHI WO TSUKAMAERO!",
+ "germanFontType":1,
+ "spanishText":"OTOMUSHI WO TSUKAMAERO!",
+ "spanishFontType":1,
+ "neutralSpanishText":"OTOMUSHI WO TSUKAMAERO!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"OTOMUSHI WO TSUKAMAERO!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_ymyrp4",
+ "englishUsText":"BOUKYAKU NO Tír na nÓg",
+ "englishUsFontType":1,
+ "frenchText":"BOUKYAKU NO Tír na nÓg",
+ "frenchFontType":1,
+ "italianText":"BOUKYAKU NO Tír na nÓg",
+ "italianFontType":1,
+ "germanText":"BOUKYAKU NO Tír na nÓg",
+ "germanFontType":1,
+ "spanishText":"BOUKYAKU NO Tír na nÓg",
+ "spanishFontType":1,
+ "neutralSpanishText":"BOUKYAKU NO Tír na nÓg",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"BOUKYAKU NO Tír na nÓg",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_warya",
+ "englishUsText":"SAYONARA Varya",
+ "englishUsFontType":1,
+ "frenchText":"SAYONARA Varya",
+ "frenchFontType":1,
+ "italianText":"SAYONARA Varya",
+ "italianFontType":1,
+ "germanText":"SAYONARA Varya",
+ "germanFontType":1,
+ "spanishText":"SAYONARA Varya",
+ "spanishFontType":1,
+ "neutralSpanishText":"SAYONARA Varya",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SAYONARA Varya",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_snyq",
+ "englishUsText":"SHOUNIN YOK-Q",
+ "englishUsFontType":1,
+ "frenchText":"SHOUNIN YOK-Q",
+ "frenchFontType":1,
+ "italianText":"SHOUNIN YOK-Q",
+ "italianFontType":1,
+ "germanText":"SHOUNIN YOK-Q",
+ "germanFontType":1,
+ "spanishText":"SHOUNIN YOK-Q",
+ "spanishFontType":1,
+ "neutralSpanishText":"SHOUNIN YOK-Q",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SHOUNIN YOK-Q",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_dsadvn",
+ "englishUsText":"D′s Adventure Note",
+ "englishUsFontType":1,
+ "frenchText":"D′s Adventure Note",
+ "frenchFontType":1,
+ "italianText":"D′s Adventure Note",
+ "italianFontType":1,
+ "germanText":"D′s Adventure Note",
+ "germanFontType":1,
+ "spanishText":"D′s Adventure Note",
+ "spanishFontType":1,
+ "neutralSpanishText":"D′s Adventure Note",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"D′s Adventure Note",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_coro4",
+ "englishUsText":"CoroCoro Comic 40th Anniversary Song",
+ "englishUsFontType":1,
+ "frenchText":"CoroCoro Comic 40th Anniversary Song",
+ "frenchFontType":1,
+ "italianText":"CoroCoro Comic 40th Anniversary Song",
+ "italianFontType":1,
+ "germanText":"CoroCoro Comic 40th Anniversary Song",
+ "germanFontType":1,
+ "spanishText":"CoroCoro Comic 40th Anniversary Song",
+ "spanishFontType":1,
+ "neutralSpanishText":"CoroCoro Comic 40th Anniversary Song",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"CoroCoro Comic 40th Anniversary Song",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_589him",
+ "englishUsText":"RUROU NO KOHAKU HIME",
+ "englishUsFontType":1,
+ "frenchText":"RUROU NO KOHAKU HIME",
+ "frenchFontType":1,
+ "italianText":"RUROU NO KOHAKU HIME",
+ "italianFontType":1,
+ "germanText":"RUROU NO KOHAKU HIME",
+ "germanFontType":1,
+ "spanishText":"RUROU NO KOHAKU HIME",
+ "spanishFontType":1,
+ "neutralSpanishText":"RUROU NO KOHAKU HIME",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"RUROU NO KOHAKU HIME",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_tuku43",
+ "englishUsText":"TSUKUYOMI",
+ "englishUsFontType":1,
+ "frenchText":"TSUKUYOMI",
+ "frenchFontType":1,
+ "italianText":"TSUKUYOMI",
+ "italianFontType":1,
+ "germanText":"TSUKUYOMI",
+ "germanFontType":1,
+ "spanishText":"TSUKUYOMI",
+ "spanishFontType":1,
+ "neutralSpanishText":"TSUKUYOMI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"TSUKUYOMI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_7fuku",
+ "englishUsText":"GEKIUN!SHICHIFUKU Happy Crew",
+ "englishUsFontType":1,
+ "frenchText":"GEKIUN!SHICHIFUKU Happy Crew",
+ "frenchFontType":1,
+ "italianText":"GEKIUN!SHICHIFUKU Happy Crew",
+ "italianFontType":1,
+ "germanText":"GEKIUN!SHICHIFUKU Happy Crew",
+ "germanFontType":1,
+ "spanishText":"GEKIUN!SHICHIFUKU Happy Crew",
+ "spanishFontType":1,
+ "neutralSpanishText":"GEKIUN!SHICHIFUKU Happy Crew",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"GEKIUN!SHICHIFUKU Happy Crew",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_orochi",
+ "englishUsText":"8OROCHI",
+ "englishUsFontType":1,
+ "frenchText":"8OROCHI",
+ "frenchFontType":1,
+ "italianText":"8OROCHI",
+ "italianFontType":1,
+ "germanText":"8OROCHI",
+ "germanFontType":1,
+ "spanishText":"8OROCHI",
+ "spanishFontType":1,
+ "neutralSpanishText":"8OROCHI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"8OROCHI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_hkgmag",
+ "englishUsText":"HOUKAGO☆Magician",
+ "englishUsFontType":1,
+ "frenchText":"HOUKAGO☆Magician",
+ "frenchFontType":1,
+ "italianText":"HOUKAGO☆Magician",
+ "italianFontType":1,
+ "germanText":"HOUKAGO☆Magician",
+ "germanFontType":1,
+ "spanishText":"HOUKAGO☆Magician",
+ "spanishFontType":1,
+ "neutralSpanishText":"HOUKAGO☆Magician",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HOUKAGO☆Magician",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_tongat",
+ "englishUsText":"TONGACHIN",
+ "englishUsFontType":1,
+ "frenchText":"TONGACHIN",
+ "frenchFontType":1,
+ "italianText":"TONGACHIN",
+ "italianFontType":1,
+ "germanText":"TONGACHIN",
+ "germanFontType":1,
+ "spanishText":"TONGACHIN",
+ "spanishFontType":1,
+ "neutralSpanishText":"TONGACHIN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"TONGACHIN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_ta5ta5",
+ "englishUsText":"Turquoise Tachometer",
+ "englishUsFontType":1,
+ "frenchText":"Turquoise Tachometer",
+ "frenchFontType":1,
+ "italianText":"Turquoise Tachometer",
+ "italianFontType":1,
+ "germanText":"Turquoise Tachometer",
+ "germanFontType":1,
+ "spanishText":"Turquoise Tachometer",
+ "spanishFontType":1,
+ "neutralSpanishText":"Turquoise Tachometer",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Turquoise Tachometer",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_glokey",
+ "englishUsText":"Gloria",
+ "englishUsFontType":1,
+ "frenchText":"Gloria",
+ "frenchFontType":1,
+ "italianText":"Gloria",
+ "italianFontType":1,
+ "germanText":"Gloria",
+ "germanFontType":1,
+ "spanishText":"Gloria",
+ "spanishFontType":1,
+ "neutralSpanishText":"Gloria",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Gloria",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_allimh",
+ "englishUsText":"All In My Heart",
+ "englishUsFontType":1,
+ "frenchText":"All In My Heart",
+ "frenchFontType":1,
+ "italianText":"All In My Heart",
+ "italianFontType":1,
+ "germanText":"All In My Heart",
+ "germanFontType":1,
+ "spanishText":"All In My Heart",
+ "spanishFontType":1,
+ "neutralSpanishText":"All In My Heart",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"All In My Heart",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_goth",
+ "englishUsText":"DON'T CUT",
+ "englishUsFontType":1,
+ "frenchText":"DON'T CUT",
+ "frenchFontType":1,
+ "italianText":"DON'T CUT",
+ "italianFontType":1,
+ "germanText":"DON'T CUT",
+ "germanFontType":1,
+ "spanishText":"DON'T CUT",
+ "spanishFontType":1,
+ "neutralSpanishText":"DON'T CUT",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DON'T CUT",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_skrexh",
+ "englishUsText":"SAKURA EXHAUST",
+ "englishUsFontType":1,
+ "frenchText":"SAKURA EXHAUST",
+ "frenchFontType":1,
+ "italianText":"SAKURA EXHAUST",
+ "italianFontType":1,
+ "germanText":"SAKURA EXHAUST",
+ "germanFontType":1,
+ "spanishText":"SAKURA EXHAUST",
+ "spanishFontType":1,
+ "neutralSpanishText":"SAKURA EXHAUST",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SAKURA EXHAUST",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_blrose",
+ "englishUsText":"Blue Rose Ruin",
+ "englishUsFontType":1,
+ "frenchText":"Blue Rose Ruin",
+ "frenchFontType":1,
+ "italianText":"Blue Rose Ruin",
+ "italianFontType":1,
+ "germanText":"Blue Rose Ruin",
+ "germanFontType":1,
+ "spanishText":"Blue Rose Ruin",
+ "spanishFontType":1,
+ "neutralSpanishText":"Blue Rose Ruin",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Blue Rose Ruin",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_haryu",
+ "englishUsText":"Haryu",
+ "englishUsFontType":1,
+ "frenchText":"Haryu",
+ "frenchFontType":1,
+ "italianText":"Haryu",
+ "italianFontType":1,
+ "germanText":"Haryu",
+ "germanFontType":1,
+ "spanishText":"Haryu",
+ "spanishFontType":1,
+ "neutralSpanishText":"Haryu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Haryu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_clspvn",
+ "englishUsText":"Pavane For A Dead Princess",
+ "englishUsFontType":1,
+ "frenchText":"Pavane For A Dead Princess",
+ "frenchFontType":1,
+ "italianText":"Pavane For A Dead Princess",
+ "italianFontType":1,
+ "germanText":"Pavane For A Dead Princess",
+ "germanFontType":1,
+ "spanishText":"Pavane For A Dead Princess",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pavane For A Dead Princess",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pavane For A Dead Princess",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_tank",
+ "englishUsText":"Yawaraka Tank",
+ "englishUsFontType":1,
+ "frenchText":"Yawaraka Tank",
+ "frenchFontType":1,
+ "italianText":"Yawaraka Tank",
+ "italianFontType":1,
+ "germanText":"Yawaraka Tank",
+ "germanFontType":1,
+ "spanishText":"Yawaraka Tank",
+ "spanishFontType":1,
+ "neutralSpanishText":"Yawaraka Tank",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Yawaraka Tank",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_tdm",
+ "englishUsText":"Taiko Drum Monster",
+ "englishUsFontType":1,
+ "frenchText":"Taiko Drum Monster",
+ "frenchFontType":1,
+ "italianText":"Taiko Drum Monster",
+ "italianFontType":1,
+ "germanText":"Taiko Drum Monster",
+ "germanFontType":1,
+ "spanishText":"Taiko Drum Monster",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko Drum Monster",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Taiko Drum Monster",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_flksak",
+ "englishUsText":"SAKURA(HARU)",
+ "englishUsFontType":1,
+ "frenchText":"SAKURA(HARU)",
+ "frenchFontType":1,
+ "italianText":"SAKURA(HARU)",
+ "italianFontType":1,
+ "germanText":"SAKURA(HARU)",
+ "germanFontType":1,
+ "spanishText":"SAKURA(HARU)",
+ "spanishFontType":1,
+ "neutralSpanishText":"SAKURA(HARU)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SAKURA(HARU)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_gekikk",
+ "englishUsText":"HARDCORE NO KOKOROE",
+ "englishUsFontType":1,
+ "frenchText":"HARDCORE NO KOKOROE",
+ "frenchFontType":1,
+ "italianText":"HARDCORE NO KOKOROE",
+ "italianFontType":1,
+ "germanText":"HARDCORE NO KOKOROE",
+ "germanFontType":1,
+ "spanishText":"HARDCORE NO KOKOROE",
+ "spanishFontType":1,
+ "neutralSpanishText":"HARDCORE NO KOKOROE",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HARDCORE NO KOKOROE",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_oka47",
+ "englishUsText":"KURU KURU KUROKKURU",
+ "englishUsFontType":1,
+ "frenchText":"KURU KURU KUROKKURU",
+ "frenchFontType":1,
+ "italianText":"KURU KURU KUROKKURU",
+ "italianFontType":1,
+ "germanText":"KURU KURU KUROKKURU",
+ "germanFontType":1,
+ "spanishText":"KURU KURU KUROKKURU",
+ "spanishFontType":1,
+ "neutralSpanishText":"KURU KURU KUROKKURU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KURU KURU KUROKKURU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_castle",
+ "englishUsText":"Black Rose Apostle",
+ "englishUsFontType":1,
+ "frenchText":"Black Rose Apostle",
+ "frenchFontType":1,
+ "italianText":"Black Rose Apostle",
+ "italianFontType":1,
+ "germanText":"Black Rose Apostle",
+ "germanFontType":1,
+ "spanishText":"Black Rose Apostle",
+ "spanishFontType":1,
+ "neutralSpanishText":"Black Rose Apostle",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Black Rose Apostle",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_thncrd",
+ "englishUsText":"Necro Fantasia ~ Arr.Demetori",
+ "englishUsFontType":1,
+ "frenchText":"Necro Fantasia ~ Arr.Demetori",
+ "frenchFontType":1,
+ "italianText":"Necro Fantasia ~ Arr.Demetori",
+ "italianFontType":1,
+ "germanText":"Necro Fantasia ~ Arr.Demetori",
+ "germanFontType":1,
+ "spanishText":"Necro Fantasia ~ Arr.Demetori",
+ "spanishFontType":1,
+ "neutralSpanishText":"Necro Fantasia ~ Arr.Demetori",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Necro Fantasia ~ Arr.Demetori",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_syclsn",
+ "englishUsText":"New World",
+ "englishUsFontType":1,
+ "frenchText":"New World",
+ "frenchFontType":1,
+ "italianText":"New World",
+ "italianFontType":1,
+ "germanText":"New World",
+ "germanFontType":1,
+ "spanishText":"New World",
+ "spanishFontType":1,
+ "neutralSpanishText":"New World",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"New World",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_anayuk",
+ "englishUsText":"Let It Go",
+ "englishUsFontType":1,
+ "frenchText":"Let It Go",
+ "frenchFontType":1,
+ "italianText":"Let It Go",
+ "italianFontType":1,
+ "germanText":"Let It Go",
+ "germanFontType":1,
+ "spanishText":"Let It Go",
+ "spanishFontType":1,
+ "neutralSpanishText":"Let It Go",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Let It Go",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_bforc",
+ "englishUsText":"BURNING FORCE Medley",
+ "englishUsFontType":1,
+ "frenchText":"BURNING FORCE Medley",
+ "frenchFontType":1,
+ "italianText":"BURNING FORCE Medley",
+ "italianFontType":1,
+ "germanText":"BURNING FORCE Medley",
+ "germanFontType":1,
+ "spanishText":"BURNING FORCE Medley",
+ "spanishFontType":1,
+ "neutralSpanishText":"BURNING FORCE Medley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"BURNING FORCE Medley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_clsca",
+ "englishUsText":"Carmen Prelude",
+ "englishUsFontType":1,
+ "frenchText":"Carmen Prelude",
+ "frenchFontType":1,
+ "italianText":"Carmen Prelude",
+ "italianFontType":1,
+ "germanText":"Carmen Prelude",
+ "germanFontType":1,
+ "spanishText":"Carmen Prelude",
+ "spanishFontType":1,
+ "neutralSpanishText":"Carmen Prelude",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Carmen Prelude",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_clsr",
+ "englishUsText":"Classical Music Medley\n(Rock version)",
+ "englishUsFontType":1,
+ "frenchText":"Classical Music Medley\n(Rock version)",
+ "frenchFontType":1,
+ "italianText":"Classical Music Medley\n(Rock version)",
+ "italianFontType":1,
+ "germanText":"Classical Music Medley\n(Rock version)",
+ "germanFontType":1,
+ "spanishText":"Classical Music Medley\n(Rock version)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Classical Music Medley\n(Rock version)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Classical Music Medley\n(Rock version)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_dora4",
+ "englishUsText":"Yume wo Kanaete DORAEMON",
+ "englishUsFontType":1,
+ "frenchText":"Yume wo Kanaete DORAEMON",
+ "frenchFontType":1,
+ "italianText":"Yume wo Kanaete DORAEMON",
+ "italianFontType":1,
+ "germanText":"Yume wo Kanaete DORAEMON",
+ "germanFontType":1,
+ "spanishText":"Yume wo Kanaete DORAEMON",
+ "spanishFontType":1,
+ "neutralSpanishText":"Yume wo Kanaete DORAEMON",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Yume wo Kanaete DORAEMON",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_drsp",
+ "englishUsText":"DRAGON SPIRIT Medley",
+ "englishUsFontType":1,
+ "frenchText":"DRAGON SPIRIT Medley",
+ "frenchFontType":1,
+ "italianText":"DRAGON SPIRIT Medley",
+ "italianFontType":1,
+ "germanText":"DRAGON SPIRIT Medley",
+ "germanFontType":1,
+ "spanishText":"DRAGON SPIRIT Medley",
+ "spanishFontType":1,
+ "neutralSpanishText":"DRAGON SPIRIT Medley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DRAGON SPIRIT Medley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_druaga",
+ "englishUsText":"THE TOWER OF DRUAGA Medley",
+ "englishUsFontType":1,
+ "frenchText":"THE TOWER OF DRUAGA Medley",
+ "frenchFontType":1,
+ "italianText":"THE TOWER OF DRUAGA Medley",
+ "italianFontType":1,
+ "germanText":"THE TOWER OF DRUAGA Medley",
+ "germanFontType":1,
+ "spanishText":"THE TOWER OF DRUAGA Medley",
+ "spanishFontType":1,
+ "neutralSpanishText":"THE TOWER OF DRUAGA Medley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"THE TOWER OF DRUAGA Medley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_japari",
+ "englishUsText":"Welcome to Japari Park",
+ "englishUsFontType":1,
+ "frenchText":"Welcome to Japari Park",
+ "frenchFontType":1,
+ "italianText":"Welcome to Japari Park",
+ "italianFontType":1,
+ "germanText":"Welcome to Japari Park",
+ "germanFontType":1,
+ "spanishText":"Welcome to Japari Park",
+ "spanishFontType":1,
+ "neutralSpanishText":"Welcome to Japari Park",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Welcome to Japari Park",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_kekka2",
+ "englishUsText":"Sugar Song & Bitter Step",
+ "englishUsFontType":1,
+ "frenchText":"Sugar Song & Bitter Step",
+ "frenchFontType":1,
+ "italianText":"Sugar Song & Bitter Step",
+ "italianFontType":1,
+ "germanText":"Sugar Song & Bitter Step",
+ "germanFontType":1,
+ "spanishText":"Sugar Song & Bitter Step",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sugar Song & Bitter Step",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sugar Song & Bitter Step",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_march",
+ "englishUsText":"THE TAIKO MARCH",
+ "englishUsFontType":1,
+ "frenchText":"THE TAIKO MARCH",
+ "frenchFontType":1,
+ "italianText":"THE TAIKO MARCH",
+ "italianFontType":1,
+ "germanText":"THE TAIKO MARCH",
+ "germanFontType":1,
+ "spanishText":"THE TAIKO MARCH",
+ "spanishFontType":1,
+ "neutralSpanishText":"THE TAIKO MARCH",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"THE TAIKO MARCH",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_moji",
+ "englishUsText":"MOJIPITTAN Medley",
+ "englishUsFontType":1,
+ "frenchText":"MOJIPITTAN Medley",
+ "frenchFontType":1,
+ "italianText":"MOJIPITTAN Medley",
+ "italianFontType":1,
+ "germanText":"MOJIPITTAN Medley",
+ "germanFontType":1,
+ "spanishText":"MOJIPITTAN Medley",
+ "spanishFontType":1,
+ "neutralSpanishText":"MOJIPITTAN Medley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"MOJIPITTAN Medley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_ppap",
+ "englishUsText":"Pen-Pineapple-Apple-Pen\n(PPAP)",
+ "englishUsFontType":1,
+ "frenchText":"Pen-Pineapple-Apple-Pen\n(PPAP)",
+ "frenchFontType":1,
+ "italianText":"Pen-Pineapple-Apple-Pen\n(PPAP)",
+ "italianFontType":1,
+ "germanText":"Pen-Pineapple-Apple-Pen\n(PPAP)",
+ "germanFontType":1,
+ "spanishText":"Pen-Pineapple-Apple-Pen\n(PPAP)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pen-Pineapple-Apple-Pen\n(PPAP)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pen-Pineapple-Apple-Pen\n(PPAP)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_rdrose",
+ "englishUsText":"Red Rose Evangel",
+ "englishUsFontType":1,
+ "frenchText":"Red Rose Evangel",
+ "frenchFontType":1,
+ "italianText":"Red Rose Evangel",
+ "italianFontType":1,
+ "germanText":"Red Rose Evangel",
+ "germanFontType":1,
+ "spanishText":"Red Rose Evangel",
+ "spanishFontType":1,
+ "neutralSpanishText":"Red Rose Evangel",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Red Rose Evangel",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_tek7he",
+ "englishUsText":"Heat Haze Shadow 2",
+ "englishUsFontType":1,
+ "frenchText":"Heat Haze Shadow 2",
+ "frenchFontType":1,
+ "italianText":"Heat Haze Shadow 2",
+ "italianFontType":1,
+ "germanText":"Heat Haze Shadow 2",
+ "germanFontType":1,
+ "spanishText":"Heat Haze Shadow 2",
+ "spanishFontType":1,
+ "neutralSpanishText":"Heat Haze Shadow 2",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Heat Haze Shadow 2",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_thchil",
+ "englishUsText":"Cirno's Perfect Math Class",
+ "englishUsFontType":1,
+ "frenchText":"Cirno's Perfect Math Class",
+ "frenchFontType":1,
+ "italianText":"Cirno's Perfect Math Class",
+ "italianFontType":1,
+ "germanText":"Cirno's Perfect Math Class",
+ "germanFontType":1,
+ "spanishText":"Cirno's Perfect Math Class",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cirno's Perfect Math Class",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Cirno's Perfect Math Class",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_thflnd",
+ "englishUsText":"Last Brutal Sister\nFlandre S",
+ "englishUsFontType":1,
+ "frenchText":"Last Brutal Sister\nFlandre S",
+ "frenchFontType":1,
+ "italianText":"Last Brutal Sister\nFlandre S",
+ "italianFontType":1,
+ "germanText":"Last Brutal Sister\nFlandre S",
+ "germanFontType":1,
+ "spanishText":"Last Brutal Sister\nFlandre S",
+ "spanishFontType":1,
+ "neutralSpanishText":"Last Brutal Sister\nFlandre S",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Last Brutal Sister\nFlandre S",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_tksoda",
+ "englishUsText":"Tokyo Soda 8Bit Edit",
+ "englishUsFontType":1,
+ "frenchText":"Tokyo Soda 8Bit Edit",
+ "frenchFontType":1,
+ "italianText":"Tokyo Soda 8Bit Edit",
+ "italianFontType":1,
+ "germanText":"Tokyo Soda 8Bit Edit",
+ "germanFontType":1,
+ "spanishText":"Tokyo Soda 8Bit Edit",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tokyo Soda 8Bit Edit",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tokyo Soda 8Bit Edit",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_tobers",
+ "englishUsText":"Tales of Berseria Medley",
+ "englishUsFontType":1,
+ "frenchText":"Tales of Berseria Medley",
+ "frenchFontType":1,
+ "italianText":"Tales of Berseria Medley",
+ "italianFontType":1,
+ "germanText":"Tales of Berseria Medley",
+ "germanFontType":1,
+ "spanishText":"Tales of Berseria Medley",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tales of Berseria Medley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tales of Berseria Medley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_psf1op",
+ "englishUsText":"TSUNAGARE!\nHIROGARE!\nUCHIAGARE!",
+ "englishUsFontType":1,
+ "frenchText":"TSUNAGARE!\nHIROGARE!\nUCHIAGARE!",
+ "frenchFontType":1,
+ "italianText":"TSUNAGARE!\nHIROGARE!\nUCHIAGARE!",
+ "italianFontType":1,
+ "germanText":"TSUNAGARE!\nHIROGARE!\nUCHIAGARE!",
+ "germanFontType":1,
+ "spanishText":"TSUNAGARE!\nHIROGARE!\nUCHIAGARE!",
+ "spanishFontType":1,
+ "neutralSpanishText":"TSUNAGARE!\nHIROGARE!\nUCHIAGARE!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"TSUNAGARE!\nHIROGARE!\nUCHIAGARE!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_dem31k",
+ "englishUsText":"Saika",
+ "englishUsFontType":1,
+ "frenchText":"Saika",
+ "frenchFontType":1,
+ "italianText":"Saika",
+ "italianFontType":1,
+ "germanText":"Saika",
+ "germanFontType":1,
+ "spanishText":"Saika",
+ "spanishFontType":1,
+ "neutralSpanishText":"Saika",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Saika",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_kteien",
+ "englishUsText":"KAICHUTEIEN WO\nMOTSU SHOUJO",
+ "englishUsFontType":1,
+ "frenchText":"KAICHUTEIEN WO\nMOTSU SHOUJO",
+ "frenchFontType":1,
+ "italianText":"KAICHUTEIEN WO\nMOTSU SHOUJO",
+ "italianFontType":1,
+ "germanText":"KAICHUTEIEN WO\nMOTSU SHOUJO",
+ "germanFontType":1,
+ "spanishText":"KAICHUTEIEN WO\nMOTSU SHOUJO",
+ "spanishFontType":1,
+ "neutralSpanishText":"KAICHUTEIEN WO\nMOTSU SHOUJO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KAICHUTEIEN WO\nMOTSU SHOUJO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_gunsln",
+ "englishUsText":"Gunslinger Cinderella",
+ "englishUsFontType":1,
+ "frenchText":"Gunslinger Cinderella",
+ "frenchFontType":1,
+ "italianText":"Gunslinger Cinderella",
+ "italianFontType":1,
+ "germanText":"Gunslinger Cinderella",
+ "germanFontType":1,
+ "spanishText":"Gunslinger Cinderella",
+ "spanishFontType":1,
+ "neutralSpanishText":"Gunslinger Cinderella",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Gunslinger Cinderella",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_6ne9om",
+ "englishUsText":"DOKIDOKI MUNEKYUN\nOMATSURI Time",
+ "englishUsFontType":1,
+ "frenchText":"DOKIDOKI MUNEKYUN\nOMATSURI Time",
+ "frenchFontType":1,
+ "italianText":"DOKIDOKI MUNEKYUN\nOMATSURI Time",
+ "italianFontType":1,
+ "germanText":"DOKIDOKI MUNEKYUN\nOMATSURI Time",
+ "germanFontType":1,
+ "spanishText":"DOKIDOKI MUNEKYUN\nOMATSURI Time",
+ "spanishFontType":1,
+ "neutralSpanishText":"DOKIDOKI MUNEKYUN\nOMATSURI Time",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DOKIDOKI MUNEKYUN\nOMATSURI Time",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_angel3",
+ "englishUsText":"Pastel Dream",
+ "englishUsFontType":1,
+ "frenchText":"Pastel Dream",
+ "frenchFontType":1,
+ "italianText":"Pastel Dream",
+ "italianFontType":1,
+ "germanText":"Pastel Dream",
+ "germanFontType":1,
+ "spanishText":"Pastel Dream",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pastel Dream",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pastel Dream",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_yugen",
+ "englishUsText":"YUGEN NO RAN",
+ "englishUsFontType":1,
+ "frenchText":"YUGEN NO RAN",
+ "frenchFontType":1,
+ "italianText":"YUGEN NO RAN",
+ "italianFontType":1,
+ "germanText":"YUGEN NO RAN",
+ "germanFontType":1,
+ "spanishText":"YUGEN NO RAN",
+ "spanishFontType":1,
+ "neutralSpanishText":"YUGEN NO RAN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"YUGEN NO RAN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_ygnarr",
+ "englishUsText":"Infinite Rebellion",
+ "englishUsFontType":1,
+ "frenchText":"Infinite Rebellion",
+ "frenchFontType":1,
+ "italianText":"Infinite Rebellion",
+ "italianFontType":1,
+ "germanText":"Infinite Rebellion",
+ "germanFontType":1,
+ "spanishText":"Infinite Rebellion",
+ "spanishFontType":1,
+ "neutralSpanishText":"Infinite Rebellion",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Infinite Rebellion",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_57mono",
+ "englishUsText":"KONAMONO☆",
+ "englishUsFontType":1,
+ "frenchText":"KONAMONO☆",
+ "frenchFontType":1,
+ "italianText":"KONAMONO☆",
+ "italianFontType":1,
+ "germanText":"KONAMONO☆",
+ "germanFontType":1,
+ "spanishText":"KONAMONO☆",
+ "spanishFontType":1,
+ "neutralSpanishText":"KONAMONO☆",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KONAMONO☆",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_kaidan",
+ "englishUsText":"χ-DAN",
+ "englishUsFontType":1,
+ "frenchText":"χ-DAN",
+ "frenchFontType":1,
+ "italianText":"χ-DAN",
+ "italianFontType":1,
+ "germanText":"χ-DAN",
+ "germanFontType":1,
+ "spanishText":"χ-DAN",
+ "spanishFontType":1,
+ "neutralSpanishText":"χ-DAN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"χ-DAN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_uheart",
+ "englishUsText":"UNDEAD HEART\n(IKARI NO Warriors)",
+ "englishUsFontType":1,
+ "frenchText":"UNDEAD HEART\n(IKARI NO Warriors)",
+ "frenchFontType":1,
+ "italianText":"UNDEAD HEART\n(IKARI NO Warriors)",
+ "italianFontType":1,
+ "germanText":"UNDEAD HEART\n(IKARI NO Warriors)",
+ "germanFontType":1,
+ "spanishText":"UNDEAD HEART\n(IKARI NO Warriors)",
+ "spanishFontType":1,
+ "neutralSpanishText":"UNDEAD HEART\n(IKARI NO Warriors)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"UNDEAD HEART\n(IKARI NO Warriors)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_takamg",
+ "englishUsText":"SHIRITSU TAKAMAGAHARA\nGAKUEN KOUKOU・KOUKA",
+ "englishUsFontType":1,
+ "frenchText":"SHIRITSU TAKAMAGAHARA\nGAKUEN KOUKOU・KOUKA",
+ "frenchFontType":1,
+ "italianText":"SHIRITSU TAKAMAGAHARA\nGAKUEN KOUKOU・KOUKA",
+ "italianFontType":1,
+ "germanText":"SHIRITSU TAKAMAGAHARA\nGAKUEN KOUKOU・KOUKA",
+ "germanFontType":1,
+ "spanishText":"SHIRITSU TAKAMAGAHARA\nGAKUEN KOUKOU・KOUKA",
+ "spanishFontType":1,
+ "neutralSpanishText":"SHIRITSU TAKAMAGAHARA\nGAKUEN KOUKOU・KOUKA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SHIRITSU TAKAMAGAHARA\nGAKUEN KOUKOU・KOUKA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_83noma",
+ "englishUsText":"YAMI NO MAHOUSHOUJO",
+ "englishUsFontType":1,
+ "frenchText":"YAMI NO MAHOUSHOUJO",
+ "frenchFontType":1,
+ "italianText":"YAMI NO MAHOUSHOUJO",
+ "italianFontType":1,
+ "germanText":"YAMI NO MAHOUSHOUJO",
+ "germanFontType":1,
+ "spanishText":"YAMI NO MAHOUSHOUJO",
+ "spanishFontType":1,
+ "neutralSpanishText":"YAMI NO MAHOUSHOUJO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"YAMI NO MAHOUSHOUJO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_omirai",
+ "englishUsText":"Original MIRAI",
+ "englishUsFontType":1,
+ "frenchText":"Original MIRAI",
+ "frenchFontType":1,
+ "italianText":"Original MIRAI",
+ "italianFontType":1,
+ "germanText":"Original MIRAI",
+ "germanFontType":1,
+ "spanishText":"Original MIRAI",
+ "spanishFontType":1,
+ "neutralSpanishText":"Original MIRAI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Original MIRAI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_ymtgen",
+ "englishUsText":"YUME TO GENJITSU NO\nKYOUKAISEN",
+ "englishUsFontType":1,
+ "frenchText":"YUME TO GENJITSU NO\nKYOUKAISEN",
+ "frenchFontType":1,
+ "italianText":"YUME TO GENJITSU NO\nKYOUKAISEN",
+ "italianFontType":1,
+ "germanText":"YUME TO GENJITSU NO\nKYOUKAISEN",
+ "germanFontType":1,
+ "spanishText":"YUME TO GENJITSU NO\nKYOUKAISEN",
+ "spanishFontType":1,
+ "neutralSpanishText":"YUME TO GENJITSU NO\nKYOUKAISEN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"YUME TO GENJITSU NO\nKYOUKAISEN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_msclht",
+ "englishUsText":"My Muscle Heart",
+ "englishUsFontType":1,
+ "frenchText":"My Muscle Heart",
+ "frenchFontType":1,
+ "italianText":"My Muscle Heart",
+ "italianFontType":1,
+ "germanText":"My Muscle Heart",
+ "germanFontType":1,
+ "spanishText":"My Muscle Heart",
+ "spanishFontType":1,
+ "neutralSpanishText":"My Muscle Heart",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"My Muscle Heart",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_chaost",
+ "englishUsText":"!!!Chaos Time!!!",
+ "englishUsFontType":1,
+ "frenchText":"!!!Chaos Time!!!",
+ "frenchFontType":1,
+ "italianText":"!!!Chaos Time!!!",
+ "italianFontType":1,
+ "germanText":"!!!Chaos Time!!!",
+ "germanFontType":1,
+ "spanishText":"!!!Chaos Time!!!",
+ "spanishFontType":1,
+ "neutralSpanishText":"!!!Chaos Time!!!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"!!!Chaos Time!!!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_souryu",
+ "englishUsText":"SOURYU NO RAN",
+ "englishUsFontType":1,
+ "frenchText":"SOURYU NO RAN",
+ "frenchFontType":1,
+ "italianText":"SOURYU NO RAN",
+ "italianFontType":1,
+ "germanText":"SOURYU NO RAN",
+ "germanFontType":1,
+ "spanishText":"SOURYU NO RAN",
+ "spanishFontType":1,
+ "neutralSpanishText":"SOURYU NO RAN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SOURYU NO RAN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_2ge8ji",
+ "englishUsText":"Koi",
+ "englishUsFontType":1,
+ "frenchText":"Koi",
+ "frenchFontType":1,
+ "italianText":"Koi",
+ "italianFontType":1,
+ "germanText":"Koi",
+ "germanFontType":1,
+ "spanishText":"Koi",
+ "spanishFontType":1,
+ "neutralSpanishText":"Koi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Koi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_kyksmj",
+ "englishUsText":"Silent Majority",
+ "englishUsFontType":1,
+ "frenchText":"Silent Majority",
+ "frenchFontType":1,
+ "italianText":"Silent Majority",
+ "italianFontType":1,
+ "germanText":"Silent Majority",
+ "germanFontType":1,
+ "spanishText":"Silent Majority",
+ "spanishFontType":1,
+ "neutralSpanishText":"Silent Majority",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Silent Majority",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_krbld",
+ "englishUsText":"Be The One",
+ "englishUsFontType":1,
+ "frenchText":"Be The One",
+ "frenchFontType":1,
+ "italianText":"Be The One",
+ "italianFontType":1,
+ "germanText":"Be The One",
+ "germanFontType":1,
+ "spanishText":"Be The One",
+ "spanishFontType":1,
+ "neutralSpanishText":"Be The One",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Be The One",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_miku39",
+ "englishUsText":"Mikumiku Ni Shiteageru♪\n【Shiteyanyo】",
+ "englishUsFontType":1,
+ "frenchText":"Mikumiku Ni Shiteageru♪\n【Shiteyanyo】",
+ "frenchFontType":1,
+ "italianText":"Mikumiku Ni Shiteageru♪\n【Shiteyanyo】",
+ "italianFontType":1,
+ "germanText":"Mikumiku Ni Shiteageru♪\n【Shiteyanyo】",
+ "germanFontType":1,
+ "spanishText":"Mikumiku Ni Shiteageru♪\n【Shiteyanyo】",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mikumiku Ni Shiteageru♪\n【Shiteyanyo】",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mikumiku Ni Shiteageru♪\n【Shiteyanyo】",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_mikuer",
+ "englishUsText":"HATSUNE MIKU No Shoushitsu\n-Gekijouban-",
+ "englishUsFontType":1,
+ "frenchText":"HATSUNE MIKU No Shoushitsu\n-Gekijouban-",
+ "frenchFontType":1,
+ "italianText":"HATSUNE MIKU No Shoushitsu\n-Gekijouban-",
+ "italianFontType":1,
+ "germanText":"HATSUNE MIKU No Shoushitsu\n-Gekijouban-",
+ "germanFontType":1,
+ "spanishText":"HATSUNE MIKU No Shoushitsu\n-Gekijouban-",
+ "spanishFontType":1,
+ "neutralSpanishText":"HATSUNE MIKU No Shoushitsu\n-Gekijouban-",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HATSUNE MIKU No Shoushitsu\n-Gekijouban-",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_mikuse",
+ "englishUsText":"Senbonzakura",
+ "englishUsFontType":1,
+ "frenchText":"Senbonzakura",
+ "frenchFontType":1,
+ "italianText":"Senbonzakura",
+ "italianFontType":1,
+ "germanText":"Senbonzakura",
+ "germanFontType":1,
+ "spanishText":"Senbonzakura",
+ "spanishFontType":1,
+ "neutralSpanishText":"Senbonzakura",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Senbonzakura",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_otomus",
+ "englishUsText":"OTOMUSHI WO\nTSUKAMAERO!",
+ "englishUsFontType":1,
+ "frenchText":"OTOMUSHI WO\nTSUKAMAERO!",
+ "frenchFontType":1,
+ "italianText":"OTOMUSHI WO\nTSUKAMAERO!",
+ "italianFontType":1,
+ "germanText":"OTOMUSHI WO\nTSUKAMAERO!",
+ "germanFontType":1,
+ "spanishText":"OTOMUSHI WO\nTSUKAMAERO!",
+ "spanishFontType":1,
+ "neutralSpanishText":"OTOMUSHI WO\nTSUKAMAERO!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"OTOMUSHI WO\nTSUKAMAERO!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_ymyrp4",
+ "englishUsText":"BOUKYAKU NO Tír na nÓg",
+ "englishUsFontType":1,
+ "frenchText":"BOUKYAKU NO Tír na nÓg",
+ "frenchFontType":1,
+ "italianText":"BOUKYAKU NO Tír na nÓg",
+ "italianFontType":1,
+ "germanText":"BOUKYAKU NO Tír na nÓg",
+ "germanFontType":1,
+ "spanishText":"BOUKYAKU NO Tír na nÓg",
+ "spanishFontType":1,
+ "neutralSpanishText":"BOUKYAKU NO Tír na nÓg",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"BOUKYAKU NO Tír na nÓg",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_warya",
+ "englishUsText":"SAYONARA Varya",
+ "englishUsFontType":1,
+ "frenchText":"SAYONARA Varya",
+ "frenchFontType":1,
+ "italianText":"SAYONARA Varya",
+ "italianFontType":1,
+ "germanText":"SAYONARA Varya",
+ "germanFontType":1,
+ "spanishText":"SAYONARA Varya",
+ "spanishFontType":1,
+ "neutralSpanishText":"SAYONARA Varya",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SAYONARA Varya",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_snyq",
+ "englishUsText":"SHOUNIN YOK-Q",
+ "englishUsFontType":1,
+ "frenchText":"SHOUNIN YOK-Q",
+ "frenchFontType":1,
+ "italianText":"SHOUNIN YOK-Q",
+ "italianFontType":1,
+ "germanText":"SHOUNIN YOK-Q",
+ "germanFontType":1,
+ "spanishText":"SHOUNIN YOK-Q",
+ "spanishFontType":1,
+ "neutralSpanishText":"SHOUNIN YOK-Q",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SHOUNIN YOK-Q",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_dsadvn",
+ "englishUsText":"D′s Adventure Note",
+ "englishUsFontType":1,
+ "frenchText":"D′s Adventure Note",
+ "frenchFontType":1,
+ "italianText":"D′s Adventure Note",
+ "italianFontType":1,
+ "germanText":"D′s Adventure Note",
+ "germanFontType":1,
+ "spanishText":"D′s Adventure Note",
+ "spanishFontType":1,
+ "neutralSpanishText":"D′s Adventure Note",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"D′s Adventure Note",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_zense",
+ "englishUsText":"Zenzenzense",
+ "englishUsFontType":1,
+ "frenchText":"Zenzenzense",
+ "frenchFontType":1,
+ "italianText":"Zenzenzense",
+ "italianFontType":1,
+ "germanText":"Zenzenzense",
+ "germanFontType":1,
+ "spanishText":"Zenzenzense",
+ "spanishFontType":1,
+ "neutralSpanishText":"Zenzenzense",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Zenzenzense",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_roadmv",
+ "englishUsText":"Road Movie",
+ "englishUsFontType":1,
+ "frenchText":"Road Movie",
+ "frenchFontType":1,
+ "italianText":"Road Movie",
+ "italianFontType":1,
+ "germanText":"Road Movie",
+ "germanFontType":1,
+ "spanishText":"Road Movie",
+ "spanishFontType":1,
+ "neutralSpanishText":"Road Movie",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Road Movie",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_4shaas",
+ "englishUsText":"Ashita mo",
+ "englishUsFontType":1,
+ "frenchText":"Ashita mo",
+ "frenchFontType":1,
+ "italianText":"Ashita mo",
+ "italianFontType":1,
+ "germanText":"Ashita mo",
+ "germanFontType":1,
+ "spanishText":"Ashita mo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ashita mo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ashita mo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_ynlose",
+ "englishUsText":"LOSER",
+ "englishUsFontType":1,
+ "frenchText":"LOSER",
+ "frenchFontType":1,
+ "italianText":"LOSER",
+ "italianFontType":1,
+ "germanText":"LOSER",
+ "germanFontType":1,
+ "spanishText":"LOSER",
+ "spanishFontType":1,
+ "neutralSpanishText":"LOSER",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"LOSER",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_uminok",
+ "englishUsText":"Umi no Koe",
+ "englishUsFontType":1,
+ "frenchText":"Umi no Koe",
+ "frenchFontType":1,
+ "italianText":"Umi no Koe",
+ "italianFontType":1,
+ "germanText":"Umi no Koe",
+ "germanFontType":1,
+ "spanishText":"Umi no Koe",
+ "spanishFontType":1,
+ "neutralSpanishText":"Umi no Koe",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Umi no Koe",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_himyak",
+ "englishUsText":"Himawari no Yakusoku",
+ "englishUsFontType":1,
+ "frenchText":"Himawari no Yakusoku",
+ "frenchFontType":1,
+ "italianText":"Himawari no Yakusoku",
+ "italianFontType":1,
+ "germanText":"Himawari no Yakusoku",
+ "germanFontType":1,
+ "spanishText":"Himawari no Yakusoku",
+ "spanishFontType":1,
+ "neutralSpanishText":"Himawari no Yakusoku",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Himawari no Yakusoku",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_gimcho",
+ "englishUsText":"Gimme Chocolate!!",
+ "englishUsFontType":1,
+ "frenchText":"Gimme Chocolate!!",
+ "frenchFontType":1,
+ "italianText":"Gimme Chocolate!!",
+ "italianFontType":1,
+ "germanText":"Gimme Chocolate!!",
+ "germanFontType":1,
+ "spanishText":"Gimme Chocolate!!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Gimme Chocolate!!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Gimme Chocolate!!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_skorpg",
+ "englishUsText":"RPG",
+ "englishUsFontType":1,
+ "frenchText":"RPG",
+ "frenchFontType":1,
+ "italianText":"RPG",
+ "italianFontType":1,
+ "germanText":"RPG",
+ "germanFontType":1,
+ "spanishText":"RPG",
+ "spanishFontType":1,
+ "neutralSpanishText":"RPG",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"RPG",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_ninjbb",
+ "englishUsText":"Ninja Re Bang Bang",
+ "englishUsFontType":1,
+ "frenchText":"Ninja Re Bang Bang",
+ "frenchFontType":1,
+ "italianText":"Ninja Re Bang Bang",
+ "italianFontType":1,
+ "germanText":"Ninja Re Bang Bang",
+ "germanFontType":1,
+ "spanishText":"Ninja Re Bang Bang",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ninja Re Bang Bang",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ninja Re Bang Bang",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_memesi",
+ "englishUsText":"Memeshikute",
+ "englishUsFontType":1,
+ "frenchText":"Memeshikute",
+ "frenchFontType":1,
+ "italianText":"Memeshikute",
+ "italianFontType":1,
+ "germanText":"Memeshikute",
+ "germanFontType":1,
+ "spanishText":"Memeshikute",
+ "spanishFontType":1,
+ "neutralSpanishText":"Memeshikute",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Memeshikute",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_koiama",
+ "englishUsText":"Koioto to Amazora",
+ "englishUsFontType":1,
+ "frenchText":"Koioto to Amazora",
+ "frenchFontType":1,
+ "italianText":"Koioto to Amazora",
+ "italianFontType":1,
+ "germanText":"Koioto to Amazora",
+ "germanFontType":1,
+ "spanishText":"Koioto to Amazora",
+ "spanishFontType":1,
+ "neutralSpanishText":"Koioto to Amazora",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Koioto to Amazora",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_kiseki",
+ "englishUsText":"KISEKI",
+ "englishUsFontType":1,
+ "frenchText":"KISEKI",
+ "frenchFontType":1,
+ "italianText":"KISEKI",
+ "italianFontType":1,
+ "germanText":"KISEKI",
+ "germanFontType":1,
+ "spanishText":"KISEKI",
+ "spanishFontType":1,
+ "neutralSpanishText":"KISEKI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KISEKI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_ikenai",
+ "englishUsText":"Ikenai Taiyou",
+ "englishUsFontType":1,
+ "frenchText":"Ikenai Taiyou",
+ "frenchFontType":1,
+ "italianText":"Ikenai Taiyou",
+ "italianFontType":1,
+ "germanText":"Ikenai Taiyou",
+ "germanFontType":1,
+ "spanishText":"Ikenai Taiyou",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ikenai Taiyou",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ikenai Taiyou",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_skrnb",
+ "englishUsText":"Sakuranbo",
+ "englishUsFontType":1,
+ "frenchText":"Sakuranbo",
+ "frenchFontType":1,
+ "italianText":"Sakuranbo",
+ "italianFontType":1,
+ "germanText":"Sakuranbo",
+ "germanFontType":1,
+ "spanishText":"Sakuranbo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sakuranbo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sakuranbo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_linda",
+ "englishUsText":"LINDA LINDA",
+ "englishUsFontType":1,
+ "frenchText":"LINDA LINDA",
+ "frenchFontType":1,
+ "italianText":"LINDA LINDA",
+ "italianFontType":1,
+ "germanText":"LINDA LINDA",
+ "germanFontType":1,
+ "spanishText":"LINDA LINDA",
+ "spanishFontType":1,
+ "neutralSpanishText":"LINDA LINDA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"LINDA LINDA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_natsu",
+ "englishUsText":"Natsumatsuri",
+ "englishUsFontType":1,
+ "frenchText":"Natsumatsuri",
+ "frenchFontType":1,
+ "italianText":"Natsumatsuri",
+ "italianFontType":1,
+ "germanText":"Natsumatsuri",
+ "germanFontType":1,
+ "spanishText":"Natsumatsuri",
+ "spanishFontType":1,
+ "neutralSpanishText":"Natsumatsuri",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Natsumatsuri",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_10tai",
+ "englishUsText":"Tentai Kansoku",
+ "englishUsFontType":1,
+ "frenchText":"Tentai Kansoku",
+ "frenchFontType":1,
+ "italianText":"Tentai Kansoku",
+ "italianFontType":1,
+ "germanText":"Tentai Kansoku",
+ "germanFontType":1,
+ "spanishText":"Tentai Kansoku",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tentai Kansoku",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tentai Kansoku",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_xjapan",
+ "englishUsText":"KURENAI",
+ "englishUsFontType":1,
+ "frenchText":"KURENAI",
+ "frenchFontType":1,
+ "italianText":"KURENAI",
+ "italianFontType":1,
+ "germanText":"KURENAI",
+ "germanFontType":1,
+ "spanishText":"KURENAI",
+ "spanishFontType":1,
+ "neutralSpanishText":"KURENAI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KURENAI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_apollo",
+ "englishUsText":"APOLLO",
+ "englishUsFontType":1,
+ "frenchText":"APOLLO",
+ "frenchFontType":1,
+ "italianText":"APOLLO",
+ "italianFontType":1,
+ "germanText":"APOLLO",
+ "germanFontType":1,
+ "spanishText":"APOLLO",
+ "spanishFontType":1,
+ "neutralSpanishText":"APOLLO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"APOLLO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_totoro",
+ "englishUsText":"My Neighbor Totoro –\nEnding Theme Song",
+ "englishUsFontType":1,
+ "frenchText":"Mon Voisin Totoro -\ngénérique de fin",
+ "frenchFontType":1,
+ "italianText":"Il mio vicino Totoro -\nTema principale",
+ "italianFontType":1,
+ "germanText":"Mein Nachbar Totoro –\nAbspann",
+ "germanFontType":1,
+ "spanishText":"Mi vecino Totoro\n(Tema principal - Tema final)",
+ "spanishFontType":1,
+ "neutralSpanishText":"My Neighbor Totoro\n(The Ending Song)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mi vecino Totoro\n(Tema principal - Tema final)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_zootop",
+ "englishUsText":"Try Everything",
+ "englishUsFontType":1,
+ "frenchText":"Try Everything",
+ "frenchFontType":1,
+ "italianText":"Try Everything",
+ "italianFontType":1,
+ "germanText":"Try Everything",
+ "germanFontType":1,
+ "spanishText":"Try Everything",
+ "spanishFontType":1,
+ "neutralSpanishText":"Try Everything",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Try Everything",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_dbcgen",
+ "englishUsText":"Genkai Toppa × Survivor",
+ "englishUsFontType":1,
+ "frenchText":"Genkai Toppa × Survivor",
+ "frenchFontType":1,
+ "italianText":"Genkai Toppa × Survivor",
+ "italianFontType":1,
+ "germanText":"Genkai Toppa × Survivor",
+ "germanFontType":1,
+ "spanishText":"Genkai Toppa × Survivor",
+ "spanishFontType":1,
+ "neutralSpanishText":"Genkai Toppa × Survivor",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Genkai Toppa × Survivor",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_batan9",
+ "englishUsText":"Zenryoku Batankyuu",
+ "englishUsFontType":1,
+ "frenchText":"Zenryoku Batankyuu",
+ "frenchFontType":1,
+ "italianText":"Zenryoku Batankyuu",
+ "italianFontType":1,
+ "germanText":"Zenryoku Batankyuu",
+ "germanFontType":1,
+ "spanishText":"Zenryoku Batankyuu",
+ "spanishFontType":1,
+ "neutralSpanishText":"Zenryoku Batankyuu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Zenryoku Batankyuu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_shing2",
+ "englishUsText":"Guren no Yumiya",
+ "englishUsFontType":1,
+ "frenchText":"Guren no Yumiya",
+ "frenchFontType":1,
+ "italianText":"Guren no Yumiya",
+ "italianFontType":1,
+ "germanText":"Guren no Yumiya",
+ "germanFontType":1,
+ "spanishText":"Guren no Yumiya",
+ "spanishFontType":1,
+ "neutralSpanishText":"Guren no Yumiya",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Guren no Yumiya",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_weare0",
+ "englishUsText":"We Are!",
+ "englishUsFontType":1,
+ "frenchText":"We Are!",
+ "frenchFontType":1,
+ "italianText":"We Are!",
+ "italianFontType":1,
+ "germanText":"We Are!",
+ "germanFontType":1,
+ "spanishText":"We Are!",
+ "spanishFontType":1,
+ "neutralSpanishText":"We Are!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"We Are!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_eva",
+ "englishUsText":"A Cruel Angel's Thesis",
+ "englishUsFontType":1,
+ "frenchText":"A Cruel Angel's Thesis",
+ "frenchFontType":1,
+ "italianText":"A Cruel Angel's Thesis",
+ "italianFontType":1,
+ "germanText":"A Cruel Angel's Thesis",
+ "germanFontType":1,
+ "spanishText":"A Cruel Angel's Thesis",
+ "spanishFontType":1,
+ "neutralSpanishText":"A Cruel Angel's Thesis",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"A Cruel Angel's Thesis",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_mikugr",
+ "englishUsText":"Ghost Rule",
+ "englishUsFontType":1,
+ "frenchText":"Ghost Rule",
+ "frenchFontType":1,
+ "italianText":"Ghost Rule",
+ "italianFontType":1,
+ "germanText":"Ghost Rule",
+ "germanFontType":1,
+ "spanishText":"Ghost Rule",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ghost Rule",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ghost Rule",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_mikuaa",
+ "englishUsText":"Alien Alien",
+ "englishUsFontType":1,
+ "frenchText":"Alien Alien",
+ "frenchFontType":1,
+ "italianText":"Alien Alien",
+ "italianFontType":1,
+ "germanText":"Alien Alien",
+ "germanFontType":1,
+ "spanishText":"Alien Alien",
+ "spanishFontType":1,
+ "neutralSpanishText":"Alien Alien",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alien Alien",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_lost1g",
+ "englishUsText":"The Lost One's Weeping",
+ "englishUsFontType":1,
+ "frenchText":"The Lost One's Weeping",
+ "frenchFontType":1,
+ "italianText":"The Lost One's Weeping",
+ "italianFontType":1,
+ "germanText":"The Lost One's Weeping",
+ "germanFontType":1,
+ "spanishText":"The Lost One's Weeping",
+ "spanishFontType":1,
+ "neutralSpanishText":"The Lost One's Weeping",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"The Lost One's Weeping",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_ia6cho",
+ "englishUsText":"A Tale of Six Trillion Years\nand a Night",
+ "englishUsFontType":1,
+ "frenchText":"A Tale of Six Trillion Years\nand a Night",
+ "frenchFontType":1,
+ "italianText":"A Tale of Six Trillion Years\nand a Night",
+ "italianFontType":1,
+ "germanText":"A Tale of Six Trillion Years\nand a Night",
+ "germanFontType":1,
+ "spanishText":"A Tale of Six Trillion Years\nand a Night",
+ "spanishFontType":1,
+ "neutralSpanishText":"A Tale of Six Trillion Years\nand a Night",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"A Tale of Six Trillion Years\nand a Night",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_hkitty",
+ "englishUsText":"HELLO KITTY",
+ "englishUsFontType":1,
+ "frenchText":"HELLO KITTY",
+ "frenchFontType":1,
+ "italianText":"HELLO KITTY",
+ "italianFontType":1,
+ "germanText":"HELLO KITTY",
+ "germanFontType":1,
+ "spanishText":"HELLO KITTY",
+ "spanishFontType":1,
+ "neutralSpanishText":"HELLO KITTY",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HELLO KITTY",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_th7171",
+ "englishUsText":"Night of Knights /\nKnight of Nights",
+ "englishUsFontType":1,
+ "frenchText":"Night of Knights /\nKnight of Nights",
+ "frenchFontType":1,
+ "italianText":"Night of Knights /\nKnight of Nights",
+ "italianFontType":1,
+ "germanText":"Night of Knights /\nKnight of Nights",
+ "germanFontType":1,
+ "spanishText":"Night of Knights /\nKnight of Nights",
+ "spanishFontType":1,
+ "neutralSpanishText":"Night of Knights /\nKnight of Nights",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Night of Knights /\nKnight of Nights",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_clsh69",
+ "englishUsText":"Hungarian Rock",
+ "englishUsFontType":1,
+ "frenchText":"Hungarian Rock",
+ "frenchFontType":1,
+ "italianText":"Hungarian Rock",
+ "italianFontType":1,
+ "germanText":"Hungarian Rock",
+ "germanFontType":1,
+ "spanishText":"Hungarian Rock",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hungarian Rock",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hungarian Rock",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_clsw",
+ "englishUsText":"William Tell Overture",
+ "englishUsFontType":1,
+ "frenchText":"William Tell Overture",
+ "frenchFontType":1,
+ "italianText":"William Tell Overture",
+ "italianFontType":1,
+ "germanText":"William Tell Overture",
+ "germanFontType":1,
+ "spanishText":"William Tell Overture",
+ "spanishFontType":1,
+ "neutralSpanishText":"William Tell Overture",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"William Tell Overture",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_cls10",
+ "englishUsText":"Overture from\n'Orpheus in the Underworld'",
+ "englishUsFontType":1,
+ "frenchText":"Overture from\n'Orpheus in the Underworld'",
+ "frenchFontType":1,
+ "italianText":"Overture from\n'Orpheus in the Underworld'",
+ "italianFontType":1,
+ "germanText":"Overture from\n'Orpheus in the Underworld'",
+ "germanFontType":1,
+ "spanishText":"Overture from\n'Orpheus in the Underworld'",
+ "spanishFontType":1,
+ "neutralSpanishText":"Overture from\n'Orpheus in the Underworld'",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Overture from\n'Orpheus in the Underworld'",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_babel",
+ "englishUsText":"THE TOWER OF BABEL",
+ "englishUsFontType":1,
+ "frenchText":"THE TOWER OF BABEL",
+ "frenchFontType":1,
+ "italianText":"THE TOWER OF BABEL",
+ "italianFontType":1,
+ "germanText":"THE TOWER OF BABEL",
+ "germanFontType":1,
+ "spanishText":"THE TOWER OF BABEL",
+ "spanishFontType":1,
+ "neutralSpanishText":"THE TOWER OF BABEL",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"THE TOWER OF BABEL",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_mappy2",
+ "englishUsText":"MAPPY Medley",
+ "englishUsFontType":1,
+ "frenchText":"MAPPY Medley",
+ "frenchFontType":1,
+ "italianText":"MAPPY Medley",
+ "italianFontType":1,
+ "germanText":"MAPPY Medley",
+ "germanFontType":1,
+ "spanishText":"MAPPY Medley",
+ "spanishFontType":1,
+ "neutralSpanishText":"MAPPY Medley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"MAPPY Medley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_sf5ryu",
+ "englishUsText":"Theme of Ryu",
+ "englishUsFontType":1,
+ "frenchText":"Theme of Ryu",
+ "frenchFontType":1,
+ "italianText":"Theme of Ryu",
+ "italianFontType":1,
+ "germanText":"Theme of Ryu",
+ "germanFontType":1,
+ "spanishText":"Theme of Ryu",
+ "spanishFontType":1,
+ "neutralSpanishText":"Theme of Ryu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Theme of Ryu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_imconc",
+ "englishUsText":"Onegai! Cinderella ",
+ "englishUsFontType":1,
+ "frenchText":"Onegai! Cinderella ",
+ "frenchFontType":1,
+ "italianText":"Onegai! Cinderella ",
+ "italianFontType":1,
+ "germanText":"Onegai! Cinderella ",
+ "germanFontType":1,
+ "spanishText":"Onegai! Cinderella ",
+ "spanishFontType":1,
+ "neutralSpanishText":"Onegai! Cinderella ",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Onegai! Cinderella ",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_immbra",
+ "englishUsText":"Brand New Theater!",
+ "englishUsFontType":1,
+ "frenchText":"Brand New Theater!",
+ "frenchFontType":1,
+ "italianText":"Brand New Theater!",
+ "italianFontType":1,
+ "germanText":"Brand New Theater!",
+ "germanFontType":1,
+ "spanishText":"Brand New Theater!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Brand New Theater!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Brand New Theater!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_crturb",
+ "englishUsText":"Urban Striker",
+ "englishUsFontType":1,
+ "frenchText":"Urban Striker",
+ "frenchFontType":1,
+ "italianText":"Urban Striker",
+ "italianFontType":1,
+ "germanText":"Urban Striker",
+ "germanFontType":1,
+ "spanishText":"Urban Striker",
+ "spanishFontType":1,
+ "neutralSpanishText":"Urban Striker",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Urban Striker",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_eatem",
+ "englishUsText":"EAT'EM UP!",
+ "englishUsFontType":1,
+ "frenchText":"EAT'EM UP!",
+ "frenchFontType":1,
+ "italianText":"EAT'EM UP!",
+ "italianFontType":1,
+ "germanText":"EAT'EM UP!",
+ "germanFontType":1,
+ "spanishText":"EAT'EM UP!",
+ "spanishFontType":1,
+ "neutralSpanishText":"EAT'EM UP!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"EAT'EM UP!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_genpe",
+ "englishUsText":"KAGEKIYO",
+ "englishUsFontType":1,
+ "frenchText":"KAGEKIYO",
+ "frenchFontType":1,
+ "italianText":"KAGEKIYO",
+ "italianFontType":1,
+ "germanText":"KAGEKIYO",
+ "germanFontType":1,
+ "spanishText":"KAGEKIYO",
+ "spanishFontType":1,
+ "neutralSpanishText":"KAGEKIYO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KAGEKIYO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_ryuhim",
+ "englishUsText":"RYU TO KOKUEN NO HIMEGIMI",
+ "englishUsFontType":1,
+ "frenchText":"RYU TO KOKUEN NO HIMEGIMI",
+ "frenchFontType":1,
+ "italianText":"RYU TO KOKUEN NO HIMEGIMI",
+ "italianFontType":1,
+ "germanText":"RYU TO KOKUEN NO HIMEGIMI",
+ "germanFontType":1,
+ "spanishText":"RYU TO KOKUEN NO HIMEGIMI",
+ "spanishFontType":1,
+ "neutralSpanishText":"RYU TO KOKUEN NO HIMEGIMI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"RYU TO KOKUEN NO HIMEGIMI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_trustg",
+ "englishUsText":"Trust Game",
+ "englishUsFontType":1,
+ "frenchText":"Trust Game",
+ "frenchFontType":1,
+ "italianText":"Trust Game",
+ "italianFontType":1,
+ "germanText":"Trust Game",
+ "germanFontType":1,
+ "spanishText":"Trust Game",
+ "spanishFontType":1,
+ "neutralSpanishText":"Trust Game",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Trust Game",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_mgpafe",
+ "englishUsText":"Magical Parfait",
+ "englishUsFontType":1,
+ "frenchText":"Magical Parfait",
+ "frenchFontType":1,
+ "italianText":"Magical Parfait",
+ "italianFontType":1,
+ "germanText":"Magical Parfait",
+ "germanFontType":1,
+ "spanishText":"Magical Parfait",
+ "spanishFontType":1,
+ "neutralSpanishText":"Magical Parfait",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Magical Parfait",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_32segw",
+ "englishUsText":"MITSUSEGAWA RANBU",
+ "englishUsFontType":1,
+ "frenchText":"MITSUSEGAWA RANBU",
+ "frenchFontType":1,
+ "italianText":"MITSUSEGAWA RANBU",
+ "italianFontType":1,
+ "germanText":"MITSUSEGAWA RANBU",
+ "germanFontType":1,
+ "spanishText":"MITSUSEGAWA RANBU",
+ "spanishFontType":1,
+ "neutralSpanishText":"MITSUSEGAWA RANBU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"MITSUSEGAWA RANBU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_so2omf",
+ "englishUsText":"SOTSUOMESHIKI・Full",
+ "englishUsFontType":1,
+ "frenchText":"SOTSUOMESHIKI・Full",
+ "frenchFontType":1,
+ "italianText":"SOTSUOMESHIKI・Full",
+ "italianFontType":1,
+ "germanText":"SOTSUOMESHIKI・Full",
+ "germanFontType":1,
+ "spanishText":"SOTSUOMESHIKI・Full",
+ "spanishFontType":1,
+ "neutralSpanishText":"SOTSUOMESHIKI・Full",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SOTSUOMESHIKI・Full",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_nograv",
+ "englishUsText":"No Gravity",
+ "englishUsFontType":1,
+ "frenchText":"No Gravity",
+ "frenchFontType":1,
+ "italianText":"No Gravity",
+ "italianFontType":1,
+ "germanText":"No Gravity",
+ "germanFontType":1,
+ "spanishText":"No Gravity",
+ "spanishFontType":1,
+ "neutralSpanishText":"No Gravity",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"No Gravity",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_crkvic",
+ "englishUsText":"VICTORIA",
+ "englishUsFontType":1,
+ "frenchText":"VICTORIA",
+ "frenchFontType":1,
+ "italianText":"VICTORIA",
+ "italianFontType":1,
+ "germanText":"VICTORIA",
+ "germanFontType":1,
+ "spanishText":"VICTORIA",
+ "spanishFontType":1,
+ "neutralSpanishText":"VICTORIA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"VICTORIA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_tengu",
+ "englishUsText":"TENGU BAYASHI",
+ "englishUsFontType":1,
+ "frenchText":"TENGU BAYASHI",
+ "frenchFontType":1,
+ "italianText":"TENGU BAYASHI",
+ "italianFontType":1,
+ "germanText":"TENGU BAYASHI",
+ "germanFontType":1,
+ "spanishText":"TENGU BAYASHI",
+ "spanishFontType":1,
+ "neutralSpanishText":"TENGU BAYASHI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"TENGU BAYASHI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_timtrv",
+ "englishUsText":"Time Traveler",
+ "englishUsFontType":1,
+ "frenchText":"Time Traveler",
+ "frenchFontType":1,
+ "italianText":"Time Traveler",
+ "italianFontType":1,
+ "germanText":"Time Traveler",
+ "germanFontType":1,
+ "spanishText":"Time Traveler",
+ "spanishFontType":1,
+ "neutralSpanishText":"Time Traveler",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Time Traveler",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_izanam",
+ "englishUsText":"YOMI NO IZANAMI",
+ "englishUsFontType":1,
+ "frenchText":"YOMI NO IZANAMI",
+ "frenchFontType":1,
+ "italianText":"YOMI NO IZANAMI",
+ "italianFontType":1,
+ "germanText":"YOMI NO IZANAMI",
+ "germanFontType":1,
+ "spanishText":"YOMI NO IZANAMI",
+ "spanishFontType":1,
+ "neutralSpanishText":"YOMI NO IZANAMI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"YOMI NO IZANAMI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_mugens",
+ "englishUsText":"MUGEN NO SORA",
+ "englishUsFontType":1,
+ "frenchText":"MUGEN NO SORA",
+ "frenchFontType":1,
+ "italianText":"MUGEN NO SORA",
+ "italianFontType":1,
+ "germanText":"MUGEN NO SORA",
+ "germanFontType":1,
+ "spanishText":"MUGEN NO SORA",
+ "spanishFontType":1,
+ "neutralSpanishText":"MUGEN NO SORA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"MUGEN NO SORA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_stabof",
+ "englishUsText":"GASSHO STIVAL-FE!",
+ "englishUsFontType":1,
+ "frenchText":"GASSHO STIVAL-FE!",
+ "frenchFontType":1,
+ "italianText":"GASSHO STIVAL-FE!",
+ "italianFontType":1,
+ "germanText":"GASSHO STIVAL-FE!",
+ "germanFontType":1,
+ "spanishText":"GASSHO STIVAL-FE!",
+ "spanishFontType":1,
+ "neutralSpanishText":"GASSHO STIVAL-FE!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"GASSHO STIVAL-FE!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_flyawy",
+ "englishUsText":"Fly away",
+ "englishUsFontType":1,
+ "frenchText":"Fly away",
+ "frenchFontType":1,
+ "italianText":"Fly away",
+ "italianFontType":1,
+ "germanText":"Fly away",
+ "germanFontType":1,
+ "spanishText":"Fly away",
+ "spanishFontType":1,
+ "neutralSpanishText":"Fly away",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Fly away",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_yayoi",
+ "englishUsText":"HOUJO YAYOI",
+ "englishUsFontType":1,
+ "frenchText":"HOUJO YAYOI",
+ "frenchFontType":1,
+ "italianText":"HOUJO YAYOI",
+ "italianFontType":1,
+ "germanText":"HOUJO YAYOI",
+ "germanFontType":1,
+ "spanishText":"HOUJO YAYOI",
+ "spanishFontType":1,
+ "neutralSpanishText":"HOUJO YAYOI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HOUJO YAYOI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_trance",
+ "englishUsText":"Angel Dream",
+ "englishUsFontType":1,
+ "frenchText":"Angel Dream",
+ "frenchFontType":1,
+ "italianText":"Angel Dream",
+ "italianFontType":1,
+ "germanText":"Angel Dream",
+ "germanFontType":1,
+ "spanishText":"Angel Dream",
+ "spanishFontType":1,
+ "neutralSpanishText":"Angel Dream",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Angel Dream",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_vrock",
+ "englishUsText":"YUGAO NO KIMI",
+ "englishUsFontType":1,
+ "frenchText":"YUGAO NO KIMI",
+ "frenchFontType":1,
+ "italianText":"YUGAO NO KIMI",
+ "italianFontType":1,
+ "germanText":"YUGAO NO KIMI",
+ "germanFontType":1,
+ "spanishText":"YUGAO NO KIMI",
+ "spanishFontType":1,
+ "neutralSpanishText":"YUGAO NO KIMI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"YUGAO NO KIMI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_butou9",
+ "englishUsText":"OUKA RANMAN",
+ "englishUsFontType":1,
+ "frenchText":"OUKA RANMAN",
+ "frenchFontType":1,
+ "italianText":"OUKA RANMAN",
+ "italianFontType":1,
+ "germanText":"OUKA RANMAN",
+ "germanFontType":1,
+ "spanishText":"OUKA RANMAN",
+ "spanishFontType":1,
+ "neutralSpanishText":"OUKA RANMAN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"OUKA RANMAN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_d96can",
+ "englishUsText":"DOKU LO CANdy♡",
+ "englishUsFontType":1,
+ "frenchText":"DOKU LO CANdy♡",
+ "frenchFontType":1,
+ "italianText":"DOKU LO CANdy♡",
+ "italianFontType":1,
+ "germanText":"DOKU LO CANdy♡",
+ "germanFontType":1,
+ "spanishText":"DOKU LO CANdy♡",
+ "spanishFontType":1,
+ "neutralSpanishText":"DOKU LO CANdy♡",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DOKU LO CANdy♡",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_rot",
+ "englishUsText":"SAITAMA 2000",
+ "englishUsFontType":1,
+ "frenchText":"SAITAMA 2000",
+ "frenchFontType":1,
+ "italianText":"SAITAMA 2000",
+ "italianFontType":1,
+ "germanText":"SAITAMA 2000",
+ "germanFontType":1,
+ "spanishText":"SAITAMA 2000",
+ "spanishFontType":1,
+ "neutralSpanishText":"SAITAMA 2000",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SAITAMA 2000",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_rot4",
+ "englishUsText":"MADA SAITAMA 2000",
+ "englishUsFontType":1,
+ "frenchText":"MADA SAITAMA 2000",
+ "frenchFontType":1,
+ "italianText":"MADA SAITAMA 2000",
+ "italianFontType":1,
+ "germanText":"MADA SAITAMA 2000",
+ "germanFontType":1,
+ "spanishText":"MADA SAITAMA 2000",
+ "spanishFontType":1,
+ "neutralSpanishText":"MADA SAITAMA 2000",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"MADA SAITAMA 2000",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_coro4",
+ "englishUsText":"CoroCoro Comic 40th Anniversary Song",
+ "englishUsFontType":1,
+ "frenchText":"CoroCoro Comic 40th Anniversary Song",
+ "frenchFontType":1,
+ "italianText":"CoroCoro Comic 40th Anniversary Song",
+ "italianFontType":1,
+ "germanText":"CoroCoro Comic 40th Anniversary Song",
+ "germanFontType":1,
+ "spanishText":"CoroCoro Comic 40th Anniversary Song",
+ "spanishFontType":1,
+ "neutralSpanishText":"CoroCoro Comic 40th Anniversary Song",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"CoroCoro Comic 40th Anniversary Song",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_589him",
+ "englishUsText":"RUROU NO KOHAKU HIME",
+ "englishUsFontType":1,
+ "frenchText":"RUROU NO KOHAKU HIME",
+ "frenchFontType":1,
+ "italianText":"RUROU NO KOHAKU HIME",
+ "italianFontType":1,
+ "germanText":"RUROU NO KOHAKU HIME",
+ "germanFontType":1,
+ "spanishText":"RUROU NO KOHAKU HIME",
+ "spanishFontType":1,
+ "neutralSpanishText":"RUROU NO KOHAKU HIME",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"RUROU NO KOHAKU HIME",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_tuku43",
+ "englishUsText":"TSUKUYOMI",
+ "englishUsFontType":1,
+ "frenchText":"TSUKUYOMI",
+ "frenchFontType":1,
+ "italianText":"TSUKUYOMI",
+ "italianFontType":1,
+ "germanText":"TSUKUYOMI",
+ "germanFontType":1,
+ "spanishText":"TSUKUYOMI",
+ "spanishFontType":1,
+ "neutralSpanishText":"TSUKUYOMI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"TSUKUYOMI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_7fuku",
+ "englishUsText":"GEKIUN!\nSHICHIFUKU Happy Crew",
+ "englishUsFontType":1,
+ "frenchText":"GEKIUN!\nSHICHIFUKU Happy Crew",
+ "frenchFontType":1,
+ "italianText":"GEKIUN!\nSHICHIFUKU Happy Crew",
+ "italianFontType":1,
+ "germanText":"GEKIUN!\nSHICHIFUKU Happy Crew",
+ "germanFontType":1,
+ "spanishText":"GEKIUN!\nSHICHIFUKU Happy Crew",
+ "spanishFontType":1,
+ "neutralSpanishText":"GEKIUN!\nSHICHIFUKU Happy Crew",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"GEKIUN!\nSHICHIFUKU Happy Crew",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_orochi",
+ "englishUsText":"8OROCHI",
+ "englishUsFontType":1,
+ "frenchText":"8OROCHI",
+ "frenchFontType":1,
+ "italianText":"8OROCHI",
+ "italianFontType":1,
+ "germanText":"8OROCHI",
+ "germanFontType":1,
+ "spanishText":"8OROCHI",
+ "spanishFontType":1,
+ "neutralSpanishText":"8OROCHI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"8OROCHI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_hkgmag",
+ "englishUsText":"HOUKAGO☆Magician",
+ "englishUsFontType":1,
+ "frenchText":"HOUKAGO☆Magician",
+ "frenchFontType":1,
+ "italianText":"HOUKAGO☆Magician",
+ "italianFontType":1,
+ "germanText":"HOUKAGO☆Magician",
+ "germanFontType":1,
+ "spanishText":"HOUKAGO☆Magician",
+ "spanishFontType":1,
+ "neutralSpanishText":"HOUKAGO☆Magician",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HOUKAGO☆Magician",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_tongat",
+ "englishUsText":"TONGACHIN",
+ "englishUsFontType":1,
+ "frenchText":"TONGACHIN",
+ "frenchFontType":1,
+ "italianText":"TONGACHIN",
+ "italianFontType":1,
+ "germanText":"TONGACHIN",
+ "germanFontType":1,
+ "spanishText":"TONGACHIN",
+ "spanishFontType":1,
+ "neutralSpanishText":"TONGACHIN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"TONGACHIN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_ta5ta5",
+ "englishUsText":"Turquoise Tachometer",
+ "englishUsFontType":1,
+ "frenchText":"Turquoise Tachometer",
+ "frenchFontType":1,
+ "italianText":"Turquoise Tachometer",
+ "italianFontType":1,
+ "germanText":"Turquoise Tachometer",
+ "germanFontType":1,
+ "spanishText":"Turquoise Tachometer",
+ "spanishFontType":1,
+ "neutralSpanishText":"Turquoise Tachometer",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Turquoise Tachometer",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_glokey",
+ "englishUsText":"Gloria",
+ "englishUsFontType":1,
+ "frenchText":"Gloria",
+ "frenchFontType":1,
+ "italianText":"Gloria",
+ "italianFontType":1,
+ "germanText":"Gloria",
+ "germanFontType":1,
+ "spanishText":"Gloria",
+ "spanishFontType":1,
+ "neutralSpanishText":"Gloria",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Gloria",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_allimh",
+ "englishUsText":"All In My Heart",
+ "englishUsFontType":1,
+ "frenchText":"All In My Heart",
+ "frenchFontType":1,
+ "italianText":"All In My Heart",
+ "italianFontType":1,
+ "germanText":"All In My Heart",
+ "germanFontType":1,
+ "spanishText":"All In My Heart",
+ "spanishFontType":1,
+ "neutralSpanishText":"All In My Heart",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"All In My Heart",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_goth",
+ "englishUsText":"DON'T CUT",
+ "englishUsFontType":1,
+ "frenchText":"DON'T CUT",
+ "frenchFontType":1,
+ "italianText":"DON'T CUT",
+ "italianFontType":1,
+ "germanText":"DON'T CUT",
+ "germanFontType":1,
+ "spanishText":"DON'T CUT",
+ "spanishFontType":1,
+ "neutralSpanishText":"DON'T CUT",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DON'T CUT",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_skrexh",
+ "englishUsText":"SAKURA EXHAUST",
+ "englishUsFontType":1,
+ "frenchText":"SAKURA EXHAUST",
+ "frenchFontType":1,
+ "italianText":"SAKURA EXHAUST",
+ "italianFontType":1,
+ "germanText":"SAKURA EXHAUST",
+ "germanFontType":1,
+ "spanishText":"SAKURA EXHAUST",
+ "spanishFontType":1,
+ "neutralSpanishText":"SAKURA EXHAUST",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SAKURA EXHAUST",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_blrose",
+ "englishUsText":"Blue Rose Ruin",
+ "englishUsFontType":1,
+ "frenchText":"Blue Rose Ruin",
+ "frenchFontType":1,
+ "italianText":"Blue Rose Ruin",
+ "italianFontType":1,
+ "germanText":"Blue Rose Ruin",
+ "germanFontType":1,
+ "spanishText":"Blue Rose Ruin",
+ "spanishFontType":1,
+ "neutralSpanishText":"Blue Rose Ruin",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Blue Rose Ruin",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_haryu",
+ "englishUsText":"Haryu",
+ "englishUsFontType":1,
+ "frenchText":"Haryu",
+ "frenchFontType":1,
+ "italianText":"Haryu",
+ "italianFontType":1,
+ "germanText":"Haryu",
+ "germanFontType":1,
+ "spanishText":"Haryu",
+ "spanishFontType":1,
+ "neutralSpanishText":"Haryu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Haryu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_clspvn",
+ "englishUsText":"Pavane For A Dead Princess",
+ "englishUsFontType":1,
+ "frenchText":"Pavane For A Dead Princess",
+ "frenchFontType":1,
+ "italianText":"Pavane For A Dead Princess",
+ "italianFontType":1,
+ "germanText":"Pavane For A Dead Princess",
+ "germanFontType":1,
+ "spanishText":"Pavane For A Dead Princess",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pavane For A Dead Princess",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pavane For A Dead Princess",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_tank",
+ "englishUsText":"Yawaraka Tank",
+ "englishUsFontType":1,
+ "frenchText":"Yawaraka Tank",
+ "frenchFontType":1,
+ "italianText":"Yawaraka Tank",
+ "italianFontType":1,
+ "germanText":"Yawaraka Tank",
+ "germanFontType":1,
+ "spanishText":"Yawaraka Tank",
+ "spanishFontType":1,
+ "neutralSpanishText":"Yawaraka Tank",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Yawaraka Tank",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_tdm",
+ "englishUsText":"Taiko Drum Monster",
+ "englishUsFontType":1,
+ "frenchText":"Taiko Drum Monster",
+ "frenchFontType":1,
+ "italianText":"Taiko Drum Monster",
+ "italianFontType":1,
+ "germanText":"Taiko Drum Monster",
+ "germanFontType":1,
+ "spanishText":"Taiko Drum Monster",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko Drum Monster",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Taiko Drum Monster",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_flksak",
+ "englishUsText":"SAKURA(HARU)",
+ "englishUsFontType":1,
+ "frenchText":"SAKURA(HARU)",
+ "frenchFontType":1,
+ "italianText":"SAKURA(HARU)",
+ "italianFontType":1,
+ "germanText":"SAKURA(HARU)",
+ "germanFontType":1,
+ "spanishText":"SAKURA(HARU)",
+ "spanishFontType":1,
+ "neutralSpanishText":"SAKURA(HARU)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SAKURA(HARU)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_gekikk",
+ "englishUsText":"HARDCORE NO KOKOROE",
+ "englishUsFontType":1,
+ "frenchText":"HARDCORE NO KOKOROE",
+ "frenchFontType":1,
+ "italianText":"HARDCORE NO KOKOROE",
+ "italianFontType":1,
+ "germanText":"HARDCORE NO KOKOROE",
+ "germanFontType":1,
+ "spanishText":"HARDCORE NO KOKOROE",
+ "spanishFontType":1,
+ "neutralSpanishText":"HARDCORE NO KOKOROE",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HARDCORE NO KOKOROE",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_oka47",
+ "englishUsText":"KURU KURU KUROKKURU",
+ "englishUsFontType":1,
+ "frenchText":"KURU KURU KUROKKURU",
+ "frenchFontType":1,
+ "italianText":"KURU KURU KUROKKURU",
+ "italianFontType":1,
+ "germanText":"KURU KURU KUROKKURU",
+ "germanFontType":1,
+ "spanishText":"KURU KURU KUROKKURU",
+ "spanishFontType":1,
+ "neutralSpanishText":"KURU KURU KUROKKURU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KURU KURU KUROKKURU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_castle",
+ "englishUsText":"Black Rose Apostle",
+ "englishUsFontType":1,
+ "frenchText":"Black Rose Apostle",
+ "frenchFontType":1,
+ "italianText":"Black Rose Apostle",
+ "italianFontType":1,
+ "germanText":"Black Rose Apostle",
+ "germanFontType":1,
+ "spanishText":"Black Rose Apostle",
+ "spanishFontType":1,
+ "neutralSpanishText":"Black Rose Apostle",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Black Rose Apostle",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_thncrd",
+ "englishUsText":"Necro Fantasia ~\nArr.Demetori",
+ "englishUsFontType":1,
+ "frenchText":"Necro Fantasia ~\nArr.Demetori",
+ "frenchFontType":1,
+ "italianText":"Necro Fantasia ~\nArr.Demetori",
+ "italianFontType":1,
+ "germanText":"Necro Fantasia ~\nArr.Demetori",
+ "germanFontType":1,
+ "spanishText":"Necro Fantasia ~\nArr.Demetori",
+ "spanishFontType":1,
+ "neutralSpanishText":"Necro Fantasia ~\nArr.Demetori",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Necro Fantasia ~\nArr.Demetori",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_syclsn",
+ "englishUsText":"New World",
+ "englishUsFontType":1,
+ "frenchText":"New World",
+ "frenchFontType":1,
+ "italianText":"New World",
+ "italianFontType":1,
+ "germanText":"New World",
+ "germanFontType":1,
+ "spanishText":"New World",
+ "spanishFontType":1,
+ "neutralSpanishText":"New World",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"New World",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_zense",
+ "englishUsText":"前前前世",
+ "englishUsFontType":0,
+ "frenchText":"前前前世",
+ "frenchFontType":0,
+ "italianText":"前前前世",
+ "italianFontType":0,
+ "germanText":"前前前世",
+ "germanFontType":0,
+ "spanishText":"前前前世",
+ "spanishFontType":0,
+ "neutralSpanishText":"前前前世",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"前前前世",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_roadmv",
+ "englishUsText":"ロードムービー",
+ "englishUsFontType":0,
+ "frenchText":"ロードムービー",
+ "frenchFontType":0,
+ "italianText":"ロードムービー",
+ "italianFontType":0,
+ "germanText":"ロードムービー",
+ "germanFontType":0,
+ "spanishText":"ロードムービー",
+ "spanishFontType":0,
+ "neutralSpanishText":"ロードムービー",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ロードムービー",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_4shaas",
+ "englishUsText":"明日も",
+ "englishUsFontType":0,
+ "frenchText":"明日も",
+ "frenchFontType":0,
+ "italianText":"明日も",
+ "italianFontType":0,
+ "germanText":"明日も",
+ "germanFontType":0,
+ "spanishText":"明日も",
+ "spanishFontType":0,
+ "neutralSpanishText":"明日も",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"明日も",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_ynlose",
+ "englishUsText":"LOSER",
+ "englishUsFontType":0,
+ "frenchText":"LOSER",
+ "frenchFontType":0,
+ "italianText":"LOSER",
+ "italianFontType":0,
+ "germanText":"LOSER",
+ "germanFontType":0,
+ "spanishText":"LOSER",
+ "spanishFontType":0,
+ "neutralSpanishText":"LOSER",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"LOSER",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_uminok",
+ "englishUsText":"海の声",
+ "englishUsFontType":0,
+ "frenchText":"海の声",
+ "frenchFontType":0,
+ "italianText":"海の声",
+ "italianFontType":0,
+ "germanText":"海の声",
+ "germanFontType":0,
+ "spanishText":"海の声",
+ "spanishFontType":0,
+ "neutralSpanishText":"海の声",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"海の声",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_kekka2",
+ "englishUsText":"シュガーソングとビターステップ",
+ "englishUsFontType":0,
+ "frenchText":"シュガーソングとビターステップ",
+ "frenchFontType":0,
+ "italianText":"シュガーソングとビターステップ",
+ "italianFontType":0,
+ "germanText":"シュガーソングとビターステップ",
+ "germanFontType":0,
+ "spanishText":"シュガーソングとビターステップ",
+ "spanishFontType":0,
+ "neutralSpanishText":"シュガーソングとビターステップ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"シュガーソングとビターステップ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_himyak",
+ "englishUsText":"ひまわりの約束",
+ "englishUsFontType":0,
+ "frenchText":"ひまわりの約束",
+ "frenchFontType":0,
+ "italianText":"ひまわりの約束",
+ "italianFontType":0,
+ "germanText":"ひまわりの約束",
+ "germanFontType":0,
+ "spanishText":"ひまわりの約束",
+ "spanishFontType":0,
+ "neutralSpanishText":"ひまわりの約束",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ひまわりの約束",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_gimcho",
+ "englishUsText":"ギミチョコ!!",
+ "englishUsFontType":0,
+ "frenchText":"ギミチョコ!!",
+ "frenchFontType":0,
+ "italianText":"ギミチョコ!!",
+ "italianFontType":0,
+ "germanText":"ギミチョコ!!",
+ "germanFontType":0,
+ "spanishText":"ギミチョコ!!",
+ "spanishFontType":0,
+ "neutralSpanishText":"ギミチョコ!!",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ギミチョコ!!",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_skorpg",
+ "englishUsText":"RPG",
+ "englishUsFontType":0,
+ "frenchText":"RPG",
+ "frenchFontType":0,
+ "italianText":"RPG",
+ "italianFontType":0,
+ "germanText":"RPG",
+ "germanFontType":0,
+ "spanishText":"RPG",
+ "spanishFontType":0,
+ "neutralSpanishText":"RPG",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"RPG",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_ninjbb",
+ "englishUsText":"にんじゃりばんばん",
+ "englishUsFontType":0,
+ "frenchText":"にんじゃりばんばん",
+ "frenchFontType":0,
+ "italianText":"にんじゃりばんばん",
+ "italianFontType":0,
+ "germanText":"にんじゃりばんばん",
+ "germanFontType":0,
+ "spanishText":"にんじゃりばんばん",
+ "spanishFontType":0,
+ "neutralSpanishText":"にんじゃりばんばん",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"にんじゃりばんばん",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_memesi",
+ "englishUsText":"女々しくて",
+ "englishUsFontType":0,
+ "frenchText":"女々しくて",
+ "frenchFontType":0,
+ "italianText":"女々しくて",
+ "italianFontType":0,
+ "germanText":"女々しくて",
+ "germanFontType":0,
+ "spanishText":"女々しくて",
+ "spanishFontType":0,
+ "neutralSpanishText":"女々しくて",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"女々しくて",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_koiama",
+ "englishUsText":"恋音と雨空",
+ "englishUsFontType":0,
+ "frenchText":"恋音と雨空",
+ "frenchFontType":0,
+ "italianText":"恋音と雨空",
+ "italianFontType":0,
+ "germanText":"恋音と雨空",
+ "germanFontType":0,
+ "spanishText":"恋音と雨空",
+ "spanishFontType":0,
+ "neutralSpanishText":"恋音と雨空",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"恋音と雨空",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_kiseki",
+ "englishUsText":"キセキ",
+ "englishUsFontType":0,
+ "frenchText":"キセキ",
+ "frenchFontType":0,
+ "italianText":"キセキ",
+ "italianFontType":0,
+ "germanText":"キセキ",
+ "germanFontType":0,
+ "spanishText":"キセキ",
+ "spanishFontType":0,
+ "neutralSpanishText":"キセキ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"キセキ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_ikenai",
+ "englishUsText":"イケナイ太陽",
+ "englishUsFontType":0,
+ "frenchText":"イケナイ太陽",
+ "frenchFontType":0,
+ "italianText":"イケナイ太陽",
+ "italianFontType":0,
+ "germanText":"イケナイ太陽",
+ "germanFontType":0,
+ "spanishText":"イケナイ太陽",
+ "spanishFontType":0,
+ "neutralSpanishText":"イケナイ太陽",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"イケナイ太陽",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_skrnb",
+ "englishUsText":"さくらんぼ",
+ "englishUsFontType":0,
+ "frenchText":"さくらんぼ",
+ "frenchFontType":0,
+ "italianText":"さくらんぼ",
+ "italianFontType":0,
+ "germanText":"さくらんぼ",
+ "germanFontType":0,
+ "spanishText":"さくらんぼ",
+ "spanishFontType":0,
+ "neutralSpanishText":"さくらんぼ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"さくらんぼ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_linda",
+ "englishUsText":"リンダリンダ",
+ "englishUsFontType":0,
+ "frenchText":"リンダリンダ",
+ "frenchFontType":0,
+ "italianText":"リンダリンダ",
+ "italianFontType":0,
+ "germanText":"リンダリンダ",
+ "germanFontType":0,
+ "spanishText":"リンダリンダ",
+ "spanishFontType":0,
+ "neutralSpanishText":"リンダリンダ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"リンダリンダ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_natsu",
+ "englishUsText":"夏祭り",
+ "englishUsFontType":0,
+ "frenchText":"夏祭り",
+ "frenchFontType":0,
+ "italianText":"夏祭り",
+ "italianFontType":0,
+ "germanText":"夏祭り",
+ "germanFontType":0,
+ "spanishText":"夏祭り",
+ "spanishFontType":0,
+ "neutralSpanishText":"夏祭り",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"夏祭り",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_10tai",
+ "englishUsText":"天体観測",
+ "englishUsFontType":0,
+ "frenchText":"天体観測",
+ "frenchFontType":0,
+ "italianText":"天体観測",
+ "italianFontType":0,
+ "germanText":"天体観測",
+ "germanFontType":0,
+ "spanishText":"天体観測",
+ "spanishFontType":0,
+ "neutralSpanishText":"天体観測",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"天体観測",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_xjapan",
+ "englishUsText":"紅",
+ "englishUsFontType":0,
+ "frenchText":"紅",
+ "frenchFontType":0,
+ "italianText":"紅",
+ "italianFontType":0,
+ "germanText":"紅",
+ "germanFontType":0,
+ "spanishText":"紅",
+ "spanishFontType":0,
+ "neutralSpanishText":"紅",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"紅",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_apollo",
+ "englishUsText":"アポロ",
+ "englishUsFontType":0,
+ "frenchText":"アポロ",
+ "frenchFontType":0,
+ "italianText":"アポロ",
+ "italianFontType":0,
+ "germanText":"アポロ",
+ "germanFontType":0,
+ "spanishText":"アポロ",
+ "spanishFontType":0,
+ "neutralSpanishText":"アポロ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"アポロ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_dora4",
+ "englishUsText":"夢をかなえてドラえもん",
+ "englishUsFontType":0,
+ "frenchText":"夢をかなえてドラえもん",
+ "frenchFontType":0,
+ "italianText":"夢をかなえてドラえもん",
+ "italianFontType":0,
+ "germanText":"夢をかなえてドラえもん",
+ "germanFontType":0,
+ "spanishText":"夢をかなえてドラえもん",
+ "spanishFontType":0,
+ "neutralSpanishText":"夢をかなえてドラえもん",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"夢をかなえてドラえもん",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_totoro",
+ "englishUsText":"となりのトトロ",
+ "englishUsFontType":0,
+ "frenchText":"となりのトトロ",
+ "frenchFontType":0,
+ "italianText":"となりのトトロ",
+ "italianFontType":0,
+ "germanText":"となりのトトロ",
+ "germanFontType":0,
+ "spanishText":"となりのトトロ",
+ "spanishFontType":0,
+ "neutralSpanishText":"となりのトトロ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"となりのトトロ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_anayuk",
+ "englishUsText":"Let It Go~ありのままで~",
+ "englishUsFontType":0,
+ "frenchText":"Let It Go~ありのままで~",
+ "frenchFontType":0,
+ "italianText":"Let It Go~ありのままで~",
+ "italianFontType":0,
+ "germanText":"Let It Go~ありのままで~",
+ "germanFontType":0,
+ "spanishText":"Let It Go~ありのままで~",
+ "spanishFontType":0,
+ "neutralSpanishText":"Let It Go~ありのままで~",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Let It Go~ありのままで~",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_zootop",
+ "englishUsText":"トライ・エヴリシング",
+ "englishUsFontType":0,
+ "frenchText":"トライ・エヴリシング",
+ "frenchFontType":0,
+ "italianText":"トライ・エヴリシング",
+ "italianFontType":0,
+ "germanText":"トライ・エヴリシング",
+ "germanFontType":0,
+ "spanishText":"トライ・エヴリシング",
+ "spanishFontType":0,
+ "neutralSpanishText":"トライ・エヴリシング",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"トライ・エヴリシング",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_dbcgen",
+ "englishUsText":"限界突破×サバイバー",
+ "englishUsFontType":0,
+ "frenchText":"限界突破×サバイバー",
+ "frenchFontType":0,
+ "italianText":"限界突破×サバイバー",
+ "italianFontType":0,
+ "germanText":"限界突破×サバイバー",
+ "germanFontType":0,
+ "spanishText":"限界突破×サバイバー",
+ "spanishFontType":0,
+ "neutralSpanishText":"限界突破×サバイバー",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"限界突破×サバイバー",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_batan9",
+ "englishUsText":"全力バタンキュー",
+ "englishUsFontType":0,
+ "frenchText":"全力バタンキュー",
+ "frenchFontType":0,
+ "italianText":"全力バタンキュー",
+ "italianFontType":0,
+ "germanText":"全力バタンキュー",
+ "germanFontType":0,
+ "spanishText":"全力バタンキュー",
+ "spanishFontType":0,
+ "neutralSpanishText":"全力バタンキュー",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"全力バタンキュー",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_shing2",
+ "englishUsText":"紅蓮の弓矢",
+ "englishUsFontType":0,
+ "frenchText":"紅蓮の弓矢",
+ "frenchFontType":0,
+ "italianText":"紅蓮の弓矢",
+ "italianFontType":0,
+ "germanText":"紅蓮の弓矢",
+ "germanFontType":0,
+ "spanishText":"紅蓮の弓矢",
+ "spanishFontType":0,
+ "neutralSpanishText":"紅蓮の弓矢",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"紅蓮の弓矢",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_weare0",
+ "englishUsText":"ウィーアー!",
+ "englishUsFontType":0,
+ "frenchText":"ウィーアー!",
+ "frenchFontType":0,
+ "italianText":"ウィーアー!",
+ "italianFontType":0,
+ "germanText":"ウィーアー!",
+ "germanFontType":0,
+ "spanishText":"ウィーアー!",
+ "spanishFontType":0,
+ "neutralSpanishText":"ウィーアー!",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ウィーアー!",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_eva",
+ "englishUsText":"残酷な天使のテーゼ",
+ "englishUsFontType":0,
+ "frenchText":"残酷な天使のテーゼ",
+ "frenchFontType":0,
+ "italianText":"残酷な天使のテーゼ",
+ "italianFontType":0,
+ "germanText":"残酷な天使のテーゼ",
+ "germanFontType":0,
+ "spanishText":"残酷な天使のテーゼ",
+ "spanishFontType":0,
+ "neutralSpanishText":"残酷な天使のテーゼ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"残酷な天使のテーゼ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_japari",
+ "englishUsText":"ようこそジャパリパークへ",
+ "englishUsFontType":0,
+ "frenchText":"ようこそジャパリパークへ",
+ "frenchFontType":0,
+ "italianText":"ようこそジャパリパークへ",
+ "italianFontType":0,
+ "germanText":"ようこそジャパリパークへ",
+ "germanFontType":0,
+ "spanishText":"ようこそジャパリパークへ",
+ "spanishFontType":0,
+ "neutralSpanishText":"ようこそジャパリパークへ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ようこそジャパリパークへ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_mikugr",
+ "englishUsText":"ゴーストルール",
+ "englishUsFontType":0,
+ "frenchText":"ゴーストルール",
+ "frenchFontType":0,
+ "italianText":"ゴーストルール",
+ "italianFontType":0,
+ "germanText":"ゴーストルール",
+ "germanFontType":0,
+ "spanishText":"ゴーストルール",
+ "spanishFontType":0,
+ "neutralSpanishText":"ゴーストルール",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ゴーストルール",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_mikuaa",
+ "englishUsText":"エイリアンエイリアン",
+ "englishUsFontType":0,
+ "frenchText":"エイリアンエイリアン",
+ "frenchFontType":0,
+ "italianText":"エイリアンエイリアン",
+ "italianFontType":0,
+ "germanText":"エイリアンエイリアン",
+ "germanFontType":0,
+ "spanishText":"エイリアンエイリアン",
+ "spanishFontType":0,
+ "neutralSpanishText":"エイリアンエイリアン",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"エイリアンエイリアン",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_lost1g",
+ "englishUsText":"ロストワンの号哭",
+ "englishUsFontType":0,
+ "frenchText":"ロストワンの号哭",
+ "frenchFontType":0,
+ "italianText":"ロストワンの号哭",
+ "italianFontType":0,
+ "germanText":"ロストワンの号哭",
+ "germanFontType":0,
+ "spanishText":"ロストワンの号哭",
+ "spanishFontType":0,
+ "neutralSpanishText":"ロストワンの号哭",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ロストワンの号哭",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_ia6cho",
+ "englishUsText":"六兆年と一夜物語",
+ "englishUsFontType":0,
+ "frenchText":"六兆年と一夜物語",
+ "frenchFontType":0,
+ "italianText":"六兆年と一夜物語",
+ "italianFontType":0,
+ "germanText":"六兆年と一夜物語",
+ "germanFontType":0,
+ "spanishText":"六兆年と一夜物語",
+ "spanishFontType":0,
+ "neutralSpanishText":"六兆年と一夜物語",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"六兆年と一夜物語",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_hkitty",
+ "englishUsText":"ハローキティ",
+ "englishUsFontType":0,
+ "frenchText":"ハローキティ",
+ "frenchFontType":0,
+ "italianText":"ハローキティ",
+ "italianFontType":0,
+ "germanText":"ハローキティ",
+ "germanFontType":0,
+ "spanishText":"ハローキティ",
+ "spanishFontType":0,
+ "neutralSpanishText":"ハローキティ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ハローキティ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_ppap",
+ "englishUsText":"ペンパイナッポーアッポーペン(PPAP)",
+ "englishUsFontType":0,
+ "frenchText":"ペンパイナッポーアッポーペン(PPAP)",
+ "frenchFontType":0,
+ "italianText":"ペンパイナッポーアッポーペン(PPAP)",
+ "italianFontType":0,
+ "germanText":"ペンパイナッポーアッポーペン(PPAP)",
+ "germanFontType":0,
+ "spanishText":"ペンパイナッポーアッポーペン(PPAP)",
+ "spanishFontType":0,
+ "neutralSpanishText":"ペンパイナッポーアッポーペン(PPAP)",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ペンパイナッポーアッポーペン(PPAP)",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_th7171",
+ "englishUsText":"ナイト・オブ・ナイツ",
+ "englishUsFontType":0,
+ "frenchText":"ナイト・オブ・ナイツ",
+ "frenchFontType":0,
+ "italianText":"ナイト・オブ・ナイツ",
+ "italianFontType":0,
+ "germanText":"ナイト・オブ・ナイツ",
+ "germanFontType":0,
+ "spanishText":"ナイト・オブ・ナイツ",
+ "spanishFontType":0,
+ "neutralSpanishText":"ナイト・オブ・ナイツ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ナイト・オブ・ナイツ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_thflnd",
+ "englishUsText":"最終鬼畜妹フランドール・S",
+ "englishUsFontType":0,
+ "frenchText":"最終鬼畜妹フランドール・S",
+ "frenchFontType":0,
+ "italianText":"最終鬼畜妹フランドール・S",
+ "italianFontType":0,
+ "germanText":"最終鬼畜妹フランドール・S",
+ "germanFontType":0,
+ "spanishText":"最終鬼畜妹フランドール・S",
+ "spanishFontType":0,
+ "neutralSpanishText":"最終鬼畜妹フランドール・S",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"最終鬼畜妹フランドール・S",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_thchil",
+ "englishUsText":"チルノのパーフェクトさんすう教室",
+ "englishUsFontType":0,
+ "frenchText":"チルノのパーフェクトさんすう教室",
+ "frenchFontType":0,
+ "italianText":"チルノのパーフェクトさんすう教室",
+ "italianFontType":0,
+ "germanText":"チルノのパーフェクトさんすう教室",
+ "germanFontType":0,
+ "spanishText":"チルノのパーフェクトさんすう教室",
+ "spanishFontType":0,
+ "neutralSpanishText":"チルノのパーフェクトさんすう教室",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"チルノのパーフェクトさんすう教室",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_clsh69",
+ "englishUsText":"ハンロック",
+ "englishUsFontType":0,
+ "frenchText":"ハンロック",
+ "frenchFontType":0,
+ "italianText":"ハンロック",
+ "italianFontType":0,
+ "germanText":"ハンロック",
+ "germanFontType":0,
+ "spanishText":"ハンロック",
+ "spanishFontType":0,
+ "neutralSpanishText":"ハンロック",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ハンロック",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_clsca",
+ "englishUsText":"カルメン 組曲一番終曲",
+ "englishUsFontType":0,
+ "frenchText":"カルメン 組曲一番終曲",
+ "frenchFontType":0,
+ "italianText":"カルメン 組曲一番終曲",
+ "italianFontType":0,
+ "germanText":"カルメン 組曲一番終曲",
+ "germanFontType":0,
+ "spanishText":"カルメン 組曲一番終曲",
+ "spanishFontType":0,
+ "neutralSpanishText":"カルメン 組曲一番終曲",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"カルメン 組曲一番終曲",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_clsw",
+ "englishUsText":"ウィリアム・テル序曲",
+ "englishUsFontType":0,
+ "frenchText":"ウィリアム・テル序曲",
+ "frenchFontType":0,
+ "italianText":"ウィリアム・テル序曲",
+ "italianFontType":0,
+ "germanText":"ウィリアム・テル序曲",
+ "germanFontType":0,
+ "spanishText":"ウィリアム・テル序曲",
+ "spanishFontType":0,
+ "neutralSpanishText":"ウィリアム・テル序曲",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ウィリアム・テル序曲",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_cls10",
+ "englishUsText":"天国と地獄 序曲",
+ "englishUsFontType":0,
+ "frenchText":"天国と地獄 序曲",
+ "frenchFontType":0,
+ "italianText":"天国と地獄 序曲",
+ "italianFontType":0,
+ "germanText":"天国と地獄 序曲",
+ "germanFontType":0,
+ "spanishText":"天国と地獄 序曲",
+ "spanishFontType":0,
+ "neutralSpanishText":"天国と地獄 序曲",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"天国と地獄 序曲",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_clsr",
+ "englishUsText":"クラシックメドレー(ロック編)",
+ "englishUsFontType":0,
+ "frenchText":"クラシックメドレー(ロック編)",
+ "frenchFontType":0,
+ "italianText":"クラシックメドレー(ロック編)",
+ "italianFontType":0,
+ "germanText":"クラシックメドレー(ロック編)",
+ "germanFontType":0,
+ "spanishText":"クラシックメドレー(ロック編)",
+ "spanishFontType":0,
+ "neutralSpanishText":"クラシックメドレー(ロック編)",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"クラシックメドレー(ロック編)",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_march",
+ "englishUsText":"太鼓のマーチ",
+ "englishUsFontType":0,
+ "frenchText":"太鼓のマーチ",
+ "frenchFontType":0,
+ "italianText":"太鼓のマーチ",
+ "italianFontType":0,
+ "germanText":"太鼓のマーチ",
+ "germanFontType":0,
+ "spanishText":"太鼓のマーチ",
+ "spanishFontType":0,
+ "neutralSpanishText":"太鼓のマーチ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"太鼓のマーチ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_drsp",
+ "englishUsText":"ドラゴンスピリットメドレー",
+ "englishUsFontType":0,
+ "frenchText":"ドラゴンスピリットメドレー",
+ "frenchFontType":0,
+ "italianText":"ドラゴンスピリットメドレー",
+ "italianFontType":0,
+ "germanText":"ドラゴンスピリットメドレー",
+ "germanFontType":0,
+ "spanishText":"ドラゴンスピリットメドレー",
+ "spanishFontType":0,
+ "neutralSpanishText":"ドラゴンスピリットメドレー",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ドラゴンスピリットメドレー",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_druaga",
+ "englishUsText":"ドルアーガの塔メドレー",
+ "englishUsFontType":0,
+ "frenchText":"ドルアーガの塔メドレー",
+ "frenchFontType":0,
+ "italianText":"ドルアーガの塔メドレー",
+ "italianFontType":0,
+ "germanText":"ドルアーガの塔メドレー",
+ "germanFontType":0,
+ "spanishText":"ドルアーガの塔メドレー",
+ "spanishFontType":0,
+ "neutralSpanishText":"ドルアーガの塔メドレー",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ドルアーガの塔メドレー",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_bforc",
+ "englishUsText":"バーニングフォースメドレー",
+ "englishUsFontType":0,
+ "frenchText":"バーニングフォースメドレー",
+ "frenchFontType":0,
+ "italianText":"バーニングフォースメドレー",
+ "italianFontType":0,
+ "germanText":"バーニングフォースメドレー",
+ "germanFontType":0,
+ "spanishText":"バーニングフォースメドレー",
+ "spanishFontType":0,
+ "neutralSpanishText":"バーニングフォースメドレー",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"バーニングフォースメドレー",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_babel",
+ "englishUsText":"バベルの塔",
+ "englishUsFontType":0,
+ "frenchText":"バベルの塔",
+ "frenchFontType":0,
+ "italianText":"バベルの塔",
+ "italianFontType":0,
+ "germanText":"バベルの塔",
+ "germanFontType":0,
+ "spanishText":"バベルの塔",
+ "spanishFontType":0,
+ "neutralSpanishText":"バベルの塔",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"バベルの塔",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_mappy2",
+ "englishUsText":"マッピーメドレー",
+ "englishUsFontType":0,
+ "frenchText":"マッピーメドレー",
+ "frenchFontType":0,
+ "italianText":"マッピーメドレー",
+ "italianFontType":0,
+ "germanText":"マッピーメドレー",
+ "germanFontType":0,
+ "spanishText":"マッピーメドレー",
+ "spanishFontType":0,
+ "neutralSpanishText":"マッピーメドレー",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"マッピーメドレー",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_moji",
+ "englishUsText":"もじぴったんメドレー",
+ "englishUsFontType":0,
+ "frenchText":"もじぴったんメドレー",
+ "frenchFontType":0,
+ "italianText":"もじぴったんメドレー",
+ "italianFontType":0,
+ "germanText":"もじぴったんメドレー",
+ "germanFontType":0,
+ "spanishText":"もじぴったんメドレー",
+ "spanishFontType":0,
+ "neutralSpanishText":"もじぴったんメドレー",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"もじぴったんメドレー",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_sf5ryu",
+ "englishUsText":"Theme of Ryu",
+ "englishUsFontType":0,
+ "frenchText":"Theme of Ryu",
+ "frenchFontType":0,
+ "italianText":"Theme of Ryu",
+ "italianFontType":0,
+ "germanText":"Theme of Ryu",
+ "germanFontType":0,
+ "spanishText":"Theme of Ryu",
+ "spanishFontType":0,
+ "neutralSpanishText":"Theme of Ryu",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Theme of Ryu",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_tek7he",
+ "englishUsText":"Heat Haze Shadow 2",
+ "englishUsFontType":0,
+ "frenchText":"Heat Haze Shadow 2",
+ "frenchFontType":0,
+ "italianText":"Heat Haze Shadow 2",
+ "italianFontType":0,
+ "germanText":"Heat Haze Shadow 2",
+ "germanFontType":0,
+ "spanishText":"Heat Haze Shadow 2",
+ "spanishFontType":0,
+ "neutralSpanishText":"Heat Haze Shadow 2",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Heat Haze Shadow 2",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_tobers",
+ "englishUsText":"テイルズ オブ ベルセリア メドレー",
+ "englishUsFontType":0,
+ "frenchText":"テイルズ オブ ベルセリア メドレー",
+ "frenchFontType":0,
+ "italianText":"テイルズ オブ ベルセリア メドレー",
+ "italianFontType":0,
+ "germanText":"テイルズ オブ ベルセリア メドレー",
+ "germanFontType":0,
+ "spanishText":"テイルズ オブ ベルセリア メドレー",
+ "spanishFontType":0,
+ "neutralSpanishText":"テイルズ オブ ベルセリア メドレー",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"テイルズ オブ ベルセリア メドレー",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_imconc",
+ "englishUsText":"お願い!シンデレラ",
+ "englishUsFontType":0,
+ "frenchText":"お願い!シンデレラ",
+ "frenchFontType":0,
+ "italianText":"お願い!シンデレラ",
+ "italianFontType":0,
+ "germanText":"お願い!シンデレラ",
+ "germanFontType":0,
+ "spanishText":"お願い!シンデレラ",
+ "spanishFontType":0,
+ "neutralSpanishText":"お願い!シンデレラ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"お願い!シンデレラ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_immbra",
+ "englishUsText":"Brand New Theater!",
+ "englishUsFontType":0,
+ "frenchText":"Brand New Theater!",
+ "frenchFontType":0,
+ "italianText":"Brand New Theater!",
+ "italianFontType":0,
+ "germanText":"Brand New Theater!",
+ "germanFontType":0,
+ "spanishText":"Brand New Theater!",
+ "spanishFontType":0,
+ "neutralSpanishText":"Brand New Theater!",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Brand New Theater!",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_crturb",
+ "englishUsText":"Urban Striker",
+ "englishUsFontType":0,
+ "frenchText":"Urban Striker",
+ "frenchFontType":0,
+ "italianText":"Urban Striker",
+ "italianFontType":0,
+ "germanText":"Urban Striker",
+ "germanFontType":0,
+ "spanishText":"Urban Striker",
+ "spanishFontType":0,
+ "neutralSpanishText":"Urban Striker",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Urban Striker",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_eatem",
+ "englishUsText":"EAT’EM UP!",
+ "englishUsFontType":0,
+ "frenchText":"EAT’EM UP!",
+ "frenchFontType":0,
+ "italianText":"EAT’EM UP!",
+ "italianFontType":0,
+ "germanText":"EAT’EM UP!",
+ "germanFontType":0,
+ "spanishText":"EAT’EM UP!",
+ "spanishFontType":0,
+ "neutralSpanishText":"EAT’EM UP!",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"EAT’EM UP!",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_genpe",
+ "englishUsText":"KAGEKIYO",
+ "englishUsFontType":0,
+ "frenchText":"KAGEKIYO",
+ "frenchFontType":0,
+ "italianText":"KAGEKIYO",
+ "italianFontType":0,
+ "germanText":"KAGEKIYO",
+ "germanFontType":0,
+ "spanishText":"KAGEKIYO",
+ "spanishFontType":0,
+ "neutralSpanishText":"KAGEKIYO",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"KAGEKIYO",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_ryuhim",
+ "englishUsText":"竜と黒炎の姫君",
+ "englishUsFontType":0,
+ "frenchText":"竜と黒炎の姫君",
+ "frenchFontType":0,
+ "italianText":"竜と黒炎の姫君",
+ "italianFontType":0,
+ "germanText":"竜と黒炎の姫君",
+ "germanFontType":0,
+ "spanishText":"竜と黒炎の姫君",
+ "spanishFontType":0,
+ "neutralSpanishText":"竜と黒炎の姫君",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"竜と黒炎の姫君",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_psf1op",
+ "englishUsText":"つながれ!ひろがれ!打ち上がれ!",
+ "englishUsFontType":0,
+ "frenchText":"つながれ!ひろがれ!打ち上がれ!",
+ "frenchFontType":0,
+ "italianText":"つながれ!ひろがれ!打ち上がれ!",
+ "italianFontType":0,
+ "germanText":"つながれ!ひろがれ!打ち上がれ!",
+ "germanFontType":0,
+ "spanishText":"つながれ!ひろがれ!打ち上がれ!",
+ "spanishFontType":0,
+ "neutralSpanishText":"つながれ!ひろがれ!打ち上がれ!",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"つながれ!ひろがれ!打ち上がれ!",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_trustg",
+ "englishUsText":"トラストゲーム",
+ "englishUsFontType":0,
+ "frenchText":"トラストゲーム",
+ "frenchFontType":0,
+ "italianText":"トラストゲーム",
+ "italianFontType":0,
+ "germanText":"トラストゲーム",
+ "germanFontType":0,
+ "spanishText":"トラストゲーム",
+ "spanishFontType":0,
+ "neutralSpanishText":"トラストゲーム",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"トラストゲーム",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_mgpafe",
+ "englishUsText":"マジカル・パフェ",
+ "englishUsFontType":0,
+ "frenchText":"マジカル・パフェ",
+ "frenchFontType":0,
+ "italianText":"マジカル・パフェ",
+ "italianFontType":0,
+ "germanText":"マジカル・パフェ",
+ "germanFontType":0,
+ "spanishText":"マジカル・パフェ",
+ "spanishFontType":0,
+ "neutralSpanishText":"マジカル・パフェ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"マジカル・パフェ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_32segw",
+ "englishUsText":"三瀬川乱舞",
+ "englishUsFontType":0,
+ "frenchText":"三瀬川乱舞",
+ "frenchFontType":0,
+ "italianText":"三瀬川乱舞",
+ "italianFontType":0,
+ "germanText":"三瀬川乱舞",
+ "germanFontType":0,
+ "spanishText":"三瀬川乱舞",
+ "spanishFontType":0,
+ "neutralSpanishText":"三瀬川乱舞",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"三瀬川乱舞",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_so2omf",
+ "englishUsText":"そつおめしき・ふる",
+ "englishUsFontType":0,
+ "frenchText":"そつおめしき・ふる",
+ "frenchFontType":0,
+ "italianText":"そつおめしき・ふる",
+ "italianFontType":0,
+ "germanText":"そつおめしき・ふる",
+ "germanFontType":0,
+ "spanishText":"そつおめしき・ふる",
+ "spanishFontType":0,
+ "neutralSpanishText":"そつおめしき・ふる",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"そつおめしき・ふる",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_nograv",
+ "englishUsText":"No Gravity",
+ "englishUsFontType":0,
+ "frenchText":"No Gravity",
+ "frenchFontType":0,
+ "italianText":"No Gravity",
+ "italianFontType":0,
+ "germanText":"No Gravity",
+ "germanFontType":0,
+ "spanishText":"No Gravity",
+ "spanishFontType":0,
+ "neutralSpanishText":"No Gravity",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"No Gravity",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_crkvic",
+ "englishUsText":"VICTORIA",
+ "englishUsFontType":0,
+ "frenchText":"VICTORIA",
+ "frenchFontType":0,
+ "italianText":"VICTORIA",
+ "italianFontType":0,
+ "germanText":"VICTORIA",
+ "germanFontType":0,
+ "spanishText":"VICTORIA",
+ "spanishFontType":0,
+ "neutralSpanishText":"VICTORIA",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"VICTORIA",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_tengu",
+ "englishUsText":"天狗囃子",
+ "englishUsFontType":0,
+ "frenchText":"天狗囃子",
+ "frenchFontType":0,
+ "italianText":"天狗囃子",
+ "italianFontType":0,
+ "germanText":"天狗囃子",
+ "germanFontType":0,
+ "spanishText":"天狗囃子",
+ "spanishFontType":0,
+ "neutralSpanishText":"天狗囃子",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"天狗囃子",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_timtrv",
+ "englishUsText":"タイムトラベラー",
+ "englishUsFontType":0,
+ "frenchText":"タイムトラベラー",
+ "frenchFontType":0,
+ "italianText":"タイムトラベラー",
+ "italianFontType":0,
+ "germanText":"タイムトラベラー",
+ "germanFontType":0,
+ "spanishText":"タイムトラベラー",
+ "spanishFontType":0,
+ "neutralSpanishText":"タイムトラベラー",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"タイムトラベラー",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_izanam",
+ "englishUsText":"黄泉のイザナミ",
+ "englishUsFontType":0,
+ "frenchText":"黄泉のイザナミ",
+ "frenchFontType":0,
+ "italianText":"黄泉のイザナミ",
+ "italianFontType":0,
+ "germanText":"黄泉のイザナミ",
+ "germanFontType":0,
+ "spanishText":"黄泉のイザナミ",
+ "spanishFontType":0,
+ "neutralSpanishText":"黄泉のイザナミ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"黄泉のイザナミ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_tksoda",
+ "englishUsText":"東京ソーダ 8Bit Edit",
+ "englishUsFontType":0,
+ "frenchText":"東京ソーダ 8Bit Edit",
+ "frenchFontType":0,
+ "italianText":"東京ソーダ 8Bit Edit",
+ "italianFontType":0,
+ "germanText":"東京ソーダ 8Bit Edit",
+ "germanFontType":0,
+ "spanishText":"東京ソーダ 8Bit Edit",
+ "spanishFontType":0,
+ "neutralSpanishText":"東京ソーダ 8Bit Edit",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"東京ソーダ 8Bit Edit",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_mugens",
+ "englishUsText":"夢幻の蒼空",
+ "englishUsFontType":0,
+ "frenchText":"夢幻の蒼空",
+ "frenchFontType":0,
+ "italianText":"夢幻の蒼空",
+ "italianFontType":0,
+ "germanText":"夢幻の蒼空",
+ "germanFontType":0,
+ "spanishText":"夢幻の蒼空",
+ "spanishFontType":0,
+ "neutralSpanishText":"夢幻の蒼空",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"夢幻の蒼空",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_stabof",
+ "englishUsText":"合唱スタボーフェ!",
+ "englishUsFontType":0,
+ "frenchText":"合唱スタボーフェ!",
+ "frenchFontType":0,
+ "italianText":"合唱スタボーフェ!",
+ "italianFontType":0,
+ "germanText":"合唱スタボーフェ!",
+ "germanFontType":0,
+ "spanishText":"合唱スタボーフェ!",
+ "spanishFontType":0,
+ "neutralSpanishText":"合唱スタボーフェ!",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"合唱スタボーフェ!",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_flyawy",
+ "englishUsText":"Fly away",
+ "englishUsFontType":0,
+ "frenchText":"Fly away",
+ "frenchFontType":0,
+ "italianText":"Fly away",
+ "italianFontType":0,
+ "germanText":"Fly away",
+ "germanFontType":0,
+ "spanishText":"Fly away",
+ "spanishFontType":0,
+ "neutralSpanishText":"Fly away",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Fly away",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_yayoi",
+ "englishUsText":"豊穣弥生",
+ "englishUsFontType":0,
+ "frenchText":"豊穣弥生",
+ "frenchFontType":0,
+ "italianText":"豊穣弥生",
+ "italianFontType":0,
+ "germanText":"豊穣弥生",
+ "germanFontType":0,
+ "spanishText":"豊穣弥生",
+ "spanishFontType":0,
+ "neutralSpanishText":"豊穣弥生",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"豊穣弥生",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_trance",
+ "englishUsText":"エンジェル ドリーム",
+ "englishUsFontType":0,
+ "frenchText":"エンジェル ドリーム",
+ "frenchFontType":0,
+ "italianText":"エンジェル ドリーム",
+ "italianFontType":0,
+ "germanText":"エンジェル ドリーム",
+ "germanFontType":0,
+ "spanishText":"エンジェル ドリーム",
+ "spanishFontType":0,
+ "neutralSpanishText":"エンジェル ドリーム",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"エンジェル ドリーム",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_vrock",
+ "englishUsText":"ユウガオノキミ",
+ "englishUsFontType":0,
+ "frenchText":"ユウガオノキミ",
+ "frenchFontType":0,
+ "italianText":"ユウガオノキミ",
+ "italianFontType":0,
+ "germanText":"ユウガオノキミ",
+ "germanFontType":0,
+ "spanishText":"ユウガオノキミ",
+ "spanishFontType":0,
+ "neutralSpanishText":"ユウガオノキミ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ユウガオノキミ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_butou9",
+ "englishUsText":"桜花爛漫",
+ "englishUsFontType":0,
+ "frenchText":"桜花爛漫",
+ "frenchFontType":0,
+ "italianText":"桜花爛漫",
+ "italianFontType":0,
+ "germanText":"桜花爛漫",
+ "germanFontType":0,
+ "spanishText":"桜花爛漫",
+ "spanishFontType":0,
+ "neutralSpanishText":"桜花爛漫",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"桜花爛漫",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_rdrose",
+ "englishUsText":"Red Rose Evangel",
+ "englishUsFontType":0,
+ "frenchText":"Red Rose Evangel",
+ "frenchFontType":0,
+ "italianText":"Red Rose Evangel",
+ "italianFontType":0,
+ "germanText":"Red Rose Evangel",
+ "germanFontType":0,
+ "spanishText":"Red Rose Evangel",
+ "spanishFontType":0,
+ "neutralSpanishText":"Red Rose Evangel",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Red Rose Evangel",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_d96can",
+ "englishUsText":"毒LOCANdy♡",
+ "englishUsFontType":0,
+ "frenchText":"毒LOCANdy♡",
+ "frenchFontType":0,
+ "italianText":"毒LOCANdy♡",
+ "italianFontType":0,
+ "germanText":"毒LOCANdy♡",
+ "germanFontType":0,
+ "spanishText":"毒LOCANdy♡",
+ "spanishFontType":0,
+ "neutralSpanishText":"毒LOCANdy♡",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"毒LOCANdy♡",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_rot",
+ "englishUsText":"さいたま2000",
+ "englishUsFontType":0,
+ "frenchText":"さいたま2000",
+ "frenchFontType":0,
+ "italianText":"さいたま2000",
+ "italianFontType":0,
+ "germanText":"さいたま2000",
+ "germanFontType":0,
+ "spanishText":"さいたま2000",
+ "spanishFontType":0,
+ "neutralSpanishText":"さいたま2000",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"さいたま2000",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_rot4",
+ "englishUsText":"まださいたま2000",
+ "englishUsFontType":0,
+ "frenchText":"まださいたま2000",
+ "frenchFontType":0,
+ "italianText":"まださいたま2000",
+ "italianFontType":0,
+ "germanText":"まださいたま2000",
+ "germanFontType":0,
+ "spanishText":"まださいたま2000",
+ "spanishFontType":0,
+ "neutralSpanishText":"まださいたま2000",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"まださいたま2000",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_dem31k",
+ "englishUsText":"Saika",
+ "englishUsFontType":0,
+ "frenchText":"Saika",
+ "frenchFontType":0,
+ "italianText":"Saika",
+ "italianFontType":0,
+ "germanText":"Saika",
+ "germanFontType":0,
+ "spanishText":"Saika",
+ "spanishFontType":0,
+ "neutralSpanishText":"Saika",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Saika",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_kteien",
+ "englishUsText":"懐中庭園を持つ少女",
+ "englishUsFontType":0,
+ "frenchText":"懐中庭園を持つ少女",
+ "frenchFontType":0,
+ "italianText":"懐中庭園を持つ少女",
+ "italianFontType":0,
+ "germanText":"懐中庭園を持つ少女",
+ "germanFontType":0,
+ "spanishText":"懐中庭園を持つ少女",
+ "spanishFontType":0,
+ "neutralSpanishText":"懐中庭園を持つ少女",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"懐中庭園を持つ少女",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_gunsln",
+ "englishUsText":"ガンスリンガーシンデレラ",
+ "englishUsFontType":0,
+ "frenchText":"ガンスリンガーシンデレラ",
+ "frenchFontType":0,
+ "italianText":"ガンスリンガーシンデレラ",
+ "italianFontType":0,
+ "germanText":"ガンスリンガーシンデレラ",
+ "germanFontType":0,
+ "spanishText":"ガンスリンガーシンデレラ",
+ "spanishFontType":0,
+ "neutralSpanishText":"ガンスリンガーシンデレラ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ガンスリンガーシンデレラ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_6ne9om",
+ "englishUsText":"ドキドキ胸きゅん おまつりタイム",
+ "englishUsFontType":0,
+ "frenchText":"ドキドキ胸きゅん おまつりタイム",
+ "frenchFontType":0,
+ "italianText":"ドキドキ胸きゅん おまつりタイム",
+ "italianFontType":0,
+ "germanText":"ドキドキ胸きゅん おまつりタイム",
+ "germanFontType":0,
+ "spanishText":"ドキドキ胸きゅん おまつりタイム",
+ "spanishFontType":0,
+ "neutralSpanishText":"ドキドキ胸きゅん おまつりタイム",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ドキドキ胸きゅん おまつりタイム",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_angel3",
+ "englishUsText":"パステル ドリーム",
+ "englishUsFontType":0,
+ "frenchText":"パステル ドリーム",
+ "frenchFontType":0,
+ "italianText":"パステル ドリーム",
+ "italianFontType":0,
+ "germanText":"パステル ドリーム",
+ "germanFontType":0,
+ "spanishText":"パステル ドリーム",
+ "spanishFontType":0,
+ "neutralSpanishText":"パステル ドリーム",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"パステル ドリーム",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_yugen",
+ "englishUsText":"幽玄ノ乱",
+ "englishUsFontType":0,
+ "frenchText":"幽玄ノ乱",
+ "frenchFontType":0,
+ "italianText":"幽玄ノ乱",
+ "italianFontType":0,
+ "germanText":"幽玄ノ乱",
+ "germanFontType":0,
+ "spanishText":"幽玄ノ乱",
+ "spanishFontType":0,
+ "neutralSpanishText":"幽玄ノ乱",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"幽玄ノ乱",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_ygnarr",
+ "englishUsText":"Infinite Rebellion",
+ "englishUsFontType":0,
+ "frenchText":"Infinite Rebellion",
+ "frenchFontType":0,
+ "italianText":"Infinite Rebellion",
+ "italianFontType":0,
+ "germanText":"Infinite Rebellion",
+ "germanFontType":0,
+ "spanishText":"Infinite Rebellion",
+ "spanishFontType":0,
+ "neutralSpanishText":"Infinite Rebellion",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Infinite Rebellion",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_57mono",
+ "englishUsText":"コナモノ☆",
+ "englishUsFontType":0,
+ "frenchText":"コナモノ☆",
+ "frenchFontType":0,
+ "italianText":"コナモノ☆",
+ "italianFontType":0,
+ "germanText":"コナモノ☆",
+ "germanFontType":0,
+ "spanishText":"コナモノ☆",
+ "spanishFontType":0,
+ "neutralSpanishText":"コナモノ☆",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"コナモノ☆",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_kaidan",
+ "englishUsText":"χ談",
+ "englishUsFontType":0,
+ "frenchText":"χ談",
+ "frenchFontType":0,
+ "italianText":"χ談",
+ "italianFontType":0,
+ "germanText":"χ談",
+ "germanFontType":0,
+ "spanishText":"χ談",
+ "spanishFontType":0,
+ "neutralSpanishText":"χ談",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"χ談",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_uheart",
+ "englishUsText":"UNDEAD HEART(怒りのWarriors)",
+ "englishUsFontType":0,
+ "frenchText":"UNDEAD HEART(怒りのWarriors)",
+ "frenchFontType":0,
+ "italianText":"UNDEAD HEART(怒りのWarriors)",
+ "italianFontType":0,
+ "germanText":"UNDEAD HEART(怒りのWarriors)",
+ "germanFontType":0,
+ "spanishText":"UNDEAD HEART(怒りのWarriors)",
+ "spanishFontType":0,
+ "neutralSpanishText":"UNDEAD HEART(怒りのWarriors)",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"UNDEAD HEART(怒りのWarriors)",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_takamg",
+ "englishUsText":"私立高天原学園高校・校歌",
+ "englishUsFontType":0,
+ "frenchText":"私立高天原学園高校・校歌",
+ "frenchFontType":0,
+ "italianText":"私立高天原学園高校・校歌",
+ "italianFontType":0,
+ "germanText":"私立高天原学園高校・校歌",
+ "germanFontType":0,
+ "spanishText":"私立高天原学園高校・校歌",
+ "spanishFontType":0,
+ "neutralSpanishText":"私立高天原学園高校・校歌",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"私立高天原学園高校・校歌",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_83noma",
+ "englishUsText":"闇の魔法少女",
+ "englishUsFontType":0,
+ "frenchText":"闇の魔法少女",
+ "frenchFontType":0,
+ "italianText":"闇の魔法少女",
+ "italianFontType":0,
+ "germanText":"闇の魔法少女",
+ "germanFontType":0,
+ "spanishText":"闇の魔法少女",
+ "spanishFontType":0,
+ "neutralSpanishText":"闇の魔法少女",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"闇の魔法少女",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_omirai",
+ "englishUsText":"オリジナルミライ",
+ "englishUsFontType":0,
+ "frenchText":"オリジナルミライ",
+ "frenchFontType":0,
+ "italianText":"オリジナルミライ",
+ "italianFontType":0,
+ "germanText":"オリジナルミライ",
+ "germanFontType":0,
+ "spanishText":"オリジナルミライ",
+ "spanishFontType":0,
+ "neutralSpanishText":"オリジナルミライ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"オリジナルミライ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_ymtgen",
+ "englishUsText":"夢と現実の境界線",
+ "englishUsFontType":0,
+ "frenchText":"夢と現実の境界線",
+ "frenchFontType":0,
+ "italianText":"夢と現実の境界線",
+ "italianFontType":0,
+ "germanText":"夢と現実の境界線",
+ "germanFontType":0,
+ "spanishText":"夢と現実の境界線",
+ "spanishFontType":0,
+ "neutralSpanishText":"夢と現実の境界線",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"夢と現実の境界線",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_msclht",
+ "englishUsText":"My Muscle Heart",
+ "englishUsFontType":0,
+ "frenchText":"My Muscle Heart",
+ "frenchFontType":0,
+ "italianText":"My Muscle Heart",
+ "italianFontType":0,
+ "germanText":"My Muscle Heart",
+ "germanFontType":0,
+ "spanishText":"My Muscle Heart",
+ "spanishFontType":0,
+ "neutralSpanishText":"My Muscle Heart",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"My Muscle Heart",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_chaost",
+ "englishUsText":"!!!カオスタイム!!!",
+ "englishUsFontType":0,
+ "frenchText":"!!!カオスタイム!!!",
+ "frenchFontType":0,
+ "italianText":"!!!カオスタイム!!!",
+ "italianFontType":0,
+ "germanText":"!!!カオスタイム!!!",
+ "germanFontType":0,
+ "spanishText":"!!!カオスタイム!!!",
+ "spanishFontType":0,
+ "neutralSpanishText":"!!!カオスタイム!!!",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"!!!カオスタイム!!!",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_souryu",
+ "englishUsText":"双竜ノ乱",
+ "englishUsFontType":0,
+ "frenchText":"双竜ノ乱",
+ "frenchFontType":0,
+ "italianText":"双竜ノ乱",
+ "italianFontType":0,
+ "germanText":"双竜ノ乱",
+ "germanFontType":0,
+ "spanishText":"双竜ノ乱",
+ "spanishFontType":0,
+ "neutralSpanishText":"双竜ノ乱",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"双竜ノ乱",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_2ge8ji",
+ "englishUsText":"恋",
+ "englishUsFontType":0,
+ "frenchText":"恋",
+ "frenchFontType":0,
+ "italianText":"恋",
+ "italianFontType":0,
+ "germanText":"恋",
+ "germanFontType":0,
+ "spanishText":"恋",
+ "spanishFontType":0,
+ "neutralSpanishText":"恋",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"恋",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_kyksmj",
+ "englishUsText":"サイレントマジョリティー",
+ "englishUsFontType":0,
+ "frenchText":"サイレントマジョリティー",
+ "frenchFontType":0,
+ "italianText":"サイレントマジョリティー",
+ "italianFontType":0,
+ "germanText":"サイレントマジョリティー",
+ "germanFontType":0,
+ "spanishText":"サイレントマジョリティー",
+ "spanishFontType":0,
+ "neutralSpanishText":"サイレントマジョリティー",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"サイレントマジョリティー",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_krbld",
+ "englishUsText":"Be The One",
+ "englishUsFontType":0,
+ "frenchText":"Be The One",
+ "frenchFontType":0,
+ "italianText":"Be The One",
+ "italianFontType":0,
+ "germanText":"Be The One",
+ "germanFontType":0,
+ "spanishText":"Be The One",
+ "spanishFontType":0,
+ "neutralSpanishText":"Be The One",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Be The One",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_mikuse",
+ "englishUsText":"千本桜",
+ "englishUsFontType":0,
+ "frenchText":"千本桜",
+ "frenchFontType":0,
+ "italianText":"千本桜",
+ "italianFontType":0,
+ "germanText":"千本桜",
+ "germanFontType":0,
+ "spanishText":"千本桜",
+ "spanishFontType":0,
+ "neutralSpanishText":"千本桜",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"千本桜",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_miku39",
+ "englishUsText":"みくみくにしてあげる♪【してやんよ】",
+ "englishUsFontType":0,
+ "frenchText":"みくみくにしてあげる♪【してやんよ】",
+ "frenchFontType":0,
+ "italianText":"みくみくにしてあげる♪【してやんよ】",
+ "italianFontType":0,
+ "germanText":"みくみくにしてあげる♪【してやんよ】",
+ "germanFontType":0,
+ "spanishText":"みくみくにしてあげる♪【してやんよ】",
+ "spanishFontType":0,
+ "neutralSpanishText":"みくみくにしてあげる♪【してやんよ】",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"みくみくにしてあげる♪【してやんよ】",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_mikuer",
+ "englishUsText":"初音ミクの消失‐劇場版‐",
+ "englishUsFontType":0,
+ "frenchText":"初音ミクの消失‐劇場版‐",
+ "frenchFontType":0,
+ "italianText":"初音ミクの消失‐劇場版‐",
+ "italianFontType":0,
+ "germanText":"初音ミクの消失‐劇場版‐",
+ "germanFontType":0,
+ "spanishText":"初音ミクの消失‐劇場版‐",
+ "spanishFontType":0,
+ "neutralSpanishText":"初音ミクの消失‐劇場版‐",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"初音ミクの消失‐劇場版‐",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_otomus",
+ "englishUsText":"音虫をつかまえろ!",
+ "englishUsFontType":0,
+ "frenchText":"音虫をつかまえろ!",
+ "frenchFontType":0,
+ "italianText":"音虫をつかまえろ!",
+ "italianFontType":0,
+ "germanText":"音虫をつかまえろ!",
+ "germanFontType":0,
+ "spanishText":"音虫をつかまえろ!",
+ "spanishFontType":0,
+ "neutralSpanishText":"音虫をつかまえろ!",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"音虫をつかまえろ!",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_ymyrp4",
+ "englishUsText":"忘却のティルナノグ",
+ "englishUsFontType":0,
+ "frenchText":"忘却のティルナノグ",
+ "frenchFontType":0,
+ "italianText":"忘却のティルナノグ",
+ "italianFontType":0,
+ "germanText":"忘却のティルナノグ",
+ "germanFontType":0,
+ "spanishText":"忘却のティルナノグ",
+ "spanishFontType":0,
+ "neutralSpanishText":"忘却のティルナノグ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"忘却のティルナノグ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_warya",
+ "englishUsText":"さよならワーリャ",
+ "englishUsFontType":0,
+ "frenchText":"さよならワーリャ",
+ "frenchFontType":0,
+ "italianText":"さよならワーリャ",
+ "italianFontType":0,
+ "germanText":"さよならワーリャ",
+ "germanFontType":0,
+ "spanishText":"さよならワーリャ",
+ "spanishFontType":0,
+ "neutralSpanishText":"さよならワーリャ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"さよならワーリャ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_snyq",
+ "englishUsText":"承認欲Q",
+ "englishUsFontType":0,
+ "frenchText":"承認欲Q",
+ "frenchFontType":0,
+ "italianText":"承認欲Q",
+ "italianFontType":0,
+ "germanText":"承認欲Q",
+ "germanFontType":0,
+ "spanishText":"承認欲Q",
+ "spanishFontType":0,
+ "neutralSpanishText":"承認欲Q",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"承認欲Q",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_dsadvn",
+ "englishUsText":"D′s Adventure Note",
+ "englishUsFontType":0,
+ "frenchText":"D′s Adventure Note",
+ "frenchFontType":0,
+ "italianText":"D′s Adventure Note",
+ "italianFontType":0,
+ "germanText":"D′s Adventure Note",
+ "germanFontType":0,
+ "spanishText":"D′s Adventure Note",
+ "spanishFontType":0,
+ "neutralSpanishText":"D′s Adventure Note",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"D′s Adventure Note",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_coro4",
+ "englishUsText":"コロコロコミック40周年のうた",
+ "englishUsFontType":0,
+ "frenchText":"コロコロコミック40周年のうた",
+ "frenchFontType":0,
+ "italianText":"コロコロコミック40周年のうた",
+ "italianFontType":0,
+ "germanText":"コロコロコミック40周年のうた",
+ "germanFontType":0,
+ "spanishText":"コロコロコミック40周年のうた",
+ "spanishFontType":0,
+ "neutralSpanishText":"コロコロコミック40周年のうた",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"コロコロコミック40周年のうた",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_589him",
+ "englishUsText":"流浪の琥珀姫",
+ "englishUsFontType":0,
+ "frenchText":"流浪の琥珀姫",
+ "frenchFontType":0,
+ "italianText":"流浪の琥珀姫",
+ "italianFontType":0,
+ "germanText":"流浪の琥珀姫",
+ "germanFontType":0,
+ "spanishText":"流浪の琥珀姫",
+ "spanishFontType":0,
+ "neutralSpanishText":"流浪の琥珀姫",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"流浪の琥珀姫",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_tuku43",
+ "englishUsText":"月読命",
+ "englishUsFontType":0,
+ "frenchText":"月読命",
+ "frenchFontType":0,
+ "italianText":"月読命",
+ "italianFontType":0,
+ "germanText":"月読命",
+ "germanFontType":0,
+ "spanishText":"月読命",
+ "spanishFontType":0,
+ "neutralSpanishText":"月読命",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"月読命",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_7fuku",
+ "englishUsText":"激運!七福ハッピークルー",
+ "englishUsFontType":0,
+ "frenchText":"激運!七福ハッピークルー",
+ "frenchFontType":0,
+ "italianText":"激運!七福ハッピークルー",
+ "italianFontType":0,
+ "germanText":"激運!七福ハッピークルー",
+ "germanFontType":0,
+ "spanishText":"激運!七福ハッピークルー",
+ "spanishFontType":0,
+ "neutralSpanishText":"激運!七福ハッピークルー",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"激運!七福ハッピークルー",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_orochi",
+ "englishUsText":"8OROCHI",
+ "englishUsFontType":0,
+ "frenchText":"8OROCHI",
+ "frenchFontType":0,
+ "italianText":"8OROCHI",
+ "italianFontType":0,
+ "germanText":"8OROCHI",
+ "germanFontType":0,
+ "spanishText":"8OROCHI",
+ "spanishFontType":0,
+ "neutralSpanishText":"8OROCHI",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"8OROCHI",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_hkgmag",
+ "englishUsText":"ほうかご☆マジシャン",
+ "englishUsFontType":0,
+ "frenchText":"ほうかご☆マジシャン",
+ "frenchFontType":0,
+ "italianText":"ほうかご☆マジシャン",
+ "italianFontType":0,
+ "germanText":"ほうかご☆マジシャン",
+ "germanFontType":0,
+ "spanishText":"ほうかご☆マジシャン",
+ "spanishFontType":0,
+ "neutralSpanishText":"ほうかご☆マジシャン",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ほうかご☆マジシャン",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_tongat",
+ "englishUsText":"トンガチン",
+ "englishUsFontType":0,
+ "frenchText":"トンガチン",
+ "frenchFontType":0,
+ "italianText":"トンガチン",
+ "italianFontType":0,
+ "germanText":"トンガチン",
+ "germanFontType":0,
+ "spanishText":"トンガチン",
+ "spanishFontType":0,
+ "neutralSpanishText":"トンガチン",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"トンガチン",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_ta5ta5",
+ "englishUsText":"Turquoise Tachometer",
+ "englishUsFontType":0,
+ "frenchText":"Turquoise Tachometer",
+ "frenchFontType":0,
+ "italianText":"Turquoise Tachometer",
+ "italianFontType":0,
+ "germanText":"Turquoise Tachometer",
+ "germanFontType":0,
+ "spanishText":"Turquoise Tachometer",
+ "spanishFontType":0,
+ "neutralSpanishText":"Turquoise Tachometer",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Turquoise Tachometer",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_glokey",
+ "englishUsText":"Gloria",
+ "englishUsFontType":0,
+ "frenchText":"Gloria",
+ "frenchFontType":0,
+ "italianText":"Gloria",
+ "italianFontType":0,
+ "germanText":"Gloria",
+ "germanFontType":0,
+ "spanishText":"Gloria",
+ "spanishFontType":0,
+ "neutralSpanishText":"Gloria",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Gloria",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_allimh",
+ "englishUsText":"オール・イン・マイハート",
+ "englishUsFontType":0,
+ "frenchText":"オール・イン・マイハート",
+ "frenchFontType":0,
+ "italianText":"オール・イン・マイハート",
+ "italianFontType":0,
+ "germanText":"オール・イン・マイハート",
+ "germanFontType":0,
+ "spanishText":"オール・イン・マイハート",
+ "spanishFontType":0,
+ "neutralSpanishText":"オール・イン・マイハート",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"オール・イン・マイハート",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_goth",
+ "englishUsText":"DON’T CUT",
+ "englishUsFontType":0,
+ "frenchText":"DON’T CUT",
+ "frenchFontType":0,
+ "italianText":"DON’T CUT",
+ "italianFontType":0,
+ "germanText":"DON’T CUT",
+ "germanFontType":0,
+ "spanishText":"DON’T CUT",
+ "spanishFontType":0,
+ "neutralSpanishText":"DON’T CUT",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"DON’T CUT",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_flksak",
+ "englishUsText":"さくら(春)",
+ "englishUsFontType":0,
+ "frenchText":"さくら(春)",
+ "frenchFontType":0,
+ "italianText":"さくら(春)",
+ "italianFontType":0,
+ "germanText":"さくら(春)",
+ "germanFontType":0,
+ "spanishText":"さくら(春)",
+ "spanishFontType":0,
+ "neutralSpanishText":"さくら(春)",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"さくら(春)",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_skrexh",
+ "englishUsText":"SAKURA EXHAUST",
+ "englishUsFontType":0,
+ "frenchText":"SAKURA EXHAUST",
+ "frenchFontType":0,
+ "italianText":"SAKURA EXHAUST",
+ "italianFontType":0,
+ "germanText":"SAKURA EXHAUST",
+ "germanFontType":0,
+ "spanishText":"SAKURA EXHAUST",
+ "spanishFontType":0,
+ "neutralSpanishText":"SAKURA EXHAUST",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"SAKURA EXHAUST",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_blrose",
+ "englishUsText":"Blue Rose Ruin",
+ "englishUsFontType":0,
+ "frenchText":"Blue Rose Ruin",
+ "frenchFontType":0,
+ "italianText":"Blue Rose Ruin",
+ "italianFontType":0,
+ "germanText":"Blue Rose Ruin",
+ "germanFontType":0,
+ "spanishText":"Blue Rose Ruin",
+ "spanishFontType":0,
+ "neutralSpanishText":"Blue Rose Ruin",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Blue Rose Ruin",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_haryu",
+ "englishUsText":"春竜 ~Haryu~",
+ "englishUsFontType":0,
+ "frenchText":"春竜 ~Haryu~",
+ "frenchFontType":0,
+ "italianText":"春竜 ~Haryu~",
+ "italianFontType":0,
+ "germanText":"春竜 ~Haryu~",
+ "germanFontType":0,
+ "spanishText":"春竜 ~Haryu~",
+ "spanishFontType":0,
+ "neutralSpanishText":"春竜 ~Haryu~",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"春竜 ~Haryu~",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_clspvn",
+ "englishUsText":"亡き王女のためのパヴァーヌ",
+ "englishUsFontType":0,
+ "frenchText":"亡き王女のためのパヴァーヌ",
+ "frenchFontType":0,
+ "italianText":"亡き王女のためのパヴァーヌ",
+ "italianFontType":0,
+ "germanText":"亡き王女のためのパヴァーヌ",
+ "germanFontType":0,
+ "spanishText":"亡き王女のためのパヴァーヌ",
+ "spanishFontType":0,
+ "neutralSpanishText":"亡き王女のためのパヴァーヌ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"亡き王女のためのパヴァーヌ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_tank",
+ "englishUsText":"やわらか戦車",
+ "englishUsFontType":0,
+ "frenchText":"やわらか戦車",
+ "frenchFontType":0,
+ "italianText":"やわらか戦車",
+ "italianFontType":0,
+ "germanText":"やわらか戦車",
+ "germanFontType":0,
+ "spanishText":"やわらか戦車",
+ "spanishFontType":0,
+ "neutralSpanishText":"やわらか戦車",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"やわらか戦車",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_tdm",
+ "englishUsText":"Taiko Drum Monster",
+ "englishUsFontType":0,
+ "frenchText":"Taiko Drum Monster",
+ "frenchFontType":0,
+ "italianText":"Taiko Drum Monster",
+ "italianFontType":0,
+ "germanText":"Taiko Drum Monster",
+ "germanFontType":0,
+ "spanishText":"Taiko Drum Monster",
+ "spanishFontType":0,
+ "neutralSpanishText":"Taiko Drum Monster",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Taiko Drum Monster",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_gekikk",
+ "englishUsText":"HARDCOREノ心得",
+ "englishUsFontType":0,
+ "frenchText":"HARDCOREノ心得",
+ "frenchFontType":0,
+ "italianText":"HARDCOREノ心得",
+ "italianFontType":0,
+ "germanText":"HARDCOREノ心得",
+ "germanFontType":0,
+ "spanishText":"HARDCOREノ心得",
+ "spanishFontType":0,
+ "neutralSpanishText":"HARDCOREノ心得",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"HARDCOREノ心得",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_oka47",
+ "englishUsText":"クルクルクロックル",
+ "englishUsFontType":0,
+ "frenchText":"クルクルクロックル",
+ "frenchFontType":0,
+ "italianText":"クルクルクロックル",
+ "italianFontType":0,
+ "germanText":"クルクルクロックル",
+ "germanFontType":0,
+ "spanishText":"クルクルクロックル",
+ "spanishFontType":0,
+ "neutralSpanishText":"クルクルクロックル",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"クルクルクロックル",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_castle",
+ "englishUsText":"Black Rose Apostle",
+ "englishUsFontType":0,
+ "frenchText":"Black Rose Apostle",
+ "frenchFontType":0,
+ "italianText":"Black Rose Apostle",
+ "italianFontType":0,
+ "germanText":"Black Rose Apostle",
+ "germanFontType":0,
+ "spanishText":"Black Rose Apostle",
+ "spanishFontType":0,
+ "neutralSpanishText":"Black Rose Apostle",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Black Rose Apostle",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_thncrd",
+ "englishUsText":"ネクロファンタジア ~ Arr.Demetori",
+ "englishUsFontType":0,
+ "frenchText":"ネクロファンタジア ~ Arr.Demetori",
+ "frenchFontType":0,
+ "italianText":"ネクロファンタジア ~ Arr.Demetori",
+ "italianFontType":0,
+ "germanText":"ネクロファンタジア ~ Arr.Demetori",
+ "germanFontType":0,
+ "spanishText":"ネクロファンタジア ~ Arr.Demetori",
+ "spanishFontType":0,
+ "neutralSpanishText":"ネクロファンタジア ~ Arr.Demetori",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ネクロファンタジア ~ Arr.Demetori",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_syclsn",
+ "englishUsText":"New World",
+ "englishUsFontType":0,
+ "frenchText":"New World",
+ "frenchFontType":0,
+ "italianText":"New World",
+ "italianFontType":0,
+ "germanText":"New World",
+ "germanFontType":0,
+ "spanishText":"New World",
+ "spanishFontType":0,
+ "neutralSpanishText":"New World",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"New World",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sort_zense",
+ "englishUsText":"zenzenzense",
+ "englishUsFontType":1,
+ "frenchText":"zenzenzense",
+ "frenchFontType":1,
+ "italianText":"zenzenzense",
+ "italianFontType":1,
+ "germanText":"zenzenzense",
+ "germanFontType":1,
+ "spanishText":"zenzenzense",
+ "spanishFontType":1,
+ "neutralSpanishText":"zenzenzense",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"zenzenzense",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_roadmv",
+ "englishUsText":"roadmovie",
+ "englishUsFontType":1,
+ "frenchText":"roadmovie",
+ "frenchFontType":1,
+ "italianText":"roadmovie",
+ "italianFontType":1,
+ "germanText":"roadmovie",
+ "germanFontType":1,
+ "spanishText":"roadmovie",
+ "spanishFontType":1,
+ "neutralSpanishText":"roadmovie",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"roadmovie",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_4shaas",
+ "englishUsText":"ashitamo",
+ "englishUsFontType":1,
+ "frenchText":"ashitamo",
+ "frenchFontType":1,
+ "italianText":"ashitamo",
+ "italianFontType":1,
+ "germanText":"ashitamo",
+ "germanFontType":1,
+ "spanishText":"ashitamo",
+ "spanishFontType":1,
+ "neutralSpanishText":"ashitamo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ashitamo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_ynlose",
+ "englishUsText":"loser",
+ "englishUsFontType":1,
+ "frenchText":"loser",
+ "frenchFontType":1,
+ "italianText":"loser",
+ "italianFontType":1,
+ "germanText":"loser",
+ "germanFontType":1,
+ "spanishText":"loser",
+ "spanishFontType":1,
+ "neutralSpanishText":"loser",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"loser",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_uminok",
+ "englishUsText":"uminokoe",
+ "englishUsFontType":1,
+ "frenchText":"uminokoe",
+ "frenchFontType":1,
+ "italianText":"uminokoe",
+ "italianFontType":1,
+ "germanText":"uminokoe",
+ "germanFontType":1,
+ "spanishText":"uminokoe",
+ "spanishFontType":1,
+ "neutralSpanishText":"uminokoe",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"uminokoe",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_kekka2",
+ "englishUsText":"sugarsong&bitterstep",
+ "englishUsFontType":1,
+ "frenchText":"sugarsong&bitterstep",
+ "frenchFontType":1,
+ "italianText":"sugarsong&bitterstep",
+ "italianFontType":1,
+ "germanText":"sugarsong&bitterstep",
+ "germanFontType":1,
+ "spanishText":"sugarsong&bitterstep",
+ "spanishFontType":1,
+ "neutralSpanishText":"sugarsong&bitterstep",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"sugarsong&bitterstep",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_himyak",
+ "englishUsText":"himawarinoyakusoku",
+ "englishUsFontType":1,
+ "frenchText":"himawarinoyakusoku",
+ "frenchFontType":1,
+ "italianText":"himawarinoyakusoku",
+ "italianFontType":1,
+ "germanText":"himawarinoyakusoku",
+ "germanFontType":1,
+ "spanishText":"himawarinoyakusoku",
+ "spanishFontType":1,
+ "neutralSpanishText":"himawarinoyakusoku",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"himawarinoyakusoku",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_gimcho",
+ "englishUsText":"gimmechocolate!!",
+ "englishUsFontType":1,
+ "frenchText":"gimmechocolate!!",
+ "frenchFontType":1,
+ "italianText":"gimmechocolate!!",
+ "italianFontType":1,
+ "germanText":"gimmechocolate!!",
+ "germanFontType":1,
+ "spanishText":"gimmechocolate!!",
+ "spanishFontType":1,
+ "neutralSpanishText":"gimmechocolate!!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"gimmechocolate!!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_skorpg",
+ "englishUsText":"rpg",
+ "englishUsFontType":1,
+ "frenchText":"rpg",
+ "frenchFontType":1,
+ "italianText":"rpg",
+ "italianFontType":1,
+ "germanText":"rpg",
+ "germanFontType":1,
+ "spanishText":"rpg",
+ "spanishFontType":1,
+ "neutralSpanishText":"rpg",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"rpg",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_ninjbb",
+ "englishUsText":"ninjarebangbang",
+ "englishUsFontType":1,
+ "frenchText":"ninjarebangbang",
+ "frenchFontType":1,
+ "italianText":"ninjarebangbang",
+ "italianFontType":1,
+ "germanText":"ninjarebangbang",
+ "germanFontType":1,
+ "spanishText":"ninjarebangbang",
+ "spanishFontType":1,
+ "neutralSpanishText":"ninjarebangbang",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ninjarebangbang",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_memesi",
+ "englishUsText":"memeshikute",
+ "englishUsFontType":1,
+ "frenchText":"memeshikute",
+ "frenchFontType":1,
+ "italianText":"memeshikute",
+ "italianFontType":1,
+ "germanText":"memeshikute",
+ "germanFontType":1,
+ "spanishText":"memeshikute",
+ "spanishFontType":1,
+ "neutralSpanishText":"memeshikute",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"memeshikute",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_koiama",
+ "englishUsText":"koiototoamazora",
+ "englishUsFontType":1,
+ "frenchText":"koiototoamazora",
+ "frenchFontType":1,
+ "italianText":"koiototoamazora",
+ "italianFontType":1,
+ "germanText":"koiototoamazora",
+ "germanFontType":1,
+ "spanishText":"koiototoamazora",
+ "spanishFontType":1,
+ "neutralSpanishText":"koiototoamazora",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"koiototoamazora",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_kiseki",
+ "englishUsText":"kiseki",
+ "englishUsFontType":1,
+ "frenchText":"kiseki",
+ "frenchFontType":1,
+ "italianText":"kiseki",
+ "italianFontType":1,
+ "germanText":"kiseki",
+ "germanFontType":1,
+ "spanishText":"kiseki",
+ "spanishFontType":1,
+ "neutralSpanishText":"kiseki",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"kiseki",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_ikenai",
+ "englishUsText":"ikenaitaiyou",
+ "englishUsFontType":1,
+ "frenchText":"ikenaitaiyou",
+ "frenchFontType":1,
+ "italianText":"ikenaitaiyou",
+ "italianFontType":1,
+ "germanText":"ikenaitaiyou",
+ "germanFontType":1,
+ "spanishText":"ikenaitaiyou",
+ "spanishFontType":1,
+ "neutralSpanishText":"ikenaitaiyou",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ikenaitaiyou",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_skrnb",
+ "englishUsText":"sakuranbo",
+ "englishUsFontType":1,
+ "frenchText":"sakuranbo",
+ "frenchFontType":1,
+ "italianText":"sakuranbo",
+ "italianFontType":1,
+ "germanText":"sakuranbo",
+ "germanFontType":1,
+ "spanishText":"sakuranbo",
+ "spanishFontType":1,
+ "neutralSpanishText":"sakuranbo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"sakuranbo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_linda",
+ "englishUsText":"lindalinda",
+ "englishUsFontType":1,
+ "frenchText":"lindalinda",
+ "frenchFontType":1,
+ "italianText":"lindalinda",
+ "italianFontType":1,
+ "germanText":"lindalinda",
+ "germanFontType":1,
+ "spanishText":"lindalinda",
+ "spanishFontType":1,
+ "neutralSpanishText":"lindalinda",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"lindalinda",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_natsu",
+ "englishUsText":"natsumatsuri",
+ "englishUsFontType":1,
+ "frenchText":"natsumatsuri",
+ "frenchFontType":1,
+ "italianText":"natsumatsuri",
+ "italianFontType":1,
+ "germanText":"natsumatsuri",
+ "germanFontType":1,
+ "spanishText":"natsumatsuri",
+ "spanishFontType":1,
+ "neutralSpanishText":"natsumatsuri",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"natsumatsuri",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_10tai",
+ "englishUsText":"tentaikansoku",
+ "englishUsFontType":1,
+ "frenchText":"tentaikansoku",
+ "frenchFontType":1,
+ "italianText":"tentaikansoku",
+ "italianFontType":1,
+ "germanText":"tentaikansoku",
+ "germanFontType":1,
+ "spanishText":"tentaikansoku",
+ "spanishFontType":1,
+ "neutralSpanishText":"tentaikansoku",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"tentaikansoku",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_xjapan",
+ "englishUsText":"kurenai",
+ "englishUsFontType":1,
+ "frenchText":"kurenai",
+ "frenchFontType":1,
+ "italianText":"kurenai",
+ "italianFontType":1,
+ "germanText":"kurenai",
+ "germanFontType":1,
+ "spanishText":"kurenai",
+ "spanishFontType":1,
+ "neutralSpanishText":"kurenai",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"kurenai",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_apollo",
+ "englishUsText":"apollo",
+ "englishUsFontType":1,
+ "frenchText":"apollo",
+ "frenchFontType":1,
+ "italianText":"apollo",
+ "italianFontType":1,
+ "germanText":"apollo",
+ "germanFontType":1,
+ "spanishText":"apollo",
+ "spanishFontType":1,
+ "neutralSpanishText":"apollo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"apollo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_dora4",
+ "englishUsText":"yumewokanaetedoraemon",
+ "englishUsFontType":1,
+ "frenchText":"yumewokanaetedoraemon",
+ "frenchFontType":1,
+ "italianText":"yumewokanaetedoraemon",
+ "italianFontType":1,
+ "germanText":"yumewokanaetedoraemon",
+ "germanFontType":1,
+ "spanishText":"yumewokanaetedoraemon",
+ "spanishFontType":1,
+ "neutralSpanishText":"yumewokanaetedoraemon",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"yumewokanaetedoraemon",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_totoro",
+ "englishUsText":"myneighbortotoro?endingthemesong",
+ "englishUsFontType":1,
+ "frenchText":"monvoisintotoro-generiquedefin",
+ "frenchFontType":1,
+ "italianText":"ilmiovicinototoro-temaprincipale",
+ "italianFontType":1,
+ "germanText":"meinnachbartotoro?abspann",
+ "germanFontType":1,
+ "spanishText":"mivecinototoro(temaprincipal-temafinal)",
+ "spanishFontType":1,
+ "neutralSpanishText":"mivecinototoro(temaprincipal-temafinal)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"myneighbortotoro(theendingsong)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_anayuk",
+ "englishUsText":"letitgo",
+ "englishUsFontType":1,
+ "frenchText":"letitgo",
+ "frenchFontType":1,
+ "italianText":"letitgo",
+ "italianFontType":1,
+ "germanText":"letitgo",
+ "germanFontType":1,
+ "spanishText":"letitgo",
+ "spanishFontType":1,
+ "neutralSpanishText":"letitgo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"letitgo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_zootop",
+ "englishUsText":"tryeverything",
+ "englishUsFontType":1,
+ "frenchText":"tryeverything",
+ "frenchFontType":1,
+ "italianText":"tryeverything",
+ "italianFontType":1,
+ "germanText":"tryeverything",
+ "germanFontType":1,
+ "spanishText":"tryeverything",
+ "spanishFontType":1,
+ "neutralSpanishText":"tryeverything",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"tryeverything",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_dbcgen",
+ "englishUsText":"genkaitoppa×survivor",
+ "englishUsFontType":1,
+ "frenchText":"genkaitoppa×survivor",
+ "frenchFontType":1,
+ "italianText":"genkaitoppa×survivor",
+ "italianFontType":1,
+ "germanText":"genkaitoppa×survivor",
+ "germanFontType":1,
+ "spanishText":"genkaitoppa×survivor",
+ "spanishFontType":1,
+ "neutralSpanishText":"genkaitoppa×survivor",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"genkaitoppa×survivor",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_batan9",
+ "englishUsText":"zenryokubatankyuu",
+ "englishUsFontType":1,
+ "frenchText":"zenryokubatankyuu",
+ "frenchFontType":1,
+ "italianText":"zenryokubatankyuu",
+ "italianFontType":1,
+ "germanText":"zenryokubatankyuu",
+ "germanFontType":1,
+ "spanishText":"zenryokubatankyuu",
+ "spanishFontType":1,
+ "neutralSpanishText":"zenryokubatankyuu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"zenryokubatankyuu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_shing2",
+ "englishUsText":"gurennoyumiya",
+ "englishUsFontType":1,
+ "frenchText":"gurennoyumiya",
+ "frenchFontType":1,
+ "italianText":"gurennoyumiya",
+ "italianFontType":1,
+ "germanText":"gurennoyumiya",
+ "germanFontType":1,
+ "spanishText":"gurennoyumiya",
+ "spanishFontType":1,
+ "neutralSpanishText":"gurennoyumiya",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"gurennoyumiya",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_weare0",
+ "englishUsText":"weare!",
+ "englishUsFontType":1,
+ "frenchText":"weare!",
+ "frenchFontType":1,
+ "italianText":"weare!",
+ "italianFontType":1,
+ "germanText":"weare!",
+ "germanFontType":1,
+ "spanishText":"weare!",
+ "spanishFontType":1,
+ "neutralSpanishText":"weare!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"weare!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_eva",
+ "englishUsText":"acruelangel'sthesis",
+ "englishUsFontType":1,
+ "frenchText":"acruelangel'sthesis",
+ "frenchFontType":1,
+ "italianText":"acruelangel'sthesis",
+ "italianFontType":1,
+ "germanText":"acruelangel'sthesis",
+ "germanFontType":1,
+ "spanishText":"acruelangel'sthesis",
+ "spanishFontType":1,
+ "neutralSpanishText":"acruelangel'sthesis",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"acruelangel'sthesis",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_japari",
+ "englishUsText":"welcometojaparipark",
+ "englishUsFontType":1,
+ "frenchText":"welcometojaparipark",
+ "frenchFontType":1,
+ "italianText":"welcometojaparipark",
+ "italianFontType":1,
+ "germanText":"welcometojaparipark",
+ "germanFontType":1,
+ "spanishText":"welcometojaparipark",
+ "spanishFontType":1,
+ "neutralSpanishText":"welcometojaparipark",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"welcometojaparipark",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_mikugr",
+ "englishUsText":"ghostrule",
+ "englishUsFontType":1,
+ "frenchText":"ghostrule",
+ "frenchFontType":1,
+ "italianText":"ghostrule",
+ "italianFontType":1,
+ "germanText":"ghostrule",
+ "germanFontType":1,
+ "spanishText":"ghostrule",
+ "spanishFontType":1,
+ "neutralSpanishText":"ghostrule",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ghostrule",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_mikuaa",
+ "englishUsText":"alienalien",
+ "englishUsFontType":1,
+ "frenchText":"alienalien",
+ "frenchFontType":1,
+ "italianText":"alienalien",
+ "italianFontType":1,
+ "germanText":"alienalien",
+ "germanFontType":1,
+ "spanishText":"alienalien",
+ "spanishFontType":1,
+ "neutralSpanishText":"alienalien",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"alienalien",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_lost1g",
+ "englishUsText":"thelostone'sweeping",
+ "englishUsFontType":1,
+ "frenchText":"thelostone'sweeping",
+ "frenchFontType":1,
+ "italianText":"thelostone'sweeping",
+ "italianFontType":1,
+ "germanText":"thelostone'sweeping",
+ "germanFontType":1,
+ "spanishText":"thelostone'sweeping",
+ "spanishFontType":1,
+ "neutralSpanishText":"thelostone'sweeping",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"thelostone'sweeping",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_ia6cho",
+ "englishUsText":"ataleofsixtrillionyearsandanight",
+ "englishUsFontType":1,
+ "frenchText":"ataleofsixtrillionyearsandanight",
+ "frenchFontType":1,
+ "italianText":"ataleofsixtrillionyearsandanight",
+ "italianFontType":1,
+ "germanText":"ataleofsixtrillionyearsandanight",
+ "germanFontType":1,
+ "spanishText":"ataleofsixtrillionyearsandanight",
+ "spanishFontType":1,
+ "neutralSpanishText":"ataleofsixtrillionyearsandanight",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ataleofsixtrillionyearsandanight",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_hkitty",
+ "englishUsText":"hellokitty",
+ "englishUsFontType":1,
+ "frenchText":"hellokitty",
+ "frenchFontType":1,
+ "italianText":"hellokitty",
+ "italianFontType":1,
+ "germanText":"hellokitty",
+ "germanFontType":1,
+ "spanishText":"hellokitty",
+ "spanishFontType":1,
+ "neutralSpanishText":"hellokitty",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"hellokitty",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_ppap",
+ "englishUsText":"pen-pineapple-apple-pen(ppap)",
+ "englishUsFontType":1,
+ "frenchText":"pen-pineapple-apple-pen(ppap)",
+ "frenchFontType":1,
+ "italianText":"pen-pineapple-apple-pen(ppap)",
+ "italianFontType":1,
+ "germanText":"pen-pineapple-apple-pen(ppap)",
+ "germanFontType":1,
+ "spanishText":"pen-pineapple-apple-pen(ppap)",
+ "spanishFontType":1,
+ "neutralSpanishText":"pen-pineapple-apple-pen(ppap)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"pen-pineapple-apple-pen(ppap)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_th7171",
+ "englishUsText":"nightofknights/knightofnights",
+ "englishUsFontType":1,
+ "frenchText":"nightofknights/knightofnights",
+ "frenchFontType":1,
+ "italianText":"nightofknights/knightofnights",
+ "italianFontType":1,
+ "germanText":"nightofknights/knightofnights",
+ "germanFontType":1,
+ "spanishText":"nightofknights/knightofnights",
+ "spanishFontType":1,
+ "neutralSpanishText":"nightofknights/knightofnights",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"nightofknights/knightofnights",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_thflnd",
+ "englishUsText":"lastbrutalsisterflandres",
+ "englishUsFontType":1,
+ "frenchText":"lastbrutalsisterflandres",
+ "frenchFontType":1,
+ "italianText":"lastbrutalsisterflandres",
+ "italianFontType":1,
+ "germanText":"lastbrutalsisterflandres",
+ "germanFontType":1,
+ "spanishText":"lastbrutalsisterflandres",
+ "spanishFontType":1,
+ "neutralSpanishText":"lastbrutalsisterflandres",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"lastbrutalsisterflandres",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_thchil",
+ "englishUsText":"cirno'sperfectmathclass",
+ "englishUsFontType":1,
+ "frenchText":"cirno'sperfectmathclass",
+ "frenchFontType":1,
+ "italianText":"cirno'sperfectmathclass",
+ "italianFontType":1,
+ "germanText":"cirno'sperfectmathclass",
+ "germanFontType":1,
+ "spanishText":"cirno'sperfectmathclass",
+ "spanishFontType":1,
+ "neutralSpanishText":"cirno'sperfectmathclass",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"cirno'sperfectmathclass",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_clsh69",
+ "englishUsText":"hungarianrock",
+ "englishUsFontType":1,
+ "frenchText":"hungarianrock",
+ "frenchFontType":1,
+ "italianText":"hungarianrock",
+ "italianFontType":1,
+ "germanText":"hungarianrock",
+ "germanFontType":1,
+ "spanishText":"hungarianrock",
+ "spanishFontType":1,
+ "neutralSpanishText":"hungarianrock",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"hungarianrock",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_clsca",
+ "englishUsText":"carmenprelude",
+ "englishUsFontType":1,
+ "frenchText":"carmenprelude",
+ "frenchFontType":1,
+ "italianText":"carmenprelude",
+ "italianFontType":1,
+ "germanText":"carmenprelude",
+ "germanFontType":1,
+ "spanishText":"carmenprelude",
+ "spanishFontType":1,
+ "neutralSpanishText":"carmenprelude",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"carmenprelude",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_clsw",
+ "englishUsText":"williamtelloverture",
+ "englishUsFontType":1,
+ "frenchText":"williamtelloverture",
+ "frenchFontType":1,
+ "italianText":"williamtelloverture",
+ "italianFontType":1,
+ "germanText":"williamtelloverture",
+ "germanFontType":1,
+ "spanishText":"williamtelloverture",
+ "spanishFontType":1,
+ "neutralSpanishText":"williamtelloverture",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"williamtelloverture",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_cls10",
+ "englishUsText":"overturefrom'orpheusintheunderworld'",
+ "englishUsFontType":1,
+ "frenchText":"overturefrom'orpheusintheunderworld'",
+ "frenchFontType":1,
+ "italianText":"overturefrom'orpheusintheunderworld'",
+ "italianFontType":1,
+ "germanText":"overturefrom'orpheusintheunderworld'",
+ "germanFontType":1,
+ "spanishText":"overturefrom'orpheusintheunderworld'",
+ "spanishFontType":1,
+ "neutralSpanishText":"overturefrom'orpheusintheunderworld'",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"overturefrom'orpheusintheunderworld'",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_clsr",
+ "englishUsText":"classicalmusicmedley(rockversion)",
+ "englishUsFontType":1,
+ "frenchText":"classicalmusicmedley(rockversion)",
+ "frenchFontType":1,
+ "italianText":"classicalmusicmedley(rockversion)",
+ "italianFontType":1,
+ "germanText":"classicalmusicmedley(rockversion)",
+ "germanFontType":1,
+ "spanishText":"classicalmusicmedley(rockversion)",
+ "spanishFontType":1,
+ "neutralSpanishText":"classicalmusicmedley(rockversion)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"classicalmusicmedley(rockversion)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_march",
+ "englishUsText":"thetaikomarch",
+ "englishUsFontType":1,
+ "frenchText":"thetaikomarch",
+ "frenchFontType":1,
+ "italianText":"thetaikomarch",
+ "italianFontType":1,
+ "germanText":"thetaikomarch",
+ "germanFontType":1,
+ "spanishText":"thetaikomarch",
+ "spanishFontType":1,
+ "neutralSpanishText":"thetaikomarch",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"thetaikomarch",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_drsp",
+ "englishUsText":"dragonspiritmedley",
+ "englishUsFontType":1,
+ "frenchText":"dragonspiritmedley",
+ "frenchFontType":1,
+ "italianText":"dragonspiritmedley",
+ "italianFontType":1,
+ "germanText":"dragonspiritmedley",
+ "germanFontType":1,
+ "spanishText":"dragonspiritmedley",
+ "spanishFontType":1,
+ "neutralSpanishText":"dragonspiritmedley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"dragonspiritmedley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_druaga",
+ "englishUsText":"thetowerofdruagamedley",
+ "englishUsFontType":1,
+ "frenchText":"thetowerofdruagamedley",
+ "frenchFontType":1,
+ "italianText":"thetowerofdruagamedley",
+ "italianFontType":1,
+ "germanText":"thetowerofdruagamedley",
+ "germanFontType":1,
+ "spanishText":"thetowerofdruagamedley",
+ "spanishFontType":1,
+ "neutralSpanishText":"thetowerofdruagamedley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"thetowerofdruagamedley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_bforc",
+ "englishUsText":"burningforcemedley",
+ "englishUsFontType":1,
+ "frenchText":"burningforcemedley",
+ "frenchFontType":1,
+ "italianText":"burningforcemedley",
+ "italianFontType":1,
+ "germanText":"burningforcemedley",
+ "germanFontType":1,
+ "spanishText":"burningforcemedley",
+ "spanishFontType":1,
+ "neutralSpanishText":"burningforcemedley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"burningforcemedley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_babel",
+ "englishUsText":"thetowerofbabel",
+ "englishUsFontType":1,
+ "frenchText":"thetowerofbabel",
+ "frenchFontType":1,
+ "italianText":"thetowerofbabel",
+ "italianFontType":1,
+ "germanText":"thetowerofbabel",
+ "germanFontType":1,
+ "spanishText":"thetowerofbabel",
+ "spanishFontType":1,
+ "neutralSpanishText":"thetowerofbabel",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"thetowerofbabel",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_mappy2",
+ "englishUsText":"mappymedley",
+ "englishUsFontType":1,
+ "frenchText":"mappymedley",
+ "frenchFontType":1,
+ "italianText":"mappymedley",
+ "italianFontType":1,
+ "germanText":"mappymedley",
+ "germanFontType":1,
+ "spanishText":"mappymedley",
+ "spanishFontType":1,
+ "neutralSpanishText":"mappymedley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"mappymedley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_moji",
+ "englishUsText":"mojipittanmedley",
+ "englishUsFontType":1,
+ "frenchText":"mojipittanmedley",
+ "frenchFontType":1,
+ "italianText":"mojipittanmedley",
+ "italianFontType":1,
+ "germanText":"mojipittanmedley",
+ "germanFontType":1,
+ "spanishText":"mojipittanmedley",
+ "spanishFontType":1,
+ "neutralSpanishText":"mojipittanmedley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"mojipittanmedley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_sf5ryu",
+ "englishUsText":"themeofryu",
+ "englishUsFontType":1,
+ "frenchText":"themeofryu",
+ "frenchFontType":1,
+ "italianText":"themeofryu",
+ "italianFontType":1,
+ "germanText":"themeofryu",
+ "germanFontType":1,
+ "spanishText":"themeofryu",
+ "spanishFontType":1,
+ "neutralSpanishText":"themeofryu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"themeofryu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_tek7he",
+ "englishUsText":"heathazeshadow2",
+ "englishUsFontType":1,
+ "frenchText":"heathazeshadow2",
+ "frenchFontType":1,
+ "italianText":"heathazeshadow2",
+ "italianFontType":1,
+ "germanText":"heathazeshadow2",
+ "germanFontType":1,
+ "spanishText":"heathazeshadow2",
+ "spanishFontType":1,
+ "neutralSpanishText":"heathazeshadow2",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"heathazeshadow2",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_tobers",
+ "englishUsText":"talesofberseriamedley",
+ "englishUsFontType":1,
+ "frenchText":"talesofberseriamedley",
+ "frenchFontType":1,
+ "italianText":"talesofberseriamedley",
+ "italianFontType":1,
+ "germanText":"talesofberseriamedley",
+ "germanFontType":1,
+ "spanishText":"talesofberseriamedley",
+ "spanishFontType":1,
+ "neutralSpanishText":"talesofberseriamedley",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"talesofberseriamedley",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_imconc",
+ "englishUsText":"onegai!cinderella",
+ "englishUsFontType":1,
+ "frenchText":"onegai!cinderella",
+ "frenchFontType":1,
+ "italianText":"onegai!cinderella",
+ "italianFontType":1,
+ "germanText":"onegai!cinderella",
+ "germanFontType":1,
+ "spanishText":"onegai!cinderella",
+ "spanishFontType":1,
+ "neutralSpanishText":"onegai!cinderella",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"onegai!cinderella",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_immbra",
+ "englishUsText":"brandnewtheater!",
+ "englishUsFontType":1,
+ "frenchText":"brandnewtheater!",
+ "frenchFontType":1,
+ "italianText":"brandnewtheater!",
+ "italianFontType":1,
+ "germanText":"brandnewtheater!",
+ "germanFontType":1,
+ "spanishText":"brandnewtheater!",
+ "spanishFontType":1,
+ "neutralSpanishText":"brandnewtheater!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"brandnewtheater!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_crturb",
+ "englishUsText":"urbanstriker",
+ "englishUsFontType":1,
+ "frenchText":"urbanstriker",
+ "frenchFontType":1,
+ "italianText":"urbanstriker",
+ "italianFontType":1,
+ "germanText":"urbanstriker",
+ "germanFontType":1,
+ "spanishText":"urbanstriker",
+ "spanishFontType":1,
+ "neutralSpanishText":"urbanstriker",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"urbanstriker",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_eatem",
+ "englishUsText":"eat'emup!",
+ "englishUsFontType":1,
+ "frenchText":"eat'emup!",
+ "frenchFontType":1,
+ "italianText":"eat'emup!",
+ "italianFontType":1,
+ "germanText":"eat'emup!",
+ "germanFontType":1,
+ "spanishText":"eat'emup!",
+ "spanishFontType":1,
+ "neutralSpanishText":"eat'emup!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"eat'emup!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_genpe",
+ "englishUsText":"kagekiyo",
+ "englishUsFontType":1,
+ "frenchText":"kagekiyo",
+ "frenchFontType":1,
+ "italianText":"kagekiyo",
+ "italianFontType":1,
+ "germanText":"kagekiyo",
+ "germanFontType":1,
+ "spanishText":"kagekiyo",
+ "spanishFontType":1,
+ "neutralSpanishText":"kagekiyo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"kagekiyo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_ryuhim",
+ "englishUsText":"ryutokokuennohimegimi",
+ "englishUsFontType":1,
+ "frenchText":"ryutokokuennohimegimi",
+ "frenchFontType":1,
+ "italianText":"ryutokokuennohimegimi",
+ "italianFontType":1,
+ "germanText":"ryutokokuennohimegimi",
+ "germanFontType":1,
+ "spanishText":"ryutokokuennohimegimi",
+ "spanishFontType":1,
+ "neutralSpanishText":"ryutokokuennohimegimi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ryutokokuennohimegimi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_psf1op",
+ "englishUsText":"tsunagare!hirogare!uchiagare!",
+ "englishUsFontType":1,
+ "frenchText":"tsunagare!hirogare!uchiagare!",
+ "frenchFontType":1,
+ "italianText":"tsunagare!hirogare!uchiagare!",
+ "italianFontType":1,
+ "germanText":"tsunagare!hirogare!uchiagare!",
+ "germanFontType":1,
+ "spanishText":"tsunagare!hirogare!uchiagare!",
+ "spanishFontType":1,
+ "neutralSpanishText":"tsunagare!hirogare!uchiagare!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"tsunagare!hirogare!uchiagare!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_trustg",
+ "englishUsText":"trustgame",
+ "englishUsFontType":1,
+ "frenchText":"trustgame",
+ "frenchFontType":1,
+ "italianText":"trustgame",
+ "italianFontType":1,
+ "germanText":"trustgame",
+ "germanFontType":1,
+ "spanishText":"trustgame",
+ "spanishFontType":1,
+ "neutralSpanishText":"trustgame",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"trustgame",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_mgpafe",
+ "englishUsText":"magicalparfait",
+ "englishUsFontType":1,
+ "frenchText":"magicalparfait",
+ "frenchFontType":1,
+ "italianText":"magicalparfait",
+ "italianFontType":1,
+ "germanText":"magicalparfait",
+ "germanFontType":1,
+ "spanishText":"magicalparfait",
+ "spanishFontType":1,
+ "neutralSpanishText":"magicalparfait",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"magicalparfait",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_32segw",
+ "englishUsText":"mitsusegawaranbu",
+ "englishUsFontType":1,
+ "frenchText":"mitsusegawaranbu",
+ "frenchFontType":1,
+ "italianText":"mitsusegawaranbu",
+ "italianFontType":1,
+ "germanText":"mitsusegawaranbu",
+ "germanFontType":1,
+ "spanishText":"mitsusegawaranbu",
+ "spanishFontType":1,
+ "neutralSpanishText":"mitsusegawaranbu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"mitsusegawaranbu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_so2omf",
+ "englishUsText":"sotsuomeshiki・full",
+ "englishUsFontType":1,
+ "frenchText":"sotsuomeshiki・full",
+ "frenchFontType":1,
+ "italianText":"sotsuomeshiki・full",
+ "italianFontType":1,
+ "germanText":"sotsuomeshiki・full",
+ "germanFontType":1,
+ "spanishText":"sotsuomeshiki・full",
+ "spanishFontType":1,
+ "neutralSpanishText":"sotsuomeshiki・full",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"sotsuomeshiki・full",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_nograv",
+ "englishUsText":"nogravity",
+ "englishUsFontType":1,
+ "frenchText":"nogravity",
+ "frenchFontType":1,
+ "italianText":"nogravity",
+ "italianFontType":1,
+ "germanText":"nogravity",
+ "germanFontType":1,
+ "spanishText":"nogravity",
+ "spanishFontType":1,
+ "neutralSpanishText":"nogravity",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"nogravity",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_crkvic",
+ "englishUsText":"victoria",
+ "englishUsFontType":1,
+ "frenchText":"victoria",
+ "frenchFontType":1,
+ "italianText":"victoria",
+ "italianFontType":1,
+ "germanText":"victoria",
+ "germanFontType":1,
+ "spanishText":"victoria",
+ "spanishFontType":1,
+ "neutralSpanishText":"victoria",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"victoria",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_tengu",
+ "englishUsText":"tengubayashi",
+ "englishUsFontType":1,
+ "frenchText":"tengubayashi",
+ "frenchFontType":1,
+ "italianText":"tengubayashi",
+ "italianFontType":1,
+ "germanText":"tengubayashi",
+ "germanFontType":1,
+ "spanishText":"tengubayashi",
+ "spanishFontType":1,
+ "neutralSpanishText":"tengubayashi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"tengubayashi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_timtrv",
+ "englishUsText":"timetraveler",
+ "englishUsFontType":1,
+ "frenchText":"timetraveler",
+ "frenchFontType":1,
+ "italianText":"timetraveler",
+ "italianFontType":1,
+ "germanText":"timetraveler",
+ "germanFontType":1,
+ "spanishText":"timetraveler",
+ "spanishFontType":1,
+ "neutralSpanishText":"timetraveler",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"timetraveler",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_izanam",
+ "englishUsText":"yominoizanami",
+ "englishUsFontType":1,
+ "frenchText":"yominoizanami",
+ "frenchFontType":1,
+ "italianText":"yominoizanami",
+ "italianFontType":1,
+ "germanText":"yominoizanami",
+ "germanFontType":1,
+ "spanishText":"yominoizanami",
+ "spanishFontType":1,
+ "neutralSpanishText":"yominoizanami",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"yominoizanami",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_tksoda",
+ "englishUsText":"tokyosoda8bitedit",
+ "englishUsFontType":1,
+ "frenchText":"tokyosoda8bitedit",
+ "frenchFontType":1,
+ "italianText":"tokyosoda8bitedit",
+ "italianFontType":1,
+ "germanText":"tokyosoda8bitedit",
+ "germanFontType":1,
+ "spanishText":"tokyosoda8bitedit",
+ "spanishFontType":1,
+ "neutralSpanishText":"tokyosoda8bitedit",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"tokyosoda8bitedit",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_mugens",
+ "englishUsText":"mugennosora",
+ "englishUsFontType":1,
+ "frenchText":"mugennosora",
+ "frenchFontType":1,
+ "italianText":"mugennosora",
+ "italianFontType":1,
+ "germanText":"mugennosora",
+ "germanFontType":1,
+ "spanishText":"mugennosora",
+ "spanishFontType":1,
+ "neutralSpanishText":"mugennosora",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"mugennosora",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_stabof",
+ "englishUsText":"gasshostival-fe!",
+ "englishUsFontType":1,
+ "frenchText":"gasshostival-fe!",
+ "frenchFontType":1,
+ "italianText":"gasshostival-fe!",
+ "italianFontType":1,
+ "germanText":"gasshostival-fe!",
+ "germanFontType":1,
+ "spanishText":"gasshostival-fe!",
+ "spanishFontType":1,
+ "neutralSpanishText":"gasshostival-fe!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"gasshostival-fe!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_flyawy",
+ "englishUsText":"flyaway",
+ "englishUsFontType":1,
+ "frenchText":"flyaway",
+ "frenchFontType":1,
+ "italianText":"flyaway",
+ "italianFontType":1,
+ "germanText":"flyaway",
+ "germanFontType":1,
+ "spanishText":"flyaway",
+ "spanishFontType":1,
+ "neutralSpanishText":"flyaway",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"flyaway",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_yayoi",
+ "englishUsText":"houjoyayoi",
+ "englishUsFontType":1,
+ "frenchText":"houjoyayoi",
+ "frenchFontType":1,
+ "italianText":"houjoyayoi",
+ "italianFontType":1,
+ "germanText":"houjoyayoi",
+ "germanFontType":1,
+ "spanishText":"houjoyayoi",
+ "spanishFontType":1,
+ "neutralSpanishText":"houjoyayoi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"houjoyayoi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_trance",
+ "englishUsText":"angeldream",
+ "englishUsFontType":1,
+ "frenchText":"angeldream",
+ "frenchFontType":1,
+ "italianText":"angeldream",
+ "italianFontType":1,
+ "germanText":"angeldream",
+ "germanFontType":1,
+ "spanishText":"angeldream",
+ "spanishFontType":1,
+ "neutralSpanishText":"angeldream",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"angeldream",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_vrock",
+ "englishUsText":"yugaonokimi",
+ "englishUsFontType":1,
+ "frenchText":"yugaonokimi",
+ "frenchFontType":1,
+ "italianText":"yugaonokimi",
+ "italianFontType":1,
+ "germanText":"yugaonokimi",
+ "germanFontType":1,
+ "spanishText":"yugaonokimi",
+ "spanishFontType":1,
+ "neutralSpanishText":"yugaonokimi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"yugaonokimi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_butou9",
+ "englishUsText":"oukaranman",
+ "englishUsFontType":1,
+ "frenchText":"oukaranman",
+ "frenchFontType":1,
+ "italianText":"oukaranman",
+ "italianFontType":1,
+ "germanText":"oukaranman",
+ "germanFontType":1,
+ "spanishText":"oukaranman",
+ "spanishFontType":1,
+ "neutralSpanishText":"oukaranman",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"oukaranman",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_rdrose",
+ "englishUsText":"redroseevangel",
+ "englishUsFontType":1,
+ "frenchText":"redroseevangel",
+ "frenchFontType":1,
+ "italianText":"redroseevangel",
+ "italianFontType":1,
+ "germanText":"redroseevangel",
+ "germanFontType":1,
+ "spanishText":"redroseevangel",
+ "spanishFontType":1,
+ "neutralSpanishText":"redroseevangel",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"redroseevangel",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_d96can",
+ "englishUsText":"dokulocandy?",
+ "englishUsFontType":1,
+ "frenchText":"dokulocandy?",
+ "frenchFontType":1,
+ "italianText":"dokulocandy?",
+ "italianFontType":1,
+ "germanText":"dokulocandy?",
+ "germanFontType":1,
+ "spanishText":"dokulocandy?",
+ "spanishFontType":1,
+ "neutralSpanishText":"dokulocandy?",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"dokulocandy?",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_rot",
+ "englishUsText":"saitama2000",
+ "englishUsFontType":1,
+ "frenchText":"saitama2000",
+ "frenchFontType":1,
+ "italianText":"saitama2000",
+ "italianFontType":1,
+ "germanText":"saitama2000",
+ "germanFontType":1,
+ "spanishText":"saitama2000",
+ "spanishFontType":1,
+ "neutralSpanishText":"saitama2000",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"saitama2000",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_rot4",
+ "englishUsText":"madasaitama2000",
+ "englishUsFontType":1,
+ "frenchText":"madasaitama2000",
+ "frenchFontType":1,
+ "italianText":"madasaitama2000",
+ "italianFontType":1,
+ "germanText":"madasaitama2000",
+ "germanFontType":1,
+ "spanishText":"madasaitama2000",
+ "spanishFontType":1,
+ "neutralSpanishText":"madasaitama2000",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"madasaitama2000",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_dem31k",
+ "englishUsText":"saika",
+ "englishUsFontType":1,
+ "frenchText":"saika",
+ "frenchFontType":1,
+ "italianText":"saika",
+ "italianFontType":1,
+ "germanText":"saika",
+ "germanFontType":1,
+ "spanishText":"saika",
+ "spanishFontType":1,
+ "neutralSpanishText":"saika",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"saika",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_kteien",
+ "englishUsText":"kaichuteienwomotsushoujo",
+ "englishUsFontType":1,
+ "frenchText":"kaichuteienwomotsushoujo",
+ "frenchFontType":1,
+ "italianText":"kaichuteienwomotsushoujo",
+ "italianFontType":1,
+ "germanText":"kaichuteienwomotsushoujo",
+ "germanFontType":1,
+ "spanishText":"kaichuteienwomotsushoujo",
+ "spanishFontType":1,
+ "neutralSpanishText":"kaichuteienwomotsushoujo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"kaichuteienwomotsushoujo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_gunsln",
+ "englishUsText":"gunslingercinderella",
+ "englishUsFontType":1,
+ "frenchText":"gunslingercinderella",
+ "frenchFontType":1,
+ "italianText":"gunslingercinderella",
+ "italianFontType":1,
+ "germanText":"gunslingercinderella",
+ "germanFontType":1,
+ "spanishText":"gunslingercinderella",
+ "spanishFontType":1,
+ "neutralSpanishText":"gunslingercinderella",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"gunslingercinderella",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_6ne9om",
+ "englishUsText":"dokidokimunekyunomatsuritime",
+ "englishUsFontType":1,
+ "frenchText":"dokidokimunekyunomatsuritime",
+ "frenchFontType":1,
+ "italianText":"dokidokimunekyunomatsuritime",
+ "italianFontType":1,
+ "germanText":"dokidokimunekyunomatsuritime",
+ "germanFontType":1,
+ "spanishText":"dokidokimunekyunomatsuritime",
+ "spanishFontType":1,
+ "neutralSpanishText":"dokidokimunekyunomatsuritime",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"dokidokimunekyunomatsuritime",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_angel3",
+ "englishUsText":"pasteldream",
+ "englishUsFontType":1,
+ "frenchText":"pasteldream",
+ "frenchFontType":1,
+ "italianText":"pasteldream",
+ "italianFontType":1,
+ "germanText":"pasteldream",
+ "germanFontType":1,
+ "spanishText":"pasteldream",
+ "spanishFontType":1,
+ "neutralSpanishText":"pasteldream",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"pasteldream",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_yugen",
+ "englishUsText":"yugennoran",
+ "englishUsFontType":1,
+ "frenchText":"yugennoran",
+ "frenchFontType":1,
+ "italianText":"yugennoran",
+ "italianFontType":1,
+ "germanText":"yugennoran",
+ "germanFontType":1,
+ "spanishText":"yugennoran",
+ "spanishFontType":1,
+ "neutralSpanishText":"yugennoran",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"yugennoran",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_ygnarr",
+ "englishUsText":"infiniterebellion",
+ "englishUsFontType":1,
+ "frenchText":"infiniterebellion",
+ "frenchFontType":1,
+ "italianText":"infiniterebellion",
+ "italianFontType":1,
+ "germanText":"infiniterebellion",
+ "germanFontType":1,
+ "spanishText":"infiniterebellion",
+ "spanishFontType":1,
+ "neutralSpanishText":"infiniterebellion",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"infiniterebellion",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_57mono",
+ "englishUsText":"konamono☆",
+ "englishUsFontType":1,
+ "frenchText":"konamono☆",
+ "frenchFontType":1,
+ "italianText":"konamono☆",
+ "italianFontType":1,
+ "germanText":"konamono☆",
+ "germanFontType":1,
+ "spanishText":"konamono☆",
+ "spanishFontType":1,
+ "neutralSpanishText":"konamono☆",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"konamono☆",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_kaidan",
+ "englishUsText":"χ-dan",
+ "englishUsFontType":1,
+ "frenchText":"χ-dan",
+ "frenchFontType":1,
+ "italianText":"χ-dan",
+ "italianFontType":1,
+ "germanText":"χ-dan",
+ "germanFontType":1,
+ "spanishText":"χ-dan",
+ "spanishFontType":1,
+ "neutralSpanishText":"χ-dan",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"χ-dan",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_uheart",
+ "englishUsText":"undeadheart(ikarinowarriors)",
+ "englishUsFontType":1,
+ "frenchText":"undeadheart(ikarinowarriors)",
+ "frenchFontType":1,
+ "italianText":"undeadheart(ikarinowarriors)",
+ "italianFontType":1,
+ "germanText":"undeadheart(ikarinowarriors)",
+ "germanFontType":1,
+ "spanishText":"undeadheart(ikarinowarriors)",
+ "spanishFontType":1,
+ "neutralSpanishText":"undeadheart(ikarinowarriors)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"undeadheart(ikarinowarriors)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_takamg",
+ "englishUsText":"shiritsutakamagaharagakuenkoukou・kouka",
+ "englishUsFontType":1,
+ "frenchText":"shiritsutakamagaharagakuenkoukou・kouka",
+ "frenchFontType":1,
+ "italianText":"shiritsutakamagaharagakuenkoukou・kouka",
+ "italianFontType":1,
+ "germanText":"shiritsutakamagaharagakuenkoukou・kouka",
+ "germanFontType":1,
+ "spanishText":"shiritsutakamagaharagakuenkoukou・kouka",
+ "spanishFontType":1,
+ "neutralSpanishText":"shiritsutakamagaharagakuenkoukou・kouka",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"shiritsutakamagaharagakuenkoukou・kouka",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_83noma",
+ "englishUsText":"yaminomahoushoujo",
+ "englishUsFontType":1,
+ "frenchText":"yaminomahoushoujo",
+ "frenchFontType":1,
+ "italianText":"yaminomahoushoujo",
+ "italianFontType":1,
+ "germanText":"yaminomahoushoujo",
+ "germanFontType":1,
+ "spanishText":"yaminomahoushoujo",
+ "spanishFontType":1,
+ "neutralSpanishText":"yaminomahoushoujo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"yaminomahoushoujo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_omirai",
+ "englishUsText":"originalmirai",
+ "englishUsFontType":1,
+ "frenchText":"originalmirai",
+ "frenchFontType":1,
+ "italianText":"originalmirai",
+ "italianFontType":1,
+ "germanText":"originalmirai",
+ "germanFontType":1,
+ "spanishText":"originalmirai",
+ "spanishFontType":1,
+ "neutralSpanishText":"originalmirai",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"originalmirai",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_ymtgen",
+ "englishUsText":"yumetogenjitsunokyoukaisen",
+ "englishUsFontType":1,
+ "frenchText":"yumetogenjitsunokyoukaisen",
+ "frenchFontType":1,
+ "italianText":"yumetogenjitsunokyoukaisen",
+ "italianFontType":1,
+ "germanText":"yumetogenjitsunokyoukaisen",
+ "germanFontType":1,
+ "spanishText":"yumetogenjitsunokyoukaisen",
+ "spanishFontType":1,
+ "neutralSpanishText":"yumetogenjitsunokyoukaisen",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"yumetogenjitsunokyoukaisen",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_msclht",
+ "englishUsText":"mymuscleheart",
+ "englishUsFontType":1,
+ "frenchText":"mymuscleheart",
+ "frenchFontType":1,
+ "italianText":"mymuscleheart",
+ "italianFontType":1,
+ "germanText":"mymuscleheart",
+ "germanFontType":1,
+ "spanishText":"mymuscleheart",
+ "spanishFontType":1,
+ "neutralSpanishText":"mymuscleheart",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"mymuscleheart",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_chaost",
+ "englishUsText":"!!!chaostime!!!",
+ "englishUsFontType":1,
+ "frenchText":"!!!chaostime!!!",
+ "frenchFontType":1,
+ "italianText":"!!!chaostime!!!",
+ "italianFontType":1,
+ "germanText":"!!!chaostime!!!",
+ "germanFontType":1,
+ "spanishText":"!!!chaostime!!!",
+ "spanishFontType":1,
+ "neutralSpanishText":"!!!chaostime!!!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"!!!chaostime!!!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_souryu",
+ "englishUsText":"souryunoran",
+ "englishUsFontType":1,
+ "frenchText":"souryunoran",
+ "frenchFontType":1,
+ "italianText":"souryunoran",
+ "italianFontType":1,
+ "germanText":"souryunoran",
+ "germanFontType":1,
+ "spanishText":"souryunoran",
+ "spanishFontType":1,
+ "neutralSpanishText":"souryunoran",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"souryunoran",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_2ge8ji",
+ "englishUsText":"koi",
+ "englishUsFontType":1,
+ "frenchText":"koi",
+ "frenchFontType":1,
+ "italianText":"koi",
+ "italianFontType":1,
+ "germanText":"koi",
+ "germanFontType":1,
+ "spanishText":"koi",
+ "spanishFontType":1,
+ "neutralSpanishText":"koi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"koi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_kyksmj",
+ "englishUsText":"silentmajority",
+ "englishUsFontType":1,
+ "frenchText":"silentmajority",
+ "frenchFontType":1,
+ "italianText":"silentmajority",
+ "italianFontType":1,
+ "germanText":"silentmajority",
+ "germanFontType":1,
+ "spanishText":"silentmajority",
+ "spanishFontType":1,
+ "neutralSpanishText":"silentmajority",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"silentmajority",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_krbld",
+ "englishUsText":"betheone",
+ "englishUsFontType":1,
+ "frenchText":"betheone",
+ "frenchFontType":1,
+ "italianText":"betheone",
+ "italianFontType":1,
+ "germanText":"betheone",
+ "germanFontType":1,
+ "spanishText":"betheone",
+ "spanishFontType":1,
+ "neutralSpanishText":"betheone",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"betheone",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_mikuse",
+ "englishUsText":"senbonzakura",
+ "englishUsFontType":1,
+ "frenchText":"senbonzakura",
+ "frenchFontType":1,
+ "italianText":"senbonzakura",
+ "italianFontType":1,
+ "germanText":"senbonzakura",
+ "germanFontType":1,
+ "spanishText":"senbonzakura",
+ "spanishFontType":1,
+ "neutralSpanishText":"senbonzakura",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"senbonzakura",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_miku39",
+ "englishUsText":"mikumikunishiteageru♪【shiteyanyo】",
+ "englishUsFontType":1,
+ "frenchText":"mikumikunishiteageru♪【shiteyanyo】",
+ "frenchFontType":1,
+ "italianText":"mikumikunishiteageru♪【shiteyanyo】",
+ "italianFontType":1,
+ "germanText":"mikumikunishiteageru♪【shiteyanyo】",
+ "germanFontType":1,
+ "spanishText":"mikumikunishiteageru♪【shiteyanyo】",
+ "spanishFontType":1,
+ "neutralSpanishText":"mikumikunishiteageru♪【shiteyanyo】",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"mikumikunishiteageru♪【shiteyanyo】",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_mikuer",
+ "englishUsText":"hatsunemikunoshoushitsu-gekijouban-",
+ "englishUsFontType":1,
+ "frenchText":"hatsunemikunoshoushitsu-gekijouban-",
+ "frenchFontType":1,
+ "italianText":"hatsunemikunoshoushitsu-gekijouban-",
+ "italianFontType":1,
+ "germanText":"hatsunemikunoshoushitsu-gekijouban-",
+ "germanFontType":1,
+ "spanishText":"hatsunemikunoshoushitsu-gekijouban-",
+ "spanishFontType":1,
+ "neutralSpanishText":"hatsunemikunoshoushitsu-gekijouban-",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"hatsunemikunoshoushitsu-gekijouban-",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_otomus",
+ "englishUsText":"otomushiwotsukamaero!",
+ "englishUsFontType":1,
+ "frenchText":"otomushiwotsukamaero!",
+ "frenchFontType":1,
+ "italianText":"otomushiwotsukamaero!",
+ "italianFontType":1,
+ "germanText":"otomushiwotsukamaero!",
+ "germanFontType":1,
+ "spanishText":"otomushiwotsukamaero!",
+ "spanishFontType":1,
+ "neutralSpanishText":"otomushiwotsukamaero!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"otomushiwotsukamaero!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_ymyrp4",
+ "englishUsText":"boukyakunotirnanog",
+ "englishUsFontType":1,
+ "frenchText":"boukyakunotirnanog",
+ "frenchFontType":1,
+ "italianText":"boukyakunotirnanog",
+ "italianFontType":1,
+ "germanText":"boukyakunotirnanog",
+ "germanFontType":1,
+ "spanishText":"boukyakunotirnanog",
+ "spanishFontType":1,
+ "neutralSpanishText":"boukyakunotirnanog",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"boukyakunotirnanog",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_warya",
+ "englishUsText":"sayonaravarya",
+ "englishUsFontType":1,
+ "frenchText":"sayonaravarya",
+ "frenchFontType":1,
+ "italianText":"sayonaravarya",
+ "italianFontType":1,
+ "germanText":"sayonaravarya",
+ "germanFontType":1,
+ "spanishText":"sayonaravarya",
+ "spanishFontType":1,
+ "neutralSpanishText":"sayonaravarya",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"sayonaravarya",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_snyq",
+ "englishUsText":"shouninyok-q",
+ "englishUsFontType":1,
+ "frenchText":"shouninyok-q",
+ "frenchFontType":1,
+ "italianText":"shouninyok-q",
+ "italianFontType":1,
+ "germanText":"shouninyok-q",
+ "germanFontType":1,
+ "spanishText":"shouninyok-q",
+ "spanishFontType":1,
+ "neutralSpanishText":"shouninyok-q",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"shouninyok-q",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_dsadvn",
+ "englishUsText":"d′sadventurenote",
+ "englishUsFontType":1,
+ "frenchText":"d′sadventurenote",
+ "frenchFontType":1,
+ "italianText":"d′sadventurenote",
+ "italianFontType":1,
+ "germanText":"d′sadventurenote",
+ "germanFontType":1,
+ "spanishText":"d′sadventurenote",
+ "spanishFontType":1,
+ "neutralSpanishText":"d′sadventurenote",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"d′sadventurenote",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_coro4",
+ "englishUsText":"corocorocomic40thanniversarysong",
+ "englishUsFontType":1,
+ "frenchText":"corocorocomic40thanniversarysong",
+ "frenchFontType":1,
+ "italianText":"corocorocomic40thanniversarysong",
+ "italianFontType":1,
+ "germanText":"corocorocomic40thanniversarysong",
+ "germanFontType":1,
+ "spanishText":"corocorocomic40thanniversarysong",
+ "spanishFontType":1,
+ "neutralSpanishText":"corocorocomic40thanniversarysong",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"corocorocomic40thanniversarysong",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_589him",
+ "englishUsText":"rurounokohakuhime",
+ "englishUsFontType":1,
+ "frenchText":"rurounokohakuhime",
+ "frenchFontType":1,
+ "italianText":"rurounokohakuhime",
+ "italianFontType":1,
+ "germanText":"rurounokohakuhime",
+ "germanFontType":1,
+ "spanishText":"rurounokohakuhime",
+ "spanishFontType":1,
+ "neutralSpanishText":"rurounokohakuhime",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"rurounokohakuhime",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_tuku43",
+ "englishUsText":"tsukuyomi",
+ "englishUsFontType":1,
+ "frenchText":"tsukuyomi",
+ "frenchFontType":1,
+ "italianText":"tsukuyomi",
+ "italianFontType":1,
+ "germanText":"tsukuyomi",
+ "germanFontType":1,
+ "spanishText":"tsukuyomi",
+ "spanishFontType":1,
+ "neutralSpanishText":"tsukuyomi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"tsukuyomi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_7fuku",
+ "englishUsText":"gekiun!shichifukuhappycrew",
+ "englishUsFontType":1,
+ "frenchText":"gekiun!shichifukuhappycrew",
+ "frenchFontType":1,
+ "italianText":"gekiun!shichifukuhappycrew",
+ "italianFontType":1,
+ "germanText":"gekiun!shichifukuhappycrew",
+ "germanFontType":1,
+ "spanishText":"gekiun!shichifukuhappycrew",
+ "spanishFontType":1,
+ "neutralSpanishText":"gekiun!shichifukuhappycrew",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"gekiun!shichifukuhappycrew",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_orochi",
+ "englishUsText":"8orochi",
+ "englishUsFontType":1,
+ "frenchText":"8orochi",
+ "frenchFontType":1,
+ "italianText":"8orochi",
+ "italianFontType":1,
+ "germanText":"8orochi",
+ "germanFontType":1,
+ "spanishText":"8orochi",
+ "spanishFontType":1,
+ "neutralSpanishText":"8orochi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"8orochi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_hkgmag",
+ "englishUsText":"houkago☆magician",
+ "englishUsFontType":1,
+ "frenchText":"houkago☆magician",
+ "frenchFontType":1,
+ "italianText":"houkago☆magician",
+ "italianFontType":1,
+ "germanText":"houkago☆magician",
+ "germanFontType":1,
+ "spanishText":"houkago☆magician",
+ "spanishFontType":1,
+ "neutralSpanishText":"houkago☆magician",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"houkago☆magician",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_tongat",
+ "englishUsText":"tongachin",
+ "englishUsFontType":1,
+ "frenchText":"tongachin",
+ "frenchFontType":1,
+ "italianText":"tongachin",
+ "italianFontType":1,
+ "germanText":"tongachin",
+ "germanFontType":1,
+ "spanishText":"tongachin",
+ "spanishFontType":1,
+ "neutralSpanishText":"tongachin",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"tongachin",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_ta5ta5",
+ "englishUsText":"turquoisetachometer",
+ "englishUsFontType":1,
+ "frenchText":"turquoisetachometer",
+ "frenchFontType":1,
+ "italianText":"turquoisetachometer",
+ "italianFontType":1,
+ "germanText":"turquoisetachometer",
+ "germanFontType":1,
+ "spanishText":"turquoisetachometer",
+ "spanishFontType":1,
+ "neutralSpanishText":"turquoisetachometer",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"turquoisetachometer",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_glokey",
+ "englishUsText":"gloria",
+ "englishUsFontType":1,
+ "frenchText":"gloria",
+ "frenchFontType":1,
+ "italianText":"gloria",
+ "italianFontType":1,
+ "germanText":"gloria",
+ "germanFontType":1,
+ "spanishText":"gloria",
+ "spanishFontType":1,
+ "neutralSpanishText":"gloria",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"gloria",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_allimh",
+ "englishUsText":"allinmyheart",
+ "englishUsFontType":1,
+ "frenchText":"allinmyheart",
+ "frenchFontType":1,
+ "italianText":"allinmyheart",
+ "italianFontType":1,
+ "germanText":"allinmyheart",
+ "germanFontType":1,
+ "spanishText":"allinmyheart",
+ "spanishFontType":1,
+ "neutralSpanishText":"allinmyheart",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"allinmyheart",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_goth",
+ "englishUsText":"don'tcut",
+ "englishUsFontType":1,
+ "frenchText":"don'tcut",
+ "frenchFontType":1,
+ "italianText":"don'tcut",
+ "italianFontType":1,
+ "germanText":"don'tcut",
+ "germanFontType":1,
+ "spanishText":"don'tcut",
+ "spanishFontType":1,
+ "neutralSpanishText":"don'tcut",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"don'tcut",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_flksak",
+ "englishUsText":"sakura(haru)",
+ "englishUsFontType":1,
+ "frenchText":"sakura(haru)",
+ "frenchFontType":1,
+ "italianText":"sakura(haru)",
+ "italianFontType":1,
+ "germanText":"sakura(haru)",
+ "germanFontType":1,
+ "spanishText":"sakura(haru)",
+ "spanishFontType":1,
+ "neutralSpanishText":"sakura(haru)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"sakura(haru)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_skrexh",
+ "englishUsText":"sakuraexhaust",
+ "englishUsFontType":1,
+ "frenchText":"sakuraexhaust",
+ "frenchFontType":1,
+ "italianText":"sakuraexhaust",
+ "italianFontType":1,
+ "germanText":"sakuraexhaust",
+ "germanFontType":1,
+ "spanishText":"sakuraexhaust",
+ "spanishFontType":1,
+ "neutralSpanishText":"sakuraexhaust",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"sakuraexhaust",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_blrose",
+ "englishUsText":"blueroseruin",
+ "englishUsFontType":1,
+ "frenchText":"blueroseruin",
+ "frenchFontType":1,
+ "italianText":"blueroseruin",
+ "italianFontType":1,
+ "germanText":"blueroseruin",
+ "germanFontType":1,
+ "spanishText":"blueroseruin",
+ "spanishFontType":1,
+ "neutralSpanishText":"blueroseruin",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"blueroseruin",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_haryu",
+ "englishUsText":"haryu",
+ "englishUsFontType":1,
+ "frenchText":"haryu",
+ "frenchFontType":1,
+ "italianText":"haryu",
+ "italianFontType":1,
+ "germanText":"haryu",
+ "germanFontType":1,
+ "spanishText":"haryu",
+ "spanishFontType":1,
+ "neutralSpanishText":"haryu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"haryu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_clspvn",
+ "englishUsText":"pavaneforadeadprincess",
+ "englishUsFontType":1,
+ "frenchText":"pavaneforadeadprincess",
+ "frenchFontType":1,
+ "italianText":"pavaneforadeadprincess",
+ "italianFontType":1,
+ "germanText":"pavaneforadeadprincess",
+ "germanFontType":1,
+ "spanishText":"pavaneforadeadprincess",
+ "spanishFontType":1,
+ "neutralSpanishText":"pavaneforadeadprincess",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"pavaneforadeadprincess",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_tank",
+ "englishUsText":"yawarakatank",
+ "englishUsFontType":1,
+ "frenchText":"yawarakatank",
+ "frenchFontType":1,
+ "italianText":"yawarakatank",
+ "italianFontType":1,
+ "germanText":"yawarakatank",
+ "germanFontType":1,
+ "spanishText":"yawarakatank",
+ "spanishFontType":1,
+ "neutralSpanishText":"yawarakatank",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"yawarakatank",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_tdm",
+ "englishUsText":"taikodrummonster",
+ "englishUsFontType":1,
+ "frenchText":"taikodrummonster",
+ "frenchFontType":1,
+ "italianText":"taikodrummonster",
+ "italianFontType":1,
+ "germanText":"taikodrummonster",
+ "germanFontType":1,
+ "spanishText":"taikodrummonster",
+ "spanishFontType":1,
+ "neutralSpanishText":"taikodrummonster",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"taikodrummonster",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_gekikk",
+ "englishUsText":"hardcorenokokoroe",
+ "englishUsFontType":1,
+ "frenchText":"hardcorenokokoroe",
+ "frenchFontType":1,
+ "italianText":"hardcorenokokoroe",
+ "italianFontType":1,
+ "germanText":"hardcorenokokoroe",
+ "germanFontType":1,
+ "spanishText":"hardcorenokokoroe",
+ "spanishFontType":1,
+ "neutralSpanishText":"hardcorenokokoroe",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"hardcorenokokoroe",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_oka47",
+ "englishUsText":"kurukurukurokkuru",
+ "englishUsFontType":1,
+ "frenchText":"kurukurukurokkuru",
+ "frenchFontType":1,
+ "italianText":"kurukurukurokkuru",
+ "italianFontType":1,
+ "germanText":"kurukurukurokkuru",
+ "germanFontType":1,
+ "spanishText":"kurukurukurokkuru",
+ "spanishFontType":1,
+ "neutralSpanishText":"kurukurukurokkuru",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"kurukurukurokkuru",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_castle",
+ "englishUsText":"blackroseapostle",
+ "englishUsFontType":1,
+ "frenchText":"blackroseapostle",
+ "frenchFontType":1,
+ "italianText":"blackroseapostle",
+ "italianFontType":1,
+ "germanText":"blackroseapostle",
+ "germanFontType":1,
+ "spanishText":"blackroseapostle",
+ "spanishFontType":1,
+ "neutralSpanishText":"blackroseapostle",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"blackroseapostle",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_thncrd",
+ "englishUsText":"necrofantasia~arr.demetori",
+ "englishUsFontType":1,
+ "frenchText":"necrofantasia~arr.demetori",
+ "frenchFontType":1,
+ "italianText":"necrofantasia~arr.demetori",
+ "italianFontType":1,
+ "germanText":"necrofantasia~arr.demetori",
+ "germanFontType":1,
+ "spanishText":"necrofantasia~arr.demetori",
+ "spanishFontType":1,
+ "neutralSpanishText":"necrofantasia~arr.demetori",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"necrofantasia~arr.demetori",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_syclsn",
+ "englishUsText":"newworld",
+ "englishUsFontType":1,
+ "frenchText":"newworld",
+ "frenchFontType":1,
+ "italianText":"newworld",
+ "italianFontType":1,
+ "germanText":"newworld",
+ "germanFontType":1,
+ "spanishText":"newworld",
+ "spanishFontType":1,
+ "neutralSpanishText":"newworld",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"newworld",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_kakunin",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"syougou_32segw",
+ "englishUsText":"Ephemeral Butterfly",
+ "englishUsFontType":1,
+ "frenchText":"Papillon éphémère",
+ "frenchFontType":1,
+ "italianText":"Farfalla effimera",
+ "italianFontType":1,
+ "germanText":"Flüchtiger Schmetterling",
+ "germanFontType":1,
+ "spanishText":"Mariposa efímera",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mariposa efímera",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Borboleta Efêmera",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_butou9",
+ "englishUsText":"Blossom Storm",
+ "englishUsFontType":1,
+ "frenchText":"Tempête de fleurs",
+ "frenchFontType":1,
+ "italianText":"Tempesta di germogli",
+ "italianFontType":1,
+ "germanText":"Blütensturm",
+ "germanFontType":1,
+ "spanishText":"Tormenta de flores",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tormenta de flores",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tempestade Florescente",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_cls10",
+ "englishUsText":"Heaven and Hell",
+ "englishUsFontType":1,
+ "frenchText":"Enfer et paradis",
+ "frenchFontType":1,
+ "italianText":"Paradiso e inferno",
+ "italianFontType":1,
+ "germanText":"Himmel und Hölle",
+ "germanFontType":1,
+ "spanishText":"Cielo e infierno",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cielo e infierno",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Céu e Inferno",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_clsca",
+ "englishUsText":"Passionate Drumroll!",
+ "englishUsFontType":1,
+ "frenchText":"Roulement passionné !",
+ "frenchFontType":1,
+ "italianText":"Rullo di tamburo focoso!",
+ "italianFontType":1,
+ "germanText":"Toller Trommelwirbel!",
+ "germanFontType":1,
+ "spanishText":"¡Redoble apasionado!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Redoble apasionado!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Rufo Fervoroso!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_clsh69",
+ "englishUsText":"Trust Your Sixth Sense!",
+ "englishUsFontType":1,
+ "frenchText":"Fais confiance à ton sixième sens !",
+ "frenchFontType":1,
+ "italianText":"Fidati del sesto senso!",
+ "italianFontType":1,
+ "germanText":"Traue deinem 6. Sinn!",
+ "germanFontType":1,
+ "spanishText":"¡Confía en tu instinto!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Confía en tu instinto!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Confie no Sexto Sentido!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_clsr",
+ "englishUsText":"I’m A Rock Drummer!",
+ "englishUsFontType":1,
+ "frenchText":"Batteur de rock !",
+ "frenchFontType":1,
+ "italianText":"Il mio tamburo è rock!",
+ "italianFontType":1,
+ "germanText":"Ich bin Rock-Drummer!",
+ "germanFontType":1,
+ "spanishText":"¡Soy batería de rock!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Soy baterista de rock!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu Manjo de Tambor!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_clsw",
+ "englishUsText":"Ultimate Precision!",
+ "englishUsFontType":1,
+ "frenchText":"Précision ultime !",
+ "frenchFontType":1,
+ "italianText":"Precisione incredibile!",
+ "italianFontType":1,
+ "germanText":"Ultimative Präzision!",
+ "germanFontType":1,
+ "spanishText":"¡La mejor precisión!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡La mejor precisión!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Precisão Suprema!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_crkvic",
+ "englishUsText":"Goddess of Victory",
+ "englishUsFontType":1,
+ "frenchText":"Déesse de la victoire",
+ "frenchFontType":1,
+ "italianText":"Dea della vittoria",
+ "italianFontType":1,
+ "germanText":"Siegesgöttin",
+ "germanFontType":1,
+ "spanishText":"Diosa de la victoria",
+ "spanishFontType":1,
+ "neutralSpanishText":"Diosa de la victoria",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Deusa da Vitória",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_crturb",
+ "englishUsText":"Let’s drive!",
+ "englishUsFontType":1,
+ "frenchText":"Prenons la route !",
+ "frenchFontType":1,
+ "italianText":"Andiamo!",
+ "italianFontType":1,
+ "germanText":"Auf geht's!",
+ "germanFontType":1,
+ "spanishText":"¡A conducir!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡A manejar!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vamos Nessa!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_d96can",
+ "englishUsText":"Happy Halloween!",
+ "englishUsFontType":1,
+ "frenchText":"Joyeux Halloween !",
+ "frenchFontType":1,
+ "italianText":"Buon Halloween!",
+ "italianFontType":1,
+ "germanText":"Happy Halloween!",
+ "germanFontType":1,
+ "spanishText":"¡Feliz Halloween!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Feliz Halloween!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Feliz Dia das Bruxas!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_default01",
+ "englishUsText":"First DON!",
+ "englishUsFontType":1,
+ "frenchText":"Premier DON !",
+ "frenchFontType":1,
+ "italianText":"Primo DON!",
+ "italianFontType":1,
+ "germanText":"Erster DON!",
+ "germanFontType":1,
+ "spanishText":"¡Primer DON!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Primer DON!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Primeiro DON!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_default02",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_default03",
+ "englishUsText":"Taiko Newbie",
+ "englishUsFontType":1,
+ "frenchText":"Débutant de Taiko",
+ "frenchFontType":1,
+ "italianText":"Novellino",
+ "italianFontType":1,
+ "germanText":"Taiko-Neuling",
+ "germanFontType":1,
+ "spanishText":"Novato del Taiko",
+ "spanishFontType":1,
+ "neutralSpanishText":"Novato del Taiko",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Iniciante em Taiko",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_default04",
+ "englishUsText":"The Taiko Master Journey Begins",
+ "englishUsFontType":1,
+ "frenchText":"Le périple du maître Taiko commence",
+ "frenchFontType":1,
+ "italianText":"Inizia il viaggio del maestro di Taiko",
+ "italianFontType":1,
+ "germanText":"Die Reise des Taiko-Meisters beginnt",
+ "germanFontType":1,
+ "spanishText":"Empieza el viaje del maestro de Taiko",
+ "spanishFontType":1,
+ "neutralSpanishText":"Empieza el viaje del maestro de Taiko",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Começa a Jornada do Mestre de Taiko",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_dora",
+ "englishUsText":"I ♥ Doraemon",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ Doraemon",
+ "frenchFontType":1,
+ "italianText":"I ♥ Doraemon",
+ "italianFontType":1,
+ "germanText":"Ich ♥ Doraemon",
+ "germanFontType":1,
+ "spanishText":"I ♥ Doraemon",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ Doraemon",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ Doraemon",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_eatem",
+ "englishUsText":"I ♥ Pac-Man",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ Pac-Man",
+ "frenchFontType":1,
+ "italianText":"I ♥ Pac-Man",
+ "italianFontType":1,
+ "germanText":"Ich ♥ Pac-Man",
+ "germanFontType":1,
+ "spanishText":"I ♥ Pac-Man",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ Pac-Man",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ Pac-Man",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_flyawy",
+ "englishUsText":"Dream Painter",
+ "englishUsFontType":1,
+ "frenchText":"Peintre de rêve",
+ "frenchFontType":1,
+ "italianText":"Pittore di sogni",
+ "italianFontType":1,
+ "germanText":"Traummaler",
+ "germanFontType":1,
+ "spanishText":"Pintor de sueños",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pintor de sueños",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pintor de Sonhos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash001",
+ "englishUsText":"Taiko Caveman",
+ "englishUsFontType":1,
+ "frenchText":"Cro-Magnon du Taiko",
+ "frenchFontType":1,
+ "italianText":"Uomo delle caverne Taiko",
+ "italianFontType":1,
+ "germanText":"Taiko-Höhlenmensch",
+ "germanFontType":1,
+ "spanishText":"Taiko cavernícola",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko cavernícola",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Troglodita de Taiko",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash002",
+ "englishUsText":"Taiko Oil Magnate",
+ "englishUsFontType":1,
+ "frenchText":"Magnat du Taiko",
+ "frenchFontType":1,
+ "italianText":"Petroliere Taiko",
+ "italianFontType":1,
+ "germanText":"Taiko-Ölmagnat",
+ "germanFontType":1,
+ "spanishText":"Taiko magnate petróleo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko magnate petróleo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Magnata de Taiko",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash003",
+ "englishUsText":"Taiko Manager",
+ "englishUsFontType":1,
+ "frenchText":"Gérant de Taiko",
+ "frenchFontType":1,
+ "italianText":"Dirigente Taiko",
+ "italianFontType":1,
+ "germanText":"Taiko-Manager",
+ "germanFontType":1,
+ "spanishText":"Taiko director",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko director",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Gerente de Taiko",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash004",
+ "englishUsText":"Taiko Weirdo",
+ "englishUsFontType":1,
+ "frenchText":"Cinglé du Taiko",
+ "frenchFontType":1,
+ "italianText":"Strambo Taiko",
+ "italianFontType":1,
+ "germanText":"Taiko-Spinner",
+ "germanFontType":1,
+ "spanishText":"Taiko rarito",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko rarito",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Esquisitão de Taiko",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash005",
+ "englishUsText":"Master of Excuses",
+ "englishUsFontType":1,
+ "frenchText":"Maître des excuses",
+ "frenchFontType":1,
+ "italianText":"Maestro delle scuse",
+ "italianFontType":1,
+ "germanText":"Meister der Ausreden",
+ "germanFontType":1,
+ "spanishText":"Maestro de excusas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro de excusas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Desculpas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash006",
+ "englishUsText":"Master of Voices",
+ "englishUsFontType":1,
+ "frenchText":"Maître des voix",
+ "frenchFontType":1,
+ "italianText":"Maestro delle voci",
+ "italianFontType":1,
+ "germanText":"Meister der Stimmen",
+ "germanFontType":1,
+ "spanishText":"Maestro de voces",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro de voces",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Vozes",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash007",
+ "englishUsText":"Master of Winking",
+ "englishUsFontType":1,
+ "frenchText":"Maître des clins d'œil",
+ "frenchFontType":1,
+ "italianText":"Maestro dell'occhiolino",
+ "italianFontType":1,
+ "germanText":"Meister des Zwinkerns",
+ "germanFontType":1,
+ "spanishText":"Maestro de guiños",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro de guiños",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Piscadelas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash008",
+ "englishUsText":"Master of Fortune-Telling",
+ "englishUsFontType":1,
+ "frenchText":"Maître de la divination",
+ "frenchFontType":1,
+ "italianText":"Maestro della previsione",
+ "italianFontType":1,
+ "germanText":"Meister der Wahrsagerei",
+ "germanFontType":1,
+ "spanishText":"Maestro de adivinación",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro de adivinación",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Profecias",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash009",
+ "englishUsText":"Master of Shipping",
+ "englishUsFontType":1,
+ "frenchText":"Maître de la navigation",
+ "frenchFontType":1,
+ "italianText":"Maestro delle consegne",
+ "italianFontType":1,
+ "germanText":"Meister der Schifffahrt",
+ "germanFontType":1,
+ "spanishText":"Maestro de barcos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro de barcos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Remessas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash010",
+ "englishUsText":"Master of Consideration",
+ "englishUsFontType":1,
+ "frenchText":"Maître des égards",
+ "frenchFontType":1,
+ "italianText":"Maestro d. consideraz.",
+ "italianFontType":1,
+ "germanText":"Meister der Rücksicht",
+ "germanFontType":1,
+ "spanishText":"Maestro de consideración",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro de consideración",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Consideração",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash011",
+ "englishUsText":"Master of Crane Games",
+ "englishUsFontType":1,
+ "frenchText":"Maître de l'attrape-peluche",
+ "frenchFontType":1,
+ "italianText":"Maestro del gioco d. gru",
+ "italianFontType":1,
+ "germanText":"Meister der Kranspiele",
+ "germanFontType":1,
+ "spanishText":"Maestro de juegos de grúas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro de juegos de grúas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Jogos de Garra",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash012",
+ "englishUsText":"Master of Walking",
+ "englishUsFontType":1,
+ "frenchText":"Maître de la marche",
+ "frenchFontType":1,
+ "italianText":"Maestro delle camminate",
+ "italianFontType":1,
+ "germanText":"Meister des Laufens",
+ "germanFontType":1,
+ "spanishText":"Maestro del caminar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro del caminar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Caminhadas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash013",
+ "englishUsText":"Master of Selfies",
+ "englishUsFontType":1,
+ "frenchText":"Maître des selfies",
+ "frenchFontType":1,
+ "italianText":"Maestro dei selfie",
+ "italianFontType":1,
+ "germanText":"Meister der Selfies",
+ "germanFontType":1,
+ "spanishText":"Maestro de selfis",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro de selfis",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Selfies",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash014",
+ "englishUsText":"Master of Ladies Nights",
+ "englishUsFontType":1,
+ "frenchText":"Maître des soirées filles",
+ "frenchFontType":1,
+ "italianText":"Maestro d. serate fuori",
+ "italianFontType":1,
+ "germanText":"Meister der Ladies Night",
+ "germanFontType":1,
+ "spanishText":"Maestro noches de chicas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro noches de chicas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Festas Fem.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash015",
+ "englishUsText":"Master of Long Baths",
+ "englishUsFontType":1,
+ "frenchText":"Maître des bains",
+ "frenchFontType":1,
+ "italianText":"Maestro dei lunghi bagni",
+ "italianFontType":1,
+ "germanText":"Meister der langen Bäder",
+ "germanFontType":1,
+ "spanishText":"Maestro de baños largos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro de baños largos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Banhos Longos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash016",
+ "englishUsText":"Master of Riddles",
+ "englishUsFontType":1,
+ "frenchText":"Maître des énigmes",
+ "frenchFontType":1,
+ "italianText":"Maestro d. indovinelli",
+ "italianFontType":1,
+ "germanText":"Meister der Rätsel",
+ "germanFontType":1,
+ "spanishText":"Maestro de acertijos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro de acertijos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Charadas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash017",
+ "englishUsText":"Master of Hot Pots",
+ "englishUsFontType":1,
+ "frenchText":"Maître de la fondue",
+ "frenchFontType":1,
+ "italianText":"Maestro d. piatti caldi",
+ "italianFontType":1,
+ "germanText":"Meister der heißen Töpfe",
+ "germanFontType":1,
+ "spanishText":"Maestro de calderos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro de calderos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Hot Pots",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash018",
+ "englishUsText":"Master of Happy-go-Lucky",
+ "englishUsFontType":1,
+ "frenchText":"Maître de l'insouciance",
+ "frenchFontType":1,
+ "italianText":"Maestro d. spensieratez.",
+ "italianFontType":1,
+ "germanText":"Meister des Frohsinns",
+ "germanFontType":1,
+ "spanishText":"Maestro despreocupado",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro despreocupado",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Alegria",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash019",
+ "englishUsText":"Master of Soliloquys",
+ "englishUsFontType":1,
+ "frenchText":"Maître des soliloques",
+ "frenchFontType":1,
+ "italianText":"Maestro del soliloquio",
+ "italianFontType":1,
+ "germanText":"Meister der Monologe",
+ "germanFontType":1,
+ "spanishText":"Maestro de soliloquios",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro de soliloquios",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Solilóquios",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash020",
+ "englishUsText":"Master of Assistance",
+ "englishUsFontType":1,
+ "frenchText":"Maître de l'assistance",
+ "frenchFontType":1,
+ "italianText":"Maestro dell'assistenza",
+ "italianFontType":1,
+ "germanText":"Meister der Hilfe",
+ "germanFontType":1,
+ "spanishText":"Maestro de la ayuda",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro de la ayuda",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Auxílio",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash021",
+ "englishUsText":"Master of Flea Markets",
+ "englishUsFontType":1,
+ "frenchText":"Maître des marchés aux puces",
+ "frenchFontType":1,
+ "italianText":"Maestro d. mercato pulci",
+ "italianFontType":1,
+ "germanText":"Meister der Flohmärkte",
+ "germanFontType":1,
+ "spanishText":"Maestro de mercadillos",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro de mercados",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Brechós",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash022",
+ "englishUsText":"Master of Crawling",
+ "englishUsFontType":1,
+ "frenchText":"Maître du rampement",
+ "frenchFontType":1,
+ "italianText":"Maestro dello strisciare",
+ "italianFontType":1,
+ "germanText":"Meister des Kriechens",
+ "germanFontType":1,
+ "spanishText":"Maestro del rastreo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro del arrastre",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Rastejar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash023",
+ "englishUsText":"Master of Funny Faces",
+ "englishUsFontType":1,
+ "frenchText":"Maître des grimaces",
+ "frenchFontType":1,
+ "italianText":"Maestro dei volti buffi",
+ "italianFontType":1,
+ "germanText":"Meister der Grimassen",
+ "germanFontType":1,
+ "spanishText":"Maestro caras divertidas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro caras divertidas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Caretas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash024",
+ "englishUsText":"Master of Serious Faces",
+ "englishUsFontType":1,
+ "frenchText":"Maître du sérieux",
+ "frenchFontType":1,
+ "italianText":"Maestro della seriosità",
+ "italianFontType":1,
+ "germanText":"Meister d. ernsten Miene",
+ "germanFontType":1,
+ "spanishText":"Maestro caras serias",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro caras serias",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Carrancas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash025",
+ "englishUsText":"Master of Poems",
+ "englishUsFontType":1,
+ "frenchText":"Maître des poèmes",
+ "frenchFontType":1,
+ "italianText":"Maestro delle poesie",
+ "italianFontType":1,
+ "germanText":"Meister der Gedichte",
+ "germanFontType":1,
+ "spanishText":"Maestro de poemas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro de poemas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Poemas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash026",
+ "englishUsText":"Master of Cooking",
+ "englishUsFontType":1,
+ "frenchText":"Maître de la cuisine",
+ "frenchFontType":1,
+ "italianText":"Maestro di cucina",
+ "italianFontType":1,
+ "germanText":"Meister des Kochens",
+ "germanFontType":1,
+ "spanishText":"Maestro de cocina",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro de cocina",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Cozinha",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash027",
+ "englishUsText":"Master of Drumrolls",
+ "englishUsFontType":1,
+ "frenchText":"Maître des roulements",
+ "frenchFontType":1,
+ "italianText":"Maestro rullo di tamburo",
+ "italianFontType":1,
+ "germanText":"Meister d. Trommelwirbel",
+ "germanFontType":1,
+ "spanishText":"Maestro de redobles",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro de redobles",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Rufos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash028",
+ "englishUsText":"Master of Read-Ignore",
+ "englishUsFontType":1,
+ "frenchText":"Maître de l'ignorance",
+ "frenchFontType":1,
+ "italianText":"Maestro della noncuranza",
+ "italianFontType":1,
+ "germanText":"Meister der Leseignoranz",
+ "germanFontType":1,
+ "spanishText":"Maestro de la ignorancia",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro del leer-ignorar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Ler e Ignorar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash029",
+ "englishUsText":"Master of Fake Sleeping",
+ "englishUsFontType":1,
+ "frenchText":"Maître du sommeil éveillé",
+ "frenchFontType":1,
+ "italianText":"Maestro del non dormire",
+ "italianFontType":1,
+ "germanText":"Meister d. Pseudoschlafs",
+ "germanFontType":1,
+ "spanishText":"Maestro del sueño falso",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro del sueño falso",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Sono Fingido",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash030",
+ "englishUsText":"Happy New DON!",
+ "englishUsFontType":1,
+ "frenchText":"Joyeux nouveau DON !",
+ "frenchFontType":1,
+ "italianText":"Felice DON nuovo!",
+ "italianFontType":1,
+ "germanText":"Froher neuer DON!",
+ "germanFontType":1,
+ "spanishText":"¡Feliz DON nuevo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Feliz DON nuevo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Feliz DON Novo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash031",
+ "englishUsText":"Way to glow!",
+ "englishUsFontType":1,
+ "frenchText":"Pas mal du tout !",
+ "frenchFontType":1,
+ "italianText":"Così si fa!",
+ "italianFontType":1,
+ "germanText":"Schön geleuchtet!",
+ "germanFontType":1,
+ "spanishText":"¡Qué manera de brillar!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Qué manera de brillar!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ManDON bem!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash032",
+ "englishUsText":"Have A Great Year!",
+ "englishUsFontType":1,
+ "frenchText":"Bonne année !",
+ "frenchFontType":1,
+ "italianText":"Buon anno!",
+ "italianFontType":1,
+ "germanText":"Ein tolles Jahr!",
+ "germanFontType":1,
+ "spanishText":"¡Que tengas un buen año!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Que tengas un buen año!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tenha um ótimo ano!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash033",
+ "englishUsText":"Elite DON",
+ "englishUsFontType":1,
+ "frenchText":"DON d'élite",
+ "frenchFontType":1,
+ "italianText":"DON d'élite",
+ "italianFontType":1,
+ "germanText":"Elite-DON",
+ "germanFontType":1,
+ "spanishText":"DON de élite",
+ "spanishFontType":1,
+ "neutralSpanishText":"DON de élite",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DON Elite",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash034",
+ "englishUsText":"Easy Player",
+ "englishUsFontType":1,
+ "frenchText":"Joueur facile",
+ "frenchFontType":1,
+ "italianText":"Giocatore Facile",
+ "italianFontType":1,
+ "germanText":"Leichter Spieler",
+ "germanFontType":1,
+ "spanishText":"Jugador fácil",
+ "spanishFontType":1,
+ "neutralSpanishText":"Jugador fácil",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Jogador Fácil",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash035",
+ "englishUsText":"Normal Player",
+ "englishUsFontType":1,
+ "frenchText":"Joueur normal",
+ "frenchFontType":1,
+ "italianText":"Giocatore Normale",
+ "italianFontType":1,
+ "germanText":"Normaler Spieler",
+ "germanFontType":1,
+ "spanishText":"Jugador normal",
+ "spanishFontType":1,
+ "neutralSpanishText":"Jugador normal",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Jogador Normal",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash036",
+ "englishUsText":"Hard Player",
+ "englishUsFontType":1,
+ "frenchText":"Joueur difficile",
+ "frenchFontType":1,
+ "italianText":"Giocatore Difficile",
+ "italianFontType":1,
+ "germanText":"Schwerer Spieler",
+ "germanFontType":1,
+ "spanishText":"Jugador difícil",
+ "spanishFontType":1,
+ "neutralSpanishText":"Jugador difícil",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Jogador Difícil",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash037",
+ "englishUsText":"Extreme Player",
+ "englishUsFontType":1,
+ "frenchText":"Joueur extrême",
+ "frenchFontType":1,
+ "italianText":"Giocatore Estremo",
+ "italianFontType":1,
+ "germanText":"Extremer Spieler",
+ "germanFontType":1,
+ "spanishText":"Jugador extremo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Jugador extremo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Jogador Extremo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash038",
+ "englishUsText":"Precision Maniac",
+ "englishUsFontType":1,
+ "frenchText":"Maniaque de la précision",
+ "frenchFontType":1,
+ "italianText":"Maniaco della precisione",
+ "italianFontType":1,
+ "germanText":"Präzisionsfreak",
+ "germanFontType":1,
+ "spanishText":"Maníaco de la precisión",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maniaco de la precisión",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Maníaco por Precisão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash039",
+ "englishUsText":"Taiko Elite",
+ "englishUsFontType":1,
+ "frenchText":"Élite de Taiko",
+ "frenchFontType":1,
+ "italianText":"Taiko Élite",
+ "italianFontType":1,
+ "germanText":"Taiko-Elite",
+ "germanFontType":1,
+ "spanishText":"Taiko de élite",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko de élite",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Taiko Elite",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash040",
+ "englishUsText":"No-Look Taiko",
+ "englishUsFontType":1,
+ "frenchText":"Joueur à l'aveugle",
+ "frenchFontType":1,
+ "italianText":"Taiko personificato",
+ "italianFontType":1,
+ "germanText":"Blind-Taiko",
+ "germanFontType":1,
+ "spanishText":"Taiko anodino",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko anodino",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Taiko Sem Olhar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash041",
+ "englishUsText":"I ♥ Taiko",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ Taiko",
+ "frenchFontType":1,
+ "italianText":"I ♥ Taiko",
+ "italianFontType":1,
+ "germanText":"Ich ♥ Taiko",
+ "germanFontType":1,
+ "spanishText":"I ♥ Taiko",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ Taiko",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ Taiko",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash042",
+ "englishUsText":"Different Person Online",
+ "englishUsFontType":1,
+ "frenchText":"Deuxième personnalité en ligne",
+ "frenchFontType":1,
+ "italianText":"Altra persona online",
+ "italianFontType":1,
+ "germanText":"Andere Person online",
+ "germanFontType":1,
+ "spanishText":"Persona distinta online",
+ "spanishFontType":1,
+ "neutralSpanishText":"Persona distinta online",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Outra Pessoa Online",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash043",
+ "englishUsText":"Air Drum",
+ "englishUsFontType":1,
+ "frenchText":"Tambour invisible",
+ "frenchFontType":1,
+ "italianText":"Tamburo invisibile",
+ "italianFontType":1,
+ "germanText":"Lufttrommel",
+ "germanFontType":1,
+ "spanishText":"Tambor invisible",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tambor aéreo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tambor Aéreo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash044",
+ "englishUsText":"Festival Time!",
+ "englishUsFontType":1,
+ "frenchText":"Festival !",
+ "frenchFontType":1,
+ "italianText":"Festival!",
+ "italianFontType":1,
+ "germanText":"Festival-Zeit!",
+ "germanFontType":1,
+ "spanishText":"¡Hora de festival!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Hora de festival!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hora de Festival!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash045",
+ "englishUsText":"I ♥ Money",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ Money",
+ "frenchFontType":1,
+ "italianText":"I ♥ Soldi",
+ "italianFontType":1,
+ "germanText":"Ich ♥ Geld",
+ "germanFontType":1,
+ "spanishText":"I ♥ dinero",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ dinero",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ Dinheiro",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash046",
+ "englishUsText":"I ♥ Rice",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ Rice",
+ "frenchFontType":1,
+ "italianText":"I ♥ Riso",
+ "italianFontType":1,
+ "germanText":"Ich ♥ Reis",
+ "germanFontType":1,
+ "spanishText":"I ♥ arroz",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ arroz",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ Arroz",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash047",
+ "englishUsText":"I ♥ Meat",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ Meat",
+ "frenchFontType":1,
+ "italianText":"I ♥ Carne",
+ "italianFontType":1,
+ "germanText":"Ich ♥ Fleisch",
+ "germanFontType":1,
+ "spanishText":"I ♥ carne",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ carne",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ Carne",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash048",
+ "englishUsText":"I ♥ My Phone",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ My Phone",
+ "frenchFontType":1,
+ "italianText":"I ♥ Telefono",
+ "italianFontType":1,
+ "germanText":"Ich ♥ mein Telefon",
+ "germanFontType":1,
+ "spanishText":"I ♥ mi teléfono",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ mi teléfono",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ Meu Celular",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash049",
+ "englishUsText":"I ♥ Mystery",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ Mystery",
+ "frenchFontType":1,
+ "italianText":"I ♥ Mistero",
+ "italianFontType":1,
+ "germanText":"Ich ♥ Mystery",
+ "germanFontType":1,
+ "spanishText":"I ♥ misterio",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ misterio",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ Mistério",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash050",
+ "englishUsText":"I ♥ DON-chan",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ DON-chan",
+ "frenchFontType":1,
+ "italianText":"I ♥ DON-chan",
+ "italianFontType":1,
+ "germanText":"Ich ♥ DON-chan",
+ "germanFontType":1,
+ "spanishText":"I ♥ DON-chan",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ DON-chan",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ DON-chan",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash051",
+ "englishUsText":"I ♥ KATSU-chan",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ KATSU-chan",
+ "frenchFontType":1,
+ "italianText":"I ♥ KATSU-chan",
+ "italianFontType":1,
+ "germanText":"Ich ♥ KATSU-chan",
+ "germanFontType":1,
+ "spanishText":"I ♥ KATSU-chan",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ KATSU-chan",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ KATSU-chan",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash052",
+ "englishUsText":"I ♥ Currycutta-DONdy",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ Currycutta-DONdy",
+ "frenchFontType":1,
+ "italianText":"I ♥ Currycutta-DONdy",
+ "italianFontType":1,
+ "germanText":"Ich ♥ Currycutta-DONdy",
+ "germanFontType":1,
+ "spanishText":"I ♥ Currycutta-DONdy",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ Currycutta-DONdy",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ Currycutta-DONdy",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash053",
+ "englishUsText":"I ♥ Yomogimaru",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ Yomogimaru",
+ "frenchFontType":1,
+ "italianText":"I ♥ Yomogimaru",
+ "italianFontType":1,
+ "germanText":"Ich ♥ Yomogimaru",
+ "germanFontType":1,
+ "spanishText":"I ♥ Yomogimaru",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ Yomogimaru",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ Yomogimaru",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash054",
+ "englishUsText":"I ♥ Tetsuo",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ Tetsuo",
+ "frenchFontType":1,
+ "italianText":"I ♥ Tetsuo",
+ "italianFontType":1,
+ "germanText":"Ich ♥ Tetsuo",
+ "germanFontType":1,
+ "spanishText":"I ♥ Tetsuo",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ Tetsuo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ Tetsuo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash055",
+ "englishUsText":"I ♥ Hana-chan",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ Hana",
+ "frenchFontType":1,
+ "italianText":"I ♥ Hana-chan",
+ "italianFontType":1,
+ "germanText":"Ich ♥ Hana-chan",
+ "germanFontType":1,
+ "spanishText":"I ♥ Hana-chan",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ Hana-chan",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ Hana-chan",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash056",
+ "englishUsText":"Respect for Master Bachio",
+ "englishUsFontType":1,
+ "frenchText":"Respect pour Maître Bachio",
+ "frenchFontType":1,
+ "italianText":"Rispetto per Bachio",
+ "italianFontType":1,
+ "germanText":"Respekt f. Meister Bachio",
+ "germanFontType":1,
+ "spanishText":"Respeto por maestro Bachio",
+ "spanishFontType":1,
+ "neutralSpanishText":"Respeto por maestro Bachio",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre Bachio, Respeito!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash057",
+ "englishUsText":"Good to Go!",
+ "englishUsFontType":1,
+ "frenchText":"Prêt à y aller !",
+ "frenchFontType":1,
+ "italianText":"Bene!",
+ "italianFontType":1,
+ "germanText":"Es kann losgehen!",
+ "germanFontType":1,
+ "spanishText":"¡Todo listo para empezar!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Todo listo para empezar!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tudo Pronto!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash058",
+ "englishUsText":"Super-Easily Hypnotized",
+ "englishUsFontType":1,
+ "frenchText":"Facilement hypnotisé",
+ "frenchFontType":1,
+ "italianText":"Facilmente ipnotizzabile",
+ "italianFontType":1,
+ "germanText":"Ganz leicht hypnotisiert",
+ "germanFontType":1,
+ "spanishText":"Superfácil de hipnotizar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Superfácil de hipnotizar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Facilmente Hipnotizável",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash059",
+ "englishUsText":"Unread Master",
+ "englishUsFontType":1,
+ "frenchText":"Maître indéchiffrable",
+ "frenchFontType":1,
+ "italianText":"Maestro non letto",
+ "italianFontType":1,
+ "germanText":"Nicht belesener Meister",
+ "germanFontType":1,
+ "spanishText":"Maestro iletrado",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro iletrado",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Não Ler",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash060",
+ "englishUsText":"Drum Controller or Bust",
+ "englishUsFontType":1,
+ "frenchText":"Contrôleur tambour sinon rien",
+ "frenchFontType":1,
+ "italianText":"Contr. tamburo o niente",
+ "italianFontType":1,
+ "germanText":"Trommel-Ctr. oder nichts",
+ "germanFontType":1,
+ "spanishText":"Mando o nada",
+ "spanishFontType":1,
+ "neutralSpanishText":"Control tambor o pecho",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Controle Tambor ou Nada",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash061",
+ "englishUsText":"Buttons or Nothing",
+ "englishUsFontType":1,
+ "frenchText":"Touches sinon rien",
+ "frenchFontType":1,
+ "italianText":"Tasti o niente",
+ "italianFontType":1,
+ "germanText":"Tasten oder nichts",
+ "germanFontType":1,
+ "spanishText":"Botones o nada",
+ "spanishFontType":1,
+ "neutralSpanishText":"Botones o nada",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Botões ou Nada Feito",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash062",
+ "englishUsText":"Drum Animal",
+ "englishUsFontType":1,
+ "frenchText":"Bête de batterie",
+ "frenchFontType":1,
+ "italianText":"Animale tamburo",
+ "italianFontType":1,
+ "germanText":"Trommeltier",
+ "germanFontType":1,
+ "spanishText":"Animal tambor",
+ "spanishFontType":1,
+ "neutralSpanishText":"Animal tambor",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Animal de Tambor",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash063",
+ "englishUsText":"Athletic Rhythm Gamer",
+ "englishUsFontType":1,
+ "frenchText":"Joueur rythmique athlétique",
+ "frenchFontType":1,
+ "italianText":"Giocatore atletico",
+ "italianFontType":1,
+ "germanText":"Sport-Rhytmusspieler",
+ "germanFontType":1,
+ "spanishText":"Jugón de ritmo atlético",
+ "spanishFontType":1,
+ "neutralSpanishText":"Jugador de ritmo atlético",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Jogador Rítmico Atlético",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash064",
+ "englishUsText":"Sneezing Defeat From the Jaws of Full Combo Victory",
+ "englishUsFontType":1,
+ "frenchText":"À un cheveu du combo max",
+ "frenchFontType":1,
+ "italianText":"Sconfitta da combo unica",
+ "italianFontType":1,
+ "germanText":"Niederlage trotz toller Kombo",
+ "germanFontType":1,
+ "spanishText":"Derrota aplastante por combo total",
+ "spanishFontType":1,
+ "neutralSpanishText":"Derrota aplastante de las fauces de la victoria por combo total",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Espirrando e Perdendo Combo Completo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash065",
+ "englishUsText":"Extreme Play",
+ "englishUsFontType":1,
+ "frenchText":"Partie extrême",
+ "frenchFontType":1,
+ "italianText":"Gioco estremo",
+ "italianFontType":1,
+ "germanText":"Extremes Spiel",
+ "germanFontType":1,
+ "spanishText":"Juego extremo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Juego extremo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Jogadas Extremas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash066",
+ "englishUsText":"Measuring Femininity",
+ "englishUsFontType":1,
+ "frenchText":"Mesure de la féminité",
+ "frenchFontType":1,
+ "italianText":"Misura della femminilità",
+ "italianFontType":1,
+ "germanText":"Symbol der Feminität",
+ "germanFontType":1,
+ "spanishText":"Símbolo de feminidad",
+ "spanishFontType":1,
+ "neutralSpanishText":"Midiendo la feminidad",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Medindo Feminilidade",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash067",
+ "englishUsText":"Always Be Charging",
+ "englishUsFontType":1,
+ "frenchText":"En charge permanente",
+ "frenchFontType":1,
+ "italianText":"Sempre in carica",
+ "italianFontType":1,
+ "germanText":"Immer am Aufladen",
+ "germanFontType":1,
+ "spanishText":"Siempre cargando",
+ "spanishFontType":1,
+ "neutralSpanishText":"Siempre cargando",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sempre Carregando",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash068",
+ "englishUsText":"Vacuum Cleaner Escapee",
+ "englishUsFontType":1,
+ "frenchText":"Échappé de l'aspirateur",
+ "frenchFontType":1,
+ "italianText":"Fuga dall'aspirapolvere",
+ "italianFontType":1,
+ "germanText":"Staubsauger-Flüchtling",
+ "germanFontType":1,
+ "spanishText":"Fugitivo de la aspiradora",
+ "spanishFontType":1,
+ "neutralSpanishText":"Fugitivo de la aspiradora",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Fugitivo de Aspirador",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash069",
+ "englishUsText":"Bigger Allowance Negotiator",
+ "englishUsFontType":1,
+ "frenchText":"Négociateur d'argent de poche",
+ "frenchFontType":1,
+ "italianText":"Negoziatore di paghette",
+ "italianFontType":1,
+ "germanText":"Mehr-Taschengeld-Diplomat",
+ "germanFontType":1,
+ "spanishText":"Negociador de mayor paga",
+ "spanishFontType":1,
+ "neutralSpanishText":"Negociador de mayor paga",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Barganhista de Mesada Maior",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash070",
+ "englishUsText":"Master Procrastinator",
+ "englishUsFontType":1,
+ "frenchText":"Maître de la procrastination",
+ "frenchFontType":1,
+ "italianText":"Maestro procrastinatore",
+ "italianFontType":1,
+ "germanText":"Meister des Aufschubs",
+ "germanFontType":1,
+ "spanishText":"Maestro posponedor",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro posponedor",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Procrastinação",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash071",
+ "englishUsText":"Ultimate Fashionista",
+ "englishUsFontType":1,
+ "frenchText":"Fashionista ultime",
+ "frenchFontType":1,
+ "italianText":"Maestro modaiolo",
+ "italianFontType":1,
+ "germanText":"Ultimative Fashionista",
+ "germanFontType":1,
+ "spanishText":"Gran fanático de la moda",
+ "spanishFontType":1,
+ "neutralSpanishText":"Gran fanático de la moda",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Fashionista Inigualável",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash072",
+ "englishUsText":"Strongest Home Defender",
+ "englishUsFontType":1,
+ "frenchText":"Défenseur de domicile",
+ "frenchFontType":1,
+ "italianText":"Protettore della casa",
+ "italianFontType":1,
+ "germanText":"Bester Heimverteidiger",
+ "germanFontType":1,
+ "spanishText":"Defensor del hogar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Defensor acérrimo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Maior Defensor do Lar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash073",
+ "englishUsText":"Master Punner",
+ "englishUsFontType":1,
+ "frenchText":"Maître des jeux de mots",
+ "frenchFontType":1,
+ "italianText":"Maestro delle battute",
+ "italianFontType":1,
+ "germanText":"Meister der Wortspiele",
+ "germanFontType":1,
+ "spanishText":"Maestro bromista",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro bromista",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Trocadilhos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash074",
+ "englishUsText":"Last-Minute Test Crammer",
+ "englishUsFontType":1,
+ "frenchText":"Testeur de dernière minute",
+ "frenchFontType":1,
+ "italianText":"Studente tardivo",
+ "italianFontType":1,
+ "germanText":"Last-Minute-Tester",
+ "germanFontType":1,
+ "spanishText":"Empollón de última hora",
+ "spanishFontType":1,
+ "neutralSpanishText":"Estudioso de última hora",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Estudante de Última Hora",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash075",
+ "englishUsText":"Intuitive Test Taker",
+ "englishUsFontType":1,
+ "frenchText":"Fan des examens",
+ "frenchFontType":1,
+ "italianText":"Intuito sviluppato",
+ "italianFontType":1,
+ "germanText":"Intuitives Verständnis",
+ "germanFontType":1,
+ "spanishText":"Examinado intuitivo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Examinado intuitivo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Estudante Intuitivo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash076",
+ "englishUsText":"Legandarily Faint of Heart",
+ "englishUsFontType":1,
+ "frenchText":"Toujours prêt à s'évanouir",
+ "frenchFontType":1,
+ "italianText":"Debole di cuore",
+ "italianFontType":1,
+ "germanText":"Legendär schwache Nerven",
+ "germanFontType":1,
+ "spanishText":"Pulso débil legendario",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pulso débil legendario",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Lendariamente Covarde",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash077",
+ "englishUsText":"Carnival Dreamer",
+ "englishUsFontType":1,
+ "frenchText":"Rêveur de carnaval",
+ "frenchFontType":1,
+ "italianText":"Sognatore a occhi aperti",
+ "italianFontType":1,
+ "germanText":"Karnevalträumer",
+ "germanFontType":1,
+ "spanishText":"Soñador de carnaval",
+ "spanishFontType":1,
+ "neutralSpanishText":"Soñador de atracciones",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sonhador de Festivais",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash078",
+ "englishUsText":"Good Vibes",
+ "englishUsFontType":1,
+ "frenchText":"Bonnes vibrations",
+ "frenchFontType":1,
+ "italianText":"Buone sensazioni",
+ "italianFontType":1,
+ "germanText":"Gute Schwingungen",
+ "germanFontType":1,
+ "spanishText":"Buen rollo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Buenas vibras",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Deboísta",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash079",
+ "englishUsText":"Hello from a Cracked Screen",
+ "englishUsFontType":1,
+ "frenchText":"Salut, mon écran est cassé",
+ "frenchFontType":1,
+ "italianText":"Ciao dallo schermo rotto",
+ "italianFontType":1,
+ "germanText":"Hi, mein Bildschirm ist kaputt",
+ "germanFontType":1,
+ "spanishText":"Hola desde una pantalla rota",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hola desde una pantalla rota",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Olá de Uma Tela Rachada",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash080",
+ "englishUsText":"Dancing with BAD",
+ "englishUsFontType":1,
+ "frenchText":"Danse avec les MAUVAIS",
+ "frenchFontType":1,
+ "italianText":"Danza dei MALE",
+ "italianFontType":1,
+ "germanText":"Tanzen mit ÜBEL",
+ "germanFontType":1,
+ "spanishText":"Bailar con MAL",
+ "spanishFontType":1,
+ "neutralSpanishText":"Bailar con MAL",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Dançando com RUINS",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash081",
+ "englishUsText":"Abnormal Full Combo Jitters",
+ "englishUsFontType":1,
+ "frenchText":"Froussard des combos max",
+ "frenchFontType":1,
+ "italianText":"Tremore da combo uniche",
+ "italianFontType":1,
+ "germanText":"Vollst.-Kombo-Aufregung",
+ "germanFontType":1,
+ "spanishText":"Nervios inusuales por combo total",
+ "spanishFontType":1,
+ "neutralSpanishText":"Nervios inusuales por combo total",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Nervosismo de Combo Anormal",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash082",
+ "englishUsText":"My Triumphant Face is Priceless",
+ "englishUsFontType":1,
+ "frenchText":"Mon visage triomphant n'a pas de prix",
+ "frenchFontType":1,
+ "italianText":"La mia faccia trionfante non ha prezzo",
+ "italianFontType":1,
+ "germanText":"Mein Siegblick ist unbezahlbar",
+ "germanFontType":1,
+ "spanishText":"Mi cara de triunfo no tiene precio",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mi cara de triunfo no tiene precio",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Meu Rosto Triunfante é Incrível",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash083",
+ "englishUsText":"Master of Flattery",
+ "englishUsFontType":1,
+ "frenchText":"Maître de la flatterie",
+ "frenchFontType":1,
+ "italianText":"Maestro dell'adulazione",
+ "italianFontType":1,
+ "germanText":"Meister der Komplimente",
+ "germanFontType":1,
+ "spanishText":"Maestro de adulación",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro de adulación",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Bajulação",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash084",
+ "englishUsText":"All Work, No Payoff",
+ "englishUsFontType":1,
+ "frenchText":"Tout ce travail pour rien",
+ "frenchFontType":1,
+ "italianText":"Fatica senza risultati",
+ "italianFontType":1,
+ "germanText":"Nur arbeiten, kein Lohn",
+ "germanFontType":1,
+ "spanishText":"Todo trabajo, sin premio",
+ "spanishFontType":1,
+ "neutralSpanishText":"Todo trabajo, sin premio",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Trabalho sem Recompensa",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash085",
+ "englishUsText":"More Drumroll, Less BAD",
+ "englishUsFontType":1,
+ "frenchText":"Plus de roulement, moins de MAUVAIS",
+ "frenchFontType":1,
+ "italianText":"Più rulli, meno MALE",
+ "italianFontType":1,
+ "germanText":"Mehr Trommelwirbel, weniger ÜBEL",
+ "germanFontType":1,
+ "spanishText":"Más redobles, menos MAL",
+ "spanishFontType":1,
+ "neutralSpanishText":"Más redobles, menos MAL",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mais Rufos, Menos RUINS",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gash086",
+ "englishUsText":"Sunday Every Day",
+ "englishUsFontType":1,
+ "frenchText":"Dimanche tous les jours",
+ "frenchFontType":1,
+ "italianText":"È sempre domenica",
+ "italianFontType":1,
+ "germanText":"Jeden Tag ist Sonntag",
+ "germanFontType":1,
+ "spanishText":"Domingo cada día",
+ "spanishFontType":1,
+ "neutralSpanishText":"Domingo cada día",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Domingo Todo Dia",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_genpe",
+ "englishUsText":"This isn’t over!",
+ "englishUsFontType":1,
+ "frenchText":"Ce n'est pas fini !",
+ "frenchFontType":1,
+ "italianText":"Non è ancora finita!",
+ "italianFontType":1,
+ "germanText":"Das ist noch nicht vorbei!",
+ "germanFontType":1,
+ "spanishText":"¡Esto no se ha terminado!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Esto no se ha terminado!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Isto Não Acabou!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_imconc",
+ "englishUsText":"Legendary 346 Producer",
+ "englishUsFontType":1,
+ "frenchText":"Producteur 346 légendaire",
+ "frenchFontType":1,
+ "italianText":"Famoso produttore 346",
+ "italianFontType":1,
+ "germanText":"Legendärer 346-Produzent",
+ "germanFontType":1,
+ "spanishText":"Productor legendario 346",
+ "spanishFontType":1,
+ "neutralSpanishText":"Productor legendario 346",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Lendário Produtor da 346",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_immbra",
+ "englishUsText":"Legendary 765 Producer",
+ "englishUsFontType":1,
+ "frenchText":"Producteur 765 légendaire",
+ "frenchFontType":1,
+ "italianText":"Famoso produttore 765",
+ "italianFontType":1,
+ "germanText":"Legendärer 765-Produzent",
+ "germanFontType":1,
+ "spanishText":"Productor legendario 765",
+ "spanishFontType":1,
+ "neutralSpanishText":"Productor legendario 765",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Lendário Produtor da 765",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_izanam",
+ "englishUsText":"Battle of Takamagahara",
+ "englishUsFontType":1,
+ "frenchText":"Bataille de Takamagahara",
+ "frenchFontType":1,
+ "italianText":"Scontro di Takamagahara",
+ "italianFontType":1,
+ "germanText":"Kampf von Takamagahara",
+ "germanFontType":1,
+ "spanishText":"Batalla de Takamagahara",
+ "spanishFontType":1,
+ "neutralSpanishText":"Batalla de Takamagahara",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Batalha de Takamagahara",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_kakunin",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_march",
+ "englishUsText":"I ♥ Retro Games",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ Retro Games",
+ "frenchFontType":1,
+ "italianText":"I ♥ Giochi retrò",
+ "italianFontType":1,
+ "germanText":"Ich ♥ Retrospiele",
+ "germanFontType":1,
+ "spanishText":"I ♥ juegos retro",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ juegos retro",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ Jogos Retrô",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_mgpafe",
+ "englishUsText":"First Taste",
+ "englishUsFontType":1,
+ "frenchText":"Première fois",
+ "frenchFontType":1,
+ "italianText":"Primo assaggio",
+ "italianFontType":1,
+ "germanText":"Vorgeschmack",
+ "germanFontType":1,
+ "spanishText":"Primera prueba",
+ "spanishFontType":1,
+ "neutralSpanishText":"Probatura",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Primeira Provinha",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_miku",
+ "englishUsText":"I ♥ HATSUNE MIKU",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ HATSUNE MIKU",
+ "frenchFontType":1,
+ "italianText":"I ♥ HATSUNE MIKU",
+ "italianFontType":1,
+ "germanText":"Ich ♥ HATSUNE MIKU.",
+ "germanFontType":1,
+ "spanishText":"I ♥ HATSUNE MIKU",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ HATSUNE MIKU.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ HATSUNE MIKU.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_mugens",
+ "englishUsText":"Memories of You",
+ "englishUsFontType":1,
+ "frenchText":"Souvenirs de toi",
+ "frenchFontType":1,
+ "italianText":"Ricordi di te",
+ "italianFontType":1,
+ "germanText":"Erinnerungen an dich",
+ "germanFontType":1,
+ "spanishText":"Recuerdos de ti",
+ "spanishFontType":1,
+ "neutralSpanishText":"Recuerdos de ti",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Memórias de Você",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_nograv",
+ "englishUsText":"Anti-Gravity Swimming",
+ "englishUsFontType":1,
+ "frenchText":"Nage anti-gravité",
+ "frenchFontType":1,
+ "italianText":"Nuoto anti-gravità",
+ "italianFontType":1,
+ "germanText":"Anti-Schwerkr.-Schwimmen",
+ "germanFontType":1,
+ "spanishText":"Natación antigravedad",
+ "spanishFontType":1,
+ "neutralSpanishText":"Natación antigravedad",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Natação Antigravidade",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_psf1op",
+ "englishUsText":"Pounding Heartbeat ★",
+ "englishUsFontType":1,
+ "frenchText":"Cœur qui bat ★",
+ "frenchFontType":1,
+ "italianText":"Cuore matto ★",
+ "italianFontType":1,
+ "germanText":"Pochender Herzschlag ★",
+ "germanFontType":1,
+ "spanishText":"Latido palpitante ★",
+ "spanishFontType":1,
+ "neutralSpanishText":"Latido palpitante ★",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Coração Acelerado ★",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_rank20",
+ "englishUsText":"Taiko Artisan",
+ "englishUsFontType":1,
+ "frenchText":"Artisan du Taiko",
+ "frenchFontType":1,
+ "italianText":"Artigiano del Taiko",
+ "italianFontType":1,
+ "germanText":"Taiko-Künstler",
+ "germanFontType":1,
+ "spanishText":"Taiko artesano",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko artesano",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Artesão de Taiko",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_rank25",
+ "englishUsText":"Taiko Pal",
+ "englishUsFontType":1,
+ "frenchText":"Ami du Taiko",
+ "frenchFontType":1,
+ "italianText":"Amico del Taiko",
+ "italianFontType":1,
+ "germanText":"Taiko-Kumpel",
+ "germanFontType":1,
+ "spanishText":"Taiko colega",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko compañero",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Parceiro de Taiko",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_rank30",
+ "englishUsText":"Taiko Beloved",
+ "englishUsFontType":1,
+ "frenchText":"Bien-aimé du Taiko",
+ "frenchFontType":1,
+ "italianText":"Amato dal Taiko",
+ "italianFontType":1,
+ "germanText":"Taiko-Liebster",
+ "germanFontType":1,
+ "spanishText":"Taiko enamorado",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko enamorado",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Adorador de Taiko",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_rank40",
+ "englishUsText":"Taiko Genius",
+ "englishUsFontType":1,
+ "frenchText":"Génie du Taiko",
+ "frenchFontType":1,
+ "italianText":"Genio del Taiko",
+ "italianFontType":1,
+ "germanText":"Taiko-Genie",
+ "germanFontType":1,
+ "spanishText":"Taiko genio",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko genio",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Gênio de Taiko",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_rank50",
+ "englishUsText":"Taiko Sage",
+ "englishUsFontType":1,
+ "frenchText":"Sage du Taiko",
+ "frenchFontType":1,
+ "italianText":"Saggio del Taiko",
+ "italianFontType":1,
+ "germanText":"Taiko-Weiser",
+ "germanFontType":1,
+ "spanishText":"Taiko sabio",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko sabio",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sábio de Taiko",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_rank60",
+ "englishUsText":"Taiko Iron Man",
+ "englishUsFontType":1,
+ "frenchText":"Iron Man du Taiko",
+ "frenchFontType":1,
+ "italianText":"Campione del Taiko",
+ "italianFontType":1,
+ "germanText":"Taiko-Iron-Man",
+ "germanFontType":1,
+ "spanishText":"Taiko hombre de hierro",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko hombre de hierro",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Homem de Ferro de Taiko",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_rank70",
+ "englishUsText":"Taiko Pro",
+ "englishUsFontType":1,
+ "frenchText":"Pro du Taiko",
+ "frenchFontType":1,
+ "italianText":"Professionista del Taiko",
+ "italianFontType":1,
+ "germanText":"Taiko-Pro",
+ "germanFontType":1,
+ "spanishText":"Taiko pro",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko pro",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Profissional de Taiko",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_rank80",
+ "englishUsText":"Taiko Expert",
+ "englishUsFontType":1,
+ "frenchText":"Expert du Taiko",
+ "frenchFontType":1,
+ "italianText":"Esperto di Taiko",
+ "italianFontType":1,
+ "germanText":"Taiko-Experte",
+ "germanFontType":1,
+ "spanishText":"Taiko experto",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko experto",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Perito em Taiko",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_rank90",
+ "englishUsText":"Taiko Superhuman",
+ "englishUsFontType":1,
+ "frenchText":"Surhumain du Taiko",
+ "frenchFontType":1,
+ "italianText":"Superuomo Taiko",
+ "italianFontType":1,
+ "germanText":"Taiko-Supermensch",
+ "germanFontType":1,
+ "spanishText":"Taiko superhombre",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko superhombre",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Superpoderes de Taiko",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_rank99",
+ "englishUsText":"Taiko Master",
+ "englishUsFontType":1,
+ "frenchText":"Maître du Taiko",
+ "frenchFontType":1,
+ "italianText":"Maestro del Taiko",
+ "italianFontType":1,
+ "germanText":"Taiko-Meister",
+ "germanFontType":1,
+ "spanishText":"Taiko maestro",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko maestro",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Taiko",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_rdrose",
+ "englishUsText":"Let Me Drum Again!",
+ "englishUsFontType":1,
+ "frenchText":"Laisse-moi rejouer !",
+ "frenchFontType":1,
+ "italianText":"Fammi colpire ancora!",
+ "italianFontType":1,
+ "germanText":"Lass mich trommeln!",
+ "germanFontType":1,
+ "spanishText":"¡Déjame tocar otra vez!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Déjame tocar otra vez!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Devolva Meu Tambor!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_rot",
+ "englishUsText":"Your Favorite Drum",
+ "englishUsFontType":1,
+ "frenchText":"Ton tambour préféré",
+ "frenchFontType":1,
+ "italianText":"Il tuo tamburo preferito",
+ "italianFontType":1,
+ "germanText":"Deine Lieblingstrommel",
+ "germanFontType":1,
+ "spanishText":"Tu tambor favorito",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tu tambor favorito",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Seu Tambor Favorito",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_rot4",
+ "englishUsText":"Napper’s Tragedy",
+ "englishUsFontType":1,
+ "frenchText":"Tragédie du dormeur",
+ "frenchFontType":1,
+ "italianText":"Incubo del dormiente",
+ "italianFontType":1,
+ "germanText":"Schläfer-Tragödie",
+ "germanFontType":1,
+ "spanishText":"La tragedia de Napper",
+ "spanishFontType":1,
+ "neutralSpanishText":"La tragedia de Napper",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tragédia dos Dorminhocos",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_ryuhim",
+ "englishUsText":"Vengeful Beast",
+ "englishUsFontType":1,
+ "frenchText":"Bête vengeresse",
+ "frenchFontType":1,
+ "italianText":"Belva vendicativa",
+ "italianFontType":1,
+ "germanText":"Rachsüchtige Bestie",
+ "germanFontType":1,
+ "spanishText":"Bestia vengativa",
+ "spanishFontType":1,
+ "neutralSpanishText":"Bestia vengativa",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Fera Vingativa",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_shingk",
+ "englishUsText":"Fight or Flight",
+ "englishUsFontType":1,
+ "frenchText":"Affronter ou fuir",
+ "frenchFontType":1,
+ "italianText":"Combatti o fuggi",
+ "italianFontType":1,
+ "germanText":"Kämpfen oder fliehen",
+ "germanFontType":1,
+ "spanishText":"Luchar o volar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Luchar o volar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Encarar ou Escapar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_so2omf",
+ "englishUsText":"Bravo!",
+ "englishUsFontType":1,
+ "frenchText":"Bravo !",
+ "frenchFontType":1,
+ "italianText":"Complimenti!",
+ "italianFontType":1,
+ "germanText":"Bravo!",
+ "germanFontType":1,
+ "spanishText":"¡Bravo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Bravo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bravo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_stabof",
+ "englishUsText":"Long Live Drumming!",
+ "englishUsFontType":1,
+ "frenchText":"Longue vie à la batterie !",
+ "frenchFontType":1,
+ "italianText":"Lunga vita ai tamburi!",
+ "italianFontType":1,
+ "germanText":"Lang lebe das Trommeln!",
+ "germanFontType":1,
+ "spanishText":"¡Viva el tamboreo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Viva el tamborileo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vida Longa aos Tambores!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_takamg",
+ "englishUsText":"Student at Takamagahara",
+ "englishUsFontType":1,
+ "frenchText":"Étudiant à Takamagahara",
+ "frenchFontType":1,
+ "italianText":"Allievo a Takamagahara",
+ "italianFontType":1,
+ "germanText":"Schüler von Takamagahara",
+ "germanFontType":1,
+ "spanishText":"Estudiante en Takamagahara",
+ "spanishFontType":1,
+ "neutralSpanishText":"Estudiante en Takamagahara",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Aluno de Takamagahara",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_tek7he",
+ "englishUsText":"Mishima Fighting Karate",
+ "englishUsFontType":1,
+ "frenchText":"Karaté de Mishima",
+ "frenchFontType":1,
+ "italianText":"Karate di Mishima",
+ "italianFontType":1,
+ "germanText":"Mishima-Kampfkarate",
+ "germanFontType":1,
+ "spanishText":"Kárate de Mishima",
+ "spanishFontType":1,
+ "neutralSpanishText":"Karate de Mishima",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Caratê Estilo Mishima",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_tengu",
+ "englishUsText":"Gathering of Tengus",
+ "englishUsFontType":1,
+ "frenchText":"Rassemblement des Tengus",
+ "frenchFontType":1,
+ "italianText":"Raduno di tengu",
+ "italianFontType":1,
+ "germanText":"Versammlung von Tengus",
+ "germanFontType":1,
+ "spanishText":"Reunión de tengus",
+ "spanishFontType":1,
+ "neutralSpanishText":"Reunión de tengus",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Reunião de Tengus",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_timtrv",
+ "englishUsText":"Time Traveler",
+ "englishUsFontType":1,
+ "frenchText":"Voyageur du temps",
+ "frenchFontType":1,
+ "italianText":"Viaggiatore del tempo",
+ "italianFontType":1,
+ "germanText":"Zeitreisender",
+ "germanFontType":1,
+ "spanishText":"Viajero del tiempo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Viajero del tiempo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Viajante do Tempo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_tksoda",
+ "englishUsText":"Let’s Make Some Noise",
+ "englishUsFontType":1,
+ "frenchText":"Faisons du bruit",
+ "frenchFontType":1,
+ "italianText":"Facciamo rumore!",
+ "italianFontType":1,
+ "germanText":"Machen wir etwas Lärm",
+ "germanFontType":1,
+ "spanishText":"Hagamos un poco de ruido",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hagamos un poco de ruido",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vamos Fazer Barulho",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_tobers",
+ "englishUsText":"Lord of Calamity",
+ "englishUsFontType":1,
+ "frenchText":"Seigneur de la calamité",
+ "frenchFontType":1,
+ "italianText":"Signore delle calamità",
+ "italianFontType":1,
+ "germanText":"Herr des Unheils",
+ "germanFontType":1,
+ "spanishText":"Señor de la calamidad",
+ "spanishFontType":1,
+ "neutralSpanishText":"Señor de la calamidad",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Senhor da Calamidade",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_trance",
+ "englishUsText":"Leap to the Future!",
+ "englishUsFontType":1,
+ "frenchText":"Saut dans le futur !",
+ "frenchFontType":1,
+ "italianText":"Un salto nel futuro!",
+ "italianFontType":1,
+ "germanText":"Sprung in die Zukunft!",
+ "germanFontType":1,
+ "spanishText":"¡Salto al futuro!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Salto al futuro!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Um Salto ao Futuro!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_trustg",
+ "englishUsText":"Cakewalking the Medley",
+ "englishUsFontType":1,
+ "frenchText":"Le Medley c'est du gâteau",
+ "frenchFontType":1,
+ "italianText":"Medley a colazione",
+ "italianFontType":1,
+ "germanText":"Einfaches Medley",
+ "germanFontType":1,
+ "spanishText":"Lo difícil está chupado",
+ "spanishFontType":1,
+ "neutralSpanishText":"Lo difícil es facilísimo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"No Ritmo de Cakewalk",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_vrock",
+ "englishUsText":"Tale of Genji",
+ "englishUsFontType":1,
+ "frenchText":"L'histoire de Genji",
+ "frenchFontType":1,
+ "italianText":"Storia di Genji",
+ "italianFontType":1,
+ "germanText":"Geschichte von Genji",
+ "germanFontType":1,
+ "spanishText":"Historia de Genji",
+ "spanishFontType":1,
+ "neutralSpanishText":"Historia de Genji",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"O Conto de Genji",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_yayoi",
+ "englishUsText":"Bountiful Harvest",
+ "englishUsFontType":1,
+ "frenchText":"Récolte juteuse",
+ "frenchFontType":1,
+ "italianText":"Raccolto abbondante",
+ "italianFontType":1,
+ "germanText":"Reiche Ernte",
+ "germanFontType":1,
+ "spanishText":"Cosecha generosa",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cosecha generosa",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Colheita Abundante",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_sakuramaturi",
+ "englishUsText":"Began Spring Festival",
+ "englishUsFontType":1,
+ "frenchText":"Début du Festival print.",
+ "frenchFontType":1,
+ "italianText":"Avvia Festival primaverile",
+ "italianFontType":1,
+ "germanText":"Frühlingsfest begonnen",
+ "germanFontType":1,
+ "spanishText":"Empieza el Fest. primavera",
+ "spanishFontType":1,
+ "neutralSpanishText":"Iniciar Fest. primavera",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Iniciante de primavera",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_sakuramaturiex",
+ "englishUsText":"Spring Festival Expert",
+ "englishUsFontType":1,
+ "frenchText":"Festival print. - Expert",
+ "frenchFontType":1,
+ "italianText":"Esperto del Fest. primaverile",
+ "italianFontType":1,
+ "germanText":"Frühlingsfest-Experte",
+ "germanFontType":1,
+ "spanishText":"Experto Fest. primavera",
+ "spanishFontType":1,
+ "neutralSpanishText":"Experto Fest. primavera",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Expert de Primavera",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_detail_rank20",
+ "englishUsText":"Achieve Rank 20 in Ranked Matches",
+ "englishUsFontType":1,
+ "frenchText":"Atteins le niveau 20 en match classé",
+ "frenchFontType":1,
+ "italianText":"Raggiungi il rango 20\nnelle partite classificate",
+ "italianFontType":1,
+ "germanText":"Erreiche Rang 20 in Ranglisten-Partien.",
+ "germanFontType":1,
+ "spanishText":"Consigue rango 20\nen partidas clasificatorias",
+ "spanishFontType":1,
+ "neutralSpanishText":"Consigue rango 20\nen partidas igualadas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alcance o ranque 20 em partidas ranqueadas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_detail_rank25",
+ "englishUsText":"Achieve Rank 25 in Ranked Matches",
+ "englishUsFontType":1,
+ "frenchText":"Atteins le niveau 25 en match classé",
+ "frenchFontType":1,
+ "italianText":"Raggiungi il rango 25\nnelle partite classificate",
+ "italianFontType":1,
+ "germanText":"Erreiche Rang 25 in Ranglisten-Partien.",
+ "germanFontType":1,
+ "spanishText":"Consigue rango 25\nen partidas clasificatorias",
+ "spanishFontType":1,
+ "neutralSpanishText":"Consigue rango 25\nen partidas igualadas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alcance o ranque 25 em partidas ranqueadas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_detail_rank30",
+ "englishUsText":"Achieve Rank 30 in Ranked Matches",
+ "englishUsFontType":1,
+ "frenchText":"Atteins le niveau 30 en match classé",
+ "frenchFontType":1,
+ "italianText":"Raggiungi il rango 30\nnelle partite classificate",
+ "italianFontType":1,
+ "germanText":"Erreiche Rang 30 in Ranglisten-Partien.",
+ "germanFontType":1,
+ "spanishText":"Consigue rango 30\nen partidas clasificatorias",
+ "spanishFontType":1,
+ "neutralSpanishText":"Consigue rango 30\nen partidas igualadas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alcance o ranque 30 em partidas ranqueadas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_detail_rank40",
+ "englishUsText":"Achieve Rank 40 in Ranked Matches",
+ "englishUsFontType":1,
+ "frenchText":"Atteins le niveau 40 en match classé",
+ "frenchFontType":1,
+ "italianText":"Raggiungi il rango 40\nnelle partite classificate",
+ "italianFontType":1,
+ "germanText":"Erreiche Rang 40 in Ranglisten-Partien.",
+ "germanFontType":1,
+ "spanishText":"Consigue rango 40\nen partidas clasificatorias",
+ "spanishFontType":1,
+ "neutralSpanishText":"Consigue rango 40\nen partidas igualadas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alcance o ranque 40 em partidas ranqueadas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_detail_rank50",
+ "englishUsText":"Achieve Rank 50 in Ranked Matches",
+ "englishUsFontType":1,
+ "frenchText":"Atteins le niveau 50 en match classé",
+ "frenchFontType":1,
+ "italianText":"Raggiungi il rango 50\nnelle partite classificate",
+ "italianFontType":1,
+ "germanText":"Erreiche Rang 50 in Ranglisten-Partien.",
+ "germanFontType":1,
+ "spanishText":"Consigue rango 50\nen partidas clasificatorias",
+ "spanishFontType":1,
+ "neutralSpanishText":"Consigue rango 50\nen partidas igualadas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alcance o ranque 50 em partidas ranqueadas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_detail_rank60",
+ "englishUsText":"Achieve Rank 60 in Ranked Matches",
+ "englishUsFontType":1,
+ "frenchText":"Atteins le niveau 60 en match classé",
+ "frenchFontType":1,
+ "italianText":"Raggiungi il rango 60\nnelle partite classificate",
+ "italianFontType":1,
+ "germanText":"Erreiche Rang 60 in Ranglisten-Partien.",
+ "germanFontType":1,
+ "spanishText":"Consigue rango 60\nen partidas clasificatorias",
+ "spanishFontType":1,
+ "neutralSpanishText":"Consigue rango 60\nen partidas igualadas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alcance o ranque 60 em partidas ranqueadas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_detail_rank70",
+ "englishUsText":"Achieve Rank 70 in Ranked Matches",
+ "englishUsFontType":1,
+ "frenchText":"Atteins le niveau 70 en match classé",
+ "frenchFontType":1,
+ "italianText":"Raggiungi il rango 70\nnelle partite classificate",
+ "italianFontType":1,
+ "germanText":"Erreiche Rang 70 in Ranglisten-Partien.",
+ "germanFontType":1,
+ "spanishText":"Consigue rango 70\nen partidas clasificatorias",
+ "spanishFontType":1,
+ "neutralSpanishText":"Consigue rango 70\nen partidas igualadas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alcance o ranque 70 em partidas ranqueadas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_detail_rank80",
+ "englishUsText":"Achieve Rank 80 in Ranked Matches",
+ "englishUsFontType":1,
+ "frenchText":"Atteins le niveau 80 en match classé",
+ "frenchFontType":1,
+ "italianText":"Raggiungi il rango 80\nnelle partite classificate",
+ "italianFontType":1,
+ "germanText":"Erreiche Rang 80 in Ranglisten-Partien.",
+ "germanFontType":1,
+ "spanishText":"Consigue rango 80\nen partidas clasificatorias",
+ "spanishFontType":1,
+ "neutralSpanishText":"Consigue rango 80\nen partidas igualadas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alcance o ranque 80 em partidas ranqueadas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_detail_rank90",
+ "englishUsText":"Achieve Rank 90 in Ranked Matches",
+ "englishUsFontType":1,
+ "frenchText":"Atteins le niveau 90 en match classé",
+ "frenchFontType":1,
+ "italianText":"Raggiungi il rango 90\nnelle partite classificate",
+ "italianFontType":1,
+ "germanText":"Erreiche Rang 90 in Ranglisten-Partien.",
+ "germanFontType":1,
+ "spanishText":"Consigue rango 90\nen partidas clasificatorias",
+ "spanishFontType":1,
+ "neutralSpanishText":"Consigue rango 90\nen partidas igualadas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alcance o ranque 90 em partidas ranqueadas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_detail_rank99",
+ "englishUsText":"Achieve Rank 99 in Ranked Matches",
+ "englishUsFontType":1,
+ "frenchText":"Atteins le niveau 99 en match classé",
+ "frenchFontType":1,
+ "italianText":"Raggiungi il rango 99\nnelle partite classificate",
+ "italianFontType":1,
+ "germanText":"Erreiche Rang 99 in Ranglisten-Partien.",
+ "germanFontType":1,
+ "spanishText":"Consigue rango 99\nen partidas clasificatorias",
+ "spanishFontType":1,
+ "neutralSpanishText":"Consigue rango 99\nen partidas igualadas",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Alcance o ranque 99 em partidas ranqueadas",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_detail_default02",
+ "englishUsText":"No title",
+ "englishUsFontType":1,
+ "frenchText":"Pas de titre",
+ "frenchFontType":1,
+ "italianText":"Nessun titolo",
+ "italianFontType":1,
+ "germanText":"Kein Titel",
+ "germanFontType":1,
+ "spanishText":"Sin título",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sin título",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sem título",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_skrexh",
+ "englishUsText":"I ♥ 「SAKURA EXHAUST」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SAKURA EXHAUST」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SAKURA EXHAUST」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SAKURA EXHAUST」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SAKURA EXHAUST」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SAKURA EXHAUST」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SAKURA EXHAUST」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_blrose",
+ "englishUsText":"I ♥ 「Blue Rose Ruin」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Blue Rose Ruin」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Blue Rose Ruin」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Blue Rose Ruin」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Blue Rose Ruin」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Blue Rose Ruin」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Blue Rose Ruin」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_haryu",
+ "englishUsText":"I ♥ 「Haryu」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Haryu」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Haryu」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Haryu」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Haryu」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Haryu」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Haryu」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_clspvn",
+ "englishUsText":"I ♥ 「Pavane For A Dead Princess」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Pavane For A Dead Princess」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Pavane For A Dead Princess」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Pavane For A Dead Princess」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Pavane For A Dead Princess」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Pavane For A Dead Princess」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Pavane For A Dead Princess」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_tank",
+ "englishUsText":"I ♥ 「Yawaraka Tank」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Yawaraka Tank」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Yawaraka Tank」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Yawaraka Tank」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Yawaraka Tank」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Yawaraka Tank」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Yawaraka Tank」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_tdm",
+ "englishUsText":"I ♥ 「Taiko Drum Monster」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Taiko Drum Monster」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Taiko Drum Monster」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Taiko Drum Monster」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Taiko Drum Monster」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Taiko Drum Monster」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Taiko Drum Monster」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_flksak",
+ "englishUsText":"I ♥ 「SAKURA(HARU)」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SAKURA(HARU)」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SAKURA(HARU)」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SAKURA(HARU)」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SAKURA(HARU)」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SAKURA(HARU)」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SAKURA(HARU)」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gekikk",
+ "englishUsText":"I ♥ 「HARDCORE NO KOKOROE」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HARDCORE NO KOKOROE」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HARDCORE NO KOKOROE」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HARDCORE NO KOKOROE」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HARDCORE NO KOKOROE」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HARDCORE NO KOKOROE」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HARDCORE NO KOKOROE」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_oka47",
+ "englishUsText":"I ♥ 「KURU KURU KUROKKURU」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「KURU KURU KUROKKURU」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「KURU KURU KUROKKURU」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「KURU KURU KUROKKURU」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「KURU KURU KUROKKURU」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「KURU KURU KUROKKURU」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「KURU KURU KUROKKURU」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_castle",
+ "englishUsText":"I ♥ 「Black Rose Apostle」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Black Rose Apostle」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Black Rose Apostle」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Black Rose Apostle」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Black Rose Apostle」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Black Rose Apostle」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Black Rose Apostle」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_thncrd",
+ "englishUsText":"I ♥ 「Necro Fantasia ~ Arr.Demetori」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Necro Fantasia ~ Arr.Demetori」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Necro Fantasia ~ Arr.Demetori」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Necro Fantasia ~ Arr.Demetori」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Necro Fantasia ~ Arr.Demetori」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Necro Fantasia ~ Arr.Demetori」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Necro Fantasia ~ Arr.Demetori」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_syclsn",
+ "englishUsText":"I ♥ 「New World」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「New World」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「New World」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「New World」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「New World」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「New World」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「New World」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_bforc",
+ "englishUsText":"I ♥ 「BURNING FORCE」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「BURNING FORCE」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「BURNING FORCE」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「BURNING FORCE」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「BURNING FORCE」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「BURNING FORCE」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「BURNING FORCE」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_drsp",
+ "englishUsText":"I ♥ 「DRAGON SPIRIT」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「DRAGON SPIRIT」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「DRAGON SPIRIT」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「DRAGON SPIRIT」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「DRAGON SPIRIT」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「DRAGON SPIRIT」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「DRAGON SPIRIT」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_druaga",
+ "englishUsText":"I ♥ 「THE TOWER OF DRUAGA」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「THE TOWER OF DRUAGA」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「THE TOWER OF DRUAGA」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「THE TOWER OF DRUAGA」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「THE TOWER OF DRUAGA」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「THE TOWER OF DRUAGA」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「THE TOWER OF DRUAGA」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_mappy2",
+ "englishUsText":"I ♥ 「MAPPY」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「MAPPY」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「MAPPY」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「MAPPY」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「MAPPY」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「MAPPY」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「MAPPY」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_moji",
+ "englishUsText":"I ♥ 「MOJIPITTAN」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「MOJIPITTAN」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「MOJIPITTAN」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「MOJIPITTAN」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「MOJIPITTAN」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「MOJIPITTAN」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「MOJIPITTAN」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_10tai",
+ "englishUsText":"I ♥ 「Tentai Kansoku」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Tentai Kansoku」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Tentai Kansoku」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Tentai Kansoku」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Tentai Kansoku」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Tentai Kansoku」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Tentai Kansoku」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_2ge8ji",
+ "englishUsText":"I ♥ 「Koi」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Koi」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Koi」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Koi」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Koi」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Koi」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Koi」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_4shaas",
+ "englishUsText":"I ♥ 「Ashita mo」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Ashita mo」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Ashita mo」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Ashita mo」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Ashita mo」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Ashita mo」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Ashita mo」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_57mono",
+ "englishUsText":"I ♥ 「KONAMONO☆」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「KONAMONO☆」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「KONAMONO☆」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「KONAMONO☆」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「KONAMONO☆」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「KONAMONO☆」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「KONAMONO☆」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_589him",
+ "englishUsText":"I ♥ 「RUROU NO KOHAKU HIME」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「RUROU NO KOHAKU HIME」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「RUROU NO KOHAKU HIME」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「RUROU NO KOHAKU HIME」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「RUROU NO KOHAKU HIME」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「RUROU NO KOHAKU HIME」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「RUROU NO KOHAKU HIME」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_6ne9om",
+ "englishUsText":"I ♥ 「DOKIDOKI MUNEKYUN OMATSURI Time」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「DOKIDOKI MUNEKYUN OMATSURI Time」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「DOKIDOKI MUNEKYUN OMATSURI Time」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「DOKIDOKI MUNEKYUN OMATSURI Time」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「DOKIDOKI MUNEKYUN OMATSURI Time」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「DOKIDOKI MUNEKYUN OMATSURI Time」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「DOKIDOKI MUNEKYUN OMATSURI Time」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_7fuku",
+ "englishUsText":"I ♥ 「GEKIUN!SHICHIFUKU Happy Crew」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「GEKIUN!SHICHIFUKU Happy Crew」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「GEKIUN!SHICHIFUKU Happy Crew」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「GEKIUN!SHICHIFUKU Happy Crew」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「GEKIUN!SHICHIFUKU Happy Crew」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「GEKIUN!SHICHIFUKU Happy Crew」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「GEKIUN!SHICHIFUKU Happy Crew」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_83noma",
+ "englishUsText":"I ♥ 「YAMI NO MAHOUSHOUJO」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「YAMI NO MAHOUSHOUJO」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「YAMI NO MAHOUSHOUJO」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「YAMI NO MAHOUSHOUJO」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「YAMI NO MAHOUSHOUJO」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「YAMI NO MAHOUSHOUJO」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「YAMI NO MAHOUSHOUJO」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_allimh",
+ "englishUsText":"I ♥ 「All In My Heart」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「All In My Heart」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「All In My Heart」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「All In My Heart」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「All In My Heart」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「All In My Heart」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「All In My Heart」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_anayuk",
+ "englishUsText":"I ♥ 「Let It Go」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Let It Go」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Let It Go」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Let It Go」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Let It Go」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Let It Go」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Let It Go」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_angel3",
+ "englishUsText":"I ♥ 「Pastel Dream」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Pastel Dream」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Pastel Dream」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Pastel Dream」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Pastel Dream」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Pastel Dream」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Pastel Dream」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_apollo",
+ "englishUsText":"I ♥ 「APOLLO」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「APOLLO」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「APOLLO」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「APOLLO」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「APOLLO」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「APOLLO」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「APOLLO」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_babel",
+ "englishUsText":"I ♥ 「THE TOWER OF BABEL」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「THE TOWER OF BABEL」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「THE TOWER OF BABEL」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「THE TOWER OF BABEL」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「THE TOWER OF BABEL」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「THE TOWER OF BABEL」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「THE TOWER OF BABEL」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_batan9",
+ "englishUsText":"I ♥ 「Zenryoku Batankyuu」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Zenryoku Batankyuu」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Zenryoku Batankyuu」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Zenryoku Batankyuu」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Zenryoku Batankyuu」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Zenryoku Batankyuu」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Zenryoku Batankyuu」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_chaost",
+ "englishUsText":"I ♥ 「!!!Chaos Time!!!」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「!!!Chaos Time!!!」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「!!!Chaos Time!!!」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「!!!Chaos Time!!!」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「!!!Chaos Time!!!」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「!!!Chaos Time!!!」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「!!!Chaos Time!!!」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_coro4",
+ "englishUsText":"I ♥ 「CoroCoro Comic 40th Anniversary Song」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「CoroCoro Comic 40th Anniversary Song」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「CoroCoro Comic 40th Anniversary Song」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「CoroCoro Comic 40th Anniversary Song」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「CoroCoro Comic 40th Anniversary Song」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「CoroCoro Comic 40th Anniversary Song」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「CoroCoro Comic 40th Anniversary Song」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_dbcgen",
+ "englishUsText":"I ♥ 「Genkai Toppa × Survivor」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Genkai Toppa × Survivor」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Genkai Toppa × Survivor」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Genkai Toppa × Survivor」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Genkai Toppa × Survivor」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Genkai Toppa × Survivor」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Genkai Toppa × Survivor」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_dem31k",
+ "englishUsText":"I ♥ 「Saika」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Saika」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Saika」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Saika」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Saika」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Saika」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Saika」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_dora4",
+ "englishUsText":"I ♥ 「Yume wo Kanaete DORAEMON」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Yume wo Kanaete DORAEMON」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Yume wo Kanaete DORAEMON」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Yume wo Kanaete DORAEMON」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Yume wo Kanaete DORAEMON」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Yume wo Kanaete DORAEMON」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Yume wo Kanaete DORAEMON」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_dsadvn",
+ "englishUsText":"I ♥ 「D′s Adventure Note」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「D′s Adventure Note」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「D′s Adventure Note」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「D′s Adventure Note」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「D′s Adventure Note」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「D′s Adventure Note」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「D′s Adventure Note」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_eva",
+ "englishUsText":"I ♥ 「A Cruel Angel's Thesis」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「A Cruel Angel's Thesis」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「A Cruel Angel's Thesis」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「A Cruel Angel's Thesis」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「A Cruel Angel's Thesis」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「A Cruel Angel's Thesis」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「A Cruel Angel's Thesis」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gimcho",
+ "englishUsText":"I ♥ 「Gimme Chocolate!!」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Gimme Chocolate!!」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Gimme Chocolate!!」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Gimme Chocolate!!」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Gimme Chocolate!!」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Gimme Chocolate!!」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Gimme Chocolate!!」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_glokey",
+ "englishUsText":"I ♥ 「Gloria」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Gloria」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Gloria」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Gloria」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Gloria」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Gloria」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Gloria」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_goth",
+ "englishUsText":"I ♥ 「DON'T CUT」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「DON'T CUT」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「DON'T CUT」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「DON'T CUT」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「DON'T CUT」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「DON'T CUT」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「DON'T CUT」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gunsln",
+ "englishUsText":"I ♥ 「Gunslinger Cinderella」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Gunslinger Cinderella」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Gunslinger Cinderella」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Gunslinger Cinderella」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Gunslinger Cinderella」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Gunslinger Cinderella」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Gunslinger Cinderella」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_himyak",
+ "englishUsText":"I ♥ 「Himawari no Yakusoku」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Himawari no Yakusoku」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Himawari no Yakusoku」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Himawari no Yakusoku」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Himawari no Yakusoku」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Himawari no Yakusoku」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Himawari no Yakusoku」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_hkgmag",
+ "englishUsText":"I ♥ 「HOUKAGO☆Magician」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HOUKAGO☆Magician」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HOUKAGO☆Magician」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HOUKAGO☆Magician」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HOUKAGO☆Magician」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HOUKAGO☆Magician」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HOUKAGO☆Magician」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_hkitty",
+ "englishUsText":"I ♥ 「HELLO KITTY」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HELLO KITTY」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HELLO KITTY」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HELLO KITTY」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HELLO KITTY」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HELLO KITTY」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HELLO KITTY」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_ia6cho",
+ "englishUsText":"I ♥ 「A Tale of Six Trillion Years and a Night」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「A Tale of Six Trillion Years and a Night」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「A Tale of Six Trillion Years and a Night」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「A Tale of Six Trillion Years and a Night」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「A Tale of Six Trillion Years and a Night」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「A Tale of Six Trillion Years and a Night」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「A Tale of Six Trillion Years and a Night」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_ikenai",
+ "englishUsText":"I ♥ 「Ikenai Taiyou」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Ikenai Taiyou」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Ikenai Taiyou」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Ikenai Taiyou」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Ikenai Taiyou」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Ikenai Taiyou」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Ikenai Taiyou」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_japari",
+ "englishUsText":"I ♥ 「Welcome to Japari Park」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Welcome to Japari Park」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Welcome to Japari Park」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Welcome to Japari Park」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Welcome to Japari Park」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Welcome to Japari Park」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Welcome to Japari Park」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_kaidan",
+ "englishUsText":"I ♥ 「χ-DAN」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「χ-DAN」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「χ-DAN」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「χ-DAN」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「χ-DAN」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「χ-DAN」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「χ-DAN」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_kekka2",
+ "englishUsText":"I ♥ 「Sugar Song & Bitter Step」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Sugar Song & Bitter Step」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Sugar Song & Bitter Step」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Sugar Song & Bitter Step」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Sugar Song & Bitter Step」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Sugar Song & Bitter Step」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Sugar Song & Bitter Step」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_kiseki",
+ "englishUsText":"I ♥ 「KISEKI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「KISEKI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「KISEKI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「KISEKI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「KISEKI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「KISEKI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「KISEKI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_koiama",
+ "englishUsText":"I ♥ 「Koioto to Amazora」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Koioto to Amazora」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Koioto to Amazora」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Koioto to Amazora」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Koioto to Amazora」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Koioto to Amazora」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Koioto to Amazora」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_krbld",
+ "englishUsText":"I ♥ 「Be The One」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Be The One」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Be The One」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Be The One」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Be The One」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Be The One」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Be The One」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_kteien",
+ "englishUsText":"I ♥ 「KAICHUTEIEN WO MOTSU SHOUJO」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「KAICHUTEIEN WO MOTSU SHOUJO」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「KAICHUTEIEN WO MOTSU SHOUJO」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「KAICHUTEIEN WO MOTSU SHOUJO」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「KAICHUTEIEN WO MOTSU SHOUJO」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「KAICHUTEIEN WO MOTSU SHOUJO」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「KAICHUTEIEN WO MOTSU SHOUJO」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_kyksmj",
+ "englishUsText":"I ♥ 「Silent Majority」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Silent Majority」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Silent Majority」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Silent Majority」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Silent Majority」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Silent Majority」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Silent Majority」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_linda",
+ "englishUsText":"I ♥ 「LINDA LINDA」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「LINDA LINDA」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「LINDA LINDA」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「LINDA LINDA」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「LINDA LINDA」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「LINDA LINDA」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「LINDA LINDA」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_lost1g",
+ "englishUsText":"I ♥ 「The Lost One's Weeping」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「The Lost One's Weeping」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「The Lost One's Weeping」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「The Lost One's Weeping」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「The Lost One's Weeping」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「The Lost One's Weeping」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「The Lost One's Weeping」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_memesi",
+ "englishUsText":"I ♥ 「Memeshikute」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Memeshikute」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Memeshikute」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Memeshikute」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Memeshikute」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Memeshikute」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Memeshikute」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_miku39",
+ "englishUsText":"I ♥ 「Mikumiku Ni Shiteageru♪【Shiteyanyo】」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Mikumiku Ni Shiteageru♪【Shiteyanyo】」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Mikumiku Ni Shiteageru♪【Shiteyanyo】」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Mikumiku Ni Shiteageru♪【Shiteyanyo】」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Mikumiku Ni Shiteageru♪【Shiteyanyo】」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Mikumiku Ni Shiteageru♪【Shiteyanyo】」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Mikumiku Ni Shiteageru♪【Shiteyanyo】」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_mikuaa",
+ "englishUsText":"I ♥ 「Alien Alien」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Alien Alien」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Alien Alien」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Alien Alien」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Alien Alien」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Alien Alien」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Alien Alien」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_mikuer",
+ "englishUsText":"I ♥ 「HATSUNE MIKU No Shoushitsu -Gekijouban-」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HATSUNE MIKU No Shoushitsu -Gekijouban-」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HATSUNE MIKU No Shoushitsu -Gekijouban-」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HATSUNE MIKU No Shoushitsu -Gekijouban-」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HATSUNE MIKU No Shoushitsu -Gekijouban-」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HATSUNE MIKU No Shoushitsu -Gekijouban-」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HATSUNE MIKU No Shoushitsu -Gekijouban-」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_mikugr",
+ "englishUsText":"I ♥ 「Ghost Rule」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Ghost Rule」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Ghost Rule」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Ghost Rule」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Ghost Rule」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Ghost Rule」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Ghost Rule」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_mikuse",
+ "englishUsText":"I ♥ 「Senbonzakura」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Senbonzakura」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Senbonzakura」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Senbonzakura」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Senbonzakura」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Senbonzakura」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Senbonzakura」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_msclht",
+ "englishUsText":"I ♥ 「My Muscle Heart」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「My Muscle Heart」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「My Muscle Heart」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「My Muscle Heart」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「My Muscle Heart」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「My Muscle Heart」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「My Muscle Heart」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_natsu",
+ "englishUsText":"I ♥ 「Natsumatsuri」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Natsumatsuri」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Natsumatsuri」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Natsumatsuri」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Natsumatsuri」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Natsumatsuri」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Natsumatsuri」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_ninjbb",
+ "englishUsText":"I ♥ 「Ninja Re Bang Bang」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Ninja Re Bang Bang」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Ninja Re Bang Bang」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Ninja Re Bang Bang」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Ninja Re Bang Bang」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Ninja Re Bang Bang」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Ninja Re Bang Bang」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_omirai",
+ "englishUsText":"I ♥ 「Original MIRAI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Original MIRAI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Original MIRAI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Original MIRAI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Original MIRAI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Original MIRAI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Original MIRAI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_orochi",
+ "englishUsText":"I ♥ 「8OROCHI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「8OROCHI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「8OROCHI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「8OROCHI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「8OROCHI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「8OROCHI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「8OROCHI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_otomus",
+ "englishUsText":"I ♥ 「OTOMUSHI WO TSUKAMAERO!」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「OTOMUSHI WO TSUKAMAERO!」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「OTOMUSHI WO TSUKAMAERO!」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「OTOMUSHI WO TSUKAMAERO!」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「OTOMUSHI WO TSUKAMAERO!」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「OTOMUSHI WO TSUKAMAERO!」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「OTOMUSHI WO TSUKAMAERO!」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_ppap",
+ "englishUsText":"I ♥ 「Pen-Pineapple-Apple-Pen (PPAP)」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Pen-Pineapple-Apple-Pen (PPAP)」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Pen-Pineapple-Apple-Pen (PPAP)」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Pen-Pineapple-Apple-Pen (PPAP)」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Pen-Pineapple-Apple-Pen (PPAP)」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Pen-Pineapple-Apple-Pen (PPAP)」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Pen-Pineapple-Apple-Pen (PPAP)」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_roadmv",
+ "englishUsText":"I ♥ 「Road Movie」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Road Movie」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Road Movie」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Road Movie」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Road Movie」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Road Movie」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Road Movie」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_sf5ryu",
+ "englishUsText":"I ♥ 「Theme of Ryu」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Theme of Ryu」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Theme of Ryu」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Theme of Ryu」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Theme of Ryu」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Theme of Ryu」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Theme of Ryu」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_shing2",
+ "englishUsText":"I ♥ 「Guren no Yumiya」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Guren no Yumiya」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Guren no Yumiya」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Guren no Yumiya」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Guren no Yumiya」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Guren no Yumiya」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Guren no Yumiya」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_skorpg",
+ "englishUsText":"I ♥ 「RPG」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「RPG」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「RPG」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「RPG」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「RPG」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「RPG」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「RPG」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_skrnb",
+ "englishUsText":"I ♥ 「Sakuranbo」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Sakuranbo」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Sakuranbo」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Sakuranbo」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Sakuranbo」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Sakuranbo」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Sakuranbo」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_snyq",
+ "englishUsText":"I ♥ 「SHOUNIN YOK-Q」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SHOUNIN YOK-Q」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SHOUNIN YOK-Q」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SHOUNIN YOK-Q」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SHOUNIN YOK-Q」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SHOUNIN YOK-Q」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SHOUNIN YOK-Q」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_souryu",
+ "englishUsText":"I ♥ 「SOURYU NO RAN」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SOURYU NO RAN」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SOURYU NO RAN」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SOURYU NO RAN」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SOURYU NO RAN」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SOURYU NO RAN」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SOURYU NO RAN」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_ta5ta5",
+ "englishUsText":"I ♥ 「Turquoise Tachometer」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Turquoise Tachometer」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Turquoise Tachometer」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Turquoise Tachometer」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Turquoise Tachometer」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Turquoise Tachometer」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Turquoise Tachometer」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_th7171",
+ "englishUsText":"I ♥ 「Night of Knights / Knight of Nights」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Night of Knights / Knight of Nights」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Night of Knights / Knight of Nights」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Night of Knights / Knight of Nights」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Night of Knights / Knight of Nights」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Night of Knights / Knight of Nights」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Night of Knights / Knight of Nights」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_thchil",
+ "englishUsText":"I ♥ 「Cirno's Perfect Math Class」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Cirno's Perfect Math Class」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Cirno's Perfect Math Class」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Cirno's Perfect Math Class」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Cirno's Perfect Math Class」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Cirno's Perfect Math Class」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Cirno's Perfect Math Class」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_thflnd",
+ "englishUsText":"I ♥ 「Last Brutal Sister Flandre S」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Last Brutal Sister Flandre S」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Last Brutal Sister Flandre S」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Last Brutal Sister Flandre S」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Last Brutal Sister Flandre S」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Last Brutal Sister Flandre S」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Last Brutal Sister Flandre S」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_tongat",
+ "englishUsText":"I ♥ 「TONGACHIN」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「TONGACHIN」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「TONGACHIN」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「TONGACHIN」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「TONGACHIN」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「TONGACHIN」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「TONGACHIN」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_totoro",
+ "englishUsText":"I ♥ 「My Neighbor Totoro – Ending Theme Song」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Mon Voisin Totoro - générique de fin」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Il mio vicino Totoro - Tema principale」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Mein Nachbar Totoro – Abspann」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Mi vecino Totoro (Tema principal - Tema final)」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Mi vecino Totoro (Tema principal - Tema final)」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「My Neighbor Totoro (The Ending Song)」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_tuku43",
+ "englishUsText":"I ♥ 「TSUKUYOMI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「TSUKUYOMI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「TSUKUYOMI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「TSUKUYOMI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「TSUKUYOMI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「TSUKUYOMI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「TSUKUYOMI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_uheart",
+ "englishUsText":"I ♥ 「UNDEAD HEART (IKARI NO Warriors)」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「UNDEAD HEART (IKARI NO Warriors)」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「UNDEAD HEART (IKARI NO Warriors)」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「UNDEAD HEART (IKARI NO Warriors)」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「UNDEAD HEART (IKARI NO Warriors)」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「UNDEAD HEART (IKARI NO Warriors)」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「UNDEAD HEART (IKARI NO Warriors)」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_uminok",
+ "englishUsText":"I ♥ 「Umi no Koe」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Umi no Koe」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Umi no Koe」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Umi no Koe」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Umi no Koe」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Umi no Koe」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Umi no Koe」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_warya",
+ "englishUsText":"I ♥ 「SAYONARA Varya」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SAYONARA Varya」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SAYONARA Varya」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SAYONARA Varya」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SAYONARA Varya」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SAYONARA Varya」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SAYONARA Varya」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_weare0",
+ "englishUsText":"I ♥ 「We Are!」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「We Are!」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「We Are!」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「We Are!」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「We Are!」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「We Are!」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「We Are!」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_xjapan",
+ "englishUsText":"I ♥ 「KURENAI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「KURENAI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「KURENAI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「KURENAI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「KURENAI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「KURENAI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「KURENAI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_ygnarr",
+ "englishUsText":"I ♥ 「Infinite Rebellion」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Infinite Rebellion」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Infinite Rebellion」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Infinite Rebellion」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Infinite Rebellion」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Infinite Rebellion」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Infinite Rebellion」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_ymtgen",
+ "englishUsText":"I ♥ 「YUME TO GENJITSU NO KYOUKAISEN」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「YUME TO GENJITSU NO KYOUKAISEN」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「YUME TO GENJITSU NO KYOUKAISEN」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「YUME TO GENJITSU NO KYOUKAISEN」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「YUME TO GENJITSU NO KYOUKAISEN」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「YUME TO GENJITSU NO KYOUKAISEN」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「YUME TO GENJITSU NO KYOUKAISEN」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_ymyrp4",
+ "englishUsText":"I ♥ 「BOUKYAKU NO Tír na nÓg」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「BOUKYAKU NO Tír na nÓg」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「BOUKYAKU NO Tír na nÓg」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「BOUKYAKU NO Tír na nÓg」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「BOUKYAKU NO Tír na nÓg」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「BOUKYAKU NO Tír na nÓg」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「BOUKYAKU NO Tír na nÓg」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_ynlose",
+ "englishUsText":"I ♥ 「LOSER」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「LOSER」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「LOSER」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「LOSER」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「LOSER」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「LOSER」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「LOSER」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_yugen",
+ "englishUsText":"I ♥ 「YUGEN NO RAN」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「YUGEN NO RAN」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「YUGEN NO RAN」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「YUGEN NO RAN」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「YUGEN NO RAN」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「YUGEN NO RAN」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「YUGEN NO RAN」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_zense",
+ "englishUsText":"I ♥ 「Zenzenzense」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Zenzenzense」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Zenzenzense」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Zenzenzense」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Zenzenzense」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Zenzenzense」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Zenzenzense」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_zootop",
+ "englishUsText":"I ♥ 「Try Everything」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Try Everything」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Try Everything」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Try Everything」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Try Everything」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Try Everything」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Try Everything」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"support_score",
+ "englishUsText":"Support Score",
+ "englishUsFontType":1,
+ "frenchText":"Score de soutien",
+ "frenchFontType":1,
+ "italianText":"Punteggio Supporto",
+ "italianFontType":1,
+ "germanText":"Unterstützungs-Pkte",
+ "germanFontType":1,
+ "spanishText":"Puntuación de apoyo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Puntuación de apoyo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pontuação de Suporte",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_kitty_result01",
+ "englishUsText":"A Full Combo?!\nGreat job!",
+ "englishUsFontType":1,
+ "frenchText":"Un combo max ?!\nBien joué !",
+ "frenchFontType":1,
+ "italianText":"Un combo completa?!?\nFantastico!",
+ "italianFontType":1,
+ "germanText":"Eine vollständige Kombo?!\nGut gemacht!",
+ "germanFontType":1,
+ "spanishText":"¿Un combo completo?\n¡Buen trabajo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Un combo completo?\n¡Bien hecho!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Um combo completo?!\nExcelente trabalho!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_kitty_result02",
+ "englishUsText":"A Full Combo?!\nLet’s do this together again!",
+ "englishUsFontType":1,
+ "frenchText":"Un combo max ?!\nIl faudra refaire ça ensemble !",
+ "frenchFontType":1,
+ "italianText":"Una combo completa?!?\nRifacciamolo, dai!",
+ "italianFontType":1,
+ "germanText":"Eine vollständige Kombo?!\nLass uns das bald wieder machen!",
+ "germanFontType":1,
+ "spanishText":"¿Un combo completo?\n¡Hagámoslo de nuevo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Un combo completo?\n¡Hagámoslo de nuevo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Um combo completo?!\nVamos repetir isso outra vez!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_kitty_result03",
+ "englishUsText":"A Full Combo?!\nLet’s play again sometime!",
+ "englishUsFontType":1,
+ "frenchText":"Un combo max ?!\nRejouons ensemble un de ces quatre !",
+ "frenchFontType":1,
+ "italianText":"Una combo completa?!?\nGiocheremo di nuovo insieme, vero?",
+ "italianFontType":1,
+ "germanText":"Eine vollständige Kombo?!\nLass uns mal wieder zusammen spielen!",
+ "germanFontType":1,
+ "spanishText":"¿Un combo completo?\n¡A ver si volvemos a jugar algún día!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Un combo completo?\n¡A ver si volvemos a jugar algún día!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Um combo completo?!\nVamos jogar de novo outra hora!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_kitty_result05",
+ "englishUsText":"You beat the song?\nThanks! See you later!",
+ "englishUsFontType":1,
+ "frenchText":"Tu as terminé la chanson ?\nMerci ! À la prochaine !",
+ "frenchFontType":1,
+ "italianText":"Hai completato la canzone?\nGrazie! A dopo!",
+ "italianFontType":1,
+ "germanText":"Du hast den Song fertig? Danke, bis später!",
+ "germanFontType":1,
+ "spanishText":"¿Has terminado la canción?\nGracias. ¡Nos vemos luego!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Terminaste la canción?\nGracias. ¡Nos vemos luego!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Você terminou a música?\nValeu! Te vejo depois!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_kitty_result06",
+ "englishUsText":"You beat the song?\nThat’s amazing!",
+ "englishUsFontType":1,
+ "frenchText":"Tu as terminé la chanson ?\nC'est génial !",
+ "frenchFontType":1,
+ "italianText":"Hai completato la canzone?\nFantastico!",
+ "italianFontType":1,
+ "germanText":"Du hast den Song fertig? Das ist ja super!",
+ "germanFontType":1,
+ "spanishText":"¿Has terminado la canción?\n¡Bien hecho!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Terminaste la canción?\n¡Bien hecho!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Você terminou a música?\nQue demais!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_kitty_result07",
+ "englishUsText":"So close!\nShake it off!",
+ "englishUsFontType":1,
+ "frenchText":"Pas passé loin !\nMais ne te prends pas la tête !",
+ "frenchFontType":1,
+ "italianText":"Ci sei quasi!\nNon pensarci! Tirati su!",
+ "italianFontType":1,
+ "germanText":"War das knapp!\nAber mach dir nichts draus!",
+ "germanFontType":1,
+ "spanishText":"¡Por los pelos!\n¡Relájate!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Por los pelos!\n¡Relájate!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tão quase!\nNão se abata!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_kitty_result08",
+ "englishUsText":"Let’s hope you beat it next time☆",
+ "englishUsFontType":1,
+ "frenchText":"Tu réussiras la prochaine fois ☆",
+ "frenchFontType":1,
+ "italianText":"La prossima volta la completerai ☆",
+ "italianFontType":1,
+ "germanText":"Nächstes Mal schaffst du es!",
+ "germanFontType":1,
+ "spanishText":"Espero que la próxima lo consigas.☆",
+ "spanishFontType":1,
+ "neutralSpanishText":"Espero que la próxima lo consigas.☆",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tomara que você consiga na próxima☆",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_kitty_result09",
+ "englishUsText":"Go for it! I’m rooting for you!",
+ "englishUsFontType":1,
+ "frenchText":"Vas-y ! Je vais t'encourager à fond !",
+ "frenchFontType":1,
+ "italianText":"Forza! Faccio il tifo per te!",
+ "italianFontType":1,
+ "germanText":"Na los! Ich drück dir die Daumen!",
+ "germanFontType":1,
+ "spanishText":"¡Vamos allá! ¡Estoy contigo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Allá vamos! ¡Estoy contigo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vai lá! Estou torcendo por você!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_kitty_result04",
+ "englishUsText":"You beat the song?\nYay! That was fun!",
+ "englishUsFontType":1,
+ "frenchText":"Tu as terminé la chanson ?\nOuais ! C'était amusant !",
+ "frenchFontType":1,
+ "italianText":"Hai completato la canzone?\nSì! È stato divertente!",
+ "italianFontType":1,
+ "germanText":"Du hast den Song fertig? Juhu! Das war spaßig!",
+ "germanFontType":1,
+ "spanishText":"¿Has terminado la canción?\n¡Sí! ¡Ha sido divertido!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Terminaste la canción?\n¡Sí! ¡Fue divertido!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Você terminou a música?\nViva! Foi divertido!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_dora_result01",
+ "englishUsText":"I can’t believe you Full Comboed that!",
+ "englishUsFontType":1,
+ "frenchText":"Je n'arrive pas à croire que\ntu as fait un combo max !",
+ "frenchFontType":1,
+ "italianText":"Come hai fatto a completarla\ncon una combo unica?!?",
+ "italianFontType":1,
+ "germanText":"Toll, die vollständige Kombo ist geschafft!",
+ "germanFontType":1,
+ "spanishText":"¡No me puedo creer que hayas\nconseguido ese combo completo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡No puedo creer que hayas\nconseguido ese combo completo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Não acredito que completou o combo disso!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_dora_result02",
+ "englishUsText":"A Full Combo?! That’s amazing!",
+ "englishUsFontType":1,
+ "frenchText":"Un combo max ?! C'est génial !",
+ "frenchFontType":1,
+ "italianText":"Con una combo unica? Pazzesco!",
+ "italianFontType":1,
+ "germanText":"Eine vollständige Kombo?! Das ist Wahnsinn!",
+ "germanFontType":1,
+ "spanishText":"¿Un combo completo? ¡Asombroso!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿Un combo completo? ¡Asombroso!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Um combo completo?! Incrível!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_dora_result03",
+ "englishUsText":"You really gave it your all!",
+ "englishUsFontType":1,
+ "frenchText":"Tu as vraiment tout donné !",
+ "frenchFontType":1,
+ "italianText":"Hai davvero fatto del tuo meglio!",
+ "italianFontType":1,
+ "germanText":"Du hast echt alles gegeben!",
+ "germanFontType":1,
+ "spanishText":"¡Lo has dado todo, no hay duda!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Lo diste todo, no hay duda!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Você deu mesmo tudo de si!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_dora_result04",
+ "englishUsText":"I knew you could do it!",
+ "englishUsFontType":1,
+ "frenchText":"Je savais que tu réussirais !",
+ "frenchFontType":1,
+ "italianText":"Sapevo che ce l'avresti fatta!",
+ "italianFontType":1,
+ "germanText":"Ich wusste, du kannst es schaffen!",
+ "germanFontType":1,
+ "spanishText":"Sabía que podías hacerlo.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sabía que podías hacerlo.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sabia que conseguiria!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_dora_result05",
+ "englishUsText":"That was really close!\nI’m sure you’ll get it next time!",
+ "englishUsFontType":1,
+ "frenchText":"Ce n'est pas passé loin !\nTu réussiras la prochaine fois !",
+ "frenchFontType":1,
+ "italianText":"Accidenti, per poco! Sono sicuro\nche la prossima volta ce la farai!",
+ "italianFontType":1,
+ "germanText":"Das war echt knapp!\nDu schaffst es bestimmt das nächste Mal!",
+ "germanFontType":1,
+ "spanishText":"¡Ha faltado poco!\nSeguro que la próxima lo consigues.",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Estuvo muy cerca!\nSeguro que la próxima lo consigues.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Essa foi quase!\nCerteza que você consegue na próxima!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_dora_result06",
+ "englishUsText":"Whoops...\nTry a little harder next time!",
+ "englishUsFontType":1,
+ "frenchText":"Oups...\nApplique-toi mieux la prochaine fois !",
+ "frenchFontType":1,
+ "italianText":"Oops...\nLa prossima volta impegnati di più!",
+ "italianFontType":1,
+ "germanText":"Ups ...\nStreng dich das nächste Mal etwas mehr an!",
+ "germanFontType":1,
+ "spanishText":"Vayaaa...\n¡Esfuérzate más la próxima vez!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Vayaaa...\n¡Esfuérzate más la próxima vez!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ops...\nSe esforce um pouco mais na próxima!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_dora_result07",
+ "englishUsText":"You were almost there!\nI’m sure you’ll get it next time!",
+ "englishUsFontType":1,
+ "frenchText":"Tu y étais presque !\nTu réussiras la prochaine fois !",
+ "frenchFontType":1,
+ "italianText":"C'eri quasi! Sono sicuro\nche la prossima volta ce la farai!",
+ "italianFontType":1,
+ "germanText":"Du hattest es fast geschafft!\nDu bekommst es bestimmt das nächste Mal hin!",
+ "germanFontType":1,
+ "spanishText":"¡Casi lo tenías!\nSeguro que la próxima lo consigues.",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Casi lo tenías!\nSeguro que la próxima lo consigues.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Você quase conseguiu!\nNa próxima vai, tenho certeza!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_pac_result01",
+ "englishUsText":"Congratulations!",
+ "englishUsFontType":1,
+ "frenchText":"Félicitations !",
+ "frenchFontType":1,
+ "italianText":"Congratulazioni!",
+ "italianFontType":1,
+ "germanText":"Glückwunsch!",
+ "germanFontType":1,
+ "spanishText":"¡Felicidades!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Felicidades!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Parabéns!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_pac_result02",
+ "englishUsText":"Good game!",
+ "englishUsFontType":1,
+ "frenchText":"Bien joué !",
+ "frenchFontType":1,
+ "italianText":"Ben fatto!",
+ "italianFontType":1,
+ "germanText":"Nettes Spiel!",
+ "germanFontType":1,
+ "spanishText":"¡Buena partida!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Buena partida!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bom jogo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_miku_result01",
+ "englishUsText":"Nailed it! Full Combo!",
+ "englishUsFontType":1,
+ "frenchText":"Tu as réussi ! Combo max !",
+ "frenchFontType":1,
+ "italianText":"Grande! Con un'unica combo!",
+ "italianFontType":1,
+ "germanText":"Super! Eine vollständige Kombo!",
+ "germanFontType":1,
+ "spanishText":"¡Lo has clavado! ¡Combo completo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Diste en el clavo! ¡Combo completo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Conseguiu! Combo completo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_miku_result02",
+ "englishUsText":"Wow! A Full Combo!",
+ "englishUsFontType":1,
+ "frenchText":"Wow ! Un combo max !",
+ "frenchFontType":1,
+ "italianText":"Wow! Un'unica combo!",
+ "italianFontType":1,
+ "germanText":"Wow! Eine vollständige Kombo!",
+ "germanFontType":1,
+ "spanishText":"¡Vaya! ¡Un combo completo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Vaya! ¡Un combo completo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Uau! Um combo completo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_miku_result03",
+ "englishUsText":"A Full Combo! Way to go!",
+ "englishUsFontType":1,
+ "frenchText":"Combo max ! Bien joué !",
+ "frenchFontType":1,
+ "italianText":"Un'unica combo! Che grande!",
+ "italianFontType":1,
+ "germanText":"Eine vollständige Kombo! Echt super!",
+ "germanFontType":1,
+ "spanishText":"¡Un combo completo! ¡Tú sí que sabes!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Un combo completo! ¡Tú sí sabes!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Um combo completo! Mandou bem!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_miku_result04",
+ "englishUsText":"You beat it! Nicely done!",
+ "englishUsFontType":1,
+ "frenchText":"Tu as réussi ! Bravo !",
+ "frenchFontType":1,
+ "italianText":"L'hai completata! Ottimo!",
+ "italianFontType":1,
+ "germanText":"Du hast es geschafft! Gut gemacht!",
+ "germanFontType":1,
+ "spanishText":"¡Lo has conseguido! ¡Muy bien hecho!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Lo conseguiste! ¡Muy bien hecho!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Você conseguiu! Muito bem!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_miku_result05",
+ "englishUsText":"You beat it! That was great!",
+ "englishUsFontType":1,
+ "frenchText":"Tu as réussi ! C'était super !",
+ "frenchFontType":1,
+ "italianText":"L'hai completata! Straordinario!",
+ "italianFontType":1,
+ "germanText":"Du hast es geschafft! Das war super!",
+ "germanFontType":1,
+ "spanishText":"¡Lo has conseguido! ¡Genial!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Lo conseguiste! ¡Genial!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Você conseguiu! Isso foi demais!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_miku_result06",
+ "englishUsText":"You beat it! You’ve got a knack for this!",
+ "englishUsFontType":1,
+ "frenchText":"Tu as réussi ! Tu es vraiment doué !",
+ "frenchFontType":1,
+ "italianText":"L'hai completata! Hai del talento!",
+ "italianFontType":1,
+ "germanText":"Du hast es geschafft! Du hast ein Händchen dafür!",
+ "germanFontType":1,
+ "spanishText":"¡Lo has conseguido! ¡Se te da muy bien!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Lo conseguiste! ¡Se te da muy bien!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Você conseguiu! Parece levar jeito para isso!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_miku_result07",
+ "englishUsText":"So close! You almost had it!",
+ "englishUsFontType":1,
+ "frenchText":"Pas loin ! Tu y étais presque !",
+ "frenchFontType":1,
+ "italianText":"Per poco, accidenti! C'eri quasi!",
+ "italianFontType":1,
+ "germanText":"Ganz knapp! Du hättest es fast geschafft!",
+ "germanFontType":1,
+ "spanishText":"¡Por los pelos! ¡Casi lo tenías!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Por los pelos! ¡Casi lo tenías!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Foi por pouco! Você quase conseguiu!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_miku_result08",
+ "englishUsText":"You were almost there! Don’t give up!",
+ "englishUsFontType":1,
+ "frenchText":"Tu y étais presque ! N'abandonne pas !",
+ "frenchFontType":1,
+ "italianText":"C'eri quasi! Non arrenderti!",
+ "italianFontType":1,
+ "germanText":"Du hattest es fast! Gib nicht auf!",
+ "germanFontType":1,
+ "spanishText":"¡Ya casi estaba! ¡No te rindas!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Ya casi estaba! ¡No te rindas!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Você estava quase lá! Não desista!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_miku_result09",
+ "englishUsText":"Aww! You’ll get it next time!",
+ "englishUsFontType":1,
+ "frenchText":"Oh... Tu réussiras la prochaine fois !",
+ "frenchFontType":1,
+ "italianText":"Oh! Ma la prossima volta ce la farai!",
+ "italianFontType":1,
+ "germanText":"Ohh! Du schaffst es beim nächsten Mal!",
+ "germanFontType":1,
+ "spanishText":"¡Jo! La próxima lo conseguirás.",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Ay! La próxima lo conseguirás.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ahh...! Na próxima, você consegue!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_tekken_result01",
+ "englishUsText":"You’re quite good. Speak your name!",
+ "englishUsFontType":1,
+ "frenchText":"Quel talent. Il y a de quoi être fier !",
+ "frenchFontType":1,
+ "italianText":"Te la cavi! Dimmi il tuo nome!",
+ "italianFontType":1,
+ "germanText":"Du bist ziemlich gut. Wie heißt du?",
+ "germanFontType":1,
+ "spanishText":"Se te da muy bien. ¿Cómo te llamas?",
+ "spanishFontType":1,
+ "neutralSpanishText":"Se te da muy bien. ¿Cómo te llamas?",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Você tem habilidade. Diga seu nome!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_tekken_result02",
+ "englishUsText":"It’s been a while since I’ve seen something\nthis exciting!",
+ "englishUsFontType":1,
+ "frenchText":"Ça faisait longtemps que je n'avais\npas vu un truc aussi passionnant !",
+ "frenchFontType":1,
+ "italianText":"Da tempo non vedevo\nqualcosa di così eccitante!",
+ "italianFontType":1,
+ "germanText":"Lange nicht so was Spannendes gesehen!",
+ "germanFontType":1,
+ "spanishText":"Hacía tiempo que no\nveía algo tan emocionante.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hacía tiempo que no\nveía algo tan emocionante.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Já fazia algum tempo que eu não via algo tão empolgante!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_tekken_result03",
+ "englishUsText":"I’m not done yet!",
+ "englishUsFontType":1,
+ "frenchText":"Je n'ai pas encore fini !",
+ "frenchFontType":1,
+ "italianText":"Non è ancora finita!",
+ "italianFontType":1,
+ "germanText":"Ich bin noch nicht fertig!",
+ "germanFontType":1,
+ "spanishText":"¡Aún no has terminado conmigo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Todavía no terminas conmigo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ainda não terminei!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_tekken_result04",
+ "englishUsText":"Is that all you’ve got?\nHow disappointing!",
+ "englishUsFontType":1,
+ "frenchText":"C'est tout ce que tu sais faire ?\nQuelle déception !",
+ "frenchFontType":1,
+ "italianText":"Tutto qui?\nChe delusione!",
+ "italianFontType":1,
+ "germanText":"War das schon alles?\nWie enttäuschend!",
+ "germanFontType":1,
+ "spanishText":"¿No sabes hacer nada más?\n¡Qué decepcionante!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¿No sabes hacer nada más?\n¡Qué decepcionante!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Isso é tudo o que tem?\nQue decepção!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_tekken_result06",
+ "englishUsText":"Try again in your next life!",
+ "englishUsFontType":1,
+ "frenchText":"Essaie encore... dans ta prochaine vie !",
+ "frenchFontType":1,
+ "italianText":"Riprova nella prossima vita!",
+ "italianFontType":1,
+ "germanText":"Versuch's noch mal im nächsten Leben!",
+ "germanFontType":1,
+ "spanishText":"¡Pruébalo otra vez en la próxima vida!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Inténtalo otra vez en la próxima vida!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tente de novo na próxima vida!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_tekken_result07",
+ "englishUsText":"Your next failure will be your last!",
+ "englishUsFontType":1,
+ "frenchText":"Ton prochain échec sera le dernier !",
+ "frenchFontType":1,
+ "italianText":"Il tuo prossimo fallimento\nsarà anche l'ultimo!",
+ "italianFontType":1,
+ "germanText":"Deine nächste Niederlage wird deine letzte sein!",
+ "germanFontType":1,
+ "spanishText":"¡Tu próximo fallo será el último!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Tu próximo fallo será el último!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sua próxima falha será a sua última!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"collabo_tekken_result05",
+ "englishUsText":"Ha ha ha ha!\nYour training is lacking!",
+ "englishUsFontType":1,
+ "frenchText":"Ha ha ha ha !\nTu manques d'entraînement !",
+ "frenchFontType":1,
+ "italianText":"Ah ah ah!\nChe ne dici di allenarti un po'?",
+ "italianFontType":1,
+ "germanText":"Hahahaha!\nDir fehlt eindeutig Training!",
+ "germanFontType":1,
+ "spanishText":"¡Ja, ja, ja!\n¡Te falta entrenamiento!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Ja, ja, ja!\n¡Te falta entrenamiento!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ha, ha, ha, ha!\nSeu treino deixa a desejar!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"OK",
+ "englishUsText":"OK",
+ "englishUsFontType":1,
+ "frenchText":"OK",
+ "frenchFontType":1,
+ "italianText":"OK",
+ "italianFontType":1,
+ "germanText":"OK",
+ "germanFontType":1,
+ "spanishText":"VALE",
+ "spanishFontType":1,
+ "neutralSpanishText":"Aceptar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"OK",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"cancel",
+ "englishUsText":"Cancel",
+ "englishUsFontType":1,
+ "frenchText":"Annuler",
+ "frenchFontType":1,
+ "italianText":"Annulla",
+ "italianFontType":1,
+ "germanText":"Abbrechen",
+ "germanFontType":1,
+ "spanishText":"Cancelar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cancelar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Cancelar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"confirm",
+ "englishUsText":"Agree",
+ "englishUsFontType":1,
+ "frenchText":"Accepter",
+ "frenchFontType":1,
+ "italianText":"Accetta",
+ "italianFontType":1,
+ "germanText":"Zustimm.",
+ "germanFontType":1,
+ "spanishText":"Aceptar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Aceptar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Concordar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_cs4op",
+ "englishUsText":"OHAYO! TAIKO SUMMER",
+ "englishUsFontType":1,
+ "frenchText":"OHAYO! TAIKO SUMMER",
+ "frenchFontType":1,
+ "italianText":"OHAYO! TAIKO SUMMER",
+ "italianFontType":1,
+ "germanText":"OHAYO! TAIKO SUMMER",
+ "germanFontType":1,
+ "spanishText":"OHAYO! TAIKO SUMMER",
+ "spanishFontType":1,
+ "neutralSpanishText":"OHAYO! TAIKO SUMMER",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"OHAYO! TAIKO SUMMER",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_saoop",
+ "englishUsText":"crossing field",
+ "englishUsFontType":1,
+ "frenchText":"crossing field",
+ "frenchFontType":1,
+ "italianText":"crossing field",
+ "italianFontType":1,
+ "germanText":"crossing field",
+ "germanFontType":1,
+ "spanishText":"crossing field",
+ "spanishFontType":1,
+ "neutralSpanishText":"crossing field",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"crossing field",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_clssum",
+ "englishUsText":"DOKA DOKA",
+ "englishUsFontType":1,
+ "frenchText":"DOKA DOKA",
+ "frenchFontType":1,
+ "italianText":"DOKA DOKA",
+ "italianFontType":1,
+ "germanText":"DOKA DOKA",
+ "germanFontType":1,
+ "spanishText":"DOKA DOKA",
+ "spanishFontType":1,
+ "neutralSpanishText":"DOKA DOKA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DOKA DOKA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_amatrs",
+ "englishUsText":"AMATERASU",
+ "englishUsFontType":1,
+ "frenchText":"AMATERASU",
+ "frenchFontType":1,
+ "italianText":"AMATERASU",
+ "italianFontType":1,
+ "germanText":"AMATERASU",
+ "germanFontType":1,
+ "spanishText":"AMATERASU",
+ "spanishFontType":1,
+ "neutralSpanishText":"AMATERASU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"AMATERASU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_ksrain",
+ "englishUsText":"KISSA Rain",
+ "englishUsFontType":1,
+ "frenchText":"KISSA Rain",
+ "frenchFontType":1,
+ "italianText":"KISSA Rain",
+ "italianFontType":1,
+ "germanText":"KISSA Rain",
+ "germanFontType":1,
+ "spanishText":"KISSA Rain",
+ "spanishFontType":1,
+ "neutralSpanishText":"KISSA Rain",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KISSA Rain",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_karyu",
+ "englishUsText":"Karyu",
+ "englishUsFontType":1,
+ "frenchText":"Karyu",
+ "frenchFontType":1,
+ "italianText":"Karyu",
+ "italianFontType":1,
+ "germanText":"Karyu",
+ "germanFontType":1,
+ "spanishText":"Karyu",
+ "spanishFontType":1,
+ "neutralSpanishText":"Karyu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Karyu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_saoop",
+ "englishUsText":"From \" SWORD ART ONLINE \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" SWORD ART ONLINE \"",
+ "frenchFontType":1,
+ "italianText":"Da \" SWORD ART ONLINE \"",
+ "italianFontType":1,
+ "germanText":"Aus \" SWORD ART ONLINE \"",
+ "germanFontType":1,
+ "spanishText":"De \" SWORD ART ONLINE \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" SWORD ART ONLINE \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" SWORD ART ONLINE \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_amatrs",
+ "englishUsText":"Tatsh a.k.a Xeami",
+ "englishUsFontType":1,
+ "frenchText":"Tatsh a.k.a Xeami",
+ "frenchFontType":1,
+ "italianText":"Tatsh a.k.a Xeami",
+ "italianFontType":1,
+ "germanText":"Tatsh a.k.a Xeami",
+ "germanFontType":1,
+ "spanishText":"Tatsh a.k.a Xeami",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tatsh a.k.a Xeami",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tatsh a.k.a Xeami",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_cs4op",
+ "englishUsText":"OHAYO! TAIKO SUMMER",
+ "englishUsFontType":1,
+ "frenchText":"OHAYO! TAIKO SUMMER",
+ "frenchFontType":1,
+ "italianText":"OHAYO! TAIKO SUMMER",
+ "italianFontType":1,
+ "germanText":"OHAYO! TAIKO SUMMER",
+ "germanFontType":1,
+ "spanishText":"OHAYO! TAIKO SUMMER",
+ "spanishFontType":1,
+ "neutralSpanishText":"OHAYO! TAIKO SUMMER",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"OHAYO! TAIKO SUMMER",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_saoop",
+ "englishUsText":"crossing field",
+ "englishUsFontType":1,
+ "frenchText":"crossing field",
+ "frenchFontType":1,
+ "italianText":"crossing field",
+ "italianFontType":1,
+ "germanText":"crossing field",
+ "germanFontType":1,
+ "spanishText":"crossing field",
+ "spanishFontType":1,
+ "neutralSpanishText":"crossing field",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"crossing field",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_clssum",
+ "englishUsText":"DOKA DOKA",
+ "englishUsFontType":1,
+ "frenchText":"DOKA DOKA",
+ "frenchFontType":1,
+ "italianText":"DOKA DOKA",
+ "italianFontType":1,
+ "germanText":"DOKA DOKA",
+ "germanFontType":1,
+ "spanishText":"DOKA DOKA",
+ "spanishFontType":1,
+ "neutralSpanishText":"DOKA DOKA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DOKA DOKA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_amatrs",
+ "englishUsText":"AMATERASU",
+ "englishUsFontType":1,
+ "frenchText":"AMATERASU",
+ "frenchFontType":1,
+ "italianText":"AMATERASU",
+ "italianFontType":1,
+ "germanText":"AMATERASU",
+ "germanFontType":1,
+ "spanishText":"AMATERASU",
+ "spanishFontType":1,
+ "neutralSpanishText":"AMATERASU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"AMATERASU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_ksrain",
+ "englishUsText":"KISSA Rain",
+ "englishUsFontType":1,
+ "frenchText":"KISSA Rain",
+ "frenchFontType":1,
+ "italianText":"KISSA Rain",
+ "italianFontType":1,
+ "germanText":"KISSA Rain",
+ "germanFontType":1,
+ "spanishText":"KISSA Rain",
+ "spanishFontType":1,
+ "neutralSpanishText":"KISSA Rain",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KISSA Rain",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_karyu",
+ "englishUsText":"Karyu",
+ "englishUsFontType":1,
+ "frenchText":"Karyu",
+ "frenchFontType":1,
+ "italianText":"Karyu",
+ "italianFontType":1,
+ "germanText":"Karyu",
+ "germanFontType":1,
+ "spanishText":"Karyu",
+ "spanishFontType":1,
+ "neutralSpanishText":"Karyu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Karyu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_cs4op",
+ "englishUsText":"OHAYO! TAIKO SUMMER",
+ "englishUsFontType":1,
+ "frenchText":"OHAYO! TAIKO SUMMER",
+ "frenchFontType":1,
+ "italianText":"OHAYO! TAIKO SUMMER",
+ "italianFontType":1,
+ "germanText":"OHAYO! TAIKO SUMMER",
+ "germanFontType":1,
+ "spanishText":"OHAYO! TAIKO SUMMER",
+ "spanishFontType":1,
+ "neutralSpanishText":"OHAYO! TAIKO SUMMER",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"OHAYO! TAIKO SUMMER",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_saoop",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_clssum",
+ "englishUsText":"DOKA DOKA",
+ "englishUsFontType":1,
+ "frenchText":"DOKA DOKA",
+ "frenchFontType":1,
+ "italianText":"DOKA DOKA",
+ "italianFontType":1,
+ "germanText":"DOKA DOKA",
+ "germanFontType":1,
+ "spanishText":"DOKA DOKA",
+ "spanishFontType":1,
+ "neutralSpanishText":"DOKA DOKA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DOKA DOKA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_amatrs",
+ "englishUsText":"AMATERASU",
+ "englishUsFontType":1,
+ "frenchText":"AMATERASU",
+ "frenchFontType":1,
+ "italianText":"AMATERASU",
+ "italianFontType":1,
+ "germanText":"AMATERASU",
+ "germanFontType":1,
+ "spanishText":"AMATERASU",
+ "spanishFontType":1,
+ "neutralSpanishText":"AMATERASU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"AMATERASU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_ksrain",
+ "englishUsText":"KISSA Rain",
+ "englishUsFontType":1,
+ "frenchText":"KISSA Rain",
+ "frenchFontType":1,
+ "italianText":"KISSA Rain",
+ "italianFontType":1,
+ "germanText":"KISSA Rain",
+ "germanFontType":1,
+ "spanishText":"KISSA Rain",
+ "spanishFontType":1,
+ "neutralSpanishText":"KISSA Rain",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KISSA Rain",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_karyu",
+ "englishUsText":"Karyu",
+ "englishUsFontType":1,
+ "frenchText":"Karyu",
+ "frenchFontType":1,
+ "italianText":"Karyu",
+ "italianFontType":1,
+ "germanText":"Karyu",
+ "germanFontType":1,
+ "spanishText":"Karyu",
+ "spanishFontType":1,
+ "neutralSpanishText":"Karyu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Karyu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_cs4op",
+ "englishUsText":"I ♥ 「OHAYO! TAIKO SUMMER」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「OHAYO! TAIKO SUMMER」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「OHAYO! TAIKO SUMMER」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「OHAYO! TAIKO SUMMER」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「OHAYO! TAIKO SUMMER」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「OHAYO! TAIKO SUMMER」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「OHAYO! TAIKO SUMMER」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_saoop",
+ "englishUsText":"I ♥ 「crossing field」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「crossing field」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「crossing field」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「crossing field」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「crossing field」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「crossing field」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「crossing field」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_clssum",
+ "englishUsText":"I ♥ 「DOKA DOKA」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「DOKA DOKA」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「DOKA DOKA」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「DOKA DOKA」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「DOKA DOKA」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「DOKA DOKA」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「DOKA DOKA」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_amatrs",
+ "englishUsText":"I ♥ 「AMATERASU」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「AMATERASU」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「AMATERASU」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「AMATERASU」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「AMATERASU」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「AMATERASU」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「AMATERASU」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_ksrain",
+ "englishUsText":"I ♥ 「KISSA Rain」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「KISSA Rain」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「KISSA Rain」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「KISSA Rain」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「KISSA Rain」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「KISSA Rain」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「KISSA Rain」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_karyu",
+ "englishUsText":"I ♥ 「Karyu」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Karyu」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Karyu」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Karyu」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Karyu」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Karyu」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Karyu」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_cs4op",
+ "englishUsText":"I ♥ 「OHAYO! TAIKO SUMMER」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「OHAYO! TAIKO SUMMER」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「OHAYO! TAIKO SUMMER」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「OHAYO! TAIKO SUMMER」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「OHAYO! TAIKO SUMMER」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「OHAYO! TAIKO SUMMER」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「OHAYO! TAIKO SUMMER」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_saoop",
+ "englishUsText":"I ♥ 「crossing field」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「crossing field」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「crossing field」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「crossing field」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「crossing field」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「crossing field」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「crossing field」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_clssum",
+ "englishUsText":"I ♥ 「DOKA DOKA」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「DOKA DOKA」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「DOKA DOKA」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「DOKA DOKA」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「DOKA DOKA」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「DOKA DOKA」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「DOKA DOKA」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_amatrs",
+ "englishUsText":"I ♥ 「AMATERASU」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「AMATERASU」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「AMATERASU」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「AMATERASU」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「AMATERASU」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「AMATERASU」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「AMATERASU」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_ksrain",
+ "englishUsText":"I ♥ 「KISSA Rain」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「KISSA Rain」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「KISSA Rain」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「KISSA Rain」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「KISSA Rain」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「KISSA Rain」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「KISSA Rain」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_karyu",
+ "englishUsText":"I ♥ 「Karyu」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Karyu」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Karyu」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Karyu」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Karyu」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Karyu」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Karyu」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_natsu",
+ "englishUsText":"Summer Fest",
+ "englishUsFontType":1,
+ "frenchText":"Fête estivale",
+ "frenchFontType":1,
+ "italianText":"Festival estivo",
+ "italianFontType":1,
+ "germanText":"Sommerfest",
+ "germanFontType":1,
+ "spanishText":"Festival del verano",
+ "spanishFontType":1,
+ "neutralSpanishText":"Festival de verano",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Festival de Verão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_natsufes",
+ "englishUsText":"I ♥ Summer Fest",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ Fête estivale",
+ "frenchFontType":1,
+ "italianText":"I ♥ il festival estivo",
+ "italianFontType":1,
+ "germanText":"Ich ♥ das Sommerfest",
+ "germanFontType":1,
+ "spanishText":"I ♥ Festival del verano",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ Fest. verano",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ F. de Verão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_natsufes",
+ "englishUsText":"Began Summer Fest",
+ "englishUsFontType":1,
+ "frenchText":"Fête estivale commencée",
+ "frenchFontType":1,
+ "italianText":"Il festival estivo ha inizio",
+ "italianFontType":1,
+ "germanText":"Sommerfest begonnen",
+ "germanFontType":1,
+ "spanishText":"Inicio Festival del verano",
+ "spanishFontType":1,
+ "neutralSpanishText":"Iniciar Festival verano",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Iniciante de Verão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_natsufesex",
+ "englishUsText":"Summer Fest Master",
+ "englishUsFontType":1,
+ "frenchText":"Maître de Fête estivale",
+ "frenchFontType":1,
+ "italianText":"Maestro del festival estivo",
+ "italianFontType":1,
+ "germanText":"Sommerfest-Meister",
+ "germanFontType":1,
+ "spanishText":"Maestro del festival",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro Festival verano",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Verão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_natsufes",
+ "englishUsText":"Summer Fest",
+ "englishUsFontType":1,
+ "frenchText":"Fête estivale",
+ "frenchFontType":1,
+ "italianText":"Festival estivo",
+ "italianFontType":1,
+ "germanText":"Sommerfest",
+ "germanFontType":1,
+ "spanishText":"Festival del verano",
+ "spanishFontType":1,
+ "neutralSpanishText":"Festival de verano",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Festival de Verão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_cs4op",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_kmbaby",
+ "englishUsText":"Baby, please kill me!",
+ "englishUsFontType":1,
+ "frenchText":"Baby, please kill me!",
+ "frenchFontType":1,
+ "italianText":"Baby, please kill me!",
+ "italianFontType":1,
+ "germanText":"Baby, please kill me!",
+ "germanFontType":1,
+ "spanishText":"Baby, please kill me!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Baby, please kill me!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Baby, please kill me!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_clsbut",
+ "englishUsText":"Surfside Satie",
+ "englishUsFontType":1,
+ "frenchText":"Surfside Satie",
+ "frenchFontType":1,
+ "italianText":"Surfside Satie",
+ "italianFontType":1,
+ "germanText":"Surfside Satie",
+ "germanFontType":1,
+ "spanishText":"Surfside Satie",
+ "spanishFontType":1,
+ "neutralSpanishText":"Surfside Satie",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Surfside Satie",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_freewy",
+ "englishUsText":"Freeway3234",
+ "englishUsFontType":1,
+ "frenchText":"Freeway3234",
+ "frenchFontType":1,
+ "italianText":"Freeway3234",
+ "italianFontType":1,
+ "germanText":"Freeway3234",
+ "germanFontType":1,
+ "spanishText":"Freeway3234",
+ "spanishFontType":1,
+ "neutralSpanishText":"Freeway3234",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Freeway3234",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_ignis",
+ "englishUsText":"Ignis Danse",
+ "englishUsFontType":1,
+ "frenchText":"Ignis Danse",
+ "frenchFontType":1,
+ "italianText":"Ignis Danse",
+ "italianFontType":1,
+ "germanText":"Ignis Danse",
+ "germanFontType":1,
+ "spanishText":"Ignis Danse",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ignis Danse",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ignis Danse",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_kokoo",
+ "englishUsText":"TAIKO ZAMURAI",
+ "englishUsFontType":1,
+ "frenchText":"TAIKO ZAMURAI",
+ "frenchFontType":1,
+ "italianText":"TAIKO ZAMURAI",
+ "italianFontType":1,
+ "germanText":"TAIKO ZAMURAI",
+ "germanFontType":1,
+ "spanishText":"TAIKO ZAMURAI",
+ "spanishFontType":1,
+ "neutralSpanishText":"TAIKO ZAMURAI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"TAIKO ZAMURAI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_kmbaby",
+ "englishUsText":"From \" Baby, please kill me. \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" Baby, please kill me. \"",
+ "frenchFontType":1,
+ "italianText":"Da \" Baby, please kill me. \"",
+ "italianFontType":1,
+ "germanText":"Aus \" Baby, please kill me. \"",
+ "germanFontType":1,
+ "spanishText":"De \" Baby, please kill me. \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" Baby, please kill me. \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" Baby, please kill me. \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_ignis",
+ "englishUsText":"Yuji Masubuchi",
+ "englishUsFontType":1,
+ "frenchText":"Yuji Masubuchi",
+ "frenchFontType":1,
+ "italianText":"Yuji Masubuchi",
+ "italianFontType":1,
+ "germanText":"Yuji Masubuchi",
+ "germanFontType":1,
+ "spanishText":"Yuji Masubuchi",
+ "spanishFontType":1,
+ "neutralSpanishText":"Yuji Masubuchi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Yuji Masubuchi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_kmbaby",
+ "englishUsText":"Baby, please kill me!",
+ "englishUsFontType":1,
+ "frenchText":"Baby, please kill me!",
+ "frenchFontType":1,
+ "italianText":"Baby, please kill me!",
+ "italianFontType":1,
+ "germanText":"Baby, please kill me!",
+ "germanFontType":1,
+ "spanishText":"Baby, please kill me!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Baby, please kill me!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Baby, please kill me!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_clsbut",
+ "englishUsText":"Surfside Satie",
+ "englishUsFontType":1,
+ "frenchText":"Surfside Satie",
+ "frenchFontType":1,
+ "italianText":"Surfside Satie",
+ "italianFontType":1,
+ "germanText":"Surfside Satie",
+ "germanFontType":1,
+ "spanishText":"Surfside Satie",
+ "spanishFontType":1,
+ "neutralSpanishText":"Surfside Satie",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Surfside Satie",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_freewy",
+ "englishUsText":"Freeway3234",
+ "englishUsFontType":1,
+ "frenchText":"Freeway3234",
+ "frenchFontType":1,
+ "italianText":"Freeway3234",
+ "italianFontType":1,
+ "germanText":"Freeway3234",
+ "germanFontType":1,
+ "spanishText":"Freeway3234",
+ "spanishFontType":1,
+ "neutralSpanishText":"Freeway3234",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Freeway3234",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_ignis",
+ "englishUsText":"Ignis Danse",
+ "englishUsFontType":1,
+ "frenchText":"Ignis Danse",
+ "frenchFontType":1,
+ "italianText":"Ignis Danse",
+ "italianFontType":1,
+ "germanText":"Ignis Danse",
+ "germanFontType":1,
+ "spanishText":"Ignis Danse",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ignis Danse",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ignis Danse",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_kokoo",
+ "englishUsText":"TAIKO ZAMURAI",
+ "englishUsFontType":1,
+ "frenchText":"TAIKO ZAMURAI",
+ "frenchFontType":1,
+ "italianText":"TAIKO ZAMURAI",
+ "italianFontType":1,
+ "germanText":"TAIKO ZAMURAI",
+ "germanFontType":1,
+ "spanishText":"TAIKO ZAMURAI",
+ "spanishFontType":1,
+ "neutralSpanishText":"TAIKO ZAMURAI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"TAIKO ZAMURAI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_kmbaby",
+ "englishUsText":"Baby, please kill me!",
+ "englishUsFontType":1,
+ "frenchText":"Baby, please kill me!",
+ "frenchFontType":1,
+ "italianText":"Baby, please kill me!",
+ "italianFontType":1,
+ "germanText":"Baby, please kill me!",
+ "germanFontType":1,
+ "spanishText":"Baby, please kill me!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Baby, please kill me!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Baby, please kill me!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_clsbut",
+ "englishUsText":"Surfside Satie",
+ "englishUsFontType":1,
+ "frenchText":"Surfside Satie",
+ "frenchFontType":1,
+ "italianText":"Surfside Satie",
+ "italianFontType":1,
+ "germanText":"Surfside Satie",
+ "germanFontType":1,
+ "spanishText":"Surfside Satie",
+ "spanishFontType":1,
+ "neutralSpanishText":"Surfside Satie",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Surfside Satie",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_freewy",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_ignis",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_kokoo",
+ "englishUsText":"TAIKO ZAMURAI",
+ "englishUsFontType":1,
+ "frenchText":"TAIKO ZAMURAI",
+ "frenchFontType":1,
+ "italianText":"TAIKO ZAMURAI",
+ "italianFontType":1,
+ "germanText":"TAIKO ZAMURAI",
+ "germanFontType":1,
+ "spanishText":"TAIKO ZAMURAI",
+ "spanishFontType":1,
+ "neutralSpanishText":"TAIKO ZAMURAI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"TAIKO ZAMURAI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_kmbaby",
+ "englishUsText":"I ♥ 「Baby, please kill me!」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Baby, please kill me!」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Baby, please kill me!」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Baby, please kill me!」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Baby, please kill me!」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Baby, please kill me!」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Baby, please kill me!」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_clsbut",
+ "englishUsText":"I ♥ 「Surfside Satie」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Surfside Satie」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Surfside Satie」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Surfside Satie」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Surfside Satie」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Surfside Satie」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Surfside Satie」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_freewy",
+ "englishUsText":"I ♥ 「Freeway3234」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Freeway3234」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Freeway3234」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Freeway3234」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Freeway3234」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Freeway3234」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Freeway3234」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_ignis",
+ "englishUsText":"I ♥ 「Ignis Danse」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Ignis Danse」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Ignis Danse」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Ignis Danse」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Ignis Danse」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Ignis Danse」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Ignis Danse」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_kokoo",
+ "englishUsText":"I ♥ 「TAIKO ZAMURAI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「TAIKO ZAMURAI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「TAIKO ZAMURAI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「TAIKO ZAMURAI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「TAIKO ZAMURAI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「TAIKO ZAMURAI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「TAIKO ZAMURAI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_kmbaby",
+ "englishUsText":"I ♥ 「Baby, please kill me!」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Baby, please kill me!」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Baby, please kill me!」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Baby, please kill me!」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Baby, please kill me!」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Baby, please kill me!」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Baby, please kill me!」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_clsbut",
+ "englishUsText":"I ♥ 「Surfside Satie」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Surfside Satie」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Surfside Satie」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Surfside Satie」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Surfside Satie」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Surfside Satie」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Surfside Satie」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_freewy",
+ "englishUsText":"I ♥ 「Freeway3234」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Freeway3234」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Freeway3234」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Freeway3234」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Freeway3234」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Freeway3234」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Freeway3234」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_ignis",
+ "englishUsText":"I ♥ 「Ignis Danse」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Ignis Danse」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Ignis Danse」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Ignis Danse」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Ignis Danse」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Ignis Danse」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Ignis Danse」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_kokoo",
+ "englishUsText":"I ♥ 「TAIKO ZAMURAI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「TAIKO ZAMURAI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「TAIKO ZAMURAI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「TAIKO ZAMURAI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「TAIKO ZAMURAI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「TAIKO ZAMURAI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「TAIKO ZAMURAI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_tkym2",
+ "englishUsText":"HOUKAN NO KUGETSU",
+ "englishUsFontType":1,
+ "frenchText":"HOUKAN NO KUGETSU",
+ "frenchFontType":1,
+ "italianText":"HOUKAN NO KUGETSU",
+ "italianFontType":1,
+ "germanText":"HOUKAN NO KUGETSU",
+ "germanFontType":1,
+ "spanishText":"HOUKAN NO KUGETSU",
+ "spanishFontType":1,
+ "neutralSpanishText":"HOUKAN NO KUGETSU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HOUKAN NO KUGETSU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_madmag",
+ "englishUsText":"Connect",
+ "englishUsFontType":1,
+ "frenchText":"Connect",
+ "frenchFontType":1,
+ "italianText":"Connect",
+ "italianFontType":1,
+ "germanText":"Connect",
+ "germanFontType":1,
+ "spanishText":"Connect",
+ "spanishFontType":1,
+ "neutralSpanishText":"Connect",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Connect",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_jouzai",
+ "englishUsText":"AI TO JOUZAI NO MORI",
+ "englishUsFontType":1,
+ "frenchText":"AI TO JOUZAI NO MORI",
+ "frenchFontType":1,
+ "italianText":"AI TO JOUZAI NO MORI",
+ "italianFontType":1,
+ "germanText":"AI TO JOUZAI NO MORI",
+ "germanFontType":1,
+ "spanishText":"AI TO JOUZAI NO MORI",
+ "spanishFontType":1,
+ "neutralSpanishText":"AI TO JOUZAI NO MORI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"AI TO JOUZAI NO MORI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_whrose",
+ "englishUsText":"White Rose Insanity",
+ "englishUsFontType":1,
+ "frenchText":"White Rose Insanity",
+ "frenchFontType":1,
+ "italianText":"White Rose Insanity",
+ "italianFontType":1,
+ "germanText":"White Rose Insanity",
+ "germanFontType":1,
+ "spanishText":"White Rose Insanity",
+ "spanishFontType":1,
+ "neutralSpanishText":"White Rose Insanity",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"White Rose Insanity",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_siuryu",
+ "englishUsText":"Shiuryu",
+ "englishUsFontType":1,
+ "frenchText":"Shiuryu",
+ "frenchFontType":1,
+ "italianText":"Shiuryu",
+ "italianFontType":1,
+ "germanText":"Shiuryu",
+ "germanFontType":1,
+ "spanishText":"Shiuryu",
+ "spanishFontType":1,
+ "neutralSpanishText":"Shiuryu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Shiuryu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_tokkyo",
+ "englishUsText":"Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!",
+ "englishUsFontType":1,
+ "frenchText":"Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!",
+ "frenchFontType":1,
+ "italianText":"Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!",
+ "italianFontType":1,
+ "germanText":"Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!",
+ "germanFontType":1,
+ "spanishText":"Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_keion",
+ "englishUsText":"Don't say \"lazy\"",
+ "englishUsFontType":1,
+ "frenchText":"Don't say \"lazy\"",
+ "frenchFontType":1,
+ "italianText":"Don't say \"lazy\"",
+ "italianFontType":1,
+ "germanText":"Don't say \"lazy\"",
+ "germanFontType":1,
+ "spanishText":"Don't say \"lazy\"",
+ "spanishFontType":1,
+ "neutralSpanishText":"Don't say \"lazy\"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Don't say \"lazy\"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_doomn",
+ "englishUsText":"Doom Noiz",
+ "englishUsFontType":1,
+ "frenchText":"Doom Noiz",
+ "frenchFontType":1,
+ "italianText":"Doom Noiz",
+ "italianFontType":1,
+ "germanText":"Doom Noiz",
+ "germanFontType":1,
+ "spanishText":"Doom Noiz",
+ "spanishFontType":1,
+ "neutralSpanishText":"Doom Noiz",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Doom Noiz",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_pprose",
+ "englishUsText":"Purple Rose Fusion",
+ "englishUsFontType":1,
+ "frenchText":"Purple Rose Fusion",
+ "frenchFontType":1,
+ "italianText":"Purple Rose Fusion",
+ "italianFontType":1,
+ "germanText":"Purple Rose Fusion",
+ "germanFontType":1,
+ "spanishText":"Purple Rose Fusion",
+ "spanishFontType":1,
+ "neutralSpanishText":"Purple Rose Fusion",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Purple Rose Fusion",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_ryogen",
+ "englishUsText":"RYOGEN NO MAI",
+ "englishUsFontType":1,
+ "frenchText":"RYOGEN NO MAI",
+ "frenchFontType":1,
+ "italianText":"RYOGEN NO MAI",
+ "italianFontType":1,
+ "germanText":"RYOGEN NO MAI",
+ "germanFontType":1,
+ "spanishText":"RYOGEN NO MAI",
+ "spanishFontType":1,
+ "neutralSpanishText":"RYOGEN NO MAI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"RYOGEN NO MAI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_furyu",
+ "englishUsText":"Toryu",
+ "englishUsFontType":1,
+ "frenchText":"Toryu",
+ "frenchFontType":1,
+ "italianText":"Toryu",
+ "italianFontType":1,
+ "germanText":"Toryu",
+ "germanFontType":1,
+ "spanishText":"Toryu",
+ "spanishFontType":1,
+ "neutralSpanishText":"Toryu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Toryu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_tkym2",
+ "englishUsText":"Hashou \" Nageki no Hime \"",
+ "englishUsFontType":1,
+ "frenchText":"Hashou \" Nageki no Hime \"",
+ "frenchFontType":1,
+ "italianText":"Hashou \" Nageki no Hime \"",
+ "italianFontType":1,
+ "germanText":"Hashou \" Nageki no Hime \"",
+ "germanFontType":1,
+ "spanishText":"Hashou \" Nageki no Hime \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hashou \" Nageki no Hime \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hashou \" Nageki no Hime \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_madmag",
+ "englishUsText":"From \" PUELLA MAGI MADOKA★MAGICA \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" PUELLA MAGI MADOKA★MAGICA \"",
+ "frenchFontType":1,
+ "italianText":"Da \" PUELLA MAGI MADOKA★MAGICA \"",
+ "italianFontType":1,
+ "germanText":"Aus \" PUELLA MAGI MADOKA★MAGICA \"",
+ "germanFontType":1,
+ "spanishText":"De \" PUELLA MAGI MADOKA★MAGICA \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" PUELLA MAGI MADOKA★MAGICA \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" PUELLA MAGI MADOKA★MAGICA \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_keion",
+ "englishUsText":"From \" K-ON! \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" K-ON! \"",
+ "frenchFontType":1,
+ "italianText":"Da \" K-ON! \"",
+ "italianFontType":1,
+ "germanText":"Aus \" K-ON! \"",
+ "germanFontType":1,
+ "spanishText":"De \" K-ON! \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" K-ON! \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" K-ON! \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sub_doomn",
+ "englishUsText":"From \" Galaga Legions \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" Galaga Legions \"",
+ "frenchFontType":1,
+ "italianText":"Da \" Galaga Legions \"",
+ "italianFontType":1,
+ "germanText":"Aus \" Galaga Legions \"",
+ "germanFontType":1,
+ "spanishText":"De \" Galaga Legions \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" Galaga Legions \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" Galaga Legions \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_tkym2",
+ "englishUsText":"HOUKAN NO KUGETSU",
+ "englishUsFontType":1,
+ "frenchText":"HOUKAN NO KUGETSU",
+ "frenchFontType":1,
+ "italianText":"HOUKAN NO KUGETSU",
+ "italianFontType":1,
+ "germanText":"HOUKAN NO KUGETSU",
+ "germanFontType":1,
+ "spanishText":"HOUKAN NO KUGETSU",
+ "spanishFontType":1,
+ "neutralSpanishText":"HOUKAN NO KUGETSU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HOUKAN NO KUGETSU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_madmag",
+ "englishUsText":"Connect",
+ "englishUsFontType":1,
+ "frenchText":"Connect",
+ "frenchFontType":1,
+ "italianText":"Connect",
+ "italianFontType":1,
+ "germanText":"Connect",
+ "germanFontType":1,
+ "spanishText":"Connect",
+ "spanishFontType":1,
+ "neutralSpanishText":"Connect",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Connect",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_jouzai",
+ "englishUsText":"AI TO JOUZAI NO MORI",
+ "englishUsFontType":1,
+ "frenchText":"AI TO JOUZAI NO MORI",
+ "frenchFontType":1,
+ "italianText":"AI TO JOUZAI NO MORI",
+ "italianFontType":1,
+ "germanText":"AI TO JOUZAI NO MORI",
+ "germanFontType":1,
+ "spanishText":"AI TO JOUZAI NO MORI",
+ "spanishFontType":1,
+ "neutralSpanishText":"AI TO JOUZAI NO MORI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"AI TO JOUZAI NO MORI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_whrose",
+ "englishUsText":"White Rose Insanity",
+ "englishUsFontType":1,
+ "frenchText":"White Rose Insanity",
+ "frenchFontType":1,
+ "italianText":"White Rose Insanity",
+ "italianFontType":1,
+ "germanText":"White Rose Insanity",
+ "germanFontType":1,
+ "spanishText":"White Rose Insanity",
+ "spanishFontType":1,
+ "neutralSpanishText":"White Rose Insanity",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"White Rose Insanity",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_siuryu",
+ "englishUsText":"Shiuryu",
+ "englishUsFontType":1,
+ "frenchText":"Shiuryu",
+ "frenchFontType":1,
+ "italianText":"Shiuryu",
+ "italianFontType":1,
+ "germanText":"Shiuryu",
+ "germanFontType":1,
+ "spanishText":"Shiuryu",
+ "spanishFontType":1,
+ "neutralSpanishText":"Shiuryu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Shiuryu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_tokkyo",
+ "englishUsText":"Tokyo Tokkyo Kyo\nKyokakyoku Kyokuchou!!",
+ "englishUsFontType":1,
+ "frenchText":"Tokyo Tokkyo Kyo\nKyokakyoku Kyokuchou!!",
+ "frenchFontType":1,
+ "italianText":"Tokyo Tokkyo Kyo\nKyokakyoku Kyokuchou!!",
+ "italianFontType":1,
+ "germanText":"Tokyo Tokkyo Kyo\nKyokakyoku Kyokuchou!!",
+ "germanFontType":1,
+ "spanishText":"Tokyo Tokkyo Kyo\nKyokakyoku Kyokuchou!!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tokyo Tokkyo Kyo\nKyokakyoku Kyokuchou!!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tokyo Tokkyo Kyo\nKyokakyoku Kyokuchou!!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_keion",
+ "englishUsText":"Don't say \"lazy\"",
+ "englishUsFontType":1,
+ "frenchText":"Don't say \"lazy\"",
+ "frenchFontType":1,
+ "italianText":"Don't say \"lazy\"",
+ "italianFontType":1,
+ "germanText":"Don't say \"lazy\"",
+ "germanFontType":1,
+ "spanishText":"Don't say \"lazy\"",
+ "spanishFontType":1,
+ "neutralSpanishText":"Don't say \"lazy\"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Don't say \"lazy\"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_doomn",
+ "englishUsText":"Doom Noiz",
+ "englishUsFontType":1,
+ "frenchText":"Doom Noiz",
+ "frenchFontType":1,
+ "italianText":"Doom Noiz",
+ "italianFontType":1,
+ "germanText":"Doom Noiz",
+ "germanFontType":1,
+ "spanishText":"Doom Noiz",
+ "spanishFontType":1,
+ "neutralSpanishText":"Doom Noiz",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Doom Noiz",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_pprose",
+ "englishUsText":"Purple Rose Fusion",
+ "englishUsFontType":1,
+ "frenchText":"Purple Rose Fusion",
+ "frenchFontType":1,
+ "italianText":"Purple Rose Fusion",
+ "italianFontType":1,
+ "germanText":"Purple Rose Fusion",
+ "germanFontType":1,
+ "spanishText":"Purple Rose Fusion",
+ "spanishFontType":1,
+ "neutralSpanishText":"Purple Rose Fusion",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Purple Rose Fusion",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_ryogen",
+ "englishUsText":"RYOGEN NO MAI",
+ "englishUsFontType":1,
+ "frenchText":"RYOGEN NO MAI",
+ "frenchFontType":1,
+ "italianText":"RYOGEN NO MAI",
+ "italianFontType":1,
+ "germanText":"RYOGEN NO MAI",
+ "germanFontType":1,
+ "spanishText":"RYOGEN NO MAI",
+ "spanishFontType":1,
+ "neutralSpanishText":"RYOGEN NO MAI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"RYOGEN NO MAI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_furyu",
+ "englishUsText":"Toryu",
+ "englishUsFontType":1,
+ "frenchText":"Toryu",
+ "frenchFontType":1,
+ "italianText":"Toryu",
+ "italianFontType":1,
+ "germanText":"Toryu",
+ "germanFontType":1,
+ "spanishText":"Toryu",
+ "spanishFontType":1,
+ "neutralSpanishText":"Toryu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Toryu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_tkym2",
+ "englishUsText":"HOUKAN NO KUGETSU",
+ "englishUsFontType":1,
+ "frenchText":"HOUKAN NO KUGETSU",
+ "frenchFontType":1,
+ "italianText":"HOUKAN NO KUGETSU",
+ "italianFontType":1,
+ "germanText":"HOUKAN NO KUGETSU",
+ "germanFontType":1,
+ "spanishText":"HOUKAN NO KUGETSU",
+ "spanishFontType":1,
+ "neutralSpanishText":"HOUKAN NO KUGETSU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HOUKAN NO KUGETSU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_madmag",
+ "englishUsText":"Connect",
+ "englishUsFontType":1,
+ "frenchText":"Connect",
+ "frenchFontType":1,
+ "italianText":"Connect",
+ "italianFontType":1,
+ "germanText":"Connect",
+ "germanFontType":1,
+ "spanishText":"Connect",
+ "spanishFontType":1,
+ "neutralSpanishText":"Connect",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Connect",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_jouzai",
+ "englishUsText":"AI TO JOUZAI NO MORI",
+ "englishUsFontType":1,
+ "frenchText":"AI TO JOUZAI NO MORI",
+ "frenchFontType":1,
+ "italianText":"AI TO JOUZAI NO MORI",
+ "italianFontType":1,
+ "germanText":"AI TO JOUZAI NO MORI",
+ "germanFontType":1,
+ "spanishText":"AI TO JOUZAI NO MORI",
+ "spanishFontType":1,
+ "neutralSpanishText":"AI TO JOUZAI NO MORI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"AI TO JOUZAI NO MORI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_whrose",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_siuryu",
+ "englishUsText":"Shiuryu",
+ "englishUsFontType":1,
+ "frenchText":"Shiuryu",
+ "frenchFontType":1,
+ "italianText":"Shiuryu",
+ "italianFontType":1,
+ "germanText":"Shiuryu",
+ "germanFontType":1,
+ "spanishText":"Shiuryu",
+ "spanishFontType":1,
+ "neutralSpanishText":"Shiuryu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Shiuryu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_tokkyo",
+ "englishUsText":"Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!",
+ "englishUsFontType":1,
+ "frenchText":"Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!",
+ "frenchFontType":1,
+ "italianText":"Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!",
+ "italianFontType":1,
+ "germanText":"Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!",
+ "germanFontType":1,
+ "spanishText":"Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_keion",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_doomn",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_pprose",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_ryogen",
+ "englishUsText":"RYOGEN NO MAI",
+ "englishUsFontType":1,
+ "frenchText":"RYOGEN NO MAI",
+ "frenchFontType":1,
+ "italianText":"RYOGEN NO MAI",
+ "italianFontType":1,
+ "germanText":"RYOGEN NO MAI",
+ "germanFontType":1,
+ "spanishText":"RYOGEN NO MAI",
+ "spanishFontType":1,
+ "neutralSpanishText":"RYOGEN NO MAI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"RYOGEN NO MAI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_furyu",
+ "englishUsText":"Toryu",
+ "englishUsFontType":1,
+ "frenchText":"Toryu",
+ "frenchFontType":1,
+ "italianText":"Toryu",
+ "italianFontType":1,
+ "germanText":"Toryu",
+ "germanFontType":1,
+ "spanishText":"Toryu",
+ "spanishFontType":1,
+ "neutralSpanishText":"Toryu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Toryu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_tkym2",
+ "englishUsText":"I ♥ 「HOUKAN NO KUGETSU」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HOUKAN NO KUGETSU」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HOUKAN NO KUGETSU」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HOUKAN NO KUGETSU」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HOUKAN NO KUGETSU」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HOUKAN NO KUGETSU」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HOUKAN NO KUGETSU」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_madmag",
+ "englishUsText":"I ♥ 「Connect」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Connect」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Connect」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Connect」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Connect」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Connect」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Connect」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_jouzai",
+ "englishUsText":"I ♥ 「AI TO JOUZAI NO MORI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「AI TO JOUZAI NO MORI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「AI TO JOUZAI NO MORI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「AI TO JOUZAI NO MORI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「AI TO JOUZAI NO MORI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「AI TO JOUZAI NO MORI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「AI TO JOUZAI NO MORI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_whrose",
+ "englishUsText":"I ♥ 「White Rose Insanity」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「White Rose Insanity」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「White Rose Insanity」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「White Rose Insanity」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「White Rose Insanity」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「White Rose Insanity」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「White Rose Insanity」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_siuryu",
+ "englishUsText":"I ♥ 「Shiuryu」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Shiuryu」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Shiuryu」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Shiuryu」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Shiuryu」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Shiuryu」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Shiuryu」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_tokkyo",
+ "englishUsText":"I ♥ 「Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_keion",
+ "englishUsText":"I ♥ 「Don't say \"lazy\"」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Don't say \"lazy\"」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Don't say \"lazy\"」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Don't say \"lazy\"」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Don't say \"lazy\"」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Don't say \"lazy\"」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Don't say \"lazy\"」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_doomn",
+ "englishUsText":"I ♥ 「Doom Noiz」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Doom Noiz」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Doom Noiz」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Doom Noiz」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Doom Noiz」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Doom Noiz」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Doom Noiz」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_pprose",
+ "englishUsText":"I ♥ 「Purple Rose Fusion」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Purple Rose Fusion」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Purple Rose Fusion」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Purple Rose Fusion」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Purple Rose Fusion」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Purple Rose Fusion」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Purple Rose Fusion」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_ryogen",
+ "englishUsText":"I ♥ 「RYOGEN NO MAI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「RYOGEN NO MAI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「RYOGEN NO MAI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「RYOGEN NO MAI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「RYOGEN NO MAI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「RYOGEN NO MAI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「RYOGEN NO MAI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_furyu",
+ "englishUsText":"I ♥ 「Toryu」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Toryu」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Toryu」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Toryu」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Toryu」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Toryu」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Toryu」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_tkym2",
+ "englishUsText":"I ♥ 「HOUKAN NO KUGETSU」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HOUKAN NO KUGETSU」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HOUKAN NO KUGETSU」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HOUKAN NO KUGETSU」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HOUKAN NO KUGETSU」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HOUKAN NO KUGETSU」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HOUKAN NO KUGETSU」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_madmag",
+ "englishUsText":"I ♥ 「Connect」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Connect」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Connect」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Connect」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Connect」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Connect」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Connect」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_jouzai",
+ "englishUsText":"I ♥ 「AI TO JOUZAI NO MORI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「AI TO JOUZAI NO MORI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「AI TO JOUZAI NO MORI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「AI TO JOUZAI NO MORI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「AI TO JOUZAI NO MORI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「AI TO JOUZAI NO MORI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「AI TO JOUZAI NO MORI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_whrose",
+ "englishUsText":"I ♥ 「White Rose Insanity」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「White Rose Insanity」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「White Rose Insanity」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「White Rose Insanity」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「White Rose Insanity」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「White Rose Insanity」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「White Rose Insanity」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_siuryu",
+ "englishUsText":"I ♥ 「Shiuryu」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Shiuryu」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Shiuryu」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Shiuryu」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Shiuryu」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Shiuryu」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Shiuryu」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_tokkyo",
+ "englishUsText":"I ♥ 「Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_keion",
+ "englishUsText":"I ♥ 「Don't say \"lazy\"」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Don't say \"lazy\"」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Don't say \"lazy\"」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Don't say \"lazy\"」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Don't say \"lazy\"」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Don't say \"lazy\"」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Don't say \"lazy\"」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_doomn",
+ "englishUsText":"I ♥ 「Doom Noiz」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Doom Noiz」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Doom Noiz」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Doom Noiz」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Doom Noiz」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Doom Noiz」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Doom Noiz」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_pprose",
+ "englishUsText":"I ♥ 「Purple Rose Fusion」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Purple Rose Fusion」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Purple Rose Fusion」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Purple Rose Fusion」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Purple Rose Fusion」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Purple Rose Fusion」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Purple Rose Fusion」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_ryogen",
+ "englishUsText":"I ♥ 「RYOGEN NO MAI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「RYOGEN NO MAI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「RYOGEN NO MAI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「RYOGEN NO MAI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「RYOGEN NO MAI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「RYOGEN NO MAI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「RYOGEN NO MAI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_furyu",
+ "englishUsText":"I ♥ 「Toryu」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Toryu」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Toryu」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Toryu」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Toryu」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Toryu」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Toryu」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_gekka",
+ "englishUsText":"Moon Master Fest",
+ "englishUsFontType":1,
+ "frenchText":"Fête de la Lune",
+ "frenchFontType":1,
+ "italianText":"Festival del Maestro lunare",
+ "italianFontType":1,
+ "germanText":"Mondmeister-Fest",
+ "germanFontType":1,
+ "spanishText":"Festival Maestro lunar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Festival maestro de luna",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Festival Mestre da Lua",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gekka",
+ "englishUsText":"I ♥ The Moon",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ la Lune",
+ "frenchFontType":1,
+ "italianText":"I ♥ la Luna",
+ "italianFontType":1,
+ "germanText":"Ich ♥ den Mond",
+ "germanFontType":1,
+ "spanishText":"I ♥ la Luna",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ La luna",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ a Lua",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_moon",
+ "englishUsText":"The Moon",
+ "englishUsFontType":1,
+ "frenchText":"La Lune",
+ "frenchFontType":1,
+ "italianText":"Luna",
+ "italianFontType":1,
+ "germanText":"Der Mond",
+ "germanFontType":1,
+ "spanishText":"La Luna",
+ "spanishFontType":1,
+ "neutralSpanishText":"La luna",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"A Lua",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_katoributa",
+ "englishUsText":"Mosquito Pig",
+ "englishUsFontType":1,
+ "frenchText":"Cochon-moustique",
+ "frenchFontType":1,
+ "italianText":"Maialino antizanzare",
+ "italianFontType":1,
+ "germanText":"Moskito-Schwein",
+ "germanFontType":1,
+ "spanishText":"Puerquito",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cerdo contra mosquitos",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Porco pega-mosquito",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gekka",
+ "englishUsText":"Began Moon Master Fest",
+ "englishUsFontType":1,
+ "frenchText":"Fête de la Lune commencée",
+ "frenchFontType":1,
+ "italianText":"Il festival del Maestro lunare ha inizio",
+ "italianFontType":1,
+ "germanText":"Mondmeister-Fest gestartet",
+ "germanFontType":1,
+ "spanishText":"Inicio festival Maestro lunar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Inic. Fest. maestro luna",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Iniciante Mestre da Lua",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gekkaex",
+ "englishUsText":"Moon Master",
+ "englishUsFontType":1,
+ "frenchText":"Maître de la Lune",
+ "frenchFontType":1,
+ "italianText":"Maestro lunare",
+ "italianFontType":1,
+ "germanText":"Mondmeister",
+ "germanFontType":1,
+ "spanishText":"Maestro lunar",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro de la luna",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre da Lua",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"save_version_error",
+ "englishUsText":"Incompatible save data.\nPlease update to the latest version.",
+ "englishUsFontType":1,
+ "frenchText":"Données de sauvegarde incompatibles.\nMise à jour vers la dernière version requise.",
+ "frenchFontType":1,
+ "italianText":"Salvataggio incompatibile.\nAggiorna il gioco all'ultima versione disponibile.",
+ "italianFontType":1,
+ "germanText":"Inkompatible Speicherdaten.\nBitte auf die aktuelle Version aktualisieren.",
+ "germanFontType":1,
+ "spanishText":"Datos de guardado incompatibles.\nActualiza a la versión más reciente.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Datos guard. incompat.\nActualice a última vers.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Dados salvos incompatíveis.\nAtualize para a versão mais recente.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_cs4op",
+ "englishUsText":"おはよう!太鼓サマー",
+ "englishUsFontType":0,
+ "frenchText":"おはよう!太鼓サマー",
+ "frenchFontType":0,
+ "italianText":"おはよう!太鼓サマー",
+ "italianFontType":0,
+ "germanText":"おはよう!太鼓サマー",
+ "germanFontType":0,
+ "spanishText":"おはよう!太鼓サマー",
+ "spanishFontType":0,
+ "neutralSpanishText":"おはよう!太鼓サマー",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"おはよう!太鼓サマー",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_saoop",
+ "englishUsText":"crossing field",
+ "englishUsFontType":0,
+ "frenchText":"crossing field",
+ "frenchFontType":0,
+ "italianText":"crossing field",
+ "italianFontType":0,
+ "germanText":"crossing field",
+ "germanFontType":0,
+ "spanishText":"crossing field",
+ "spanishFontType":0,
+ "neutralSpanishText":"crossing field",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"crossing field",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_clssum",
+ "englishUsText":"弩蚊怒夏",
+ "englishUsFontType":0,
+ "frenchText":"弩蚊怒夏",
+ "frenchFontType":0,
+ "italianText":"弩蚊怒夏",
+ "italianFontType":0,
+ "germanText":"弩蚊怒夏",
+ "germanFontType":0,
+ "spanishText":"弩蚊怒夏",
+ "spanishFontType":0,
+ "neutralSpanishText":"弩蚊怒夏",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"弩蚊怒夏",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_clssum",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_amatrs",
+ "englishUsText":"天照",
+ "englishUsFontType":0,
+ "frenchText":"天照",
+ "frenchFontType":0,
+ "italianText":"天照",
+ "italianFontType":0,
+ "germanText":"天照",
+ "germanFontType":0,
+ "spanishText":"天照",
+ "spanishFontType":0,
+ "neutralSpanishText":"天照",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"天照",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_ksrain",
+ "englishUsText":"喫茶レイン",
+ "englishUsFontType":0,
+ "frenchText":"喫茶レイン",
+ "frenchFontType":0,
+ "italianText":"喫茶レイン",
+ "italianFontType":0,
+ "germanText":"喫茶レイン",
+ "germanFontType":0,
+ "spanishText":"喫茶レイン",
+ "spanishFontType":0,
+ "neutralSpanishText":"喫茶レイン",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"喫茶レイン",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_ksrain",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_karyu",
+ "englishUsText":"夏竜 ~Karyu~",
+ "englishUsFontType":0,
+ "frenchText":"夏竜 ~Karyu~",
+ "frenchFontType":0,
+ "italianText":"夏竜 ~Karyu~",
+ "italianFontType":0,
+ "germanText":"夏竜 ~Karyu~",
+ "germanFontType":0,
+ "spanishText":"夏竜 ~Karyu~",
+ "spanishFontType":0,
+ "neutralSpanishText":"夏竜 ~Karyu~",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"夏竜 ~Karyu~",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_karyu",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_kmbaby",
+ "englishUsText":"キルミーのベイベー!",
+ "englishUsFontType":0,
+ "frenchText":"キルミーのベイベー!",
+ "frenchFontType":0,
+ "italianText":"キルミーのベイベー!",
+ "italianFontType":0,
+ "germanText":"キルミーのベイベー!",
+ "germanFontType":0,
+ "spanishText":"キルミーのベイベー!",
+ "spanishFontType":0,
+ "neutralSpanishText":"キルミーのベイベー!",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"キルミーのベイベー!",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_clsbut",
+ "englishUsText":"サーフサイド・サティ",
+ "englishUsFontType":0,
+ "frenchText":"サーフサイド・サティ",
+ "frenchFontType":0,
+ "italianText":"サーフサイド・サティ",
+ "italianFontType":0,
+ "germanText":"サーフサイド・サティ",
+ "germanFontType":0,
+ "spanishText":"サーフサイド・サティ",
+ "spanishFontType":0,
+ "neutralSpanishText":"サーフサイド・サティ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"サーフサイド・サティ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_clsbut",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_freewy",
+ "englishUsText":"Freeway3234",
+ "englishUsFontType":0,
+ "frenchText":"Freeway3234",
+ "frenchFontType":0,
+ "italianText":"Freeway3234",
+ "italianFontType":0,
+ "germanText":"Freeway3234",
+ "germanFontType":0,
+ "spanishText":"Freeway3234",
+ "spanishFontType":0,
+ "neutralSpanishText":"Freeway3234",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Freeway3234",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_freewy",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_ignis",
+ "englishUsText":"Ignis Danse",
+ "englishUsFontType":0,
+ "frenchText":"Ignis Danse",
+ "frenchFontType":0,
+ "italianText":"Ignis Danse",
+ "italianFontType":0,
+ "germanText":"Ignis Danse",
+ "germanFontType":0,
+ "spanishText":"Ignis Danse",
+ "spanishFontType":0,
+ "neutralSpanishText":"Ignis Danse",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Ignis Danse",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_kokoo",
+ "englishUsText":"太鼓侍",
+ "englishUsFontType":0,
+ "frenchText":"太鼓侍",
+ "frenchFontType":0,
+ "italianText":"太鼓侍",
+ "italianFontType":0,
+ "germanText":"太鼓侍",
+ "germanFontType":0,
+ "spanishText":"太鼓侍",
+ "spanishFontType":0,
+ "neutralSpanishText":"太鼓侍",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"太鼓侍",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_kokoo",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_tkym2",
+ "englishUsText":"崩冠の紅月",
+ "englishUsFontType":0,
+ "frenchText":"崩冠の紅月",
+ "frenchFontType":0,
+ "italianText":"崩冠の紅月",
+ "italianFontType":0,
+ "germanText":"崩冠の紅月",
+ "germanFontType":0,
+ "spanishText":"崩冠の紅月",
+ "spanishFontType":0,
+ "neutralSpanishText":"崩冠の紅月",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"崩冠の紅月",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_madmag",
+ "englishUsText":"コネクト",
+ "englishUsFontType":0,
+ "frenchText":"コネクト",
+ "frenchFontType":0,
+ "italianText":"コネクト",
+ "italianFontType":0,
+ "germanText":"コネクト",
+ "germanFontType":0,
+ "spanishText":"コネクト",
+ "spanishFontType":0,
+ "neutralSpanishText":"コネクト",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"コネクト",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_jouzai",
+ "englishUsText":"愛と浄罪の森",
+ "englishUsFontType":0,
+ "frenchText":"愛と浄罪の森",
+ "frenchFontType":0,
+ "italianText":"愛と浄罪の森",
+ "italianFontType":0,
+ "germanText":"愛と浄罪の森",
+ "germanFontType":0,
+ "spanishText":"愛と浄罪の森",
+ "spanishFontType":0,
+ "neutralSpanishText":"愛と浄罪の森",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"愛と浄罪の森",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_jouzai",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_whrose",
+ "englishUsText":"White Rose Insanity",
+ "englishUsFontType":0,
+ "frenchText":"White Rose Insanity",
+ "frenchFontType":0,
+ "italianText":"White Rose Insanity",
+ "italianFontType":0,
+ "germanText":"White Rose Insanity",
+ "germanFontType":0,
+ "spanishText":"White Rose Insanity",
+ "spanishFontType":0,
+ "neutralSpanishText":"White Rose Insanity",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"White Rose Insanity",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_whrose",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_siuryu",
+ "englishUsText":"秋竜 ~Shiuryu~",
+ "englishUsFontType":0,
+ "frenchText":"秋竜 ~Shiuryu~",
+ "frenchFontType":0,
+ "italianText":"秋竜 ~Shiuryu~",
+ "italianFontType":0,
+ "germanText":"秋竜 ~Shiuryu~",
+ "germanFontType":0,
+ "spanishText":"秋竜 ~Shiuryu~",
+ "spanishFontType":0,
+ "neutralSpanishText":"秋竜 ~Shiuryu~",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"秋竜 ~Shiuryu~",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_siuryu",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_tokkyo",
+ "englishUsText":"東京特許キョ許可局局長!!",
+ "englishUsFontType":0,
+ "frenchText":"東京特許キョ許可局局長!!",
+ "frenchFontType":0,
+ "italianText":"東京特許キョ許可局局長!!",
+ "italianFontType":0,
+ "germanText":"東京特許キョ許可局局長!!",
+ "germanFontType":0,
+ "spanishText":"東京特許キョ許可局局長!!",
+ "spanishFontType":0,
+ "neutralSpanishText":"東京特許キョ許可局局長!!",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"東京特許キョ許可局局長!!",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_tokkyo",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_keion",
+ "englishUsText":"Don’t say ”lazy”",
+ "englishUsFontType":0,
+ "frenchText":"Don’t say ”lazy”",
+ "frenchFontType":0,
+ "italianText":"Don’t say ”lazy”",
+ "italianFontType":0,
+ "germanText":"Don’t say ”lazy”",
+ "germanFontType":0,
+ "spanishText":"Don’t say ”lazy”",
+ "spanishFontType":0,
+ "neutralSpanishText":"Don’t say ”lazy”",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Don’t say ”lazy”",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_doomn",
+ "englishUsText":"Doom Noiz",
+ "englishUsFontType":0,
+ "frenchText":"Doom Noiz",
+ "frenchFontType":0,
+ "italianText":"Doom Noiz",
+ "italianFontType":0,
+ "germanText":"Doom Noiz",
+ "germanFontType":0,
+ "spanishText":"Doom Noiz",
+ "spanishFontType":0,
+ "neutralSpanishText":"Doom Noiz",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Doom Noiz",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_japan_pprose",
+ "englishUsText":"Purple Rose Fusion",
+ "englishUsFontType":0,
+ "frenchText":"Purple Rose Fusion",
+ "frenchFontType":0,
+ "italianText":"Purple Rose Fusion",
+ "italianFontType":0,
+ "germanText":"Purple Rose Fusion",
+ "germanFontType":0,
+ "spanishText":"Purple Rose Fusion",
+ "spanishFontType":0,
+ "neutralSpanishText":"Purple Rose Fusion",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Purple Rose Fusion",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_pprose",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_ryogen",
+ "englishUsText":"燎原ノ舞",
+ "englishUsFontType":0,
+ "frenchText":"燎原ノ舞",
+ "frenchFontType":0,
+ "italianText":"燎原ノ舞",
+ "italianFontType":0,
+ "germanText":"燎原ノ舞",
+ "germanFontType":0,
+ "spanishText":"燎原ノ舞",
+ "spanishFontType":0,
+ "neutralSpanishText":"燎原ノ舞",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"燎原ノ舞",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_ryogen",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_furyu",
+ "englishUsText":"冬竜 ~Toryu~",
+ "englishUsFontType":0,
+ "frenchText":"冬竜 ~Toryu~",
+ "frenchFontType":0,
+ "italianText":"冬竜 ~Toryu~",
+ "italianFontType":0,
+ "germanText":"冬竜 ~Toryu~",
+ "germanFontType":0,
+ "spanishText":"冬竜 ~Toryu~",
+ "spanishFontType":0,
+ "neutralSpanishText":"冬竜 ~Toryu~",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"冬竜 ~Toryu~",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_furyu",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_cs4op",
+ "englishUsText":"ohayo!taikosummer",
+ "englishUsFontType":1,
+ "frenchText":"ohayo!taikosummer",
+ "frenchFontType":1,
+ "italianText":"ohayo!taikosummer",
+ "italianFontType":1,
+ "germanText":"ohayo!taikosummer",
+ "germanFontType":1,
+ "spanishText":"ohayo!taikosummer",
+ "spanishFontType":1,
+ "neutralSpanishText":"ohayo!taikosummer",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ohayo!taikosummer",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_saoop",
+ "englishUsText":"crossingfield",
+ "englishUsFontType":1,
+ "frenchText":"crossingfield",
+ "frenchFontType":1,
+ "italianText":"crossingfield",
+ "italianFontType":1,
+ "germanText":"crossingfield",
+ "germanFontType":1,
+ "spanishText":"crossingfield",
+ "spanishFontType":1,
+ "neutralSpanishText":"crossingfield",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"crossingfield",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_clssum",
+ "englishUsText":"dokadoka",
+ "englishUsFontType":1,
+ "frenchText":"dokadoka",
+ "frenchFontType":1,
+ "italianText":"dokadoka",
+ "italianFontType":1,
+ "germanText":"dokadoka",
+ "germanFontType":1,
+ "spanishText":"dokadoka",
+ "spanishFontType":1,
+ "neutralSpanishText":"dokadoka",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"dokadoka",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_amatrs",
+ "englishUsText":"amaterasu",
+ "englishUsFontType":1,
+ "frenchText":"amaterasu",
+ "frenchFontType":1,
+ "italianText":"amaterasu",
+ "italianFontType":1,
+ "germanText":"amaterasu",
+ "germanFontType":1,
+ "spanishText":"amaterasu",
+ "spanishFontType":1,
+ "neutralSpanishText":"amaterasu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"amaterasu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_ksrain",
+ "englishUsText":"kissarain",
+ "englishUsFontType":1,
+ "frenchText":"kissarain",
+ "frenchFontType":1,
+ "italianText":"kissarain",
+ "italianFontType":1,
+ "germanText":"kissarain",
+ "germanFontType":1,
+ "spanishText":"kissarain",
+ "spanishFontType":1,
+ "neutralSpanishText":"kissarain",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"kissarain",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_karyu",
+ "englishUsText":"karyu",
+ "englishUsFontType":1,
+ "frenchText":"karyu",
+ "frenchFontType":1,
+ "italianText":"karyu",
+ "italianFontType":1,
+ "germanText":"karyu",
+ "germanFontType":1,
+ "spanishText":"karyu",
+ "spanishFontType":1,
+ "neutralSpanishText":"karyu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"karyu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_kmbaby",
+ "englishUsText":"baby,pleasekillme!",
+ "englishUsFontType":1,
+ "frenchText":"baby,pleasekillme!",
+ "frenchFontType":1,
+ "italianText":"baby,pleasekillme!",
+ "italianFontType":1,
+ "germanText":"baby,pleasekillme!",
+ "germanFontType":1,
+ "spanishText":"baby,pleasekillme!",
+ "spanishFontType":1,
+ "neutralSpanishText":"baby,pleasekillme!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"baby,pleasekillme!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_clsbut",
+ "englishUsText":"surfsidesatie",
+ "englishUsFontType":1,
+ "frenchText":"surfsidesatie",
+ "frenchFontType":1,
+ "italianText":"surfsidesatie",
+ "italianFontType":1,
+ "germanText":"surfsidesatie",
+ "germanFontType":1,
+ "spanishText":"surfsidesatie",
+ "spanishFontType":1,
+ "neutralSpanishText":"surfsidesatie",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"surfsidesatie",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_freewy",
+ "englishUsText":"freeway3234",
+ "englishUsFontType":1,
+ "frenchText":"freeway3234",
+ "frenchFontType":1,
+ "italianText":"freeway3234",
+ "italianFontType":1,
+ "germanText":"freeway3234",
+ "germanFontType":1,
+ "spanishText":"freeway3234",
+ "spanishFontType":1,
+ "neutralSpanishText":"freeway3234",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"freeway3234",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_ignis",
+ "englishUsText":"ignisdanse",
+ "englishUsFontType":1,
+ "frenchText":"ignisdanse",
+ "frenchFontType":1,
+ "italianText":"ignisdanse",
+ "italianFontType":1,
+ "germanText":"ignisdanse",
+ "germanFontType":1,
+ "spanishText":"ignisdanse",
+ "spanishFontType":1,
+ "neutralSpanishText":"ignisdanse",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ignisdanse",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_kokoo",
+ "englishUsText":"taikozamurai",
+ "englishUsFontType":1,
+ "frenchText":"taikozamurai",
+ "frenchFontType":1,
+ "italianText":"taikozamurai",
+ "italianFontType":1,
+ "germanText":"taikozamurai",
+ "germanFontType":1,
+ "spanishText":"taikozamurai",
+ "spanishFontType":1,
+ "neutralSpanishText":"taikozamurai",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"taikozamurai",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_tkym2",
+ "englishUsText":"houkannokugetsu",
+ "englishUsFontType":1,
+ "frenchText":"houkannokugetsu",
+ "frenchFontType":1,
+ "italianText":"houkannokugetsu",
+ "italianFontType":1,
+ "germanText":"houkannokugetsu",
+ "germanFontType":1,
+ "spanishText":"houkannokugetsu",
+ "spanishFontType":1,
+ "neutralSpanishText":"houkannokugetsu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"houkannokugetsu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_madmag",
+ "englishUsText":"connect",
+ "englishUsFontType":1,
+ "frenchText":"connect",
+ "frenchFontType":1,
+ "italianText":"connect",
+ "italianFontType":1,
+ "germanText":"connect",
+ "germanFontType":1,
+ "spanishText":"connect",
+ "spanishFontType":1,
+ "neutralSpanishText":"connect",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"connect",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_jouzai",
+ "englishUsText":"aitojouzainomori",
+ "englishUsFontType":1,
+ "frenchText":"aitojouzainomori",
+ "frenchFontType":1,
+ "italianText":"aitojouzainomori",
+ "italianFontType":1,
+ "germanText":"aitojouzainomori",
+ "germanFontType":1,
+ "spanishText":"aitojouzainomori",
+ "spanishFontType":1,
+ "neutralSpanishText":"aitojouzainomori",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"aitojouzainomori",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_whrose",
+ "englishUsText":"whiteroseinsanity",
+ "englishUsFontType":1,
+ "frenchText":"whiteroseinsanity",
+ "frenchFontType":1,
+ "italianText":"whiteroseinsanity",
+ "italianFontType":1,
+ "germanText":"whiteroseinsanity",
+ "germanFontType":1,
+ "spanishText":"whiteroseinsanity",
+ "spanishFontType":1,
+ "neutralSpanishText":"whiteroseinsanity",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"whiteroseinsanity",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_siuryu",
+ "englishUsText":"shiuryu",
+ "englishUsFontType":1,
+ "frenchText":"shiuryu",
+ "frenchFontType":1,
+ "italianText":"shiuryu",
+ "italianFontType":1,
+ "germanText":"shiuryu",
+ "germanFontType":1,
+ "spanishText":"shiuryu",
+ "spanishFontType":1,
+ "neutralSpanishText":"shiuryu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"shiuryu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_tokkyo",
+ "englishUsText":"tokyotokkyokyokyokakyokukyokuchou!!",
+ "englishUsFontType":1,
+ "frenchText":"tokyotokkyokyokyokakyokukyokuchou!!",
+ "frenchFontType":1,
+ "italianText":"tokyotokkyokyokyokakyokukyokuchou!!",
+ "italianFontType":1,
+ "germanText":"tokyotokkyokyokyokakyokukyokuchou!!",
+ "germanFontType":1,
+ "spanishText":"tokyotokkyokyokyokakyokukyokuchou!!",
+ "spanishFontType":1,
+ "neutralSpanishText":"tokyotokkyokyokyokakyokukyokuchou!!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"tokyotokkyokyokyokakyokukyokuchou!!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_keion",
+ "englishUsText":"don'tsay\"lazy\"",
+ "englishUsFontType":1,
+ "frenchText":"don'tsay\"lazy\"",
+ "frenchFontType":1,
+ "italianText":"don'tsay\"lazy\"",
+ "italianFontType":1,
+ "germanText":"don'tsay\"lazy\"",
+ "germanFontType":1,
+ "spanishText":"don'tsay\"lazy\"",
+ "spanishFontType":1,
+ "neutralSpanishText":"don'tsay\"lazy\"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"don'tsay\"lazy\"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_doomn",
+ "englishUsText":"doomnoiz",
+ "englishUsFontType":1,
+ "frenchText":"doomnoiz",
+ "frenchFontType":1,
+ "italianText":"doomnoiz",
+ "italianFontType":1,
+ "germanText":"doomnoiz",
+ "germanFontType":1,
+ "spanishText":"doomnoiz",
+ "spanishFontType":1,
+ "neutralSpanishText":"doomnoiz",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"doomnoiz",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_pprose",
+ "englishUsText":"purplerosefusion",
+ "englishUsFontType":1,
+ "frenchText":"purplerosefusion",
+ "frenchFontType":1,
+ "italianText":"purplerosefusion",
+ "italianFontType":1,
+ "germanText":"purplerosefusion",
+ "germanFontType":1,
+ "spanishText":"purplerosefusion",
+ "spanishFontType":1,
+ "neutralSpanishText":"purplerosefusion",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"purplerosefusion",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_ryogen",
+ "englishUsText":"ryogennomai",
+ "englishUsFontType":1,
+ "frenchText":"ryogennomai",
+ "frenchFontType":1,
+ "italianText":"ryogennomai",
+ "italianFontType":1,
+ "germanText":"ryogennomai",
+ "germanFontType":1,
+ "spanishText":"ryogennomai",
+ "spanishFontType":1,
+ "neutralSpanishText":"ryogennomai",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ryogennomai",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_furyu",
+ "englishUsText":"toryu",
+ "englishUsFontType":1,
+ "frenchText":"toryu",
+ "frenchFontType":1,
+ "italianText":"toryu",
+ "italianFontType":1,
+ "germanText":"toryu",
+ "germanFontType":1,
+ "spanishText":"toryu",
+ "spanishFontType":1,
+ "neutralSpanishText":"toryu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"toryu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"demo_dont_play",
+ "englishUsText":"Not available in the demo version.",
+ "englishUsFontType":1,
+ "frenchText":"Indisponible dans la version démo.",
+ "frenchFontType":1,
+ "italianText":"Non disponibile nella versione demo.",
+ "italianFontType":1,
+ "germanText":"In der Demoversion nicht verfügbar.",
+ "germanFontType":1,
+ "spanishText":"No disponible en la versión demo.",
+ "spanishFontType":1,
+ "neutralSpanishText":"No dispon. en demo.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Não disponível na versão demo.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_bko1",
+ "englishUsText":"I ♥ 「DON-chan SEKAI RYOKOU」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「DON-chan SEKAI RYOKOU」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「DON-chan SEKAI RYOKOU」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「DON-chan SEKAI RYOKOU」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「DON-chan SEKAI RYOKOU」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「DON-chan SEKAI RYOKOU」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「DON-chan SEKAI RYOKOU」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_thnlnd",
+ "englishUsText":"I ♥ 「EIKYOKU/GYOUAN」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「EIKYOKU/GYOUAN」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「EIKYOKU/GYOUAN」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「EIKYOKU/GYOUAN」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「EIKYOKU/GYOUAN」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「EIKYOKU/GYOUAN」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「EIKYOKU/GYOUAN」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_clslps",
+ "englishUsText":"I ♥ 「Rhapsody in Blue」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Rhapsody in Blue」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Rhapsody in Blue」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Rhapsody in Blue」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Rhapsody in Blue」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Rhapsody in Blue」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Rhapsody in Blue」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_imsnex",
+ "englishUsText":"I ♥ 「Next Life」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Next Life」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Next Life」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Next Life」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Next Life」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Next Life」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Next Life」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_lactea",
+ "englishUsText":"I ♥ 「via lactea」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「via lactea」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「via lactea」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「via lactea」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「via lactea」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「via lactea」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「via lactea」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_susano",
+ "englishUsText":"I ♥ 「SUSANOO」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SUSANOO」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SUSANOO」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SUSANOO」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SUSANOO」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SUSANOO」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SUSANOO」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_csmdgn",
+ "englishUsText":"I ♥ 「DANGAN NOTES」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「DANGAN NOTES」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「DANGAN NOTES」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「DANGAN NOTES」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「DANGAN NOTES」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「DANGAN NOTES」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「DANGAN NOTES」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_bko1",
+ "englishUsText":"I ♥ 「DON-chan SEKAI RYOKOU」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「DON-chan SEKAI RYOKOU」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「DON-chan SEKAI RYOKOU」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「DON-chan SEKAI RYOKOU」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「DON-chan SEKAI RYOKOU」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「DON-chan SEKAI RYOKOU」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「DON-chan SEKAI RYOKOU」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_thnlnd",
+ "englishUsText":"I ♥ 「EIKYOKU/GYOUAN」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「EIKYOKU/GYOUAN」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「EIKYOKU/GYOUAN」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「EIKYOKU/GYOUAN」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「EIKYOKU/GYOUAN」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「EIKYOKU/GYOUAN」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「EIKYOKU/GYOUAN」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_clslps",
+ "englishUsText":"I ♥ 「Rhapsody in Blue」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Rhapsody in Blue」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Rhapsody in Blue」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Rhapsody in Blue」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Rhapsody in Blue」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Rhapsody in Blue」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Rhapsody in Blue」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_imsnex",
+ "englishUsText":"I ♥ 「Next Life」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Next Life」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Next Life」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Next Life」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Next Life」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Next Life」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Next Life」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_lactea",
+ "englishUsText":"I ♥ 「via lactea」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「via lactea」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「via lactea」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「via lactea」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「via lactea」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「via lactea」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「via lactea」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_susano",
+ "englishUsText":"I ♥ 「SUSANOO」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SUSANOO」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SUSANOO」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SUSANOO」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SUSANOO」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SUSANOO」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SUSANOO」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_csmdgn",
+ "englishUsText":"I ♥ 「DANGAN NOTES」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「DANGAN NOTES」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「DANGAN NOTES」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「DANGAN NOTES」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「DANGAN NOTES」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「DANGAN NOTES」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「DANGAN NOTES」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_konpasu",
+ "englishUsText":"Compass",
+ "englishUsFontType":1,
+ "frenchText":"Boussole",
+ "frenchFontType":1,
+ "italianText":"Bussola",
+ "italianFontType":1,
+ "germanText":"Kompass",
+ "germanFontType":1,
+ "spanishText":"Brújula",
+ "spanishFontType":1,
+ "neutralSpanishText":"Brújula",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bússola",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_niji",
+ "englishUsText":"Rainbow",
+ "englishUsFontType":1,
+ "frenchText":"Arc-en-ciel",
+ "frenchFontType":1,
+ "italianText":"Arcobaleno",
+ "italianFontType":1,
+ "germanText":"Regenbogen",
+ "germanFontType":1,
+ "spanishText":"Arcoíris",
+ "spanishFontType":1,
+ "neutralSpanishText":"Arcoíris",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Arco-íris",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_chikyuu",
+ "englishUsText":"Earth",
+ "englishUsFontType":1,
+ "frenchText":"Terre",
+ "frenchFontType":1,
+ "italianText":"Terra",
+ "italianFontType":1,
+ "germanText":"Erde",
+ "germanFontType":1,
+ "spanishText":"Tierra",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tierra",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Terra",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_helloworld",
+ "englishUsText":"Hello, World!",
+ "englishUsFontType":1,
+ "frenchText":"Bonjour le monde !",
+ "frenchFontType":1,
+ "italianText":"Ciao, mondo!",
+ "italianFontType":1,
+ "germanText":"Hallo, Welt!",
+ "germanFontType":1,
+ "spanishText":"¡Hola, mundo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Hola, mundo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Olá, Mundo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_world",
+ "englishUsText":"Tatsujin Around the World",
+ "englishUsFontType":1,
+ "frenchText":"Tatsujin autour du monde",
+ "frenchFontType":1,
+ "italianText":"Tatsujin per il mondo",
+ "italianFontType":1,
+ "germanText":"Tatsujin weltweit",
+ "germanFontType":1,
+ "spanishText":"Tatsujin por todo el mundo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tatsujin en el mundo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tatsujin Pelo Mundo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_world",
+ "englishUsText":"World Taiko Fest",
+ "englishUsFontType":1,
+ "frenchText":"Fête mond. Taiko",
+ "frenchFontType":1,
+ "italianText":"Taiko festival mondiale",
+ "italianFontType":1,
+ "germanText":"Welt-Taiko-Fest",
+ "germanFontType":1,
+ "spanishText":"Festival Mundial de Taiko",
+ "spanishFontType":1,
+ "neutralSpanishText":"Festival Taiko",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mundial de Taiko",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_bko1",
+ "englishUsText":"DON-chan SEKAI RYOKOU",
+ "englishUsFontType":1,
+ "frenchText":"DON-chan SEKAI RYOKOU",
+ "frenchFontType":1,
+ "italianText":"DON-chan SEKAI RYOKOU",
+ "italianFontType":1,
+ "germanText":"DON-chan SEKAI RYOKOU",
+ "germanFontType":1,
+ "spanishText":"DON-chan SEKAI RYOKOU",
+ "spanishFontType":1,
+ "neutralSpanishText":"DON-chan SEKAI RYOKOU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DON-chan SEKAI RYOKOU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_bko1",
+ "englishUsText":"DON-chan SEKAI RYOKOU",
+ "englishUsFontType":1,
+ "frenchText":"DON-chan SEKAI RYOKOU",
+ "frenchFontType":1,
+ "italianText":"DON-chan SEKAI RYOKOU",
+ "italianFontType":1,
+ "germanText":"DON-chan SEKAI RYOKOU",
+ "germanFontType":1,
+ "spanishText":"DON-chan SEKAI RYOKOU",
+ "spanishFontType":1,
+ "neutralSpanishText":"DON-chan SEKAI RYOKOU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DON-chan SEKAI RYOKOU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_bko1",
+ "englishUsText":"DON-chan SEKAI RYOKOU",
+ "englishUsFontType":1,
+ "frenchText":"DON-chan SEKAI RYOKOU",
+ "frenchFontType":1,
+ "italianText":"DON-chan SEKAI RYOKOU",
+ "italianFontType":1,
+ "germanText":"DON-chan SEKAI RYOKOU",
+ "germanFontType":1,
+ "spanishText":"DON-chan SEKAI RYOKOU",
+ "spanishFontType":1,
+ "neutralSpanishText":"DON-chan SEKAI RYOKOU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DON-chan SEKAI RYOKOU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_bko1",
+ "englishUsText":"どんちゃん 世界旅行",
+ "englishUsFontType":0,
+ "frenchText":"どんちゃん 世界旅行",
+ "frenchFontType":0,
+ "italianText":"どんちゃん 世界旅行",
+ "italianFontType":0,
+ "germanText":"どんちゃん 世界旅行",
+ "germanFontType":0,
+ "spanishText":"どんちゃん 世界旅行",
+ "spanishFontType":0,
+ "neutralSpanishText":"どんちゃん 世界旅行",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"どんちゃん 世界旅行",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_bko1",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_thnlnd",
+ "englishUsText":"EIKYOKU/GYOUAN",
+ "englishUsFontType":1,
+ "frenchText":"EIKYOKU/GYOUAN",
+ "frenchFontType":1,
+ "italianText":"EIKYOKU/GYOUAN",
+ "italianFontType":1,
+ "germanText":"EIKYOKU/GYOUAN",
+ "germanFontType":1,
+ "spanishText":"EIKYOKU/GYOUAN",
+ "spanishFontType":1,
+ "neutralSpanishText":"EIKYOKU/GYOUAN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"EIKYOKU/GYOUAN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_thnlnd",
+ "englishUsText":"EIKYOKU/GYOUAN",
+ "englishUsFontType":1,
+ "frenchText":"EIKYOKU/GYOUAN",
+ "frenchFontType":1,
+ "italianText":"EIKYOKU/GYOUAN",
+ "italianFontType":1,
+ "germanText":"EIKYOKU/GYOUAN",
+ "germanFontType":1,
+ "spanishText":"EIKYOKU/GYOUAN",
+ "spanishFontType":1,
+ "neutralSpanishText":"EIKYOKU/GYOUAN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"EIKYOKU/GYOUAN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_thnlnd",
+ "englishUsText":"EIKYOKU/GYOUAN",
+ "englishUsFontType":1,
+ "frenchText":"EIKYOKU/GYOUAN",
+ "frenchFontType":1,
+ "italianText":"EIKYOKU/GYOUAN",
+ "italianFontType":1,
+ "germanText":"EIKYOKU/GYOUAN",
+ "germanFontType":1,
+ "spanishText":"EIKYOKU/GYOUAN",
+ "spanishFontType":1,
+ "neutralSpanishText":"EIKYOKU/GYOUAN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"EIKYOKU/GYOUAN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_thnlnd",
+ "englishUsText":"郢曲/暁闇",
+ "englishUsFontType":0,
+ "frenchText":"郢曲/暁闇",
+ "frenchFontType":0,
+ "italianText":"郢曲/暁闇",
+ "italianFontType":0,
+ "germanText":"郢曲/暁闇",
+ "germanFontType":0,
+ "spanishText":"郢曲/暁闇",
+ "spanishFontType":0,
+ "neutralSpanishText":"郢曲/暁闇",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"郢曲/暁闇",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_thnlnd",
+ "englishUsText":"Toho Project×NAMCO SOUNDS LindaAI-CUE",
+ "englishUsFontType":1,
+ "frenchText":"Toho Project×NAMCO SOUNDS / LindaAI‐CUE",
+ "frenchFontType":1,
+ "italianText":"Toho Project×NAMCO SOUNDS / LindaAI‐CUE",
+ "italianFontType":1,
+ "germanText":"Toho Project×NAMCO SOUNDS / LindaAI‐CUE",
+ "germanFontType":1,
+ "spanishText":"Toho Project×NAMCO SOUNDS / LindaAI‐CUE",
+ "spanishFontType":1,
+ "neutralSpanishText":"Toho Project×NAMCO SOUNDS / LindaAI‐CUE",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Toho Project×NAMCO SOUNDS / LindaAI‐CUE",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_clslps",
+ "englishUsText":"Rhapsody in Blue",
+ "englishUsFontType":1,
+ "frenchText":"Rhapsody in Blue",
+ "frenchFontType":1,
+ "italianText":"Rhapsody in Blue",
+ "italianFontType":1,
+ "germanText":"Rhapsody in Blue",
+ "germanFontType":1,
+ "spanishText":"Rhapsody in Blue",
+ "spanishFontType":1,
+ "neutralSpanishText":"Rhapsody in Blue",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Rhapsody in Blue",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_clslps",
+ "englishUsText":"Rhapsody in Blue",
+ "englishUsFontType":1,
+ "frenchText":"Rhapsody in Blue",
+ "frenchFontType":1,
+ "italianText":"Rhapsody in Blue",
+ "italianFontType":1,
+ "germanText":"Rhapsody in Blue",
+ "germanFontType":1,
+ "spanishText":"Rhapsody in Blue",
+ "spanishFontType":1,
+ "neutralSpanishText":"Rhapsody in Blue",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Rhapsody in Blue",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_clslps",
+ "englishUsText":"Rhapsody in Blue",
+ "englishUsFontType":1,
+ "frenchText":"Rhapsody in Blue",
+ "frenchFontType":1,
+ "italianText":"Rhapsody in Blue",
+ "italianFontType":1,
+ "germanText":"Rhapsody in Blue",
+ "germanFontType":1,
+ "spanishText":"Rhapsody in Blue",
+ "spanishFontType":1,
+ "neutralSpanishText":"Rhapsody in Blue",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Rhapsody in Blue",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_clslps",
+ "englishUsText":"ラプソディ・イン・ブルー",
+ "englishUsFontType":0,
+ "frenchText":"ラプソディ・イン・ブルー",
+ "frenchFontType":0,
+ "italianText":"ラプソディ・イン・ブルー",
+ "italianFontType":0,
+ "germanText":"ラプソディ・イン・ブルー",
+ "germanFontType":0,
+ "spanishText":"ラプソディ・イン・ブルー",
+ "spanishFontType":0,
+ "neutralSpanishText":"ラプソディ・イン・ブルー",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ラプソディ・イン・ブルー",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_clslps",
+ "englishUsText":"George Gershwin",
+ "englishUsFontType":1,
+ "frenchText":"George Gershwin",
+ "frenchFontType":1,
+ "italianText":"George Gershwin",
+ "italianFontType":1,
+ "germanText":"George Gershwin",
+ "germanFontType":1,
+ "spanishText":"George Gershwin",
+ "spanishFontType":1,
+ "neutralSpanishText":"George Gershwin",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"George Gershwin",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_imsnex",
+ "englishUsText":"Next Life",
+ "englishUsFontType":1,
+ "frenchText":"Next Life",
+ "frenchFontType":1,
+ "italianText":"Next Life",
+ "italianFontType":1,
+ "germanText":"Next Life",
+ "germanFontType":1,
+ "spanishText":"Next Life",
+ "spanishFontType":1,
+ "neutralSpanishText":"Next Life",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Next Life",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_imsnex",
+ "englishUsText":"Next Life",
+ "englishUsFontType":1,
+ "frenchText":"Next Life",
+ "frenchFontType":1,
+ "italianText":"Next Life",
+ "italianFontType":1,
+ "germanText":"Next Life",
+ "germanFontType":1,
+ "spanishText":"Next Life",
+ "spanishFontType":1,
+ "neutralSpanishText":"Next Life",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Next Life",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_imsnex",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_imsnex",
+ "englishUsText":"Next Life",
+ "englishUsFontType":0,
+ "frenchText":"Next Life",
+ "frenchFontType":0,
+ "italianText":"Next Life",
+ "italianFontType":0,
+ "germanText":"Next Life",
+ "germanFontType":0,
+ "spanishText":"Next Life",
+ "spanishFontType":0,
+ "neutralSpanishText":"Next Life",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Next Life",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_imsnex",
+ "englishUsText":"From \" THE iDOLM@STER \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" THE iDOLM@STER \"",
+ "frenchFontType":1,
+ "italianText":"Da \" THE iDOLM@STER \"",
+ "italianFontType":1,
+ "germanText":"Aus \" THE iDOLM@STER \"",
+ "germanFontType":1,
+ "spanishText":"De \" THE iDOLM@STER \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" THE iDOLM@STER \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" THE iDOLM@STER \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_lactea",
+ "englishUsText":"via lactea",
+ "englishUsFontType":1,
+ "frenchText":"via lactea",
+ "frenchFontType":1,
+ "italianText":"via lactea",
+ "italianFontType":1,
+ "germanText":"via lactea",
+ "germanFontType":1,
+ "spanishText":"via lactea",
+ "spanishFontType":1,
+ "neutralSpanishText":"via lactea",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"via lactea",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_lactea",
+ "englishUsText":"via lactea",
+ "englishUsFontType":1,
+ "frenchText":"via lactea",
+ "frenchFontType":1,
+ "italianText":"via lactea",
+ "italianFontType":1,
+ "germanText":"via lactea",
+ "germanFontType":1,
+ "spanishText":"via lactea",
+ "spanishFontType":1,
+ "neutralSpanishText":"via lactea",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"via lactea",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_lactea",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_lactea",
+ "englishUsText":"via lactea",
+ "englishUsFontType":0,
+ "frenchText":"via lactea",
+ "frenchFontType":0,
+ "italianText":"via lactea",
+ "italianFontType":0,
+ "germanText":"via lactea",
+ "germanFontType":0,
+ "spanishText":"via lactea",
+ "spanishFontType":0,
+ "neutralSpanishText":"via lactea",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"via lactea",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_lactea",
+ "englishUsText":"feat.Setsunan",
+ "englishUsFontType":1,
+ "frenchText":"feat.Setsunan",
+ "frenchFontType":1,
+ "italianText":"feat.Setsunan",
+ "italianFontType":1,
+ "germanText":"feat.Setsunan",
+ "germanFontType":1,
+ "spanishText":"feat.Setsunan",
+ "spanishFontType":1,
+ "neutralSpanishText":"feat.Setsunan",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"feat.Setsunan",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_susano",
+ "englishUsText":"SUSANOO",
+ "englishUsFontType":1,
+ "frenchText":"SUSANOO",
+ "frenchFontType":1,
+ "italianText":"SUSANOO",
+ "italianFontType":1,
+ "germanText":"SUSANOO",
+ "germanFontType":1,
+ "spanishText":"SUSANOO",
+ "spanishFontType":1,
+ "neutralSpanishText":"SUSANOO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SUSANOO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_susano",
+ "englishUsText":"SUSANOO",
+ "englishUsFontType":1,
+ "frenchText":"SUSANOO",
+ "frenchFontType":1,
+ "italianText":"SUSANOO",
+ "italianFontType":1,
+ "germanText":"SUSANOO",
+ "germanFontType":1,
+ "spanishText":"SUSANOO",
+ "spanishFontType":1,
+ "neutralSpanishText":"SUSANOO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SUSANOO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_susano",
+ "englishUsText":"SUSANOO",
+ "englishUsFontType":1,
+ "frenchText":"SUSANOO",
+ "frenchFontType":1,
+ "italianText":"SUSANOO",
+ "italianFontType":1,
+ "germanText":"SUSANOO",
+ "germanFontType":1,
+ "spanishText":"SUSANOO",
+ "spanishFontType":1,
+ "neutralSpanishText":"SUSANOO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SUSANOO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_susano",
+ "englishUsText":"須佐之男",
+ "englishUsFontType":0,
+ "frenchText":"須佐之男",
+ "frenchFontType":0,
+ "italianText":"須佐之男",
+ "italianFontType":0,
+ "germanText":"須佐之男",
+ "germanFontType":0,
+ "spanishText":"須佐之男",
+ "spanishFontType":0,
+ "neutralSpanishText":"須佐之男",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"須佐之男",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_susano",
+ "englishUsText":"Tatsh a.k.a Xeami",
+ "englishUsFontType":1,
+ "frenchText":"Tatsh a.k.a Xeami",
+ "frenchFontType":1,
+ "italianText":"Tatsh a.k.a Xeami",
+ "italianFontType":1,
+ "germanText":"Tatsh a.k.a Xeami",
+ "germanFontType":1,
+ "spanishText":"Tatsh a.k.a Xeami",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tatsh a.k.a Xeami",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tatsh a.k.a Xeami",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_csmdgn",
+ "englishUsText":"DANGAN NOTES",
+ "englishUsFontType":1,
+ "frenchText":"DANGAN NOTES",
+ "frenchFontType":1,
+ "italianText":"DANGAN NOTES",
+ "italianFontType":1,
+ "germanText":"DANGAN NOTES",
+ "germanFontType":1,
+ "spanishText":"DANGAN NOTES",
+ "spanishFontType":1,
+ "neutralSpanishText":"DANGAN NOTES",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DANGAN NOTES",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_csmdgn",
+ "englishUsText":"DANGAN NOTES",
+ "englishUsFontType":1,
+ "frenchText":"DANGAN NOTES",
+ "frenchFontType":1,
+ "italianText":"DANGAN NOTES",
+ "italianFontType":1,
+ "germanText":"DANGAN NOTES",
+ "germanFontType":1,
+ "spanishText":"DANGAN NOTES",
+ "spanishFontType":1,
+ "neutralSpanishText":"DANGAN NOTES",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DANGAN NOTES",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_csmdgn",
+ "englishUsText":"DANGAN NOTES",
+ "englishUsFontType":1,
+ "frenchText":"DANGAN NOTES",
+ "frenchFontType":1,
+ "italianText":"DANGAN NOTES",
+ "italianFontType":1,
+ "germanText":"DANGAN NOTES",
+ "germanFontType":1,
+ "spanishText":"DANGAN NOTES",
+ "spanishFontType":1,
+ "neutralSpanishText":"DANGAN NOTES",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DANGAN NOTES",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_csmdgn",
+ "englishUsText":"ダンガンノーツ",
+ "englishUsFontType":0,
+ "frenchText":"ダンガンノーツ",
+ "frenchFontType":0,
+ "italianText":"ダンガンノーツ",
+ "italianFontType":0,
+ "germanText":"ダンガンノーツ",
+ "germanFontType":0,
+ "spanishText":"ダンガンノーツ",
+ "spanishFontType":0,
+ "neutralSpanishText":"ダンガンノーツ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ダンガンノーツ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_csmdgn",
+ "englishUsText":"cosMo@Bousou-P",
+ "englishUsFontType":1,
+ "frenchText":"cosMo@Bousou-P",
+ "frenchFontType":1,
+ "italianText":"cosMo@Bousou-P",
+ "italianFontType":1,
+ "germanText":"cosMo@Bousou-P",
+ "germanFontType":1,
+ "spanishText":"cosMo@Bousou-P",
+ "spanishFontType":1,
+ "neutralSpanishText":"cosMo@Bousou-P",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"cosMo@Bousou-P",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_bko1",
+ "englishUsText":"don-chansekairyokou",
+ "englishUsFontType":1,
+ "frenchText":"don-chansekairyokou",
+ "frenchFontType":1,
+ "italianText":"don-chansekairyokou",
+ "italianFontType":1,
+ "germanText":"don-chansekairyokou",
+ "germanFontType":1,
+ "spanishText":"don-chansekairyokou",
+ "spanishFontType":1,
+ "neutralSpanishText":"don-chansekairyokou",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"don-chansekairyokou",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_thnlnd",
+ "englishUsText":"eikyoku/gyouan",
+ "englishUsFontType":1,
+ "frenchText":"eikyoku/gyouan",
+ "frenchFontType":1,
+ "italianText":"eikyoku/gyouan",
+ "italianFontType":1,
+ "germanText":"eikyoku/gyouan",
+ "germanFontType":1,
+ "spanishText":"eikyoku/gyouan",
+ "spanishFontType":1,
+ "neutralSpanishText":"eikyoku/gyouan",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"eikyoku/gyouan",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_clslps",
+ "englishUsText":"rhapsodyinblue",
+ "englishUsFontType":1,
+ "frenchText":"rhapsodyinblue",
+ "frenchFontType":1,
+ "italianText":"rhapsodyinblue",
+ "italianFontType":1,
+ "germanText":"rhapsodyinblue",
+ "germanFontType":1,
+ "spanishText":"rhapsodyinblue",
+ "spanishFontType":1,
+ "neutralSpanishText":"rhapsodyinblue",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"rhapsodyinblue",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_imsnex",
+ "englishUsText":"nextlife",
+ "englishUsFontType":1,
+ "frenchText":"nextlife",
+ "frenchFontType":1,
+ "italianText":"nextlife",
+ "italianFontType":1,
+ "germanText":"nextlife",
+ "germanFontType":1,
+ "spanishText":"nextlife",
+ "spanishFontType":1,
+ "neutralSpanishText":"nextlife",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"nextlife",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_lactea",
+ "englishUsText":"vialactea",
+ "englishUsFontType":1,
+ "frenchText":"vialactea",
+ "frenchFontType":1,
+ "italianText":"vialactea",
+ "italianFontType":1,
+ "germanText":"vialactea",
+ "germanFontType":1,
+ "spanishText":"vialactea",
+ "spanishFontType":1,
+ "neutralSpanishText":"vialactea",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"vialactea",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_susano",
+ "englishUsText":"susanoo",
+ "englishUsFontType":1,
+ "frenchText":"susanoo",
+ "frenchFontType":1,
+ "italianText":"susanoo",
+ "italianFontType":1,
+ "germanText":"susanoo",
+ "germanFontType":1,
+ "spanishText":"susanoo",
+ "spanishFontType":1,
+ "neutralSpanishText":"susanoo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"susanoo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_csmdgn",
+ "englishUsText":"dangannotes",
+ "englishUsFontType":1,
+ "frenchText":"dangannotes",
+ "frenchFontType":1,
+ "italianText":"dangannotes",
+ "italianFontType":1,
+ "germanText":"dangannotes",
+ "germanFontType":1,
+ "spanishText":"dangannotes",
+ "spanishFontType":1,
+ "neutralSpanishText":"dangannotes",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"dangannotes",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_price_free",
+ "englishUsText":"Free",
+ "englishUsFontType":1,
+ "frenchText":"Gratuit",
+ "frenchFontType":1,
+ "italianText":"Gratuito",
+ "italianFontType":1,
+ "germanText":"Kostenlos",
+ "germanFontType":1,
+ "spanishText":"Gratis",
+ "spanishFontType":1,
+ "neutralSpanishText":"Free",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Free",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_saoggo",
+ "englishUsText":"I ♥ 「RYUUSEI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「RYUUSEI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「RYUUSEI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「RYUUSEI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「RYUUSEI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「RYUUSEI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「RYUUSEI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_clsswn",
+ "englishUsText":"I ♥ 「Swan Lake」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Swan Lake」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Swan Lake」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Swan Lake」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Swan Lake」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Swan Lake」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Swan Lake」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_csabop",
+ "englishUsText":"I ♥ 「HIBIKE! Taiko No Tatsujin」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HIBIKE! Taiko No Tatsujin」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HIBIKE! Taiko No Tatsujin」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HIBIKE! Taiko No Tatsujin」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HIBIKE! Taiko No Tatsujin」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HIBIKE! Taiko No Tatsujin」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HIBIKE! Taiko No Tatsujin」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_excsab",
+ "englishUsText":"I ♥ 「HIBIKE! Taiko No Tatsujin -Long Ver.-」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HIBIKE! Taiko No Tatsujin -Long Ver.-」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HIBIKE! Taiko No Tatsujin -Long Ver.-」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HIBIKE! Taiko No Tatsujin -Long Ver.-」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HIBIKE! Taiko No Tatsujin -Long Ver.-」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HIBIKE! Taiko No Tatsujin -Long Ver.-」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HIBIKE! Taiko No Tatsujin -Long Ver.-」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_4396bl",
+ "englishUsText":"I ♥ 「YOZAKURA Bladerz」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「YOZAKURA Bladerz」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「YOZAKURA Bladerz」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「YOZAKURA Bladerz」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「YOZAKURA Bladerz」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「YOZAKURA Bladerz」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「YOZAKURA Bladerz」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_vt1b2x",
+ "englishUsText":"I ♥ 「≠MM」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「≠MM」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「≠MM」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「≠MM」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「≠MM」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「≠MM」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「≠MM」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_usa",
+ "englishUsText":"I ♥ 「U.S.A.」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「U.S.A.」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「U.S.A.」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「U.S.A.」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「U.S.A.」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「U.S.A.」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「U.S.A.」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_ngzsnc",
+ "englishUsText":"I ♥ 「SYNCHRONICITY」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SYNCHRONICITY」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SYNCHRONICITY」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SYNCHRONICITY」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SYNCHRONICITY」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SYNCHRONICITY」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SYNCHRONICITY」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_elegy",
+ "englishUsText":"I ♥ 「Sayonara Elegy」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Sayonara Elegy」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Sayonara Elegy」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Sayonara Elegy」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Sayonara Elegy」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Sayonara Elegy」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Sayonara Elegy」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_saoggo",
+ "englishUsText":"I ♥ 「RYUUSEI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「RYUUSEI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「RYUUSEI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「RYUUSEI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「RYUUSEI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「RYUUSEI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「RYUUSEI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_clsswn",
+ "englishUsText":"I ♥ 「Swan Lake」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Swan Lake」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Swan Lake」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Swan Lake」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Swan Lake」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Swan Lake」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Swan Lake」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_csabop",
+ "englishUsText":"I ♥ 「HIBIKE! Taiko No Tatsujin」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HIBIKE! Taiko No Tatsujin」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HIBIKE! Taiko No Tatsujin」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HIBIKE! Taiko No Tatsujin」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HIBIKE! Taiko No Tatsujin」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HIBIKE! Taiko No Tatsujin」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HIBIKE! Taiko No Tatsujin」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_excsab",
+ "englishUsText":"I ♥ 「HIBIKE! Taiko No Tatsujin -Long Ver.-」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HIBIKE! Taiko No Tatsujin -Long Ver.-」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HIBIKE! Taiko No Tatsujin -Long Ver.-」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HIBIKE! Taiko No Tatsujin -Long Ver.-」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HIBIKE! Taiko No Tatsujin -Long Ver.-」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HIBIKE! Taiko No Tatsujin -Long Ver.-」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HIBIKE! Taiko No Tatsujin -Long Ver.-」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_4396bl",
+ "englishUsText":"I ♥ 「YOZAKURA Bladerz」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「YOZAKURA Bladerz」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「YOZAKURA Bladerz」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「YOZAKURA Bladerz」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「YOZAKURA Bladerz」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「YOZAKURA Bladerz」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「YOZAKURA Bladerz」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_vt1b2x",
+ "englishUsText":"I ♥ 「≠MM」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「≠MM」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「≠MM」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「≠MM」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「≠MM」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「≠MM」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「≠MM」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_usa",
+ "englishUsText":"I ♥ 「U.S.A.」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「U.S.A.」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「U.S.A.」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「U.S.A.」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「U.S.A.」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「U.S.A.」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「U.S.A.」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_ngzsnc",
+ "englishUsText":"I ♥ 「SYNCHRONICITY」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SYNCHRONICITY」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SYNCHRONICITY」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SYNCHRONICITY」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SYNCHRONICITY」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SYNCHRONICITY」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SYNCHRONICITY」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_elegy",
+ "englishUsText":"I ♥ 「Sayonara Elegy」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Sayonara Elegy」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Sayonara Elegy」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Sayonara Elegy」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Sayonara Elegy」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Sayonara Elegy」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Sayonara Elegy」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_saoggo",
+ "englishUsText":"RYUUSEI",
+ "englishUsFontType":1,
+ "frenchText":"RYUUSEI",
+ "frenchFontType":1,
+ "italianText":"RYUUSEI",
+ "italianFontType":1,
+ "germanText":"RYUUSEI",
+ "germanFontType":1,
+ "spanishText":"RYUUSEI",
+ "spanishFontType":1,
+ "neutralSpanishText":"RYUUSEI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"RYUUSEI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_saoggo",
+ "englishUsText":"RYUUSEI",
+ "englishUsFontType":1,
+ "frenchText":"RYUUSEI",
+ "frenchFontType":1,
+ "italianText":"RYUUSEI",
+ "italianFontType":1,
+ "germanText":"RYUUSEI",
+ "germanFontType":1,
+ "spanishText":"RYUUSEI",
+ "spanishFontType":1,
+ "neutralSpanishText":"RYUUSEI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"RYUUSEI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_saoggo",
+ "englishUsText":"RYUUSEI",
+ "englishUsFontType":1,
+ "frenchText":"RYUUSEI",
+ "frenchFontType":1,
+ "italianText":"RYUUSEI",
+ "italianFontType":1,
+ "germanText":"RYUUSEI",
+ "germanFontType":1,
+ "spanishText":"RYUUSEI",
+ "spanishFontType":1,
+ "neutralSpanishText":"RYUUSEI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"RYUUSEI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_saoggo",
+ "englishUsText":"流星",
+ "englishUsFontType":0,
+ "frenchText":"流星",
+ "frenchFontType":0,
+ "italianText":"流星",
+ "italianFontType":0,
+ "germanText":"流星",
+ "germanFontType":0,
+ "spanishText":"流星",
+ "spanishFontType":0,
+ "neutralSpanishText":"流星",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"流星",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_saoggo",
+ "englishUsText":"From \" SWORD ART ONLINE ALTERNATIVE \"GUN GALE ONLINE\" \"",
+ "englishUsFontType":1,
+ "frenchText":"From \" SWORD ART ONLINE ALTERNATIVE \"GUN GALE ONLINE\" \"",
+ "frenchFontType":1,
+ "italianText":"From \" SWORD ART ONLINE ALTERNATIVE \"GUN GALE ONLINE\" \"",
+ "italianFontType":1,
+ "germanText":"From \" SWORD ART ONLINE ALTERNATIVE \"GUN GALE ONLINE\" \"",
+ "germanFontType":1,
+ "spanishText":"From \" SWORD ART ONLINE ALTERNATIVE \"GUN GALE ONLINE\" \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"From \" SWORD ART ONLINE ALTERNATIVE \"GUN GALE ONLINE\" \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"From \" SWORD ART ONLINE ALTERNATIVE \"GUN GALE ONLINE\" \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_clsswn",
+ "englishUsText":"Swan Lake",
+ "englishUsFontType":1,
+ "frenchText":"Swan Lake",
+ "frenchFontType":1,
+ "italianText":"Swan Lake",
+ "italianFontType":1,
+ "germanText":"Swan Lake",
+ "germanFontType":1,
+ "spanishText":"Swan Lake",
+ "spanishFontType":1,
+ "neutralSpanishText":"Swan Lake",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Swan Lake",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_clsswn",
+ "englishUsText":"Swan Lake",
+ "englishUsFontType":1,
+ "frenchText":"Swan Lake",
+ "frenchFontType":1,
+ "italianText":"Swan Lake",
+ "italianFontType":1,
+ "germanText":"Swan Lake",
+ "germanFontType":1,
+ "spanishText":"Swan Lake",
+ "spanishFontType":1,
+ "neutralSpanishText":"Swan Lake",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Swan Lake",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_clsswn",
+ "englishUsText":"Swan Lake",
+ "englishUsFontType":1,
+ "frenchText":"Swan Lake",
+ "frenchFontType":1,
+ "italianText":"Swan Lake",
+ "italianFontType":1,
+ "germanText":"Swan Lake",
+ "germanFontType":1,
+ "spanishText":"Swan Lake",
+ "spanishFontType":1,
+ "neutralSpanishText":"Swan Lake",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Swan Lake",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_clsswn",
+ "englishUsText":"白鳥の湖",
+ "englishUsFontType":0,
+ "frenchText":"白鳥の湖",
+ "frenchFontType":0,
+ "italianText":"白鳥の湖",
+ "italianFontType":0,
+ "germanText":"白鳥の湖",
+ "germanFontType":0,
+ "spanishText":"白鳥の湖",
+ "spanishFontType":0,
+ "neutralSpanishText":"白鳥の湖",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"白鳥の湖",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_clsswn",
+ "englishUsText":"~still a duckling~",
+ "englishUsFontType":1,
+ "frenchText":"~still a duckling~",
+ "frenchFontType":1,
+ "italianText":"~still a duckling~",
+ "italianFontType":1,
+ "germanText":"~still a duckling~",
+ "germanFontType":1,
+ "spanishText":"~still a duckling~",
+ "spanishFontType":1,
+ "neutralSpanishText":"~still a duckling~",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"~still a duckling~",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_csabop",
+ "englishUsText":"HIBIKE! Taiko No Tatsujin",
+ "englishUsFontType":1,
+ "frenchText":"HIBIKE! Taiko No Tatsujin",
+ "frenchFontType":1,
+ "italianText":"HIBIKE! Taiko No Tatsujin",
+ "italianFontType":1,
+ "germanText":"HIBIKE! Taiko No Tatsujin",
+ "germanFontType":1,
+ "spanishText":"HIBIKE! Taiko No Tatsujin",
+ "spanishFontType":1,
+ "neutralSpanishText":"HIBIKE! Taiko No Tatsujin",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HIBIKE! Taiko No Tatsujin",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_csabop",
+ "englishUsText":"HIBIKE! Taiko No Tatsujin",
+ "englishUsFontType":1,
+ "frenchText":"HIBIKE! Taiko No Tatsujin",
+ "frenchFontType":1,
+ "italianText":"HIBIKE! Taiko No Tatsujin",
+ "italianFontType":1,
+ "germanText":"HIBIKE! Taiko No Tatsujin",
+ "germanFontType":1,
+ "spanishText":"HIBIKE! Taiko No Tatsujin",
+ "spanishFontType":1,
+ "neutralSpanishText":"HIBIKE! Taiko No Tatsujin",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HIBIKE! Taiko No Tatsujin",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_csabop",
+ "englishUsText":"HIBIKE! Taiko No Tatsujin",
+ "englishUsFontType":1,
+ "frenchText":"HIBIKE! Taiko No Tatsujin",
+ "frenchFontType":1,
+ "italianText":"HIBIKE! Taiko No Tatsujin",
+ "italianFontType":1,
+ "germanText":"HIBIKE! Taiko No Tatsujin",
+ "germanFontType":1,
+ "spanishText":"HIBIKE! Taiko No Tatsujin",
+ "spanishFontType":1,
+ "neutralSpanishText":"HIBIKE! Taiko No Tatsujin",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HIBIKE! Taiko No Tatsujin",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_csabop",
+ "englishUsText":"響け!太鼓の達人",
+ "englishUsFontType":0,
+ "frenchText":"響け!太鼓の達人",
+ "frenchFontType":0,
+ "italianText":"響け!太鼓の達人",
+ "italianFontType":0,
+ "germanText":"響け!太鼓の達人",
+ "germanFontType":0,
+ "spanishText":"響け!太鼓の達人",
+ "spanishFontType":0,
+ "neutralSpanishText":"響け!太鼓の達人",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"響け!太鼓の達人",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_csabop",
+ "englishUsText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "englishUsFontType":1,
+ "frenchText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "frenchFontType":1,
+ "italianText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "italianFontType":1,
+ "germanText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "germanFontType":1,
+ "spanishText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "spanishFontType":1,
+ "neutralSpanishText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_excsab",
+ "englishUsText":"HIBIKE! Taiko No Tatsujin -Long Ver.-",
+ "englishUsFontType":1,
+ "frenchText":"HIBIKE! Taiko No Tatsujin -Long Ver.-",
+ "frenchFontType":1,
+ "italianText":"HIBIKE! Taiko No Tatsujin -Long Ver.-",
+ "italianFontType":1,
+ "germanText":"HIBIKE! Taiko No Tatsujin -Long Ver.-",
+ "germanFontType":1,
+ "spanishText":"HIBIKE! Taiko No Tatsujin -Long Ver.-",
+ "spanishFontType":1,
+ "neutralSpanishText":"HIBIKE! Taiko No Tatsujin -Long Ver.-",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HIBIKE! Taiko No Tatsujin -Long Ver.-",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_excsab",
+ "englishUsText":"HIBIKE! Taiko No Tatsujin\n-Long Ver.-",
+ "englishUsFontType":1,
+ "frenchText":"HIBIKE! Taiko No Tatsujin\n-Long Ver.-",
+ "frenchFontType":1,
+ "italianText":"HIBIKE! Taiko No Tatsujin\n-Long Ver.-",
+ "italianFontType":1,
+ "germanText":"HIBIKE! Taiko No Tatsujin\n-Long Ver.-",
+ "germanFontType":1,
+ "spanishText":"HIBIKE! Taiko No Tatsujin\n-Long Ver.-",
+ "spanishFontType":1,
+ "neutralSpanishText":"HIBIKE! Taiko No Tatsujin\n-Long Ver.-",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HIBIKE! Taiko No Tatsujin\n-Long Ver.-",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_excsab",
+ "englishUsText":"HIBIKE! Taiko No Tatsujin -Long Ver.-",
+ "englishUsFontType":1,
+ "frenchText":"HIBIKE! Taiko No Tatsujin -Long Ver.-",
+ "frenchFontType":1,
+ "italianText":"HIBIKE! Taiko No Tatsujin -Long Ver.-",
+ "italianFontType":1,
+ "germanText":"HIBIKE! Taiko No Tatsujin -Long Ver.-",
+ "germanFontType":1,
+ "spanishText":"HIBIKE! Taiko No Tatsujin -Long Ver.-",
+ "spanishFontType":1,
+ "neutralSpanishText":"HIBIKE! Taiko No Tatsujin -Long Ver.-",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HIBIKE! Taiko No Tatsujin -Long Ver.-",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_excsab",
+ "englishUsText":"響け!太鼓の達人 -Long Ver.-",
+ "englishUsFontType":0,
+ "frenchText":"響け!太鼓の達人 -Long Ver.-",
+ "frenchFontType":0,
+ "italianText":"響け!太鼓の達人 -Long Ver.-",
+ "italianFontType":0,
+ "germanText":"響け!太鼓の達人 -Long Ver.-",
+ "germanFontType":0,
+ "spanishText":"響け!太鼓の達人 -Long Ver.-",
+ "spanishFontType":0,
+ "neutralSpanishText":"響け!太鼓の達人 -Long Ver.-",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"響け!太鼓の達人 -Long Ver.-",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_excsab",
+ "englishUsText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "englishUsFontType":1,
+ "frenchText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "frenchFontType":1,
+ "italianText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "italianFontType":1,
+ "germanText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "germanFontType":1,
+ "spanishText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "spanishFontType":1,
+ "neutralSpanishText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ICHIRO MIZUKI・MITSUKO HORIE・HIRONOBU KAGEYAMA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_4396bl",
+ "englishUsText":"YOZAKURA Bladerz",
+ "englishUsFontType":1,
+ "frenchText":"YOZAKURA Bladerz",
+ "frenchFontType":1,
+ "italianText":"YOZAKURA Bladerz",
+ "italianFontType":1,
+ "germanText":"YOZAKURA Bladerz",
+ "germanFontType":1,
+ "spanishText":"YOZAKURA Bladerz",
+ "spanishFontType":1,
+ "neutralSpanishText":"YOZAKURA Bladerz",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"YOZAKURA Bladerz",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_4396bl",
+ "englishUsText":"YOZAKURA Bladerz",
+ "englishUsFontType":1,
+ "frenchText":"YOZAKURA Bladerz",
+ "frenchFontType":1,
+ "italianText":"YOZAKURA Bladerz",
+ "italianFontType":1,
+ "germanText":"YOZAKURA Bladerz",
+ "germanFontType":1,
+ "spanishText":"YOZAKURA Bladerz",
+ "spanishFontType":1,
+ "neutralSpanishText":"YOZAKURA Bladerz",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"YOZAKURA Bladerz",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_4396bl",
+ "englishUsText":"YOZAKURA Bladerz",
+ "englishUsFontType":1,
+ "frenchText":"YOZAKURA Bladerz",
+ "frenchFontType":1,
+ "italianText":"YOZAKURA Bladerz",
+ "italianFontType":1,
+ "germanText":"YOZAKURA Bladerz",
+ "germanFontType":1,
+ "spanishText":"YOZAKURA Bladerz",
+ "spanishFontType":1,
+ "neutralSpanishText":"YOZAKURA Bladerz",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"YOZAKURA Bladerz",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_4396bl",
+ "englishUsText":"夜櫻ブレヰダアズ",
+ "englishUsFontType":0,
+ "frenchText":"夜櫻ブレヰダアズ",
+ "frenchFontType":0,
+ "italianText":"夜櫻ブレヰダアズ",
+ "italianFontType":0,
+ "germanText":"夜櫻ブレヰダアズ",
+ "germanFontType":0,
+ "spanishText":"夜櫻ブレヰダアズ",
+ "spanishFontType":0,
+ "neutralSpanishText":"夜櫻ブレヰダアズ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"夜櫻ブレヰダアズ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_4396bl",
+ "englishUsText":"PONKICHI",
+ "englishUsFontType":1,
+ "frenchText":"PONKICHI",
+ "frenchFontType":1,
+ "italianText":"PONKICHI",
+ "italianFontType":1,
+ "germanText":"PONKICHI",
+ "germanFontType":1,
+ "spanishText":"PONKICHI",
+ "spanishFontType":1,
+ "neutralSpanishText":"PONKICHI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"PONKICHI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_vt1b2x",
+ "englishUsText":"≠MM",
+ "englishUsFontType":1,
+ "frenchText":"≠MM",
+ "frenchFontType":1,
+ "italianText":"≠MM",
+ "italianFontType":1,
+ "germanText":"≠MM",
+ "germanFontType":1,
+ "spanishText":"≠MM",
+ "spanishFontType":1,
+ "neutralSpanishText":"≠MM",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"≠MM",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_vt1b2x",
+ "englishUsText":"≠MM",
+ "englishUsFontType":1,
+ "frenchText":"≠MM",
+ "frenchFontType":1,
+ "italianText":"≠MM",
+ "italianFontType":1,
+ "germanText":"≠MM",
+ "germanFontType":1,
+ "spanishText":"≠MM",
+ "spanishFontType":1,
+ "neutralSpanishText":"≠MM",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"≠MM",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_vt1b2x",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_vt1b2x",
+ "englishUsText":"≠MM",
+ "englishUsFontType":0,
+ "frenchText":"≠MM",
+ "frenchFontType":0,
+ "italianText":"≠MM",
+ "italianFontType":0,
+ "germanText":"≠MM",
+ "germanFontType":0,
+ "spanishText":"≠MM",
+ "spanishFontType":0,
+ "neutralSpanishText":"≠MM",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"≠MM",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_vt1b2x",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_usa",
+ "englishUsText":"U.S.A.",
+ "englishUsFontType":1,
+ "frenchText":"U.S.A.",
+ "frenchFontType":1,
+ "italianText":"U.S.A.",
+ "italianFontType":1,
+ "germanText":"U.S.A.",
+ "germanFontType":1,
+ "spanishText":"U.S.A.",
+ "spanishFontType":1,
+ "neutralSpanishText":"U.S.A.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"U.S.A.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_usa",
+ "englishUsText":"U.S.A.",
+ "englishUsFontType":1,
+ "frenchText":"U.S.A.",
+ "frenchFontType":1,
+ "italianText":"U.S.A.",
+ "italianFontType":1,
+ "germanText":"U.S.A.",
+ "germanFontType":1,
+ "spanishText":"U.S.A.",
+ "spanishFontType":1,
+ "neutralSpanishText":"U.S.A.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"U.S.A.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_usa",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_usa",
+ "englishUsText":"U.S.A.",
+ "englishUsFontType":0,
+ "frenchText":"U.S.A.",
+ "frenchFontType":0,
+ "italianText":"U.S.A.",
+ "italianFontType":0,
+ "germanText":"U.S.A.",
+ "germanFontType":0,
+ "spanishText":"U.S.A.",
+ "spanishFontType":0,
+ "neutralSpanishText":"U.S.A.",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"U.S.A.",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_usa",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_ngzsnc",
+ "englishUsText":"SYNCHRONICITY",
+ "englishUsFontType":1,
+ "frenchText":"SYNCHRONICITY",
+ "frenchFontType":1,
+ "italianText":"SYNCHRONICITY",
+ "italianFontType":1,
+ "germanText":"SYNCHRONICITY",
+ "germanFontType":1,
+ "spanishText":"SYNCHRONICITY",
+ "spanishFontType":1,
+ "neutralSpanishText":"SYNCHRONICITY",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SYNCHRONICITY",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_ngzsnc",
+ "englishUsText":"SYNCHRONICITY",
+ "englishUsFontType":1,
+ "frenchText":"SYNCHRONICITY",
+ "frenchFontType":1,
+ "italianText":"SYNCHRONICITY",
+ "italianFontType":1,
+ "germanText":"SYNCHRONICITY",
+ "germanFontType":1,
+ "spanishText":"SYNCHRONICITY",
+ "spanishFontType":1,
+ "neutralSpanishText":"SYNCHRONICITY",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SYNCHRONICITY",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_ngzsnc",
+ "englishUsText":"SYNCHRONICITY",
+ "englishUsFontType":1,
+ "frenchText":"SYNCHRONICITY",
+ "frenchFontType":1,
+ "italianText":"SYNCHRONICITY",
+ "italianFontType":1,
+ "germanText":"SYNCHRONICITY",
+ "germanFontType":1,
+ "spanishText":"SYNCHRONICITY",
+ "spanishFontType":1,
+ "neutralSpanishText":"SYNCHRONICITY",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SYNCHRONICITY",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_ngzsnc",
+ "englishUsText":"シンクロニシティ",
+ "englishUsFontType":0,
+ "frenchText":"シンクロニシティ",
+ "frenchFontType":0,
+ "italianText":"シンクロニシティ",
+ "italianFontType":0,
+ "germanText":"シンクロニシティ",
+ "germanFontType":0,
+ "spanishText":"シンクロニシティ",
+ "spanishFontType":0,
+ "neutralSpanishText":"シンクロニシティ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"シンクロニシティ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_ngzsnc",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_elegy",
+ "englishUsText":"Sayonara Elegy",
+ "englishUsFontType":1,
+ "frenchText":"Sayonara Elegy",
+ "frenchFontType":1,
+ "italianText":"Sayonara Elegy",
+ "italianFontType":1,
+ "germanText":"Sayonara Elegy",
+ "germanFontType":1,
+ "spanishText":"Sayonara Elegy",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sayonara Elegy",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sayonara Elegy",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_elegy",
+ "englishUsText":"Sayonara Elegy",
+ "englishUsFontType":1,
+ "frenchText":"Sayonara Elegy",
+ "frenchFontType":1,
+ "italianText":"Sayonara Elegy",
+ "italianFontType":1,
+ "germanText":"Sayonara Elegy",
+ "germanFontType":1,
+ "spanishText":"Sayonara Elegy",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sayonara Elegy",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sayonara Elegy",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_elegy",
+ "englishUsText":"Sayonara Elegy",
+ "englishUsFontType":1,
+ "frenchText":"Sayonara Elegy",
+ "frenchFontType":1,
+ "italianText":"Sayonara Elegy",
+ "italianFontType":1,
+ "germanText":"Sayonara Elegy",
+ "germanFontType":1,
+ "spanishText":"Sayonara Elegy",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sayonara Elegy",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sayonara Elegy",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_elegy",
+ "englishUsText":"さよならエレジー",
+ "englishUsFontType":0,
+ "frenchText":"さよならエレジー",
+ "frenchFontType":0,
+ "italianText":"さよならエレジー",
+ "italianFontType":0,
+ "germanText":"さよならエレジー",
+ "germanFontType":0,
+ "spanishText":"さよならエレジー",
+ "spanishFontType":0,
+ "neutralSpanishText":"さよならエレジー",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"さよならエレジー",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_elegy",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_saoggo",
+ "englishUsText":"ryuusei",
+ "englishUsFontType":1,
+ "frenchText":"ryuusei",
+ "frenchFontType":1,
+ "italianText":"ryuusei",
+ "italianFontType":1,
+ "germanText":"ryuusei",
+ "germanFontType":1,
+ "spanishText":"ryuusei",
+ "spanishFontType":1,
+ "neutralSpanishText":"ryuusei",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ryuusei",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_clsswn",
+ "englishUsText":"swanlake",
+ "englishUsFontType":1,
+ "frenchText":"swanlake",
+ "frenchFontType":1,
+ "italianText":"swanlake",
+ "italianFontType":1,
+ "germanText":"swanlake",
+ "germanFontType":1,
+ "spanishText":"swanlake",
+ "spanishFontType":1,
+ "neutralSpanishText":"swanlake",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"swanlake",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_csabop",
+ "englishUsText":"hibike!taikonotatsujin",
+ "englishUsFontType":1,
+ "frenchText":"hibike!taikonotatsujin",
+ "frenchFontType":1,
+ "italianText":"hibike!taikonotatsujin",
+ "italianFontType":1,
+ "germanText":"hibike!taikonotatsujin",
+ "germanFontType":1,
+ "spanishText":"hibike!taikonotatsujin",
+ "spanishFontType":1,
+ "neutralSpanishText":"hibike!taikonotatsujin",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"hibike!taikonotatsujin",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_excsab",
+ "englishUsText":"hibike!taikonotatsujin-longver.-",
+ "englishUsFontType":1,
+ "frenchText":"hibike!taikonotatsujin-longver.-",
+ "frenchFontType":1,
+ "italianText":"hibike!taikonotatsujin-longver.-",
+ "italianFontType":1,
+ "germanText":"hibike!taikonotatsujin-longver.-",
+ "germanFontType":1,
+ "spanishText":"hibike!taikonotatsujin-longver.-",
+ "spanishFontType":1,
+ "neutralSpanishText":"hibike!taikonotatsujin-longver.-",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"hibike!taikonotatsujin-longver.-",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_4396bl",
+ "englishUsText":"yozakurabladerz",
+ "englishUsFontType":1,
+ "frenchText":"yozakurabladerz",
+ "frenchFontType":1,
+ "italianText":"yozakurabladerz",
+ "italianFontType":1,
+ "germanText":"yozakurabladerz",
+ "germanFontType":1,
+ "spanishText":"yozakurabladerz",
+ "spanishFontType":1,
+ "neutralSpanishText":"yozakurabladerz",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"yozakurabladerz",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_vt1b2x",
+ "englishUsText":"≠mm",
+ "englishUsFontType":1,
+ "frenchText":"≠mm",
+ "frenchFontType":1,
+ "italianText":"≠mm",
+ "italianFontType":1,
+ "germanText":"≠mm",
+ "germanFontType":1,
+ "spanishText":"≠mm",
+ "spanishFontType":1,
+ "neutralSpanishText":"≠mm",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"≠mm",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_usa",
+ "englishUsText":"u.s.a.",
+ "englishUsFontType":1,
+ "frenchText":"u.s.a.",
+ "frenchFontType":1,
+ "italianText":"u.s.a.",
+ "italianFontType":1,
+ "germanText":"u.s.a.",
+ "germanFontType":1,
+ "spanishText":"u.s.a.",
+ "spanishFontType":1,
+ "neutralSpanishText":"u.s.a.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"u.s.a.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_ngzsnc",
+ "englishUsText":"synchronicity",
+ "englishUsFontType":1,
+ "frenchText":"synchronicity",
+ "frenchFontType":1,
+ "italianText":"synchronicity",
+ "italianFontType":1,
+ "germanText":"synchronicity",
+ "germanFontType":1,
+ "spanishText":"synchronicity",
+ "spanishFontType":1,
+ "neutralSpanishText":"synchronicity",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"synchronicity",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_elegy",
+ "englishUsText":"sayonaraelegy",
+ "englishUsFontType":1,
+ "frenchText":"sayonaraelegy",
+ "frenchFontType":1,
+ "italianText":"sayonaraelegy",
+ "italianFontType":1,
+ "germanText":"sayonaraelegy",
+ "germanFontType":1,
+ "spanishText":"sayonaraelegy",
+ "spanishFontType":1,
+ "neutralSpanishText":"sayonaraelegy",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"sayonaraelegy",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_newyear",
+ "englishUsText":"Let's drum up a great 2019!",
+ "englishUsFontType":1,
+ "frenchText":"Faisons entrer le bonheur en tambour pour 2019 !",
+ "frenchFontType":1,
+ "italianText":"Per un 2019 tambureggiante!",
+ "italianFontType":1,
+ "germanText":"Trommeln wir für ein tolles 2019!",
+ "germanFontType":1,
+ "spanishText":"¡Por un 2019 de tambores!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Tengamos un 2019 lleno de música!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Uma rajada de tambores para um ótimo 2019!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_newyear",
+ "englishUsText":"Drum in the new year!",
+ "englishUsFontType":1,
+ "frenchText":"Fêtons le Nouvel An en tambour !",
+ "frenchFontType":1,
+ "italianText":"Tambureggiamo fino al nuovo anno!",
+ "italianFontType":1,
+ "germanText":"Trommeln im neuen Jahr!",
+ "germanFontType":1,
+ "spanishText":"¡Recibe el año nuevo con un tamboreo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Recibamos el Año Nuevo!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tambores no Ano Novo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_newyearex",
+ "englishUsText":"Drum in the New Year Fest Master",
+ "englishUsFontType":1,
+ "frenchText":"Maître de la fête du Nouvel An en tambour",
+ "frenchFontType":1,
+ "italianText":"Maestro del nuovo anno tambureggiante",
+ "italianFontType":1,
+ "germanText":"Trommeln zum Neujahrsfest-Meister",
+ "germanFontType":1,
+ "spanishText":"Recibe al maestro del festival de año nuevo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Recibamos el Maestro Festival de Año Nuevo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre dos tambores na Festa de Ano Novo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_medetai",
+ "englishUsText":"Festivi-tie",
+ "englishUsFontType":1,
+ "frenchText":"Fê-thon le Nouvel An",
+ "frenchFontType":1,
+ "italianText":"Pesce di Capodanno",
+ "italianFontType":1,
+ "germanText":"Festkleid",
+ "germanFontType":1,
+ "spanishText":"Pez-tividad",
+ "spanishFontType":1,
+ "neutralSpanishText":"Festivi-dar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Peixe fino no réveillon",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_partypeople",
+ "englishUsText":"Party People",
+ "englishUsFontType":1,
+ "frenchText":"Fêtards",
+ "frenchFontType":1,
+ "italianText":"Festaiolo",
+ "italianFontType":1,
+ "germanText":"Partygänger",
+ "germanFontType":1,
+ "spanishText":"Gente festiva",
+ "spanishFontType":1,
+ "neutralSpanishText":"Fiestero",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Galera baladeira",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_newyear",
+ "englishUsText":"Drum in the New Year Fest",
+ "englishUsFontType":1,
+ "frenchText":"Fête du Nouvel An en tambour",
+ "frenchFontType":1,
+ "italianText":"Festival del nuovo anno tambureggiante",
+ "italianFontType":1,
+ "germanText":"Trommeln zum Neujahrsfest",
+ "germanFontType":1,
+ "spanishText":"Recibe el festival de año nuevo con un tamboreo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Recibamos el Festival de Año Nuevo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tambores na Festa de Ano Novo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_clsrad",
+ "englishUsText":"I ♥ 「Radetzky March」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Marche de Radetzky」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Marcia di Radetzky」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Radetzky-Marsch」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Marcha Radetzky」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Marcha Radetzky」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Marcha Radetzky」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_go9ra9",
+ "englishUsText":"I ♥ 「GOKURAKUJOUDO」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「GOKURAKUJOUDO」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「GOKURAKUJOUDO」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「GOKURAKUJOUDO」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「GOKURAKUJOUDO」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「GOKURAKUJOUDO」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「GOKURAKUJOUDO」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gumis2",
+ "englishUsText":"I ♥ 「Setsuna Trip」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Setsuna Trip」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Setsuna Trip」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Setsuna Trip」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Setsuna Trip」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Setsuna Trip」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Setsuna Trip」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_syyoak",
+ "englishUsText":"I ♥ 「Yoake Made Ato 3-byou」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Yoake Made Ato 3-byou」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Yoake Made Ato 3-byou」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Yoake Made Ato 3-byou」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Yoake Made Ato 3-byou」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Yoake Made Ato 3-byou」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Yoake Made Ato 3-byou」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_bbb",
+ "englishUsText":"I ♥ 「Blessed Bouquet Buskers」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Blessed Bouquet Buskers」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Blessed Bouquet Buskers」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Blessed Bouquet Buskers」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Blessed Bouquet Buskers」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Blessed Bouquet Buskers」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Blessed Bouquet Buskers」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_xan",
+ "englishUsText":"I ♥ 「Xa」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Xa」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Xa」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Xa」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Xa」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Xa」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Xa」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_umtube",
+ "englishUsText":"I ♥ 「YouTube Theme Song」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「YouTube Theme Song」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「YouTube Theme Song」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「YouTube Theme Song」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「YouTube Theme Song」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「YouTube Theme Song」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「YouTube Theme Song」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_kykgrs",
+ "englishUsText":"I ♥ 「Garasu Wo Ware」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Garasu Wo Ware」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Garasu Wo Ware」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Garasu Wo Ware」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Garasu Wo Ware」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Garasu Wo Ware」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Garasu Wo Ware」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_railgn",
+ "englishUsText":"I ♥ 「only my railgun」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「only my railgun」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「only my railgun」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「only my railgun」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「only my railgun」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「only my railgun」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「only my railgun」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_clsrad",
+ "englishUsText":"I ♥ 「Radetzky March」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Marche de Radetzky」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Marcia di Radetzky」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Radetzky-Marsch」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Marcha Radetzky」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Marcha Radetzky」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Marcha Radetzky」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_go9ra9",
+ "englishUsText":"I ♥ 「GOKURAKUJOUDO」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「GOKURAKUJOUDO」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「GOKURAKUJOUDO」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「GOKURAKUJOUDO」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「GOKURAKUJOUDO」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「GOKURAKUJOUDO」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「GOKURAKUJOUDO」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gumis2",
+ "englishUsText":"I ♥ 「Setsuna Trip」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Setsuna Trip」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Setsuna Trip」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Setsuna Trip」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Setsuna Trip」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Setsuna Trip」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Setsuna Trip」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_syyoak",
+ "englishUsText":"I ♥ 「Yoake Made Ato 3-byou」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Yoake Made Ato 3-byou」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Yoake Made Ato 3-byou」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Yoake Made Ato 3-byou」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Yoake Made Ato 3-byou」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Yoake Made Ato 3-byou」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Yoake Made Ato 3-byou」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_bbb",
+ "englishUsText":"I ♥ 「Blessed Bouquet Buskers」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Blessed Bouquet Buskers」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Blessed Bouquet Buskers」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Blessed Bouquet Buskers」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Blessed Bouquet Buskers」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Blessed Bouquet Buskers」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Blessed Bouquet Buskers」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_xan",
+ "englishUsText":"I ♥ 「Xa」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Xa」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Xa」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Xa」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Xa」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Xa」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Xa」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_umtube",
+ "englishUsText":"I ♥ 「YouTube Theme Song」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「YouTube Theme Song」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「YouTube Theme Song」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「YouTube Theme Song」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「YouTube Theme Song」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「YouTube Theme Song」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「YouTube Theme Song」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_kykgrs",
+ "englishUsText":"I ♥ 「Garasu Wo Ware」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Garasu Wo Ware」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Garasu Wo Ware」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Garasu Wo Ware」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Garasu Wo Ware」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Garasu Wo Ware」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Garasu Wo Ware」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_railgn",
+ "englishUsText":"I ♥ 「only my railgun」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「only my railgun」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「only my railgun」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「only my railgun」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「only my railgun」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「only my railgun」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「only my railgun」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_go9ra9",
+ "englishUsText":"GOKURAKUJOUDO",
+ "englishUsFontType":1,
+ "frenchText":"GOKURAKUJOUDO",
+ "frenchFontType":1,
+ "italianText":"GOKURAKUJOUDO",
+ "italianFontType":1,
+ "germanText":"GOKURAKUJOUDO",
+ "germanFontType":1,
+ "spanishText":"GOKURAKUJOUDO",
+ "spanishFontType":1,
+ "neutralSpanishText":"GOKURAKUJOUDO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"GOKURAKUJOUDO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_go9ra9",
+ "englishUsText":"GOKURAKUJOUDO",
+ "englishUsFontType":1,
+ "frenchText":"GOKURAKUJOUDO",
+ "frenchFontType":1,
+ "italianText":"GOKURAKUJOUDO",
+ "italianFontType":1,
+ "germanText":"GOKURAKUJOUDO",
+ "germanFontType":1,
+ "spanishText":"GOKURAKUJOUDO",
+ "spanishFontType":1,
+ "neutralSpanishText":"GOKURAKUJOUDO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"GOKURAKUJOUDO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_go9ra9",
+ "englishUsText":"GOKURAKUJOUDO",
+ "englishUsFontType":1,
+ "frenchText":"GOKURAKUJOUDO",
+ "frenchFontType":1,
+ "italianText":"GOKURAKUJOUDO",
+ "italianFontType":1,
+ "germanText":"GOKURAKUJOUDO",
+ "germanFontType":1,
+ "spanishText":"GOKURAKUJOUDO",
+ "spanishFontType":1,
+ "neutralSpanishText":"GOKURAKUJOUDO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"GOKURAKUJOUDO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_go9ra9",
+ "englishUsText":"極楽浄土",
+ "englishUsFontType":0,
+ "frenchText":"極楽浄土",
+ "frenchFontType":0,
+ "italianText":"極楽浄土",
+ "italianFontType":0,
+ "germanText":"極楽浄土",
+ "germanFontType":0,
+ "spanishText":"極楽浄土",
+ "spanishFontType":0,
+ "neutralSpanishText":"極楽浄土",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"極楽浄土",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_go9ra9",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_gumis2",
+ "englishUsText":"Setsuna Trip",
+ "englishUsFontType":1,
+ "frenchText":"Setsuna Trip",
+ "frenchFontType":1,
+ "italianText":"Setsuna Trip",
+ "italianFontType":1,
+ "germanText":"Setsuna Trip",
+ "germanFontType":1,
+ "spanishText":"Setsuna Trip",
+ "spanishFontType":1,
+ "neutralSpanishText":"Setsuna Trip",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Setsuna Trip",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_gumis2",
+ "englishUsText":"Setsuna Trip",
+ "englishUsFontType":1,
+ "frenchText":"Setsuna Trip",
+ "frenchFontType":1,
+ "italianText":"Setsuna Trip",
+ "italianFontType":1,
+ "germanText":"Setsuna Trip",
+ "germanFontType":1,
+ "spanishText":"Setsuna Trip",
+ "spanishFontType":1,
+ "neutralSpanishText":"Setsuna Trip",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Setsuna Trip",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_gumis2",
+ "englishUsText":"Setsuna Trip",
+ "englishUsFontType":1,
+ "frenchText":"Setsuna Trip",
+ "frenchFontType":1,
+ "italianText":"Setsuna Trip",
+ "italianFontType":1,
+ "germanText":"Setsuna Trip",
+ "germanFontType":1,
+ "spanishText":"Setsuna Trip",
+ "spanishFontType":1,
+ "neutralSpanishText":"Setsuna Trip",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Setsuna Trip",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_gumis2",
+ "englishUsText":"セツナトリップ",
+ "englishUsFontType":0,
+ "frenchText":"セツナトリップ",
+ "frenchFontType":0,
+ "italianText":"セツナトリップ",
+ "italianFontType":0,
+ "germanText":"セツナトリップ",
+ "germanFontType":0,
+ "spanishText":"セツナトリップ",
+ "spanishFontType":0,
+ "neutralSpanishText":"セツナトリップ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"セツナトリップ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_gumis2",
+ "englishUsText":"Last NOTE.",
+ "englishUsFontType":1,
+ "frenchText":"Last NOTE.",
+ "frenchFontType":1,
+ "italianText":"Last NOTE.",
+ "italianFontType":1,
+ "germanText":"Last NOTE.",
+ "germanFontType":1,
+ "spanishText":"Last NOTE.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Last NOTE.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Last NOTE.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_syyoak",
+ "englishUsText":"Yoake Made Ato 3-byou",
+ "englishUsFontType":1,
+ "frenchText":"Yoake Made Ato 3-byou",
+ "frenchFontType":1,
+ "italianText":"Yoake Made Ato 3-byou",
+ "italianFontType":1,
+ "germanText":"Yoake Made Ato 3-byou",
+ "germanFontType":1,
+ "spanishText":"Yoake Made Ato 3-byou",
+ "spanishFontType":1,
+ "neutralSpanishText":"Yoake Made Ato 3-byou",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Yoake Made Ato 3-byou",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_syyoak",
+ "englishUsText":"Yoake Made Ato 3-byou",
+ "englishUsFontType":1,
+ "frenchText":"Yoake Made Ato 3-byou",
+ "frenchFontType":1,
+ "italianText":"Yoake Made Ato 3-byou",
+ "italianFontType":1,
+ "germanText":"Yoake Made Ato 3-byou",
+ "germanFontType":1,
+ "spanishText":"Yoake Made Ato 3-byou",
+ "spanishFontType":1,
+ "neutralSpanishText":"Yoake Made Ato 3-byou",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Yoake Made Ato 3-byou",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_syyoak",
+ "englishUsText":"Yoake Made Ato 3-byou",
+ "englishUsFontType":1,
+ "frenchText":"Yoake Made Ato 3-byou",
+ "frenchFontType":1,
+ "italianText":"Yoake Made Ato 3-byou",
+ "italianFontType":1,
+ "germanText":"Yoake Made Ato 3-byou",
+ "germanFontType":1,
+ "spanishText":"Yoake Made Ato 3-byou",
+ "spanishFontType":1,
+ "neutralSpanishText":"Yoake Made Ato 3-byou",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Yoake Made Ato 3-byou",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_syyoak",
+ "englishUsText":"夜明けまであと3秒",
+ "englishUsFontType":0,
+ "frenchText":"夜明けまであと3秒",
+ "frenchFontType":0,
+ "italianText":"夜明けまであと3秒",
+ "italianFontType":0,
+ "germanText":"夜明けまであと3秒",
+ "germanFontType":0,
+ "spanishText":"夜明けまであと3秒",
+ "spanishFontType":0,
+ "neutralSpanishText":"夜明けまであと3秒",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"夜明けまであと3秒",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_syyoak",
+ "englishUsText":"From \" Synchronica \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" Synchronica \"",
+ "frenchFontType":1,
+ "italianText":"Da \" Synchronica \"",
+ "italianFontType":1,
+ "germanText":"Aus \" Synchronica \"",
+ "germanFontType":1,
+ "spanishText":"De \" Synchronica \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" Synchronica \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" Synchronica \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_bbb",
+ "englishUsText":"Blessed Bouquet Buskers",
+ "englishUsFontType":1,
+ "frenchText":"Blessed Bouquet Buskers",
+ "frenchFontType":1,
+ "italianText":"Blessed Bouquet Buskers",
+ "italianFontType":1,
+ "germanText":"Blessed Bouquet Buskers",
+ "germanFontType":1,
+ "spanishText":"Blessed Bouquet Buskers",
+ "spanishFontType":1,
+ "neutralSpanishText":"Blessed Bouquet Buskers",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Blessed Bouquet Buskers",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_bbb",
+ "englishUsText":"Blessed Bouquet Buskers",
+ "englishUsFontType":1,
+ "frenchText":"Blessed Bouquet Buskers",
+ "frenchFontType":1,
+ "italianText":"Blessed Bouquet Buskers",
+ "italianFontType":1,
+ "germanText":"Blessed Bouquet Buskers",
+ "germanFontType":1,
+ "spanishText":"Blessed Bouquet Buskers",
+ "spanishFontType":1,
+ "neutralSpanishText":"Blessed Bouquet Buskers",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Blessed Bouquet Buskers",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_bbb",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_bbb",
+ "englishUsText":"Blessed Bouquet Buskers",
+ "englishUsFontType":0,
+ "frenchText":"Blessed Bouquet Buskers",
+ "frenchFontType":0,
+ "italianText":"Blessed Bouquet Buskers",
+ "italianFontType":0,
+ "germanText":"Blessed Bouquet Buskers",
+ "germanFontType":0,
+ "spanishText":"Blessed Bouquet Buskers",
+ "spanishFontType":0,
+ "neutralSpanishText":"Blessed Bouquet Buskers",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Blessed Bouquet Buskers",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_bbb",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_xan",
+ "englishUsText":"Xa",
+ "englishUsFontType":1,
+ "frenchText":"Xa",
+ "frenchFontType":1,
+ "italianText":"Xa",
+ "italianFontType":1,
+ "germanText":"Xa",
+ "germanFontType":1,
+ "spanishText":"Xa",
+ "spanishFontType":1,
+ "neutralSpanishText":"Xa",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Xa",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_xan",
+ "englishUsText":"Xa",
+ "englishUsFontType":1,
+ "frenchText":"Xa",
+ "frenchFontType":1,
+ "italianText":"Xa",
+ "italianFontType":1,
+ "germanText":"Xa",
+ "germanFontType":1,
+ "spanishText":"Xa",
+ "spanishFontType":1,
+ "neutralSpanishText":"Xa",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Xa",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_xan",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_xan",
+ "englishUsText":"Xa",
+ "englishUsFontType":0,
+ "frenchText":"Xa",
+ "frenchFontType":0,
+ "italianText":"Xa",
+ "italianFontType":0,
+ "germanText":"Xa",
+ "germanFontType":0,
+ "spanishText":"Xa",
+ "spanishFontType":0,
+ "neutralSpanishText":"Xa",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Xa",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_xan",
+ "englishUsText":"Tatsh",
+ "englishUsFontType":1,
+ "frenchText":"Tatsh",
+ "frenchFontType":1,
+ "italianText":"Tatsh",
+ "italianFontType":1,
+ "germanText":"Tatsh",
+ "germanFontType":1,
+ "spanishText":"Tatsh",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tatsh",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tatsh",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_umtube",
+ "englishUsText":"YouTube Theme Song",
+ "englishUsFontType":1,
+ "frenchText":"YouTube Theme Song",
+ "frenchFontType":1,
+ "italianText":"YouTube Theme Song",
+ "italianFontType":1,
+ "germanText":"YouTube Theme Song",
+ "germanFontType":1,
+ "spanishText":"YouTube Theme Song",
+ "spanishFontType":1,
+ "neutralSpanishText":"YouTube Theme Song",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"YouTube Theme Song",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_umtube",
+ "englishUsText":"YouTube Theme Song",
+ "englishUsFontType":1,
+ "frenchText":"YouTube Theme Song",
+ "frenchFontType":1,
+ "italianText":"YouTube Theme Song",
+ "italianFontType":1,
+ "germanText":"YouTube Theme Song",
+ "germanFontType":1,
+ "spanishText":"YouTube Theme Song",
+ "spanishFontType":1,
+ "neutralSpanishText":"YouTube Theme Song",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"YouTube Theme Song",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_umtube",
+ "englishUsText":"YouTube Theme Song",
+ "englishUsFontType":1,
+ "frenchText":"YouTube Theme Song",
+ "frenchFontType":1,
+ "italianText":"YouTube Theme Song",
+ "italianFontType":1,
+ "germanText":"YouTube Theme Song",
+ "germanFontType":1,
+ "spanishText":"YouTube Theme Song",
+ "spanishFontType":1,
+ "neutralSpanishText":"YouTube Theme Song",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"YouTube Theme Song",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_umtube",
+ "englishUsText":"YouTubeテーマソング",
+ "englishUsFontType":0,
+ "frenchText":"YouTubeテーマソング",
+ "frenchFontType":0,
+ "italianText":"YouTubeテーマソング",
+ "italianFontType":0,
+ "germanText":"YouTubeテーマソング",
+ "germanFontType":0,
+ "spanishText":"YouTubeテーマソング",
+ "spanishFontType":0,
+ "neutralSpanishText":"YouTubeテーマソング",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"YouTubeテーマソング",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_umtube",
+ "englishUsText":"HIKAKIN & SEIKIN",
+ "englishUsFontType":1,
+ "frenchText":"HIKAKIN & SEIKIN",
+ "frenchFontType":1,
+ "italianText":"HIKAKIN & SEIKIN",
+ "italianFontType":1,
+ "germanText":"HIKAKIN & SEIKIN",
+ "germanFontType":1,
+ "spanishText":"HIKAKIN & SEIKIN",
+ "spanishFontType":1,
+ "neutralSpanishText":"HIKAKIN & SEIKIN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HIKAKIN & SEIKIN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_kykgrs",
+ "englishUsText":"Garasu Wo Ware",
+ "englishUsFontType":1,
+ "frenchText":"Garasu Wo Ware",
+ "frenchFontType":1,
+ "italianText":"Garasu Wo Ware",
+ "italianFontType":1,
+ "germanText":"Garasu Wo Ware",
+ "germanFontType":1,
+ "spanishText":"Garasu Wo Ware",
+ "spanishFontType":1,
+ "neutralSpanishText":"Garasu Wo Ware",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Garasu Wo Ware",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_kykgrs",
+ "englishUsText":"Garasu Wo Ware",
+ "englishUsFontType":1,
+ "frenchText":"Garasu Wo Ware",
+ "frenchFontType":1,
+ "italianText":"Garasu Wo Ware",
+ "italianFontType":1,
+ "germanText":"Garasu Wo Ware",
+ "germanFontType":1,
+ "spanishText":"Garasu Wo Ware",
+ "spanishFontType":1,
+ "neutralSpanishText":"Garasu Wo Ware",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Garasu Wo Ware",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_kykgrs",
+ "englishUsText":"Garasu Wo Ware",
+ "englishUsFontType":1,
+ "frenchText":"Garasu Wo Ware",
+ "frenchFontType":1,
+ "italianText":"Garasu Wo Ware",
+ "italianFontType":1,
+ "germanText":"Garasu Wo Ware",
+ "germanFontType":1,
+ "spanishText":"Garasu Wo Ware",
+ "spanishFontType":1,
+ "neutralSpanishText":"Garasu Wo Ware",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Garasu Wo Ware",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_kykgrs",
+ "englishUsText":"ガラスを割れ!",
+ "englishUsFontType":0,
+ "frenchText":"ガラスを割れ!",
+ "frenchFontType":0,
+ "italianText":"ガラスを割れ!",
+ "italianFontType":0,
+ "germanText":"ガラスを割れ!",
+ "germanFontType":0,
+ "spanishText":"ガラスを割れ!",
+ "spanishFontType":0,
+ "neutralSpanishText":"ガラスを割れ!",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ガラスを割れ!",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_kykgrs",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_railgn",
+ "englishUsText":"only my railgun",
+ "englishUsFontType":1,
+ "frenchText":"only my railgun",
+ "frenchFontType":1,
+ "italianText":"only my railgun",
+ "italianFontType":1,
+ "germanText":"only my railgun",
+ "germanFontType":1,
+ "spanishText":"only my railgun",
+ "spanishFontType":1,
+ "neutralSpanishText":"only my railgun",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"only my railgun",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_railgn",
+ "englishUsText":"only my railgun",
+ "englishUsFontType":1,
+ "frenchText":"only my railgun",
+ "frenchFontType":1,
+ "italianText":"only my railgun",
+ "italianFontType":1,
+ "germanText":"only my railgun",
+ "germanFontType":1,
+ "spanishText":"only my railgun",
+ "spanishFontType":1,
+ "neutralSpanishText":"only my railgun",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"only my railgun",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_railgn",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_railgn",
+ "englishUsText":"only my railgun",
+ "englishUsFontType":0,
+ "frenchText":"only my railgun",
+ "frenchFontType":0,
+ "italianText":"only my railgun",
+ "italianFontType":0,
+ "germanText":"only my railgun",
+ "germanFontType":0,
+ "spanishText":"only my railgun",
+ "spanishFontType":0,
+ "neutralSpanishText":"only my railgun",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"only my railgun",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_railgn",
+ "englishUsText":"From \" Toaru Kagakuno Railgun \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" Toaru Kagakuno Railgun \"",
+ "frenchFontType":1,
+ "italianText":"Da \" Toaru Kagakuno Railgun \"",
+ "italianFontType":1,
+ "germanText":"Aus \" Toaru Kagakuno Railgun \"",
+ "germanFontType":1,
+ "spanishText":"De \" Toaru Kagakuno Railgun \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" Toaru Kagakuno Railgun \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" Toaru Kagakuno Railgun \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_clsrad",
+ "englishUsText":"Radetzky March",
+ "englishUsFontType":1,
+ "frenchText":"Marche de Radetzky",
+ "frenchFontType":1,
+ "italianText":"Marcia di Radetzky",
+ "italianFontType":1,
+ "germanText":"Radetzky-Marsch",
+ "germanFontType":1,
+ "spanishText":"Marcha Radetzky",
+ "spanishFontType":1,
+ "neutralSpanishText":"Marcha Radetzky",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Marcha Radetzky",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_clsrad",
+ "englishUsText":"Radetzky March",
+ "englishUsFontType":1,
+ "frenchText":"Marche de Radetzky",
+ "frenchFontType":1,
+ "italianText":"Marcia di Radetzky",
+ "italianFontType":1,
+ "germanText":"Radetzky-Marsch",
+ "germanFontType":1,
+ "spanishText":"Marcha Radetzky",
+ "spanishFontType":1,
+ "neutralSpanishText":"Marcha Radetzky",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Marcha Radetzky",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_clsrad",
+ "englishUsText":"Radetzky March",
+ "englishUsFontType":1,
+ "frenchText":"Marche de Radetzky",
+ "frenchFontType":1,
+ "italianText":"Marcia di Radetzky",
+ "italianFontType":1,
+ "germanText":"Radetzky-Marsch",
+ "germanFontType":1,
+ "spanishText":"Marcha Radetzky",
+ "spanishFontType":1,
+ "neutralSpanishText":"Marcha Radetzky",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Marcha Radetzky",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_clsrad",
+ "englishUsText":"ラデツキー行進曲",
+ "englishUsFontType":0,
+ "frenchText":"ラデツキー行進曲",
+ "frenchFontType":0,
+ "italianText":"ラデツキー行進曲",
+ "italianFontType":0,
+ "germanText":"ラデツキー行進曲",
+ "germanFontType":0,
+ "spanishText":"ラデツキー行進曲",
+ "spanishFontType":0,
+ "neutralSpanishText":"ラデツキー行進曲",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ラデツキー行進曲",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_clsrad",
+ "englishUsText":"Johann Strauss I",
+ "englishUsFontType":1,
+ "frenchText":"Johann Strauss I",
+ "frenchFontType":1,
+ "italianText":"Johann Strauss I",
+ "italianFontType":1,
+ "germanText":"Johann Strauss I",
+ "germanFontType":1,
+ "spanishText":"Johann Strauss I",
+ "spanishFontType":1,
+ "neutralSpanishText":"Johann Strauss I",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Johann Strauss I",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_go9ra9",
+ "englishUsText":"gokurakujoudo",
+ "englishUsFontType":1,
+ "frenchText":"gokurakujoudo",
+ "frenchFontType":1,
+ "italianText":"gokurakujoudo",
+ "italianFontType":1,
+ "germanText":"gokurakujoudo",
+ "germanFontType":1,
+ "spanishText":"gokurakujoudo",
+ "spanishFontType":1,
+ "neutralSpanishText":"gokurakujoudo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"gokurakujoudo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_gumis2",
+ "englishUsText":"setsunatrip",
+ "englishUsFontType":1,
+ "frenchText":"setsunatrip",
+ "frenchFontType":1,
+ "italianText":"setsunatrip",
+ "italianFontType":1,
+ "germanText":"setsunatrip",
+ "germanFontType":1,
+ "spanishText":"setsunatrip",
+ "spanishFontType":1,
+ "neutralSpanishText":"setsunatrip",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"setsunatrip",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_syyoak",
+ "englishUsText":"yoakemadeato3-byou",
+ "englishUsFontType":1,
+ "frenchText":"yoakemadeato3-byou",
+ "frenchFontType":1,
+ "italianText":"yoakemadeato3-byou",
+ "italianFontType":1,
+ "germanText":"yoakemadeato3-byou",
+ "germanFontType":1,
+ "spanishText":"yoakemadeato3-byou",
+ "spanishFontType":1,
+ "neutralSpanishText":"yoakemadeato3-byou",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"yoakemadeato3-byou",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_bbb",
+ "englishUsText":"blessedbouquetbuskers",
+ "englishUsFontType":1,
+ "frenchText":"blessedbouquetbuskers",
+ "frenchFontType":1,
+ "italianText":"blessedbouquetbuskers",
+ "italianFontType":1,
+ "germanText":"blessedbouquetbuskers",
+ "germanFontType":1,
+ "spanishText":"blessedbouquetbuskers",
+ "spanishFontType":1,
+ "neutralSpanishText":"blessedbouquetbuskers",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"blessedbouquetbuskers",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_xan",
+ "englishUsText":"xa",
+ "englishUsFontType":1,
+ "frenchText":"xa",
+ "frenchFontType":1,
+ "italianText":"xa",
+ "italianFontType":1,
+ "germanText":"xa",
+ "germanFontType":1,
+ "spanishText":"xa",
+ "spanishFontType":1,
+ "neutralSpanishText":"xa",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"xa",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_umtube",
+ "englishUsText":"youtubethemesong",
+ "englishUsFontType":1,
+ "frenchText":"youtubethemesong",
+ "frenchFontType":1,
+ "italianText":"youtubethemesong",
+ "italianFontType":1,
+ "germanText":"youtubethemesong",
+ "germanFontType":1,
+ "spanishText":"youtubethemesong",
+ "spanishFontType":1,
+ "neutralSpanishText":"youtubethemesong",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"youtubethemesong",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_kykgrs",
+ "englishUsText":"garasuwoware",
+ "englishUsFontType":1,
+ "frenchText":"garasuwoware",
+ "frenchFontType":1,
+ "italianText":"garasuwoware",
+ "italianFontType":1,
+ "germanText":"garasuwoware",
+ "germanFontType":1,
+ "spanishText":"garasuwoware",
+ "spanishFontType":1,
+ "neutralSpanishText":"garasuwoware",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"garasuwoware",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_railgn",
+ "englishUsText":"onlymyrailgun",
+ "englishUsFontType":1,
+ "frenchText":"onlymyrailgun",
+ "frenchFontType":1,
+ "italianText":"onlymyrailgun",
+ "italianFontType":1,
+ "germanText":"onlymyrailgun",
+ "germanFontType":1,
+ "spanishText":"onlymyrailgun",
+ "spanishFontType":1,
+ "neutralSpanishText":"onlymyrailgun",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"onlymyrailgun",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_clsrad",
+ "englishUsText":"radetzkymarch",
+ "englishUsFontType":1,
+ "frenchText":"marchederadetzky",
+ "frenchFontType":1,
+ "italianText":"marciadiradetzky",
+ "italianFontType":1,
+ "germanText":"radetzky-marsch",
+ "germanFontType":1,
+ "spanishText":"marcharadetzky",
+ "spanishFontType":1,
+ "neutralSpanishText":"marcharadetzky",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"marcharadetzky",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_hsgirl",
+ "englishUsText":"I ♥ 「New Stranger」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「New Stranger」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「New Stranger」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「New Stranger」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「New Stranger」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「New Stranger」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「New Stranger」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_drsb",
+ "englishUsText":"I ♥ 「DRAGON SABER」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「DRAGON SABER」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「DRAGON SABER」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「DRAGON SABER」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「DRAGON SABER」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「DRAGON SABER」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「DRAGON SABER」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_dariu2",
+ "englishUsText":"I ♥ 「OLGA BREEZE」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「OLGA BREEZE」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「OLGA BREEZE」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「OLGA BREEZE」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「OLGA BREEZE」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「OLGA BREEZE」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「OLGA BREEZE」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_genpe2",
+ "englishUsText":"I ♥ 「SHOGYO MUJO」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SHOGYO MUJO」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SHOGYO MUJO」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SHOGYO MUJO」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SHOGYO MUJO」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SHOGYO MUJO」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SHOGYO MUJO」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_hsgirl",
+ "englishUsText":"I ♥ 「New Stranger」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「New Stranger」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「New Stranger」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「New Stranger」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「New Stranger」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「New Stranger」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「New Stranger」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_drsb",
+ "englishUsText":"I ♥ 「DRAGON SABER」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「DRAGON SABER」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「DRAGON SABER」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「DRAGON SABER」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「DRAGON SABER」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「DRAGON SABER」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「DRAGON SABER」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_dariu2",
+ "englishUsText":"I ♥ 「OLGA BREEZE」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「OLGA BREEZE」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「OLGA BREEZE」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「OLGA BREEZE」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「OLGA BREEZE」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「OLGA BREEZE」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「OLGA BREEZE」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_genpe2",
+ "englishUsText":"I ♥ 「SHOGYO MUJO」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SHOGYO MUJO」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SHOGYO MUJO」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SHOGYO MUJO」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SHOGYO MUJO」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SHOGYO MUJO」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SHOGYO MUJO」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_outrun",
+ "englishUsText":"I ♥ 「MAGICAL SOUND SHOWER」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「MAGICAL SOUND SHOWER」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「MAGICAL SOUND SHOWER」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「MAGICAL SOUND SHOWER」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「MAGICAL SOUND SHOWER」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「MAGICAL SOUND SHOWER」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「MAGICAL SOUND SHOWER」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_outrun",
+ "englishUsText":"I ♥ 「MAGICAL SOUND SHOWER」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「MAGICAL SOUND SHOWER」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「MAGICAL SOUND SHOWER」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「MAGICAL SOUND SHOWER」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「MAGICAL SOUND SHOWER」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「MAGICAL SOUND SHOWER」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「MAGICAL SOUND SHOWER」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_hsgirl",
+ "englishUsText":"New Stranger",
+ "englishUsFontType":1,
+ "frenchText":"New Stranger",
+ "frenchFontType":1,
+ "italianText":"New Stranger",
+ "italianFontType":1,
+ "germanText":"New Stranger",
+ "germanFontType":1,
+ "spanishText":"New Stranger",
+ "spanishFontType":1,
+ "neutralSpanishText":"New Stranger",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"New Stranger",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_hsgirl",
+ "englishUsText":"New Stranger",
+ "englishUsFontType":1,
+ "frenchText":"New Stranger",
+ "frenchFontType":1,
+ "italianText":"New Stranger",
+ "italianFontType":1,
+ "germanText":"New Stranger",
+ "germanFontType":1,
+ "spanishText":"New Stranger",
+ "spanishFontType":1,
+ "neutralSpanishText":"New Stranger",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"New Stranger",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_hsgirl",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_hsgirl",
+ "englishUsText":"New Stranger",
+ "englishUsFontType":0,
+ "frenchText":"New Stranger",
+ "frenchFontType":0,
+ "italianText":"New Stranger",
+ "italianFontType":0,
+ "germanText":"New Stranger",
+ "germanFontType":0,
+ "spanishText":"New Stranger",
+ "spanishFontType":0,
+ "neutralSpanishText":"New Stranger",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"New Stranger",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_hsgirl",
+ "englishUsText":"From \" HI SCORE GIRL \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" HI SCORE GIRL \"",
+ "frenchFontType":1,
+ "italianText":"Da \" HI SCORE GIRL \"",
+ "italianFontType":1,
+ "germanText":"Aus \" HI SCORE GIRL \"",
+ "germanFontType":1,
+ "spanishText":"De \" HI SCORE GIRL \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" HI SCORE GIRL \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" HI SCORE GIRL \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_drsb",
+ "englishUsText":"DRAGON SABER",
+ "englishUsFontType":1,
+ "frenchText":"DRAGON SABER",
+ "frenchFontType":1,
+ "italianText":"DRAGON SABER",
+ "italianFontType":1,
+ "germanText":"DRAGON SABER",
+ "germanFontType":1,
+ "spanishText":"DRAGON SABER",
+ "spanishFontType":1,
+ "neutralSpanishText":"DRAGON SABER",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DRAGON SABER",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_drsb",
+ "englishUsText":"DRAGON SABER",
+ "englishUsFontType":1,
+ "frenchText":"DRAGON SABER",
+ "frenchFontType":1,
+ "italianText":"DRAGON SABER",
+ "italianFontType":1,
+ "germanText":"DRAGON SABER",
+ "germanFontType":1,
+ "spanishText":"DRAGON SABER",
+ "spanishFontType":1,
+ "neutralSpanishText":"DRAGON SABER",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DRAGON SABER",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_drsb",
+ "englishUsText":"DRAGON SABER",
+ "englishUsFontType":1,
+ "frenchText":"DRAGON SABER",
+ "frenchFontType":1,
+ "italianText":"DRAGON SABER",
+ "italianFontType":1,
+ "germanText":"DRAGON SABER",
+ "germanFontType":1,
+ "spanishText":"DRAGON SABER",
+ "spanishFontType":1,
+ "neutralSpanishText":"DRAGON SABER",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DRAGON SABER",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_drsb",
+ "englishUsText":"ドラゴンセイバー 水没都市",
+ "englishUsFontType":0,
+ "frenchText":"ドラゴンセイバー 水没都市",
+ "frenchFontType":0,
+ "italianText":"ドラゴンセイバー 水没都市",
+ "italianFontType":0,
+ "germanText":"ドラゴンセイバー 水没都市",
+ "germanFontType":0,
+ "spanishText":"ドラゴンセイバー 水没都市",
+ "spanishFontType":0,
+ "neutralSpanishText":"ドラゴンセイバー 水没都市",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ドラゴンセイバー 水没都市",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_drsb",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_dariu2",
+ "englishUsText":"OLGA BREEZE",
+ "englishUsFontType":1,
+ "frenchText":"OLGA BREEZE",
+ "frenchFontType":1,
+ "italianText":"OLGA BREEZE",
+ "italianFontType":1,
+ "germanText":"OLGA BREEZE",
+ "germanFontType":1,
+ "spanishText":"OLGA BREEZE",
+ "spanishFontType":1,
+ "neutralSpanishText":"OLGA BREEZE",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"OLGA BREEZE",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_dariu2",
+ "englishUsText":"OLGA BREEZE",
+ "englishUsFontType":1,
+ "frenchText":"OLGA BREEZE",
+ "frenchFontType":1,
+ "italianText":"OLGA BREEZE",
+ "italianFontType":1,
+ "germanText":"OLGA BREEZE",
+ "germanFontType":1,
+ "spanishText":"OLGA BREEZE",
+ "spanishFontType":1,
+ "neutralSpanishText":"OLGA BREEZE",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"OLGA BREEZE",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_dariu2",
+ "englishUsText":"OLGA BREEZE",
+ "englishUsFontType":1,
+ "frenchText":"OLGA BREEZE",
+ "frenchFontType":1,
+ "italianText":"OLGA BREEZE",
+ "italianFontType":1,
+ "germanText":"OLGA BREEZE",
+ "germanFontType":1,
+ "spanishText":"OLGA BREEZE",
+ "spanishFontType":1,
+ "neutralSpanishText":"OLGA BREEZE",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"OLGA BREEZE",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_dariu2",
+ "englishUsText":"OLGA BREEZE [太陽シーン]",
+ "englishUsFontType":0,
+ "frenchText":"OLGA BREEZE [太陽シーン]",
+ "frenchFontType":0,
+ "italianText":"OLGA BREEZE [太陽シーン]",
+ "italianFontType":0,
+ "germanText":"OLGA BREEZE [太陽シーン]",
+ "germanFontType":0,
+ "spanishText":"OLGA BREEZE [太陽シーン]",
+ "spanishFontType":0,
+ "neutralSpanishText":"OLGA BREEZE [太陽シーン]",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"OLGA BREEZE [太陽シーン]",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_dariu2",
+ "englishUsText":"From \" DARIUS II \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" DARIUS II \"",
+ "frenchFontType":1,
+ "italianText":"Da \" DARIUS II \"",
+ "italianFontType":1,
+ "germanText":"Aus \" DARIUS II \"",
+ "germanFontType":1,
+ "spanishText":"De \" DARIUS II \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" DARIUS II \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" DARIUS II \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_genpe2",
+ "englishUsText":"SHOGYO MUJO",
+ "englishUsFontType":1,
+ "frenchText":"SHOGYO MUJO",
+ "frenchFontType":1,
+ "italianText":"SHOGYO MUJO",
+ "italianFontType":1,
+ "germanText":"SHOGYO MUJO",
+ "germanFontType":1,
+ "spanishText":"SHOGYO MUJO",
+ "spanishFontType":1,
+ "neutralSpanishText":"SHOGYO MUJO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SHOGYO MUJO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_genpe2",
+ "englishUsText":"SHOGYO MUJO",
+ "englishUsFontType":1,
+ "frenchText":"SHOGYO MUJO",
+ "frenchFontType":1,
+ "italianText":"SHOGYO MUJO",
+ "italianFontType":1,
+ "germanText":"SHOGYO MUJO",
+ "germanFontType":1,
+ "spanishText":"SHOGYO MUJO",
+ "spanishFontType":1,
+ "neutralSpanishText":"SHOGYO MUJO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SHOGYO MUJO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_genpe2",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_genpe2",
+ "englishUsText":"SHOGYO MUJO",
+ "englishUsFontType":0,
+ "frenchText":"SHOGYO MUJO",
+ "frenchFontType":0,
+ "italianText":"SHOGYO MUJO",
+ "italianFontType":0,
+ "germanText":"SHOGYO MUJO",
+ "germanFontType":0,
+ "spanishText":"SHOGYO MUJO",
+ "spanishFontType":0,
+ "neutralSpanishText":"SHOGYO MUJO",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"SHOGYO MUJO",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_genpe2",
+ "englishUsText":"\" The Genji and the Heike Clans \" Remix / COSIO",
+ "englishUsFontType":1,
+ "frenchText":"\" The Genji and the Heike Clans \" Remix / COSIO",
+ "frenchFontType":1,
+ "italianText":"\" The Genji and the Heike Clans \" Remix / COSIO",
+ "italianFontType":1,
+ "germanText":"\" The Genji and the Heike Clans \" Remix / COSIO",
+ "germanFontType":1,
+ "spanishText":"\" The Genji and the Heike Clans \" Remix / COSIO",
+ "spanishFontType":1,
+ "neutralSpanishText":"\" The Genji and the Heike Clans \" Remix / COSIO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"\" The Genji and the Heike Clans \" Remix / COSIO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_outrun",
+ "englishUsText":"MAGICAL SOUND SHOWER",
+ "englishUsFontType":1,
+ "frenchText":"MAGICAL SOUND SHOWER",
+ "frenchFontType":1,
+ "italianText":"MAGICAL SOUND SHOWER",
+ "italianFontType":1,
+ "germanText":"MAGICAL SOUND SHOWER",
+ "germanFontType":1,
+ "spanishText":"MAGICAL SOUND SHOWER",
+ "spanishFontType":1,
+ "neutralSpanishText":"MAGICAL SOUND SHOWER",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"MAGICAL SOUND SHOWER",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_outrun",
+ "englishUsText":"MAGICAL SOUND SHOWER",
+ "englishUsFontType":1,
+ "frenchText":"MAGICAL SOUND SHOWER",
+ "frenchFontType":1,
+ "italianText":"MAGICAL SOUND SHOWER",
+ "italianFontType":1,
+ "germanText":"MAGICAL SOUND SHOWER",
+ "germanFontType":1,
+ "spanishText":"MAGICAL SOUND SHOWER",
+ "spanishFontType":1,
+ "neutralSpanishText":"MAGICAL SOUND SHOWER",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"MAGICAL SOUND SHOWER",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_outrun",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_outrun",
+ "englishUsText":"MAGICAL SOUND SHOWER",
+ "englishUsFontType":0,
+ "frenchText":"MAGICAL SOUND SHOWER",
+ "frenchFontType":0,
+ "italianText":"MAGICAL SOUND SHOWER",
+ "italianFontType":0,
+ "germanText":"MAGICAL SOUND SHOWER",
+ "germanFontType":0,
+ "spanishText":"MAGICAL SOUND SHOWER",
+ "spanishFontType":0,
+ "neutralSpanishText":"MAGICAL SOUND SHOWER",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"MAGICAL SOUND SHOWER",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_outrun",
+ "englishUsText":"From \" Out Run \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" Out Run \"",
+ "frenchFontType":1,
+ "italianText":"Da \" Out Run \"",
+ "italianFontType":1,
+ "germanText":"Aus \" Out Run \"",
+ "germanFontType":1,
+ "spanishText":"De \" Out Run \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" Out Run \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" Out Run \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_hsgirl",
+ "englishUsText":"newstranger",
+ "englishUsFontType":1,
+ "frenchText":"newstranger",
+ "frenchFontType":1,
+ "italianText":"newstranger",
+ "italianFontType":1,
+ "germanText":"newstranger",
+ "germanFontType":1,
+ "spanishText":"newstranger",
+ "spanishFontType":1,
+ "neutralSpanishText":"newstranger",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"newstranger",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_drsb",
+ "englishUsText":"dragonsaber",
+ "englishUsFontType":1,
+ "frenchText":"dragonsaber",
+ "frenchFontType":1,
+ "italianText":"dragonsaber",
+ "italianFontType":1,
+ "germanText":"dragonsaber",
+ "germanFontType":1,
+ "spanishText":"dragonsaber",
+ "spanishFontType":1,
+ "neutralSpanishText":"dragonsaber",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"dragonsaber",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_dariu2",
+ "englishUsText":"olgabreeze",
+ "englishUsFontType":1,
+ "frenchText":"olgabreeze",
+ "frenchFontType":1,
+ "italianText":"olgabreeze",
+ "italianFontType":1,
+ "germanText":"olgabreeze",
+ "germanFontType":1,
+ "spanishText":"olgabreeze",
+ "spanishFontType":1,
+ "neutralSpanishText":"olgabreeze",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"olgabreeze",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_genpe2",
+ "englishUsText":"shogyomujo",
+ "englishUsFontType":1,
+ "frenchText":"shogyomujo",
+ "frenchFontType":1,
+ "italianText":"shogyomujo",
+ "italianFontType":1,
+ "germanText":"shogyomujo",
+ "germanFontType":1,
+ "spanishText":"shogyomujo",
+ "spanishFontType":1,
+ "neutralSpanishText":"shogyomujo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"shogyomujo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_outrun",
+ "englishUsText":"magicalsoundshower",
+ "englishUsFontType":1,
+ "frenchText":"magicalsoundshower",
+ "frenchFontType":1,
+ "italianText":"magicalsoundshower",
+ "italianFontType":1,
+ "germanText":"magicalsoundshower",
+ "germanFontType":1,
+ "spanishText":"magicalsoundshower",
+ "spanishFontType":1,
+ "neutralSpanishText":"magicalsoundshower",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"magicalsoundshower",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_wii5op",
+ "englishUsText":"I ♥ 「DOKI DOKI☆DON-chan SAWAGI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「DOKI DOKI☆DON-chan SAWAGI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「DOKI DOKI☆DON-chan SAWAGI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「DOKI DOKI☆DON-chan SAWAGI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「DOKI DOKI☆DON-chan SAWAGI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「DOKI DOKI☆DON-chan SAWAGI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「DOKI DOKI☆DON-chan SAWAGI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_gldnkm",
+ "englishUsText":"I ♥ 「Winding Road」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Winding Road」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Winding Road」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Winding Road」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Winding Road」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Winding Road」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Winding Road」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_mikugk",
+ "englishUsText":"I ♥ 「HATSUNE MIKU No Gekishou」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HATSUNE MIKU No Gekishou」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HATSUNE MIKU No Gekishou」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HATSUNE MIKU No Gekishou」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HATSUNE MIKU No Gekishou」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HATSUNE MIKU No Gekishou」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HATSUNE MIKU No Gekishou」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_fdive",
+ "englishUsText":"I ♥ 「FREEDOM DiVE↓」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「FREEDOM DiVE↓」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「FREEDOM DiVE↓」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「FREEDOM DiVE↓」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「FREEDOM DiVE↓」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「FREEDOM DiVE↓」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「FREEDOM DiVE↓」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_kahata",
+ "englishUsText":"I ♥ 「KAHATAREDOKI NO YUUWAKU」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「KAHATAREDOKI NO YUUWAKU」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「KAHATAREDOKI NO YUUWAKU」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「KAHATAREDOKI NO YUUWAKU」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「KAHATAREDOKI NO YUUWAKU」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「KAHATAREDOKI NO YUUWAKU」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「KAHATAREDOKI NO YUUWAKU」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_daybyd",
+ "englishUsText":"I ♥ 「Day by Day!」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Day by Day!」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Day by Day!」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Day by Day!」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Day by Day!」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Day by Day!」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Day by Day!」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_wii5op",
+ "englishUsText":"I ♥ 「DOKI DOKI☆DON-chan SAWAGI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「DOKI DOKI☆DON-chan SAWAGI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「DOKI DOKI☆DON-chan SAWAGI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「DOKI DOKI☆DON-chan SAWAGI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「DOKI DOKI☆DON-chan SAWAGI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「DOKI DOKI☆DON-chan SAWAGI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「DOKI DOKI☆DON-chan SAWAGI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_gldnkm",
+ "englishUsText":"I ♥ 「Winding Road」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Winding Road」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Winding Road」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Winding Road」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Winding Road」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Winding Road」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Winding Road」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_mikugk",
+ "englishUsText":"I ♥ 「HATSUNE MIKU No Gekishou」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HATSUNE MIKU No Gekishou」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HATSUNE MIKU No Gekishou」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HATSUNE MIKU No Gekishou」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HATSUNE MIKU No Gekishou」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HATSUNE MIKU No Gekishou」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HATSUNE MIKU No Gekishou」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_fdive",
+ "englishUsText":"I ♥ 「FREEDOM DiVE↓」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「FREEDOM DiVE↓」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「FREEDOM DiVE↓」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「FREEDOM DiVE↓」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「FREEDOM DiVE↓」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「FREEDOM DiVE↓」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「FREEDOM DiVE↓」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_kahata",
+ "englishUsText":"I ♥ 「KAHATAREDOKI NO YUUWAKU」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「KAHATAREDOKI NO YUUWAKU」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「KAHATAREDOKI NO YUUWAKU」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「KAHATAREDOKI NO YUUWAKU」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「KAHATAREDOKI NO YUUWAKU」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「KAHATAREDOKI NO YUUWAKU」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「KAHATAREDOKI NO YUUWAKU」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_daybyd",
+ "englishUsText":"I ♥ 「Day by Day!」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Day by Day!」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Day by Day!」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Day by Day!」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Day by Day!」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Day by Day!」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Day by Day!」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_birthday",
+ "englishUsText":"Began the Birthday Bash",
+ "englishUsFontType":1,
+ "frenchText":"Début de la Fête d'anniversaire",
+ "frenchFontType":1,
+ "italianText":"La Festa di Compleanno è iniziata",
+ "italianFontType":1,
+ "germanText":"Hat das Geburtstags-Chaos angefangen",
+ "germanFontType":1,
+ "spanishText":"Empieza la fiesta de cumpleaños",
+ "spanishFontType":1,
+ "neutralSpanishText":"Empezó la fiesta de cumpleaños",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Começou a Festança de Aniversário",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_birthdayex",
+ "englishUsText":"Master of DON-chan & KATSU-chan's B-day Bash",
+ "englishUsFontType":1,
+ "frenchText":"Maître de la Fête de DON-chan & KATSU-chan",
+ "frenchFontType":1,
+ "italianText":"Maestro di Compleanno DON-chan e KATSU-chan",
+ "italianFontType":1,
+ "germanText":"Meister von DON-chans & KATSU-chans Jubiläum",
+ "germanFontType":1,
+ "spanishText":"Maestro cumpleañero de DON-chan y KATSU-chan",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro de la fiesta de DON-chan y KATSU-chan",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre do Niver de DON-chan e KATSU-chan",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_birthday",
+ "englishUsText":"Presents, please!",
+ "englishUsFontType":1,
+ "frenchText":"Place aux cadeaux !",
+ "frenchFontType":1,
+ "italianText":"Regali, per favore!",
+ "italianFontType":1,
+ "germanText":"Geschenke, bitte!",
+ "germanFontType":1,
+ "spanishText":"¡Regalos, por favor!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Los regalos!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Presentes, por favor!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_unicorn",
+ "englishUsText":"Unicorn",
+ "englishUsFontType":1,
+ "frenchText":"Licorne",
+ "frenchFontType":1,
+ "italianText":"Unicorno",
+ "italianFontType":1,
+ "germanText":"Einhorn",
+ "germanFontType":1,
+ "spanishText":"Unicornio",
+ "spanishFontType":1,
+ "neutralSpanishText":"Unicornio",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Unicórnio",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_plushdoll",
+ "englishUsText":"Plushie",
+ "englishUsFontType":1,
+ "frenchText":"Peluche",
+ "frenchFontType":1,
+ "italianText":"Peluche",
+ "italianFontType":1,
+ "germanText":"Plüschtier",
+ "germanFontType":1,
+ "spanishText":"Peluche",
+ "spanishFontType":1,
+ "neutralSpanishText":"Peluche",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pelúcia",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_birthday",
+ "englishUsText":"DON-chan & KATSU-chan's Birthday Bash",
+ "englishUsFontType":1,
+ "frenchText":"Fête d'anniversaire de DON-chan et KATSU-chan",
+ "frenchFontType":1,
+ "italianText":"Festa di Compleanno di DON-chan e KATSU-chan",
+ "italianFontType":1,
+ "germanText":"DON-chans & KATSU-chans Geburtstags-Chaos",
+ "germanFontType":1,
+ "spanishText":"¡Fiesta de cumpleaños de DON-chan y KATSU-chan!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Fiesta de cumpleaños de DON-chan y KATSU-chan",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Festança de Aniversário de DON-chan e KATSU-chan",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_wii5op",
+ "englishUsText":"DOKI DOKI☆DON-chan SAWAGI",
+ "englishUsFontType":1,
+ "frenchText":"DOKI DOKI☆DON-chan SAWAGI",
+ "frenchFontType":1,
+ "italianText":"DOKI DOKI☆DON-chan SAWAGI",
+ "italianFontType":1,
+ "germanText":"DOKI DOKI☆DON-chan SAWAGI",
+ "germanFontType":1,
+ "spanishText":"DOKI DOKI☆DON-chan SAWAGI",
+ "spanishFontType":1,
+ "neutralSpanishText":"DOKI DOKI☆DON-chan SAWAGI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DOKI DOKI☆DON-chan SAWAGI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_wii5op",
+ "englishUsText":"DOKI DOKI☆DON-chan SAWAGI",
+ "englishUsFontType":1,
+ "frenchText":"DOKI DOKI☆DON-chan SAWAGI",
+ "frenchFontType":1,
+ "italianText":"DOKI DOKI☆DON-chan SAWAGI",
+ "italianFontType":1,
+ "germanText":"DOKI DOKI☆DON-chan SAWAGI",
+ "germanFontType":1,
+ "spanishText":"DOKI DOKI☆DON-chan SAWAGI",
+ "spanishFontType":1,
+ "neutralSpanishText":"DOKI DOKI☆DON-chan SAWAGI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DOKI DOKI☆DON-chan SAWAGI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_wii5op",
+ "englishUsText":"DOKI DOKI☆DON-chan SAWAGI",
+ "englishUsFontType":1,
+ "frenchText":"DOKI DOKI☆DON-chan SAWAGI",
+ "frenchFontType":1,
+ "italianText":"DOKI DOKI☆DON-chan SAWAGI",
+ "italianFontType":1,
+ "germanText":"DOKI DOKI☆DON-chan SAWAGI",
+ "germanFontType":1,
+ "spanishText":"DOKI DOKI☆DON-chan SAWAGI",
+ "spanishFontType":1,
+ "neutralSpanishText":"DOKI DOKI☆DON-chan SAWAGI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DOKI DOKI☆DON-chan SAWAGI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_wii5op",
+ "englishUsText":"どきどき☆どんちゃん騒ぎ",
+ "englishUsFontType":0,
+ "frenchText":"どきどき☆どんちゃん騒ぎ",
+ "frenchFontType":0,
+ "italianText":"どきどき☆どんちゃん騒ぎ",
+ "italianFontType":0,
+ "germanText":"どきどき☆どんちゃん騒ぎ",
+ "germanFontType":0,
+ "spanishText":"どきどき☆どんちゃん騒ぎ",
+ "spanishFontType":0,
+ "neutralSpanishText":"どきどき☆どんちゃん騒ぎ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"どきどき☆どんちゃん騒ぎ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_wii5op",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_gldnkm",
+ "englishUsText":"Winding Road",
+ "englishUsFontType":1,
+ "frenchText":"Winding Road",
+ "frenchFontType":1,
+ "italianText":"Winding Road",
+ "italianFontType":1,
+ "germanText":"Winding Road",
+ "germanFontType":1,
+ "spanishText":"Winding Road",
+ "spanishFontType":1,
+ "neutralSpanishText":"Winding Road",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Winding Road",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_gldnkm",
+ "englishUsText":"Winding Road",
+ "englishUsFontType":1,
+ "frenchText":"Winding Road",
+ "frenchFontType":1,
+ "italianText":"Winding Road",
+ "italianFontType":1,
+ "germanText":"Winding Road",
+ "germanFontType":1,
+ "spanishText":"Winding Road",
+ "spanishFontType":1,
+ "neutralSpanishText":"Winding Road",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Winding Road",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_gldnkm",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_gldnkm",
+ "englishUsText":"Winding Road",
+ "englishUsFontType":0,
+ "frenchText":"Winding Road",
+ "frenchFontType":0,
+ "italianText":"Winding Road",
+ "italianFontType":0,
+ "germanText":"Winding Road",
+ "germanFontType":0,
+ "spanishText":"Winding Road",
+ "spanishFontType":0,
+ "neutralSpanishText":"Winding Road",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Winding Road",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_gldnkm",
+ "englishUsText":"From “GOLDEN KAMUY”",
+ "englishUsFontType":1,
+ "frenchText":"tiré de “GOLDEN KAMUY”",
+ "frenchFontType":1,
+ "italianText":"Da “GOLDEN KAMUY”",
+ "italianFontType":1,
+ "germanText":"Aus “GOLDEN KAMUY”",
+ "germanFontType":1,
+ "spanishText":"De “GOLDEN KAMUY”",
+ "spanishFontType":1,
+ "neutralSpanishText":"De “GOLDEN KAMUY”",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De “GOLDEN KAMUY”",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_mikugk",
+ "englishUsText":"HATSUNE MIKU No Gekishou",
+ "englishUsFontType":1,
+ "frenchText":"HATSUNE MIKU No Gekishou",
+ "frenchFontType":1,
+ "italianText":"HATSUNE MIKU No Gekishou",
+ "italianFontType":1,
+ "germanText":"HATSUNE MIKU No Gekishou",
+ "germanFontType":1,
+ "spanishText":"HATSUNE MIKU No Gekishou",
+ "spanishFontType":1,
+ "neutralSpanishText":"HATSUNE MIKU No Gekishou",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HATSUNE MIKU No Gekishou",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_mikugk",
+ "englishUsText":"HATSUNE MIKU No Gekishou",
+ "englishUsFontType":1,
+ "frenchText":"HATSUNE MIKU No Gekishou",
+ "frenchFontType":1,
+ "italianText":"HATSUNE MIKU No Gekishou",
+ "italianFontType":1,
+ "germanText":"HATSUNE MIKU No Gekishou",
+ "germanFontType":1,
+ "spanishText":"HATSUNE MIKU No Gekishou",
+ "spanishFontType":1,
+ "neutralSpanishText":"HATSUNE MIKU No Gekishou",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HATSUNE MIKU No Gekishou",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_mikugk",
+ "englishUsText":"HATSUNE MIKU No Gekishou",
+ "englishUsFontType":1,
+ "frenchText":"HATSUNE MIKU No Gekishou",
+ "frenchFontType":1,
+ "italianText":"HATSUNE MIKU No Gekishou",
+ "italianFontType":1,
+ "germanText":"HATSUNE MIKU No Gekishou",
+ "germanFontType":1,
+ "spanishText":"HATSUNE MIKU No Gekishou",
+ "spanishFontType":1,
+ "neutralSpanishText":"HATSUNE MIKU No Gekishou",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HATSUNE MIKU No Gekishou",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_mikugk",
+ "englishUsText":"初音ミクの激唱",
+ "englishUsFontType":0,
+ "frenchText":"初音ミクの激唱",
+ "frenchFontType":0,
+ "italianText":"初音ミクの激唱",
+ "italianFontType":0,
+ "germanText":"初音ミクの激唱",
+ "germanFontType":0,
+ "spanishText":"初音ミクの激唱",
+ "spanishFontType":0,
+ "neutralSpanishText":"初音ミクの激唱",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"初音ミクの激唱",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_mikugk",
+ "englishUsText":"From \" HATSUNE MIKU -Project DIVA- 2nd \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" HATSUNE MIKU -Project DIVA- 2nd \"",
+ "frenchFontType":1,
+ "italianText":"Da \" HATSUNE MIKU -Project DIVA- 2nd \"",
+ "italianFontType":1,
+ "germanText":"Aus \" HATSUNE MIKU -Project DIVA- 2nd \"",
+ "germanFontType":1,
+ "spanishText":"De \" HATSUNE MIKU -Project DIVA- 2nd \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" HATSUNE MIKU -Project DIVA- 2nd \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" HATSUNE MIKU -Project DIVA- 2nd \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_fdive",
+ "englishUsText":"FREEDOM DiVE↓",
+ "englishUsFontType":1,
+ "frenchText":"FREEDOM DiVE↓",
+ "frenchFontType":1,
+ "italianText":"FREEDOM DiVE↓",
+ "italianFontType":1,
+ "germanText":"FREEDOM DiVE↓",
+ "germanFontType":1,
+ "spanishText":"FREEDOM DiVE↓",
+ "spanishFontType":1,
+ "neutralSpanishText":"FREEDOM DiVE↓",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"FREEDOM DiVE↓",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_fdive",
+ "englishUsText":"FREEDOM DiVE↓",
+ "englishUsFontType":1,
+ "frenchText":"FREEDOM DiVE↓",
+ "frenchFontType":1,
+ "italianText":"FREEDOM DiVE↓",
+ "italianFontType":1,
+ "germanText":"FREEDOM DiVE↓",
+ "germanFontType":1,
+ "spanishText":"FREEDOM DiVE↓",
+ "spanishFontType":1,
+ "neutralSpanishText":"FREEDOM DiVE↓",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"FREEDOM DiVE↓",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_fdive",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_fdive",
+ "englishUsText":"FREEDOM DiVE↓",
+ "englishUsFontType":0,
+ "frenchText":"FREEDOM DiVE↓",
+ "frenchFontType":0,
+ "italianText":"FREEDOM DiVE↓",
+ "italianFontType":0,
+ "germanText":"FREEDOM DiVE↓",
+ "germanFontType":0,
+ "spanishText":"FREEDOM DiVE↓",
+ "spanishFontType":0,
+ "neutralSpanishText":"FREEDOM DiVE↓",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"FREEDOM DiVE↓",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_fdive",
+ "englishUsText":"xi",
+ "englishUsFontType":1,
+ "frenchText":"xi",
+ "frenchFontType":1,
+ "italianText":"xi",
+ "italianFontType":1,
+ "germanText":"xi",
+ "germanFontType":1,
+ "spanishText":"xi",
+ "spanishFontType":1,
+ "neutralSpanishText":"xi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"xi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_kahata",
+ "englishUsText":"KAHATAREDOKI NO YUUWAKU",
+ "englishUsFontType":1,
+ "frenchText":"KAHATAREDOKI NO YUUWAKU",
+ "frenchFontType":1,
+ "italianText":"KAHATAREDOKI NO YUUWAKU",
+ "italianFontType":1,
+ "germanText":"KAHATAREDOKI NO YUUWAKU",
+ "germanFontType":1,
+ "spanishText":"KAHATAREDOKI NO YUUWAKU",
+ "spanishFontType":1,
+ "neutralSpanishText":"KAHATAREDOKI NO YUUWAKU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KAHATAREDOKI NO YUUWAKU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_kahata",
+ "englishUsText":"KAHATAREDOKI NO YUUWAKU",
+ "englishUsFontType":1,
+ "frenchText":"KAHATAREDOKI NO YUUWAKU",
+ "frenchFontType":1,
+ "italianText":"KAHATAREDOKI NO YUUWAKU",
+ "italianFontType":1,
+ "germanText":"KAHATAREDOKI NO YUUWAKU",
+ "germanFontType":1,
+ "spanishText":"KAHATAREDOKI NO YUUWAKU",
+ "spanishFontType":1,
+ "neutralSpanishText":"KAHATAREDOKI NO YUUWAKU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KAHATAREDOKI NO YUUWAKU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_kahata",
+ "englishUsText":"KAHATAREDOKI NO YUUWAKU",
+ "englishUsFontType":1,
+ "frenchText":"KAHATAREDOKI NO YUUWAKU",
+ "frenchFontType":1,
+ "italianText":"KAHATAREDOKI NO YUUWAKU",
+ "italianFontType":1,
+ "germanText":"KAHATAREDOKI NO YUUWAKU",
+ "germanFontType":1,
+ "spanishText":"KAHATAREDOKI NO YUUWAKU",
+ "spanishFontType":1,
+ "neutralSpanishText":"KAHATAREDOKI NO YUUWAKU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KAHATAREDOKI NO YUUWAKU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_kahata",
+ "englishUsText":"彼は誰時の誘惑",
+ "englishUsFontType":0,
+ "frenchText":"彼は誰時の誘惑",
+ "frenchFontType":0,
+ "italianText":"彼は誰時の誘惑",
+ "italianFontType":0,
+ "germanText":"彼は誰時の誘惑",
+ "germanFontType":0,
+ "spanishText":"彼は誰時の誘惑",
+ "spanishFontType":0,
+ "neutralSpanishText":"彼は誰時の誘惑",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"彼は誰時の誘惑",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_kahata",
+ "englishUsText":"t+pazolite",
+ "englishUsFontType":1,
+ "frenchText":"t+pazolite",
+ "frenchFontType":1,
+ "italianText":"t+pazolite",
+ "italianFontType":1,
+ "germanText":"t+pazolite",
+ "germanFontType":1,
+ "spanishText":"t+pazolite",
+ "spanishFontType":1,
+ "neutralSpanishText":"t+pazolite",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"t+pazolite",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_daybyd",
+ "englishUsText":"Day by Day!",
+ "englishUsFontType":1,
+ "frenchText":"Day by Day!",
+ "frenchFontType":1,
+ "italianText":"Day by Day!",
+ "italianFontType":1,
+ "germanText":"Day by Day!",
+ "germanFontType":1,
+ "spanishText":"Day by Day!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Day by Day!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Day by Day!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_daybyd",
+ "englishUsText":"Day by Day!",
+ "englishUsFontType":1,
+ "frenchText":"Day by Day!",
+ "frenchFontType":1,
+ "italianText":"Day by Day!",
+ "italianFontType":1,
+ "germanText":"Day by Day!",
+ "germanFontType":1,
+ "spanishText":"Day by Day!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Day by Day!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Day by Day!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_daybyd",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_daybyd",
+ "englishUsText":"Day by Day!",
+ "englishUsFontType":0,
+ "frenchText":"Day by Day!",
+ "frenchFontType":0,
+ "italianText":"Day by Day!",
+ "italianFontType":0,
+ "germanText":"Day by Day!",
+ "germanFontType":0,
+ "spanishText":"Day by Day!",
+ "spanishFontType":0,
+ "neutralSpanishText":"Day by Day!",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Day by Day!",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_daybyd",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_wii5op",
+ "englishUsText":"dokidoki☆don-chansawagi",
+ "englishUsFontType":1,
+ "frenchText":"dokidoki☆don-chansawagi",
+ "frenchFontType":1,
+ "italianText":"dokidoki☆don-chansawagi",
+ "italianFontType":1,
+ "germanText":"dokidoki☆don-chansawagi",
+ "germanFontType":1,
+ "spanishText":"dokidoki☆don-chansawagi",
+ "spanishFontType":1,
+ "neutralSpanishText":"dokidoki☆don-chansawagi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"dokidoki☆don-chansawagi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_gldnkm",
+ "englishUsText":"windingroad",
+ "englishUsFontType":1,
+ "frenchText":"windingroad",
+ "frenchFontType":1,
+ "italianText":"windingroad",
+ "italianFontType":1,
+ "germanText":"windingroad",
+ "germanFontType":1,
+ "spanishText":"windingroad",
+ "spanishFontType":1,
+ "neutralSpanishText":"windingroad",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"windingroad",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_mikugk",
+ "englishUsText":"hatsunemikunogekishou",
+ "englishUsFontType":1,
+ "frenchText":"hatsunemikunogekishou",
+ "frenchFontType":1,
+ "italianText":"hatsunemikunogekishou",
+ "italianFontType":1,
+ "germanText":"hatsunemikunogekishou",
+ "germanFontType":1,
+ "spanishText":"hatsunemikunogekishou",
+ "spanishFontType":1,
+ "neutralSpanishText":"hatsunemikunogekishou",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"hatsunemikunogekishou",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_fdive",
+ "englishUsText":"freedomdive↓",
+ "englishUsFontType":1,
+ "frenchText":"freedomdive↓",
+ "frenchFontType":1,
+ "italianText":"freedomdive↓",
+ "italianFontType":1,
+ "germanText":"freedomdive↓",
+ "germanFontType":1,
+ "spanishText":"freedomdive↓",
+ "spanishFontType":1,
+ "neutralSpanishText":"freedomdive↓",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"freedomdive↓",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_kahata",
+ "englishUsText":"kahataredokinoyuuwaku",
+ "englishUsFontType":1,
+ "frenchText":"kahataredokinoyuuwaku",
+ "frenchFontType":1,
+ "italianText":"kahataredokinoyuuwaku",
+ "italianFontType":1,
+ "germanText":"kahataredokinoyuuwaku",
+ "germanFontType":1,
+ "spanishText":"kahataredokinoyuuwaku",
+ "spanishFontType":1,
+ "neutralSpanishText":"kahataredokinoyuuwaku",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"kahataredokinoyuuwaku",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_daybyd",
+ "englishUsText":"daybyday!",
+ "englishUsFontType":1,
+ "frenchText":"daybyday!",
+ "frenchFontType":1,
+ "italianText":"daybyday!",
+ "italianFontType":1,
+ "germanText":"daybyday!",
+ "germanFontType":1,
+ "spanishText":"daybyday!",
+ "spanishFontType":1,
+ "neutralSpanishText":"daybyday!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"daybyday!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_yukai",
+ "englishUsText":"I ♥ 「Hare Hare Yukai」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Hare Hare Yukai」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Hare Hare Yukai」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Hare Hare Yukai」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Hare Hare Yukai」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Hare Hare Yukai」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Hare Hare Yukai」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_cls12r",
+ "englishUsText":"I ♥ 「Etude Op.10, No.4」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Etude Op.10, No.4」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Etude Op.10, No.4」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Etude Op.10, No.4」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Etude Op.10, No.4」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Etude Op.10, No.4」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Etude Op.10, No.4」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_mggre2",
+ "englishUsText":"I ♥ 「MUSIC REVOLVER」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「MUSIC REVOLVER」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「MUSIC REVOLVER」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「MUSIC REVOLVER」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「MUSIC REVOLVER」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「MUSIC REVOLVER」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「MUSIC REVOLVER」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_dlearn",
+ "englishUsText":"I ♥ 「241 DEEP LEARNING」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「241 DEEP LEARNING」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「241 DEEP LEARNING」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「241 DEEP LEARNING」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「241 DEEP LEARNING」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「241 DEEP LEARNING」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「241 DEEP LEARNING」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_shikou",
+ "englishUsText":"I ♥ 「SHIKOU NO RAN」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SHIKOU NO RAN」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SHIKOU NO RAN」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SHIKOU NO RAN」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SHIKOU NO RAN」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SHIKOU NO RAN」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SHIKOU NO RAN」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_akbftc",
+ "englishUsText":"I ♥ 「Koisuru Fortune Cookie」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Koisuru Fortune Cookie」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Koisuru Fortune Cookie」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Koisuru Fortune Cookie」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Koisuru Fortune Cookie」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Koisuru Fortune Cookie」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Koisuru Fortune Cookie」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_saibou",
+ "englishUsText":"I ♥ 「Mission! Ken.Kou.Dai.Ichi」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Mission! Ken.Kou.Dai.Ichi」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Mission! Ken.Kou.Dai.Ichi」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Mission! Ken.Kou.Dai.Ichi」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Mission! Ken.Kou.Dai.Ichi」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Mission! Ken.Kou.Dai.Ichi」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Mission! Ken.Kou.Dai.Ichi」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_kim4ra",
+ "englishUsText":"I ♥ 「Kimino Shiranai Monogatari」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Kimino Shiranai Monogatari」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Kimino Shiranai Monogatari」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Kimino Shiranai Monogatari」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Kimino Shiranai Monogatari」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Kimino Shiranai Monogatari」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Kimino Shiranai Monogatari」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_yukai",
+ "englishUsText":"I ♥ 「Hare Hare Yukai」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Hare Hare Yukai」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Hare Hare Yukai」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Hare Hare Yukai」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Hare Hare Yukai」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Hare Hare Yukai」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Hare Hare Yukai」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_cls12r",
+ "englishUsText":"I ♥ 「Etude Op.10, No.4」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Etude Op.10, No.4」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Etude Op.10, No.4」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Etude Op.10, No.4」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Etude Op.10, No.4」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Etude Op.10, No.4」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Etude Op.10, No.4」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_mggre2",
+ "englishUsText":"I ♥ 「MUSIC REVOLVER」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「MUSIC REVOLVER」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「MUSIC REVOLVER」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「MUSIC REVOLVER」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「MUSIC REVOLVER」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「MUSIC REVOLVER」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「MUSIC REVOLVER」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_dlearn",
+ "englishUsText":"I ♥ 「241 DEEP LEARNING」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「241 DEEP LEARNING」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「241 DEEP LEARNING」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「241 DEEP LEARNING」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「241 DEEP LEARNING」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「241 DEEP LEARNING」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「241 DEEP LEARNING」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_shikou",
+ "englishUsText":"I ♥ 「SHIKOU NO RAN」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SHIKOU NO RAN」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SHIKOU NO RAN」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SHIKOU NO RAN」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SHIKOU NO RAN」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SHIKOU NO RAN」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SHIKOU NO RAN」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_akbftc",
+ "englishUsText":"I ♥ 「Koisuru Fortune Cookie」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Koisuru Fortune Cookie」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Koisuru Fortune Cookie」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Koisuru Fortune Cookie」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Koisuru Fortune Cookie」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Koisuru Fortune Cookie」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Koisuru Fortune Cookie」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_saibou",
+ "englishUsText":"I ♥ 「Mission! Ken.Kou.Dai.Ichi」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Mission! Ken.Kou.Dai.Ichi」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Mission! Ken.Kou.Dai.Ichi」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Mission! Ken.Kou.Dai.Ichi」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Mission! Ken.Kou.Dai.Ichi」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Mission! Ken.Kou.Dai.Ichi」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Mission! Ken.Kou.Dai.Ichi」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_kim4ra",
+ "englishUsText":"I ♥ 「Kimino Shiranai Monogatari」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Kimino Shiranai Monogatari」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Kimino Shiranai Monogatari」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Kimino Shiranai Monogatari」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Kimino Shiranai Monogatari」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Kimino Shiranai Monogatari」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Kimino Shiranai Monogatari」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_yukai",
+ "englishUsText":"Hare Hare Yukai",
+ "englishUsFontType":1,
+ "frenchText":"Hare Hare Yukai",
+ "frenchFontType":1,
+ "italianText":"Hare Hare Yukai",
+ "italianFontType":1,
+ "germanText":"Hare Hare Yukai",
+ "germanFontType":1,
+ "spanishText":"Hare Hare Yukai",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hare Hare Yukai",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hare Hare Yukai",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_yukai",
+ "englishUsText":"Hare Hare Yukai",
+ "englishUsFontType":1,
+ "frenchText":"Hare Hare Yukai",
+ "frenchFontType":1,
+ "italianText":"Hare Hare Yukai",
+ "italianFontType":1,
+ "germanText":"Hare Hare Yukai",
+ "germanFontType":1,
+ "spanishText":"Hare Hare Yukai",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hare Hare Yukai",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hare Hare Yukai",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_yukai",
+ "englishUsText":"Hare Hare Yukai",
+ "englishUsFontType":1,
+ "frenchText":"Hare Hare Yukai",
+ "frenchFontType":1,
+ "italianText":"Hare Hare Yukai",
+ "italianFontType":1,
+ "germanText":"Hare Hare Yukai",
+ "germanFontType":1,
+ "spanishText":"Hare Hare Yukai",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hare Hare Yukai",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hare Hare Yukai",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_yukai",
+ "englishUsText":"ハレ晴レユカイ",
+ "englishUsFontType":0,
+ "frenchText":"ハレ晴レユカイ",
+ "frenchFontType":0,
+ "italianText":"ハレ晴レユカイ",
+ "italianFontType":0,
+ "germanText":"ハレ晴レユカイ",
+ "germanFontType":0,
+ "spanishText":"ハレ晴レユカイ",
+ "spanishFontType":0,
+ "neutralSpanishText":"ハレ晴レユカイ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ハレ晴レユカイ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_yukai",
+ "englishUsText":"From \" The Melancholy of Haruhi Suzumiya \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" The Melancholy of Haruhi Suzumiya \"",
+ "frenchFontType":1,
+ "italianText":"Da \" The Melancholy of Haruhi Suzumiya \"",
+ "italianFontType":1,
+ "germanText":"Aus \" The Melancholy of Haruhi Suzumiya \"",
+ "germanFontType":1,
+ "spanishText":"De \" The Melancholy of Haruhi Suzumiya \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" The Melancholy of Haruhi Suzumiya \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" The Melancholy of Haruhi Suzumiya \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_cls12r",
+ "englishUsText":"Etude Op.10, No.4",
+ "englishUsFontType":1,
+ "frenchText":"Etude Op.10, No.4",
+ "frenchFontType":1,
+ "italianText":"Etude Op.10, No.4",
+ "italianFontType":1,
+ "germanText":"Etude Op.10, No.4",
+ "germanFontType":1,
+ "spanishText":"Etude Op.10, No.4",
+ "spanishFontType":1,
+ "neutralSpanishText":"Etude Op.10, No.4",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Etude Op.10, No.4",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_cls12r",
+ "englishUsText":"Etude Op.10, No.4",
+ "englishUsFontType":1,
+ "frenchText":"Etude Op.10, No.4",
+ "frenchFontType":1,
+ "italianText":"Etude Op.10, No.4",
+ "italianFontType":1,
+ "germanText":"Etude Op.10, No.4",
+ "germanFontType":1,
+ "spanishText":"Etude Op.10, No.4",
+ "spanishFontType":1,
+ "neutralSpanishText":"Etude Op.10, No.4",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Etude Op.10, No.4",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_cls12r",
+ "englishUsText":"Etude Op.10, No.4",
+ "englishUsFontType":1,
+ "frenchText":"Etude Op.10, No.4",
+ "frenchFontType":1,
+ "italianText":"Etude Op.10, No.4",
+ "italianFontType":1,
+ "germanText":"Etude Op.10, No.4",
+ "germanFontType":1,
+ "spanishText":"Etude Op.10, No.4",
+ "spanishFontType":1,
+ "neutralSpanishText":"Etude Op.10, No.4",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Etude Op.10, No.4",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_cls12r",
+ "englishUsText":"練習曲Op.10-4",
+ "englishUsFontType":0,
+ "frenchText":"練習曲Op.10-4",
+ "frenchFontType":0,
+ "italianText":"練習曲Op.10-4",
+ "italianFontType":0,
+ "germanText":"練習曲Op.10-4",
+ "germanFontType":0,
+ "spanishText":"練習曲Op.10-4",
+ "spanishFontType":0,
+ "neutralSpanishText":"練習曲Op.10-4",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"練習曲Op.10-4",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_cls12r",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_mggre2",
+ "englishUsText":"MUSIC REVOLVER",
+ "englishUsFontType":1,
+ "frenchText":"MUSIC REVOLVER",
+ "frenchFontType":1,
+ "italianText":"MUSIC REVOLVER",
+ "italianFontType":1,
+ "germanText":"MUSIC REVOLVER",
+ "germanFontType":1,
+ "spanishText":"MUSIC REVOLVER",
+ "spanishFontType":1,
+ "neutralSpanishText":"MUSIC REVOLVER",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"MUSIC REVOLVER",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_mggre2",
+ "englishUsText":"MUSIC REVOLVER",
+ "englishUsFontType":1,
+ "frenchText":"MUSIC REVOLVER",
+ "frenchFontType":1,
+ "italianText":"MUSIC REVOLVER",
+ "italianFontType":1,
+ "germanText":"MUSIC REVOLVER",
+ "germanFontType":1,
+ "spanishText":"MUSIC REVOLVER",
+ "spanishFontType":1,
+ "neutralSpanishText":"MUSIC REVOLVER",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"MUSIC REVOLVER",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_mggre2",
+ "englishUsText":"MUSIC REVOLVER",
+ "englishUsFontType":1,
+ "frenchText":"MUSIC REVOLVER",
+ "frenchFontType":1,
+ "italianText":"MUSIC REVOLVER",
+ "italianFontType":1,
+ "germanText":"MUSIC REVOLVER",
+ "germanFontType":1,
+ "spanishText":"MUSIC REVOLVER",
+ "spanishFontType":1,
+ "neutralSpanishText":"MUSIC REVOLVER",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"MUSIC REVOLVER",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_mggre2",
+ "englishUsText":"ミュージック・リボルバー",
+ "englishUsFontType":0,
+ "frenchText":"ミュージック・リボルバー",
+ "frenchFontType":0,
+ "italianText":"ミュージック・リボルバー",
+ "italianFontType":0,
+ "germanText":"ミュージック・リボルバー",
+ "germanFontType":0,
+ "spanishText":"ミュージック・リボルバー",
+ "spanishFontType":0,
+ "neutralSpanishText":"ミュージック・リボルバー",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ミュージック・リボルバー",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_mggre2",
+ "englishUsText":"From \" MUSIC GUNGUN! 2 \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" MUSIC GUNGUN! 2 \"",
+ "frenchFontType":1,
+ "italianText":"Da \" MUSIC GUNGUN! 2 \"",
+ "italianFontType":1,
+ "germanText":"Aus \" MUSIC GUNGUN! 2 \"",
+ "germanFontType":1,
+ "spanishText":"De \" MUSIC GUNGUN! 2 \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" MUSIC GUNGUN! 2 \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" MUSIC GUNGUN! 2 \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_dlearn",
+ "englishUsText":"241 DEEP LEARNING",
+ "englishUsFontType":1,
+ "frenchText":"241 DEEP LEARNING",
+ "frenchFontType":1,
+ "italianText":"241 DEEP LEARNING",
+ "italianFontType":1,
+ "germanText":"241 DEEP LEARNING",
+ "germanFontType":1,
+ "spanishText":"241 DEEP LEARNING",
+ "spanishFontType":1,
+ "neutralSpanishText":"241 DEEP LEARNING",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"241 DEEP LEARNING",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_dlearn",
+ "englishUsText":"241 DEEP LEARNING",
+ "englishUsFontType":1,
+ "frenchText":"241 DEEP LEARNING",
+ "frenchFontType":1,
+ "italianText":"241 DEEP LEARNING",
+ "italianFontType":1,
+ "germanText":"241 DEEP LEARNING",
+ "germanFontType":1,
+ "spanishText":"241 DEEP LEARNING",
+ "spanishFontType":1,
+ "neutralSpanishText":"241 DEEP LEARNING",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"241 DEEP LEARNING",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_dlearn",
+ "englishUsText":"241 DEEP LEARNING",
+ "englishUsFontType":1,
+ "frenchText":"241 DEEP LEARNING",
+ "frenchFontType":1,
+ "italianText":"241 DEEP LEARNING",
+ "italianFontType":1,
+ "germanText":"241 DEEP LEARNING",
+ "germanFontType":1,
+ "spanishText":"241 DEEP LEARNING",
+ "spanishFontType":1,
+ "neutralSpanishText":"241 DEEP LEARNING",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"241 DEEP LEARNING",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_dlearn",
+ "englishUsText":"241ディープラーニング",
+ "englishUsFontType":0,
+ "frenchText":"241ディープラーニング",
+ "frenchFontType":0,
+ "italianText":"241ディープラーニング",
+ "italianFontType":0,
+ "germanText":"241ディープラーニング",
+ "germanFontType":0,
+ "spanishText":"241ディープラーニング",
+ "spanishFontType":0,
+ "neutralSpanishText":"241ディープラーニング",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"241ディープラーニング",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_dlearn",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_shikou",
+ "englishUsText":"SHIKOU NO RAN",
+ "englishUsFontType":1,
+ "frenchText":"SHIKOU NO RAN",
+ "frenchFontType":1,
+ "italianText":"SHIKOU NO RAN",
+ "italianFontType":1,
+ "germanText":"SHIKOU NO RAN",
+ "germanFontType":1,
+ "spanishText":"SHIKOU NO RAN",
+ "spanishFontType":1,
+ "neutralSpanishText":"SHIKOU NO RAN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SHIKOU NO RAN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_shikou",
+ "englishUsText":"SHIKOU NO RAN",
+ "englishUsFontType":1,
+ "frenchText":"SHIKOU NO RAN",
+ "frenchFontType":1,
+ "italianText":"SHIKOU NO RAN",
+ "italianFontType":1,
+ "germanText":"SHIKOU NO RAN",
+ "germanFontType":1,
+ "spanishText":"SHIKOU NO RAN",
+ "spanishFontType":1,
+ "neutralSpanishText":"SHIKOU NO RAN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SHIKOU NO RAN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_shikou",
+ "englishUsText":"SHIKOU NO RAN",
+ "englishUsFontType":1,
+ "frenchText":"SHIKOU NO RAN",
+ "frenchFontType":1,
+ "italianText":"SHIKOU NO RAN",
+ "italianFontType":1,
+ "germanText":"SHIKOU NO RAN",
+ "germanFontType":1,
+ "spanishText":"SHIKOU NO RAN",
+ "spanishFontType":1,
+ "neutralSpanishText":"SHIKOU NO RAN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SHIKOU NO RAN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_shikou",
+ "englishUsText":"紫煌ノ乱",
+ "englishUsFontType":0,
+ "frenchText":"紫煌ノ乱",
+ "frenchFontType":0,
+ "italianText":"紫煌ノ乱",
+ "italianFontType":0,
+ "germanText":"紫煌ノ乱",
+ "germanFontType":0,
+ "spanishText":"紫煌ノ乱",
+ "spanishFontType":0,
+ "neutralSpanishText":"紫煌ノ乱",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"紫煌ノ乱",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_shikou",
+ "englishUsText":"Xeami",
+ "englishUsFontType":1,
+ "frenchText":"Xeami",
+ "frenchFontType":1,
+ "italianText":"Xeami",
+ "italianFontType":1,
+ "germanText":"Xeami",
+ "germanFontType":1,
+ "spanishText":"Xeami",
+ "spanishFontType":1,
+ "neutralSpanishText":"Xeami",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Xeami",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_akbftc",
+ "englishUsText":"Koisuru Fortune Cookie",
+ "englishUsFontType":1,
+ "frenchText":"Koisuru Fortune Cookie",
+ "frenchFontType":1,
+ "italianText":"Koisuru Fortune Cookie",
+ "italianFontType":1,
+ "germanText":"Koisuru Fortune Cookie",
+ "germanFontType":1,
+ "spanishText":"Koisuru Fortune Cookie",
+ "spanishFontType":1,
+ "neutralSpanishText":"Koisuru Fortune Cookie",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Koisuru Fortune Cookie",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_akbftc",
+ "englishUsText":"Koisuru Fortune Cookie",
+ "englishUsFontType":1,
+ "frenchText":"Koisuru Fortune Cookie",
+ "frenchFontType":1,
+ "italianText":"Koisuru Fortune Cookie",
+ "italianFontType":1,
+ "germanText":"Koisuru Fortune Cookie",
+ "germanFontType":1,
+ "spanishText":"Koisuru Fortune Cookie",
+ "spanishFontType":1,
+ "neutralSpanishText":"Koisuru Fortune Cookie",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Koisuru Fortune Cookie",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_akbftc",
+ "englishUsText":"Koisuru Fortune Cookie",
+ "englishUsFontType":1,
+ "frenchText":"Koisuru Fortune Cookie",
+ "frenchFontType":1,
+ "italianText":"Koisuru Fortune Cookie",
+ "italianFontType":1,
+ "germanText":"Koisuru Fortune Cookie",
+ "germanFontType":1,
+ "spanishText":"Koisuru Fortune Cookie",
+ "spanishFontType":1,
+ "neutralSpanishText":"Koisuru Fortune Cookie",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Koisuru Fortune Cookie",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_akbftc",
+ "englishUsText":"恋するフォーチュンクッキー",
+ "englishUsFontType":0,
+ "frenchText":"恋するフォーチュンクッキー",
+ "frenchFontType":0,
+ "italianText":"恋するフォーチュンクッキー",
+ "italianFontType":0,
+ "germanText":"恋するフォーチュンクッキー",
+ "germanFontType":0,
+ "spanishText":"恋するフォーチュンクッキー",
+ "spanishFontType":0,
+ "neutralSpanishText":"恋するフォーチュンクッキー",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"恋するフォーチュンクッキー",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_akbftc",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_saibou",
+ "englishUsText":"Mission! Ken.Kou.Dai.Ichi",
+ "englishUsFontType":1,
+ "frenchText":"Mission! Ken.Kou.Dai.Ichi",
+ "frenchFontType":1,
+ "italianText":"Mission! Ken.Kou.Dai.Ichi",
+ "italianFontType":1,
+ "germanText":"Mission! Ken.Kou.Dai.Ichi",
+ "germanFontType":1,
+ "spanishText":"Mission! Ken.Kou.Dai.Ichi",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mission! Ken.Kou.Dai.Ichi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mission! Ken.Kou.Dai.Ichi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_saibou",
+ "englishUsText":"Mission! Ken.Kou.Dai.Ichi",
+ "englishUsFontType":1,
+ "frenchText":"Mission! Ken.Kou.Dai.Ichi",
+ "frenchFontType":1,
+ "italianText":"Mission! Ken.Kou.Dai.Ichi",
+ "italianFontType":1,
+ "germanText":"Mission! Ken.Kou.Dai.Ichi",
+ "germanFontType":1,
+ "spanishText":"Mission! Ken.Kou.Dai.Ichi",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mission! Ken.Kou.Dai.Ichi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mission! Ken.Kou.Dai.Ichi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_saibou",
+ "englishUsText":"Mission! Ken.Kou.Dai.Ichi",
+ "englishUsFontType":1,
+ "frenchText":"Mission! Ken.Kou.Dai.Ichi",
+ "frenchFontType":1,
+ "italianText":"Mission! Ken.Kou.Dai.Ichi",
+ "italianFontType":1,
+ "germanText":"Mission! Ken.Kou.Dai.Ichi",
+ "germanFontType":1,
+ "spanishText":"Mission! Ken.Kou.Dai.Ichi",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mission! Ken.Kou.Dai.Ichi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mission! Ken.Kou.Dai.Ichi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_saibou",
+ "englishUsText":"ミッション! 健・康・第・イチ",
+ "englishUsFontType":0,
+ "frenchText":"ミッション! 健・康・第・イチ",
+ "frenchFontType":0,
+ "italianText":"ミッション! 健・康・第・イチ",
+ "italianFontType":0,
+ "germanText":"ミッション! 健・康・第・イチ",
+ "germanFontType":0,
+ "spanishText":"ミッション! 健・康・第・イチ",
+ "spanishFontType":0,
+ "neutralSpanishText":"ミッション! 健・康・第・イチ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ミッション! 健・康・第・イチ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_saibou",
+ "englishUsText":"From \" Cells at Work! \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" Cells at Work! \"",
+ "frenchFontType":1,
+ "italianText":"Da \" Cells at Work! \"",
+ "italianFontType":1,
+ "germanText":"Aus \" Cells at Work! \"",
+ "germanFontType":1,
+ "spanishText":"De \" Cells at Work! \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" Cells at Work! \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" Cells at Work! \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_kim4ra",
+ "englishUsText":"Kimino Shiranai Monogatari",
+ "englishUsFontType":1,
+ "frenchText":"Kimino Shiranai Monogatari",
+ "frenchFontType":1,
+ "italianText":"Kimino Shiranai Monogatari",
+ "italianFontType":1,
+ "germanText":"Kimino Shiranai Monogatari",
+ "germanFontType":1,
+ "spanishText":"Kimino Shiranai Monogatari",
+ "spanishFontType":1,
+ "neutralSpanishText":"Kimino Shiranai Monogatari",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Kimino Shiranai Monogatari",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_kim4ra",
+ "englishUsText":"Kimino Shiranai Monogatari",
+ "englishUsFontType":1,
+ "frenchText":"Kimino Shiranai Monogatari",
+ "frenchFontType":1,
+ "italianText":"Kimino Shiranai Monogatari",
+ "italianFontType":1,
+ "germanText":"Kimino Shiranai Monogatari",
+ "germanFontType":1,
+ "spanishText":"Kimino Shiranai Monogatari",
+ "spanishFontType":1,
+ "neutralSpanishText":"Kimino Shiranai Monogatari",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Kimino Shiranai Monogatari",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_kim4ra",
+ "englishUsText":"Kimino Shiranai Monogatari",
+ "englishUsFontType":1,
+ "frenchText":"Kimino Shiranai Monogatari",
+ "frenchFontType":1,
+ "italianText":"Kimino Shiranai Monogatari",
+ "italianFontType":1,
+ "germanText":"Kimino Shiranai Monogatari",
+ "germanFontType":1,
+ "spanishText":"Kimino Shiranai Monogatari",
+ "spanishFontType":1,
+ "neutralSpanishText":"Kimino Shiranai Monogatari",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Kimino Shiranai Monogatari",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_kim4ra",
+ "englishUsText":"君の知らない物語",
+ "englishUsFontType":0,
+ "frenchText":"君の知らない物語",
+ "frenchFontType":0,
+ "italianText":"君の知らない物語",
+ "italianFontType":0,
+ "germanText":"君の知らない物語",
+ "germanFontType":0,
+ "spanishText":"君の知らない物語",
+ "spanishFontType":0,
+ "neutralSpanishText":"君の知らない物語",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"君の知らない物語",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_kim4ra",
+ "englishUsText":"From \" BAKEMONOGATARI \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" BAKEMONOGATARI \"",
+ "frenchFontType":1,
+ "italianText":"Da \" BAKEMONOGATARI \"",
+ "italianFontType":1,
+ "germanText":"Aus \" BAKEMONOGATARI \"",
+ "germanFontType":1,
+ "spanishText":"De \" BAKEMONOGATARI \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" BAKEMONOGATARI \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" BAKEMONOGATARI \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_yukai",
+ "englishUsText":"harehareyukai",
+ "englishUsFontType":1,
+ "frenchText":"harehareyukai",
+ "frenchFontType":1,
+ "italianText":"harehareyukai",
+ "italianFontType":1,
+ "germanText":"harehareyukai",
+ "germanFontType":1,
+ "spanishText":"harehareyukai",
+ "spanishFontType":1,
+ "neutralSpanishText":"harehareyukai",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"harehareyukai",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_cls12r",
+ "englishUsText":"etudeop.10,no.4",
+ "englishUsFontType":1,
+ "frenchText":"etudeop.10,no.4",
+ "frenchFontType":1,
+ "italianText":"etudeop.10,no.4",
+ "italianFontType":1,
+ "germanText":"etudeop.10,no.4",
+ "germanFontType":1,
+ "spanishText":"etudeop.10,no.4",
+ "spanishFontType":1,
+ "neutralSpanishText":"etudeop.10,no.4",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"etudeop.10,no.4",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_mggre2",
+ "englishUsText":"musicrevolver",
+ "englishUsFontType":1,
+ "frenchText":"musicrevolver",
+ "frenchFontType":1,
+ "italianText":"musicrevolver",
+ "italianFontType":1,
+ "germanText":"musicrevolver",
+ "germanFontType":1,
+ "spanishText":"musicrevolver",
+ "spanishFontType":1,
+ "neutralSpanishText":"musicrevolver",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"musicrevolver",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_dlearn",
+ "englishUsText":"241deeplearning",
+ "englishUsFontType":1,
+ "frenchText":"241deeplearning",
+ "frenchFontType":1,
+ "italianText":"241deeplearning",
+ "italianFontType":1,
+ "germanText":"241deeplearning",
+ "germanFontType":1,
+ "spanishText":"241deeplearning",
+ "spanishFontType":1,
+ "neutralSpanishText":"241deeplearning",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"241deeplearning",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_shikou",
+ "englishUsText":"shikounoran",
+ "englishUsFontType":1,
+ "frenchText":"shikounoran",
+ "frenchFontType":1,
+ "italianText":"shikounoran",
+ "italianFontType":1,
+ "germanText":"shikounoran",
+ "germanFontType":1,
+ "spanishText":"shikounoran",
+ "spanishFontType":1,
+ "neutralSpanishText":"shikounoran",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"shikounoran",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_akbftc",
+ "englishUsText":"koisurufortunecookie",
+ "englishUsFontType":1,
+ "frenchText":"koisurufortunecookie",
+ "frenchFontType":1,
+ "italianText":"koisurufortunecookie",
+ "italianFontType":1,
+ "germanText":"koisurufortunecookie",
+ "germanFontType":1,
+ "spanishText":"koisurufortunecookie",
+ "spanishFontType":1,
+ "neutralSpanishText":"koisurufortunecookie",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"koisurufortunecookie",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_saibou",
+ "englishUsText":"mission!ken.kou.dai.ichi",
+ "englishUsFontType":1,
+ "frenchText":"mission!ken.kou.dai.ichi",
+ "frenchFontType":1,
+ "italianText":"mission!ken.kou.dai.ichi",
+ "italianFontType":1,
+ "germanText":"mission!ken.kou.dai.ichi",
+ "germanFontType":1,
+ "spanishText":"mission!ken.kou.dai.ichi",
+ "spanishFontType":1,
+ "neutralSpanishText":"mission!ken.kou.dai.ichi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"mission!ken.kou.dai.ichi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_kim4ra",
+ "englishUsText":"kiminoshiranaimonogatari",
+ "englishUsFontType":1,
+ "frenchText":"kiminoshiranaimonogatari",
+ "frenchFontType":1,
+ "italianText":"kiminoshiranaimonogatari",
+ "italianFontType":1,
+ "germanText":"kiminoshiranaimonogatari",
+ "germanFontType":1,
+ "spanishText":"kiminoshiranaimonogatari",
+ "spanishFontType":1,
+ "neutralSpanishText":"kiminoshiranaimonogatari",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"kiminoshiranaimonogatari",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_spcsam",
+ "englishUsText":"I ♥ 「UCHU SAMURAI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「UCHU SAMURAI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「UCHU SAMURAI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「UCHU SAMURAI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「UCHU SAMURAI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「UCHU SAMURAI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「UCHU SAMURAI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_xjapa2",
+ "englishUsText":"I ♥ 「Silent Jealousy」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Silent Jealousy」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Silent Jealousy」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Silent Jealousy」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Silent Jealousy」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Silent Jealousy」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Silent Jealousy」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_r4nak",
+ "englishUsText":"I ♥ 「Naked Glow」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Naked Glow」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Naked Glow」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Naked Glow」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Naked Glow」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Naked Glow」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Naked Glow」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_struin",
+ "englishUsText":"I ♥ 「Sacred Ruin」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Sacred Ruin」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Sacred Ruin」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Sacred Ruin」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Sacred Ruin」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Sacred Ruin」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Sacred Ruin」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_iwantu",
+ "englishUsText":"I ♥ 「AI want U」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「AI want U」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「AI want U」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「AI want U」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「AI want U」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「AI want U」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「AI want U」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_iswaze",
+ "englishUsText":"I ♥ 「ISHIKI NO WA/ZE」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「ISHIKI NO WA/ZE」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「ISHIKI NO WA/ZE」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「ISHIKI NO WA/ZE」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「ISHIKI NO WA/ZE」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「ISHIKI NO WA/ZE」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「ISHIKI NO WA/ZE」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_toymat",
+ "englishUsText":"I ♥ 「TOYMATIC☆PARADE!!」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「TOYMATIC☆PARADE!!」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「TOYMATIC☆PARADE!!」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「TOYMATIC☆PARADE!!」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「TOYMATIC☆PARADE!!」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「TOYMATIC☆PARADE!!」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「TOYMATIC☆PARADE!!」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_spcsam",
+ "englishUsText":"I ♥ 「UCHU SAMURAI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「UCHU SAMURAI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「UCHU SAMURAI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「UCHU SAMURAI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「UCHU SAMURAI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「UCHU SAMURAI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「UCHU SAMURAI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_xjapa2",
+ "englishUsText":"I ♥ 「Silent Jealousy」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Silent Jealousy」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Silent Jealousy」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Silent Jealousy」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Silent Jealousy」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Silent Jealousy」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Silent Jealousy」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_r4nak",
+ "englishUsText":"I ♥ 「Naked Glow」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Naked Glow」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Naked Glow」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Naked Glow」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Naked Glow」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Naked Glow」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Naked Glow」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_struin",
+ "englishUsText":"I ♥ 「Sacred Ruin」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Sacred Ruin」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Sacred Ruin」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Sacred Ruin」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Sacred Ruin」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Sacred Ruin」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Sacred Ruin」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_iwantu",
+ "englishUsText":"I ♥ 「AI want U」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「AI want U」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「AI want U」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「AI want U」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「AI want U」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「AI want U」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「AI want U」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_iswaze",
+ "englishUsText":"I ♥ 「ISHIKI NO WA/ZE」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「ISHIKI NO WA/ZE」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「ISHIKI NO WA/ZE」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「ISHIKI NO WA/ZE」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「ISHIKI NO WA/ZE」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「ISHIKI NO WA/ZE」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「ISHIKI NO WA/ZE」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_toymat",
+ "englishUsText":"I ♥ 「TOYMATIC☆PARADE!!」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「TOYMATIC☆PARADE!!」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「TOYMATIC☆PARADE!!」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「TOYMATIC☆PARADE!!」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「TOYMATIC☆PARADE!!」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「TOYMATIC☆PARADE!!」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「TOYMATIC☆PARADE!!」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_spacesamurai",
+ "englishUsText":"Now then, let's have a fair fight!",
+ "englishUsFontType":1,
+ "frenchText":"C'est parti, que le meilleur gagne !",
+ "frenchFontType":1,
+ "italianText":"Sfidiamoci lealmente!",
+ "italianFontType":1,
+ "germanText":"Lass uns einen fairen Kampf haben!",
+ "germanFontType":1,
+ "spanishText":"¡Ahora os enfrentaréis en una pelea justa!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡A la honrosa batalla!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"E agora, uma batalha honrável!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_spacesamurai",
+ "englishUsText":"Began the UCHU SAMURAI Showdown",
+ "englishUsFontType":1,
+ "frenchText":"Début de la confrontation avec UCHU SAMURAI",
+ "frenchFontType":1,
+ "italianText":"Ha avviato il Duello con UCHU SAMURAI",
+ "italianFontType":1,
+ "germanText":"UCHU SAMURAI Showdown gestartet!",
+ "germanFontType":1,
+ "spanishText":"Comienza el duelo UCHU SAMURAI",
+ "spanishFontType":1,
+ "neutralSpanishText":"El Festival UCHU SAMURAI ya comenzó",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"O Festival UCHU SAMURAI começou",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_kirisute",
+ "englishUsText":"KIRI-SUTE-GOMEN",
+ "englishUsFontType":1,
+ "frenchText":"KIRI-SUTE-GOMEN",
+ "frenchFontType":1,
+ "italianText":"KIRI-SUTE-GOMEN",
+ "italianFontType":1,
+ "germanText":"KIRI-SUTE-GOMEN",
+ "germanFontType":1,
+ "spanishText":"KIRI-SUTE-GOMEN",
+ "spanishFontType":1,
+ "neutralSpanishText":"KIRI-SUTE-GOMEN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KIRI-SUTE-GOMEN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_spacesamuraiex",
+ "englishUsText":"UCHU SAMURAI Showdown Master",
+ "englishUsFontType":1,
+ "frenchText":"Maître de la confrontation avec UCHU SAMURAI",
+ "frenchFontType":1,
+ "italianText":"Maestro di Duello con UCHU SAMURAI",
+ "italianFontType":1,
+ "germanText":"UCHU SAMURAI Showdown Master",
+ "germanFontType":1,
+ "spanishText":"Maestro del duelo UCHU SAMURAI",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro del Festival UCHU SAMURAI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre do Festival UCHU SAMURAI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_ochimusya",
+ "englishUsText":"Shameful Deserter",
+ "englishUsFontType":1,
+ "frenchText":"Déserteur honteux",
+ "frenchFontType":1,
+ "italianText":"Vergognoso disertore",
+ "italianFontType":1,
+ "germanText":"Schändlicher Feigling",
+ "germanFontType":1,
+ "spanishText":"Desertor infame",
+ "spanishFontType":1,
+ "neutralSpanishText":"Desertor indigno",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Desertor Vergonhoso",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_musya",
+ "englishUsText":"True Warrior",
+ "englishUsFontType":1,
+ "frenchText":"Véritable guerrier",
+ "frenchFontType":1,
+ "italianText":"Vero guerriero",
+ "italianFontType":1,
+ "germanText":"Wahrer Krieger",
+ "germanFontType":1,
+ "spanishText":"Guerrero verdadero",
+ "spanishFontType":1,
+ "neutralSpanishText":"Verdadero guerrero",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Guerreiro Verdadeiro",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_guardian",
+ "englishUsText":"Guardian",
+ "englishUsFontType":1,
+ "frenchText":"Gardien",
+ "frenchFontType":1,
+ "italianText":"Guardiano",
+ "italianFontType":1,
+ "germanText":"Wächter",
+ "germanFontType":1,
+ "spanishText":"Guardián",
+ "spanishFontType":1,
+ "neutralSpanishText":"Guardián",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Guardião",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_spacesamurai",
+ "englishUsText":"UCHU SAMURAI Showdown",
+ "englishUsFontType":1,
+ "frenchText":"Confrontation avec UCHU SAMURAI",
+ "frenchFontType":1,
+ "italianText":"Duello con UCHU SAMURAI",
+ "italianFontType":1,
+ "germanText":"UCHU SAMURAI Showdown",
+ "germanFontType":1,
+ "spanishText":"Duelo UCHU SAMURAI",
+ "spanishFontType":1,
+ "neutralSpanishText":"Festival UCHU SAMURAI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre do Festival UCHU SAMURAI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_revived",
+ "englishUsText":"Revival!",
+ "englishUsFontType":1,
+ "frenchText":"Réanimation !",
+ "frenchFontType":1,
+ "italianText":"Revival!",
+ "italianFontType":1,
+ "germanText":"Wiederbelebung!",
+ "germanFontType":1,
+ "spanishText":"¡Reanimación!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Reanimación!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Reanimado!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_revived_info",
+ "englishUsText":"*If the player has already received a Revival Award, they will instead receive 10FP",
+ "englishUsFontType":1,
+ "frenchText":"*Si le joueur a déjà obtenu le prix Réanimation, il recevra 10 PF à la place",
+ "frenchFontType":1,
+ "italianText":"* Se il giocatore ha già ricevuto un premio Revival, al suo posto otterrà 10 PF.",
+ "italianFontType":1,
+ "germanText":"*Sollte der Spieler bereits eine Wiederbelebungs-Auszeichnung erhalten haben, erhält er stattdessen 10 FP.",
+ "germanFontType":1,
+ "spanishText":"*Si el jugador ya ha recibido una reanimación, obtendrá 10 PF",
+ "spanishFontType":1,
+ "neutralSpanishText":"*Si el jugador ya fue reanimado, recibirá 10 FP",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"*Caso o jogador já possua o Prêmio Reanimação, ele receberá 10 FP como recompensa.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_spcsam",
+ "englishUsText":"UCHU SAMURAI",
+ "englishUsFontType":1,
+ "frenchText":"UCHU SAMURAI",
+ "frenchFontType":1,
+ "italianText":"UCHU SAMURAI",
+ "italianFontType":1,
+ "germanText":"UCHU SAMURAI",
+ "germanFontType":1,
+ "spanishText":"UCHU SAMURAI",
+ "spanishFontType":1,
+ "neutralSpanishText":"UCHU SAMURAI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"UCHU SAMURAI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_spcsam",
+ "englishUsText":"UCHU SAMURAI",
+ "englishUsFontType":1,
+ "frenchText":"UCHU SAMURAI",
+ "frenchFontType":1,
+ "italianText":"UCHU SAMURAI",
+ "italianFontType":1,
+ "germanText":"UCHU SAMURAI",
+ "germanFontType":1,
+ "spanishText":"UCHU SAMURAI",
+ "spanishFontType":1,
+ "neutralSpanishText":"UCHU SAMURAI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"UCHU SAMURAI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_spcsam",
+ "englishUsText":"UCHU SAMURAI",
+ "englishUsFontType":1,
+ "frenchText":"UCHU SAMURAI",
+ "frenchFontType":1,
+ "italianText":"UCHU SAMURAI",
+ "italianFontType":1,
+ "germanText":"UCHU SAMURAI",
+ "germanFontType":1,
+ "spanishText":"UCHU SAMURAI",
+ "spanishFontType":1,
+ "neutralSpanishText":"UCHU SAMURAI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"UCHU SAMURAI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_spcsam",
+ "englishUsText":"宇宙SAMURAI",
+ "englishUsFontType":0,
+ "frenchText":"宇宙SAMURAI",
+ "frenchFontType":0,
+ "italianText":"宇宙SAMURAI",
+ "italianFontType":0,
+ "germanText":"宇宙SAMURAI",
+ "germanFontType":0,
+ "spanishText":"宇宙SAMURAI",
+ "spanishFontType":0,
+ "neutralSpanishText":"宇宙SAMURAI",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"宇宙SAMURAI",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_spcsam",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_xjapa2",
+ "englishUsText":"Silent Jealousy",
+ "englishUsFontType":1,
+ "frenchText":"Silent Jealousy",
+ "frenchFontType":1,
+ "italianText":"Silent Jealousy",
+ "italianFontType":1,
+ "germanText":"Silent Jealousy",
+ "germanFontType":1,
+ "spanishText":"Silent Jealousy",
+ "spanishFontType":1,
+ "neutralSpanishText":"Silent Jealousy",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Silent Jealousy",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_xjapa2",
+ "englishUsText":"Silent Jealousy",
+ "englishUsFontType":1,
+ "frenchText":"Silent Jealousy",
+ "frenchFontType":1,
+ "italianText":"Silent Jealousy",
+ "italianFontType":1,
+ "germanText":"Silent Jealousy",
+ "germanFontType":1,
+ "spanishText":"Silent Jealousy",
+ "spanishFontType":1,
+ "neutralSpanishText":"Silent Jealousy",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Silent Jealousy",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_xjapa2",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_xjapa2",
+ "englishUsText":"Silent Jealousy",
+ "englishUsFontType":0,
+ "frenchText":"Silent Jealousy",
+ "frenchFontType":0,
+ "italianText":"Silent Jealousy",
+ "italianFontType":0,
+ "germanText":"Silent Jealousy",
+ "germanFontType":0,
+ "spanishText":"Silent Jealousy",
+ "spanishFontType":0,
+ "neutralSpanishText":"Silent Jealousy",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Silent Jealousy",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_xjapa2",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_r4nak",
+ "englishUsText":"Naked Glow",
+ "englishUsFontType":1,
+ "frenchText":"Naked Glow",
+ "frenchFontType":1,
+ "italianText":"Naked Glow",
+ "italianFontType":1,
+ "germanText":"Naked Glow",
+ "germanFontType":1,
+ "spanishText":"Naked Glow",
+ "spanishFontType":1,
+ "neutralSpanishText":"Naked Glow",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Naked Glow",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_r4nak",
+ "englishUsText":"Naked Glow",
+ "englishUsFontType":1,
+ "frenchText":"Naked Glow",
+ "frenchFontType":1,
+ "italianText":"Naked Glow",
+ "italianFontType":1,
+ "germanText":"Naked Glow",
+ "germanFontType":1,
+ "spanishText":"Naked Glow",
+ "spanishFontType":1,
+ "neutralSpanishText":"Naked Glow",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Naked Glow",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_r4nak",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_r4nak",
+ "englishUsText":"Naked Glow",
+ "englishUsFontType":0,
+ "frenchText":"Naked Glow",
+ "frenchFontType":0,
+ "italianText":"Naked Glow",
+ "italianFontType":0,
+ "germanText":"Naked Glow",
+ "germanFontType":0,
+ "spanishText":"Naked Glow",
+ "spanishFontType":0,
+ "neutralSpanishText":"Naked Glow",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Naked Glow",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_r4nak",
+ "englishUsText":"From \" R4 -RIDGE RACER TYPE4-\"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" R4 -RIDGE RACER TYPE4-\"",
+ "frenchFontType":1,
+ "italianText":"Da \" R4 -RIDGE RACER TYPE4-\"",
+ "italianFontType":1,
+ "germanText":"Aus \" R4 -RIDGE RACER TYPE4-\"",
+ "germanFontType":1,
+ "spanishText":"De \" R4 -RIDGE RACER TYPE4-\"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" R4 -RIDGE RACER TYPE4-\"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" R4 -RIDGE RACER TYPE4-\"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_struin",
+ "englishUsText":"Sacred Ruin",
+ "englishUsFontType":1,
+ "frenchText":"Sacred Ruin",
+ "frenchFontType":1,
+ "italianText":"Sacred Ruin",
+ "italianFontType":1,
+ "germanText":"Sacred Ruin",
+ "germanFontType":1,
+ "spanishText":"Sacred Ruin",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sacred Ruin",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sacred Ruin",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_struin",
+ "englishUsText":"Sacred Ruin",
+ "englishUsFontType":1,
+ "frenchText":"Sacred Ruin",
+ "frenchFontType":1,
+ "italianText":"Sacred Ruin",
+ "italianFontType":1,
+ "germanText":"Sacred Ruin",
+ "germanFontType":1,
+ "spanishText":"Sacred Ruin",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sacred Ruin",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sacred Ruin",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_struin",
+ "englishUsText":"Sacred Ruin",
+ "englishUsFontType":1,
+ "frenchText":"Sacred Ruin",
+ "frenchFontType":1,
+ "italianText":"Sacred Ruin",
+ "italianFontType":1,
+ "germanText":"Sacred Ruin",
+ "germanFontType":1,
+ "spanishText":"Sacred Ruin",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sacred Ruin",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sacred Ruin",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_struin",
+ "englishUsText":"セイクリッド ルイン",
+ "englishUsFontType":0,
+ "frenchText":"セイクリッド ルイン",
+ "frenchFontType":0,
+ "italianText":"セイクリッド ルイン",
+ "italianFontType":0,
+ "germanText":"セイクリッド ルイン",
+ "germanFontType":0,
+ "spanishText":"セイクリッド ルイン",
+ "spanishFontType":0,
+ "neutralSpanishText":"セイクリッド ルイン",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"セイクリッド ルイン",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_struin",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_iwantu",
+ "englishUsText":"AI want U",
+ "englishUsFontType":1,
+ "frenchText":"AI want U",
+ "frenchFontType":1,
+ "italianText":"AI want U",
+ "italianFontType":1,
+ "germanText":"AI want U",
+ "germanFontType":1,
+ "spanishText":"AI want U",
+ "spanishFontType":1,
+ "neutralSpanishText":"AI want U",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"AI want U",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_iwantu",
+ "englishUsText":"AI want U",
+ "englishUsFontType":1,
+ "frenchText":"AI want U",
+ "frenchFontType":1,
+ "italianText":"AI want U",
+ "italianFontType":1,
+ "germanText":"AI want U",
+ "germanFontType":1,
+ "spanishText":"AI want U",
+ "spanishFontType":1,
+ "neutralSpanishText":"AI want U",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"AI want U",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_iwantu",
+ "englishUsText":"AI want U",
+ "englishUsFontType":1,
+ "frenchText":"AI want U",
+ "frenchFontType":1,
+ "italianText":"AI want U",
+ "italianFontType":1,
+ "germanText":"AI want U",
+ "germanFontType":1,
+ "spanishText":"AI want U",
+ "spanishFontType":1,
+ "neutralSpanishText":"AI want U",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"AI want U",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_iwantu",
+ "englishUsText":"哀 want U",
+ "englishUsFontType":0,
+ "frenchText":"哀 want U",
+ "frenchFontType":0,
+ "italianText":"哀 want U",
+ "italianFontType":0,
+ "germanText":"哀 want U",
+ "germanFontType":0,
+ "spanishText":"哀 want U",
+ "spanishFontType":0,
+ "neutralSpanishText":"哀 want U",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"哀 want U",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_iwantu",
+ "englishUsText":"Chiharu Kaneko",
+ "englishUsFontType":1,
+ "frenchText":"Chiharu Kaneko",
+ "frenchFontType":1,
+ "italianText":"Chiharu Kaneko",
+ "italianFontType":1,
+ "germanText":"Chiharu Kaneko",
+ "germanFontType":1,
+ "spanishText":"Chiharu Kaneko",
+ "spanishFontType":1,
+ "neutralSpanishText":"Chiharu Kaneko",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Chiharu Kaneko",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_iswaze",
+ "englishUsText":"ISHIKI NO WA/ZE",
+ "englishUsFontType":1,
+ "frenchText":"ISHIKI NO WA/ZE",
+ "frenchFontType":1,
+ "italianText":"ISHIKI NO WA/ZE",
+ "italianFontType":1,
+ "germanText":"ISHIKI NO WA/ZE",
+ "germanFontType":1,
+ "spanishText":"ISHIKI NO WA/ZE",
+ "spanishFontType":1,
+ "neutralSpanishText":"ISHIKI NO WA/ZE",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ISHIKI NO WA/ZE",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_iswaze",
+ "englishUsText":"ISHIKI NO WA/ZE",
+ "englishUsFontType":1,
+ "frenchText":"ISHIKI NO WA/ZE",
+ "frenchFontType":1,
+ "italianText":"ISHIKI NO WA/ZE",
+ "italianFontType":1,
+ "germanText":"ISHIKI NO WA/ZE",
+ "germanFontType":1,
+ "spanishText":"ISHIKI NO WA/ZE",
+ "spanishFontType":1,
+ "neutralSpanishText":"ISHIKI NO WA/ZE",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ISHIKI NO WA/ZE",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_iswaze",
+ "englishUsText":"ISHIKI NO WA/ZE",
+ "englishUsFontType":1,
+ "frenchText":"ISHIKI NO WA/ZE",
+ "frenchFontType":1,
+ "italianText":"ISHIKI NO WA/ZE",
+ "italianFontType":1,
+ "germanText":"ISHIKI NO WA/ZE",
+ "germanFontType":1,
+ "spanishText":"ISHIKI NO WA/ZE",
+ "spanishFontType":1,
+ "neutralSpanishText":"ISHIKI NO WA/ZE",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ISHIKI NO WA/ZE",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_iswaze",
+ "englishUsText":"意識のワーゼ",
+ "englishUsFontType":0,
+ "frenchText":"意識のワーゼ",
+ "frenchFontType":0,
+ "italianText":"意識のワーゼ",
+ "italianFontType":0,
+ "germanText":"意識のワーゼ",
+ "germanFontType":0,
+ "spanishText":"意識のワーゼ",
+ "spanishFontType":0,
+ "neutralSpanishText":"意識のワーゼ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"意識のワーゼ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_iswaze",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_toymat",
+ "englishUsText":"TOYMATIC☆PARADE!!",
+ "englishUsFontType":1,
+ "frenchText":"TOYMATIC☆PARADE!!",
+ "frenchFontType":1,
+ "italianText":"TOYMATIC☆PARADE!!",
+ "italianFontType":1,
+ "germanText":"TOYMATIC☆PARADE!!",
+ "germanFontType":1,
+ "spanishText":"TOYMATIC☆PARADE!!",
+ "spanishFontType":1,
+ "neutralSpanishText":"TOYMATIC☆PARADE!!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"TOYMATIC☆PARADE!!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_toymat",
+ "englishUsText":"TOYMATIC☆PARADE!!",
+ "englishUsFontType":1,
+ "frenchText":"TOYMATIC☆PARADE!!",
+ "frenchFontType":1,
+ "italianText":"TOYMATIC☆PARADE!!",
+ "italianFontType":1,
+ "germanText":"TOYMATIC☆PARADE!!",
+ "germanFontType":1,
+ "spanishText":"TOYMATIC☆PARADE!!",
+ "spanishFontType":1,
+ "neutralSpanishText":"TOYMATIC☆PARADE!!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"TOYMATIC☆PARADE!!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_toymat",
+ "englishUsText":"TOYMATIC☆PARADE!!",
+ "englishUsFontType":1,
+ "frenchText":"TOYMATIC☆PARADE!!",
+ "frenchFontType":1,
+ "italianText":"TOYMATIC☆PARADE!!",
+ "italianFontType":1,
+ "germanText":"TOYMATIC☆PARADE!!",
+ "germanFontType":1,
+ "spanishText":"TOYMATIC☆PARADE!!",
+ "spanishFontType":1,
+ "neutralSpanishText":"TOYMATIC☆PARADE!!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"TOYMATIC☆PARADE!!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_toymat",
+ "englishUsText":"トイマチック☆パレード!!",
+ "englishUsFontType":0,
+ "frenchText":"トイマチック☆パレード!!",
+ "frenchFontType":0,
+ "italianText":"トイマチック☆パレード!!",
+ "italianFontType":0,
+ "germanText":"トイマチック☆パレード!!",
+ "germanFontType":0,
+ "spanishText":"トイマチック☆パレード!!",
+ "spanishFontType":0,
+ "neutralSpanishText":"トイマチック☆パレード!!",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"トイマチック☆パレード!!",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_toymat",
+ "englishUsText":"DJ Genki",
+ "englishUsFontType":1,
+ "frenchText":"DJ Genki",
+ "frenchFontType":1,
+ "italianText":"DJ Genki",
+ "italianFontType":1,
+ "germanText":"DJ Genki",
+ "germanFontType":1,
+ "spanishText":"DJ Genki",
+ "spanishFontType":1,
+ "neutralSpanishText":"DJ Genki",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DJ Genki",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_spcsam",
+ "englishUsText":"uchusamurai",
+ "englishUsFontType":1,
+ "frenchText":"uchusamurai",
+ "frenchFontType":1,
+ "italianText":"uchusamurai",
+ "italianFontType":1,
+ "germanText":"uchusamurai",
+ "germanFontType":1,
+ "spanishText":"uchusamurai",
+ "spanishFontType":1,
+ "neutralSpanishText":"uchusamurai",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"uchusamurai",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_xjapa2",
+ "englishUsText":"silentjealousy",
+ "englishUsFontType":1,
+ "frenchText":"silentjealousy",
+ "frenchFontType":1,
+ "italianText":"silentjealousy",
+ "italianFontType":1,
+ "germanText":"silentjealousy",
+ "germanFontType":1,
+ "spanishText":"silentjealousy",
+ "spanishFontType":1,
+ "neutralSpanishText":"silentjealousy",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"silentjealousy",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_r4nak",
+ "englishUsText":"nakedglow",
+ "englishUsFontType":1,
+ "frenchText":"nakedglow",
+ "frenchFontType":1,
+ "italianText":"nakedglow",
+ "italianFontType":1,
+ "germanText":"nakedglow",
+ "germanFontType":1,
+ "spanishText":"nakedglow",
+ "spanishFontType":1,
+ "neutralSpanishText":"nakedglow",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"nakedglow",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_struin",
+ "englishUsText":"sacredruin",
+ "englishUsFontType":1,
+ "frenchText":"sacredruin",
+ "frenchFontType":1,
+ "italianText":"sacredruin",
+ "italianFontType":1,
+ "germanText":"sacredruin",
+ "germanFontType":1,
+ "spanishText":"sacredruin",
+ "spanishFontType":1,
+ "neutralSpanishText":"sacredruin",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"sacredruin",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_iwantu",
+ "englishUsText":"aiwantu",
+ "englishUsFontType":1,
+ "frenchText":"aiwantu",
+ "frenchFontType":1,
+ "italianText":"aiwantu",
+ "italianFontType":1,
+ "germanText":"aiwantu",
+ "germanFontType":1,
+ "spanishText":"aiwantu",
+ "spanishFontType":1,
+ "neutralSpanishText":"aiwantu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"aiwantu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_iswaze",
+ "englishUsText":"ishikinowa/ze",
+ "englishUsFontType":1,
+ "frenchText":"ishikinowa/ze",
+ "frenchFontType":1,
+ "italianText":"ishikinowa/ze",
+ "italianFontType":1,
+ "germanText":"ishikinowa/ze",
+ "germanFontType":1,
+ "spanishText":"ishikinowa/ze",
+ "spanishFontType":1,
+ "neutralSpanishText":"ishikinowa/ze",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ishikinowa/ze",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_toymat",
+ "englishUsText":"toymatic☆parade!!",
+ "englishUsFontType":1,
+ "frenchText":"toymatic☆parade!!",
+ "frenchFontType":1,
+ "italianText":"toymatic☆parade!!",
+ "italianFontType":1,
+ "germanText":"toymatic☆parade!!",
+ "germanFontType":1,
+ "spanishText":"toymatic☆parade!!",
+ "spanishFontType":1,
+ "neutralSpanishText":"toymatic☆parade!!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"toymatic☆parade!!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_noshou",
+ "englishUsText":"I ♥ 「NOU SHOU SAKURETSU GIRL」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「NOU SHOU SAKURETSU GIRL」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「NOU SHOU SAKURETSU GIRL」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「NOU SHOU SAKURETSU GIRL」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「NOU SHOU SAKURETSU GIRL」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「NOU SHOU SAKURETSU GIRL」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「NOU SHOU SAKURETSU GIRL」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_ac7roc",
+ "englishUsText":"I ♥ 「Roca Roja」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Roca Roja」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Roca Roja」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Roca Roja」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Roca Roja」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Roca Roja」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Roca Roja」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_ikaika",
+ "englishUsText":"I ♥ 「Ikanaide Ikaros」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Ikanaide Ikaros」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Ikanaide Ikaros」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Ikanaide Ikaros」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Ikanaide Ikaros」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Ikanaide Ikaros」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Ikanaide Ikaros」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_ds3bs2",
+ "englishUsText":"I ♥ 「Daidara 8551」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Daidara 8551」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Daidara 8551」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Daidara 8551」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Daidara 8551」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Daidara 8551」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Daidara 8551」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_last2k",
+ "englishUsText":"I ♥ 「JOUBUTSU 2000」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「JOUBUTSU 2000」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「JOUBUTSU 2000」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「JOUBUTSU 2000」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「JOUBUTSU 2000」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「JOUBUTSU 2000」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「JOUBUTSU 2000」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_noshou",
+ "englishUsText":"I ♥ 「NOU SHOU SAKURETSU GIRL」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「NOU SHOU SAKURETSU GIRL」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「NOU SHOU SAKURETSU GIRL」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「NOU SHOU SAKURETSU GIRL」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「NOU SHOU SAKURETSU GIRL」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「NOU SHOU SAKURETSU GIRL」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「NOU SHOU SAKURETSU GIRL」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_ac7roc",
+ "englishUsText":"I ♥ 「Roca Roja」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Roca Roja」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Roca Roja」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Roca Roja」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Roca Roja」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Roca Roja」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Roca Roja」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_ikaika",
+ "englishUsText":"I ♥ 「Ikanaide Ikaros」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Ikanaide Ikaros」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Ikanaide Ikaros」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Ikanaide Ikaros」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Ikanaide Ikaros」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Ikanaide Ikaros」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Ikanaide Ikaros」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_ds3bs2",
+ "englishUsText":"I ♥ 「Daidara 8551」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Daidara 8551」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Daidara 8551」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Daidara 8551」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Daidara 8551」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Daidara 8551」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Daidara 8551」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_last2k",
+ "englishUsText":"I ♥ 「JOUBUTSU 2000」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「JOUBUTSU 2000」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「JOUBUTSU 2000」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「JOUBUTSU 2000」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「JOUBUTSU 2000」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「JOUBUTSU 2000」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「JOUBUTSU 2000」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_noshou",
+ "englishUsText":"NOU SHOU SAKURETSU GIRL",
+ "englishUsFontType":1,
+ "frenchText":"NOU SHOU SAKURETSU GIRL",
+ "frenchFontType":1,
+ "italianText":"NOU SHOU SAKURETSU GIRL",
+ "italianFontType":1,
+ "germanText":"NOU SHOU SAKURETSU GIRL",
+ "germanFontType":1,
+ "spanishText":"NOU SHOU SAKURETSU GIRL",
+ "spanishFontType":1,
+ "neutralSpanishText":"NOU SHOU SAKURETSU GIRL",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"NOU SHOU SAKURETSU GIRL",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_noshou",
+ "englishUsText":"NOU SHOU SAKURETSU GIRL",
+ "englishUsFontType":1,
+ "frenchText":"NOU SHOU SAKURETSU GIRL",
+ "frenchFontType":1,
+ "italianText":"NOU SHOU SAKURETSU GIRL",
+ "italianFontType":1,
+ "germanText":"NOU SHOU SAKURETSU GIRL",
+ "germanFontType":1,
+ "spanishText":"NOU SHOU SAKURETSU GIRL",
+ "spanishFontType":1,
+ "neutralSpanishText":"NOU SHOU SAKURETSU GIRL",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"NOU SHOU SAKURETSU GIRL",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_noshou",
+ "englishUsText":"NOU SHOU SAKURETSU GIRL",
+ "englishUsFontType":1,
+ "frenchText":"NOU SHOU SAKURETSU GIRL",
+ "frenchFontType":1,
+ "italianText":"NOU SHOU SAKURETSU GIRL",
+ "italianFontType":1,
+ "germanText":"NOU SHOU SAKURETSU GIRL",
+ "germanFontType":1,
+ "spanishText":"NOU SHOU SAKURETSU GIRL",
+ "spanishFontType":1,
+ "neutralSpanishText":"NOU SHOU SAKURETSU GIRL",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"NOU SHOU SAKURETSU GIRL",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_noshou",
+ "englishUsText":"脳漿炸裂ガール",
+ "englishUsFontType":0,
+ "frenchText":"脳漿炸裂ガール",
+ "frenchFontType":0,
+ "italianText":"脳漿炸裂ガール",
+ "italianFontType":0,
+ "germanText":"脳漿炸裂ガール",
+ "germanFontType":0,
+ "spanishText":"脳漿炸裂ガール",
+ "spanishFontType":0,
+ "neutralSpanishText":"脳漿炸裂ガール",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"脳漿炸裂ガール",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_noshou",
+ "englishUsText":"rerulili",
+ "englishUsFontType":1,
+ "frenchText":"rerulili",
+ "frenchFontType":1,
+ "italianText":"rerulili",
+ "italianFontType":1,
+ "germanText":"rerulili",
+ "germanFontType":1,
+ "spanishText":"rerulili",
+ "spanishFontType":1,
+ "neutralSpanishText":"rerulili",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"rerulili",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_ac7roc",
+ "englishUsText":"Roca Roja",
+ "englishUsFontType":1,
+ "frenchText":"Roca Roja",
+ "frenchFontType":1,
+ "italianText":"Roca Roja",
+ "italianFontType":1,
+ "germanText":"Roca Roja",
+ "germanFontType":1,
+ "spanishText":"Roca Roja",
+ "spanishFontType":1,
+ "neutralSpanishText":"Roca Roja",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Roca Roja",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_ac7roc",
+ "englishUsText":"Roca Roja",
+ "englishUsFontType":1,
+ "frenchText":"Roca Roja",
+ "frenchFontType":1,
+ "italianText":"Roca Roja",
+ "italianFontType":1,
+ "germanText":"Roca Roja",
+ "germanFontType":1,
+ "spanishText":"Roca Roja",
+ "spanishFontType":1,
+ "neutralSpanishText":"Roca Roja",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Roca Roja",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_ac7roc",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_ac7roc",
+ "englishUsText":"Roca Roja",
+ "englishUsFontType":0,
+ "frenchText":"Roca Roja",
+ "frenchFontType":0,
+ "italianText":"Roca Roja",
+ "italianFontType":0,
+ "germanText":"Roca Roja",
+ "germanFontType":0,
+ "spanishText":"Roca Roja",
+ "spanishFontType":0,
+ "neutralSpanishText":"Roca Roja",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Roca Roja",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_ac7roc",
+ "englishUsText":"From \" ACE COMBAT 7: SKIES UNKNOWN \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" ACE COMBAT 7: SKIES UNKNOWN \"",
+ "frenchFontType":1,
+ "italianText":"Da \" ACE COMBAT 7: SKIES UNKNOWN \"",
+ "italianFontType":1,
+ "germanText":"Aus \" ACE COMBAT 7: SKIES UNKNOWN \"",
+ "germanFontType":1,
+ "spanishText":"De \" ACE COMBAT 7: SKIES UNKNOWN \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" ACE COMBAT 7: SKIES UNKNOWN \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" ACE COMBAT 7: SKIES UNKNOWN \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_ikaika",
+ "englishUsText":"Ikanaide Ikaros",
+ "englishUsFontType":1,
+ "frenchText":"Ikanaide Ikaros",
+ "frenchFontType":1,
+ "italianText":"Ikanaide Ikaros",
+ "italianFontType":1,
+ "germanText":"Ikanaide Ikaros",
+ "germanFontType":1,
+ "spanishText":"Ikanaide Ikaros",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ikanaide Ikaros",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ikanaide Ikaros",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_ikaika",
+ "englishUsText":"Ikanaide Ikaros",
+ "englishUsFontType":1,
+ "frenchText":"Ikanaide Ikaros",
+ "frenchFontType":1,
+ "italianText":"Ikanaide Ikaros",
+ "italianFontType":1,
+ "germanText":"Ikanaide Ikaros",
+ "germanFontType":1,
+ "spanishText":"Ikanaide Ikaros",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ikanaide Ikaros",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ikanaide Ikaros",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_ikaika",
+ "englishUsText":"Ikanaide Ikaros",
+ "englishUsFontType":1,
+ "frenchText":"Ikanaide Ikaros",
+ "frenchFontType":1,
+ "italianText":"Ikanaide Ikaros",
+ "italianFontType":1,
+ "germanText":"Ikanaide Ikaros",
+ "germanFontType":1,
+ "spanishText":"Ikanaide Ikaros",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ikanaide Ikaros",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ikanaide Ikaros",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_ikaika",
+ "englishUsText":"行かないでイカロス",
+ "englishUsFontType":0,
+ "frenchText":"行かないでイカロス",
+ "frenchFontType":0,
+ "italianText":"行かないでイカロス",
+ "italianFontType":0,
+ "germanText":"行かないでイカロス",
+ "germanFontType":0,
+ "spanishText":"行かないでイカロス",
+ "spanishFontType":0,
+ "neutralSpanishText":"行かないでイカロス",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"行かないでイカロス",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_ikaika",
+ "englishUsText":"AJURIKA",
+ "englishUsFontType":1,
+ "frenchText":"AJURIKA",
+ "frenchFontType":1,
+ "italianText":"AJURIKA",
+ "italianFontType":1,
+ "germanText":"AJURIKA",
+ "germanFontType":1,
+ "spanishText":"AJURIKA",
+ "spanishFontType":1,
+ "neutralSpanishText":"AJURIKA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"AJURIKA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_ds3bs2",
+ "englishUsText":"Daidara 8551",
+ "englishUsFontType":1,
+ "frenchText":"Daidara 8551",
+ "frenchFontType":1,
+ "italianText":"Daidara 8551",
+ "italianFontType":1,
+ "germanText":"Daidara 8551",
+ "germanFontType":1,
+ "spanishText":"Daidara 8551",
+ "spanishFontType":1,
+ "neutralSpanishText":"Daidara 8551",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Daidara 8551",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_ds3bs2",
+ "englishUsText":"Daidara 8551",
+ "englishUsFontType":1,
+ "frenchText":"Daidara 8551",
+ "frenchFontType":1,
+ "italianText":"Daidara 8551",
+ "italianFontType":1,
+ "germanText":"Daidara 8551",
+ "germanFontType":1,
+ "spanishText":"Daidara 8551",
+ "spanishFontType":1,
+ "neutralSpanishText":"Daidara 8551",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Daidara 8551",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_ds3bs2",
+ "englishUsText":"Daidara 8551",
+ "englishUsFontType":1,
+ "frenchText":"Daidara 8551",
+ "frenchFontType":1,
+ "italianText":"Daidara 8551",
+ "italianFontType":1,
+ "germanText":"Daidara 8551",
+ "germanFontType":1,
+ "spanishText":"Daidara 8551",
+ "spanishFontType":1,
+ "neutralSpanishText":"Daidara 8551",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Daidara 8551",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_ds3bs2",
+ "englishUsText":"大多羅捌伍伍壱",
+ "englishUsFontType":0,
+ "frenchText":"大多羅捌伍伍壱",
+ "frenchFontType":0,
+ "italianText":"大多羅捌伍伍壱",
+ "italianFontType":0,
+ "germanText":"大多羅捌伍伍壱",
+ "germanFontType":0,
+ "spanishText":"大多羅捌伍伍壱",
+ "spanishFontType":0,
+ "neutralSpanishText":"大多羅捌伍伍壱",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"大多羅捌伍伍壱",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_ds3bs2",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_last2k",
+ "englishUsText":"JOUBUTSU 2000",
+ "englishUsFontType":1,
+ "frenchText":"JOUBUTSU 2000",
+ "frenchFontType":1,
+ "italianText":"JOUBUTSU 2000",
+ "italianFontType":1,
+ "germanText":"JOUBUTSU 2000",
+ "germanFontType":1,
+ "spanishText":"JOUBUTSU 2000",
+ "spanishFontType":1,
+ "neutralSpanishText":"JOUBUTSU 2000",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"JOUBUTSU 2000",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_last2k",
+ "englishUsText":"JOUBUTSU 2000",
+ "englishUsFontType":1,
+ "frenchText":"JOUBUTSU 2000",
+ "frenchFontType":1,
+ "italianText":"JOUBUTSU 2000",
+ "italianFontType":1,
+ "germanText":"JOUBUTSU 2000",
+ "germanFontType":1,
+ "spanishText":"JOUBUTSU 2000",
+ "spanishFontType":1,
+ "neutralSpanishText":"JOUBUTSU 2000",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"JOUBUTSU 2000",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_last2k",
+ "englishUsText":"JOUBUTSU 2000",
+ "englishUsFontType":1,
+ "frenchText":"JOUBUTSU 2000",
+ "frenchFontType":1,
+ "italianText":"JOUBUTSU 2000",
+ "italianFontType":1,
+ "germanText":"JOUBUTSU 2000",
+ "germanFontType":1,
+ "spanishText":"JOUBUTSU 2000",
+ "spanishFontType":1,
+ "neutralSpanishText":"JOUBUTSU 2000",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"JOUBUTSU 2000",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_last2k",
+ "englishUsText":"万戈イム-一ノ十",
+ "englishUsFontType":0,
+ "frenchText":"万戈イム-一ノ十",
+ "frenchFontType":0,
+ "italianText":"万戈イム-一ノ十",
+ "italianFontType":0,
+ "germanText":"万戈イム-一ノ十",
+ "germanFontType":0,
+ "spanishText":"万戈イム-一ノ十",
+ "spanishFontType":0,
+ "neutralSpanishText":"万戈イム-一ノ十",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"万戈イム-一ノ十",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_last2k",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_noshou",
+ "englishUsText":"noushousakuretsugirl",
+ "englishUsFontType":1,
+ "frenchText":"noushousakuretsugirl",
+ "frenchFontType":1,
+ "italianText":"noushousakuretsugirl",
+ "italianFontType":1,
+ "germanText":"noushousakuretsugirl",
+ "germanFontType":1,
+ "spanishText":"noushousakuretsugirl",
+ "spanishFontType":1,
+ "neutralSpanishText":"noushousakuretsugirl",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"noushousakuretsugirl",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_ac7roc",
+ "englishUsText":"rocaroja",
+ "englishUsFontType":1,
+ "frenchText":"rocaroja",
+ "frenchFontType":1,
+ "italianText":"rocaroja",
+ "italianFontType":1,
+ "germanText":"rocaroja",
+ "germanFontType":1,
+ "spanishText":"rocaroja",
+ "spanishFontType":1,
+ "neutralSpanishText":"rocaroja",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"rocaroja",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_ikaika",
+ "englishUsText":"ikanaideikaros",
+ "englishUsFontType":1,
+ "frenchText":"ikanaideikaros",
+ "frenchFontType":1,
+ "italianText":"ikanaideikaros",
+ "italianFontType":1,
+ "germanText":"ikanaideikaros",
+ "germanFontType":1,
+ "spanishText":"ikanaideikaros",
+ "spanishFontType":1,
+ "neutralSpanishText":"ikanaideikaros",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ikanaideikaros",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_ds3bs2",
+ "englishUsText":"daidara8551",
+ "englishUsFontType":1,
+ "frenchText":"daidara8551",
+ "frenchFontType":1,
+ "italianText":"daidara8551",
+ "italianFontType":1,
+ "germanText":"daidara8551",
+ "germanFontType":1,
+ "spanishText":"daidara8551",
+ "spanishFontType":1,
+ "neutralSpanishText":"daidara8551",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"daidara8551",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_last2k",
+ "englishUsText":"joubutsu2000",
+ "englishUsFontType":1,
+ "frenchText":"joubutsu2000",
+ "frenchFontType":1,
+ "italianText":"joubutsu2000",
+ "italianFontType":1,
+ "germanText":"joubutsu2000",
+ "germanFontType":1,
+ "spanishText":"joubutsu2000",
+ "spanishFontType":1,
+ "neutralSpanishText":"joubutsu2000",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"joubutsu2000",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_natsumono",
+ "englishUsText":"C'mon, sun's out, drums out!",
+ "englishUsFontType":1,
+ "frenchText":"Du soleil et de la batterie !",
+ "frenchFontType":1,
+ "italianText":"Un'estate tambureggiante",
+ "italianFontType":1,
+ "germanText":"Sonnenschein, Trommelein!",
+ "germanFontType":1,
+ "spanishText":"¡El verano ya está aquí!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Vamos! Sale el sol, saca tus tambores.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Bora, sol brilhando, baqueta na mão!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_natsumono",
+ "englishUsText":"Began NATSUMONO☆ Fest",
+ "englishUsFontType":1,
+ "frenchText":"Fest. NATSUMONO☆ débuté",
+ "frenchFontType":1,
+ "italianText":"Fest. NATSUMONO☆ avviato",
+ "italianFontType":1,
+ "germanText":"NATSUMONO☆-Fest begonnen",
+ "germanFontType":1,
+ "spanishText":"Inicio fest. NATSUMONO☆",
+ "spanishFontType":1,
+ "neutralSpanishText":"Comenzó el Festival NATSUMONO☆",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Festival de NATSUMONO☆ Começou",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_natsumonoex",
+ "englishUsText":"NATSUMONO☆ Fest Master",
+ "englishUsFontType":1,
+ "frenchText":"Maître du fest. NATSUMONO☆",
+ "frenchFontType":1,
+ "italianText":"Maestro fest. NATSUMONO☆",
+ "italianFontType":1,
+ "germanText":"NATSUMONO☆-Fest-Meister",
+ "germanFontType":1,
+ "spanishText":"Maestro fest. NATSUMONO☆",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro de el Festival NATSUMONO☆",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre do Festival de NATSUMONO☆",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_suika",
+ "englishUsText":"Watermelon",
+ "englishUsFontType":1,
+ "frenchText":"Pastèque",
+ "frenchFontType":1,
+ "italianText":"Anguria",
+ "italianFontType":1,
+ "germanText":"Wassermelone",
+ "germanFontType":1,
+ "spanishText":"Sandía",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sandía",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Melancia",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_himawari",
+ "englishUsText":"Sunflower",
+ "englishUsFontType":1,
+ "frenchText":"Tournesol",
+ "frenchFontType":1,
+ "italianText":"Girasole",
+ "italianFontType":1,
+ "germanText":"Sonnenblume",
+ "germanFontType":1,
+ "spanishText":"Girasol",
+ "spanishFontType":1,
+ "neutralSpanishText":"Girasol",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Girassol",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_vacation",
+ "englishUsText":"Vacation",
+ "englishUsFontType":1,
+ "frenchText":"Vacances",
+ "frenchFontType":1,
+ "italianText":"Vacanza",
+ "italianFontType":1,
+ "germanText":"Urlaub",
+ "germanFontType":1,
+ "spanishText":"Vacaciones",
+ "spanishFontType":1,
+ "neutralSpanishText":"Vacación",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Férias",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_summerVacation",
+ "englishUsText":"Summer Holidays",
+ "englishUsFontType":1,
+ "frenchText":"Vacances d'été",
+ "frenchFontType":1,
+ "italianText":"Vacanze estive",
+ "italianFontType":1,
+ "germanText":"Sommerferien",
+ "germanFontType":1,
+ "spanishText":"Vacaciones de verano",
+ "spanishFontType":1,
+ "neutralSpanishText":"Vacaciones de verano",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Férias de Verão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_natsumono",
+ "englishUsText":"NATSUMONO☆ Fest",
+ "englishUsFontType":1,
+ "frenchText":"Fest. NATSUMONO☆",
+ "frenchFontType":1,
+ "italianText":"NATSUMONO☆ fest.",
+ "italianFontType":1,
+ "germanText":"NATSUMONO☆-Fest",
+ "germanFontType":1,
+ "spanishText":"Fest. NATSUMONO☆",
+ "spanishFontType":1,
+ "neutralSpanishText":"Festival NATSUMONO☆",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Festival de NATSUMONO☆",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_72mono",
+ "englishUsText":"I ♥ 「NATSUMONO☆」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「NATSUMONO☆」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「NATSUMONO☆」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「NATSUMONO☆」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「NATSUMONO☆」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「NATSUMONO☆」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「NATSUMONO☆」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_clscpr",
+ "englishUsText":"I ♥ 「Le Tombeau de Couperin」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Le Tombeau de Couperin」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Le Tombeau de Couperin」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Le Tombeau de Couperin」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Le Tombeau de Couperin」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Le Tombeau de Couperin」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Le Tombeau de Couperin」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_wblade",
+ "englishUsText":"I ♥ 「Rising」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Rising」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Rising」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Rising」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Rising」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Rising」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Rising」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_behemo",
+ "englishUsText":"I ♥ 「Behemoth」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Behemoth」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Behemoth」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Behemoth」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Behemoth」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Behemoth」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Behemoth」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_kuraim",
+ "englishUsText":"I ♥ 「Climb! Mt.Parfait」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Climb! Mt.Parfait」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Climb! Mt.Parfait」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Climb! Mt.Parfait」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Climb! Mt.Parfait」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Climb! Mt.Parfait」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Climb! Mt.Parfait」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_carniv",
+ "englishUsText":"I ♥ 「The Carnivorous Carnival」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「The Carnivorous Carnival」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「The Carnivorous Carnival」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「The Carnivorous Carnival」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「The Carnivorous Carnival」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「The Carnivorous Carnival」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「The Carnivorous Carnival」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_72mono",
+ "englishUsText":"I ♥ 「NATSUMONO☆」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「NATSUMONO☆」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「NATSUMONO☆」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「NATSUMONO☆」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「NATSUMONO☆」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「NATSUMONO☆」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「NATSUMONO☆」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_clscpr",
+ "englishUsText":"I ♥ 「Le Tombeau de Couperin」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Le Tombeau de Couperin」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Le Tombeau de Couperin」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Le Tombeau de Couperin」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Le Tombeau de Couperin」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Le Tombeau de Couperin」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Le Tombeau de Couperin」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_wblade",
+ "englishUsText":"I ♥ 「Rising」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Rising」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Rising」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Rising」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Rising」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Rising」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Rising」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_behemo",
+ "englishUsText":"I ♥ 「Behemoth」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Behemoth」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Behemoth」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Behemoth」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Behemoth」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Behemoth」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Behemoth」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_kuraim",
+ "englishUsText":"I ♥ 「Climb! Mt.Parfait」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Climb! Mt.Parfait」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Climb! Mt.Parfait」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Climb! Mt.Parfait」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Climb! Mt.Parfait」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Climb! Mt.Parfait」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Climb! Mt.Parfait」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_carniv",
+ "englishUsText":"I ♥ 「The Carnivorous Carnival」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「The Carnivorous Carnival」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「The Carnivorous Carnival」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「The Carnivorous Carnival」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「The Carnivorous Carnival」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「The Carnivorous Carnival」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「The Carnivorous Carnival」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_72mono",
+ "englishUsText":"NATSUMONO☆",
+ "englishUsFontType":1,
+ "frenchText":"NATSUMONO☆",
+ "frenchFontType":1,
+ "italianText":"NATSUMONO☆",
+ "italianFontType":1,
+ "germanText":"NATSUMONO☆",
+ "germanFontType":1,
+ "spanishText":"NATSUMONO☆",
+ "spanishFontType":1,
+ "neutralSpanishText":"NATSUMONO☆",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"NATSUMONO☆",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_72mono",
+ "englishUsText":"NATSUMONO☆",
+ "englishUsFontType":1,
+ "frenchText":"NATSUMONO☆",
+ "frenchFontType":1,
+ "italianText":"NATSUMONO☆",
+ "italianFontType":1,
+ "germanText":"NATSUMONO☆",
+ "germanFontType":1,
+ "spanishText":"NATSUMONO☆",
+ "spanishFontType":1,
+ "neutralSpanishText":"NATSUMONO☆",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"NATSUMONO☆",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_72mono",
+ "englishUsText":"NATSUMONO☆",
+ "englishUsFontType":1,
+ "frenchText":"NATSUMONO☆",
+ "frenchFontType":1,
+ "italianText":"NATSUMONO☆",
+ "italianFontType":1,
+ "germanText":"NATSUMONO☆",
+ "germanFontType":1,
+ "spanishText":"NATSUMONO☆",
+ "spanishFontType":1,
+ "neutralSpanishText":"NATSUMONO☆",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"NATSUMONO☆",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_72mono",
+ "englishUsText":"ナツモノ☆",
+ "englishUsFontType":0,
+ "frenchText":"ナツモノ☆",
+ "frenchFontType":0,
+ "italianText":"ナツモノ☆",
+ "italianFontType":0,
+ "germanText":"ナツモノ☆",
+ "germanFontType":0,
+ "spanishText":"ナツモノ☆",
+ "spanishFontType":0,
+ "neutralSpanishText":"ナツモノ☆",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ナツモノ☆",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_72mono",
+ "englishUsText":"tanqun democracy",
+ "englishUsFontType":1,
+ "frenchText":"tanqun democracy",
+ "frenchFontType":1,
+ "italianText":"tanqun democracy",
+ "italianFontType":1,
+ "germanText":"tanqun democracy",
+ "germanFontType":1,
+ "spanishText":"tanqun democracy",
+ "spanishFontType":1,
+ "neutralSpanishText":"tanqun democracy",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"tanqun democracy",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_clscpr",
+ "englishUsText":"Le Tombeau de Couperin",
+ "englishUsFontType":1,
+ "frenchText":"Le Tombeau de Couperin",
+ "frenchFontType":1,
+ "italianText":"Le Tombeau de Couperin",
+ "italianFontType":1,
+ "germanText":"Le Tombeau de Couperin",
+ "germanFontType":1,
+ "spanishText":"Le Tombeau de Couperin",
+ "spanishFontType":1,
+ "neutralSpanishText":"Le Tombeau de Couperin",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Le Tombeau de Couperin",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_clscpr",
+ "englishUsText":"Le Tombeau de Couperin",
+ "englishUsFontType":1,
+ "frenchText":"Le Tombeau de Couperin",
+ "frenchFontType":1,
+ "italianText":"Le Tombeau de Couperin",
+ "italianFontType":1,
+ "germanText":"Le Tombeau de Couperin",
+ "germanFontType":1,
+ "spanishText":"Le Tombeau de Couperin",
+ "spanishFontType":1,
+ "neutralSpanishText":"Le Tombeau de Couperin",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Le Tombeau de Couperin",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_clscpr",
+ "englishUsText":"Le Tombeau de Couperin",
+ "englishUsFontType":1,
+ "frenchText":"Le Tombeau de Couperin",
+ "frenchFontType":1,
+ "italianText":"Le Tombeau de Couperin",
+ "italianFontType":1,
+ "germanText":"Le Tombeau de Couperin",
+ "germanFontType":1,
+ "spanishText":"Le Tombeau de Couperin",
+ "spanishFontType":1,
+ "neutralSpanishText":"Le Tombeau de Couperin",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Le Tombeau de Couperin",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_clscpr",
+ "englishUsText":"クープランの墓",
+ "englishUsFontType":0,
+ "frenchText":"クープランの墓",
+ "frenchFontType":0,
+ "italianText":"クープランの墓",
+ "italianFontType":0,
+ "germanText":"クープランの墓",
+ "germanFontType":0,
+ "spanishText":"クープランの墓",
+ "spanishFontType":0,
+ "neutralSpanishText":"クープランの墓",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"クープランの墓",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_clscpr",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_wblade",
+ "englishUsText":"Rising",
+ "englishUsFontType":1,
+ "frenchText":"Rising",
+ "frenchFontType":1,
+ "italianText":"Rising",
+ "italianFontType":1,
+ "germanText":"Rising",
+ "germanFontType":1,
+ "spanishText":"Rising",
+ "spanishFontType":1,
+ "neutralSpanishText":"Rising",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Rising",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_wblade",
+ "englishUsText":"Rising",
+ "englishUsFontType":1,
+ "frenchText":"Rising",
+ "frenchFontType":1,
+ "italianText":"Rising",
+ "italianFontType":1,
+ "germanText":"Rising",
+ "germanFontType":1,
+ "spanishText":"Rising",
+ "spanishFontType":1,
+ "neutralSpanishText":"Rising",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Rising",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_wblade",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_wblade",
+ "englishUsText":"Rising",
+ "englishUsFontType":0,
+ "frenchText":"Rising",
+ "frenchFontType":0,
+ "italianText":"Rising",
+ "italianFontType":0,
+ "germanText":"Rising",
+ "germanFontType":0,
+ "spanishText":"Rising",
+ "spanishFontType":0,
+ "neutralSpanishText":"Rising",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Rising",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_wblade",
+ "englishUsText":"From \" Warrior Blade \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" Warrior Blade \"",
+ "frenchFontType":1,
+ "italianText":"Da \" Warrior Blade \"",
+ "italianFontType":1,
+ "germanText":"Aus \" Warrior Blade \"",
+ "germanFontType":1,
+ "spanishText":"De \" Warrior Blade \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" Warrior Blade \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" Warrior Blade \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_behemo",
+ "englishUsText":"Behemoth",
+ "englishUsFontType":1,
+ "frenchText":"Behemoth",
+ "frenchFontType":1,
+ "italianText":"Behemoth",
+ "italianFontType":1,
+ "germanText":"Behemoth",
+ "germanFontType":1,
+ "spanishText":"Behemoth",
+ "spanishFontType":1,
+ "neutralSpanishText":"Behemoth",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Behemoth",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_behemo",
+ "englishUsText":"Behemoth",
+ "englishUsFontType":1,
+ "frenchText":"Behemoth",
+ "frenchFontType":1,
+ "italianText":"Behemoth",
+ "italianFontType":1,
+ "germanText":"Behemoth",
+ "germanFontType":1,
+ "spanishText":"Behemoth",
+ "spanishFontType":1,
+ "neutralSpanishText":"Behemoth",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Behemoth",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_behemo",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_behemo",
+ "englishUsText":"Behemoth",
+ "englishUsFontType":0,
+ "frenchText":"Behemoth",
+ "frenchFontType":0,
+ "italianText":"Behemoth",
+ "italianFontType":0,
+ "germanText":"Behemoth",
+ "germanFontType":0,
+ "spanishText":"Behemoth",
+ "spanishFontType":0,
+ "neutralSpanishText":"Behemoth",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Behemoth",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_behemo",
+ "englishUsText":"DJ Myosuke",
+ "englishUsFontType":1,
+ "frenchText":"DJ Myosuke",
+ "frenchFontType":1,
+ "italianText":"DJ Myosuke",
+ "italianFontType":1,
+ "germanText":"DJ Myosuke",
+ "germanFontType":1,
+ "spanishText":"DJ Myosuke",
+ "spanishFontType":1,
+ "neutralSpanishText":"DJ Myosuke",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DJ Myosuke",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_kuraim",
+ "englishUsText":"Climb! Mt.Parfait",
+ "englishUsFontType":1,
+ "frenchText":"Climb! Mt.Parfait",
+ "frenchFontType":1,
+ "italianText":"Climb! Mt.Parfait",
+ "italianFontType":1,
+ "germanText":"Climb! Mt.Parfait",
+ "germanFontType":1,
+ "spanishText":"Climb! Mt.Parfait",
+ "spanishFontType":1,
+ "neutralSpanishText":"Climb! Mt.Parfait",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Climb! Mt.Parfait",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_kuraim",
+ "englishUsText":"Climb! Mt.Parfait",
+ "englishUsFontType":1,
+ "frenchText":"Climb! Mt.Parfait",
+ "frenchFontType":1,
+ "italianText":"Climb! Mt.Parfait",
+ "italianFontType":1,
+ "germanText":"Climb! Mt.Parfait",
+ "germanFontType":1,
+ "spanishText":"Climb! Mt.Parfait",
+ "spanishFontType":1,
+ "neutralSpanishText":"Climb! Mt.Parfait",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Climb! Mt.Parfait",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_kuraim",
+ "englishUsText":"Climb! Mt.Parfait",
+ "englishUsFontType":1,
+ "frenchText":"Climb! Mt.Parfait",
+ "frenchFontType":1,
+ "italianText":"Climb! Mt.Parfait",
+ "italianFontType":1,
+ "germanText":"Climb! Mt.Parfait",
+ "germanFontType":1,
+ "spanishText":"Climb! Mt.Parfait",
+ "spanishFontType":1,
+ "neutralSpanishText":"Climb! Mt.Parfait",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Climb! Mt.Parfait",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_kuraim",
+ "englishUsText":"食らいむ!まうんとぱふぇ",
+ "englishUsFontType":0,
+ "frenchText":"食らいむ!まうんとぱふぇ",
+ "frenchFontType":0,
+ "italianText":"食らいむ!まうんとぱふぇ",
+ "italianFontType":0,
+ "germanText":"食らいむ!まうんとぱふぇ",
+ "germanFontType":0,
+ "spanishText":"食らいむ!まうんとぱふぇ",
+ "spanishFontType":0,
+ "neutralSpanishText":"食らいむ!まうんとぱふぇ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"食らいむ!まうんとぱふぇ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_kuraim",
+ "englishUsText":"unatra",
+ "englishUsFontType":1,
+ "frenchText":"unatra",
+ "frenchFontType":1,
+ "italianText":"unatra",
+ "italianFontType":1,
+ "germanText":"unatra",
+ "germanFontType":1,
+ "spanishText":"unatra",
+ "spanishFontType":1,
+ "neutralSpanishText":"unatra",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"unatra",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_carniv",
+ "englishUsText":"The Carnivorous Carnival",
+ "englishUsFontType":1,
+ "frenchText":"The Carnivorous Carnival",
+ "frenchFontType":1,
+ "italianText":"The Carnivorous Carnival",
+ "italianFontType":1,
+ "germanText":"The Carnivorous Carnival",
+ "germanFontType":1,
+ "spanishText":"The Carnivorous Carnival",
+ "spanishFontType":1,
+ "neutralSpanishText":"The Carnivorous Carnival",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"The Carnivorous Carnival",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_carniv",
+ "englishUsText":"The Carnivorous Carnival",
+ "englishUsFontType":1,
+ "frenchText":"The Carnivorous Carnival",
+ "frenchFontType":1,
+ "italianText":"The Carnivorous Carnival",
+ "italianFontType":1,
+ "germanText":"The Carnivorous Carnival",
+ "germanFontType":1,
+ "spanishText":"The Carnivorous Carnival",
+ "spanishFontType":1,
+ "neutralSpanishText":"The Carnivorous Carnival",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"The Carnivorous Carnival",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_carniv",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_carniv",
+ "englishUsText":"The Carnivorous Carnival",
+ "englishUsFontType":0,
+ "frenchText":"The Carnivorous Carnival",
+ "frenchFontType":0,
+ "italianText":"The Carnivorous Carnival",
+ "italianFontType":0,
+ "germanText":"The Carnivorous Carnival",
+ "germanFontType":0,
+ "spanishText":"The Carnivorous Carnival",
+ "spanishFontType":0,
+ "neutralSpanishText":"The Carnivorous Carnival",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"The Carnivorous Carnival",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_carniv",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_72mono",
+ "englishUsText":"natsumono☆",
+ "englishUsFontType":1,
+ "frenchText":"natsumono☆",
+ "frenchFontType":1,
+ "italianText":"natsumono☆",
+ "italianFontType":1,
+ "germanText":"natsumono☆",
+ "germanFontType":1,
+ "spanishText":"natsumono☆",
+ "spanishFontType":1,
+ "neutralSpanishText":"natsumono☆",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"natsumono☆",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_clscpr",
+ "englishUsText":"letombeaudecouperin",
+ "englishUsFontType":1,
+ "frenchText":"letombeaudecouperin",
+ "frenchFontType":1,
+ "italianText":"letombeaudecouperin",
+ "italianFontType":1,
+ "germanText":"letombeaudecouperin",
+ "germanFontType":1,
+ "spanishText":"letombeaudecouperin",
+ "spanishFontType":1,
+ "neutralSpanishText":"letombeaudecouperin",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"letombeaudecouperin",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_wblade",
+ "englishUsText":"rising",
+ "englishUsFontType":1,
+ "frenchText":"rising",
+ "frenchFontType":1,
+ "italianText":"rising",
+ "italianFontType":1,
+ "germanText":"rising",
+ "germanFontType":1,
+ "spanishText":"rising",
+ "spanishFontType":1,
+ "neutralSpanishText":"rising",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"rising",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_behemo",
+ "englishUsText":"behemoth",
+ "englishUsFontType":1,
+ "frenchText":"behemoth",
+ "frenchFontType":1,
+ "italianText":"behemoth",
+ "italianFontType":1,
+ "germanText":"behemoth",
+ "germanFontType":1,
+ "spanishText":"behemoth",
+ "spanishFontType":1,
+ "neutralSpanishText":"behemoth",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"behemoth",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_kuraim",
+ "englishUsText":"climb!mt.parfait",
+ "englishUsFontType":1,
+ "frenchText":"climb!mt.parfait",
+ "frenchFontType":1,
+ "italianText":"climb!mt.parfait",
+ "italianFontType":1,
+ "germanText":"climb!mt.parfait",
+ "germanFontType":1,
+ "spanishText":"climb!mt.parfait",
+ "spanishFontType":1,
+ "neutralSpanishText":"climb!mt.parfait",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"climb!mt.parfait",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_carniv",
+ "englishUsText":"thecarnivorouscarnival",
+ "englishUsFontType":1,
+ "frenchText":"thecarnivorouscarnival",
+ "frenchFontType":1,
+ "italianText":"thecarnivorouscarnival",
+ "italianFontType":1,
+ "germanText":"thecarnivorouscarnival",
+ "germanFontType":1,
+ "spanishText":"thecarnivorouscarnival",
+ "spanishFontType":1,
+ "neutralSpanishText":"thecarnivorouscarnival",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"thecarnivorouscarnival",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_roki",
+ "englishUsText":"I ♥ 「ROKI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「ROKI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「ROKI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「ROKI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「ROKI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「ROKI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「ROKI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_im4spr",
+ "englishUsText":"I ♥ 「Spread the Wings!!」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Spread the Wings!!」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Spread the Wings!!」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Spread the Wings!!」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Spread the Wings!!」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Spread the Wings!!」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Spread the Wings!!」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_kimpla",
+ "englishUsText":"I ♥ 「KIMI NO Planet」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「KIMI NO Planet」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「KIMI NO Planet」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「KIMI NO Planet」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「KIMI NO Planet」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「KIMI NO Planet」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「KIMI NO Planet」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_w2bs2x",
+ "englishUsText":"I ♥ 「HIKARINOKANATAE」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HIKARINOKANATAE」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HIKARINOKANATAE」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HIKARINOKANATAE」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HIKARINOKANATAE」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HIKARINOKANATAE」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HIKARINOKANATAE」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_exw2b2",
+ "englishUsText":"I ♥ 「HIKARINOKANATAE -Long Ver.-」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HIKARINOKANATAE -Long Ver.-」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HIKARINOKANATAE -Long Ver.-」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HIKARINOKANATAE -Long Ver.-」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HIKARINOKANATAE -Long Ver.-」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HIKARINOKANATAE -Long Ver.-」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HIKARINOKANATAE -Long Ver.-」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_tkwata",
+ "englishUsText":"I ♥ 「142 TOKI NO WATARIDORI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「142 TOKI NO WATARIDORI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「142 TOKI NO WATARIDORI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「142 TOKI NO WATARIDORI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「142 TOKI NO WATARIDORI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「142 TOKI NO WATARIDORI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「142 TOKI NO WATARIDORI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_mrgold",
+ "englishUsText":"I ♥ 「Marigold」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Marigold」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Marigold」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Marigold」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Marigold」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Marigold」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Marigold」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_ainokt",
+ "englishUsText":"I ♥ 「Ainokatachi feat.HIDE(GReeeeN)」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Ainokatachi feat.HIDE(GReeeeN)」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Ainokatachi feat.HIDE(GReeeeN)」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Ainokatachi feat.HIDE(GReeeeN)」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Ainokatachi feat.HIDE(GReeeeN)」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Ainokatachi feat.HIDE(GReeeeN)」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Ainokatachi feat.HIDE(GReeeeN)」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_neverl",
+ "englishUsText":"I ♥ 「Touch off」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Touch off」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Touch off」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Touch off」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Touch off」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Touch off」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Touch off」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_roki",
+ "englishUsText":"I ♥ 「ROKI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「ROKI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「ROKI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「ROKI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「ROKI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「ROKI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「ROKI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_im4spr",
+ "englishUsText":"I ♥ 「Spread the Wings!!」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Spread the Wings!!」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Spread the Wings!!」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Spread the Wings!!」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Spread the Wings!!」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Spread the Wings!!」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Spread the Wings!!」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_kimpla",
+ "englishUsText":"I ♥ 「KIMI NO Planet」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「KIMI NO Planet」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「KIMI NO Planet」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「KIMI NO Planet」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「KIMI NO Planet」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「KIMI NO Planet」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「KIMI NO Planet」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_w2bs2x",
+ "englishUsText":"I ♥ 「HIKARINOKANATAE」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HIKARINOKANATAE」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HIKARINOKANATAE」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HIKARINOKANATAE」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HIKARINOKANATAE」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HIKARINOKANATAE」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HIKARINOKANATAE」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_exw2b2",
+ "englishUsText":"I ♥ 「HIKARINOKANATAE -Long Ver.-」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HIKARINOKANATAE -Long Ver.-」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HIKARINOKANATAE -Long Ver.-」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HIKARINOKANATAE -Long Ver.-」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HIKARINOKANATAE -Long Ver.-」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HIKARINOKANATAE -Long Ver.-」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HIKARINOKANATAE -Long Ver.-」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_tkwata",
+ "englishUsText":"I ♥ 「142 TOKI NO WATARIDORI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「142 TOKI NO WATARIDORI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「142 TOKI NO WATARIDORI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「142 TOKI NO WATARIDORI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「142 TOKI NO WATARIDORI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「142 TOKI NO WATARIDORI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「142 TOKI NO WATARIDORI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_mrgold",
+ "englishUsText":"I ♥ 「Marigold」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Marigold」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Marigold」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Marigold」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Marigold」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Marigold」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Marigold」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_ainokt",
+ "englishUsText":"I ♥ 「Ainokatachi feat.HIDE(GReeeeN)」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Ainokatachi feat.HIDE(GReeeeN)」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Ainokatachi feat.HIDE(GReeeeN)」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Ainokatachi feat.HIDE(GReeeeN)」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Ainokatachi feat.HIDE(GReeeeN)」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Ainokatachi feat.HIDE(GReeeeN)」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Ainokatachi feat.HIDE(GReeeeN)」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_neverl",
+ "englishUsText":"I ♥ 「Touch off」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Touch off」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Touch off」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Touch off」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Touch off」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Touch off」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Touch off」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_roki",
+ "englishUsText":"ROKI",
+ "englishUsFontType":1,
+ "frenchText":"ROKI",
+ "frenchFontType":1,
+ "italianText":"ROKI",
+ "italianFontType":1,
+ "germanText":"ROKI",
+ "germanFontType":1,
+ "spanishText":"ROKI",
+ "spanishFontType":1,
+ "neutralSpanishText":"ROKI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ROKI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_roki",
+ "englishUsText":"ROKI",
+ "englishUsFontType":1,
+ "frenchText":"ROKI",
+ "frenchFontType":1,
+ "italianText":"ROKI",
+ "italianFontType":1,
+ "germanText":"ROKI",
+ "germanFontType":1,
+ "spanishText":"ROKI",
+ "spanishFontType":1,
+ "neutralSpanishText":"ROKI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ROKI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_roki",
+ "englishUsText":"ROKI",
+ "englishUsFontType":1,
+ "frenchText":"ROKI",
+ "frenchFontType":1,
+ "italianText":"ROKI",
+ "italianFontType":1,
+ "germanText":"ROKI",
+ "germanFontType":1,
+ "spanishText":"ROKI",
+ "spanishFontType":1,
+ "neutralSpanishText":"ROKI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ROKI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_roki",
+ "englishUsText":"ロキ",
+ "englishUsFontType":0,
+ "frenchText":"ロキ",
+ "frenchFontType":0,
+ "italianText":"ロキ",
+ "italianFontType":0,
+ "germanText":"ロキ",
+ "germanFontType":0,
+ "spanishText":"ロキ",
+ "spanishFontType":0,
+ "neutralSpanishText":"ロキ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ロキ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_roki",
+ "englishUsText":"Mikito P feat.KAGAMINE RIN",
+ "englishUsFontType":1,
+ "frenchText":"Mikito P feat.KAGAMINE RIN",
+ "frenchFontType":1,
+ "italianText":"Mikito P feat.KAGAMINE RIN",
+ "italianFontType":1,
+ "germanText":"Mikito P feat.KAGAMINE RIN",
+ "germanFontType":1,
+ "spanishText":"Mikito P feat.KAGAMINE RIN",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mikito P feat.KAGAMINE RIN",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mikito P feat.KAGAMINE RIN",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_im4spr",
+ "englishUsText":"Spread the Wings!!",
+ "englishUsFontType":1,
+ "frenchText":"Spread the Wings!!",
+ "frenchFontType":1,
+ "italianText":"Spread the Wings!!",
+ "italianFontType":1,
+ "germanText":"Spread the Wings!!",
+ "germanFontType":1,
+ "spanishText":"Spread the Wings!!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Spread the Wings!!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Spread the Wings!!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_im4spr",
+ "englishUsText":"Spread the Wings!!",
+ "englishUsFontType":1,
+ "frenchText":"Spread the Wings!!",
+ "frenchFontType":1,
+ "italianText":"Spread the Wings!!",
+ "italianFontType":1,
+ "germanText":"Spread the Wings!!",
+ "germanFontType":1,
+ "spanishText":"Spread the Wings!!",
+ "spanishFontType":1,
+ "neutralSpanishText":"Spread the Wings!!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Spread the Wings!!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_im4spr",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_im4spr",
+ "englishUsText":"Spread the Wings!!",
+ "englishUsFontType":0,
+ "frenchText":"Spread the Wings!!",
+ "frenchFontType":0,
+ "italianText":"Spread the Wings!!",
+ "italianFontType":0,
+ "germanText":"Spread the Wings!!",
+ "germanFontType":0,
+ "spanishText":"Spread the Wings!!",
+ "spanishFontType":0,
+ "neutralSpanishText":"Spread the Wings!!",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Spread the Wings!!",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_im4spr",
+ "englishUsText":"From \" THE iDOLM@STER SHINY COLORS \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" THE iDOLM@STER SHINY COLORS \"",
+ "frenchFontType":1,
+ "italianText":"Da \" THE iDOLM@STER SHINY COLORS \"",
+ "italianFontType":1,
+ "germanText":"Aus \" THE iDOLM@STER SHINY COLORS \"",
+ "germanFontType":1,
+ "spanishText":"De \" THE iDOLM@STER SHINY COLORS \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" THE iDOLM@STER SHINY COLORS \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" THE iDOLM@STER SHINY COLORS \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_kimpla",
+ "englishUsText":"KIMI NO Planet",
+ "englishUsFontType":1,
+ "frenchText":"KIMI NO Planet",
+ "frenchFontType":1,
+ "italianText":"KIMI NO Planet",
+ "italianFontType":1,
+ "germanText":"KIMI NO Planet",
+ "germanFontType":1,
+ "spanishText":"KIMI NO Planet",
+ "spanishFontType":1,
+ "neutralSpanishText":"KIMI NO Planet",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KIMI NO Planet",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_kimpla",
+ "englishUsText":"KIMI NO Planet",
+ "englishUsFontType":1,
+ "frenchText":"KIMI NO Planet",
+ "frenchFontType":1,
+ "italianText":"KIMI NO Planet",
+ "italianFontType":1,
+ "germanText":"KIMI NO Planet",
+ "germanFontType":1,
+ "spanishText":"KIMI NO Planet",
+ "spanishFontType":1,
+ "neutralSpanishText":"KIMI NO Planet",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KIMI NO Planet",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_kimpla",
+ "englishUsText":"KIMI NO Planet",
+ "englishUsFontType":1,
+ "frenchText":"KIMI NO Planet",
+ "frenchFontType":1,
+ "italianText":"KIMI NO Planet",
+ "italianFontType":1,
+ "germanText":"KIMI NO Planet",
+ "germanFontType":1,
+ "spanishText":"KIMI NO Planet",
+ "spanishFontType":1,
+ "neutralSpanishText":"KIMI NO Planet",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KIMI NO Planet",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_kimpla",
+ "englishUsText":"君のプラネット",
+ "englishUsFontType":0,
+ "frenchText":"君のプラネット",
+ "frenchFontType":0,
+ "italianText":"君のプラネット",
+ "italianFontType":0,
+ "germanText":"君のプラネット",
+ "germanFontType":0,
+ "spanishText":"君のプラネット",
+ "spanishFontType":0,
+ "neutralSpanishText":"君のプラネット",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"君のプラネット",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_kimpla",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_w2bs2x",
+ "englishUsText":"HIKARINOKANATAE",
+ "englishUsFontType":1,
+ "frenchText":"HIKARINOKANATAE",
+ "frenchFontType":1,
+ "italianText":"HIKARINOKANATAE",
+ "italianFontType":1,
+ "germanText":"HIKARINOKANATAE",
+ "germanFontType":1,
+ "spanishText":"HIKARINOKANATAE",
+ "spanishFontType":1,
+ "neutralSpanishText":"HIKARINOKANATAE",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HIKARINOKANATAE",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_w2bs2x",
+ "englishUsText":"HIKARINOKANATAE",
+ "englishUsFontType":1,
+ "frenchText":"HIKARINOKANATAE",
+ "frenchFontType":1,
+ "italianText":"HIKARINOKANATAE",
+ "italianFontType":1,
+ "germanText":"HIKARINOKANATAE",
+ "germanFontType":1,
+ "spanishText":"HIKARINOKANATAE",
+ "spanishFontType":1,
+ "neutralSpanishText":"HIKARINOKANATAE",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HIKARINOKANATAE",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_w2bs2x",
+ "englishUsText":"HIKARINOKANATAE",
+ "englishUsFontType":1,
+ "frenchText":"HIKARINOKANATAE",
+ "frenchFontType":1,
+ "italianText":"HIKARINOKANATAE",
+ "italianFontType":1,
+ "germanText":"HIKARINOKANATAE",
+ "germanFontType":1,
+ "spanishText":"HIKARINOKANATAE",
+ "spanishFontType":1,
+ "neutralSpanishText":"HIKARINOKANATAE",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HIKARINOKANATAE",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_w2bs2x",
+ "englishUsText":"ヒカリノカナタヘ",
+ "englishUsFontType":0,
+ "frenchText":"ヒカリノカナタヘ",
+ "frenchFontType":0,
+ "italianText":"ヒカリノカナタヘ",
+ "italianFontType":0,
+ "germanText":"ヒカリノカナタヘ",
+ "germanFontType":0,
+ "spanishText":"ヒカリノカナタヘ",
+ "spanishFontType":0,
+ "neutralSpanishText":"ヒカリノカナタヘ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ヒカリノカナタヘ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_w2bs2x",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_exw2b2",
+ "englishUsText":"HIKARINOKANATAE -Long Ver.-",
+ "englishUsFontType":1,
+ "frenchText":"HIKARINOKANATAE -Long Ver.-",
+ "frenchFontType":1,
+ "italianText":"HIKARINOKANATAE -Long Ver.-",
+ "italianFontType":1,
+ "germanText":"HIKARINOKANATAE -Long Ver.-",
+ "germanFontType":1,
+ "spanishText":"HIKARINOKANATAE -Long Ver.-",
+ "spanishFontType":1,
+ "neutralSpanishText":"HIKARINOKANATAE -Long Ver.-",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HIKARINOKANATAE -Long Ver.-",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_exw2b2",
+ "englishUsText":"HIKARINOKANATAE -Long Ver.-",
+ "englishUsFontType":1,
+ "frenchText":"HIKARINOKANATAE -Long Ver.-",
+ "frenchFontType":1,
+ "italianText":"HIKARINOKANATAE -Long Ver.-",
+ "italianFontType":1,
+ "germanText":"HIKARINOKANATAE -Long Ver.-",
+ "germanFontType":1,
+ "spanishText":"HIKARINOKANATAE -Long Ver.-",
+ "spanishFontType":1,
+ "neutralSpanishText":"HIKARINOKANATAE -Long Ver.-",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HIKARINOKANATAE -Long Ver.-",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_exw2b2",
+ "englishUsText":"HIKARINOKANATAE -Long Ver.-",
+ "englishUsFontType":1,
+ "frenchText":"HIKARINOKANATAE -Long Ver.-",
+ "frenchFontType":1,
+ "italianText":"HIKARINOKANATAE -Long Ver.-",
+ "italianFontType":1,
+ "germanText":"HIKARINOKANATAE -Long Ver.-",
+ "germanFontType":1,
+ "spanishText":"HIKARINOKANATAE -Long Ver.-",
+ "spanishFontType":1,
+ "neutralSpanishText":"HIKARINOKANATAE -Long Ver.-",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HIKARINOKANATAE -Long Ver.-",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_exw2b2",
+ "englishUsText":"ヒカリノカナタヘ -Long Ver.-",
+ "englishUsFontType":0,
+ "frenchText":"ヒカリノカナタヘ -Long Ver.-",
+ "frenchFontType":0,
+ "italianText":"ヒカリノカナタヘ -Long Ver.-",
+ "italianFontType":0,
+ "germanText":"ヒカリノカナタヘ -Long Ver.-",
+ "germanFontType":0,
+ "spanishText":"ヒカリノカナタヘ -Long Ver.-",
+ "spanishFontType":0,
+ "neutralSpanishText":"ヒカリノカナタヘ -Long Ver.-",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ヒカリノカナタヘ -Long Ver.-",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_exw2b2",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_tkwata",
+ "englishUsText":"142 TOKI NO WATARIDORI",
+ "englishUsFontType":1,
+ "frenchText":"142 TOKI NO WATARIDORI",
+ "frenchFontType":1,
+ "italianText":"142 TOKI NO WATARIDORI",
+ "italianFontType":1,
+ "germanText":"142 TOKI NO WATARIDORI",
+ "germanFontType":1,
+ "spanishText":"142 TOKI NO WATARIDORI",
+ "spanishFontType":1,
+ "neutralSpanishText":"142 TOKI NO WATARIDORI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"142 TOKI NO WATARIDORI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_tkwata",
+ "englishUsText":"142 TOKI NO WATARIDORI",
+ "englishUsFontType":1,
+ "frenchText":"142 TOKI NO WATARIDORI",
+ "frenchFontType":1,
+ "italianText":"142 TOKI NO WATARIDORI",
+ "italianFontType":1,
+ "germanText":"142 TOKI NO WATARIDORI",
+ "germanFontType":1,
+ "spanishText":"142 TOKI NO WATARIDORI",
+ "spanishFontType":1,
+ "neutralSpanishText":"142 TOKI NO WATARIDORI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"142 TOKI NO WATARIDORI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_tkwata",
+ "englishUsText":"142 TOKI NO WATARIDORI",
+ "englishUsFontType":1,
+ "frenchText":"142 TOKI NO WATARIDORI",
+ "frenchFontType":1,
+ "italianText":"142 TOKI NO WATARIDORI",
+ "italianFontType":1,
+ "germanText":"142 TOKI NO WATARIDORI",
+ "germanFontType":1,
+ "spanishText":"142 TOKI NO WATARIDORI",
+ "spanishFontType":1,
+ "neutralSpanishText":"142 TOKI NO WATARIDORI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"142 TOKI NO WATARIDORI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_tkwata",
+ "englishUsText":"142トキノワタリドリ",
+ "englishUsFontType":0,
+ "frenchText":"142トキノワタリドリ",
+ "frenchFontType":0,
+ "italianText":"142トキノワタリドリ",
+ "italianFontType":0,
+ "germanText":"142トキノワタリドリ",
+ "germanFontType":0,
+ "spanishText":"142トキノワタリドリ",
+ "spanishFontType":0,
+ "neutralSpanishText":"142トキノワタリドリ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"142トキノワタリドリ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_tkwata",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_mrgold",
+ "englishUsText":"Marigold",
+ "englishUsFontType":1,
+ "frenchText":"Marigold",
+ "frenchFontType":1,
+ "italianText":"Marigold",
+ "italianFontType":1,
+ "germanText":"Marigold",
+ "germanFontType":1,
+ "spanishText":"Marigold",
+ "spanishFontType":1,
+ "neutralSpanishText":"Marigold",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Marigold",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_mrgold",
+ "englishUsText":"Marigold",
+ "englishUsFontType":1,
+ "frenchText":"Marigold",
+ "frenchFontType":1,
+ "italianText":"Marigold",
+ "italianFontType":1,
+ "germanText":"Marigold",
+ "germanFontType":1,
+ "spanishText":"Marigold",
+ "spanishFontType":1,
+ "neutralSpanishText":"Marigold",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Marigold",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_mrgold",
+ "englishUsText":"Marigold",
+ "englishUsFontType":1,
+ "frenchText":"Marigold",
+ "frenchFontType":1,
+ "italianText":"Marigold",
+ "italianFontType":1,
+ "germanText":"Marigold",
+ "germanFontType":1,
+ "spanishText":"Marigold",
+ "spanishFontType":1,
+ "neutralSpanishText":"Marigold",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Marigold",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_mrgold",
+ "englishUsText":"マリーゴールド",
+ "englishUsFontType":0,
+ "frenchText":"マリーゴールド",
+ "frenchFontType":0,
+ "italianText":"マリーゴールド",
+ "italianFontType":0,
+ "germanText":"マリーゴールド",
+ "germanFontType":0,
+ "spanishText":"マリーゴールド",
+ "spanishFontType":0,
+ "neutralSpanishText":"マリーゴールド",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"マリーゴールド",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_mrgold",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_ainokt",
+ "englishUsText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "englishUsFontType":1,
+ "frenchText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "frenchFontType":1,
+ "italianText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "italianFontType":1,
+ "germanText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "germanFontType":1,
+ "spanishText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_ainokt",
+ "englishUsText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "englishUsFontType":1,
+ "frenchText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "frenchFontType":1,
+ "italianText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "italianFontType":1,
+ "germanText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "germanFontType":1,
+ "spanishText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_ainokt",
+ "englishUsText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "englishUsFontType":1,
+ "frenchText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "frenchFontType":1,
+ "italianText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "italianFontType":1,
+ "germanText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "germanFontType":1,
+ "spanishText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_ainokt",
+ "englishUsText":"アイノカタチ feat.HIDE(GReeeeN)",
+ "englishUsFontType":0,
+ "frenchText":"アイノカタチ feat.HIDE(GReeeeN)",
+ "frenchFontType":0,
+ "italianText":"アイノカタチ feat.HIDE(GReeeeN)",
+ "italianFontType":0,
+ "germanText":"アイノカタチ feat.HIDE(GReeeeN)",
+ "germanFontType":0,
+ "spanishText":"アイノカタチ feat.HIDE(GReeeeN)",
+ "spanishFontType":0,
+ "neutralSpanishText":"アイノカタチ feat.HIDE(GReeeeN)",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"アイノカタチ feat.HIDE(GReeeeN)",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_ainokt",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_neverl",
+ "englishUsText":"Touch off",
+ "englishUsFontType":1,
+ "frenchText":"Touch off",
+ "frenchFontType":1,
+ "italianText":"Touch off",
+ "italianFontType":1,
+ "germanText":"Touch off",
+ "germanFontType":1,
+ "spanishText":"Touch off",
+ "spanishFontType":1,
+ "neutralSpanishText":"Touch off",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Touch off",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_neverl",
+ "englishUsText":"Touch off",
+ "englishUsFontType":1,
+ "frenchText":"Touch off",
+ "frenchFontType":1,
+ "italianText":"Touch off",
+ "italianFontType":1,
+ "germanText":"Touch off",
+ "germanFontType":1,
+ "spanishText":"Touch off",
+ "spanishFontType":1,
+ "neutralSpanishText":"Touch off",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Touch off",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_neverl",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_neverl",
+ "englishUsText":"Touch off",
+ "englishUsFontType":0,
+ "frenchText":"Touch off",
+ "frenchFontType":0,
+ "italianText":"Touch off",
+ "italianFontType":0,
+ "germanText":"Touch off",
+ "germanFontType":0,
+ "spanishText":"Touch off",
+ "spanishFontType":0,
+ "neutralSpanishText":"Touch off",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Touch off",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_neverl",
+ "englishUsText":"From \" THE PROMISED NEVERLAND \"",
+ "englishUsFontType":1,
+ "frenchText":"de \" THE PROMISED NEVERLAND \"",
+ "frenchFontType":1,
+ "italianText":"da \" THE PROMISED NEVERLAND \"",
+ "italianFontType":1,
+ "germanText":"Aus \" THE PROMISED NEVERLAND \"",
+ "germanFontType":1,
+ "spanishText":"De \" THE PROMISED NEVERLAND \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" THE PROMISED NEVERLAND \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" THE PROMISED NEVERLAND \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_roki",
+ "englishUsText":"roki",
+ "englishUsFontType":1,
+ "frenchText":"roki",
+ "frenchFontType":1,
+ "italianText":"roki",
+ "italianFontType":1,
+ "germanText":"roki",
+ "germanFontType":1,
+ "spanishText":"roki",
+ "spanishFontType":1,
+ "neutralSpanishText":"roki",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"roki",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_im4spr",
+ "englishUsText":"spreadthewings!!",
+ "englishUsFontType":1,
+ "frenchText":"spreadthewings!!",
+ "frenchFontType":1,
+ "italianText":"spreadthewings!!",
+ "italianFontType":1,
+ "germanText":"spreadthewings!!",
+ "germanFontType":1,
+ "spanishText":"spreadthewings!!",
+ "spanishFontType":1,
+ "neutralSpanishText":"spreadthewings!!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"spreadthewings!!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_kimpla",
+ "englishUsText":"kiminoplanet",
+ "englishUsFontType":1,
+ "frenchText":"kiminoplanet",
+ "frenchFontType":1,
+ "italianText":"kiminoplanet",
+ "italianFontType":1,
+ "germanText":"kiminoplanet",
+ "germanFontType":1,
+ "spanishText":"kiminoplanet",
+ "spanishFontType":1,
+ "neutralSpanishText":"kiminoplanet",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"kiminoplanet",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_w2bs2x",
+ "englishUsText":"hikarinokanatae",
+ "englishUsFontType":1,
+ "frenchText":"hikarinokanatae",
+ "frenchFontType":1,
+ "italianText":"hikarinokanatae",
+ "italianFontType":1,
+ "germanText":"hikarinokanatae",
+ "germanFontType":1,
+ "spanishText":"hikarinokanatae",
+ "spanishFontType":1,
+ "neutralSpanishText":"hikarinokanatae",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"hikarinokanatae",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_exw2b2",
+ "englishUsText":"hikarinokanatae-longver.-",
+ "englishUsFontType":1,
+ "frenchText":"hikarinokanatae-longver.-",
+ "frenchFontType":1,
+ "italianText":"hikarinokanatae-longver.-",
+ "italianFontType":1,
+ "germanText":"hikarinokanatae-longver.-",
+ "germanFontType":1,
+ "spanishText":"hikarinokanatae-longver.-",
+ "spanishFontType":1,
+ "neutralSpanishText":"hikarinokanatae-longver.-",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"hikarinokanatae-longver.-",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_tkwata",
+ "englishUsText":"142tokinowataridori",
+ "englishUsFontType":1,
+ "frenchText":"142tokinowataridori",
+ "frenchFontType":1,
+ "italianText":"142tokinowataridori",
+ "italianFontType":1,
+ "germanText":"142tokinowataridori",
+ "germanFontType":1,
+ "spanishText":"142tokinowataridori",
+ "spanishFontType":1,
+ "neutralSpanishText":"142tokinowataridori",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"142tokinowataridori",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_mrgold",
+ "englishUsText":"marigold",
+ "englishUsFontType":1,
+ "frenchText":"marigold",
+ "frenchFontType":1,
+ "italianText":"marigold",
+ "italianFontType":1,
+ "germanText":"marigold",
+ "germanFontType":1,
+ "spanishText":"marigold",
+ "spanishFontType":1,
+ "neutralSpanishText":"marigold",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"marigold",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_ainokt",
+ "englishUsText":"ainokatachifeat.hide(greeeen)",
+ "englishUsFontType":1,
+ "frenchText":"ainokatachifeat.hide(greeeen)",
+ "frenchFontType":1,
+ "italianText":"ainokatachifeat.hide(greeeen)",
+ "italianFontType":1,
+ "germanText":"ainokatachifeat.hide(greeeen)",
+ "germanFontType":1,
+ "spanishText":"ainokatachifeat.hide(greeeen)",
+ "spanishFontType":1,
+ "neutralSpanishText":"ainokatachifeat.hide(greeeen)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ainokatachifeat.hide(greeeen)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_neverl",
+ "englishUsText":"touchoff",
+ "englishUsFontType":1,
+ "frenchText":"touchoff",
+ "frenchFontType":1,
+ "italianText":"touchoff",
+ "italianFontType":1,
+ "germanText":"touchoff",
+ "germanFontType":1,
+ "spanishText":"touchoff",
+ "spanishFontType":1,
+ "neutralSpanishText":"touchoff",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"touchoff",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_esport",
+ "englishUsText":"Began dSports Fest",
+ "englishUsFontType":1,
+ "frenchText":"Fête dSports commencée",
+ "frenchFontType":1,
+ "italianText":"Festival dSports avviato",
+ "italianFontType":1,
+ "germanText":"dSports-Fest begonnen",
+ "germanFontType":1,
+ "spanishText":"Inicio festival dSports",
+ "spanishFontType":1,
+ "neutralSpanishText":"Inicio Festival dSports",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"O Festival dSports começou",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_esportex",
+ "englishUsText":"dSports Fest Master",
+ "englishUsFontType":1,
+ "frenchText":"Maître de Fête dSports",
+ "frenchFontType":1,
+ "italianText":"Maestro festival dSports",
+ "italianFontType":1,
+ "germanText":"dSports-Fest-Meister",
+ "germanFontType":1,
+ "spanishText":"Maestro festival dSports",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro Festival dSports",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre do Festival dSports",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_dsport",
+ "englishUsText":"When you give up, that's when the performance is over.",
+ "englishUsFontType":1,
+ "frenchText":"Abandonner signifie la fin de la partie.",
+ "frenchFontType":1,
+ "italianText":"La performance finisce quando ti arrendi.",
+ "italianFontType":1,
+ "germanText":"Sobald du aufgibst, ist die Performance beendet.",
+ "germanFontType":1,
+ "spanishText":"No te rindas hasta que no acabe la función.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Cuando te rindes, es cuando se termina el actuación.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"O show só acaba quando o juiz apita. Não desista.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_border",
+ "englishUsText":"Boarder",
+ "englishUsFontType":1,
+ "frenchText":"Skater",
+ "frenchFontType":1,
+ "italianText":"Skateboarder",
+ "italianFontType":1,
+ "germanText":"Skater",
+ "germanFontType":1,
+ "spanishText":"Skater",
+ "spanishFontType":1,
+ "neutralSpanishText":"Patinador",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Skatista",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_bicycle",
+ "englishUsText":"Cyclist",
+ "englishUsFontType":1,
+ "frenchText":"Cycliste",
+ "frenchFontType":1,
+ "italianText":"Ciclista",
+ "italianFontType":1,
+ "germanText":"Radler",
+ "germanFontType":1,
+ "spanishText":"Ciclista",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ciclista",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ciclista",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_tennis",
+ "englishUsText":"Tennis",
+ "englishUsFontType":1,
+ "frenchText":"Tennis",
+ "frenchFontType":1,
+ "italianText":"Tennista",
+ "italianFontType":1,
+ "germanText":"Tennis-Spieler",
+ "germanFontType":1,
+ "spanishText":"Tenista",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tenista",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tênis",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_dsport",
+ "englishUsText":"dSports Fest",
+ "englishUsFontType":1,
+ "frenchText":"Fête dSports",
+ "frenchFontType":1,
+ "italianText":"Festival dSports",
+ "italianFontType":1,
+ "germanText":"dSports-Fest",
+ "germanFontType":1,
+ "spanishText":"Festival dSports",
+ "spanishFontType":1,
+ "neutralSpanishText":"Festival dSports",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Festival dSports",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"appstore_message_attention_05",
+ "englishUsText":"This song cannot be played in Friend Session,\nRanked Match, or Best Replay modes.\nPlease be aware of this before purchasing.",
+ "englishUsFontType":1,
+ "frenchText":"Vous ne pouvez pas jouer cette chanson en mode Session d'ami,\nMatch classé ou Meilleure rediffusion.\nVeuillez en prendre connaissance avant l'achat.",
+ "frenchFontType":1,
+ "italianText":"Canzone non utilizzabili in Sess. Am.,\nPartita classif. e Miglior prova.\nConsideralo prima dell'acquisto.",
+ "italianFontType":1,
+ "germanText":"Dieser Song kann nicht in einer Freundes-Session,\nRanglisten-Partie oder Bestleistung gespielt werden.\nBitte beachte das vor dem Kauf.",
+ "germanFontType":1,
+ "spanishText":"\nCanción no disponible en Sesión de amigos,\nPartida igualada o Mejor repetición.\nPor favor, recuerde esta información antes de comprar.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Atención: Este cancion no disponibles en Sesión de amigos,\nPartida igualada o Mejor repetición.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Note antes de comprar que esta música não podem ser\ntocadas em modos Sessão de Amigo, Partida Rankeada\nou Melhor Replay.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"songselect_attention",
+ "englishUsText":"This song cannot be played in Friend Session,\nRanked Match, or Best Replay modes.",
+ "englishUsFontType":1,
+ "frenchText":"Vous ne pouvez pas jouer cette chanson en mode Session d'ami,\nMatch classé ou Meilleure rediffusion.",
+ "frenchFontType":1,
+ "italianText":"Canzone non utilizzabili in Sess. Am.,\nPartita classif. e Miglior prova.",
+ "italianFontType":1,
+ "germanText":"Dieser Song kann nicht in einer Freundes-Session,\nRanglisten-Partie oder Bestleistung gespielt werden.",
+ "germanFontType":1,
+ "spanishText":"Canción no disponible en Sesión de amigos,\nPartida igualada o Mejor repetición.",
+ "spanishFontType":1,
+ "neutralSpanishText":"Este cancion no disponibles en Sesión de amigos,\nPartida igualada o Mejor repetición.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Esta música não podem ser tocadas em modos\nSessão de Amigo, Partida Rankeada ou Melhor Replay.",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_sqr",
+ "englishUsText":"I ♥ 「Sports DigesDON」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Sports DigesDON」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Sports DigesDON」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Sports DigesDON」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Sports DigesDON」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Sports DigesDON」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Sports DigesDON」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_rezero",
+ "englishUsText":"I ♥ 「Paradisus‐Paradoxum」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Paradisus‐Paradoxum」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Paradisus‐Paradoxum」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Paradisus‐Paradoxum」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Paradisus‐Paradoxum」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Paradisus‐Paradoxum」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Paradisus‐Paradoxum」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_clstoc",
+ "englishUsText":"I ♥ 「Toccata and Fugue and Rock」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Toccata et fugue et Rock」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Toccata e fuga e Rock」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Toccata und Fuge und Rock」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Tocata y fuga y Rock」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Tocata y fuga y Rock」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Tocata e Fuga e Rock」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_medjed",
+ "englishUsText":"I ♥ 「HINARU MEDJED NO HINARU YU-UTSU」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HINARU MEDJED NO HINARU YU-UTSU」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HINARU MEDJED NO HINARU YU-UTSU」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HINARU MEDJED NO HINARU YU-UTSU」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HINARU MEDJED NO HINARU YU-UTSU」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HINARU MEDJED NO HINARU YU-UTSU」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HINARU MEDJED NO HINARU YU-UTSU」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_senpac",
+ "englishUsText":"I ♥ 「SENPU NO MAI 【TEN】」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SENPU NO MAI 【TEN】」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SENPU NO MAI 【TEN】」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SENPU NO MAI 【TEN】」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SENPU NO MAI 【TEN】」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SENPU NO MAI 【TEN】」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SENPU NO MAI 【TEN】」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_senpcs",
+ "englishUsText":"I ♥ 「SENPU NO MAI 【CHI】」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SENPU NO MAI 【CHI】」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SENPU NO MAI 【CHI】」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SENPU NO MAI 【CHI】」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SENPU NO MAI 【CHI】」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SENPU NO MAI 【CHI】」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SENPU NO MAI 【CHI】」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_argmem",
+ "englishUsText":"I ♥ 「Argent Memories」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Argent Memories」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Argent Memories」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Argent Memories」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Argent Memories」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Argent Memories」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Argent Memories」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_hypmic",
+ "englishUsText":"I ♥ 「HYPNOSISMIC -Division Battle Anthem-」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HYPNOSISMIC -Division Battle Anthem-」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HYPNOSISMIC -Division Battle Anthem-」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HYPNOSISMIC -Division Battle Anthem-」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HYPNOSISMIC -Division Battle Anthem-」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HYPNOSISMIC -Division Battle Anthem-」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HYPNOSISMIC -Division Battle Anthem-」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_sqr",
+ "englishUsText":"I ♥ 「Sports DigesDON」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Sports DigesDON」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Sports DigesDON」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Sports DigesDON」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Sports DigesDON」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Sports DigesDON」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Sports DigesDON」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_rezero",
+ "englishUsText":"I ♥ 「Paradisus‐Paradoxum」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Paradisus‐Paradoxum」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Paradisus‐Paradoxum」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Paradisus‐Paradoxum」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Paradisus‐Paradoxum」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Paradisus‐Paradoxum」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Paradisus‐Paradoxum」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_clstoc",
+ "englishUsText":"I ♥ 「Toccata and Fugue and Rock」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Toccata et fugue et Rock」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Toccata e fuga e Rock」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Toccata und Fuge und Rock」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Tocata y fuga y Rock」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Tocata y fuga y Rock」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Tocata e Fuga e Rock」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_medjed",
+ "englishUsText":"I ♥ 「HINARU MEDJED NO HINARU YU-UTSU」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HINARU MEDJED NO HINARU YU-UTSU」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HINARU MEDJED NO HINARU YU-UTSU」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HINARU MEDJED NO HINARU YU-UTSU」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HINARU MEDJED NO HINARU YU-UTSU」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HINARU MEDJED NO HINARU YU-UTSU」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HINARU MEDJED NO HINARU YU-UTSU」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_senpac",
+ "englishUsText":"I ♥ 「SENPU NO MAI 【TEN】」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SENPU NO MAI 【TEN】」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SENPU NO MAI 【TEN】」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SENPU NO MAI 【TEN】」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SENPU NO MAI 【TEN】」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SENPU NO MAI 【TEN】」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SENPU NO MAI 【TEN】」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_senpcs",
+ "englishUsText":"I ♥ 「SENPU NO MAI 【CHI】」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SENPU NO MAI 【CHI】」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SENPU NO MAI 【CHI】」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SENPU NO MAI 【CHI】」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SENPU NO MAI 【CHI】」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SENPU NO MAI 【CHI】」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SENPU NO MAI 【CHI】」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_argmem",
+ "englishUsText":"I ♥ 「Argent Memories」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Argent Memories」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Argent Memories」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Argent Memories」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Argent Memories」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Argent Memories」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Argent Memories」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_hypmic",
+ "englishUsText":"I ♥ 「HYPNOSISMIC -Division Battle Anthem-」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HYPNOSISMIC -Division Battle Anthem-」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HYPNOSISMIC -Division Battle Anthem-」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HYPNOSISMIC -Division Battle Anthem-」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HYPNOSISMIC -Division Battle Anthem-」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HYPNOSISMIC -Division Battle Anthem-」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HYPNOSISMIC -Division Battle Anthem-」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sqr",
+ "englishUsText":"Sports DigesDON",
+ "englishUsFontType":1,
+ "frenchText":"Sports DigesDON",
+ "frenchFontType":1,
+ "italianText":"Sports DigesDON",
+ "italianFontType":1,
+ "germanText":"Sports DigesDON",
+ "germanFontType":1,
+ "spanishText":"Sports DigesDON",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sports DigesDON",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sports DigesDON",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_sqr",
+ "englishUsText":"Sports DigesDON",
+ "englishUsFontType":1,
+ "frenchText":"Sports DigesDON",
+ "frenchFontType":1,
+ "italianText":"Sports DigesDON",
+ "italianFontType":1,
+ "germanText":"Sports DigesDON",
+ "germanFontType":1,
+ "spanishText":"Sports DigesDON",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sports DigesDON",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sports DigesDON",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_sqr",
+ "englishUsText":"Sports DigesDON",
+ "englishUsFontType":1,
+ "frenchText":"Sports DigesDON",
+ "frenchFontType":1,
+ "italianText":"Sports DigesDON",
+ "italianFontType":1,
+ "germanText":"Sports DigesDON",
+ "germanFontType":1,
+ "spanishText":"Sports DigesDON",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sports DigesDON",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sports DigesDON",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_sqr",
+ "englishUsText":"スポーツダイジェスドン",
+ "englishUsFontType":0,
+ "frenchText":"スポーツダイジェスドン",
+ "frenchFontType":0,
+ "italianText":"スポーツダイジェスドン",
+ "italianFontType":0,
+ "germanText":"スポーツダイジェスドン",
+ "germanFontType":0,
+ "spanishText":"スポーツダイジェスドン",
+ "spanishFontType":0,
+ "neutralSpanishText":"スポーツダイジェスドン",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"スポーツダイジェスドン",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_sqr",
+ "englishUsText":"~Fill in The Sky~",
+ "englishUsFontType":1,
+ "frenchText":"~Fill in The Sky~",
+ "frenchFontType":1,
+ "italianText":"~Fill in The Sky~",
+ "italianFontType":1,
+ "germanText":"~Fill in The Sky~",
+ "germanFontType":1,
+ "spanishText":"~Fill in The Sky~",
+ "spanishFontType":1,
+ "neutralSpanishText":"~Fill in The Sky~",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"~Fill in The Sky~",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_rezero",
+ "englishUsText":"Paradisus‐Paradoxum",
+ "englishUsFontType":1,
+ "frenchText":"Paradisus‐Paradoxum",
+ "frenchFontType":1,
+ "italianText":"Paradisus‐Paradoxum",
+ "italianFontType":1,
+ "germanText":"Paradisus‐Paradoxum",
+ "germanFontType":1,
+ "spanishText":"Paradisus‐Paradoxum",
+ "spanishFontType":1,
+ "neutralSpanishText":"Paradisus‐Paradoxum",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Paradisus‐Paradoxum",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_rezero",
+ "englishUsText":"Paradisus‐Paradoxum",
+ "englishUsFontType":1,
+ "frenchText":"Paradisus‐Paradoxum",
+ "frenchFontType":1,
+ "italianText":"Paradisus‐Paradoxum",
+ "italianFontType":1,
+ "germanText":"Paradisus‐Paradoxum",
+ "germanFontType":1,
+ "spanishText":"Paradisus‐Paradoxum",
+ "spanishFontType":1,
+ "neutralSpanishText":"Paradisus‐Paradoxum",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Paradisus‐Paradoxum",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_rezero",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_rezero",
+ "englishUsText":"Paradisus‐Paradoxum",
+ "englishUsFontType":0,
+ "frenchText":"Paradisus‐Paradoxum",
+ "frenchFontType":0,
+ "italianText":"Paradisus‐Paradoxum",
+ "italianFontType":0,
+ "germanText":"Paradisus‐Paradoxum",
+ "germanFontType":0,
+ "spanishText":"Paradisus‐Paradoxum",
+ "spanishFontType":0,
+ "neutralSpanishText":"Paradisus‐Paradoxum",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Paradisus‐Paradoxum",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_rezero",
+ "englishUsText":"From “ Re: Life in a different world from zero”",
+ "englishUsFontType":1,
+ "frenchText":"tiré de “ Re: Life in a different world from zero”",
+ "frenchFontType":1,
+ "italianText":"Da “ Re: Life in a different world from zero”",
+ "italianFontType":1,
+ "germanText":"Aus “ Re: Life in a different world from zero”",
+ "germanFontType":1,
+ "spanishText":"De “ Re: Life in a different world from zero”",
+ "spanishFontType":1,
+ "neutralSpanishText":"De “ Re: Life in a different world from zero”",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De “ Re: Life in a different world from zero”",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_clstoc",
+ "englishUsText":"Toccata and Fugue and Rock",
+ "englishUsFontType":1,
+ "frenchText":"Toccata et fugue et Rock",
+ "frenchFontType":1,
+ "italianText":"Toccata e fuga e Rock",
+ "italianFontType":1,
+ "germanText":"Toccata und Fuge und Rock",
+ "germanFontType":1,
+ "spanishText":"Tocata y fuga y Rock",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tocata y fuga y Rock",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tocata e Fuga e Rock",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_clstoc",
+ "englishUsText":"Toccata and Fugue and Rock",
+ "englishUsFontType":1,
+ "frenchText":"Toccata et fugue et Rock",
+ "frenchFontType":1,
+ "italianText":"Toccata e fuga e Rock",
+ "italianFontType":1,
+ "germanText":"Toccata und Fuge und Rock",
+ "germanFontType":1,
+ "spanishText":"Tocata y fuga y Rock",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tocata e Fuga e Rock",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tocata y fuga y Rock",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_clstoc",
+ "englishUsText":"Toccata and Fugue and Rock",
+ "englishUsFontType":1,
+ "frenchText":"Toccata et fugue et Rock",
+ "frenchFontType":1,
+ "italianText":"Toccata e fuga e Rock",
+ "italianFontType":1,
+ "germanText":"Toccata und Fuge und Rock",
+ "germanFontType":1,
+ "spanishText":"Tocata y fuga y Rock",
+ "spanishFontType":1,
+ "neutralSpanishText":"Tocata y fuga y Rock",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Tocata e Fuga e Rock",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_clstoc",
+ "englishUsText":"トッカータとフーガとロック",
+ "englishUsFontType":0,
+ "frenchText":"トッカータとフーガとロック",
+ "frenchFontType":0,
+ "italianText":"トッカータとフーガとロック",
+ "italianFontType":0,
+ "germanText":"トッカータとフーガとロック",
+ "germanFontType":0,
+ "spanishText":"トッカータとフーガとロック",
+ "spanishFontType":0,
+ "neutralSpanishText":"トッカータとフーガとロック",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"トッカータとフーガとロック",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_clstoc",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_medjed",
+ "englishUsText":"HINARU MEDJED NO HINARU YU-UTSU",
+ "englishUsFontType":1,
+ "frenchText":"HINARU MEDJED NO HINARU YU-UTSU",
+ "frenchFontType":1,
+ "italianText":"HINARU MEDJED NO HINARU YU-UTSU",
+ "italianFontType":1,
+ "germanText":"HINARU MEDJED NO HINARU YU-UTSU",
+ "germanFontType":1,
+ "spanishText":"HINARU MEDJED NO HINARU YU-UTSU",
+ "spanishFontType":1,
+ "neutralSpanishText":"HINARU MEDJED NO HINARU YU-UTSU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HINARU MEDJED NO HINARU YU-UTSU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_medjed",
+ "englishUsText":"HINARU MEDJED NO\nHINARU YU-UTSU",
+ "englishUsFontType":1,
+ "frenchText":"HINARU MEDJED NO\nHINARU YU-UTSU",
+ "frenchFontType":1,
+ "italianText":"HINARU MEDJED NO\nHINARU YU-UTSU",
+ "italianFontType":1,
+ "germanText":"HINARU MEDJED NO\nHINARU YU-UTSU",
+ "germanFontType":1,
+ "spanishText":"HINARU MEDJED NO\nHINARU YU-UTSU",
+ "spanishFontType":1,
+ "neutralSpanishText":"HINARU MEDJED NO\nHINARU YU-UTSU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HINARU MEDJED NO\nHINARU YU-UTSU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_medjed",
+ "englishUsText":"HINARU MEDJED NO HINARU YU-UTSU",
+ "englishUsFontType":1,
+ "frenchText":"HINARU MEDJED NO HINARU YU-UTSU",
+ "frenchFontType":1,
+ "italianText":"HINARU MEDJED NO HINARU YU-UTSU",
+ "italianFontType":1,
+ "germanText":"HINARU MEDJED NO HINARU YU-UTSU",
+ "germanFontType":1,
+ "spanishText":"HINARU MEDJED NO HINARU YU-UTSU",
+ "spanishFontType":1,
+ "neutralSpanishText":"HINARU MEDJED NO HINARU YU-UTSU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HINARU MEDJED NO HINARU YU-UTSU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_medjed",
+ "englishUsText":"秘ナルメジェドノ悲ナル憂鬱",
+ "englishUsFontType":0,
+ "frenchText":"秘ナルメジェドノ悲ナル憂鬱",
+ "frenchFontType":0,
+ "italianText":"秘ナルメジェドノ悲ナル憂鬱",
+ "italianFontType":0,
+ "germanText":"秘ナルメジェドノ悲ナル憂鬱",
+ "germanFontType":0,
+ "spanishText":"秘ナルメジェドノ悲ナル憂鬱",
+ "spanishFontType":0,
+ "neutralSpanishText":"秘ナルメジェドノ悲ナル憂鬱",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"秘ナルメジェドノ悲ナル憂鬱",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_medjed",
+ "englishUsText":"Yuya Kobayashi (IOSYS) feat. Yamamoto Momiji (monotone)",
+ "englishUsFontType":1,
+ "frenchText":"Yuya Kobayashi (IOSYS) feat. Yamamoto Momiji (monotone)",
+ "frenchFontType":1,
+ "italianText":"Yuya Kobayashi (IOSYS) feat. Yamamoto Momiji (monotone)",
+ "italianFontType":1,
+ "germanText":"Yuya Kobayashi (IOSYS) feat. Yamamoto Momiji (monotone)",
+ "germanFontType":1,
+ "spanishText":"Yuya Kobayashi (IOSYS) feat. Yamamoto Momiji (monotone)",
+ "spanishFontType":1,
+ "neutralSpanishText":"Yuya Kobayashi (IOSYS) feat. Yamamoto Momiji (monotone)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Yuya Kobayashi (IOSYS) feat. Yamamoto Momiji (monotone)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_senpac",
+ "englishUsText":"SENPU NO MAI 【TEN】",
+ "englishUsFontType":1,
+ "frenchText":"SENPU NO MAI 【TEN】",
+ "frenchFontType":1,
+ "italianText":"SENPU NO MAI 【TEN】",
+ "italianFontType":1,
+ "germanText":"SENPU NO MAI 【TEN】",
+ "germanFontType":1,
+ "spanishText":"SENPU NO MAI 【TEN】",
+ "spanishFontType":1,
+ "neutralSpanishText":"SENPU NO MAI 【TEN】",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SENPU NO MAI 【TEN】",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_senpac",
+ "englishUsText":"SENPU NO MAI 【TEN】",
+ "englishUsFontType":1,
+ "frenchText":"SENPU NO MAI 【TEN】",
+ "frenchFontType":1,
+ "italianText":"SENPU NO MAI 【TEN】",
+ "italianFontType":1,
+ "germanText":"SENPU NO MAI 【TEN】",
+ "germanFontType":1,
+ "spanishText":"SENPU NO MAI 【TEN】",
+ "spanishFontType":1,
+ "neutralSpanishText":"SENPU NO MAI 【TEN】",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SENPU NO MAI 【TEN】",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_senpac",
+ "englishUsText":"SENPU NO MAI 【TEN】",
+ "englishUsFontType":1,
+ "frenchText":"SENPU NO MAI 【TEN】",
+ "frenchFontType":1,
+ "italianText":"SENPU NO MAI 【TEN】",
+ "italianFontType":1,
+ "germanText":"SENPU NO MAI 【TEN】",
+ "germanFontType":1,
+ "spanishText":"SENPU NO MAI 【TEN】",
+ "spanishFontType":1,
+ "neutralSpanishText":"SENPU NO MAI 【TEN】",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SENPU NO MAI 【TEN】",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_senpac",
+ "englishUsText":"旋風ノ舞【天】",
+ "englishUsFontType":0,
+ "frenchText":"旋風ノ舞【天】",
+ "frenchFontType":0,
+ "italianText":"旋風ノ舞【天】",
+ "italianFontType":0,
+ "germanText":"旋風ノ舞【天】",
+ "germanFontType":0,
+ "spanishText":"旋風ノ舞【天】",
+ "spanishFontType":0,
+ "neutralSpanishText":"旋風ノ舞【天】",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"旋風ノ舞【天】",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_senpac",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_senpcs",
+ "englishUsText":"SENPU NO MAI 【CHI】",
+ "englishUsFontType":1,
+ "frenchText":"SENPU NO MAI 【CHI】",
+ "frenchFontType":1,
+ "italianText":"SENPU NO MAI 【CHI】",
+ "italianFontType":1,
+ "germanText":"SENPU NO MAI 【CHI】",
+ "germanFontType":1,
+ "spanishText":"SENPU NO MAI 【CHI】",
+ "spanishFontType":1,
+ "neutralSpanishText":"SENPU NO MAI 【CHI】",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SENPU NO MAI 【CHI】",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_senpcs",
+ "englishUsText":"SENPU NO MAI 【CHI】",
+ "englishUsFontType":1,
+ "frenchText":"SENPU NO MAI 【CHI】",
+ "frenchFontType":1,
+ "italianText":"SENPU NO MAI 【CHI】",
+ "italianFontType":1,
+ "germanText":"SENPU NO MAI 【CHI】",
+ "germanFontType":1,
+ "spanishText":"SENPU NO MAI 【CHI】",
+ "spanishFontType":1,
+ "neutralSpanishText":"SENPU NO MAI 【CHI】",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SENPU NO MAI 【CHI】",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_senpcs",
+ "englishUsText":"SENPU NO MAI 【CHI】",
+ "englishUsFontType":1,
+ "frenchText":"SENPU NO MAI 【CHI】",
+ "frenchFontType":1,
+ "italianText":"SENPU NO MAI 【CHI】",
+ "italianFontType":1,
+ "germanText":"SENPU NO MAI 【CHI】",
+ "germanFontType":1,
+ "spanishText":"SENPU NO MAI 【CHI】",
+ "spanishFontType":1,
+ "neutralSpanishText":"SENPU NO MAI 【CHI】",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SENPU NO MAI 【CHI】",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_senpcs",
+ "englishUsText":"旋風ノ舞【地】",
+ "englishUsFontType":0,
+ "frenchText":"旋風ノ舞【地】",
+ "frenchFontType":0,
+ "italianText":"旋風ノ舞【地】",
+ "italianFontType":0,
+ "germanText":"旋風ノ舞【地】",
+ "germanFontType":0,
+ "spanishText":"旋風ノ舞【地】",
+ "spanishFontType":0,
+ "neutralSpanishText":"旋風ノ舞【地】",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"旋風ノ舞【地】",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_senpcs",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_argmem",
+ "englishUsText":"Argent Memories",
+ "englishUsFontType":1,
+ "frenchText":"Argent Memories",
+ "frenchFontType":1,
+ "italianText":"Argent Memories",
+ "italianFontType":1,
+ "germanText":"Argent Memories",
+ "germanFontType":1,
+ "spanishText":"Argent Memories",
+ "spanishFontType":1,
+ "neutralSpanishText":"Argent Memories",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Argent Memories",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_argmem",
+ "englishUsText":"Argent Memories",
+ "englishUsFontType":1,
+ "frenchText":"Argent Memories",
+ "frenchFontType":1,
+ "italianText":"Argent Memories",
+ "italianFontType":1,
+ "germanText":"Argent Memories",
+ "germanFontType":1,
+ "spanishText":"Argent Memories",
+ "spanishFontType":1,
+ "neutralSpanishText":"Argent Memories",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Argent Memories",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_argmem",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_argmem",
+ "englishUsText":"Argent Memories",
+ "englishUsFontType":0,
+ "frenchText":"Argent Memories",
+ "frenchFontType":0,
+ "italianText":"Argent Memories",
+ "italianFontType":0,
+ "germanText":"Argent Memories",
+ "germanFontType":0,
+ "spanishText":"Argent Memories",
+ "spanishFontType":0,
+ "neutralSpanishText":"Argent Memories",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Argent Memories",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_argmem",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_hypmic",
+ "englishUsText":"HYPNOSISMIC -Division Battle Anthem-",
+ "englishUsFontType":1,
+ "frenchText":"HYPNOSISMIC -Division Battle Anthem-",
+ "frenchFontType":1,
+ "italianText":"HYPNOSISMIC -Division Battle Anthem-",
+ "italianFontType":1,
+ "germanText":"HYPNOSISMIC -Division Battle Anthem-",
+ "germanFontType":1,
+ "spanishText":"HYPNOSISMIC -Division Battle Anthem-",
+ "spanishFontType":1,
+ "neutralSpanishText":"HYPNOSISMIC -Division Battle Anthem-",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HYPNOSISMIC -Division Battle Anthem-",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_hypmic",
+ "englishUsText":"HYPNOSISMIC\n-Division Battle Anthem-",
+ "englishUsFontType":1,
+ "frenchText":"HYPNOSISMIC\n-Division Battle Anthem-",
+ "frenchFontType":1,
+ "italianText":"HYPNOSISMIC\n-Division Battle Anthem-",
+ "italianFontType":1,
+ "germanText":"HYPNOSISMIC\n-Division Battle Anthem-",
+ "germanFontType":1,
+ "spanishText":"HYPNOSISMIC\n-Division Battle Anthem-",
+ "spanishFontType":1,
+ "neutralSpanishText":"HYPNOSISMIC\n-Division Battle Anthem-",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HYPNOSISMIC\n-Division Battle Anthem-",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_hypmic",
+ "englishUsText":"HYPNOSISMIC -Division Battle Anthem-",
+ "englishUsFontType":1,
+ "frenchText":"HYPNOSISMIC -Division Battle Anthem-",
+ "frenchFontType":1,
+ "italianText":"HYPNOSISMIC -Division Battle Anthem-",
+ "italianFontType":1,
+ "germanText":"HYPNOSISMIC -Division Battle Anthem-",
+ "germanFontType":1,
+ "spanishText":"HYPNOSISMIC -Division Battle Anthem-",
+ "spanishFontType":1,
+ "neutralSpanishText":"HYPNOSISMIC -Division Battle Anthem-",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HYPNOSISMIC -Division Battle Anthem-",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_hypmic",
+ "englishUsText":"ヒプノシスマイク -Division Battle Anthem-",
+ "englishUsFontType":0,
+ "frenchText":"ヒプノシスマイク -Division Battle Anthem-",
+ "frenchFontType":0,
+ "italianText":"ヒプノシスマイク -Division Battle Anthem-",
+ "italianFontType":0,
+ "germanText":"ヒプノシスマイク -Division Battle Anthem-",
+ "germanFontType":0,
+ "spanishText":"ヒプノシスマイク -Division Battle Anthem-",
+ "spanishFontType":0,
+ "neutralSpanishText":"ヒプノシスマイク -Division Battle Anthem-",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ヒプノシスマイク -Division Battle Anthem-",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_hypmic",
+ "englishUsText":"Division All Stars",
+ "englishUsFontType":1,
+ "frenchText":"Division All Stars",
+ "frenchFontType":1,
+ "italianText":"Division All Stars",
+ "italianFontType":1,
+ "germanText":"Division All Stars",
+ "germanFontType":1,
+ "spanishText":"Division All Stars",
+ "spanishFontType":1,
+ "neutralSpanishText":"Division All Stars",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Division All Stars",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_sqr",
+ "englishUsText":"sportsdigesdon",
+ "englishUsFontType":1,
+ "frenchText":"sportsdigesdon",
+ "frenchFontType":1,
+ "italianText":"sportsdigesdon",
+ "italianFontType":1,
+ "germanText":"sportsdigesdon",
+ "germanFontType":1,
+ "spanishText":"sportsdigesdon",
+ "spanishFontType":1,
+ "neutralSpanishText":"sportsdigesdon",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"sportsdigesdon",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_rezero",
+ "englishUsText":"paradisus‐paradoxum",
+ "englishUsFontType":1,
+ "frenchText":"paradisus‐paradoxum",
+ "frenchFontType":1,
+ "italianText":"paradisus‐paradoxum",
+ "italianFontType":1,
+ "germanText":"paradisus‐paradoxum",
+ "germanFontType":1,
+ "spanishText":"paradisus‐paradoxum",
+ "spanishFontType":1,
+ "neutralSpanishText":"paradisus‐paradoxum",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"paradisus‐paradoxum",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_clstoc",
+ "englishUsText":"toccataandfugueandrock",
+ "englishUsFontType":1,
+ "frenchText":"toccataetfugueetrock",
+ "frenchFontType":1,
+ "italianText":"toccataefugaerock",
+ "italianFontType":1,
+ "germanText":"toccataundfugeundrock",
+ "germanFontType":1,
+ "spanishText":"tocatayfugayrock",
+ "spanishFontType":1,
+ "neutralSpanishText":"tocatayfugayrock",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"tocataefugaerock",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_medjed",
+ "englishUsText":"hinarumedjednohinaruyu-utsu",
+ "englishUsFontType":1,
+ "frenchText":"hinarumedjednohinaruyu-utsu",
+ "frenchFontType":1,
+ "italianText":"hinarumedjednohinaruyu-utsu",
+ "italianFontType":1,
+ "germanText":"hinarumedjednohinaruyu-utsu",
+ "germanFontType":1,
+ "spanishText":"hinarumedjednohinaruyu-utsu",
+ "spanishFontType":1,
+ "neutralSpanishText":"hinarumedjednohinaruyu-utsu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"hinarumedjednohinaruyu-utsu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_senpac",
+ "englishUsText":"senpunomai【ten】",
+ "englishUsFontType":1,
+ "frenchText":"senpunomai【ten】",
+ "frenchFontType":1,
+ "italianText":"senpunomai【ten】",
+ "italianFontType":1,
+ "germanText":"senpunomai【ten】",
+ "germanFontType":1,
+ "spanishText":"senpunomai【ten】",
+ "spanishFontType":1,
+ "neutralSpanishText":"senpunomai【ten】",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"senpunomai【ten】",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_senpcs",
+ "englishUsText":"senpunomai【chi】",
+ "englishUsFontType":1,
+ "frenchText":"senpunomai【chi】",
+ "frenchFontType":1,
+ "italianText":"senpunomai【chi】",
+ "italianFontType":1,
+ "germanText":"senpunomai【chi】",
+ "germanFontType":1,
+ "spanishText":"senpunomai【chi】",
+ "spanishFontType":1,
+ "neutralSpanishText":"senpunomai【chi】",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"senpunomai【chi】",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_argmem",
+ "englishUsText":"argentmemories",
+ "englishUsFontType":1,
+ "frenchText":"argentmemories",
+ "frenchFontType":1,
+ "italianText":"argentmemories",
+ "italianFontType":1,
+ "germanText":"argentmemories",
+ "germanFontType":1,
+ "spanishText":"argentmemories",
+ "spanishFontType":1,
+ "neutralSpanishText":"argentmemories",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"argentmemories",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_hypmic",
+ "englishUsText":"hypnosismic-divisionbattleanthem-",
+ "englishUsFontType":1,
+ "frenchText":"hypnosismic-divisionbattleanthem-",
+ "frenchFontType":1,
+ "italianText":"hypnosismic-divisionbattleanthem-",
+ "italianFontType":1,
+ "germanText":"hypnosismic-divisionbattleanthem-",
+ "germanFontType":1,
+ "spanishText":"hypnosismic-divisionbattleanthem-",
+ "spanishFontType":1,
+ "neutralSpanishText":"hypnosismic-divisionbattleanthem-",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"hypnosismic-divisionbattleanthem-",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_thmrs",
+ "englishUsText":"I ♥ 「Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_sysurf",
+ "englishUsText":"I ♥ 「Surf Zapping」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Surf Zapping」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Surf Zapping」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Surf Zapping」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Surf Zapping」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Surf Zapping」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Surf Zapping」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_retoko",
+ "englishUsText":"I ♥ 「REITOKO CJ ~Amen TAIKO Brothers~」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「REITOKO CJ ~Amen TAIKO Brothers~」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「REITOKO CJ ~Amen TAIKO Brothers~」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「REITOKO CJ ~Amen TAIKO Brothers~」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「REITOKO CJ ~Amen TAIKO Brothers~」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「REITOKO CJ ~Amen TAIKO Brothers~」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「REITOKO CJ ~Amen TAIKO Brothers~」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_magdrm",
+ "englishUsText":"I ♥ 「The Magician's Dream」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「The Magician's Dream」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「The Magician's Dream」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「The Magician's Dream」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「The Magician's Dream」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「The Magician's Dream」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「The Magician's Dream」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_wara2k",
+ "englishUsText":"I ♥ 「WARAERU2000」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「WARAERU2000」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「WARAERU2000」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「WARAERU2000」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「WARAERU2000」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「WARAERU2000」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「WARAERU2000」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_thmrs",
+ "englishUsText":"I ♥ 「Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_sysurf",
+ "englishUsText":"I ♥ 「Surf Zapping」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Surf Zapping」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Surf Zapping」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Surf Zapping」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Surf Zapping」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Surf Zapping」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Surf Zapping」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_retoko",
+ "englishUsText":"I ♥ 「REITOKO CJ ~Amen TAIKO Brothers~」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「REITOKO CJ ~Amen TAIKO Brothers~」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「REITOKO CJ ~Amen TAIKO Brothers~」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「REITOKO CJ ~Amen TAIKO Brothers~」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「REITOKO CJ ~Amen TAIKO Brothers~」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「REITOKO CJ ~Amen TAIKO Brothers~」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「REITOKO CJ ~Amen TAIKO Brothers~」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_magdrm",
+ "englishUsText":"I ♥ 「The Magician's Dream」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「The Magician's Dream」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「The Magician's Dream」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「The Magician's Dream」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「The Magician's Dream」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「The Magician's Dream」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「The Magician's Dream」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_wara2k",
+ "englishUsText":"I ♥ 「WARAERU2000」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「WARAERU2000」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「WARAERU2000」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「WARAERU2000」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「WARAERU2000」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「WARAERU2000」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「WARAERU2000」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_thmrs",
+ "englishUsText":"Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita",
+ "englishUsFontType":1,
+ "frenchText":"Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita",
+ "frenchFontType":1,
+ "italianText":"Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita",
+ "italianFontType":1,
+ "germanText":"Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita",
+ "germanFontType":1,
+ "spanishText":"Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita",
+ "spanishFontType":1,
+ "neutralSpanishText":"Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_thmrs",
+ "englishUsText":"Marisa Wa Taihen Na Mono Wo\nNusunde Ikimashita",
+ "englishUsFontType":1,
+ "frenchText":"Marisa Wa Taihen Na Mono Wo\nNusunde Ikimashita",
+ "frenchFontType":1,
+ "italianText":"Marisa Wa Taihen Na Mono Wo\nNusunde Ikimashita",
+ "italianFontType":1,
+ "germanText":"Marisa Wa Taihen Na Mono Wo\nNusunde Ikimashita",
+ "germanFontType":1,
+ "spanishText":"Marisa Wa Taihen Na Mono Wo\nNusunde Ikimashita",
+ "spanishFontType":1,
+ "neutralSpanishText":"Marisa Wa Taihen Na Mono Wo\nNusunde Ikimashita",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Marisa Wa Taihen Na Mono Wo\nNusunde Ikimashita",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_thmrs",
+ "englishUsText":"Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita",
+ "englishUsFontType":1,
+ "frenchText":"Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita",
+ "frenchFontType":1,
+ "italianText":"Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita",
+ "italianFontType":1,
+ "germanText":"Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita",
+ "germanFontType":1,
+ "spanishText":"Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita",
+ "spanishFontType":1,
+ "neutralSpanishText":"Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_thmrs",
+ "englishUsText":"魔理沙は大変なものを盗んでいきました",
+ "englishUsFontType":0,
+ "frenchText":"魔理沙は大変なものを盗んでいきました",
+ "frenchFontType":0,
+ "italianText":"魔理沙は大変なものを盗んでいきました",
+ "italianFontType":0,
+ "germanText":"魔理沙は大変なものを盗んでいきました",
+ "germanFontType":0,
+ "spanishText":"魔理沙は大変なものを盗んでいきました",
+ "spanishFontType":0,
+ "neutralSpanishText":"魔理沙は大変なものを盗んでいきました",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"魔理沙は大変なものを盗んでいきました",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_thmrs",
+ "englishUsText":"Touhou Project Arrange / ARM+Youno Yoshimi(IOSYS) feat.Fujisaki Karin",
+ "englishUsFontType":1,
+ "frenchText":"Touhou Project Arrange / ARM+Youno Yoshimi(IOSYS) feat.Fujisaki Karin",
+ "frenchFontType":1,
+ "italianText":"Touhou Project Arrange / ARM+Youno Yoshimi(IOSYS) feat.Fujisaki Karin",
+ "italianFontType":1,
+ "germanText":"Touhou Project Arrange / ARM+Youno Yoshimi(IOSYS) feat.Fujisaki Karin",
+ "germanFontType":1,
+ "spanishText":"Touhou Project Arrange / ARM+Youno Yoshimi(IOSYS) feat.Fujisaki Karin",
+ "spanishFontType":1,
+ "neutralSpanishText":"Touhou Project Arrange / ARM+Youno Yoshimi(IOSYS) feat.Fujisaki Karin",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Touhou Project Arrange / ARM+Youno Yoshimi(IOSYS) feat.Fujisaki Karin",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sysurf",
+ "englishUsText":"Surf Zapping",
+ "englishUsFontType":1,
+ "frenchText":"Surf Zapping",
+ "frenchFontType":1,
+ "italianText":"Surf Zapping",
+ "italianFontType":1,
+ "germanText":"Surf Zapping",
+ "germanFontType":1,
+ "spanishText":"Surf Zapping",
+ "spanishFontType":1,
+ "neutralSpanishText":"Surf Zapping",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Surf Zapping",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_sysurf",
+ "englishUsText":"Surf Zapping",
+ "englishUsFontType":1,
+ "frenchText":"Surf Zapping",
+ "frenchFontType":1,
+ "italianText":"Surf Zapping",
+ "italianFontType":1,
+ "germanText":"Surf Zapping",
+ "germanFontType":1,
+ "spanishText":"Surf Zapping",
+ "spanishFontType":1,
+ "neutralSpanishText":"Surf Zapping",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Surf Zapping",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_sysurf",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_sysurf",
+ "englishUsText":"Surf Zapping",
+ "englishUsFontType":0,
+ "frenchText":"Surf Zapping",
+ "frenchFontType":0,
+ "italianText":"Surf Zapping",
+ "italianFontType":0,
+ "germanText":"Surf Zapping",
+ "germanFontType":0,
+ "spanishText":"Surf Zapping",
+ "spanishFontType":0,
+ "neutralSpanishText":"Surf Zapping",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Surf Zapping",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_sysurf",
+ "englishUsText":"t+pazolite From \" Synchronica \"",
+ "englishUsFontType":1,
+ "frenchText":"t+pazolite From \" Synchronica \"",
+ "frenchFontType":1,
+ "italianText":"t+pazolite From \" Synchronica \"",
+ "italianFontType":1,
+ "germanText":"t+pazolite From \" Synchronica \"",
+ "germanFontType":1,
+ "spanishText":"t+pazolite From \" Synchronica \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"t+pazolite From \" Synchronica \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"t+pazolite From \" Synchronica \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_retoko",
+ "englishUsText":"REITOKO CJ ~Amen TAIKO Brothers~",
+ "englishUsFontType":1,
+ "frenchText":"REITOKO CJ ~Amen TAIKO Brothers~",
+ "frenchFontType":1,
+ "italianText":"REITOKO CJ ~Amen TAIKO Brothers~",
+ "italianFontType":1,
+ "germanText":"REITOKO CJ ~Amen TAIKO Brothers~",
+ "germanFontType":1,
+ "spanishText":"REITOKO CJ ~Amen TAIKO Brothers~",
+ "spanishFontType":1,
+ "neutralSpanishText":"REITOKO CJ ~Amen TAIKO Brothers~",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"REITOKO CJ ~Amen TAIKO Brothers~",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_retoko",
+ "englishUsText":"REITOKO CJ\n~Amen TAIKO Brothers~",
+ "englishUsFontType":1,
+ "frenchText":"REITOKO CJ\n~Amen TAIKO Brothers~",
+ "frenchFontType":1,
+ "italianText":"REITOKO CJ\n~Amen TAIKO Brothers~",
+ "italianFontType":1,
+ "germanText":"REITOKO CJ\n~Amen TAIKO Brothers~",
+ "germanFontType":1,
+ "spanishText":"REITOKO CJ\n~Amen TAIKO Brothers~",
+ "spanishFontType":1,
+ "neutralSpanishText":"REITOKO CJ\n~Amen TAIKO Brothers~",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"REITOKO CJ\n~Amen TAIKO Brothers~",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_retoko",
+ "englishUsText":"REITOKO CJ ~Amen TAIKO Brothers~",
+ "englishUsFontType":1,
+ "frenchText":"REITOKO CJ ~Amen TAIKO Brothers~",
+ "frenchFontType":1,
+ "italianText":"REITOKO CJ ~Amen TAIKO Brothers~",
+ "italianFontType":1,
+ "germanText":"REITOKO CJ ~Amen TAIKO Brothers~",
+ "germanFontType":1,
+ "spanishText":"REITOKO CJ ~Amen TAIKO Brothers~",
+ "spanishFontType":1,
+ "neutralSpanishText":"REITOKO CJ ~Amen TAIKO Brothers~",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"REITOKO CJ ~Amen TAIKO Brothers~",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_retoko",
+ "englishUsText":"冷凍庫CJ ~嗚呼面太鼓ブラザーズ~",
+ "englishUsFontType":0,
+ "frenchText":"冷凍庫CJ ~嗚呼面太鼓ブラザーズ~",
+ "frenchFontType":0,
+ "italianText":"冷凍庫CJ ~嗚呼面太鼓ブラザーズ~",
+ "italianFontType":0,
+ "germanText":"冷凍庫CJ ~嗚呼面太鼓ブラザーズ~",
+ "germanFontType":0,
+ "spanishText":"冷凍庫CJ ~嗚呼面太鼓ブラザーズ~",
+ "spanishFontType":0,
+ "neutralSpanishText":"冷凍庫CJ ~嗚呼面太鼓ブラザーズ~",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"冷凍庫CJ ~嗚呼面太鼓ブラザーズ~",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_retoko",
+ "englishUsText":"DJKurara",
+ "englishUsFontType":1,
+ "frenchText":"DJKurara",
+ "frenchFontType":1,
+ "italianText":"DJKurara",
+ "italianFontType":1,
+ "germanText":"DJKurara",
+ "germanFontType":1,
+ "spanishText":"DJKurara",
+ "spanishFontType":1,
+ "neutralSpanishText":"DJKurara",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DJKurara",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_magdrm",
+ "englishUsText":"The Magician's Dream",
+ "englishUsFontType":1,
+ "frenchText":"The Magician's Dream",
+ "frenchFontType":1,
+ "italianText":"The Magician's Dream",
+ "italianFontType":1,
+ "germanText":"The Magician's Dream",
+ "germanFontType":1,
+ "spanishText":"The Magician's Dream",
+ "spanishFontType":1,
+ "neutralSpanishText":"The Magician's Dream",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"The Magician's Dream",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_magdrm",
+ "englishUsText":"The Magician's Dream",
+ "englishUsFontType":1,
+ "frenchText":"The Magician's Dream",
+ "frenchFontType":1,
+ "italianText":"The Magician's Dream",
+ "italianFontType":1,
+ "germanText":"The Magician's Dream",
+ "germanFontType":1,
+ "spanishText":"The Magician's Dream",
+ "spanishFontType":1,
+ "neutralSpanishText":"The Magician's Dream",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"The Magician's Dream",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_magdrm",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_magdrm",
+ "englishUsText":"The Magician’s Dream",
+ "englishUsFontType":0,
+ "frenchText":"The Magician’s Dream",
+ "frenchFontType":0,
+ "italianText":"The Magician’s Dream",
+ "italianFontType":0,
+ "germanText":"The Magician’s Dream",
+ "germanFontType":0,
+ "spanishText":"The Magician’s Dream",
+ "spanishFontType":0,
+ "neutralSpanishText":"The Magician’s Dream",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"The Magician’s Dream",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_magdrm",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_wara2k",
+ "englishUsText":"WARAERU2000",
+ "englishUsFontType":1,
+ "frenchText":"WARAERU2000",
+ "frenchFontType":1,
+ "italianText":"WARAERU2000",
+ "italianFontType":1,
+ "germanText":"WARAERU2000",
+ "germanFontType":1,
+ "spanishText":"WARAERU2000",
+ "spanishFontType":1,
+ "neutralSpanishText":"WARAERU2000",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"WARAERU2000",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_wara2k",
+ "englishUsText":"WARAERU2000",
+ "englishUsFontType":1,
+ "frenchText":"WARAERU2000",
+ "frenchFontType":1,
+ "italianText":"WARAERU2000",
+ "italianFontType":1,
+ "germanText":"WARAERU2000",
+ "germanFontType":1,
+ "spanishText":"WARAERU2000",
+ "spanishFontType":1,
+ "neutralSpanishText":"WARAERU2000",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"WARAERU2000",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_wara2k",
+ "englishUsText":"WARAERU2000",
+ "englishUsFontType":1,
+ "frenchText":"WARAERU2000",
+ "frenchFontType":1,
+ "italianText":"WARAERU2000",
+ "italianFontType":1,
+ "germanText":"WARAERU2000",
+ "germanFontType":1,
+ "spanishText":"WARAERU2000",
+ "spanishFontType":1,
+ "neutralSpanishText":"WARAERU2000",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"WARAERU2000",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_wara2k",
+ "englishUsText":"わら得る2000",
+ "englishUsFontType":0,
+ "frenchText":"わら得る2000",
+ "frenchFontType":0,
+ "italianText":"わら得る2000",
+ "italianFontType":0,
+ "germanText":"わら得る2000",
+ "germanFontType":0,
+ "spanishText":"わら得る2000",
+ "spanishFontType":0,
+ "neutralSpanishText":"わら得る2000",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"わら得る2000",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_wara2k",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_thmrs",
+ "englishUsText":"marisawataihennamonowonusundeikimashita",
+ "englishUsFontType":1,
+ "frenchText":"marisawataihennamonowonusundeikimashita",
+ "frenchFontType":1,
+ "italianText":"marisawataihennamonowonusundeikimashita",
+ "italianFontType":1,
+ "germanText":"marisawataihennamonowonusundeikimashita",
+ "germanFontType":1,
+ "spanishText":"marisawataihennamonowonusundeikimashita",
+ "spanishFontType":1,
+ "neutralSpanishText":"marisawataihennamonowonusundeikimashita",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"marisawataihennamonowonusundeikimashita",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_sysurf",
+ "englishUsText":"surfzapping",
+ "englishUsFontType":1,
+ "frenchText":"surfzapping",
+ "frenchFontType":1,
+ "italianText":"surfzapping",
+ "italianFontType":1,
+ "germanText":"surfzapping",
+ "germanFontType":1,
+ "spanishText":"surfzapping",
+ "spanishFontType":1,
+ "neutralSpanishText":"surfzapping",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"surfzapping",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_retoko",
+ "englishUsText":"reitokocj~amentaikobrothers~",
+ "englishUsFontType":1,
+ "frenchText":"reitokocj~amentaikobrothers~",
+ "frenchFontType":1,
+ "italianText":"reitokocj~amentaikobrothers~",
+ "italianFontType":1,
+ "germanText":"reitokocj~amentaikobrothers~",
+ "germanFontType":1,
+ "spanishText":"reitokocj~amentaikobrothers~",
+ "spanishFontType":1,
+ "neutralSpanishText":"reitokocj~amentaikobrothers~",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"reitokocj~amentaikobrothers~",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_magdrm",
+ "englishUsText":"themagician'sdream",
+ "englishUsFontType":1,
+ "frenchText":"themagician'sdream",
+ "frenchFontType":1,
+ "italianText":"themagician'sdream",
+ "italianFontType":1,
+ "germanText":"themagician'sdream",
+ "germanFontType":1,
+ "spanishText":"themagician'sdream",
+ "spanishFontType":1,
+ "neutralSpanishText":"themagician'sdream",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"themagician'sdream",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_wara2k",
+ "englishUsText":"waraeru2000",
+ "englishUsFontType":1,
+ "frenchText":"waraeru2000",
+ "frenchFontType":1,
+ "italianText":"waraeru2000",
+ "italianFontType":1,
+ "germanText":"waraeru2000",
+ "germanFontType":1,
+ "spanishText":"waraeru2000",
+ "spanishFontType":1,
+ "neutralSpanishText":"waraeru2000",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"waraeru2000",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_helhal",
+ "englishUsText":"I ♥ 「Hello! Halloween」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Hello! Halloween」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Hello! Halloween」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Hello! Halloween」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Hello! Halloween」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Hello! Halloween」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Hello! Halloween」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_doctrx",
+ "englishUsText":"I ♥ 「Doctor X -main theme-」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Doctor X -main theme-」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Doctor X -main theme-」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Doctor X -main theme-」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Doctor X -main theme-」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Doctor X -main theme-」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Doctor X -main theme-」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_clsdnu",
+ "englishUsText":"I ♥ 「The Lovely, Lively Danube」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Le Beau Danube bleu」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Sul bel Danubio blu」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Die liebliche, lebhafte Donau」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「El Danubio Azul」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「The Lovely, Lively Danube」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「The Lovely, Lively Danube」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_calib6",
+ "englishUsText":"I ♥ 「Undying Legend」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Undying Legend」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Undying Legend」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Undying Legend」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Undying Legend」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Undying Legend」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Undying Legend」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_germin",
+ "englishUsText":"I ♥ 「GERMINATION」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「GERMINATION」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「GERMINATION」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「GERMINATION」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「GERMINATION」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「GERMINATION」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「GERMINATION」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_sora6x",
+ "englishUsText":"I ♥ 「SORA-Ⅵ HINOTORI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SORA-Ⅵ HINOTORI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SORA-Ⅵ HINOTORI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SORA-Ⅵ HINOTORI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SORA-Ⅵ HINOTORI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SORA-Ⅵ HINOTORI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SORA-Ⅵ HINOTORI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_coquet",
+ "englishUsText":"I ♥ 「Coquette」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Coquette」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Coquette」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Coquette」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Coquette」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Coquette」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Coquette」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_udtmgl",
+ "englishUsText":"I ♥ 「MEGALOVANIA」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「MEGALOVANIA」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「MEGALOVANIA」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「MEGALOVANIA」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「MEGALOVANIA」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「MEGALOVANIA」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「MEGALOVANIA」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_udtkkr",
+ "englishUsText":"I ♥ 「Heartache」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Heartache」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Heartache」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Heartache」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Heartache」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Heartache」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Heartache」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_udtymt",
+ "englishUsText":"I ♥ 「Hopes and Dreams」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Hopes and Dreams」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Hopes and Dreams」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Hopes and Dreams」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Hopes and Dreams」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Hopes and Dreams」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Hopes and Dreams」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_helhal",
+ "englishUsText":"I ♥ 「Hello! Halloween」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Hello! Halloween」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Hello! Halloween」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Hello! Halloween」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Hello! Halloween」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Hello! Halloween」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Hello! Halloween」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_doctrx",
+ "englishUsText":"I ♥ 「Doctor X -main theme-」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Doctor X -main theme-」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Doctor X -main theme-」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Doctor X -main theme-」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Doctor X -main theme-」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Doctor X -main theme-」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Doctor X -main theme-」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_clsdnu",
+ "englishUsText":"I ♥ 「The Lovely, Lively Danube」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Le Beau Danube bleu」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Sul bel Danubio blu」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Die liebliche, lebhafte Donau」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「El Danubio Azul」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「The Lovely, Lively Danube」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「The Lovely, Lively Danube」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_calib6",
+ "englishUsText":"I ♥ 「Undying Legend」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Undying Legend」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Undying Legend」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Undying Legend」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Undying Legend」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Undying Legend」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Undying Legend」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_germin",
+ "englishUsText":"I ♥ 「GERMINATION」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「GERMINATION」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「GERMINATION」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「GERMINATION」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「GERMINATION」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「GERMINATION」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「GERMINATION」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_sora6x",
+ "englishUsText":"I ♥ 「SORA-Ⅵ HINOTORI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SORA-Ⅵ HINOTORI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SORA-Ⅵ HINOTORI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SORA-Ⅵ HINOTORI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SORA-Ⅵ HINOTORI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SORA-Ⅵ HINOTORI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SORA-Ⅵ HINOTORI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_coquet",
+ "englishUsText":"I ♥ 「Coquette」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Coquette」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Coquette」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Coquette」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Coquette」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Coquette」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Coquette」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_udtmgl",
+ "englishUsText":"I ♥ 「MEGALOVANIA」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「MEGALOVANIA」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「MEGALOVANIA」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「MEGALOVANIA」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「MEGALOVANIA」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「MEGALOVANIA」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「MEGALOVANIA」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_udtkkr",
+ "englishUsText":"I ♥ 「Heartache」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Heartache」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Heartache」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Heartache」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Heartache」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Heartache」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Heartache」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_udtymt",
+ "englishUsText":"I ♥ 「Hopes and Dreams」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Hopes and Dreams」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Hopes and Dreams」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Hopes and Dreams」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Hopes and Dreams」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Hopes and Dreams」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Hopes and Dreams」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_halloween",
+ "englishUsText":"Eeee-hee-hee-hee-hee!",
+ "englishUsFontType":1,
+ "frenchText":"Eeee-hee-hee-hee-hee !",
+ "frenchFontType":1,
+ "italianText":"Eee-eh-eh-eh-eh!",
+ "italianFontType":1,
+ "germanText":"Iiii-hi-hi-hi-hi!",
+ "germanFontType":1,
+ "spanishText":"¡Iiih, ji, ji, ji, ji!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Eeee-je-je-je-je!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hiii-hi-hi-hi-hi!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_halloween",
+ "englishUsText":"Began Trick-or-Taiko Fest",
+ "englishUsFontType":1,
+ "frenchText":"Fête Un sort ou un Taiko commencée",
+ "frenchFontType":1,
+ "italianText":"Festival Tamburo o scherzetto avviato",
+ "italianFontType":1,
+ "germanText":"Taiko-oder-Saures-Fest begonnen",
+ "germanFontType":1,
+ "spanishText":"Ha empezado el festival Truco o Taiko",
+ "spanishFontType":1,
+ "neutralSpanishText":"Empezó Truco o Taiko festival",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Começou o Truque ou Taiko Fest",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_halloweenex",
+ "englishUsText":"Trick-or-Taiko Fest Master",
+ "englishUsFontType":1,
+ "frenchText":"Maître de Fête Un sort ou un Taiko",
+ "frenchFontType":1,
+ "italianText":"Maestro festival Tamburo o scherzetto",
+ "italianFontType":1,
+ "germanText":"Taiko-oder-Saures-Fest-Meister",
+ "germanFontType":1,
+ "spanishText":"Maestro del festival Truco o Taiko",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro del Truco o Taiko Festival ",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre do Truque ou Taiko Fest",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_ghost",
+ "englishUsText":"Ghost",
+ "englishUsFontType":1,
+ "frenchText":"Fantôme",
+ "frenchFontType":1,
+ "italianText":"Fantasma",
+ "italianFontType":1,
+ "germanText":"Geist",
+ "germanFontType":1,
+ "spanishText":"Fantasma",
+ "spanishFontType":1,
+ "neutralSpanishText":"Fantasma",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Fantasma",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_halloween",
+ "englishUsText":"Halloween",
+ "englishUsFontType":1,
+ "frenchText":"Halloween",
+ "frenchFontType":1,
+ "italianText":"Halloween",
+ "italianFontType":1,
+ "germanText":"Halloween",
+ "germanFontType":1,
+ "spanishText":"Halloween",
+ "spanishFontType":1,
+ "neutralSpanishText":"Halloween",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Halloween",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_halloween",
+ "englishUsText":"Trick-or-Taiko Fest",
+ "englishUsFontType":1,
+ "frenchText":"Fête Un sort ou un Taiko",
+ "frenchFontType":1,
+ "italianText":"Festival Tamburo o scherzetto",
+ "italianFontType":1,
+ "germanText":"Taiko-oder-Saures-Fest",
+ "germanFontType":1,
+ "spanishText":"Festival Truco o Taiko",
+ "spanishFontType":1,
+ "neutralSpanishText":"Festival \nTruco o Taiko",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Truque ou Taiko Fest",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_helhal",
+ "englishUsText":"Hello! Halloween",
+ "englishUsFontType":1,
+ "frenchText":"Hello! Halloween",
+ "frenchFontType":1,
+ "italianText":"Hello! Halloween",
+ "italianFontType":1,
+ "germanText":"Hello! Halloween",
+ "germanFontType":1,
+ "spanishText":"Hello! Halloween",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hello! Halloween",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hello! Halloween",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_helhal",
+ "englishUsText":"Hello! Halloween",
+ "englishUsFontType":1,
+ "frenchText":"Hello! Halloween",
+ "frenchFontType":1,
+ "italianText":"Hello! Halloween",
+ "italianFontType":1,
+ "germanText":"Hello! Halloween",
+ "germanFontType":1,
+ "spanishText":"Hello! Halloween",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hello! Halloween",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hello! Halloween",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_helhal",
+ "englishUsText":"Hello! Halloween",
+ "englishUsFontType":1,
+ "frenchText":"Hello! Halloween",
+ "frenchFontType":1,
+ "italianText":"Hello! Halloween",
+ "italianFontType":1,
+ "germanText":"Hello! Halloween",
+ "germanFontType":1,
+ "spanishText":"Hello! Halloween",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hello! Halloween",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hello! Halloween",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_helhal",
+ "englishUsText":"ハロー!ハロウィン",
+ "englishUsFontType":0,
+ "frenchText":"ハロー!ハロウィン",
+ "frenchFontType":0,
+ "italianText":"ハロー!ハロウィン",
+ "italianFontType":0,
+ "germanText":"ハロー!ハロウィン",
+ "germanFontType":0,
+ "spanishText":"ハロー!ハロウィン",
+ "spanishFontType":0,
+ "neutralSpanishText":"ハロー!ハロウィン",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ハロー!ハロウィン",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_helhal",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_doctrx",
+ "englishUsText":"Doctor X -main theme-",
+ "englishUsFontType":1,
+ "frenchText":"Doctor X -main theme-",
+ "frenchFontType":1,
+ "italianText":"Doctor X -main theme-",
+ "italianFontType":1,
+ "germanText":"Doctor X -main theme-",
+ "germanFontType":1,
+ "spanishText":"Doctor X -main theme-",
+ "spanishFontType":1,
+ "neutralSpanishText":"Doctor X -main theme-",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Doctor X -main theme-",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_doctrx",
+ "englishUsText":"Doctor X -main theme-",
+ "englishUsFontType":1,
+ "frenchText":"Doctor X -main theme-",
+ "frenchFontType":1,
+ "italianText":"Doctor X -main theme-",
+ "italianFontType":1,
+ "germanText":"Doctor X -main theme-",
+ "germanFontType":1,
+ "spanishText":"Doctor X -main theme-",
+ "spanishFontType":1,
+ "neutralSpanishText":"Doctor X -main theme-",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Doctor X -main theme-",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_doctrx",
+ "englishUsText":"Doctor X -main theme-",
+ "englishUsFontType":1,
+ "frenchText":"Doctor X -main theme-",
+ "frenchFontType":1,
+ "italianText":"Doctor X -main theme-",
+ "italianFontType":1,
+ "germanText":"Doctor X -main theme-",
+ "germanFontType":1,
+ "spanishText":"Doctor X -main theme-",
+ "spanishFontType":1,
+ "neutralSpanishText":"Doctor X -main theme-",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Doctor X -main theme-",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_doctrx",
+ "englishUsText":"ドクターXのテーマ",
+ "englishUsFontType":0,
+ "frenchText":"ドクターXのテーマ",
+ "frenchFontType":0,
+ "italianText":"ドクターXのテーマ",
+ "italianFontType":0,
+ "germanText":"ドクターXのテーマ",
+ "germanFontType":0,
+ "spanishText":"ドクターXのテーマ",
+ "spanishFontType":0,
+ "neutralSpanishText":"ドクターXのテーマ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ドクターXのテーマ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_doctrx",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_clsdnu",
+ "englishUsText":"The Lovely, Lively Danube",
+ "englishUsFontType":1,
+ "frenchText":"Le Beau Danube bleu",
+ "frenchFontType":1,
+ "italianText":"Sul bel Danubio blu",
+ "italianFontType":1,
+ "germanText":"Die liebliche, lebhafte Donau",
+ "germanFontType":1,
+ "spanishText":"El Danubio Azul",
+ "spanishFontType":1,
+ "neutralSpanishText":"The Lovely, Lively Danube",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"The Lovely, Lively Danube",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_clsdnu",
+ "englishUsText":"The Lovely, Lively Danube",
+ "englishUsFontType":1,
+ "frenchText":"Le Beau Danube bleu",
+ "frenchFontType":1,
+ "italianText":"Sul bel Danubio blu",
+ "italianFontType":1,
+ "germanText":"Die liebliche, lebhafte Donau",
+ "germanFontType":1,
+ "spanishText":"El Danubio Azul",
+ "spanishFontType":1,
+ "neutralSpanishText":"The Lovely, Lively Danube",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"The Lovely, Lively Danube",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_clsdnu",
+ "englishUsText":"The Lovely, Lively Danube",
+ "englishUsFontType":1,
+ "frenchText":"Le Beau Danube bleu",
+ "frenchFontType":1,
+ "italianText":"Sul bel Danubio blu",
+ "italianFontType":1,
+ "germanText":"Die liebliche, lebhafte Donau",
+ "germanFontType":1,
+ "spanishText":"El Danubio Azul",
+ "spanishFontType":1,
+ "neutralSpanishText":"The Lovely, Lively Danube",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"The Lovely, Lively Danube",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_clsdnu",
+ "englishUsText":"美しく忙しきドナウ",
+ "englishUsFontType":0,
+ "frenchText":"美しく忙しきドナウ",
+ "frenchFontType":0,
+ "italianText":"美しく忙しきドナウ",
+ "italianFontType":0,
+ "germanText":"美しく忙しきドナウ",
+ "germanFontType":0,
+ "spanishText":"美しく忙しきドナウ",
+ "spanishFontType":0,
+ "neutralSpanishText":"美しく忙しきドナウ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"美しく忙しきドナウ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_clsdnu",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_calib6",
+ "englishUsText":"Undying Legend",
+ "englishUsFontType":1,
+ "frenchText":"Undying Legend",
+ "frenchFontType":1,
+ "italianText":"Undying Legend",
+ "italianFontType":1,
+ "germanText":"Undying Legend",
+ "germanFontType":1,
+ "spanishText":"Undying Legend",
+ "spanishFontType":1,
+ "neutralSpanishText":"Undying Legend",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Undying Legend",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_calib6",
+ "englishUsText":"Undying Legend",
+ "englishUsFontType":1,
+ "frenchText":"Undying Legend",
+ "frenchFontType":1,
+ "italianText":"Undying Legend",
+ "italianFontType":1,
+ "germanText":"Undying Legend",
+ "germanFontType":1,
+ "spanishText":"Undying Legend",
+ "spanishFontType":1,
+ "neutralSpanishText":"Undying Legend",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Undying Legend",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_calib6",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_calib6",
+ "englishUsText":"Undying Legend",
+ "englishUsFontType":0,
+ "frenchText":"Undying Legend",
+ "frenchFontType":0,
+ "italianText":"Undying Legend",
+ "italianFontType":0,
+ "germanText":"Undying Legend",
+ "germanFontType":0,
+ "spanishText":"Undying Legend",
+ "spanishFontType":0,
+ "neutralSpanishText":"Undying Legend",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Undying Legend",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_calib6",
+ "englishUsText":"From \" SOULCALIBUR Ⅵ \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" SOULCALIBUR Ⅵ \"",
+ "frenchFontType":1,
+ "italianText":"Da \" SOULCALIBUR Ⅵ \"",
+ "italianFontType":1,
+ "germanText":"Aus \" SOULCALIBUR Ⅵ \"",
+ "germanFontType":1,
+ "spanishText":"De \" SOULCALIBUR Ⅵ \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" SOULCALIBUR Ⅵ \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" SOULCALIBUR Ⅵ \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_germin",
+ "englishUsText":"GERMINATION",
+ "englishUsFontType":1,
+ "frenchText":"GERMINATION",
+ "frenchFontType":1,
+ "italianText":"GERMINATION",
+ "italianFontType":1,
+ "germanText":"GERMINATION",
+ "germanFontType":1,
+ "spanishText":"GERMINATION",
+ "spanishFontType":1,
+ "neutralSpanishText":"GERMINATION",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"GERMINATION",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_germin",
+ "englishUsText":"GERMINATION",
+ "englishUsFontType":1,
+ "frenchText":"GERMINATION",
+ "frenchFontType":1,
+ "italianText":"GERMINATION",
+ "italianFontType":1,
+ "germanText":"GERMINATION",
+ "germanFontType":1,
+ "spanishText":"GERMINATION",
+ "spanishFontType":1,
+ "neutralSpanishText":"GERMINATION",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"GERMINATION",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_germin",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_germin",
+ "englishUsText":"GERMINATION",
+ "englishUsFontType":0,
+ "frenchText":"GERMINATION",
+ "frenchFontType":0,
+ "italianText":"GERMINATION",
+ "italianFontType":0,
+ "germanText":"GERMINATION",
+ "germanFontType":0,
+ "spanishText":"GERMINATION",
+ "spanishFontType":0,
+ "neutralSpanishText":"GERMINATION",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"GERMINATION",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_germin",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sora6x",
+ "englishUsText":"SORA-Ⅵ HINOTORI",
+ "englishUsFontType":1,
+ "frenchText":"SORA-Ⅵ HINOTORI",
+ "frenchFontType":1,
+ "italianText":"SORA-Ⅵ HINOTORI",
+ "italianFontType":1,
+ "germanText":"SORA-Ⅵ HINOTORI",
+ "germanFontType":1,
+ "spanishText":"SORA-Ⅵ HINOTORI",
+ "spanishFontType":1,
+ "neutralSpanishText":"SORA-Ⅵ HINOTORI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SORA-Ⅵ HINOTORI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_sora6x",
+ "englishUsText":"SORA-Ⅵ HINOTORI",
+ "englishUsFontType":1,
+ "frenchText":"SORA-Ⅵ HINOTORI",
+ "frenchFontType":1,
+ "italianText":"SORA-Ⅵ HINOTORI",
+ "italianFontType":1,
+ "germanText":"SORA-Ⅵ HINOTORI",
+ "germanFontType":1,
+ "spanishText":"SORA-Ⅵ HINOTORI",
+ "spanishFontType":1,
+ "neutralSpanishText":"SORA-Ⅵ HINOTORI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SORA-Ⅵ HINOTORI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_sora6x",
+ "englishUsText":"SORA-Ⅵ HINOTORI",
+ "englishUsFontType":1,
+ "frenchText":"SORA-Ⅵ HINOTORI",
+ "frenchFontType":1,
+ "italianText":"SORA-Ⅵ HINOTORI",
+ "italianFontType":1,
+ "germanText":"SORA-Ⅵ HINOTORI",
+ "germanFontType":1,
+ "spanishText":"SORA-Ⅵ HINOTORI",
+ "spanishFontType":1,
+ "neutralSpanishText":"SORA-Ⅵ HINOTORI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SORA-Ⅵ HINOTORI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_sora6x",
+ "englishUsText":"SORA‐Ⅵ 火ノ鳥",
+ "englishUsFontType":0,
+ "frenchText":"SORA‐Ⅵ 火ノ鳥",
+ "frenchFontType":0,
+ "italianText":"SORA‐Ⅵ 火ノ鳥",
+ "italianFontType":0,
+ "germanText":"SORA‐Ⅵ 火ノ鳥",
+ "germanFontType":0,
+ "spanishText":"SORA‐Ⅵ 火ノ鳥",
+ "spanishFontType":0,
+ "neutralSpanishText":"SORA‐Ⅵ 火ノ鳥",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"SORA‐Ⅵ 火ノ鳥",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_sora6x",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_coquet",
+ "englishUsText":"Coquette",
+ "englishUsFontType":1,
+ "frenchText":"Coquette",
+ "frenchFontType":1,
+ "italianText":"Coquette",
+ "italianFontType":1,
+ "germanText":"Coquette",
+ "germanFontType":1,
+ "spanishText":"Coquette",
+ "spanishFontType":1,
+ "neutralSpanishText":"Coquette",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Coquette",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_coquet",
+ "englishUsText":"Coquette",
+ "englishUsFontType":1,
+ "frenchText":"Coquette",
+ "frenchFontType":1,
+ "italianText":"Coquette",
+ "italianFontType":1,
+ "germanText":"Coquette",
+ "germanFontType":1,
+ "spanishText":"Coquette",
+ "spanishFontType":1,
+ "neutralSpanishText":"Coquette",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Coquette",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_coquet",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_coquet",
+ "englishUsText":"Coquette",
+ "englishUsFontType":0,
+ "frenchText":"Coquette",
+ "frenchFontType":0,
+ "italianText":"Coquette",
+ "italianFontType":0,
+ "germanText":"Coquette",
+ "germanFontType":0,
+ "spanishText":"Coquette",
+ "spanishFontType":0,
+ "neutralSpanishText":"Coquette",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Coquette",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_coquet",
+ "englishUsText":"Jun Kuroda",
+ "englishUsFontType":1,
+ "frenchText":"Jun Kuroda",
+ "frenchFontType":1,
+ "italianText":"Jun Kuroda",
+ "italianFontType":1,
+ "germanText":"Jun Kuroda",
+ "germanFontType":1,
+ "spanishText":"Jun Kuroda",
+ "spanishFontType":1,
+ "neutralSpanishText":"Jun Kuroda",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Jun Kuroda",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_udtmgl",
+ "englishUsText":"MEGALOVANIA",
+ "englishUsFontType":1,
+ "frenchText":"MEGALOVANIA",
+ "frenchFontType":1,
+ "italianText":"MEGALOVANIA",
+ "italianFontType":1,
+ "germanText":"MEGALOVANIA",
+ "germanFontType":1,
+ "spanishText":"MEGALOVANIA",
+ "spanishFontType":1,
+ "neutralSpanishText":"MEGALOVANIA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"MEGALOVANIA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_udtmgl",
+ "englishUsText":"MEGALOVANIA",
+ "englishUsFontType":1,
+ "frenchText":"MEGALOVANIA",
+ "frenchFontType":1,
+ "italianText":"MEGALOVANIA",
+ "italianFontType":1,
+ "germanText":"MEGALOVANIA",
+ "germanFontType":1,
+ "spanishText":"MEGALOVANIA",
+ "spanishFontType":1,
+ "neutralSpanishText":"MEGALOVANIA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"MEGALOVANIA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_udtmgl",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_udtmgl",
+ "englishUsText":"MEGALOVANIA",
+ "englishUsFontType":0,
+ "frenchText":"MEGALOVANIA",
+ "frenchFontType":0,
+ "italianText":"MEGALOVANIA",
+ "italianFontType":0,
+ "germanText":"MEGALOVANIA",
+ "germanFontType":0,
+ "spanishText":"MEGALOVANIA",
+ "spanishFontType":0,
+ "neutralSpanishText":"MEGALOVANIA",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"MEGALOVANIA",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_udtmgl",
+ "englishUsText":"From \" UNDERTALE \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" UNDERTALE \"",
+ "frenchFontType":1,
+ "italianText":"Da \" UNDERTALE \"",
+ "italianFontType":1,
+ "germanText":"Aus \" UNDERTALE \"",
+ "germanFontType":1,
+ "spanishText":"De \" UNDERTALE \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" UNDERTALE \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" UNDERTALE \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_udtkkr",
+ "englishUsText":"Heartache",
+ "englishUsFontType":1,
+ "frenchText":"Heartache",
+ "frenchFontType":1,
+ "italianText":"Heartache",
+ "italianFontType":1,
+ "germanText":"Heartache",
+ "germanFontType":1,
+ "spanishText":"Heartache",
+ "spanishFontType":1,
+ "neutralSpanishText":"Heartache",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Heartache",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_udtkkr",
+ "englishUsText":"Heartache",
+ "englishUsFontType":1,
+ "frenchText":"Heartache",
+ "frenchFontType":1,
+ "italianText":"Heartache",
+ "italianFontType":1,
+ "germanText":"Heartache",
+ "germanFontType":1,
+ "spanishText":"Heartache",
+ "spanishFontType":1,
+ "neutralSpanishText":"Heartache",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Heartache",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_udtkkr",
+ "englishUsText":"Heartache",
+ "englishUsFontType":1,
+ "frenchText":"Heartache",
+ "frenchFontType":1,
+ "italianText":"Heartache",
+ "italianFontType":1,
+ "germanText":"Heartache",
+ "germanFontType":1,
+ "spanishText":"Heartache",
+ "spanishFontType":1,
+ "neutralSpanishText":"Heartache",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Heartache",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_udtkkr",
+ "englishUsText":"心の痛み",
+ "englishUsFontType":0,
+ "frenchText":"心の痛み",
+ "frenchFontType":0,
+ "italianText":"心の痛み",
+ "italianFontType":0,
+ "germanText":"心の痛み",
+ "germanFontType":0,
+ "spanishText":"心の痛み",
+ "spanishFontType":0,
+ "neutralSpanishText":"心の痛み",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"心の痛み",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_udtkkr",
+ "englishUsText":"From \" UNDERTALE \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" UNDERTALE \"",
+ "frenchFontType":1,
+ "italianText":"Da \" UNDERTALE \"",
+ "italianFontType":1,
+ "germanText":"Aus \" UNDERTALE \"",
+ "germanFontType":1,
+ "spanishText":"De \" UNDERTALE \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" UNDERTALE \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" UNDERTALE \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_udtymt",
+ "englishUsText":"Hopes and Dreams",
+ "englishUsFontType":1,
+ "frenchText":"Hopes and Dreams",
+ "frenchFontType":1,
+ "italianText":"Hopes and Dreams",
+ "italianFontType":1,
+ "germanText":"Hopes and Dreams",
+ "germanFontType":1,
+ "spanishText":"Hopes and Dreams",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hopes and Dreams",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hopes and Dreams",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_udtymt",
+ "englishUsText":"Hopes and Dreams",
+ "englishUsFontType":1,
+ "frenchText":"Hopes and Dreams",
+ "frenchFontType":1,
+ "italianText":"Hopes and Dreams",
+ "italianFontType":1,
+ "germanText":"Hopes and Dreams",
+ "germanFontType":1,
+ "spanishText":"Hopes and Dreams",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hopes and Dreams",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hopes and Dreams",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_udtymt",
+ "englishUsText":"Hopes and Dreams",
+ "englishUsFontType":1,
+ "frenchText":"Hopes and Dreams",
+ "frenchFontType":1,
+ "italianText":"Hopes and Dreams",
+ "italianFontType":1,
+ "germanText":"Hopes and Dreams",
+ "germanFontType":1,
+ "spanishText":"Hopes and Dreams",
+ "spanishFontType":1,
+ "neutralSpanishText":"Hopes and Dreams",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Hopes and Dreams",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_udtymt",
+ "englishUsText":"夢と希望",
+ "englishUsFontType":0,
+ "frenchText":"夢と希望",
+ "frenchFontType":0,
+ "italianText":"夢と希望",
+ "italianFontType":0,
+ "germanText":"夢と希望",
+ "germanFontType":0,
+ "spanishText":"夢と希望",
+ "spanishFontType":0,
+ "neutralSpanishText":"夢と希望",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"夢と希望",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_udtymt",
+ "englishUsText":"From \" UNDERTALE \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" UNDERTALE \"",
+ "frenchFontType":1,
+ "italianText":"Da \" UNDERTALE \"",
+ "italianFontType":1,
+ "germanText":"Aus \" UNDERTALE \"",
+ "germanFontType":1,
+ "spanishText":"De \" UNDERTALE \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" UNDERTALE \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" UNDERTALE \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_helhal",
+ "englishUsText":"hello!halloween",
+ "englishUsFontType":1,
+ "frenchText":"hello!halloween",
+ "frenchFontType":1,
+ "italianText":"hello!halloween",
+ "italianFontType":1,
+ "germanText":"hello!halloween",
+ "germanFontType":1,
+ "spanishText":"hello!halloween",
+ "spanishFontType":1,
+ "neutralSpanishText":"hello!halloween",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"hello!halloween",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_doctrx",
+ "englishUsText":"doctorx-maintheme-",
+ "englishUsFontType":1,
+ "frenchText":"doctorx-maintheme-",
+ "frenchFontType":1,
+ "italianText":"doctorx-maintheme-",
+ "italianFontType":1,
+ "germanText":"doctorx-maintheme-",
+ "germanFontType":1,
+ "spanishText":"doctorx-maintheme-",
+ "spanishFontType":1,
+ "neutralSpanishText":"doctorx-maintheme-",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"doctorx-maintheme-",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_clsdnu",
+ "englishUsText":"thelovely,livelydanube",
+ "englishUsFontType":1,
+ "frenchText":"lebeaudanubebleu",
+ "frenchFontType":1,
+ "italianText":"sulbeldanubioblu",
+ "italianFontType":1,
+ "germanText":"dieliebliche,lebhaftedonau",
+ "germanFontType":1,
+ "spanishText":"eldanubioazul",
+ "spanishFontType":1,
+ "neutralSpanishText":"thelovely,livelydanube",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"thelovely,livelydanube",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_calib6",
+ "englishUsText":"undyinglegend",
+ "englishUsFontType":1,
+ "frenchText":"undyinglegend",
+ "frenchFontType":1,
+ "italianText":"undyinglegend",
+ "italianFontType":1,
+ "germanText":"undyinglegend",
+ "germanFontType":1,
+ "spanishText":"undyinglegend",
+ "spanishFontType":1,
+ "neutralSpanishText":"undyinglegend",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"undyinglegend",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_germin",
+ "englishUsText":"germination",
+ "englishUsFontType":1,
+ "frenchText":"germination",
+ "frenchFontType":1,
+ "italianText":"germination",
+ "italianFontType":1,
+ "germanText":"germination",
+ "germanFontType":1,
+ "spanishText":"germination",
+ "spanishFontType":1,
+ "neutralSpanishText":"germination",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"germination",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_sora6x",
+ "englishUsText":"sora-Ⅵhinotori",
+ "englishUsFontType":1,
+ "frenchText":"sora-Ⅵhinotori",
+ "frenchFontType":1,
+ "italianText":"sora-Ⅵhinotori",
+ "italianFontType":1,
+ "germanText":"sora-Ⅵhinotori",
+ "germanFontType":1,
+ "spanishText":"sora-Ⅵhinotori",
+ "spanishFontType":1,
+ "neutralSpanishText":"sora-Ⅵhinotori",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"sora-Ⅵhinotori",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_coquet",
+ "englishUsText":"coquette",
+ "englishUsFontType":1,
+ "frenchText":"coquette",
+ "frenchFontType":1,
+ "italianText":"coquette",
+ "italianFontType":1,
+ "germanText":"coquette",
+ "germanFontType":1,
+ "spanishText":"coquette",
+ "spanishFontType":1,
+ "neutralSpanishText":"coquette",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"coquette",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_udtmgl",
+ "englishUsText":"megalovania",
+ "englishUsFontType":1,
+ "frenchText":"megalovania",
+ "frenchFontType":1,
+ "italianText":"megalovania",
+ "italianFontType":1,
+ "germanText":"megalovania",
+ "germanFontType":1,
+ "spanishText":"megalovania",
+ "spanishFontType":1,
+ "neutralSpanishText":"megalovania",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"megalovania",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_udtkkr",
+ "englishUsText":"heartache",
+ "englishUsFontType":1,
+ "frenchText":"heartache",
+ "frenchFontType":1,
+ "italianText":"heartache",
+ "italianFontType":1,
+ "germanText":"heartache",
+ "germanFontType":1,
+ "spanishText":"heartache",
+ "spanishFontType":1,
+ "neutralSpanishText":"heartache",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"heartache",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_udtymt",
+ "englishUsText":"hopesanddreams",
+ "englishUsFontType":1,
+ "frenchText":"hopesanddreams",
+ "frenchFontType":1,
+ "italianText":"hopesanddreams",
+ "italianFontType":1,
+ "germanText":"hopesanddreams",
+ "germanFontType":1,
+ "spanishText":"hopesanddreams",
+ "spanishFontType":1,
+ "neutralSpanishText":"hopesanddreams",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"hopesanddreams",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_vfpetr",
+ "englishUsText":"I ♥ 「Ameto Petora」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Ameto Petora」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Ameto Petora」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Ameto Petora」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Ameto Petora」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Ameto Petora」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Ameto Petora」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_kaiki",
+ "englishUsText":"I ♥ 「Total Eclipse 2035」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Total Eclipse 2035」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Total Eclipse 2035」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Total Eclipse 2035」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Total Eclipse 2035」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Total Eclipse 2035」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Total Eclipse 2035」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_shgclr",
+ "englishUsText":"I ♥ 「colorful」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「colorful」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「colorful」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「colorful」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「colorful」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「colorful」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「colorful」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_mintte",
+ "englishUsText":"I ♥ 「mint tears」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「mint tears」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「mint tears」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「mint tears」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「mint tears」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「mint tears」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「mint tears」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_solstr",
+ "englishUsText":"I ♥ 「Solitude Star」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Solitude Star」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Solitude Star」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Solitude Star」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Solitude Star」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Solitude Star」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Solitude Star」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_manpu2",
+ "englishUsText":"I ♥ 「Anata To Tu Lat Tat Ta♪」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Anata To Tu Lat Tat Ta♪」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Anata To Tu Lat Tat Ta♪」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Anata To Tu Lat Tat Ta♪」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Anata To Tu Lat Tat Ta♪」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Anata To Tu Lat Tat Ta♪」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Anata To Tu Lat Tat Ta♪」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_kimetu",
+ "englishUsText":"I ♥ 「Gurenge」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「GURENGE」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「GURENGE」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「GURENGE」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「GURENGE」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「GURENGE」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「GURENGE」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_digmon",
+ "englishUsText":"I ♥ 「Butter-Fly」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Butter-Fly」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Butter-Fly」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Butter-Fly」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Butter-Fly」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Butter-Fly」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Butter-Fly」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_vfpetr",
+ "englishUsText":"I ♥ 「Ameto Petora」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Ameto Petora」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Ameto Petora」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Ameto Petora」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Ameto Petora」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Ameto Petora」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Ameto Petora」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_kaiki",
+ "englishUsText":"I ♥ 「Total Eclipse 2035」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Total Eclipse 2035」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Total Eclipse 2035」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Total Eclipse 2035」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Total Eclipse 2035」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Total Eclipse 2035」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Total Eclipse 2035」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_shgclr",
+ "englishUsText":"I ♥ 「colorful」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「colorful」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「colorful」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「colorful」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「colorful」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「colorful」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「colorful」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_mintte",
+ "englishUsText":"I ♥ 「mint tears」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「mint tears」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「mint tears」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「mint tears」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「mint tears」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「mint tears」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「mint tears」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_solstr",
+ "englishUsText":"I ♥ 「Solitude Star」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Solitude Star」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Solitude Star」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Solitude Star」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Solitude Star」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Solitude Star」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Solitude Star」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_manpu2",
+ "englishUsText":"I ♥ 「Anata To Tu Lat Tat Ta♪」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Anata To Tu Lat Tat Ta♪」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Anata To Tu Lat Tat Ta♪」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Anata To Tu Lat Tat Ta♪」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Anata To Tu Lat Tat Ta♪」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Anata To Tu Lat Tat Ta♪」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Anata To Tu Lat Tat Ta♪」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_kimetu",
+ "englishUsText":"I ♥ 「Gurenge」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「GURENGE」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「GURENGE」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「GURENGE」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「GURENGE」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「GURENGE」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「GURENGE」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_digmon",
+ "englishUsText":"I ♥ 「Butter-Fly」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Butter-Fly」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Butter-Fly」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Butter-Fly」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Butter-Fly」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Butter-Fly」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Butter-Fly」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_vfpetr",
+ "englishUsText":"Ameto Petora",
+ "englishUsFontType":1,
+ "frenchText":"Ameto Petora",
+ "frenchFontType":1,
+ "italianText":"Ameto Petora",
+ "italianFontType":1,
+ "germanText":"Ameto Petora",
+ "germanFontType":1,
+ "spanishText":"Ameto Petora",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ameto Petora",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ameto Petora",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_vfpetr",
+ "englishUsText":"Ameto Petora",
+ "englishUsFontType":1,
+ "frenchText":"Ameto Petora",
+ "frenchFontType":1,
+ "italianText":"Ameto Petora",
+ "italianFontType":1,
+ "germanText":"Ameto Petora",
+ "germanFontType":1,
+ "spanishText":"Ameto Petora",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ameto Petora",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ameto Petora",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_vfpetr",
+ "englishUsText":"Ameto Petora",
+ "englishUsFontType":1,
+ "frenchText":"Ameto Petora",
+ "frenchFontType":1,
+ "italianText":"Ameto Petora",
+ "italianFontType":1,
+ "germanText":"Ameto Petora",
+ "germanFontType":1,
+ "spanishText":"Ameto Petora",
+ "spanishFontType":1,
+ "neutralSpanishText":"Ameto Petora",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ameto Petora",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_vfpetr",
+ "englishUsText":"雨とペトラ",
+ "englishUsFontType":0,
+ "frenchText":"雨とペトラ",
+ "frenchFontType":0,
+ "italianText":"雨とペトラ",
+ "italianFontType":0,
+ "germanText":"雨とペトラ",
+ "germanFontType":0,
+ "spanishText":"雨とペトラ",
+ "spanishFontType":0,
+ "neutralSpanishText":"雨とペトラ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"雨とペトラ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_vfpetr",
+ "englishUsText":"balloon feat. flower",
+ "englishUsFontType":1,
+ "frenchText":"balloon feat. flower",
+ "frenchFontType":1,
+ "italianText":"balloon feat. flower",
+ "italianFontType":1,
+ "germanText":"balloon feat. flower",
+ "germanFontType":1,
+ "spanishText":"balloon feat. flower",
+ "spanishFontType":1,
+ "neutralSpanishText":"balloon feat. flower",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"balloon feat. flower",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_kaiki",
+ "englishUsText":"Total Eclipse 2035",
+ "englishUsFontType":1,
+ "frenchText":"Total Eclipse 2035",
+ "frenchFontType":1,
+ "italianText":"Total Eclipse 2035",
+ "italianFontType":1,
+ "germanText":"Total Eclipse 2035",
+ "germanFontType":1,
+ "spanishText":"Total Eclipse 2035",
+ "spanishFontType":1,
+ "neutralSpanishText":"Total Eclipse 2035",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Total Eclipse 2035",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_kaiki",
+ "englishUsText":"Total Eclipse 2035",
+ "englishUsFontType":1,
+ "frenchText":"Total Eclipse 2035",
+ "frenchFontType":1,
+ "italianText":"Total Eclipse 2035",
+ "italianFontType":1,
+ "germanText":"Total Eclipse 2035",
+ "germanFontType":1,
+ "spanishText":"Total Eclipse 2035",
+ "spanishFontType":1,
+ "neutralSpanishText":"Total Eclipse 2035",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Total Eclipse 2035",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_kaiki",
+ "englishUsText":"Total Eclipse 2035",
+ "englishUsFontType":1,
+ "frenchText":"Total Eclipse 2035",
+ "frenchFontType":1,
+ "italianText":"Total Eclipse 2035",
+ "italianFontType":1,
+ "germanText":"Total Eclipse 2035",
+ "germanFontType":1,
+ "spanishText":"Total Eclipse 2035",
+ "spanishFontType":1,
+ "neutralSpanishText":"Total Eclipse 2035",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Total Eclipse 2035",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_kaiki",
+ "englishUsText":"トータル・エクリプス 2035",
+ "englishUsFontType":0,
+ "frenchText":"トータル・エクリプス 2035",
+ "frenchFontType":0,
+ "italianText":"トータル・エクリプス 2035",
+ "italianFontType":0,
+ "germanText":"トータル・エクリプス 2035",
+ "germanFontType":0,
+ "spanishText":"トータル・エクリプス 2035",
+ "spanishFontType":0,
+ "neutralSpanishText":"トータル・エクリプス 2035",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"トータル・エクリプス 2035",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_kaiki",
+ "englishUsText":"~SHOUJO NO JIKUU KAIKI NISSHOKU~",
+ "englishUsFontType":1,
+ "frenchText":"~SHOUJO NO JIKUU KAIKI NISSHOKU~",
+ "frenchFontType":1,
+ "italianText":"~SHOUJO NO JIKUU KAIKI NISSHOKU~",
+ "italianFontType":1,
+ "germanText":"~SHOUJO NO JIKUU KAIKI NISSHOKU~",
+ "germanFontType":1,
+ "spanishText":"~SHOUJO NO JIKUU KAIKI NISSHOKU~",
+ "spanishFontType":1,
+ "neutralSpanishText":"~SHOUJO NO JIKUU KAIKI NISSHOKU~",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"~SHOUJO NO JIKUU KAIKI NISSHOKU~",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_shgclr",
+ "englishUsText":"colorful",
+ "englishUsFontType":1,
+ "frenchText":"colorful",
+ "frenchFontType":1,
+ "italianText":"colorful",
+ "italianFontType":1,
+ "germanText":"colorful",
+ "germanFontType":1,
+ "spanishText":"colorful",
+ "spanishFontType":1,
+ "neutralSpanishText":"colorful",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"colorful",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_shgclr",
+ "englishUsText":"colorful",
+ "englishUsFontType":1,
+ "frenchText":"colorful",
+ "frenchFontType":1,
+ "italianText":"colorful",
+ "italianFontType":1,
+ "germanText":"colorful",
+ "germanFontType":1,
+ "spanishText":"colorful",
+ "spanishFontType":1,
+ "neutralSpanishText":"colorful",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"colorful",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_shgclr",
+ "englishUsText":"colorful",
+ "englishUsFontType":1,
+ "frenchText":"colorful",
+ "frenchFontType":1,
+ "italianText":"colorful",
+ "italianFontType":1,
+ "germanText":"colorful",
+ "germanFontType":1,
+ "spanishText":"colorful",
+ "spanishFontType":1,
+ "neutralSpanishText":"colorful",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"colorful",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_shgclr",
+ "englishUsText":"カラフル",
+ "englishUsFontType":0,
+ "frenchText":"カラフル",
+ "frenchFontType":0,
+ "italianText":"カラフル",
+ "italianFontType":0,
+ "germanText":"カラフル",
+ "germanFontType":0,
+ "spanishText":"カラフル",
+ "spanishFontType":0,
+ "neutralSpanishText":"カラフル",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"カラフル",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_shgclr",
+ "englishUsText":"SHOGO/Shogo Nomura",
+ "englishUsFontType":1,
+ "frenchText":"SHOGO/Shogo Nomura",
+ "frenchFontType":1,
+ "italianText":"SHOGO/Shogo Nomura",
+ "italianFontType":1,
+ "germanText":"SHOGO/Shogo Nomura",
+ "germanFontType":1,
+ "spanishText":"SHOGO/Shogo Nomura",
+ "spanishFontType":1,
+ "neutralSpanishText":"SHOGO/Shogo Nomura",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SHOGO/Shogo Nomura",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_mintte",
+ "englishUsText":"mint tears",
+ "englishUsFontType":1,
+ "frenchText":"mint tears",
+ "frenchFontType":1,
+ "italianText":"mint tears",
+ "italianFontType":1,
+ "germanText":"mint tears",
+ "germanFontType":1,
+ "spanishText":"mint tears",
+ "spanishFontType":1,
+ "neutralSpanishText":"mint tears",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"mint tears",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_mintte",
+ "englishUsText":"mint tears",
+ "englishUsFontType":1,
+ "frenchText":"mint tears",
+ "frenchFontType":1,
+ "italianText":"mint tears",
+ "italianFontType":1,
+ "germanText":"mint tears",
+ "germanFontType":1,
+ "spanishText":"mint tears",
+ "spanishFontType":1,
+ "neutralSpanishText":"mint tears",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"mint tears",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_mintte",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_mintte",
+ "englishUsText":"mint tears",
+ "englishUsFontType":0,
+ "frenchText":"mint tears",
+ "frenchFontType":0,
+ "italianText":"mint tears",
+ "italianFontType":0,
+ "germanText":"mint tears",
+ "germanFontType":0,
+ "spanishText":"mint tears",
+ "spanishFontType":0,
+ "neutralSpanishText":"mint tears",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"mint tears",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_mintte",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_solstr",
+ "englishUsText":"Solitude Star",
+ "englishUsFontType":1,
+ "frenchText":"Solitude Star",
+ "frenchFontType":1,
+ "italianText":"Solitude Star",
+ "italianFontType":1,
+ "germanText":"Solitude Star",
+ "germanFontType":1,
+ "spanishText":"Solitude Star",
+ "spanishFontType":1,
+ "neutralSpanishText":"Solitude Star",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Solitude Star",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_solstr",
+ "englishUsText":"Solitude Star",
+ "englishUsFontType":1,
+ "frenchText":"Solitude Star",
+ "frenchFontType":1,
+ "italianText":"Solitude Star",
+ "italianFontType":1,
+ "germanText":"Solitude Star",
+ "germanFontType":1,
+ "spanishText":"Solitude Star",
+ "spanishFontType":1,
+ "neutralSpanishText":"Solitude Star",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Solitude Star",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_solstr",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_solstr",
+ "englishUsText":"Solitude Star",
+ "englishUsFontType":0,
+ "frenchText":"Solitude Star",
+ "frenchFontType":0,
+ "italianText":"Solitude Star",
+ "italianFontType":0,
+ "germanText":"Solitude Star",
+ "germanFontType":0,
+ "spanishText":"Solitude Star",
+ "spanishFontType":0,
+ "neutralSpanishText":"Solitude Star",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Solitude Star",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_solstr",
+ "englishUsText":"Harusaki x beet",
+ "englishUsFontType":1,
+ "frenchText":"Harusaki x beet",
+ "frenchFontType":1,
+ "italianText":"Harusaki x beet",
+ "italianFontType":1,
+ "germanText":"Harusaki x beet",
+ "germanFontType":1,
+ "spanishText":"Harusaki x beet",
+ "spanishFontType":1,
+ "neutralSpanishText":"Harusaki x beet",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Harusaki x beet",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_manpu2",
+ "englishUsText":"Anata To Tu Lat Tat Ta♪",
+ "englishUsFontType":1,
+ "frenchText":"Anata To Tu Lat Tat Ta♪",
+ "frenchFontType":1,
+ "italianText":"Anata To Tu Lat Tat Ta♪",
+ "italianFontType":1,
+ "germanText":"Anata To Tu Lat Tat Ta♪",
+ "germanFontType":1,
+ "spanishText":"Anata To Tu Lat Tat Ta♪",
+ "spanishFontType":1,
+ "neutralSpanishText":"Anata To Tu Lat Tat Ta♪",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Anata To Tu Lat Tat Ta♪",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_manpu2",
+ "englishUsText":"Anata To Tu Lat Tat Ta♪",
+ "englishUsFontType":1,
+ "frenchText":"Anata To Tu Lat Tat Ta♪",
+ "frenchFontType":1,
+ "italianText":"Anata To Tu Lat Tat Ta♪",
+ "italianFontType":1,
+ "germanText":"Anata To Tu Lat Tat Ta♪",
+ "germanFontType":1,
+ "spanishText":"Anata To Tu Lat Tat Ta♪",
+ "spanishFontType":1,
+ "neutralSpanishText":"Anata To Tu Lat Tat Ta♪",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Anata To Tu Lat Tat Ta♪",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_manpu2",
+ "englishUsText":"Anata To Tu Lat Tat Ta♪",
+ "englishUsFontType":1,
+ "frenchText":"Anata To Tu Lat Tat Ta♪",
+ "frenchFontType":1,
+ "italianText":"Anata To Tu Lat Tat Ta♪",
+ "italianFontType":1,
+ "germanText":"Anata To Tu Lat Tat Ta♪",
+ "germanFontType":1,
+ "spanishText":"Anata To Tu Lat Tat Ta♪",
+ "spanishFontType":1,
+ "neutralSpanishText":"Anata To Tu Lat Tat Ta♪",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Anata To Tu Lat Tat Ta♪",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_manpu2",
+ "englishUsText":"あなたとトゥラッタッタ♪",
+ "englishUsFontType":0,
+ "frenchText":"あなたとトゥラッタッタ♪",
+ "frenchFontType":0,
+ "italianText":"あなたとトゥラッタッタ♪",
+ "italianFontType":0,
+ "germanText":"あなたとトゥラッタッタ♪",
+ "germanFontType":0,
+ "spanishText":"あなたとトゥラッタッタ♪",
+ "spanishFontType":0,
+ "neutralSpanishText":"あなたとトゥラッタッタ♪",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"あなたとトゥラッタッタ♪",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_manpu2",
+ "englishUsText":"DREAMS COME TRUE",
+ "englishUsFontType":1,
+ "frenchText":"DREAMS COME TRUE",
+ "frenchFontType":1,
+ "italianText":"DREAMS COME TRUE",
+ "italianFontType":1,
+ "germanText":"DREAMS COME TRUE",
+ "germanFontType":1,
+ "spanishText":"DREAMS COME TRUE",
+ "spanishFontType":1,
+ "neutralSpanishText":"DREAMS COME TRUE",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DREAMS COME TRUE",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_kimetu",
+ "englishUsText":"Gurenge",
+ "englishUsFontType":1,
+ "frenchText":"GURENGE",
+ "frenchFontType":1,
+ "italianText":"GURENGE",
+ "italianFontType":1,
+ "germanText":"GURENGE",
+ "germanFontType":1,
+ "spanishText":"GURENGE",
+ "spanishFontType":1,
+ "neutralSpanishText":"GURENGE",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"GURENGE",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_kimetu",
+ "englishUsText":"Gurenge",
+ "englishUsFontType":1,
+ "frenchText":"GURENGE",
+ "frenchFontType":1,
+ "italianText":"GURENGE",
+ "italianFontType":1,
+ "germanText":"GURENGE",
+ "germanFontType":1,
+ "spanishText":"GURENGE",
+ "spanishFontType":1,
+ "neutralSpanishText":"GURENGE",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"GURENGE",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_kimetu",
+ "englishUsText":"Gurenge",
+ "englishUsFontType":1,
+ "frenchText":"GURENGE",
+ "frenchFontType":1,
+ "italianText":"GURENGE",
+ "italianFontType":1,
+ "germanText":"GURENGE",
+ "germanFontType":1,
+ "spanishText":"GURENGE",
+ "spanishFontType":1,
+ "neutralSpanishText":"GURENGE",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"GURENGE",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_kimetu",
+ "englishUsText":"紅蓮華",
+ "englishUsFontType":0,
+ "frenchText":"紅蓮華",
+ "frenchFontType":0,
+ "italianText":"紅蓮華",
+ "italianFontType":0,
+ "germanText":"紅蓮華",
+ "germanFontType":0,
+ "spanishText":"紅蓮華",
+ "spanishFontType":0,
+ "neutralSpanishText":"紅蓮華",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"紅蓮華",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_kimetu",
+ "englishUsText":"from \" DEMON SLAYER : KIMETSU NO YAIBA \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" DEMON SLAYER : KIMETSU NO YAIBA \"",
+ "frenchFontType":1,
+ "italianText":"da \" DEMON SLAYER : KIMETSU NO YAIBA \"",
+ "italianFontType":1,
+ "germanText":"Aus \" DEMON SLAYER : KIMETSU NO YAIBA \"",
+ "germanFontType":1,
+ "spanishText":"De \" DEMON SLAYER : KIMETSU NO YAIBA \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" DEMON SLAYER : KIMETSU NO YAIBA \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" DEMON SLAYER : KIMETSU NO YAIBA \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_digmon",
+ "englishUsText":"Butter-Fly",
+ "englishUsFontType":1,
+ "frenchText":"Butter-Fly",
+ "frenchFontType":1,
+ "italianText":"Butter-Fly",
+ "italianFontType":1,
+ "germanText":"Butter-Fly",
+ "germanFontType":1,
+ "spanishText":"Butter-Fly",
+ "spanishFontType":1,
+ "neutralSpanishText":"Butter-Fly",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Butter-Fly",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_digmon",
+ "englishUsText":"Butter-Fly",
+ "englishUsFontType":1,
+ "frenchText":"Butter-Fly",
+ "frenchFontType":1,
+ "italianText":"Butter-Fly",
+ "italianFontType":1,
+ "germanText":"Butter-Fly",
+ "germanFontType":1,
+ "spanishText":"Butter-Fly",
+ "spanishFontType":1,
+ "neutralSpanishText":"Butter-Fly",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Butter-Fly",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_digmon",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_digmon",
+ "englishUsText":"Butter-Fly",
+ "englishUsFontType":0,
+ "frenchText":"Butter-Fly",
+ "frenchFontType":0,
+ "italianText":"Butter-Fly",
+ "italianFontType":0,
+ "germanText":"Butter-Fly",
+ "germanFontType":0,
+ "spanishText":"Butter-Fly",
+ "spanishFontType":0,
+ "neutralSpanishText":"Butter-Fly",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Butter-Fly",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_digmon",
+ "englishUsText":"from \" Digimon Adventure \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" Digimon Adventure \"",
+ "frenchFontType":1,
+ "italianText":"da \" Digimon Adventure \"",
+ "italianFontType":1,
+ "germanText":"Aus \" Digimon Adventure \"",
+ "germanFontType":1,
+ "spanishText":"De \" Digimon Adventure \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" Digimon Adventure \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" Digimon Adventure \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_vfpetr",
+ "englishUsText":"ametopetora",
+ "englishUsFontType":1,
+ "frenchText":"ametopetora",
+ "frenchFontType":1,
+ "italianText":"ametopetora",
+ "italianFontType":1,
+ "germanText":"ametopetora",
+ "germanFontType":1,
+ "spanishText":"ametopetora",
+ "spanishFontType":1,
+ "neutralSpanishText":"ametopetora",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ametopetora",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_kaiki",
+ "englishUsText":"totaleclipse2035",
+ "englishUsFontType":1,
+ "frenchText":"totaleclipse2035",
+ "frenchFontType":1,
+ "italianText":"totaleclipse2035",
+ "italianFontType":1,
+ "germanText":"totaleclipse2035",
+ "germanFontType":1,
+ "spanishText":"totaleclipse2035",
+ "spanishFontType":1,
+ "neutralSpanishText":"totaleclipse2035",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"totaleclipse2035",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_shgclr",
+ "englishUsText":"colorful",
+ "englishUsFontType":1,
+ "frenchText":"colorful",
+ "frenchFontType":1,
+ "italianText":"colorful",
+ "italianFontType":1,
+ "germanText":"colorful",
+ "germanFontType":1,
+ "spanishText":"colorful",
+ "spanishFontType":1,
+ "neutralSpanishText":"colorful",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"colorful",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_mintte",
+ "englishUsText":"minttears",
+ "englishUsFontType":1,
+ "frenchText":"minttears",
+ "frenchFontType":1,
+ "italianText":"minttears",
+ "italianFontType":1,
+ "germanText":"minttears",
+ "germanFontType":1,
+ "spanishText":"minttears",
+ "spanishFontType":1,
+ "neutralSpanishText":"minttears",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"minttears",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_solstr",
+ "englishUsText":"solitudestar",
+ "englishUsFontType":1,
+ "frenchText":"solitudestar",
+ "frenchFontType":1,
+ "italianText":"solitudestar",
+ "italianFontType":1,
+ "germanText":"solitudestar",
+ "germanFontType":1,
+ "spanishText":"solitudestar",
+ "spanishFontType":1,
+ "neutralSpanishText":"solitudestar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"solitudestar",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_manpu2",
+ "englishUsText":"anatatotulattatta♪",
+ "englishUsFontType":1,
+ "frenchText":"anatatotulattatta♪",
+ "frenchFontType":1,
+ "italianText":"anatatotulattatta♪",
+ "italianFontType":1,
+ "germanText":"anatatotulattatta♪",
+ "germanFontType":1,
+ "spanishText":"anatatotulattatta♪",
+ "spanishFontType":1,
+ "neutralSpanishText":"anatatotulattatta♪",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"anatatotulattatta♪",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_kimetu",
+ "englishUsText":"gurenge",
+ "englishUsFontType":1,
+ "frenchText":"gurenge",
+ "frenchFontType":1,
+ "italianText":"gurenge",
+ "italianFontType":1,
+ "germanText":"gurenge",
+ "germanFontType":1,
+ "spanishText":"gurenge",
+ "spanishFontType":1,
+ "neutralSpanishText":"gurenge",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"gurenge",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_digmon",
+ "englishUsText":"butter-fly",
+ "englishUsFontType":1,
+ "frenchText":"butter-fly",
+ "frenchFontType":1,
+ "italianText":"butter-fly",
+ "italianFontType":1,
+ "germanText":"butter-fly",
+ "germanFontType":1,
+ "spanishText":"butter-fly",
+ "spanishFontType":1,
+ "neutralSpanishText":"butter-fly",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"butter-fly",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_clsn",
+ "englishUsText":"I ♥ 「From the New World」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Du Nouveau Monde」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Dal nuovo mondo」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Aus der Neuen Welt」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Sinfonía del Nuevo Mundo」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Sinfonía del Nuevo Mundo」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Sinfonia do Novo Mundo」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_vfshrr",
+ "englishUsText":"I ♥ 「Charles」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Charles」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Charles」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Charles」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Charles」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Charles」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Charles」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_kahim",
+ "englishUsText":"I ♥ 「La MORENA KUMONAI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「La MORENA KUMONAI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「La MORENA KUMONAI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「La MORENA KUMONAI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「La MORENA KUMONAI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「La MORENA KUMONAI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「La MORENA KUMONAI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_alexan",
+ "englishUsText":"I ♥ 「Theme of Alexander」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Thème d'Alexander」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Tema di Alexander」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Alexanders Titelsong」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Theme of Alexander」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Theme of Alexander」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Theme of Alexander」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_koi907",
+ "englishUsText":"I ♥ 「Koikurenai」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Koikurenai」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Koikurenai」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Koikurenai」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Koikurenai」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Koikurenai」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Koikurenai」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_insidm",
+ "englishUsText":"I ♥ 「1/2 ~inside me」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「1/2 ~inside me」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「1/2 ~inside me」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「1/2 ~inside me」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「1/2 ~inside me」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「1/2 ~inside me」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「1/2 ~inside me」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_ynzums",
+ "englishUsText":"I ♥ 「UMA TO SHIKA」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「UMA TO SHIKA」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「UMA TO SHIKA」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「UMA TO SHIKA」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「UMA TO SHIKA」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「UMA TO SHIKA」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「UMA TO SHIKA」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_kim69",
+ "englishUsText":"I ♥ 「KIMIWA ROCK WO KIKANAI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「KIMIWA ROCK WO KIKANAI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「KIMIWA ROCK WO KIKANAI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「KIMIWA ROCK WO KIKANAI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「KIMIWA ROCK WO KIKANAI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「KIMIWA ROCK WO KIKANAI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「KIMIWA ROCK WO KIKANAI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_glyzmb",
+ "englishUsText":"I ♥ 「SHIN ZOMBIE」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SHIN ZOMBIE」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SHIN ZOMBIE」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SHIN ZOMBIE」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SHIN ZOMBIE」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SHIN ZOMBIE」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SHIN ZOMBIE」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_clsn",
+ "englishUsText":"I ♥ 「From the New World」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Du Nouveau Monde」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Dal nuovo mondo」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Aus der Neuen Welt」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Sinfonía del Nuevo Mundo」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Sinfonía del Nuevo Mundo」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Sinfonia do Novo Mundo」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_vfshrr",
+ "englishUsText":"I ♥ 「Charles」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Charles」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Charles」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Charles」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Charles」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Charles」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Charles」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_kahim",
+ "englishUsText":"I ♥ 「La MORENA KUMONAI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「La MORENA KUMONAI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「La MORENA KUMONAI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「La MORENA KUMONAI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「La MORENA KUMONAI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「La MORENA KUMONAI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「La MORENA KUMONAI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_alexan",
+ "englishUsText":"I ♥ 「Theme of Alexander」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Thème d'Alexander」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Tema di Alexander」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Alexanders Titelsong」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Theme of Alexander」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Theme of Alexander」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Theme of Alexander」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_koi907",
+ "englishUsText":"I ♥ 「Koikurenai」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Koikurenai」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Koikurenai」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Koikurenai」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Koikurenai」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Koikurenai」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Koikurenai」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_insidm",
+ "englishUsText":"I ♥ 「1/2 ~inside me」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「1/2 ~inside me」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「1/2 ~inside me」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「1/2 ~inside me」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「1/2 ~inside me」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「1/2 ~inside me」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「1/2 ~inside me」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_ynzums",
+ "englishUsText":"I ♥ 「UMA TO SHIKA」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「UMA TO SHIKA」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「UMA TO SHIKA」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「UMA TO SHIKA」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「UMA TO SHIKA」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「UMA TO SHIKA」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「UMA TO SHIKA」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_kim69",
+ "englishUsText":"I ♥ 「KIMIWA ROCK WO KIKANAI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「KIMIWA ROCK WO KIKANAI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「KIMIWA ROCK WO KIKANAI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「KIMIWA ROCK WO KIKANAI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「KIMIWA ROCK WO KIKANAI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「KIMIWA ROCK WO KIKANAI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「KIMIWA ROCK WO KIKANAI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_glyzmb",
+ "englishUsText":"I ♥ 「SHIN ZOMBIE」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SHIN ZOMBIE」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SHIN ZOMBIE」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SHIN ZOMBIE」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SHIN ZOMBIE」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SHIN ZOMBIE」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SHIN ZOMBIE」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_donkatsu2020",
+ "englishUsText":"Ta-DON! Welcome to 2020!",
+ "englishUsFontType":1,
+ "frenchText":"Ta-DON ! Bienvenue en 2020 !",
+ "frenchFontType":1,
+ "italianText":"Ta-DON! Il 2020 ti dà il benvenuto!",
+ "italianFontType":1,
+ "germanText":"Ta-DON! Willkommen in 2020!",
+ "germanFontType":1,
+ "spanishText":"¡Ta-DON! ¡Ya estamos en 2020!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Ta-DON! ¡Bienvenido a 2020!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Ta-DON! Boas-vindas a 2020!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_donkatsu2020",
+ "englishUsText":"DONKATSU 2020",
+ "englishUsFontType":1,
+ "frenchText":"DONKATSU 2020",
+ "frenchFontType":1,
+ "italianText":"DONKATSU 2020",
+ "italianFontType":1,
+ "germanText":"DONKATSU 2020",
+ "germanFontType":1,
+ "spanishText":"DONKATSU 2020",
+ "spanishFontType":1,
+ "neutralSpanishText":"DONKATSU 2020",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DONKATSU 2020",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_donkatsu2020ex",
+ "englishUsText":"TAIKO 2020",
+ "englishUsFontType":1,
+ "frenchText":"TAIKO 2020",
+ "frenchFontType":1,
+ "italianText":"TAIKO 2020",
+ "italianFontType":1,
+ "germanText":"TAIKO 2020",
+ "germanFontType":1,
+ "spanishText":"TAIKO 2020",
+ "spanishFontType":1,
+ "neutralSpanishText":"TAIKO 2020",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"TAIKO 2020",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_kadomatsu",
+ "englishUsText":"New Year's Pine",
+ "englishUsFontType":1,
+ "frenchText":"Pin du Nouvel An",
+ "frenchFontType":1,
+ "italianText":"Pino del nuovo anno",
+ "italianFontType":1,
+ "germanText":"Neujahrskiefer",
+ "germanFontType":1,
+ "spanishText":"Pino de Año Nuevo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pino de Nuevo Año",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pinheiro de Ano Novo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_kagamimochi",
+ "englishUsText":"New Year's Mochi",
+ "englishUsFontType":1,
+ "frenchText":"Mochi du Nouvel An",
+ "frenchFontType":1,
+ "italianText":"Mochi del nuovo anno",
+ "italianFontType":1,
+ "germanText":"Neujahrs-Mochi",
+ "germanFontType":1,
+ "spanishText":"Mochi de Año Nuevo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mochi de Nuevo Año",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mochi de Ano Novo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_kamaboko",
+ "englishUsText":"Kamaboko",
+ "englishUsFontType":1,
+ "frenchText":"Kamaboko",
+ "frenchFontType":1,
+ "italianText":"Kamaboko",
+ "italianFontType":1,
+ "germanText":"Kamaboko",
+ "germanFontType":1,
+ "spanishText":"Kamaboko",
+ "spanishFontType":1,
+ "neutralSpanishText":"Kamaboko",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Kamaboko",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_donkatsu2020",
+ "englishUsText":"DONKATSU Fest 2020",
+ "englishUsFontType":1,
+ "frenchText":"Fête DONKATSU 2020",
+ "frenchFontType":1,
+ "italianText":"Festival DONKATSU 2020",
+ "italianFontType":1,
+ "germanText":"DONKATSU-Fest 2020",
+ "germanFontType":1,
+ "spanishText":"Fiesta DONKATSU 2020",
+ "spanishFontType":1,
+ "neutralSpanishText":"Festival DONKATSU 2020",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DONKATSU Fest 2020",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_clsn",
+ "englishUsText":"From the New World",
+ "englishUsFontType":1,
+ "frenchText":"Du Nouveau Monde",
+ "frenchFontType":1,
+ "italianText":"Dal nuovo mondo",
+ "italianFontType":1,
+ "germanText":"Aus der Neuen Welt",
+ "germanFontType":1,
+ "spanishText":"Sinfonía del Nuevo Mundo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sinfonía del Nuevo Mundo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sinfonia do Novo Mundo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_clsn",
+ "englishUsText":"From the New World",
+ "englishUsFontType":1,
+ "frenchText":"Du Nouveau Monde",
+ "frenchFontType":1,
+ "italianText":"Dal nuovo mondo",
+ "italianFontType":1,
+ "germanText":"Aus der Neuen Welt",
+ "germanFontType":1,
+ "spanishText":"Sinfonía del Nuevo Mundo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sinfonia do Novo Mundo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sinfonía del Nuevo Mundo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_clsn",
+ "englishUsText":"From the New World",
+ "englishUsFontType":1,
+ "frenchText":"Du Nouveau Monde",
+ "frenchFontType":1,
+ "italianText":"Dal nuovo mondo",
+ "italianFontType":1,
+ "germanText":"Aus der Neuen Welt",
+ "germanFontType":1,
+ "spanishText":"Sinfonía del Nuevo Mundo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Sinfonía del Nuevo Mundo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Sinfonia do Novo Mundo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_clsn",
+ "englishUsText":"新世界より",
+ "englishUsFontType":0,
+ "frenchText":"新世界より",
+ "frenchFontType":0,
+ "italianText":"新世界より",
+ "italianFontType":0,
+ "germanText":"新世界より",
+ "germanFontType":0,
+ "spanishText":"新世界より",
+ "spanishFontType":0,
+ "neutralSpanishText":"新世界より",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"新世界より",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_clsn",
+ "englishUsText":"Antonín Dvorák",
+ "englishUsFontType":1,
+ "frenchText":"Antonín Dvorák",
+ "frenchFontType":1,
+ "italianText":"Antonín Dvorák",
+ "italianFontType":1,
+ "germanText":"Antonín Dvorák",
+ "germanFontType":1,
+ "spanishText":"Antonín Dvorák",
+ "spanishFontType":1,
+ "neutralSpanishText":"Antonín Dvorák",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Antonín Dvorák",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_vfshrr",
+ "englishUsText":"Charles",
+ "englishUsFontType":1,
+ "frenchText":"Charles",
+ "frenchFontType":1,
+ "italianText":"Charles",
+ "italianFontType":1,
+ "germanText":"Charles",
+ "germanFontType":1,
+ "spanishText":"Charles",
+ "spanishFontType":1,
+ "neutralSpanishText":"Charles",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Charles",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_vfshrr",
+ "englishUsText":"Charles",
+ "englishUsFontType":1,
+ "frenchText":"Charles",
+ "frenchFontType":1,
+ "italianText":"Charles",
+ "italianFontType":1,
+ "germanText":"Charles",
+ "germanFontType":1,
+ "spanishText":"Charles",
+ "spanishFontType":1,
+ "neutralSpanishText":"Charles",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Charles",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_vfshrr",
+ "englishUsText":"Charles",
+ "englishUsFontType":1,
+ "frenchText":"Charles",
+ "frenchFontType":1,
+ "italianText":"Charles",
+ "italianFontType":1,
+ "germanText":"Charles",
+ "germanFontType":1,
+ "spanishText":"Charles",
+ "spanishFontType":1,
+ "neutralSpanishText":"Charles",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Charles",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_vfshrr",
+ "englishUsText":"シャルル",
+ "englishUsFontType":0,
+ "frenchText":"シャルル",
+ "frenchFontType":0,
+ "italianText":"シャルル",
+ "italianFontType":0,
+ "germanText":"シャルル",
+ "germanFontType":0,
+ "spanishText":"シャルル",
+ "spanishFontType":0,
+ "neutralSpanishText":"シャルル",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"シャルル",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_vfshrr",
+ "englishUsText":"balloon feat. flower",
+ "englishUsFontType":1,
+ "frenchText":"balloon feat. flower",
+ "frenchFontType":1,
+ "italianText":"balloon feat. flower",
+ "italianFontType":1,
+ "germanText":"balloon feat. flower",
+ "germanFontType":1,
+ "spanishText":"balloon feat. flower",
+ "spanishFontType":1,
+ "neutralSpanishText":"balloon feat. flower",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"balloon feat. flower",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_kahim",
+ "englishUsText":"La MORENA KUMONAI",
+ "englishUsFontType":1,
+ "frenchText":"La MORENA KUMONAI",
+ "frenchFontType":1,
+ "italianText":"La MORENA KUMONAI",
+ "italianFontType":1,
+ "germanText":"La MORENA KUMONAI",
+ "germanFontType":1,
+ "spanishText":"La MORENA KUMONAI",
+ "spanishFontType":1,
+ "neutralSpanishText":"La MORENA KUMONAI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"La MORENA KUMONAI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_kahim",
+ "englishUsText":"La MORENA KUMONAI",
+ "englishUsFontType":1,
+ "frenchText":"La MORENA KUMONAI",
+ "frenchFontType":1,
+ "italianText":"La MORENA KUMONAI",
+ "italianFontType":1,
+ "germanText":"La MORENA KUMONAI",
+ "germanFontType":1,
+ "spanishText":"La MORENA KUMONAI",
+ "spanishFontType":1,
+ "neutralSpanishText":"La MORENA KUMONAI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"La MORENA KUMONAI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_kahim",
+ "englishUsText":"La MORENA KUMONAI",
+ "englishUsFontType":1,
+ "frenchText":"La MORENA KUMONAI",
+ "frenchFontType":1,
+ "italianText":"La MORENA KUMONAI",
+ "italianFontType":1,
+ "germanText":"La MORENA KUMONAI",
+ "germanFontType":1,
+ "spanishText":"La MORENA KUMONAI",
+ "spanishFontType":1,
+ "neutralSpanishText":"La MORENA KUMONAI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"La MORENA KUMONAI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_kahim",
+ "englishUsText":"ラ・モレーナ・クモナイ",
+ "englishUsFontType":0,
+ "frenchText":"ラ・モレーナ・クモナイ",
+ "frenchFontType":0,
+ "italianText":"ラ・モレーナ・クモナイ",
+ "italianFontType":0,
+ "germanText":"ラ・モレーナ・クモナイ",
+ "germanFontType":0,
+ "spanishText":"ラ・モレーナ・クモナイ",
+ "spanishFontType":0,
+ "neutralSpanishText":"ラ・モレーナ・クモナイ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ラ・モレーナ・クモナイ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_kahim",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_alexan",
+ "englishUsText":"Theme of Alexander",
+ "englishUsFontType":1,
+ "frenchText":"Thème d'Alexander",
+ "frenchFontType":1,
+ "italianText":"Tema di Alexander",
+ "italianFontType":1,
+ "germanText":"Alexanders Titelsong",
+ "germanFontType":1,
+ "spanishText":"Theme of Alexander",
+ "spanishFontType":1,
+ "neutralSpanishText":"Theme of Alexander",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Theme of Alexander",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_alexan",
+ "englishUsText":"Theme of Alexander",
+ "englishUsFontType":1,
+ "frenchText":"Thème d'Alexander",
+ "frenchFontType":1,
+ "italianText":"Tema di Alexander",
+ "italianFontType":1,
+ "germanText":"Alexanders Titelsong",
+ "germanFontType":1,
+ "spanishText":"Theme of Alexander",
+ "spanishFontType":1,
+ "neutralSpanishText":"Theme of Alexander",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Theme of Alexander",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_alexan",
+ "englishUsText":"Theme of Alexander",
+ "englishUsFontType":1,
+ "frenchText":"Thème d'Alexander",
+ "frenchFontType":1,
+ "italianText":"Tema di Alexander",
+ "italianFontType":1,
+ "germanText":"Alexanders Titelsong",
+ "germanFontType":1,
+ "spanishText":"Theme of Alexander",
+ "spanishFontType":1,
+ "neutralSpanishText":"Theme of Alexander",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Theme of Alexander",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_alexan",
+ "englishUsText":"アレキサンダーのテーマ",
+ "englishUsFontType":0,
+ "frenchText":"アレキサンダーのテーマ",
+ "frenchFontType":0,
+ "italianText":"アレキサンダーのテーマ",
+ "italianFontType":0,
+ "germanText":"アレキサンダーのテーマ",
+ "germanFontType":0,
+ "spanishText":"アレキサンダーのテーマ",
+ "spanishFontType":0,
+ "neutralSpanishText":"アレキサンダーのテーマ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"アレキサンダーのテーマ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_alexan",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_koi907",
+ "englishUsText":"Koikurenai",
+ "englishUsFontType":1,
+ "frenchText":"Koikurenai",
+ "frenchFontType":1,
+ "italianText":"Koikurenai",
+ "italianFontType":1,
+ "germanText":"Koikurenai",
+ "germanFontType":1,
+ "spanishText":"Koikurenai",
+ "spanishFontType":1,
+ "neutralSpanishText":"Koikurenai",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Koikurenai",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_koi907",
+ "englishUsText":"Koikurenai",
+ "englishUsFontType":1,
+ "frenchText":"Koikurenai",
+ "frenchFontType":1,
+ "italianText":"Koikurenai",
+ "italianFontType":1,
+ "germanText":"Koikurenai",
+ "germanFontType":1,
+ "spanishText":"Koikurenai",
+ "spanishFontType":1,
+ "neutralSpanishText":"Koikurenai",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Koikurenai",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_koi907",
+ "englishUsText":"Koikurenai",
+ "englishUsFontType":1,
+ "frenchText":"Koikurenai",
+ "frenchFontType":1,
+ "italianText":"Koikurenai",
+ "italianFontType":1,
+ "germanText":"Koikurenai",
+ "germanFontType":1,
+ "spanishText":"Koikurenai",
+ "spanishFontType":1,
+ "neutralSpanishText":"Koikurenai",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Koikurenai",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_koi907",
+ "englishUsText":"濃紅",
+ "englishUsFontType":0,
+ "frenchText":"濃紅",
+ "frenchFontType":0,
+ "italianText":"濃紅",
+ "italianFontType":0,
+ "germanText":"濃紅",
+ "germanFontType":0,
+ "spanishText":"濃紅",
+ "spanishFontType":0,
+ "neutralSpanishText":"濃紅",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"濃紅",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_koi907",
+ "englishUsText":"Daisuke Kurosawa x Kanako Kotera",
+ "englishUsFontType":1,
+ "frenchText":"Daisuke Kurosawa x Kanako Kotera",
+ "frenchFontType":1,
+ "italianText":"Daisuke Kurosawa x Kanako Kotera",
+ "italianFontType":1,
+ "germanText":"Daisuke Kurosawa x Kanako Kotera",
+ "germanFontType":1,
+ "spanishText":"Daisuke Kurosawa x Kanako Kotera",
+ "spanishFontType":1,
+ "neutralSpanishText":"Daisuke Kurosawa x Kanako Kotera",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Daisuke Kurosawa x Kanako Kotera",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_insidm",
+ "englishUsText":"1/2 ~inside me",
+ "englishUsFontType":1,
+ "frenchText":"1/2 ~inside me",
+ "frenchFontType":1,
+ "italianText":"1/2 ~inside me",
+ "italianFontType":1,
+ "germanText":"1/2 ~inside me",
+ "germanFontType":1,
+ "spanishText":"1/2 ~inside me",
+ "spanishFontType":1,
+ "neutralSpanishText":"1/2 ~inside me",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"1/2 ~inside me",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_insidm",
+ "englishUsText":"1/2 ~inside me",
+ "englishUsFontType":1,
+ "frenchText":"1/2 ~inside me",
+ "frenchFontType":1,
+ "italianText":"1/2 ~inside me",
+ "italianFontType":1,
+ "germanText":"1/2 ~inside me",
+ "germanFontType":1,
+ "spanishText":"1/2 ~inside me",
+ "spanishFontType":1,
+ "neutralSpanishText":"1/2 ~inside me",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"1/2 ~inside me",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_insidm",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_insidm",
+ "englishUsText":"1/2 ~inside me",
+ "englishUsFontType":0,
+ "frenchText":"1/2 ~inside me",
+ "frenchFontType":0,
+ "italianText":"1/2 ~inside me",
+ "italianFontType":0,
+ "germanText":"1/2 ~inside me",
+ "germanFontType":0,
+ "spanishText":"1/2 ~inside me",
+ "spanishFontType":0,
+ "neutralSpanishText":"1/2 ~inside me",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"1/2 ~inside me",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_insidm",
+ "englishUsText":"Mizki Shinohara feat.Kaori Aihara",
+ "englishUsFontType":1,
+ "frenchText":"Mizki Shinohara feat.Kaori Aihara",
+ "frenchFontType":1,
+ "italianText":"Mizki Shinohara feat.Kaori Aihara",
+ "italianFontType":1,
+ "germanText":"Mizki Shinohara feat.Kaori Aihara",
+ "germanFontType":1,
+ "spanishText":"Mizki Shinohara feat.Kaori Aihara",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mizki Shinohara feat.Kaori Aihara",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mizki Shinohara feat.Kaori Aihara",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_ynzums",
+ "englishUsText":"UMA TO SHIKA",
+ "englishUsFontType":1,
+ "frenchText":"UMA TO SHIKA",
+ "frenchFontType":1,
+ "italianText":"UMA TO SHIKA",
+ "italianFontType":1,
+ "germanText":"UMA TO SHIKA",
+ "germanFontType":1,
+ "spanishText":"UMA TO SHIKA",
+ "spanishFontType":1,
+ "neutralSpanishText":"UMA TO SHIKA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"UMA TO SHIKA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_ynzums",
+ "englishUsText":"UMA TO SHIKA",
+ "englishUsFontType":1,
+ "frenchText":"UMA TO SHIKA",
+ "frenchFontType":1,
+ "italianText":"UMA TO SHIKA",
+ "italianFontType":1,
+ "germanText":"UMA TO SHIKA",
+ "germanFontType":1,
+ "spanishText":"UMA TO SHIKA",
+ "spanishFontType":1,
+ "neutralSpanishText":"UMA TO SHIKA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"UMA TO SHIKA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_ynzums",
+ "englishUsText":"UMA TO SHIKA",
+ "englishUsFontType":1,
+ "frenchText":"UMA TO SHIKA",
+ "frenchFontType":1,
+ "italianText":"UMA TO SHIKA",
+ "italianFontType":1,
+ "germanText":"UMA TO SHIKA",
+ "germanFontType":1,
+ "spanishText":"UMA TO SHIKA",
+ "spanishFontType":1,
+ "neutralSpanishText":"UMA TO SHIKA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"UMA TO SHIKA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_ynzums",
+ "englishUsText":"馬と鹿",
+ "englishUsFontType":0,
+ "frenchText":"馬と鹿",
+ "frenchFontType":0,
+ "italianText":"馬と鹿",
+ "italianFontType":0,
+ "germanText":"馬と鹿",
+ "germanFontType":0,
+ "spanishText":"馬と鹿",
+ "spanishFontType":0,
+ "neutralSpanishText":"馬と鹿",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"馬と鹿",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_ynzums",
+ "englishUsText":"Kenshi Yonezu",
+ "englishUsFontType":1,
+ "frenchText":"Kenshi Yonezu",
+ "frenchFontType":1,
+ "italianText":"Kenshi Yonezu",
+ "italianFontType":1,
+ "germanText":"Kenshi Yonezu",
+ "germanFontType":1,
+ "spanishText":"Kenshi Yonezu",
+ "spanishFontType":1,
+ "neutralSpanishText":"Kenshi Yonezu",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Kenshi Yonezu",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_kim69",
+ "englishUsText":"KIMIWA ROCK WO KIKANAI",
+ "englishUsFontType":1,
+ "frenchText":"KIMIWA ROCK WO KIKANAI",
+ "frenchFontType":1,
+ "italianText":"KIMIWA ROCK WO KIKANAI",
+ "italianFontType":1,
+ "germanText":"KIMIWA ROCK WO KIKANAI",
+ "germanFontType":1,
+ "spanishText":"KIMIWA ROCK WO KIKANAI",
+ "spanishFontType":1,
+ "neutralSpanishText":"KIMIWA ROCK WO KIKANAI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KIMIWA ROCK WO KIKANAI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_kim69",
+ "englishUsText":"KIMIWA ROCK WO KIKANAI",
+ "englishUsFontType":1,
+ "frenchText":"KIMIWA ROCK WO KIKANAI",
+ "frenchFontType":1,
+ "italianText":"KIMIWA ROCK WO KIKANAI",
+ "italianFontType":1,
+ "germanText":"KIMIWA ROCK WO KIKANAI",
+ "germanFontType":1,
+ "spanishText":"KIMIWA ROCK WO KIKANAI",
+ "spanishFontType":1,
+ "neutralSpanishText":"KIMIWA ROCK WO KIKANAI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KIMIWA ROCK WO KIKANAI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_kim69",
+ "englishUsText":"KIMIWA ROCK WO KIKANAI",
+ "englishUsFontType":1,
+ "frenchText":"KIMIWA ROCK WO KIKANAI",
+ "frenchFontType":1,
+ "italianText":"KIMIWA ROCK WO KIKANAI",
+ "italianFontType":1,
+ "germanText":"KIMIWA ROCK WO KIKANAI",
+ "germanFontType":1,
+ "spanishText":"KIMIWA ROCK WO KIKANAI",
+ "spanishFontType":1,
+ "neutralSpanishText":"KIMIWA ROCK WO KIKANAI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KIMIWA ROCK WO KIKANAI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_kim69",
+ "englishUsText":"君はロックを聴かない",
+ "englishUsFontType":0,
+ "frenchText":"君はロックを聴かない",
+ "frenchFontType":0,
+ "italianText":"君はロックを聴かない",
+ "italianFontType":0,
+ "germanText":"君はロックを聴かない",
+ "germanFontType":0,
+ "spanishText":"君はロックを聴かない",
+ "spanishFontType":0,
+ "neutralSpanishText":"君はロックを聴かない",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"君はロックを聴かない",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_kim69",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_glyzmb",
+ "englishUsText":"SHIN ZOMBIE",
+ "englishUsFontType":1,
+ "frenchText":"SHIN ZOMBIE",
+ "frenchFontType":1,
+ "italianText":"SHIN ZOMBIE",
+ "italianFontType":1,
+ "germanText":"SHIN ZOMBIE",
+ "germanFontType":1,
+ "spanishText":"SHIN ZOMBIE",
+ "spanishFontType":1,
+ "neutralSpanishText":"SHIN ZOMBIE",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SHIN ZOMBIE",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_glyzmb",
+ "englishUsText":"SHIN ZOMBIE",
+ "englishUsFontType":1,
+ "frenchText":"SHIN ZOMBIE",
+ "frenchFontType":1,
+ "italianText":"SHIN ZOMBIE",
+ "italianFontType":1,
+ "germanText":"SHIN ZOMBIE",
+ "germanFontType":1,
+ "spanishText":"SHIN ZOMBIE",
+ "spanishFontType":1,
+ "neutralSpanishText":"SHIN ZOMBIE",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SHIN ZOMBIE",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_glyzmb",
+ "englishUsText":"SHIN ZOMBIE",
+ "englishUsFontType":1,
+ "frenchText":"SHIN ZOMBIE",
+ "frenchFontType":1,
+ "italianText":"SHIN ZOMBIE",
+ "italianFontType":1,
+ "germanText":"SHIN ZOMBIE",
+ "germanFontType":1,
+ "spanishText":"SHIN ZOMBIE",
+ "spanishFontType":1,
+ "neutralSpanishText":"SHIN ZOMBIE",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SHIN ZOMBIE",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_glyzmb",
+ "englishUsText":"シン・ゾンビ",
+ "englishUsFontType":0,
+ "frenchText":"シン・ゾンビ",
+ "frenchFontType":0,
+ "italianText":"シン・ゾンビ",
+ "italianFontType":0,
+ "germanText":"シン・ゾンビ",
+ "germanFontType":0,
+ "spanishText":"シン・ゾンビ",
+ "spanishFontType":0,
+ "neutralSpanishText":"シン・ゾンビ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"シン・ゾンビ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_glyzmb",
+ "englishUsText":"GLAY × Taiko no Tatsujin : Tie-up Song",
+ "englishUsFontType":1,
+ "frenchText":"GLAY × Taiko no Tatsujin : Tie-up Song",
+ "frenchFontType":1,
+ "italianText":"GLAY × Taiko no Tatsujin : Tie-up Song",
+ "italianFontType":1,
+ "germanText":"GLAY × Taiko no Tatsujin : Tie-up Song",
+ "germanFontType":1,
+ "spanishText":"GLAY × Taiko no Tatsujin : Tie-up Song",
+ "spanishFontType":1,
+ "neutralSpanishText":"GLAY × Taiko no Tatsujin : Tie-up Song",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"GLAY × Taiko no Tatsujin : Tie-up Song",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_clsn",
+ "englishUsText":"fromthenewworld",
+ "englishUsFontType":1,
+ "frenchText":"dunouveaumonde",
+ "frenchFontType":1,
+ "italianText":"dalnuovomondo",
+ "italianFontType":1,
+ "germanText":"ausderneuenwelt",
+ "germanFontType":1,
+ "spanishText":"sinfoniadelnuevomundo",
+ "spanishFontType":1,
+ "neutralSpanishText":"sinfoniadelnuevomundo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"sinfoniadonovomundo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_vfshrr",
+ "englishUsText":"charles",
+ "englishUsFontType":1,
+ "frenchText":"charles",
+ "frenchFontType":1,
+ "italianText":"charles",
+ "italianFontType":1,
+ "germanText":"charles",
+ "germanFontType":1,
+ "spanishText":"charles",
+ "spanishFontType":1,
+ "neutralSpanishText":"charles",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"charles",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_kahim",
+ "englishUsText":"lamorenakumonai",
+ "englishUsFontType":1,
+ "frenchText":"lamorenakumonai",
+ "frenchFontType":1,
+ "italianText":"lamorenakumonai",
+ "italianFontType":1,
+ "germanText":"lamorenakumonai",
+ "germanFontType":1,
+ "spanishText":"lamorenakumonai",
+ "spanishFontType":1,
+ "neutralSpanishText":"lamorenakumonai",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"lamorenakumonai",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_alexan",
+ "englishUsText":"themeofalexander",
+ "englishUsFontType":1,
+ "frenchText":"themed'alexander",
+ "frenchFontType":1,
+ "italianText":"temadialexander",
+ "italianFontType":1,
+ "germanText":"alexanderstitelsong",
+ "germanFontType":1,
+ "spanishText":"themeofalexander",
+ "spanishFontType":1,
+ "neutralSpanishText":"themeofalexander",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"themeofalexander",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_koi907",
+ "englishUsText":"koikurenai",
+ "englishUsFontType":1,
+ "frenchText":"koikurenai",
+ "frenchFontType":1,
+ "italianText":"koikurenai",
+ "italianFontType":1,
+ "germanText":"koikurenai",
+ "germanFontType":1,
+ "spanishText":"koikurenai",
+ "spanishFontType":1,
+ "neutralSpanishText":"koikurenai",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"koikurenai",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_insidm",
+ "englishUsText":"1/2~insideme",
+ "englishUsFontType":1,
+ "frenchText":"1/2~insideme",
+ "frenchFontType":1,
+ "italianText":"1/2~insideme",
+ "italianFontType":1,
+ "germanText":"1/2~insideme",
+ "germanFontType":1,
+ "spanishText":"1/2~insideme",
+ "spanishFontType":1,
+ "neutralSpanishText":"1/2~insideme",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"1/2~insideme",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_ynzums",
+ "englishUsText":"umatoshika",
+ "englishUsFontType":1,
+ "frenchText":"umatoshika",
+ "frenchFontType":1,
+ "italianText":"umatoshika",
+ "italianFontType":1,
+ "germanText":"umatoshika",
+ "germanFontType":1,
+ "spanishText":"umatoshika",
+ "spanishFontType":1,
+ "neutralSpanishText":"umatoshika",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"umatoshika",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_kim69",
+ "englishUsText":"kimiwarockwokikanai",
+ "englishUsFontType":1,
+ "frenchText":"kimiwarockwokikanai",
+ "frenchFontType":1,
+ "italianText":"kimiwarockwokikanai",
+ "italianFontType":1,
+ "germanText":"kimiwarockwokikanai",
+ "germanFontType":1,
+ "spanishText":"kimiwarockwokikanai",
+ "spanishFontType":1,
+ "neutralSpanishText":"kimiwarockwokikanai",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"kimiwarockwokikanai",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_glyzmb",
+ "englishUsText":"shinzombie",
+ "englishUsFontType":1,
+ "frenchText":"shinzombie",
+ "frenchFontType":1,
+ "italianText":"shinzombie",
+ "italianFontType":1,
+ "germanText":"shinzombie",
+ "germanFontType":1,
+ "spanishText":"shinzombie",
+ "spanishFontType":1,
+ "neutralSpanishText":"shinzombie",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"shinzombie",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_enenop",
+ "englishUsText":"I ♥ 「INFERNO」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「INFERNO」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「INFERNO」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「INFERNO」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「INFERNO」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「INFERNO」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「INFERNO」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_clsika",
+ "englishUsText":"I ♥ 「Requiem - Day of Wrath」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Requiem - Dies iræ」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Requiem - Dies Irae」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Requiem - Dies iræ」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Requiem \"Dies irae\"」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Requiem \"Dies irae\"」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Requiem \"Dies irae\"」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_armage",
+ "englishUsText":"I ♥ 「ARMAGEΔDON」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「ARMAGEΔDON」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「ARMAGEΔDON」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「ARMAGEΔDON」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「ARMAGEΔDON」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「ARMAGEΔDON」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「ARMAGEΔDON」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_nmsurv",
+ "englishUsText":"I ♥ 「Nightmare Survivor」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Nightmare Survivor」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Nightmare Survivor」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Nightmare Survivor」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Nightmare Survivor」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Nightmare Survivor」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Nightmare Survivor」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_3d3b2x",
+ "englishUsText":"I ♥ 「RYUMYAKU NO OU」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「RYUMYAKU NO OU」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「RYUMYAKU NO OU」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「RYUMYAKU NO OU」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「RYUMYAKU NO OU」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「RYUMYAKU NO OU」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「RYUMYAKU NO OU」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_enenop",
+ "englishUsText":"I ♥ 「INFERNO」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「INFERNO」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「INFERNO」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「INFERNO」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「INFERNO」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「INFERNO」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「INFERNO」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_clsika",
+ "englishUsText":"I ♥ 「Requiem - Day of Wrath」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Requiem - Dies iræ」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Requiem - Dies Irae」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Requiem - Dies iræ」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Requiem \"Dies irae\"」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Requiem \"Dies irae\"」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Requiem \"Dies irae\"」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_armage",
+ "englishUsText":"I ♥ 「ARMAGEΔDON」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「ARMAGEΔDON」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「ARMAGEΔDON」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「ARMAGEΔDON」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「ARMAGEΔDON」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「ARMAGEΔDON」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「ARMAGEΔDON」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_nmsurv",
+ "englishUsText":"I ♥ 「Nightmare Survivor」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Nightmare Survivor」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Nightmare Survivor」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Nightmare Survivor」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Nightmare Survivor」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Nightmare Survivor」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Nightmare Survivor」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_3d3b2x",
+ "englishUsText":"I ♥ 「RYUMYAKU NO OU」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「RYUMYAKU NO OU」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「RYUMYAKU NO OU」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「RYUMYAKU NO OU」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「RYUMYAKU NO OU」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「RYUMYAKU NO OU」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「RYUMYAKU NO OU」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_enenop",
+ "englishUsText":"INFERNO",
+ "englishUsFontType":1,
+ "frenchText":"INFERNO",
+ "frenchFontType":1,
+ "italianText":"INFERNO",
+ "italianFontType":1,
+ "germanText":"INFERNO",
+ "germanFontType":1,
+ "spanishText":"INFERNO",
+ "spanishFontType":1,
+ "neutralSpanishText":"INFERNO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"INFERNO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_enenop",
+ "englishUsText":"INFERNO",
+ "englishUsFontType":1,
+ "frenchText":"INFERNO",
+ "frenchFontType":1,
+ "italianText":"INFERNO",
+ "italianFontType":1,
+ "germanText":"INFERNO",
+ "germanFontType":1,
+ "spanishText":"INFERNO",
+ "spanishFontType":1,
+ "neutralSpanishText":"INFERNO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"INFERNO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_enenop",
+ "englishUsText":"INFERNO",
+ "englishUsFontType":1,
+ "frenchText":"INFERNO",
+ "frenchFontType":1,
+ "italianText":"INFERNO",
+ "italianFontType":1,
+ "germanText":"INFERNO",
+ "germanFontType":1,
+ "spanishText":"INFERNO",
+ "spanishFontType":1,
+ "neutralSpanishText":"INFERNO",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"INFERNO",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_enenop",
+ "englishUsText":"インフェルノ",
+ "englishUsFontType":0,
+ "frenchText":"インフェルノ",
+ "frenchFontType":0,
+ "italianText":"インフェルノ",
+ "italianFontType":0,
+ "germanText":"インフェルノ",
+ "germanFontType":0,
+ "spanishText":"インフェルノ",
+ "spanishFontType":0,
+ "neutralSpanishText":"インフェルノ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"インフェルノ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_enenop",
+ "englishUsText":"From \" ENN ENN NO SHOUBOUTAI \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" ENN ENN NO SHOUBOUTAI \"",
+ "frenchFontType":1,
+ "italianText":"Da \" ENN ENN NO SHOUBOUTAI \"",
+ "italianFontType":1,
+ "germanText":"Aus \" ENN ENN NO SHOUBOUTAI \"",
+ "germanFontType":1,
+ "spanishText":"De \" ENN ENN NO SHOUBOUTAI \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" ENN ENN NO SHOUBOUTAI \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" ENN ENN NO SHOUBOUTAI \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_clsika",
+ "englishUsText":"Requiem - Day of Wrath",
+ "englishUsFontType":1,
+ "frenchText":"Requiem - Dies iræ",
+ "frenchFontType":1,
+ "italianText":"Requiem - Dies Irae",
+ "italianFontType":1,
+ "germanText":"Requiem - Dies iræ",
+ "germanFontType":1,
+ "spanishText":"Requiem \"Dies irae\"",
+ "spanishFontType":1,
+ "neutralSpanishText":"Requiem \"Dies irae\"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Requiem \"Dies irae\"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_clsika",
+ "englishUsText":"Requiem - Day of Wrath",
+ "englishUsFontType":1,
+ "frenchText":"Requiem - Dies iræ",
+ "frenchFontType":1,
+ "italianText":"Requiem - Dies Irae",
+ "italianFontType":1,
+ "germanText":"Requiem - Dies iræ",
+ "germanFontType":1,
+ "spanishText":"Requiem \"Dies irae\"",
+ "spanishFontType":1,
+ "neutralSpanishText":"Requiem \"Dies irae\"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Requiem \"Dies irae\"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_clsika",
+ "englishUsText":"Requiem - Day of Wrath",
+ "englishUsFontType":1,
+ "frenchText":"Requiem - Dies iræ",
+ "frenchFontType":1,
+ "italianText":"Requiem - Dies Irae",
+ "italianFontType":1,
+ "germanText":"Requiem - Dies iræ",
+ "germanFontType":1,
+ "spanishText":"Requiem \"Dies irae\"",
+ "spanishFontType":1,
+ "neutralSpanishText":"Requiem \"Dies irae\"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Requiem \"Dies irae\"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_clsika",
+ "englishUsText":"レクイエム 怒りの日より",
+ "englishUsFontType":0,
+ "frenchText":"レクイエム 怒りの日より",
+ "frenchFontType":0,
+ "italianText":"レクイエム 怒りの日より",
+ "italianFontType":0,
+ "germanText":"レクイエム 怒りの日より",
+ "germanFontType":0,
+ "spanishText":"レクイエム 怒りの日より",
+ "spanishFontType":0,
+ "neutralSpanishText":"レクイエム 怒りの日より",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"レクイエム 怒りの日より",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_clsika",
+ "englishUsText":"Giuseppe Verdi",
+ "englishUsFontType":1,
+ "frenchText":"Giuseppe Verdi",
+ "frenchFontType":1,
+ "italianText":"Giuseppe Verdi",
+ "italianFontType":1,
+ "germanText":"Giuseppe Verdi",
+ "germanFontType":1,
+ "spanishText":"Giuseppe Verdi",
+ "spanishFontType":1,
+ "neutralSpanishText":"Giuseppe Verdi",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Giuseppe Verdi",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_armage",
+ "englishUsText":"ARMAGEΔDON",
+ "englishUsFontType":1,
+ "frenchText":"ARMAGEΔDON",
+ "frenchFontType":1,
+ "italianText":"ARMAGEΔDON",
+ "italianFontType":1,
+ "germanText":"ARMAGEΔDON",
+ "germanFontType":1,
+ "spanishText":"ARMAGEΔDON",
+ "spanishFontType":1,
+ "neutralSpanishText":"ARMAGEΔDON",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ARMAGEΔDON",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_armage",
+ "englishUsText":"ARMAGEΔDON",
+ "englishUsFontType":1,
+ "frenchText":"ARMAGEΔDON",
+ "frenchFontType":1,
+ "italianText":"ARMAGEΔDON",
+ "italianFontType":1,
+ "germanText":"ARMAGEΔDON",
+ "germanFontType":1,
+ "spanishText":"ARMAGEΔDON",
+ "spanishFontType":1,
+ "neutralSpanishText":"ARMAGEΔDON",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ARMAGEΔDON",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_armage",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_armage",
+ "englishUsText":"ARMAGEΔDON",
+ "englishUsFontType":0,
+ "frenchText":"ARMAGEΔDON",
+ "frenchFontType":0,
+ "italianText":"ARMAGEΔDON",
+ "italianFontType":0,
+ "germanText":"ARMAGEΔDON",
+ "germanFontType":0,
+ "spanishText":"ARMAGEΔDON",
+ "spanishFontType":0,
+ "neutralSpanishText":"ARMAGEΔDON",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ARMAGEΔDON",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_armage",
+ "englishUsText":"BlackY",
+ "englishUsFontType":1,
+ "frenchText":"BlackY",
+ "frenchFontType":1,
+ "italianText":"BlackY",
+ "italianFontType":1,
+ "germanText":"BlackY",
+ "germanFontType":1,
+ "spanishText":"BlackY",
+ "spanishFontType":1,
+ "neutralSpanishText":"BlackY",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"BlackY",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_nmsurv",
+ "englishUsText":"Nightmare Survivor",
+ "englishUsFontType":1,
+ "frenchText":"Nightmare Survivor",
+ "frenchFontType":1,
+ "italianText":"Nightmare Survivor",
+ "italianFontType":1,
+ "germanText":"Nightmare Survivor",
+ "germanFontType":1,
+ "spanishText":"Nightmare Survivor",
+ "spanishFontType":1,
+ "neutralSpanishText":"Nightmare Survivor",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Nightmare Survivor",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_nmsurv",
+ "englishUsText":"Nightmare Survivor",
+ "englishUsFontType":1,
+ "frenchText":"Nightmare Survivor",
+ "frenchFontType":1,
+ "italianText":"Nightmare Survivor",
+ "italianFontType":1,
+ "germanText":"Nightmare Survivor",
+ "germanFontType":1,
+ "spanishText":"Nightmare Survivor",
+ "spanishFontType":1,
+ "neutralSpanishText":"Nightmare Survivor",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Nightmare Survivor",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_nmsurv",
+ "englishUsText":"Nightmare Survivor",
+ "englishUsFontType":1,
+ "frenchText":"Nightmare Survivor",
+ "frenchFontType":1,
+ "italianText":"Nightmare Survivor",
+ "italianFontType":1,
+ "germanText":"Nightmare Survivor",
+ "germanFontType":1,
+ "spanishText":"Nightmare Survivor",
+ "spanishFontType":1,
+ "neutralSpanishText":"Nightmare Survivor",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Nightmare Survivor",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_nmsurv",
+ "englishUsText":"ナイトメア・サバイバー",
+ "englishUsFontType":0,
+ "frenchText":"ナイトメア・サバイバー",
+ "frenchFontType":0,
+ "italianText":"ナイトメア・サバイバー",
+ "italianFontType":0,
+ "germanText":"ナイトメア・サバイバー",
+ "germanFontType":0,
+ "spanishText":"ナイトメア・サバイバー",
+ "spanishFontType":0,
+ "neutralSpanishText":"ナイトメア・サバイバー",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ナイトメア・サバイバー",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_nmsurv",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_3d3b2x",
+ "englishUsText":"RYUMYAKU NO OU",
+ "englishUsFontType":1,
+ "frenchText":"RYUMYAKU NO OU",
+ "frenchFontType":1,
+ "italianText":"RYUMYAKU NO OU",
+ "italianFontType":1,
+ "germanText":"RYUMYAKU NO OU",
+ "germanFontType":1,
+ "spanishText":"RYUMYAKU NO OU",
+ "spanishFontType":1,
+ "neutralSpanishText":"RYUMYAKU NO OU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"RYUMYAKU NO OU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_3d3b2x",
+ "englishUsText":"RYUMYAKU NO OU",
+ "englishUsFontType":1,
+ "frenchText":"RYUMYAKU NO OU",
+ "frenchFontType":1,
+ "italianText":"RYUMYAKU NO OU",
+ "italianFontType":1,
+ "germanText":"RYUMYAKU NO OU",
+ "germanFontType":1,
+ "spanishText":"RYUMYAKU NO OU",
+ "spanishFontType":1,
+ "neutralSpanishText":"RYUMYAKU NO OU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"RYUMYAKU NO OU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_3d3b2x",
+ "englishUsText":"RYUMYAKU NO OU",
+ "englishUsFontType":1,
+ "frenchText":"RYUMYAKU NO OU",
+ "frenchFontType":1,
+ "italianText":"RYUMYAKU NO OU",
+ "italianFontType":1,
+ "germanText":"RYUMYAKU NO OU",
+ "germanFontType":1,
+ "spanishText":"RYUMYAKU NO OU",
+ "spanishFontType":1,
+ "neutralSpanishText":"RYUMYAKU NO OU",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"RYUMYAKU NO OU",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_3d3b2x",
+ "englishUsText":"龍脈の王",
+ "englishUsFontType":0,
+ "frenchText":"龍脈の王",
+ "frenchFontType":0,
+ "italianText":"龍脈の王",
+ "italianFontType":0,
+ "germanText":"龍脈の王",
+ "germanFontType":0,
+ "spanishText":"龍脈の王",
+ "spanishFontType":0,
+ "neutralSpanishText":"龍脈の王",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"龍脈の王",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_3d3b2x",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_enenop",
+ "englishUsText":"inferno",
+ "englishUsFontType":1,
+ "frenchText":"inferno",
+ "frenchFontType":1,
+ "italianText":"inferno",
+ "italianFontType":1,
+ "germanText":"inferno",
+ "germanFontType":1,
+ "spanishText":"inferno",
+ "spanishFontType":1,
+ "neutralSpanishText":"inferno",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"inferno",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_clsika",
+ "englishUsText":"requiem-dayofwrath",
+ "englishUsFontType":1,
+ "frenchText":"requiem-diesira",
+ "frenchFontType":1,
+ "italianText":"requiem-diesirae",
+ "italianFontType":1,
+ "germanText":"requiem-diesira",
+ "germanFontType":1,
+ "spanishText":"requiem\"diesirae\"",
+ "spanishFontType":1,
+ "neutralSpanishText":"requiem\"diesirae\"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"requiem\"diesirae\"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_armage",
+ "englishUsText":"armageΔdon",
+ "englishUsFontType":1,
+ "frenchText":"armageΔdon",
+ "frenchFontType":1,
+ "italianText":"armageΔdon",
+ "italianFontType":1,
+ "germanText":"armageΔdon",
+ "germanFontType":1,
+ "spanishText":"armageΔdon",
+ "spanishFontType":1,
+ "neutralSpanishText":"armageΔdon",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"armageΔdon",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_nmsurv",
+ "englishUsText":"nightmaresurvivor",
+ "englishUsFontType":1,
+ "frenchText":"nightmaresurvivor",
+ "frenchFontType":1,
+ "italianText":"nightmaresurvivor",
+ "italianFontType":1,
+ "germanText":"nightmaresurvivor",
+ "germanFontType":1,
+ "spanishText":"nightmaresurvivor",
+ "spanishFontType":1,
+ "neutralSpanishText":"nightmaresurvivor",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"nightmaresurvivor",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_3d3b2x",
+ "englishUsText":"ryumyakunoou",
+ "englishUsFontType":1,
+ "frenchText":"ryumyakunoou",
+ "frenchFontType":1,
+ "italianText":"ryumyakunoou",
+ "italianFontType":1,
+ "germanText":"ryumyakunoou",
+ "germanFontType":1,
+ "spanishText":"ryumyakunoou",
+ "spanishFontType":1,
+ "neutralSpanishText":"ryumyakunoou",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ryumyakunoou",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_mega10",
+ "englishUsText":"I ♥ 「DODONGADO-N」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「DODONGADO-N」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「DODONGADO-N」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「DODONGADO-N」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「DODONGADO-N」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「DODONGADO-N」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「DODONGADO-N」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_dumbop",
+ "englishUsText":"I ♥ 「ONEGAI MUSCLE」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「ONEGAI MUSCLE」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「ONEGAI MUSCLE」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「ONEGAI MUSCLE」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「ONEGAI MUSCLE」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「ONEGAI MUSCLE」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「ONEGAI MUSCLE」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_pixelg",
+ "englishUsText":"I ♥ 「Pixel Galaxy」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Pixel Galaxy」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Pixel Galaxy」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Pixel Galaxy」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Pixel Galaxy」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Pixel Galaxy」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Pixel Galaxy」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_mscl5",
+ "englishUsText":"I ♥ 「KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_sei10r",
+ "englishUsText":"I ♥ 「SEITEN NO REIMEI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SEITEN NO REIMEI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SEITEN NO REIMEI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SEITEN NO REIMEI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SEITEN NO REIMEI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SEITEN NO REIMEI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SEITEN NO REIMEI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_senval",
+ "englishUsText":"I ♥ 「SENKO VALKYRJA」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SENKO VALKYRJA」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SENKO VALKYRJA」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SENKO VALKYRJA」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SENKO VALKYRJA」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SENKO VALKYRJA」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SENKO VALKYRJA」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_mega10",
+ "englishUsText":"I ♥ 「DODONGADO-N」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「DODONGADO-N」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「DODONGADO-N」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「DODONGADO-N」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「DODONGADO-N」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「DODONGADO-N」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「DODONGADO-N」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_dumbop",
+ "englishUsText":"I ♥ 「ONEGAI MUSCLE」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「ONEGAI MUSCLE」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「ONEGAI MUSCLE」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「ONEGAI MUSCLE」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「ONEGAI MUSCLE」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「ONEGAI MUSCLE」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「ONEGAI MUSCLE」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_pixelg",
+ "englishUsText":"I ♥ 「Pixel Galaxy」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Pixel Galaxy」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Pixel Galaxy」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Pixel Galaxy」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Pixel Galaxy」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Pixel Galaxy」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Pixel Galaxy」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_mscl5",
+ "englishUsText":"I ♥ 「KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_sei10r",
+ "englishUsText":"I ♥ 「SEITEN NO REIMEI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SEITEN NO REIMEI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SEITEN NO REIMEI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SEITEN NO REIMEI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SEITEN NO REIMEI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SEITEN NO REIMEI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SEITEN NO REIMEI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_senval",
+ "englishUsText":"I ♥ 「SENKO VALKYRJA」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「SENKO VALKYRJA」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「SENKO VALKYRJA」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「SENKO VALKYRJA」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「SENKO VALKYRJA」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「SENKO VALKYRJA」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「SENKO VALKYRJA」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_dodon01",
+ "englishUsText":"I want to drum with everyone!",
+ "englishUsFontType":1,
+ "frenchText":"Je veux jouer du tambour avec tout le monde !",
+ "frenchFontType":1,
+ "italianText":"Voglio tambureggiare con tutti!",
+ "italianFontType":1,
+ "germanText":"Ich möchte mit allen trommeln!",
+ "germanFontType":1,
+ "spanishText":"¡Quiero redoblar con todo el mundo!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Quiero tocar con todos!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu quero batucar com todo mundo!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_dodon02",
+ "englishUsText":"I'm gonna be the number one at drums!",
+ "englishUsFontType":1,
+ "frenchText":"Je serai le meilleur joueur de tambour !",
+ "frenchFontType":1,
+ "italianText":"Sarò il numero uno a suonare i tamburi!",
+ "italianFontType":1,
+ "germanText":"Ich werde der Nummer-eins-Trommler!",
+ "germanFontType":1,
+ "spanishText":"¡Voy a ser el número uno del tambor!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Voy a ser el número uno en los tambores!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vou ser o número 1 em percussão!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_dodon03",
+ "englishUsText":"Let's go one more round!",
+ "englishUsFontType":1,
+ "frenchText":"Faisons encore une partie !",
+ "frenchFontType":1,
+ "italianText":"Facciamo un altro round!",
+ "italianFontType":1,
+ "germanText":"Noch eine Runde!",
+ "germanFontType":1,
+ "spanishText":"¡Vamos, otra ronda!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Vamos una ronda más!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Vamos jogar mais uma rodada!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_dodon04",
+ "englishUsText":"Our battle begins now!",
+ "englishUsFontType":1,
+ "frenchText":"Notre combat commence maintenant !",
+ "frenchFontType":1,
+ "italianText":"La battaglia inizia ora!",
+ "italianFontType":1,
+ "germanText":"Der Kampf beginnt jetzt!",
+ "germanFontType":1,
+ "spanishText":"¡La batalla empieza ya!",
+ "spanishFontType":1,
+ "neutralSpanishText":"¡Nuestra batalla comienza ahora!",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Nossa disputa começa agora!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_dodon01",
+ "englishUsText":"Self-Proclaimed Taiko Master",
+ "englishUsFontType":1,
+ "frenchText":"Maître Taiko autoproclamé",
+ "frenchFontType":1,
+ "italianText":"Maestro del Taiko autoproclamato",
+ "italianFontType":1,
+ "germanText":"Selbsternannter Taiko-Meister",
+ "germanFontType":1,
+ "spanishText":"Autoproclamado maestro de Taiko",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro de Taiko Autoproclamado",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre de Taiko autoproclamado",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_dodon02",
+ "englishUsText":"I AM Taiko!",
+ "englishUsFontType":1,
+ "frenchText":"JE SUIS Taiko",
+ "frenchFontType":1,
+ "italianText":"Il Taiko sono IO!",
+ "italianFontType":1,
+ "germanText":"Ich BIN Taiko!",
+ "germanFontType":1,
+ "spanishText":"Yo SOY el Taiko",
+ "spanishFontType":1,
+ "neutralSpanishText":"Yo SOY Taiko",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu SOU Taiko!",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_dodon03",
+ "englishUsText":"I Love Taiko, Taiko Loves Me",
+ "englishUsFontType":1,
+ "frenchText":"J'aime Taiko et c'est réciproque",
+ "frenchFontType":1,
+ "italianText":"Io amo il Taiko e il Taiko ama me",
+ "italianFontType":1,
+ "germanText":"Ich liebe Taiko, Taiko liebt mich",
+ "germanFontType":1,
+ "spanishText":"Adoro a Taiko y Taiko me adora",
+ "spanishFontType":1,
+ "neutralSpanishText":"Amo a Taiko, Taiko me Ama.",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Amo Taiko, Taiko me Ama",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_dodon04",
+ "englishUsText":"Session Play Master",
+ "englishUsFontType":1,
+ "frenchText":"Maître de session de jeu",
+ "frenchFontType":1,
+ "italianText":"Sessione Maestro",
+ "italianFontType":1,
+ "germanText":"Sessionspiel-Meister",
+ "germanFontType":1,
+ "spanishText":"Maestro de las tamboradas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Maestro del Sesión de Jugar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mestre da Sessão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_oshiro",
+ "englishUsText":"Castle",
+ "englishUsFontType":1,
+ "frenchText":"Château",
+ "frenchFontType":1,
+ "italianText":"Castello",
+ "italianFontType":1,
+ "germanText":"Schloss",
+ "germanFontType":1,
+ "spanishText":"Castillo",
+ "spanishFontType":1,
+ "neutralSpanishText":"Castillo",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Castelo",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_katsudon",
+ "englishUsText":"KATSU-don",
+ "englishUsFontType":1,
+ "frenchText":"KATSU-don",
+ "frenchFontType":1,
+ "italianText":"KATSU-don",
+ "italianFontType":1,
+ "germanText":"KATSU-don",
+ "germanFontType":1,
+ "spanishText":"Katsu-don",
+ "spanishFontType":1,
+ "neutralSpanishText":"KATSU-don",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KATSU-don",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"costume_fujisan",
+ "englishUsText":"Mt. Fuji",
+ "englishUsFontType":1,
+ "frenchText":"Mont Fuji",
+ "frenchFontType":1,
+ "italianText":"Monte Fuji",
+ "italianFontType":1,
+ "germanText":"Fuji",
+ "germanFontType":1,
+ "spanishText":"Monte Fuji",
+ "spanishFontType":1,
+ "neutralSpanishText":"Monte Fuji",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mt. Fuji",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"maturi_dodon",
+ "englishUsText":"Session Play Festival",
+ "englishUsFontType":1,
+ "frenchText":"Festival de session de jeu",
+ "frenchFontType":1,
+ "italianText":"Sessione Festival",
+ "italianFontType":1,
+ "germanText":"Sessionspiel-Festival",
+ "germanFontType":1,
+ "spanishText":"Festival de las tamboradas",
+ "spanishFontType":1,
+ "neutralSpanishText":"Festival: Sesión de Jugar",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Festival de Sessão",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_mega10",
+ "englishUsText":"DODONGADO-N",
+ "englishUsFontType":1,
+ "frenchText":"DODONGADO-N",
+ "frenchFontType":1,
+ "italianText":"DODONGADO-N",
+ "italianFontType":1,
+ "germanText":"DODONGADO-N",
+ "germanFontType":1,
+ "spanishText":"DODONGADO-N",
+ "spanishFontType":1,
+ "neutralSpanishText":"DODONGADO-N",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DODONGADO-N",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_mega10",
+ "englishUsText":"DODONGADO-N",
+ "englishUsFontType":1,
+ "frenchText":"DODONGADO-N",
+ "frenchFontType":1,
+ "italianText":"DODONGADO-N",
+ "italianFontType":1,
+ "germanText":"DODONGADO-N",
+ "germanFontType":1,
+ "spanishText":"DODONGADO-N",
+ "spanishFontType":1,
+ "neutralSpanishText":"DODONGADO-N",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DODONGADO-N",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_mega10",
+ "englishUsText":"DODONGADO-N",
+ "englishUsFontType":1,
+ "frenchText":"DODONGADO-N",
+ "frenchFontType":1,
+ "italianText":"DODONGADO-N",
+ "italianFontType":1,
+ "germanText":"DODONGADO-N",
+ "germanFontType":1,
+ "spanishText":"DODONGADO-N",
+ "spanishFontType":1,
+ "neutralSpanishText":"DODONGADO-N",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"DODONGADO-N",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_mega10",
+ "englishUsText":"ドドンガド~ン",
+ "englishUsFontType":0,
+ "frenchText":"ドドンガド~ン",
+ "frenchFontType":0,
+ "italianText":"ドドンガド~ン",
+ "italianFontType":0,
+ "germanText":"ドドンガド~ン",
+ "germanFontType":0,
+ "spanishText":"ドドンガド~ン",
+ "spanishFontType":0,
+ "neutralSpanishText":"ドドンガド~ン",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"ドドンガド~ン",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_mega10",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_dumbop",
+ "englishUsText":"ONEGAI MUSCLE",
+ "englishUsFontType":1,
+ "frenchText":"ONEGAI MUSCLE",
+ "frenchFontType":1,
+ "italianText":"ONEGAI MUSCLE",
+ "italianFontType":1,
+ "germanText":"ONEGAI MUSCLE",
+ "germanFontType":1,
+ "spanishText":"ONEGAI MUSCLE",
+ "spanishFontType":1,
+ "neutralSpanishText":"ONEGAI MUSCLE",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ONEGAI MUSCLE",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_dumbop",
+ "englishUsText":"ONEGAI MUSCLE",
+ "englishUsFontType":1,
+ "frenchText":"ONEGAI MUSCLE",
+ "frenchFontType":1,
+ "italianText":"ONEGAI MUSCLE",
+ "italianFontType":1,
+ "germanText":"ONEGAI MUSCLE",
+ "germanFontType":1,
+ "spanishText":"ONEGAI MUSCLE",
+ "spanishFontType":1,
+ "neutralSpanishText":"ONEGAI MUSCLE",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ONEGAI MUSCLE",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_dumbop",
+ "englishUsText":"ONEGAI MUSCLE",
+ "englishUsFontType":1,
+ "frenchText":"ONEGAI MUSCLE",
+ "frenchFontType":1,
+ "italianText":"ONEGAI MUSCLE",
+ "italianFontType":1,
+ "germanText":"ONEGAI MUSCLE",
+ "germanFontType":1,
+ "spanishText":"ONEGAI MUSCLE",
+ "spanishFontType":1,
+ "neutralSpanishText":"ONEGAI MUSCLE",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ONEGAI MUSCLE",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_dumbop",
+ "englishUsText":"お願いマッスル",
+ "englishUsFontType":0,
+ "frenchText":"お願いマッスル",
+ "frenchFontType":0,
+ "italianText":"お願いマッスル",
+ "italianFontType":0,
+ "germanText":"お願いマッスル",
+ "germanFontType":0,
+ "spanishText":"お願いマッスル",
+ "spanishFontType":0,
+ "neutralSpanishText":"お願いマッスル",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"お願いマッスル",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_dumbop",
+ "englishUsText":"From \" How Heavy Are the Dumbbells You Lift? \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" How Heavy Are the Dumbbells You Lift? \"",
+ "frenchFontType":1,
+ "italianText":"Da \" How Heavy Are the Dumbbells You Lift? \"",
+ "italianFontType":1,
+ "germanText":"Aus \" How Heavy Are the Dumbbells You Lift? \"",
+ "germanFontType":1,
+ "spanishText":"De \" How Heavy Are the Dumbbells You Lift? \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" How Heavy Are the Dumbbells You Lift? \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" How Heavy Are the Dumbbells You Lift? \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_pixelg",
+ "englishUsText":"Pixel Galaxy",
+ "englishUsFontType":1,
+ "frenchText":"Pixel Galaxy",
+ "frenchFontType":1,
+ "italianText":"Pixel Galaxy",
+ "italianFontType":1,
+ "germanText":"Pixel Galaxy",
+ "germanFontType":1,
+ "spanishText":"Pixel Galaxy",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pixel Galaxy",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pixel Galaxy",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_pixelg",
+ "englishUsText":"Pixel Galaxy",
+ "englishUsFontType":1,
+ "frenchText":"Pixel Galaxy",
+ "frenchFontType":1,
+ "italianText":"Pixel Galaxy",
+ "italianFontType":1,
+ "germanText":"Pixel Galaxy",
+ "germanFontType":1,
+ "spanishText":"Pixel Galaxy",
+ "spanishFontType":1,
+ "neutralSpanishText":"Pixel Galaxy",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Pixel Galaxy",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_pixelg",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_pixelg",
+ "englishUsText":"Pixel Galaxy",
+ "englishUsFontType":0,
+ "frenchText":"Pixel Galaxy",
+ "frenchFontType":0,
+ "italianText":"Pixel Galaxy",
+ "italianFontType":0,
+ "germanText":"Pixel Galaxy",
+ "germanFontType":0,
+ "spanishText":"Pixel Galaxy",
+ "spanishFontType":0,
+ "neutralSpanishText":"Pixel Galaxy",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Pixel Galaxy",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_pixelg",
+ "englishUsText":"Snail’s House",
+ "englishUsFontType":1,
+ "frenchText":"Snail’s House",
+ "frenchFontType":1,
+ "italianText":"Snail’s House",
+ "italianFontType":1,
+ "germanText":"Snail’s House",
+ "germanFontType":1,
+ "spanishText":"Snail’s House",
+ "spanishFontType":1,
+ "neutralSpanishText":"Snail’s House",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Snail’s House",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_mscl5",
+ "englishUsText":"KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~",
+ "englishUsFontType":1,
+ "frenchText":"KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~",
+ "frenchFontType":1,
+ "italianText":"KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~",
+ "italianFontType":1,
+ "germanText":"KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~",
+ "germanFontType":1,
+ "spanishText":"KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~",
+ "spanishFontType":1,
+ "neutralSpanishText":"KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_mscl5",
+ "englishUsText":"KINNIKU NO YOUNA BOKURA\n~MUSCLE AI NO Theme~",
+ "englishUsFontType":1,
+ "frenchText":"KINNIKU NO YOUNA BOKURA\n~MUSCLE AI NO Theme~",
+ "frenchFontType":1,
+ "italianText":"KINNIKU NO YOUNA BOKURA\n~MUSCLE AI NO Theme~",
+ "italianFontType":1,
+ "germanText":"KINNIKU NO YOUNA BOKURA\n~MUSCLE AI NO Theme~",
+ "germanFontType":1,
+ "spanishText":"KINNIKU NO YOUNA BOKURA\n~MUSCLE AI NO Theme~",
+ "spanishFontType":1,
+ "neutralSpanishText":"KINNIKU NO YOUNA BOKURA\n~MUSCLE AI NO Theme~",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KINNIKU NO YOUNA BOKURA\n~MUSCLE AI NO Theme~",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_mscl5",
+ "englishUsText":"KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~",
+ "englishUsFontType":1,
+ "frenchText":"KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~",
+ "frenchFontType":1,
+ "italianText":"KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~",
+ "italianFontType":1,
+ "germanText":"KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~",
+ "germanFontType":1,
+ "spanishText":"KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~",
+ "spanishFontType":1,
+ "neutralSpanishText":"KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_mscl5",
+ "englishUsText":"筋肉のような僕ら ~マッスル愛のテーマ~",
+ "englishUsFontType":0,
+ "frenchText":"筋肉のような僕ら ~マッスル愛のテーマ~",
+ "frenchFontType":0,
+ "italianText":"筋肉のような僕ら ~マッスル愛のテーマ~",
+ "italianFontType":0,
+ "germanText":"筋肉のような僕ら ~マッスル愛のテーマ~",
+ "germanFontType":0,
+ "spanishText":"筋肉のような僕ら ~マッスル愛のテーマ~",
+ "spanishFontType":0,
+ "neutralSpanishText":"筋肉のような僕ら ~マッスル愛のテーマ~",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"筋肉のような僕ら ~マッスル愛のテーマ~",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_mscl5",
+ "englishUsText":"From \" MUSCLE MARCH \"",
+ "englishUsFontType":1,
+ "frenchText":"De \"MUSCLE MARCH\"",
+ "frenchFontType":1,
+ "italianText":"Da \"MUSCLE MARCH\"",
+ "italianFontType":1,
+ "germanText":"Aus \" MUSCLE MARCH \"",
+ "germanFontType":1,
+ "spanishText":"De \" MUSCLE MARCH \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" MUSCLE MARCH \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" MUSCLE MARCH \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sei10r",
+ "englishUsText":"SEITEN NO REIMEI",
+ "englishUsFontType":1,
+ "frenchText":"SEITEN NO REIMEI",
+ "frenchFontType":1,
+ "italianText":"SEITEN NO REIMEI",
+ "italianFontType":1,
+ "germanText":"SEITEN NO REIMEI",
+ "germanFontType":1,
+ "spanishText":"SEITEN NO REIMEI",
+ "spanishFontType":1,
+ "neutralSpanishText":"SEITEN NO REIMEI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SEITEN NO REIMEI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_sei10r",
+ "englishUsText":"SEITEN NO REIMEI",
+ "englishUsFontType":1,
+ "frenchText":"SEITEN NO REIMEI",
+ "frenchFontType":1,
+ "italianText":"SEITEN NO REIMEI",
+ "italianFontType":1,
+ "germanText":"SEITEN NO REIMEI",
+ "germanFontType":1,
+ "spanishText":"SEITEN NO REIMEI",
+ "spanishFontType":1,
+ "neutralSpanishText":"SEITEN NO REIMEI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SEITEN NO REIMEI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_sei10r",
+ "englishUsText":"SEITEN NO REIMEI",
+ "englishUsFontType":1,
+ "frenchText":"SEITEN NO REIMEI",
+ "frenchFontType":1,
+ "italianText":"SEITEN NO REIMEI",
+ "italianFontType":1,
+ "germanText":"SEITEN NO REIMEI",
+ "germanFontType":1,
+ "spanishText":"SEITEN NO REIMEI",
+ "spanishFontType":1,
+ "neutralSpanishText":"SEITEN NO REIMEI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SEITEN NO REIMEI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_sei10r",
+ "englishUsText":"青天の黎明",
+ "englishUsFontType":0,
+ "frenchText":"青天の黎明",
+ "frenchFontType":0,
+ "italianText":"青天の黎明",
+ "italianFontType":0,
+ "germanText":"青天の黎明",
+ "germanFontType":0,
+ "spanishText":"青天の黎明",
+ "spanishFontType":0,
+ "neutralSpanishText":"青天の黎明",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"青天の黎明",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_sei10r",
+ "englishUsText":"steμ feat.siroa",
+ "englishUsFontType":1,
+ "frenchText":"steμ feat.siroa",
+ "frenchFontType":1,
+ "italianText":"steμ feat.siroa",
+ "italianFontType":1,
+ "germanText":"steμ feat.siroa",
+ "germanFontType":1,
+ "spanishText":"steμ feat.siroa",
+ "spanishFontType":1,
+ "neutralSpanishText":"steμ feat.siroa",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"steμ feat.siroa",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_senval",
+ "englishUsText":"SENKO VALKYRJA",
+ "englishUsFontType":1,
+ "frenchText":"SENKO VALKYRJA",
+ "frenchFontType":1,
+ "italianText":"SENKO VALKYRJA",
+ "italianFontType":1,
+ "germanText":"SENKO VALKYRJA",
+ "germanFontType":1,
+ "spanishText":"SENKO VALKYRJA",
+ "spanishFontType":1,
+ "neutralSpanishText":"SENKO VALKYRJA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SENKO VALKYRJA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_senval",
+ "englishUsText":"SENKO VALKYRJA",
+ "englishUsFontType":1,
+ "frenchText":"SENKO VALKYRJA",
+ "frenchFontType":1,
+ "italianText":"SENKO VALKYRJA",
+ "italianFontType":1,
+ "germanText":"SENKO VALKYRJA",
+ "germanFontType":1,
+ "spanishText":"SENKO VALKYRJA",
+ "spanishFontType":1,
+ "neutralSpanishText":"SENKO VALKYRJA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SENKO VALKYRJA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_senval",
+ "englishUsText":"SENKO VALKYRJA",
+ "englishUsFontType":1,
+ "frenchText":"SENKO VALKYRJA",
+ "frenchFontType":1,
+ "italianText":"SENKO VALKYRJA",
+ "italianFontType":1,
+ "germanText":"SENKO VALKYRJA",
+ "germanFontType":1,
+ "spanishText":"SENKO VALKYRJA",
+ "spanishFontType":1,
+ "neutralSpanishText":"SENKO VALKYRJA",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SENKO VALKYRJA",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_senval",
+ "englishUsText":"閃光ヴァルキュリア",
+ "englishUsFontType":0,
+ "frenchText":"閃光ヴァルキュリア",
+ "frenchFontType":0,
+ "italianText":"閃光ヴァルキュリア",
+ "italianFontType":0,
+ "germanText":"閃光ヴァルキュリア",
+ "germanFontType":0,
+ "spanishText":"閃光ヴァルキュリア",
+ "spanishFontType":0,
+ "neutralSpanishText":"閃光ヴァルキュリア",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"閃光ヴァルキュリア",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_senval",
+ "englishUsText":"SEIFU-MEIGETSU(Drop x Yura Hatsuki)",
+ "englishUsFontType":1,
+ "frenchText":"SEIFU-MEIGETSU(Drop x Yura Hatsuki)",
+ "frenchFontType":1,
+ "italianText":"SEIFU-MEIGETSU(Drop x Yura Hatsuki)",
+ "italianFontType":1,
+ "germanText":"SEIFU-MEIGETSU(Drop x Yura Hatsuki)",
+ "germanFontType":1,
+ "spanishText":"SEIFU-MEIGETSU(Drop x Yura Hatsuki)",
+ "spanishFontType":1,
+ "neutralSpanishText":"SEIFU-MEIGETSU(Drop x Yura Hatsuki)",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"SEIFU-MEIGETSU(Drop x Yura Hatsuki)",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_mega10",
+ "englishUsText":"dodongado-n",
+ "englishUsFontType":1,
+ "frenchText":"dodongado-n",
+ "frenchFontType":1,
+ "italianText":"dodongado-n",
+ "italianFontType":1,
+ "germanText":"dodongado-n",
+ "germanFontType":1,
+ "spanishText":"dodongado-n",
+ "spanishFontType":1,
+ "neutralSpanishText":"dodongado-n",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"dodongado-n",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_dumbop",
+ "englishUsText":"onegaimuscle",
+ "englishUsFontType":1,
+ "frenchText":"onegaimuscle",
+ "frenchFontType":1,
+ "italianText":"onegaimuscle",
+ "italianFontType":1,
+ "germanText":"onegaimuscle",
+ "germanFontType":1,
+ "spanishText":"onegaimuscle",
+ "spanishFontType":1,
+ "neutralSpanishText":"onegaimuscle",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"onegaimuscle",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_pixelg",
+ "englishUsText":"pixelgalaxy",
+ "englishUsFontType":1,
+ "frenchText":"pixelgalaxy",
+ "frenchFontType":1,
+ "italianText":"pixelgalaxy",
+ "italianFontType":1,
+ "germanText":"pixelgalaxy",
+ "germanFontType":1,
+ "spanishText":"pixelgalaxy",
+ "spanishFontType":1,
+ "neutralSpanishText":"pixelgalaxy",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"pixelgalaxy",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_mscl5",
+ "englishUsText":"kinnikunoyounabokura~muscleainotheme~",
+ "englishUsFontType":1,
+ "frenchText":"kinnikunoyounabokura~muscleainotheme~",
+ "frenchFontType":1,
+ "italianText":"kinnikunoyounabokura~muscleainotheme~",
+ "italianFontType":1,
+ "germanText":"kinnikunoyounabokura~muscleainotheme~",
+ "germanFontType":1,
+ "spanishText":"kinnikunoyounabokura~muscleainotheme~",
+ "spanishFontType":1,
+ "neutralSpanishText":"kinnikunoyounabokura~muscleainotheme~",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"kinnikunoyounabokura~muscleainotheme~",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_sei10r",
+ "englishUsText":"seitennoreimei",
+ "englishUsFontType":1,
+ "frenchText":"seitennoreimei",
+ "frenchFontType":1,
+ "italianText":"seitennoreimei",
+ "italianFontType":1,
+ "germanText":"seitennoreimei",
+ "germanFontType":1,
+ "spanishText":"seitennoreimei",
+ "spanishFontType":1,
+ "neutralSpanishText":"seitennoreimei",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"seitennoreimei",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_senval",
+ "englishUsText":"senkovalkyrja",
+ "englishUsFontType":1,
+ "frenchText":"senkovalkyrja",
+ "frenchFontType":1,
+ "italianText":"senkovalkyrja",
+ "italianFontType":1,
+ "germanText":"senkovalkyrja",
+ "germanFontType":1,
+ "spanishText":"senkovalkyrja",
+ "spanishFontType":1,
+ "neutralSpanishText":"senkovalkyrja",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"senkovalkyrja",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_thclmt",
+ "englishUsText":"I ♥ 「Calamity Fortune」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Calamity Fortune」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Calamity Fortune」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Calamity Fortune」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Calamity Fortune」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Calamity Fortune」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Calamity Fortune」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_aino",
+ "englishUsText":"I ♥ 「Taiko no Tatsujin Love Theme」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Chanson d'amour Taiko no Tatsujin」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Taiko no Tatsujin - Tema dell'amore」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Taiko no Tatsujin Love Theme」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Taiko no Tatsujin Love Theme」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Taiko no Tatsujin Love Theme」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Taiko no Tatsujin Love Theme」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_jazz2",
+ "englishUsText":"I ♥ 「Taiko Session」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Taiko Session」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Taiko Session」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Taiko Session」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Taiko Session」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Taiko Session」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Taiko Session」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_nao",
+ "englishUsText":"I ♥ 「HU-UN! BACHIO SENSEI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HU-UN! BACHIO SENSEI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HU-UN! BACHIO SENSEI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HU-UN! BACHIO SENSEI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HU-UN! BACHIO SENSEI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HU-UN! BACHIO SENSEI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HU-UN! BACHIO SENSEI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_exnao",
+ "englishUsText":"I ♥ 「HU-UN! BACHIO SENSEI -Long Ver.-」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HU-UN! BACHIO SENSEI -Long Ver.-」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HU-UN! BACHIO SENSEI -Long Ver.-」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HU-UN! BACHIO SENSEI -Long Ver.-」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HU-UN! BACHIO SENSEI -Long Ver.-」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HU-UN! BACHIO SENSEI -Long Ver.-」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HU-UN! BACHIO SENSEI -Long Ver.-」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_medl22",
+ "englishUsText":"I ♥ 「ZOKU SHIMEdley 2000」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「ZOKU SHIMEdley 2000」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「ZOKU SHIMEdley 2000」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「ZOKU SHIMEdley 2000」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「ZOKU SHIMEdley 2000」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「ZOKU SHIMEdley 2000」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「ZOKU SHIMEdley 2000」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_kykamb",
+ "englishUsText":"I ♥ 「AMBIVALENT」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「AMBIVALENT」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「AMBIVALENT」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「AMBIVALENT」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「AMBIVALENT」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「AMBIVALENT」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「AMBIVALENT」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_mnkesk",
+ "englishUsText":"I ♥ 「Mita Koto mo Nai Keshiki」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Mita Koto mo Nai Keshiki」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Mita Koto mo Nai Keshiki」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Mita Koto mo Nai Keshiki」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Mita Koto mo Nai Keshiki」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Mita Koto mo Nai Keshiki」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Mita Koto mo Nai Keshiki」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"greeting_tnkgrd",
+ "englishUsText":"I ♥ 「Grand Escape」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Grand Escape」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Grand Escape」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Grand Escape」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Grand Escape」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Grand Escape」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Grand Escape」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_thclmt",
+ "englishUsText":"I ♥ 「Calamity Fortune」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Calamity Fortune」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Calamity Fortune」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Calamity Fortune」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Calamity Fortune」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Calamity Fortune」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Calamity Fortune」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_aino",
+ "englishUsText":"I ♥ 「Taiko no Tatsujin Love Theme」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Chanson d'amour Taiko no Tatsujin」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Taiko no Tatsujin - Tema dell'amore」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Taiko no Tatsujin Love Theme」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Taiko no Tatsujin Love Theme」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Taiko no Tatsujin Love Theme」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Taiko no Tatsujin Love Theme」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_jazz2",
+ "englishUsText":"I ♥ 「Taiko Session」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Taiko Session」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Taiko Session」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Taiko Session」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Taiko Session」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Taiko Session」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Taiko Session」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_nao",
+ "englishUsText":"I ♥ 「HU-UN! BACHIO SENSEI」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HU-UN! BACHIO SENSEI」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HU-UN! BACHIO SENSEI」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HU-UN! BACHIO SENSEI」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HU-UN! BACHIO SENSEI」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HU-UN! BACHIO SENSEI」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HU-UN! BACHIO SENSEI」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_exnao",
+ "englishUsText":"I ♥ 「HU-UN! BACHIO SENSEI -Long Ver.-」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「HU-UN! BACHIO SENSEI -Long Ver.-」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「HU-UN! BACHIO SENSEI -Long Ver.-」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「HU-UN! BACHIO SENSEI -Long Ver.-」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「HU-UN! BACHIO SENSEI -Long Ver.-」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「HU-UN! BACHIO SENSEI -Long Ver.-」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「HU-UN! BACHIO SENSEI -Long Ver.-」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_medl22",
+ "englishUsText":"I ♥ 「ZOKU SHIMEdley 2000」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「ZOKU SHIMEdley 2000」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「ZOKU SHIMEdley 2000」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「ZOKU SHIMEdley 2000」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「ZOKU SHIMEdley 2000」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「ZOKU SHIMEdley 2000」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「ZOKU SHIMEdley 2000」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_kykamb",
+ "englishUsText":"I ♥ 「AMBIVALENT」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「AMBIVALENT」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「AMBIVALENT」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「AMBIVALENT」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「AMBIVALENT」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「AMBIVALENT」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「AMBIVALENT」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_mnkesk",
+ "englishUsText":"I ♥ 「Mita Koto mo Nai Keshiki」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Mita Koto mo Nai Keshiki」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Mita Koto mo Nai Keshiki」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Mita Koto mo Nai Keshiki」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Mita Koto mo Nai Keshiki」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Mita Koto mo Nai Keshiki」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Mita Koto mo Nai Keshiki」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"syougou_tnkgrd",
+ "englishUsText":"I ♥ 「Grand Escape」",
+ "englishUsFontType":1,
+ "frenchText":"I ♥ 「Grand Escape」",
+ "frenchFontType":1,
+ "italianText":"I ♥ 「Grand Escape」",
+ "italianFontType":1,
+ "germanText":"Ich ♥ 「Grand Escape」",
+ "germanFontType":1,
+ "spanishText":"I ♥ 「Grand Escape」",
+ "spanishFontType":1,
+ "neutralSpanishText":"I ♥ 「Grand Escape」",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Eu ♥ 「Grand Escape」",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_thclmt",
+ "englishUsText":"Calamity Fortune",
+ "englishUsFontType":1,
+ "frenchText":"Calamity Fortune",
+ "frenchFontType":1,
+ "italianText":"Calamity Fortune",
+ "italianFontType":1,
+ "germanText":"Calamity Fortune",
+ "germanFontType":1,
+ "spanishText":"Calamity Fortune",
+ "spanishFontType":1,
+ "neutralSpanishText":"Calamity Fortune",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Calamity Fortune",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_thclmt",
+ "englishUsText":"Calamity Fortune",
+ "englishUsFontType":1,
+ "frenchText":"Calamity Fortune",
+ "frenchFontType":1,
+ "italianText":"Calamity Fortune",
+ "italianFontType":1,
+ "germanText":"Calamity Fortune",
+ "germanFontType":1,
+ "spanishText":"Calamity Fortune",
+ "spanishFontType":1,
+ "neutralSpanishText":"Calamity Fortune",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Calamity Fortune",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_thclmt",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_thclmt",
+ "englishUsText":"Calamity Fortune",
+ "englishUsFontType":0,
+ "frenchText":"Calamity Fortune",
+ "frenchFontType":0,
+ "italianText":"Calamity Fortune",
+ "italianFontType":0,
+ "germanText":"Calamity Fortune",
+ "germanFontType":0,
+ "spanishText":"Calamity Fortune",
+ "spanishFontType":0,
+ "neutralSpanishText":"Calamity Fortune",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Calamity Fortune",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_thclmt",
+ "englishUsText":"Touhou Project Arrange / LeaF",
+ "englishUsFontType":1,
+ "frenchText":"Touhou Project Arrange / LeaF",
+ "frenchFontType":1,
+ "italianText":"Touhou Project Arrange / LeaF",
+ "italianFontType":1,
+ "germanText":"Touhou Project Arrange / LeaF",
+ "germanFontType":1,
+ "spanishText":"Touhou Project Arrange / LeaF",
+ "spanishFontType":1,
+ "neutralSpanishText":"Touhou Project Arrange / LeaF",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Touhou Project Arrange / LeaF",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_aino",
+ "englishUsText":"Taiko no Tatsujin Love Theme",
+ "englishUsFontType":1,
+ "frenchText":"Chanson d'amour Taiko no Tatsujin",
+ "frenchFontType":1,
+ "italianText":"Taiko no Tatsujin - Tema dell'amore",
+ "italianFontType":1,
+ "germanText":"Taiko no Tatsujin Love Theme",
+ "germanFontType":1,
+ "spanishText":"Taiko no Tatsujin Love Theme",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko no Tatsujin Love Theme",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Taiko no Tatsujin Love Theme",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_aino",
+ "englishUsText":"Taiko no Tatsujin Love Theme",
+ "englishUsFontType":1,
+ "frenchText":"Chanson d'amour Taiko no Tatsujin",
+ "frenchFontType":1,
+ "italianText":"Taiko no Tatsujin - Tema dell'amore",
+ "italianFontType":1,
+ "germanText":"Taiko no Tatsujin Love Theme",
+ "germanFontType":1,
+ "spanishText":"Taiko no Tatsujin Love Theme",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko no Tatsujin Love Theme",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Taiko no Tatsujin Love Theme",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_aino",
+ "englishUsText":"Taiko no Tatsujin Love Theme",
+ "englishUsFontType":1,
+ "frenchText":"Chanson d'amour Taiko no Tatsujin",
+ "frenchFontType":1,
+ "italianText":"Taiko no Tatsujin - Tema dell'amore",
+ "italianFontType":1,
+ "germanText":"Taiko no Tatsujin Love Theme",
+ "germanFontType":1,
+ "spanishText":"Taiko no Tatsujin Love Theme",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko no Tatsujin Love Theme",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Taiko no Tatsujin Love Theme",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_aino",
+ "englishUsText":"太鼓の達人・愛のテーマ",
+ "englishUsFontType":0,
+ "frenchText":"太鼓の達人・愛のテーマ",
+ "frenchFontType":0,
+ "italianText":"太鼓の達人・愛のテーマ",
+ "italianFontType":0,
+ "germanText":"太鼓の達人・愛のテーマ",
+ "germanFontType":0,
+ "spanishText":"太鼓の達人・愛のテーマ",
+ "spanishFontType":0,
+ "neutralSpanishText":"太鼓の達人・愛のテーマ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"太鼓の達人・愛のテーマ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_aino",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_jazz2",
+ "englishUsText":"Taiko Session",
+ "englishUsFontType":1,
+ "frenchText":"Taiko Session",
+ "frenchFontType":1,
+ "italianText":"Taiko Session",
+ "italianFontType":1,
+ "germanText":"Taiko Session",
+ "germanFontType":1,
+ "spanishText":"Taiko Session",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko Session",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Taiko Session",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_jazz2",
+ "englishUsText":"Taiko Session",
+ "englishUsFontType":1,
+ "frenchText":"Taiko Session",
+ "frenchFontType":1,
+ "italianText":"Taiko Session",
+ "italianFontType":1,
+ "germanText":"Taiko Session",
+ "germanFontType":1,
+ "spanishText":"Taiko Session",
+ "spanishFontType":1,
+ "neutralSpanishText":"Taiko Session",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Taiko Session",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_jazz2",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_jazz2",
+ "englishUsText":"Taiko Session",
+ "englishUsFontType":0,
+ "frenchText":"Taiko Session",
+ "frenchFontType":0,
+ "italianText":"Taiko Session",
+ "italianFontType":0,
+ "germanText":"Taiko Session",
+ "germanFontType":0,
+ "spanishText":"Taiko Session",
+ "spanishFontType":0,
+ "neutralSpanishText":"Taiko Session",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"Taiko Session",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_jazz2",
+ "englishUsText":"~Live Version~",
+ "englishUsFontType":1,
+ "frenchText":"~Live Version~",
+ "frenchFontType":1,
+ "italianText":"~Live Version~",
+ "italianFontType":1,
+ "germanText":"~Live Version~",
+ "germanFontType":1,
+ "spanishText":"~Live Version~",
+ "spanishFontType":1,
+ "neutralSpanishText":"~Live Version~",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"~Live Version~",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_nao",
+ "englishUsText":"HU-UN! BACHIO SENSEI",
+ "englishUsFontType":1,
+ "frenchText":"HU-UN! BACHIO SENSEI",
+ "frenchFontType":1,
+ "italianText":"HU-UN! BACHIO SENSEI",
+ "italianFontType":1,
+ "germanText":"HU-UN! BACHIO SENSEI",
+ "germanFontType":1,
+ "spanishText":"HU-UN! BACHIO SENSEI",
+ "spanishFontType":1,
+ "neutralSpanishText":"HU-UN! BACHIO SENSEI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HU-UN! BACHIO SENSEI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_nao",
+ "englishUsText":"HU-UN! BACHIO SENSEI",
+ "englishUsFontType":1,
+ "frenchText":"HU-UN! BACHIO SENSEI",
+ "frenchFontType":1,
+ "italianText":"HU-UN! BACHIO SENSEI",
+ "italianFontType":1,
+ "germanText":"HU-UN! BACHIO SENSEI",
+ "germanFontType":1,
+ "spanishText":"HU-UN! BACHIO SENSEI",
+ "spanishFontType":1,
+ "neutralSpanishText":"HU-UN! BACHIO SENSEI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HU-UN! BACHIO SENSEI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_nao",
+ "englishUsText":"HU-UN! BACHIO SENSEI",
+ "englishUsFontType":1,
+ "frenchText":"HU-UN! BACHIO SENSEI",
+ "frenchFontType":1,
+ "italianText":"HU-UN! BACHIO SENSEI",
+ "italianFontType":1,
+ "germanText":"HU-UN! BACHIO SENSEI",
+ "germanFontType":1,
+ "spanishText":"HU-UN! BACHIO SENSEI",
+ "spanishFontType":1,
+ "neutralSpanishText":"HU-UN! BACHIO SENSEI",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HU-UN! BACHIO SENSEI",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_nao",
+ "englishUsText":"風雲!バチお先生",
+ "englishUsFontType":0,
+ "frenchText":"風雲!バチお先生",
+ "frenchFontType":0,
+ "italianText":"風雲!バチお先生",
+ "italianFontType":0,
+ "germanText":"風雲!バチお先生",
+ "germanFontType":0,
+ "spanishText":"風雲!バチお先生",
+ "spanishFontType":0,
+ "neutralSpanishText":"風雲!バチお先生",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"風雲!バチお先生",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_nao",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_exnao",
+ "englishUsText":"HU-UN! BACHIO SENSEI -Long Ver.-",
+ "englishUsFontType":1,
+ "frenchText":"HU-UN! BACHIO SENSEI -Long Ver.-",
+ "frenchFontType":1,
+ "italianText":"HU-UN! BACHIO SENSEI -Long Ver.-",
+ "italianFontType":1,
+ "germanText":"HU-UN! BACHIO SENSEI -Long Ver.-",
+ "germanFontType":1,
+ "spanishText":"HU-UN! BACHIO SENSEI -Long Ver.-",
+ "spanishFontType":1,
+ "neutralSpanishText":"HU-UN! BACHIO SENSEI -Long Ver.-",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HU-UN! BACHIO SENSEI -Long Ver.-",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_exnao",
+ "englishUsText":"HU-UN! BACHIO SENSEI\n-Long Ver.-",
+ "englishUsFontType":1,
+ "frenchText":"HU-UN! BACHIO SENSEI\n-Long Ver.-",
+ "frenchFontType":1,
+ "italianText":"HU-UN! BACHIO SENSEI\n-Long Ver.-",
+ "italianFontType":1,
+ "germanText":"HU-UN! BACHIO SENSEI\n-Long Ver.-",
+ "germanFontType":1,
+ "spanishText":"HU-UN! BACHIO SENSEI\n-Long Ver.-",
+ "spanishFontType":1,
+ "neutralSpanishText":"HU-UN! BACHIO SENSEI\n-Long Ver.-",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HU-UN! BACHIO SENSEI\n-Long Ver.-",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_exnao",
+ "englishUsText":"HU-UN! BACHIO SENSEI -Long Ver.-",
+ "englishUsFontType":1,
+ "frenchText":"HU-UN! BACHIO SENSEI -Long Ver.-",
+ "frenchFontType":1,
+ "italianText":"HU-UN! BACHIO SENSEI -Long Ver.-",
+ "italianFontType":1,
+ "germanText":"HU-UN! BACHIO SENSEI -Long Ver.-",
+ "germanFontType":1,
+ "spanishText":"HU-UN! BACHIO SENSEI -Long Ver.-",
+ "spanishFontType":1,
+ "neutralSpanishText":"HU-UN! BACHIO SENSEI -Long Ver.-",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"HU-UN! BACHIO SENSEI -Long Ver.-",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_exnao",
+ "englishUsText":"風雲!バチお先生 -Long Ver.-",
+ "englishUsFontType":0,
+ "frenchText":"風雲!バチお先生 -Long Ver.-",
+ "frenchFontType":0,
+ "italianText":"風雲!バチお先生 -Long Ver.-",
+ "italianFontType":0,
+ "germanText":"風雲!バチお先生 -Long Ver.-",
+ "germanFontType":0,
+ "spanishText":"風雲!バチお先生 -Long Ver.-",
+ "spanishFontType":0,
+ "neutralSpanishText":"風雲!バチお先生 -Long Ver.-",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"風雲!バチお先生 -Long Ver.-",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_exnao",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_medl22",
+ "englishUsText":"ZOKU SHIMEdley 2000",
+ "englishUsFontType":1,
+ "frenchText":"ZOKU SHIMEdley 2000",
+ "frenchFontType":1,
+ "italianText":"ZOKU SHIMEdley 2000",
+ "italianFontType":1,
+ "germanText":"ZOKU SHIMEdley 2000",
+ "germanFontType":1,
+ "spanishText":"ZOKU SHIMEdley 2000",
+ "spanishFontType":1,
+ "neutralSpanishText":"ZOKU SHIMEdley 2000",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ZOKU SHIMEdley 2000",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_medl22",
+ "englishUsText":"ZOKU SHIMEdley 2000",
+ "englishUsFontType":1,
+ "frenchText":"ZOKU SHIMEdley 2000",
+ "frenchFontType":1,
+ "italianText":"ZOKU SHIMEdley 2000",
+ "italianFontType":1,
+ "germanText":"ZOKU SHIMEdley 2000",
+ "germanFontType":1,
+ "spanishText":"ZOKU SHIMEdley 2000",
+ "spanishFontType":1,
+ "neutralSpanishText":"ZOKU SHIMEdley 2000",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ZOKU SHIMEdley 2000",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_medl22",
+ "englishUsText":"ZOKU SHIMEdley 2000",
+ "englishUsFontType":1,
+ "frenchText":"ZOKU SHIMEdley 2000",
+ "frenchFontType":1,
+ "italianText":"ZOKU SHIMEdley 2000",
+ "italianFontType":1,
+ "germanText":"ZOKU SHIMEdley 2000",
+ "germanFontType":1,
+ "spanishText":"ZOKU SHIMEdley 2000",
+ "spanishFontType":1,
+ "neutralSpanishText":"ZOKU SHIMEdley 2000",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ZOKU SHIMEdley 2000",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_medl22",
+ "englishUsText":"続・〆ドレー2000",
+ "englishUsFontType":0,
+ "frenchText":"続・〆ドレー2000",
+ "frenchFontType":0,
+ "italianText":"続・〆ドレー2000",
+ "italianFontType":0,
+ "germanText":"続・〆ドレー2000",
+ "germanFontType":0,
+ "spanishText":"続・〆ドレー2000",
+ "spanishFontType":0,
+ "neutralSpanishText":"続・〆ドレー2000",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"続・〆ドレー2000",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_medl22",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_kykamb",
+ "englishUsText":"AMBIVALENT",
+ "englishUsFontType":1,
+ "frenchText":"AMBIVALENT",
+ "frenchFontType":1,
+ "italianText":"AMBIVALENT",
+ "italianFontType":1,
+ "germanText":"AMBIVALENT",
+ "germanFontType":1,
+ "spanishText":"AMBIVALENT",
+ "spanishFontType":1,
+ "neutralSpanishText":"AMBIVALENT",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"AMBIVALENT",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_kykamb",
+ "englishUsText":"AMBIVALENT",
+ "englishUsFontType":1,
+ "frenchText":"AMBIVALENT",
+ "frenchFontType":1,
+ "italianText":"AMBIVALENT",
+ "italianFontType":1,
+ "germanText":"AMBIVALENT",
+ "germanFontType":1,
+ "spanishText":"AMBIVALENT",
+ "spanishFontType":1,
+ "neutralSpanishText":"AMBIVALENT",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"AMBIVALENT",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_kykamb",
+ "englishUsText":"AMBIVALENT",
+ "englishUsFontType":1,
+ "frenchText":"AMBIVALENT",
+ "frenchFontType":1,
+ "italianText":"AMBIVALENT",
+ "italianFontType":1,
+ "germanText":"AMBIVALENT",
+ "germanFontType":1,
+ "spanishText":"AMBIVALENT",
+ "spanishFontType":1,
+ "neutralSpanishText":"AMBIVALENT",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"AMBIVALENT",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_kykamb",
+ "englishUsText":"アンビバレント",
+ "englishUsFontType":0,
+ "frenchText":"アンビバレント",
+ "frenchFontType":0,
+ "italianText":"アンビバレント",
+ "italianFontType":0,
+ "germanText":"アンビバレント",
+ "germanFontType":0,
+ "spanishText":"アンビバレント",
+ "spanishFontType":0,
+ "neutralSpanishText":"アンビバレント",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"アンビバレント",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_kykamb",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_mnkesk",
+ "englishUsText":"Mita Koto mo Nai Keshiki",
+ "englishUsFontType":1,
+ "frenchText":"Mita Koto mo Nai Keshiki",
+ "frenchFontType":1,
+ "italianText":"Mita Koto mo Nai Keshiki",
+ "italianFontType":1,
+ "germanText":"Mita Koto mo Nai Keshiki",
+ "germanFontType":1,
+ "spanishText":"Mita Koto mo Nai Keshiki",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mita Koto mo Nai Keshiki",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mita Koto mo Nai Keshiki",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_mnkesk",
+ "englishUsText":"Mita Koto mo Nai Keshiki",
+ "englishUsFontType":1,
+ "frenchText":"Mita Koto mo Nai Keshiki",
+ "frenchFontType":1,
+ "italianText":"Mita Koto mo Nai Keshiki",
+ "italianFontType":1,
+ "germanText":"Mita Koto mo Nai Keshiki",
+ "germanFontType":1,
+ "spanishText":"Mita Koto mo Nai Keshiki",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mita Koto mo Nai Keshiki",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mita Koto mo Nai Keshiki",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_mnkesk",
+ "englishUsText":"Mita Koto mo Nai Keshiki",
+ "englishUsFontType":1,
+ "frenchText":"Mita Koto mo Nai Keshiki",
+ "frenchFontType":1,
+ "italianText":"Mita Koto mo Nai Keshiki",
+ "italianFontType":1,
+ "germanText":"Mita Koto mo Nai Keshiki",
+ "germanFontType":1,
+ "spanishText":"Mita Koto mo Nai Keshiki",
+ "spanishFontType":1,
+ "neutralSpanishText":"Mita Koto mo Nai Keshiki",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Mita Koto mo Nai Keshiki",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_mnkesk",
+ "englishUsText":"見たこともない景色",
+ "englishUsFontType":0,
+ "frenchText":"見たこともない景色",
+ "frenchFontType":0,
+ "italianText":"見たこともない景色",
+ "italianFontType":0,
+ "germanText":"見たこともない景色",
+ "germanFontType":0,
+ "spanishText":"見たこともない景色",
+ "spanishFontType":0,
+ "neutralSpanishText":"見たこともない景色",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"見たこともない景色",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_mnkesk",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_tnkgrd",
+ "englishUsText":"Grand Escape",
+ "englishUsFontType":1,
+ "frenchText":"Grand Escape",
+ "frenchFontType":1,
+ "italianText":"Grand Escape",
+ "italianFontType":1,
+ "germanText":"Grand Escape",
+ "germanFontType":1,
+ "spanishText":"Grand Escape",
+ "spanishFontType":1,
+ "neutralSpanishText":"Grand Escape",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Grand Escape",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_small_tnkgrd",
+ "englishUsText":"Grand Escape",
+ "englishUsFontType":1,
+ "frenchText":"Grand Escape",
+ "frenchFontType":1,
+ "italianText":"Grand Escape",
+ "italianFontType":1,
+ "germanText":"Grand Escape",
+ "germanFontType":1,
+ "spanishText":"Grand Escape",
+ "spanishFontType":1,
+ "neutralSpanishText":"Grand Escape",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Grand Escape",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_detail_tnkgrd",
+ "englishUsText":"Grand Escape",
+ "englishUsFontType":1,
+ "frenchText":"Grand Escape",
+ "frenchFontType":1,
+ "italianText":"Grand Escape",
+ "italianFontType":1,
+ "germanText":"Grand Escape",
+ "germanFontType":1,
+ "spanishText":"Grand Escape",
+ "spanishFontType":1,
+ "neutralSpanishText":"Grand Escape",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"Grand Escape",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_japan_tnkgrd",
+ "englishUsText":"グランドエスケープ",
+ "englishUsFontType":0,
+ "frenchText":"グランドエスケープ",
+ "frenchFontType":0,
+ "italianText":"グランドエスケープ",
+ "italianFontType":0,
+ "germanText":"グランドエスケープ",
+ "germanFontType":0,
+ "spanishText":"グランドエスケープ",
+ "spanishFontType":0,
+ "neutralSpanishText":"グランドエスケープ",
+ "neutralSpanishFontType":0,
+ "brazilPortugueseText":"グランドエスケープ",
+ "brazilPortugueseFontType":0
+ },
+ {
+ "key":"song_sub_tnkgrd",
+ "englishUsText":"from \" WEATHERING WITH YOU \"",
+ "englishUsFontType":1,
+ "frenchText":"tiré de \" WEATHERING WITH YOU \"",
+ "frenchFontType":1,
+ "italianText":"da \" WEATHERING WITH YOU \"",
+ "italianFontType":1,
+ "germanText":"Aus \" WEATHERING WITH YOU \"",
+ "germanFontType":1,
+ "spanishText":"De \" WEATHERING WITH YOU \"",
+ "spanishFontType":1,
+ "neutralSpanishText":"De \" WEATHERING WITH YOU \"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"De \" WEATHERING WITH YOU \"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_thclmt",
+ "englishUsText":"calamityfortune",
+ "englishUsFontType":1,
+ "frenchText":"calamityfortune",
+ "frenchFontType":1,
+ "italianText":"calamityfortune",
+ "italianFontType":1,
+ "germanText":"calamityfortune",
+ "germanFontType":1,
+ "spanishText":"calamityfortune",
+ "spanishFontType":1,
+ "neutralSpanishText":"calamityfortune",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"calamityfortune",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_aino",
+ "englishUsText":"taikonotatsujinlovetheme",
+ "englishUsFontType":1,
+ "frenchText":"chansond'amourtaikonotatsujin",
+ "frenchFontType":1,
+ "italianText":"taikonotatsujin-temadell'amore",
+ "italianFontType":1,
+ "germanText":"taikonotatsujinlovetheme",
+ "germanFontType":1,
+ "spanishText":"taikonotatsujinlovetheme",
+ "spanishFontType":1,
+ "neutralSpanishText":"taikonotatsujinlovetheme",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"taikonotatsujinlovetheme",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_jazz2",
+ "englishUsText":"taikosession",
+ "englishUsFontType":1,
+ "frenchText":"taikosession",
+ "frenchFontType":1,
+ "italianText":"taikosession",
+ "italianFontType":1,
+ "germanText":"taikosession",
+ "germanFontType":1,
+ "spanishText":"taikosession",
+ "spanishFontType":1,
+ "neutralSpanishText":"taikosession",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"taikosession",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_nao",
+ "englishUsText":"hu-un!bachiosensei",
+ "englishUsFontType":1,
+ "frenchText":"hu-un!bachiosensei",
+ "frenchFontType":1,
+ "italianText":"hu-un!bachiosensei",
+ "italianFontType":1,
+ "germanText":"hu-un!bachiosensei",
+ "germanFontType":1,
+ "spanishText":"hu-un!bachiosensei",
+ "spanishFontType":1,
+ "neutralSpanishText":"hu-un!bachiosensei",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"hu-un!bachiosensei",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_exnao",
+ "englishUsText":"hu-un!bachiosensei-longver.-",
+ "englishUsFontType":1,
+ "frenchText":"hu-un!bachiosensei-longver.-",
+ "frenchFontType":1,
+ "italianText":"hu-un!bachiosensei-longver.-",
+ "italianFontType":1,
+ "germanText":"hu-un!bachiosensei-longver.-",
+ "germanFontType":1,
+ "spanishText":"hu-un!bachiosensei-longver.-",
+ "spanishFontType":1,
+ "neutralSpanishText":"hu-un!bachiosensei-longver.-",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"hu-un!bachiosensei-longver.-",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_medl22",
+ "englishUsText":"zokushimedley2000",
+ "englishUsFontType":1,
+ "frenchText":"zokushimedley2000",
+ "frenchFontType":1,
+ "italianText":"zokushimedley2000",
+ "italianFontType":1,
+ "germanText":"zokushimedley2000",
+ "germanFontType":1,
+ "spanishText":"zokushimedley2000",
+ "spanishFontType":1,
+ "neutralSpanishText":"zokushimedley2000",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"zokushimedley2000",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_kykamb",
+ "englishUsText":"ambivalent",
+ "englishUsFontType":1,
+ "frenchText":"ambivalent",
+ "frenchFontType":1,
+ "italianText":"ambivalent",
+ "italianFontType":1,
+ "germanText":"ambivalent",
+ "germanFontType":1,
+ "spanishText":"ambivalent",
+ "spanishFontType":1,
+ "neutralSpanishText":"ambivalent",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"ambivalent",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_mnkesk",
+ "englishUsText":"mitakotomonaikeshiki",
+ "englishUsFontType":1,
+ "frenchText":"mitakotomonaikeshiki",
+ "frenchFontType":1,
+ "italianText":"mitakotomonaikeshiki",
+ "italianFontType":1,
+ "germanText":"mitakotomonaikeshiki",
+ "germanFontType":1,
+ "spanishText":"mitakotomonaikeshiki",
+ "spanishFontType":1,
+ "neutralSpanishText":"mitakotomonaikeshiki",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"mitakotomonaikeshiki",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"song_sort_tnkgrd",
+ "englishUsText":"grandescape",
+ "englishUsFontType":1,
+ "frenchText":"grandescape",
+ "frenchFontType":1,
+ "italianText":"grandescape",
+ "italianFontType":1,
+ "germanText":"grandescape",
+ "germanFontType":1,
+ "spanishText":"grandescape",
+ "spanishFontType":1,
+ "neutralSpanishText":"grandescape",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"grandescape",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4823",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4824",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4825",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4826",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4827",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4828",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4829",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4830",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4831",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4832",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4833",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4834",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4835",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4836",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4837",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4838",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4839",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4840",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4841",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4842",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4843",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4844",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4845",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4846",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4847",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4848",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4849",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4850",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4851",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4852",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4853",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4854",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4855",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4856",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4857",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4858",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4859",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4860",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4861",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4862",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4863",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4864",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4865",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4866",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4867",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4868",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4869",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4870",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4871",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4872",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4873",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4874",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4875",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4876",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4877",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4878",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4879",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4880",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4881",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4882",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4883",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4884",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4885",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4886",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4887",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4888",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4889",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4890",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4891",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4892",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4893",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4894",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4895",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4896",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4897",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4898",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4899",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4900",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4901",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4902",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4903",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4904",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4905",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4906",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ },
+ {
+ "key":"__test4907",
+ "englishUsText":"",
+ "englishUsFontType":1,
+ "frenchText":"",
+ "frenchFontType":1,
+ "italianText":"",
+ "italianFontType":1,
+ "germanText":"",
+ "germanFontType":1,
+ "spanishText":"",
+ "spanishFontType":1,
+ "neutralSpanishText":"",
+ "neutralSpanishFontType":1,
+ "brazilPortugueseText":"",
+ "brazilPortugueseFontType":1
+ }
+]}
diff --git a/TaikoSongConversionTool/data/_console/ORBIS/datatablejp/wordlist.json b/TaikoSongConversionTool/data/_console/ORBIS/datatablejp/wordlist.json
new file mode 100644
index 0000000..6209e2e
--- /dev/null
+++ b/TaikoSongConversionTool/data/_console/ORBIS/datatablejp/wordlist.json
@@ -0,0 +1,38700 @@
+{"items":[
+ {
+ "key":"dlc_body",
+ "japaneseText":"ふく",
+ "japaneseFontType":0,
+ "englishUsText":"Body",
+ "englishUsFontType":0,
+ "chineseTText":"服裝",
+ "chineseTFontType":1,
+ "koreanText":"옷",
+ "koreanFontType":2
+ },
+ {
+ "key":"dlc_head",
+ "japaneseText":"ぼうし",
+ "japaneseFontType":0,
+ "englishUsText":"Head",
+ "englishUsFontType":0,
+ "chineseTText":"帽子",
+ "chineseTFontType":1,
+ "koreanText":"모자",
+ "koreanFontType":2
+ },
+ {
+ "key":"dlc_kigurumi",
+ "japaneseText":"きぐるみ",
+ "japaneseFontType":0,
+ "englishUsText":"Kigurumi",
+ "englishUsFontType":0,
+ "chineseTText":"布偶裝",
+ "chineseTFontType":1,
+ "koreanText":"인형 옷",
+ "koreanFontType":2
+ },
+ {
+ "key":"dlc_make",
+ "japaneseText":"メイク",
+ "japaneseFontType":0,
+ "englishUsText":"Makeup",
+ "englishUsFontType":0,
+ "chineseTText":"化妝",
+ "chineseTFontType":1,
+ "koreanText":"화장",
+ "koreanFontType":2
+ },
+ {
+ "key":"dlc_petit",
+ "japaneseText":"ぷちキャラ",
+ "japaneseFontType":0,
+ "englishUsText":"Petit Character",
+ "englishUsFontType":0,
+ "chineseTText":"迷你角色",
+ "chineseTFontType":1,
+ "koreanText":"꼬마 캐릭터",
+ "koreanFontType":2
+ },
+ {
+ "key":"dlc_song",
+ "japaneseText":"曲",
+ "japaneseFontType":0,
+ "englishUsText":"Song",
+ "englishUsFontType":0,
+ "chineseTText":"樂曲",
+ "chineseTFontType":1,
+ "koreanText":"곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"dlc_intrument",
+ "japaneseText":"音色",
+ "japaneseFontType":0,
+ "englishUsText":"Instrument",
+ "englishUsFontType":0,
+ "chineseTText":"音色",
+ "chineseTFontType":1,
+ "koreanText":"음색",
+ "koreanFontType":2
+ },
+ {
+ "key":"npc_dora",
+ "japaneseText":"ドラえもん",
+ "japaneseFontType":0,
+ "englishUsText":"DORAEMON",
+ "englishUsFontType":0,
+ "chineseTText":"哆啦A夢",
+ "chineseTFontType":1,
+ "koreanText":"도라에몽",
+ "koreanFontType":2
+ },
+ {
+ "key":"npc_miku",
+ "japaneseText":"初音ミク",
+ "japaneseFontType":0,
+ "englishUsText":"HATSUNE MIKU",
+ "englishUsFontType":0,
+ "chineseTText":"初音未來",
+ "chineseTFontType":1,
+ "koreanText":"하츠네 미쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"npc_pacman",
+ "japaneseText":"パックマン",
+ "japaneseFontType":0,
+ "englishUsText":"PAC-MAN",
+ "englishUsFontType":0,
+ "chineseTText":"PAC-MAN",
+ "chineseTFontType":1,
+ "koreanText":"팩맨",
+ "koreanFontType":2
+ },
+ {
+ "key":"npc_kitty",
+ "japaneseText":"ハローキティ",
+ "japaneseFontType":0,
+ "englishUsText":"HELLO KITTY",
+ "englishUsFontType":0,
+ "chineseTText":"HELLO KITTY",
+ "chineseTFontType":1,
+ "koreanText":"헬로키티",
+ "koreanFontType":2
+ },
+ {
+ "key":"npc_tkhei8",
+ "japaneseText":"三島平八",
+ "japaneseFontType":0,
+ "englishUsText":"HEIHACHI",
+ "englishUsFontType":0,
+ "chineseTText":"HEIHACHI",
+ "chineseTFontType":1,
+ "koreanText":"HEIHACHI",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_default001",
+ "japaneseText":"よろしくだドン!",
+ "japaneseFontType":0,
+ "englishUsText":"Nice to meet you!",
+ "englishUsFontType":0,
+ "chineseTText":"請多指教咚!",
+ "chineseTFontType":1,
+ "koreanText":"잘 부탁한다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_default002",
+ "japaneseText":"まけないドン!",
+ "japaneseFontType":0,
+ "englishUsText":"I won't lose!",
+ "englishUsFontType":0,
+ "chineseTText":"不會輸的咚!",
+ "chineseTFontType":1,
+ "koreanText":"안 질 거다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_default003",
+ "japaneseText":"また遊ぶドン!",
+ "japaneseFontType":0,
+ "englishUsText":"Let's play again!",
+ "englishUsFontType":0,
+ "chineseTText":"還要再玩咚!",
+ "chineseTFontType":1,
+ "koreanText":"또 놀자쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_default004",
+ "japaneseText":"たのしかったドン!",
+ "japaneseFontType":0,
+ "englishUsText":"It was enjoyable!",
+ "englishUsFontType":0,
+ "chineseTText":"玩得很開心咚!",
+ "chineseTFontType":1,
+ "koreanText":"재밌었다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_default005",
+ "japaneseText":"お世話になります",
+ "japaneseFontType":0,
+ "englishUsText":"I'll be in your care!",
+ "englishUsFontType":0,
+ "chineseTText":"承蒙您的照顧",
+ "chineseTFontType":1,
+ "koreanText":"신세 좀 지겠습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha001",
+ "japaneseText":"あじゃじゃしたー",
+ "japaneseFontType":0,
+ "englishUsText":"Thx―!",
+ "englishUsFontType":0,
+ "chineseTText":"謝啦~",
+ "chineseTFontType":1,
+ "koreanText":"감삼돠~",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha002",
+ "japaneseText":"あなたなら出来るわ",
+ "japaneseFontType":0,
+ "englishUsText":"You can do it!",
+ "englishUsFontType":0,
+ "chineseTText":"你一定做得到",
+ "chineseTFontType":1,
+ "koreanText":"너라면 할 수 있어",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha003",
+ "japaneseText":"ありガトーショコラ!",
+ "japaneseFontType":0,
+ "englishUsText":"AriGateau Chocolat!",
+ "englishUsFontType":0,
+ "chineseTText":"謝謝巧克力蛋糕!",
+ "chineseTFontType":1,
+ "koreanText":"고마워터멜론!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha004",
+ "japaneseText":"ありがドーン!",
+ "japaneseFontType":0,
+ "englishUsText":"Thanks!",
+ "englishUsFontType":0,
+ "chineseTText":"謝謝咚!",
+ "chineseTFontType":1,
+ "koreanText":"고맙쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha005",
+ "japaneseText":"ありがとさ~ん",
+ "japaneseFontType":0,
+ "englishUsText":"Thanks a bunch!",
+ "englishUsFontType":0,
+ "chineseTText":"謝謝啊~",
+ "chineseTFontType":1,
+ "koreanText":"고맙수다~",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha006",
+ "japaneseText":"いいセンスだね",
+ "japaneseFontType":0,
+ "englishUsText":"Great sense!",
+ "englishUsFontType":0,
+ "chineseTText":"天分不錯",
+ "chineseTFontType":1,
+ "koreanText":"센스 좋네",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha007",
+ "japaneseText":"いいね!",
+ "japaneseFontType":0,
+ "englishUsText":"Nice!",
+ "englishUsFontType":0,
+ "chineseTText":"很好!",
+ "chineseTFontType":1,
+ "koreanText":"좋은데!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha008",
+ "japaneseText":"いい勝負だったドン!",
+ "japaneseFontType":0,
+ "englishUsText":"Good Game!",
+ "englishUsFontType":0,
+ "chineseTText":"出色的對決咚!",
+ "chineseTFontType":1,
+ "koreanText":"멋진 승부였다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha009",
+ "japaneseText":"いえーい!",
+ "japaneseFontType":0,
+ "englishUsText":"YEAH!",
+ "englishUsFontType":0,
+ "chineseTText":"好耶—!",
+ "chineseTFontType":1,
+ "koreanText":"얏호~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha010",
+ "japaneseText":"いただきまーす!",
+ "japaneseFontType":0,
+ "englishUsText":"I'm taking―it!",
+ "englishUsFontType":0,
+ "chineseTText":"我開動了—!",
+ "chineseTFontType":1,
+ "koreanText":"잘 먹겠습니다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha011",
+ "japaneseText":"いらっしゃーい!",
+ "japaneseFontType":0,
+ "englishUsText":"Welcome!",
+ "englishUsFontType":0,
+ "chineseTText":"歡迎光臨—!",
+ "chineseTFontType":1,
+ "koreanText":"어서와~",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha012",
+ "japaneseText":"オイーーーッス!",
+ "japaneseFontType":0,
+ "englishUsText":"Hey mate!",
+ "englishUsFontType":0,
+ "chineseTText":"你好啊————!",
+ "chineseTFontType":1,
+ "koreanText":"안녕하슈~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha013",
+ "japaneseText":"おつカレーライス!",
+ "japaneseFontType":0,
+ "englishUsText":"Tanks the effort!",
+ "englishUsFontType":0,
+ "chineseTText":"辛苦辣咖哩飯!",
+ "chineseTFontType":1,
+ "koreanText":"수고해시라이스!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha014",
+ "japaneseText":"おつかれさんでしたー",
+ "japaneseFontType":0,
+ "englishUsText":"Thanks for the hard work―",
+ "englishUsFontType":0,
+ "chineseTText":"辛苦你了—",
+ "chineseTFontType":1,
+ "koreanText":"수고하셨습니다~",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha015",
+ "japaneseText":"おはようっす!",
+ "japaneseFontType":0,
+ "englishUsText":"G'Morning!",
+ "englishUsFontType":0,
+ "chineseTText":"早安啊!",
+ "chineseTFontType":1,
+ "koreanText":"안녕하심까!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha016",
+ "japaneseText":"お見事!",
+ "japaneseFontType":0,
+ "englishUsText":"Splendid!",
+ "englishUsFontType":0,
+ "chineseTText":"厲害!",
+ "chineseTFontType":1,
+ "koreanText":"훌륭하다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha017",
+ "japaneseText":"お手柔らかにー!",
+ "japaneseFontType":0,
+ "englishUsText":"Please go easy on me―!",
+ "englishUsFontType":0,
+ "chineseTText":"請您手下留情!",
+ "chineseTFontType":1,
+ "koreanText":"살살 상대해줘~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha018",
+ "japaneseText":"かたじけないっ!",
+ "japaneseFontType":0,
+ "englishUsText":"Much appreciated!",
+ "englishUsFontType":0,
+ "chineseTText":"不勝感激!",
+ "chineseTFontType":1,
+ "koreanText":"황송하옵니다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha019",
+ "japaneseText":"ご機嫌いかがカッ?",
+ "japaneseFontType":0,
+ "englishUsText":"How's your condition?",
+ "englishUsFontType":0,
+ "chineseTText":"您過得還好嗎?",
+ "chineseTFontType":1,
+ "koreanText":"요즘 좀 어떠세요?",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha020",
+ "japaneseText":"ちーっす",
+ "japaneseFontType":0,
+ "englishUsText":"Sup",
+ "englishUsFontType":0,
+ "chineseTText":"早啊~",
+ "chineseTFontType":1,
+ "koreanText":"여어",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha021",
+ "japaneseText":"ドンだけー?!",
+ "japaneseFontType":0,
+ "englishUsText":"To what extent―?!",
+ "englishUsFontType":0,
+ "chineseTText":"到什麼程度咚?!",
+ "chineseTFontType":1,
+ "koreanText":"웬일이래~",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha022",
+ "japaneseText":"ナイス連打!",
+ "japaneseFontType":0,
+ "englishUsText":"NICE Drumroll!",
+ "englishUsFontType":0,
+ "chineseTText":"好出色的連打!",
+ "chineseTFontType":1,
+ "koreanText":"나이스 연타!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha023",
+ "japaneseText":"ばいばーい",
+ "japaneseFontType":0,
+ "englishUsText":"Bye bye―",
+ "englishUsFontType":0,
+ "chineseTText":"再見~",
+ "chineseTFontType":1,
+ "koreanText":"바이바~이",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha024",
+ "japaneseText":"ファンタスティック!",
+ "japaneseFontType":0,
+ "englishUsText":"Fantastic!",
+ "englishUsFontType":0,
+ "chineseTText":"真是太棒了!",
+ "chineseTFontType":1,
+ "koreanText":"판타스틱!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha025",
+ "japaneseText":"フルコンボ目指すドン!",
+ "japaneseFontType":0,
+ "englishUsText":"Aim for FULL COMBO!",
+ "englishUsFontType":0,
+ "chineseTText":"目標是全連段咚!",
+ "chineseTFontType":1,
+ "koreanText":"목표는 풀 콤보다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha026",
+ "japaneseText":"ほいきたー!",
+ "japaneseFontType":0,
+ "englishUsText":"Here it comes!",
+ "englishUsFontType":0,
+ "chineseTText":"好、來了─!",
+ "chineseTFontType":1,
+ "koreanText":"됐다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha027",
+ "japaneseText":"また会おう!",
+ "japaneseFontType":0,
+ "englishUsText":"Until next time!",
+ "englishUsFontType":0,
+ "chineseTText":"下次再見!",
+ "chineseTFontType":1,
+ "koreanText":"또 만나자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha028",
+ "japaneseText":"まったねー!",
+ "japaneseFontType":0,
+ "englishUsText":"See ya later!",
+ "englishUsFontType":0,
+ "chineseTText":"再會囉!",
+ "chineseTFontType":1,
+ "koreanText":"또 만나~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha029",
+ "japaneseText":"やっほー!",
+ "japaneseFontType":0,
+ "englishUsText":"Ya―hoo!",
+ "englishUsFontType":0,
+ "chineseTText":"哈囉─!",
+ "chineseTFontType":1,
+ "koreanText":"얏호~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha030",
+ "japaneseText":"やるじゃない",
+ "japaneseFontType":0,
+ "englishUsText":"Way to go!",
+ "englishUsFontType":0,
+ "chineseTText":"做得不錯",
+ "chineseTFontType":1,
+ "koreanText":"꽤 하잖아",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha031",
+ "japaneseText":"よろしくおねがいしまーす!",
+ "japaneseFontType":0,
+ "englishUsText":"Nice to play with you!",
+ "englishUsFontType":0,
+ "chineseTText":"請你多指教!",
+ "chineseTFontType":1,
+ "koreanText":"잘 부탁드립니다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha032",
+ "japaneseText":"よろしく頼む!",
+ "japaneseFontType":0,
+ "englishUsText":"I'm counting on you!",
+ "englishUsFontType":0,
+ "chineseTText":"有勞你了!",
+ "chineseTFontType":1,
+ "koreanText":"잘 부탁해!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha033",
+ "japaneseText":"一緒に遊ぶドン!",
+ "japaneseFontType":0,
+ "englishUsText":"Let's play together!",
+ "englishUsFontType":0,
+ "chineseTText":"一起遊玩咚!",
+ "chineseTFontType":1,
+ "koreanText":"같이 놀자쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha034",
+ "japaneseText":"待たせたな!",
+ "japaneseFontType":0,
+ "englishUsText":"Kept ya waiting!",
+ "englishUsFontType":0,
+ "chineseTText":"讓你們久等啦!",
+ "chineseTFontType":1,
+ "koreanText":"기다리게 했군!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha035",
+ "japaneseText":"油断禁物",
+ "japaneseFontType":0,
+ "englishUsText":"No room for carelessness",
+ "englishUsFontType":0,
+ "chineseTText":"不可大意",
+ "chineseTFontType":1,
+ "koreanText":"방심은 금물",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha036",
+ "japaneseText":"余裕っしょ!",
+ "japaneseFontType":0,
+ "englishUsText":"Piece of cake!",
+ "englishUsFontType":0,
+ "chineseTText":"游刃有餘!",
+ "chineseTFontType":1,
+ "koreanText":"완전 쉽네!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha037",
+ "japaneseText":"良い感じでーす!",
+ "japaneseFontType":0,
+ "englishUsText":"This feeeels great!",
+ "englishUsFontType":0,
+ "chineseTText":"感覺真好!",
+ "chineseTFontType":1,
+ "koreanText":"느낌 좋은데요!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha038",
+ "japaneseText":"あけおめー",
+ "japaneseFontType":0,
+ "englishUsText":"Happy New Year―",
+ "englishUsFontType":0,
+ "chineseTText":"新年快樂!",
+ "chineseTFontType":1,
+ "koreanText":"해피 뉴 이어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha039",
+ "japaneseText":"ことよろー",
+ "japaneseFontType":0,
+ "englishUsText":"Counting on you this year!",
+ "englishUsFontType":0,
+ "chineseTText":"今年也多指教啊~",
+ "chineseTFontType":1,
+ "koreanText":"올해도 잘 부탁해~",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha040",
+ "japaneseText":"トリック・オア・トリート!",
+ "japaneseFontType":0,
+ "englishUsText":"Trick or Treat!",
+ "englishUsFontType":0,
+ "chineseTText":"不給糖就搗蛋!",
+ "chineseTFontType":1,
+ "koreanText":"트릭 오어 트리트!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha041",
+ "japaneseText":"めりくりー",
+ "japaneseFontType":0,
+ "englishUsText":"Merry Xmas!",
+ "englishUsFontType":0,
+ "chineseTText":"聖誕快樂!",
+ "chineseTFontType":1,
+ "koreanText":"메리 크리스마스!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha042",
+ "japaneseText":"暑中お見舞いだドーン!",
+ "japaneseFontType":0,
+ "englishUsText":"Holding up this hot season?",
+ "englishUsFontType":0,
+ "chineseTText":"夏日問候咚!",
+ "chineseTFontType":1,
+ "koreanText":"무더위에 건강하신지요쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha043",
+ "japaneseText":"あきらめないで~!",
+ "japaneseFontType":0,
+ "englishUsText":"Don't give up~!",
+ "englishUsFontType":0,
+ "chineseTText":"不要輕言放棄~!",
+ "chineseTFontType":1,
+ "koreanText":"포기하면 안 돼~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha044",
+ "japaneseText":"あきらめるな!しがみつけ!!",
+ "japaneseFontType":0,
+ "englishUsText":"Don’t you give up! Hang on!",
+ "englishUsFontType":0,
+ "chineseTText":"不要放棄!緊咬不放!!",
+ "chineseTFontType":1,
+ "koreanText":"포기하지 마! 붙잡고 늘어져!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha045",
+ "japaneseText":"ありよりのあり",
+ "japaneseFontType":0,
+ "englishUsText":"Yes than No",
+ "englishUsFontType":0,
+ "chineseTText":"要說可不可行,嗯、是可行!",
+ "chineseTFontType":1,
+ "koreanText":"Yes나 No라면 일단 Yes로!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha046",
+ "japaneseText":"いいからボクに投資するドン!",
+ "japaneseFontType":0,
+ "englishUsText":"Just invest in me alright!",
+ "englishUsFontType":0,
+ "chineseTText":"別管那麼多,投資我咚!",
+ "chineseTFontType":1,
+ "koreanText":"됐으니까 나한테 투자해라쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha047",
+ "japaneseText":"うん、ボクちょっと強いドン♥",
+ "japaneseFontType":0,
+ "englishUsText":"Hmm, I'm a LITTLE better ♥",
+ "englishUsFontType":0,
+ "chineseTText":"嗯,我有一點強♥",
+ "chineseTFontType":1,
+ "koreanText":"흐음, 나 조금 강하다쿵♥",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha048",
+ "japaneseText":"おそろしい子!",
+ "japaneseFontType":0,
+ "englishUsText":"Formidable!",
+ "englishUsFontType":0,
+ "chineseTText":"令人恐懼的孩子!",
+ "chineseTFontType":1,
+ "koreanText":"무서운 아이!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha049",
+ "japaneseText":"オラオラオラオラオラオラ!",
+ "japaneseFontType":0,
+ "englishUsText":"HEY HEY HEY HEY!",
+ "englishUsFontType":0,
+ "chineseTText":"歐拉歐拉歐拉歐拉歐拉歐拉!",
+ "chineseTFontType":1,
+ "koreanText":"오라오라오라오라오라오라!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha050",
+ "japaneseText":"オレ達は太鼓と一緒に戦ってる",
+ "japaneseFontType":0,
+ "englishUsText":"We fight alongside Taiko!",
+ "englishUsFontType":0,
+ "chineseTText":"我們會和太鼓一同戰鬥",
+ "chineseTFontType":1,
+ "koreanText":"우리는 태고와 함께 싸운다",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha051",
+ "japaneseText":"お楽しみはこれからよ",
+ "japaneseFontType":0,
+ "englishUsText":"Here comes the fun!",
+ "englishUsFontType":0,
+ "chineseTText":"有趣的現在才要開始呢!",
+ "chineseTFontType":1,
+ "koreanText":"진짜 즐거움은 이제부터다",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha052",
+ "japaneseText":"ガチしょんぼり沈殿丸",
+ "japaneseFontType":0,
+ "englishUsText":"Depressed",
+ "englishUsFontType":0,
+ "chineseTText":"心情低落到谷底",
+ "chineseTFontType":1,
+ "koreanText":"지금 완전 슬픔",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha053",
+ "japaneseText":"かまちょかまちょ",
+ "japaneseFontType":0,
+ "englishUsText":"*POKE* *POKE*",
+ "englishUsFontType":0,
+ "chineseTText":"幫幫我,幫幫我嘛",
+ "chineseTFontType":1,
+ "koreanText":"나한테 관심 좀",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha054",
+ "japaneseText":"ごかんべーん!",
+ "japaneseFontType":0,
+ "englishUsText":"Give it a break!",
+ "englishUsFontType":0,
+ "chineseTText":"請饒了我吧!",
+ "chineseTFontType":1,
+ "koreanText":"부디 자비를~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha055",
+ "japaneseText":"この勝負、もらったドン!",
+ "japaneseFontType":0,
+ "englishUsText":"This match is mine!",
+ "englishUsFontType":0,
+ "chineseTText":"這場對決,我贏定了咚!",
+ "chineseTFontType":1,
+ "koreanText":"이번 승부는 내 승리다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha056",
+ "japaneseText":"この勝負に一片の悔い無し!",
+ "japaneseFontType":0,
+ "englishUsText":"No regrets for the match!",
+ "englishUsFontType":0,
+ "chineseTText":"我對這場對決毫無悔恨!",
+ "chineseTFontType":1,
+ "koreanText":"이 승부에 한 점의 후회도 없다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha057",
+ "japaneseText":"これでいいのだドン!",
+ "japaneseFontType":0,
+ "englishUsText":"This is just fine!",
+ "englishUsFontType":0,
+ "chineseTText":"這樣子就好咚!",
+ "chineseTFontType":1,
+ "koreanText":"이러면 된 거다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha058",
+ "japaneseText":"これはワンチャンあるカッ?",
+ "japaneseFontType":0,
+ "englishUsText":"Is this one more chance?",
+ "englishUsFontType":0,
+ "chineseTText":"這樣子有機會咔?",
+ "chineseTFontType":1,
+ "koreanText":"아직 기회는 남았나?",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha059",
+ "japaneseText":"さあ、ショータイムだドン!",
+ "japaneseFontType":0,
+ "englishUsText":"Alright, it's SHOW TIME!",
+ "englishUsFontType":0,
+ "chineseTText":"來吧,SHOW TIME咚!",
+ "chineseTFontType":1,
+ "koreanText":"자, 쇼타임이다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha060",
+ "japaneseText":"てへぺろピース♥",
+ "japaneseFontType":0,
+ "englishUsText":"My bad! PEACE ♥",
+ "englishUsFontType":0,
+ "chineseTText":"抱歉搞砸了,嘿嘿♥",
+ "chineseTFontType":1,
+ "koreanText":"데헷페로 피스~♥",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha061",
+ "japaneseText":"どうも!ボクだドン!",
+ "japaneseFontType":0,
+ "englishUsText":"Hi there, it's ME!",
+ "englishUsFontType":0,
+ "chineseTText":"你好!是我咚!",
+ "chineseTFontType":1,
+ "koreanText":"안녕! 나다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha062",
+ "japaneseText":"ぬかしおる!",
+ "japaneseFontType":0,
+ "englishUsText":"Look who's talking!",
+ "englishUsFontType":0,
+ "chineseTText":"你還真敢說!",
+ "chineseTFontType":1,
+ "koreanText":"입은 살았구나!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha063",
+ "japaneseText":"ボクの演奏に酔うドン!",
+ "japaneseFontType":0,
+ "englishUsText":"Be mesmerized by my play!",
+ "englishUsFontType":0,
+ "chineseTText":"沉醉在我的演奏咚!",
+ "chineseTFontType":1,
+ "koreanText":"내 연주에 취해라쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha064",
+ "japaneseText":"ボクにはライバルが多すぎるドン!",
+ "japaneseFontType":0,
+ "englishUsText":"Too many rivals for me",
+ "englishUsFontType":0,
+ "chineseTText":"我的宿敵太多了咚",
+ "chineseTFontType":1,
+ "koreanText":"난 라이벌이 너무 많다쿵",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha065",
+ "japaneseText":"ほっほっほ。やりますな",
+ "japaneseFontType":0,
+ "englishUsText":"Well well, nicely done",
+ "englishUsFontType":0,
+ "chineseTText":"呵、呵、呵,真有一套",
+ "chineseTFontType":1,
+ "koreanText":"홋홋홋. 좀 하시네요",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha066",
+ "japaneseText":"ほほう。なかなかやるね",
+ "japaneseFontType":0,
+ "englishUsText":"Wow, you're pretty good",
+ "englishUsFontType":0,
+ "chineseTText":"哦哦,實力不錯欸",
+ "chineseTFontType":1,
+ "koreanText":"호오. 꽤 하는데 그래",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha067",
+ "japaneseText":"まじかー!",
+ "japaneseFontType":0,
+ "englishUsText":"Seriously―!",
+ "englishUsFontType":0,
+ "chineseTText":"不會吧─!",
+ "chineseTFontType":1,
+ "koreanText":"헐~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha068",
+ "japaneseText":"まだあわてるような曲じゃない",
+ "japaneseFontType":0,
+ "englishUsText":"Not a song to panic",
+ "englishUsFontType":0,
+ "chineseTText":"還不到會讓人慌張的樂曲",
+ "chineseTFontType":1,
+ "koreanText":"아직 당황할 만한 곡이 아냐",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha069",
+ "japaneseText":"もういっちょやってみるカッ?",
+ "japaneseFontType":0,
+ "englishUsText":"Giving it another shot!",
+ "englishUsFontType":0,
+ "chineseTText":"再嘗試一下?",
+ "chineseTFontType":1,
+ "koreanText":"어디 한번 해볼까!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha070",
+ "japaneseText":"やってみるドン!",
+ "japaneseFontType":0,
+ "englishUsText":"I'll give it a try!",
+ "englishUsFontType":0,
+ "chineseTText":"看我的咚!",
+ "chineseTFontType":1,
+ "koreanText":"한번 해보겠다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha071",
+ "japaneseText":"リアルガチにエモい",
+ "japaneseFontType":0,
+ "englishUsText":"Really emotional here",
+ "englishUsFontType":0,
+ "chineseTText":"真是讓人感動不已",
+ "chineseTFontType":1,
+ "koreanText":"레알 완전 굉장해",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha072",
+ "japaneseText":"レッツパーリィ!",
+ "japaneseFontType":0,
+ "englishUsText":"LET'S PARTY!",
+ "englishUsFontType":0,
+ "chineseTText":"Let's party!",
+ "chineseTFontType":1,
+ "koreanText":"렛츠 파리~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha073",
+ "japaneseText":"一曲付き合いたまえ!",
+ "japaneseFontType":0,
+ "englishUsText":"Join me for a song!",
+ "englishUsFontType":0,
+ "chineseTText":"陪我演奏一首吧!",
+ "chineseTFontType":1,
+ "koreanText":"같이 한바탕 연주해 보자고!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha074",
+ "japaneseText":"俺の中の太鼓魂がボルケーノ",
+ "japaneseFontType":0,
+ "englishUsText":"My volcanic Taiko soul",
+ "englishUsFontType":0,
+ "chineseTText":"我體內的太鼓靈魂可是一觸即發",
+ "chineseTFontType":1,
+ "koreanText":"내 안의 태고혼이 볼케이노",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha075",
+ "japaneseText":"音符がトップギアだぜ!",
+ "japaneseFontType":0,
+ "englishUsText":"Music notes in top gear!",
+ "englishUsFontType":0,
+ "chineseTText":"我的音符可是Top gear狀態!",
+ "chineseTFontType":1,
+ "koreanText":"음표가 최고속기어야!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha076",
+ "japaneseText":"可・不可を駆逐する!",
+ "japaneseFontType":0,
+ "englishUsText":"I'll eradicate all BAD & OK!",
+ "englishUsFontType":0,
+ "chineseTText":"我要驅逐可和不可!",
+ "chineseTFontType":1,
+ "koreanText":"좋다, 에구를 구축한다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha077",
+ "japaneseText":"君がナンバー1だドン!",
+ "japaneseFontType":0,
+ "englishUsText":"You are number one!",
+ "englishUsFontType":0,
+ "chineseTText":"你是世界第一咚!",
+ "chineseTFontType":1,
+ "koreanText":"네가 넘버 원이다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha078",
+ "japaneseText":"計算通りだドン!",
+ "japaneseFontType":0,
+ "englishUsText":"Just as expected!",
+ "englishUsFontType":0,
+ "chineseTText":"跟我預料的一樣咚!",
+ "chineseTFontType":1,
+ "koreanText":"계획대로쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha079",
+ "japaneseText":"決着をつける時が来たドン!",
+ "japaneseFontType":0,
+ "englishUsText":"It's time to end this!",
+ "englishUsFontType":0,
+ "chineseTText":"做了斷的時刻到了咚!",
+ "chineseTFontType":1,
+ "koreanText":"결판을 낼 때가 왔다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha080",
+ "japaneseText":"見た目は子供、頭脳も子供!",
+ "japaneseFontType":0,
+ "englishUsText":"Childish look and mentality!",
+ "englishUsFontType":0,
+ "chineseTText":"外表看似小孩,智慧也如小孩!",
+ "chineseTFontType":1,
+ "koreanText":"겉모습은 아이, 두뇌도 아이!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha081",
+ "japaneseText":"攻勢に出るドン!",
+ "japaneseFontType":0,
+ "englishUsText":"Going on the offense!",
+ "englishUsFontType":0,
+ "chineseTText":"發動攻勢咚!",
+ "chineseTFontType":1,
+ "koreanText":"공세에 나선다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha082",
+ "japaneseText":"最初からクライマックスだぜ!",
+ "japaneseFontType":0,
+ "englishUsText":"Starting off with CLIMAX!",
+ "englishUsFontType":0,
+ "chineseTText":"我從一開始就是Climax狀態!",
+ "chineseTFontType":1,
+ "koreanText":"처음부터 클라이맥스라고!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha083",
+ "japaneseText":"私は私の譜面を一歩も譲らない",
+ "japaneseFontType":0,
+ "englishUsText":"Not gonna let up the notes!",
+ "englishUsFontType":0,
+ "chineseTText":"我對我的譜面絕不讓步",
+ "chineseTFontType":1,
+ "koreanText":"나는 내 악보를 절대 양보 못해",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha084",
+ "japaneseText":"手ぬるいドン!",
+ "japaneseFontType":0,
+ "englishUsText":"Such sloppiness!",
+ "englishUsFontType":0,
+ "chineseTText":"太隨便了咚!",
+ "chineseTFontType":1,
+ "koreanText":"어설프다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha085",
+ "japaneseText":"全ては運否天賦",
+ "japaneseFontType":0,
+ "englishUsText":"Leaving all to fate!",
+ "englishUsFontType":0,
+ "chineseTText":"萬事依天命",
+ "chineseTFontType":1,
+ "koreanText":"모든 건 운에 달렸다",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha086",
+ "japaneseText":"太鼓が全部教えてくれた",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko taught me everything",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓教會了我一切",
+ "chineseTFontType":1,
+ "koreanText":"전부 태고가 가르쳐 주었다",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha087",
+ "japaneseText":"太鼓は友達!こわくないドン!",
+ "japaneseFontType":0,
+ "englishUsText":"No fear for Taiko is friend!",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓是朋友!並不可怕咚!",
+ "chineseTFontType":1,
+ "koreanText":"태고는 친구야! 무섭지 않아쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha088",
+ "japaneseText":"退かぬ!媚びぬ!省みぬ!",
+ "japaneseFontType":0,
+ "englishUsText":"No retreat, flattery or reflection!",
+ "englishUsFontType":0,
+ "chineseTText":"不退縮!不獻媚!不回頭!",
+ "chineseTFontType":1,
+ "koreanText":"제왕에게 도주란 없다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha089",
+ "japaneseText":"天が呼ぶ地が呼ぶ太鼓が呼ぶ",
+ "japaneseFontType":0,
+ "englishUsText":"Heaven calls, Land calls, Taiko calls",
+ "englishUsFontType":0,
+ "chineseTText":"天在呼喚!地在呼喚!太鼓在呼喚!",
+ "chineseTFontType":1,
+ "koreanText":"하늘이, 땅이, 태고가 부른다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha090",
+ "japaneseText":"天才ですカッ?",
+ "japaneseFontType":0,
+ "englishUsText":"Ain't you a prodigy?",
+ "englishUsFontType":0,
+ "chineseTText":"你是天才?",
+ "chineseTFontType":1,
+ "koreanText":"천잰가요?",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha091",
+ "japaneseText":"逃げちゃ駄目カッ?",
+ "japaneseFontType":0,
+ "englishUsText":"Taking the easy way out?",
+ "englishUsFontType":0,
+ "chineseTText":"不能逃?",
+ "chineseTFontType":1,
+ "koreanText":"도망치면 안 돼?",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha092",
+ "japaneseText":"本気の失敗には価値があるドン",
+ "japaneseFontType":0,
+ "englishUsText":"True failure has its worth",
+ "englishUsFontType":0,
+ "chineseTText":"認真去做的失敗是有價值的咚",
+ "chineseTFontType":1,
+ "koreanText":"진짜 실패엔 가치가 있다쿵",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha093",
+ "japaneseText":"無駄無駄無駄無駄無駄無駄",
+ "japaneseFontType":0,
+ "englishUsText":"USELESS! USELESS! USELESS!",
+ "englishUsFontType":0,
+ "chineseTText":"沒用沒用沒用沒用沒用沒用",
+ "chineseTFontType":1,
+ "koreanText":"무다무다무다무다무다무다",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha094",
+ "japaneseText":"面目なーい!",
+ "japaneseFontType":0,
+ "englishUsText":"I have no excuse!",
+ "englishUsFontType":0,
+ "chineseTText":"好沒面子!",
+ "chineseTFontType":1,
+ "koreanText":"면목 없다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gasha095",
+ "japaneseText":"要チェックだドン!!",
+ "japaneseFontType":0,
+ "englishUsText":"Keep things in check!",
+ "englishUsFontType":0,
+ "chineseTText":"需要檢查咚!!",
+ "chineseTFontType":1,
+ "koreanText":"중요 체크다쿵!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_zense",
+ "japaneseText":"「前前前世」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Zenzenzense」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「前前前世」",
+ "chineseTFontType":1,
+ "koreanText":"「전 전 전생」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_roadmv",
+ "japaneseText":"「ロードムービー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Road Movie」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Road Movie」",
+ "chineseTFontType":1,
+ "koreanText":"「Road Movie」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_4shaas",
+ "japaneseText":"「明日も」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Ashitamo」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「明日も」",
+ "chineseTFontType":1,
+ "koreanText":"「아시타모」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_ynlose",
+ "japaneseText":"「LOSER」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「LOSER」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「LOSER」",
+ "chineseTFontType":1,
+ "koreanText":"「LOSER」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_uminok",
+ "japaneseText":"「海の声」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Umino Koe」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「海の声」",
+ "chineseTFontType":1,
+ "koreanText":"「우미노코에」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_kekka2",
+ "japaneseText":"「シュガーソングとビターステップ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Sugar Song to Bitter Step」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「シュガーソングとビターステップ」",
+ "chineseTFontType":1,
+ "koreanText":"「Sugar Song to Bitter Step」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_himyak",
+ "japaneseText":"「ひまわりの約束」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Himawarino Yakusoku」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「向日葵的約定」",
+ "chineseTFontType":1,
+ "koreanText":"「해바라기의 약속」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gimcho",
+ "japaneseText":"「ギミチョコ!!」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Gimme Chocolate!!」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Gimme Chocolate!!」",
+ "chineseTFontType":1,
+ "koreanText":"「Gimme Chocolate!!」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_skorpg",
+ "japaneseText":"「RPG」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「RPG」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「RPG」",
+ "chineseTFontType":1,
+ "koreanText":"「RPG」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_ninjbb",
+ "japaneseText":"「にんじゃりばんばん」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「NINJARI BANBAN」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「忍者棒棒」",
+ "chineseTFontType":1,
+ "koreanText":"「닌쟈리 방방」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_memesi",
+ "japaneseText":"「女々しくて」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Memeshikute」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「娘娘腔」",
+ "chineseTFontType":1,
+ "koreanText":"「메메시쿠테」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_koiama",
+ "japaneseText":"「恋音と雨空」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Koiototo Amazora」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「恋音と雨空」",
+ "chineseTFontType":1,
+ "koreanText":"「코이오토토아마조라」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_kiseki",
+ "japaneseText":"「キセキ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「KISEKI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「奇蹟」",
+ "chineseTFontType":1,
+ "koreanText":"「키세키」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_ikenai",
+ "japaneseText":"「イケナイ太陽」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Ikenai Taiyou」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「太陽無用」",
+ "chineseTFontType":1,
+ "koreanText":"「이케나이타이요우」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_skrnb",
+ "japaneseText":"「さくらんぼ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Sakuranbo」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「櫻桃」",
+ "chineseTFontType":1,
+ "koreanText":"「사쿠란보」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_linda",
+ "japaneseText":"「リンダリンダ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「LINDA LINDA」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「LINDA LINDA」",
+ "chineseTFontType":1,
+ "koreanText":"「LINDA LINDA」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_natsu",
+ "japaneseText":"「夏祭り」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Natsumatsuri」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「夏祭り」",
+ "chineseTFontType":1,
+ "koreanText":"「나츠마츠리」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_10tai",
+ "japaneseText":"「天体観測」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Tentai Kansoku」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「天体観測」",
+ "chineseTFontType":1,
+ "koreanText":"「텐타이칸소쿠」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_xjapan",
+ "japaneseText":"「紅」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「KURENAI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「紅」",
+ "chineseTFontType":1,
+ "koreanText":"「쿠레나이」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_apollo",
+ "japaneseText":"「アポロ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「APOLLO」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「アポロ」",
+ "chineseTFontType":1,
+ "koreanText":"「아폴로」 최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_dora4",
+ "japaneseText":"「夢をかなえてドラえもん」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Yumeo Kanaete DORAEMON」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「夢をかなえてドラえもん」",
+ "chineseTFontType":1,
+ "koreanText":"「꿈을 이루어줘 도라에몽」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_totoro",
+ "japaneseText":"「となりのトトロ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Tonarino TOTORO」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「となりのトトロ」",
+ "chineseTFontType":1,
+ "koreanText":"「토나리노토토로」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_anayuk",
+ "japaneseText":"「Let It Go~ありのままで~」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Let It Go~ありのままで~」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Let It Go~ありのままで~」",
+ "chineseTFontType":1,
+ "koreanText":"「Let It Go」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_zootop",
+ "japaneseText":"「トライ・エヴリシング」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Try Everything」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Try Everything」",
+ "chineseTFontType":1,
+ "koreanText":"「Try Everything」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_dbcgen",
+ "japaneseText":"「限界突破×サバイバー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Genkai Toppa × Survivor」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「限界突破×サバイバー」",
+ "chineseTFontType":1,
+ "koreanText":"「겐카이톳파X사바이바」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_batan9",
+ "japaneseText":"「全力バタンキュー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Zenryoku Batankyuu」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「全力バタンキュー」",
+ "chineseTFontType":1,
+ "koreanText":"「젠료쿠바탕큐」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_shing2",
+ "japaneseText":"「紅蓮の弓矢」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Gurenno Yumiya」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「紅蓮の弓矢」",
+ "chineseTFontType":1,
+ "koreanText":"「홍련의 화살」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_weare0",
+ "japaneseText":"「ウィーアー!」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「We Are!」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「We Are!」",
+ "chineseTFontType":1,
+ "koreanText":"「We are!」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_eva",
+ "japaneseText":"「残酷な天使のテーゼ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Zankokuna Tenshino Teeze」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「残酷な天使のテーゼ」",
+ "chineseTFontType":1,
+ "koreanText":"「잔코쿠나텐시노테제」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_japari",
+ "japaneseText":"「ようこそジャパリパークへ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Youkoso JAPARI PARK」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「ようこそジャパリパークへ」",
+ "chineseTFontType":1,
+ "koreanText":"「요우코소쟈파리파크에」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_mikugr",
+ "japaneseText":"「ゴーストルール」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Ghost Rule」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Ghost Rule」",
+ "chineseTFontType":1,
+ "koreanText":"「Ghost Rule」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_mikuaa",
+ "japaneseText":"「エイリアンエイリアン」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Alien Alien」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Alien Alien」",
+ "chineseTFontType":1,
+ "koreanText":"「Alien Alien」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_lost1g",
+ "japaneseText":"「ロストワンの号哭」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Rosutowanno Goukoku」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Lost one 的慟哭」",
+ "chineseTFontType":1,
+ "koreanText":"「로스트원노고코쿠」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_ia6cho",
+ "japaneseText":"「六兆年と一夜物語」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Rokuchounen To Ichiya Monogatari」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「六兆年と一夜物語」",
+ "chineseTFontType":1,
+ "koreanText":"「로쿠쵸넨토이치야모노가타리」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_hkitty",
+ "japaneseText":"「ハローキティ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HELLO KITTY」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「HELLO KITTY」",
+ "chineseTFontType":1,
+ "koreanText":"「헬로키티」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_ppap",
+ "japaneseText":"「ペンパイナッポーアッポーペン(PPAP)」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Pen-Pineapple-Apple-Pen (PPAP)」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「ペンパイナッポーアッポーペン(PPAP)」",
+ "chineseTFontType":1,
+ "koreanText":"「펜파이나포아포펜(PPAP)」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_th7171",
+ "japaneseText":"「ナイト・オブ・ナイツ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Night of Knights」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Night of Knights 」",
+ "chineseTFontType":1,
+ "koreanText":"「Night of Knights」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_thflnd",
+ "japaneseText":"「最終鬼畜妹フランドール・S」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Saisyuu Kichiku Imouto Frandre・S」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「最終鬼畜妹フランドール・S」",
+ "chineseTFontType":1,
+ "koreanText":"「사이슈키치쿠이모토 Flandre・S」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_thchil",
+ "japaneseText":"「チルノのパーフェクトさんすう教室」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Cirnono Perfect Sansu Kyositsu」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「チルノのパーフェクトさんすう教室」",
+ "chineseTFontType":1,
+ "koreanText":"「Chiruno노파페쿠토산수쿄시츠」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_clsh69",
+ "japaneseText":"「ハンロック」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Hung-rock」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Hung-rock」",
+ "chineseTFontType":1,
+ "koreanText":"「Hung-rock」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_clsca",
+ "japaneseText":"「カルメン 組曲一番終曲」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Carmen Prelude」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「卡門第一組曲 鬥牛士之歌」",
+ "chineseTFontType":1,
+ "koreanText":"「카르멘 조곡 1번 종곡」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_clsw",
+ "japaneseText":"「ウィリアム・テル序曲」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「William Tell Overture」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「威廉泰爾序曲」",
+ "chineseTFontType":1,
+ "koreanText":"「윌리엄 텔 서곡」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_cls10",
+ "japaneseText":"「天国と地獄 序曲」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Overture from 'Orpheus in the Underworld'」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「天堂與地獄序曲」",
+ "chineseTFontType":1,
+ "koreanText":"「천국과 지옥 서곡」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_clsr",
+ "japaneseText":"「クラシックメドレー(ロック編)」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Classical Music Medley (Rock version)」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「古典樂組曲(搖滾篇)」",
+ "chineseTFontType":1,
+ "koreanText":"「클래식 메들리(록 편)」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_march",
+ "japaneseText":"「太鼓のマーチ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「THE TAIKO MARCH」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「太鼓進行曲」",
+ "chineseTFontType":1,
+ "koreanText":"「타이코노마치」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_drsp",
+ "japaneseText":"「ドラゴンスピリットメドレー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「DRAGON SPIRIT Medley」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「DRAGON SPIRIT Medley」",
+ "chineseTFontType":1,
+ "koreanText":"「DRAGON SPIRIT Medley」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_druaga",
+ "japaneseText":"「ドルアーガの塔メドレー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「THE TOWER OF DRUAGA Medley」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「THE TOWER OF DRUAGA Medley」",
+ "chineseTFontType":1,
+ "koreanText":"「THE TOWER OF DRUAGA」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_bforc",
+ "japaneseText":"「バーニングフォースメドレー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「BURNING FORCE Medley」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「BURNING FORCE Medley」",
+ "chineseTFontType":1,
+ "koreanText":"「BURNING FORCE Medley」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_babel",
+ "japaneseText":"「バベルの塔」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「THE TOWER OF BABEL」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「THE TOWER OF BABEL」",
+ "chineseTFontType":1,
+ "koreanText":"「THE TOWER OF BABEL」 최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_mappy2",
+ "japaneseText":"「マッピーメドレー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「MAPPY Medley」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「MAPPY Medley」",
+ "chineseTFontType":1,
+ "koreanText":"「MAPPY Medley」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_moji",
+ "japaneseText":"「もじぴったんメドレー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「MOJIPITTAN Medley」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「文字拼圖組曲」",
+ "chineseTFontType":1,
+ "koreanText":"「모지피탄 메들리」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_sf5ryu",
+ "japaneseText":"「Theme of Ryu」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Theme of Ryu」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Theme of Ryu」",
+ "chineseTFontType":1,
+ "koreanText":"「Theme of Ryu」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_tek7he",
+ "japaneseText":"「Heat Haze Shadow 2」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Heat Haze Shadow 2」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Heat Haze Shadow 2」",
+ "chineseTFontType":1,
+ "koreanText":"「Heat Haze Shadow 2」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_tobers",
+ "japaneseText":"「テイルズ オブ ベルセリア メドレー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Tales of Berseria Medley」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「緋夜傳奇組曲」",
+ "chineseTFontType":1,
+ "koreanText":"「테일즈 오브 베르세리아 메들리」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_imconc",
+ "japaneseText":"「お願い!シンデレラ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Onegai! Cinderella」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「拜託妳了!灰姑娘」",
+ "chineseTFontType":1,
+ "koreanText":"「오네가이!신데레라」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_immbra",
+ "japaneseText":"「Brand New Theater!」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Brand New Theater!」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Brand New Theater!」",
+ "chineseTFontType":1,
+ "koreanText":"「Brand New Theater!」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_crturb",
+ "japaneseText":"「Urban Striker」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Urban Striker」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Urban Striker」",
+ "chineseTFontType":1,
+ "koreanText":"「Urban Striker」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_eatem",
+ "japaneseText":"「EAT’EM UP!」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「EAT’EM UP!」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「EAT’EM UP!」",
+ "chineseTFontType":1,
+ "koreanText":"「EAT'EM UP!」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_genpe",
+ "japaneseText":"「KAGEKIYO」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「KAGEKIYO」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「KAGEKIYO」",
+ "chineseTFontType":1,
+ "koreanText":"「KAGEKIYO」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_ryuhim",
+ "japaneseText":"「竜と黒炎の姫君」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「RYU TO KOKUEN NO HIMEGIMI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「龍與黑炎的公主」",
+ "chineseTFontType":1,
+ "koreanText":"「류토코쿠엔노히메기미」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_psf1op",
+ "japaneseText":"「つながれ!ひろがれ!打ち上がれ!」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「TSUNAGARE! HIROGARE! UCHIAGARE!」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「連繫!推展!打上天!」",
+ "chineseTFontType":1,
+ "koreanText":"「츠나가레! 히로가레! 우치아가레!」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_trustg",
+ "japaneseText":"「トラストゲーム」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Trust Game」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Trust Game」",
+ "chineseTFontType":1,
+ "koreanText":"「Trust Game」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_mgpafe",
+ "japaneseText":"「マジカル・パフェ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Magical Parfait」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Magical Parfait」",
+ "chineseTFontType":1,
+ "koreanText":"「Magical Parfait」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_32segw",
+ "japaneseText":"「三瀬川乱舞」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「MITSUSEGAWA RANBU」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「三瀬川亂舞」",
+ "chineseTFontType":1,
+ "koreanText":"「미츠세가와 란부」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_so2omf",
+ "japaneseText":"「そつおめしき・ふる」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SOTSUOMESHIKI・Full」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「恭喜畢業典禮・完整版」",
+ "chineseTFontType":1,
+ "koreanText":"「소츠오메시키・후루」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_nograv",
+ "japaneseText":"「No Gravity」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「No Gravity」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「No Gravity」",
+ "chineseTFontType":1,
+ "koreanText":"「No Gravity」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_crkvic",
+ "japaneseText":"「VICTORIA」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「VICTORIA」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「VICTORIA」",
+ "chineseTFontType":1,
+ "koreanText":"「VICTORIA」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_tengu",
+ "japaneseText":"「天狗囃子」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「TENGU BAYASHI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「天狗囃子」",
+ "chineseTFontType":1,
+ "koreanText":"「텐구 바야시」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_timtrv",
+ "japaneseText":"「タイムトラベラー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Time Traveler」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Time Traveler」",
+ "chineseTFontType":1,
+ "koreanText":"「Time Traveler」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_izanam",
+ "japaneseText":"「黄泉のイザナミ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「YOMI NO IZANAMI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「黃泉的伊邪那美」",
+ "chineseTFontType":1,
+ "koreanText":"「요미노이자나미」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_tksoda",
+ "japaneseText":"「東京ソーダ 8Bit Edit」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Tokyo Soda 8Bit Edit」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Tokyo Soda 8Bit Edit」",
+ "chineseTFontType":1,
+ "koreanText":"「Tokyo Soda 8Bit Edit」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_mugens",
+ "japaneseText":"「夢幻の蒼空」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「MUGEN NO SORA」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「夢幻蒼空」",
+ "chineseTFontType":1,
+ "koreanText":"「무겐노소큐」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_stabof",
+ "japaneseText":"「合唱スタボーフェ!」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「GASSHO SUTABOFE!」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「合唱慶節!」",
+ "chineseTFontType":1,
+ "koreanText":"「갓쇼 스타보페!」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_flyawy",
+ "japaneseText":"「Fly away」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Fly away」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Fly away」",
+ "chineseTFontType":1,
+ "koreanText":"「Fly away」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_yayoi",
+ "japaneseText":"「豊穣弥生」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HOUJO YAYOI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「豐穰彌生」",
+ "chineseTFontType":1,
+ "koreanText":"「호죠 야요이」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_trance",
+ "japaneseText":"「エンジェル ドリーム」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Angel Dream」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Angel Dream」",
+ "chineseTFontType":1,
+ "koreanText":"「Angel Dream」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_vrock",
+ "japaneseText":"「ユウガオノキミ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「YUGAO NO KIMI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「如夕顔般的妳」",
+ "chineseTFontType":1,
+ "koreanText":"「유우가오노키미」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_butou9",
+ "japaneseText":"「桜花爛漫」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「OUKA RANMAN」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「櫻花爛漫」",
+ "chineseTFontType":1,
+ "koreanText":"「오우카란만」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_rdrose",
+ "japaneseText":"「Red Rose Evangel」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Red Rose Evangel」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Red Rose Evangel」",
+ "chineseTFontType":1,
+ "koreanText":"「Red Rose Evangel」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_d96can",
+ "japaneseText":"「毒LOCANdy♡」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「DOKU LO CANdy♡」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「毒LOCANdy♡」",
+ "chineseTFontType":1,
+ "koreanText":"「도쿠 LO CANdy♡」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_rot",
+ "japaneseText":"「さいたま2000」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SAITAMA 2000」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「埼玉2000」",
+ "chineseTFontType":1,
+ "koreanText":"「사이타마 2000」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_rot4",
+ "japaneseText":"「まださいたま2000」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「MADA SAITAMA 2000」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「還是埼玉2000」",
+ "chineseTFontType":1,
+ "koreanText":"「마다사이타마 2000」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"gasha_bad_multi",
+ "japaneseText":"玉手箱が不足しています",
+ "japaneseFontType":0,
+ "englishUsText":"Insufficient Treasure Boxes",
+ "englishUsFontType":0,
+ "chineseTText":"玉匣子數量不足",
+ "chineseTFontType":1,
+ "koreanText":"뽑기 상자가 부족합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"gasha_box_multi",
+ "japaneseText":"5連玉手箱",
+ "japaneseFontType":0,
+ "englishUsText":"5 Treasure Boxes",
+ "englishUsFontType":0,
+ "chineseTText":"5連抽玉匣子",
+ "chineseTFontType":1,
+ "koreanText":"5연속 뽑기 상자",
+ "koreanFontType":2
+ },
+ {
+ "key":"gasha_box_single",
+ "japaneseText":"シングル玉手箱",
+ "japaneseFontType":0,
+ "englishUsText":"1 Treasure Box",
+ "englishUsFontType":0,
+ "chineseTText":"單抽玉手箱",
+ "chineseTFontType":1,
+ "koreanText":"싱글 뽑기 상자",
+ "koreanFontType":2
+ },
+ {
+ "key":"gasha_complete_rate",
+ "japaneseText":"アイテムコンプ",
+ "japaneseFontType":0,
+ "englishUsText":"Treasure Completion",
+ "englishUsFontType":0,
+ "chineseTText":"道具完成率",
+ "chineseTFontType":1,
+ "koreanText":"아이템 수집률",
+ "koreanFontType":2
+ },
+ {
+ "key":"gasha_complete_rate_data",
+ "japaneseText":"%s%",
+ "japaneseFontType":0,
+ "englishUsText":"%s%",
+ "englishUsFontType":0,
+ "chineseTText":"%s%",
+ "chineseTFontType":1,
+ "koreanText":"%s%",
+ "koreanFontType":2
+ },
+ {
+ "key":"gasha_complete_rate_word",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"gasha_completed",
+ "japaneseText":"アイテム玉手箱は全て獲得済みです",
+ "japaneseFontType":0,
+ "englishUsText":"All Treasure Boxes obtained!",
+ "englishUsFontType":0,
+ "chineseTText":"道具玉匣子已全數獲得完畢",
+ "chineseTFontType":1,
+ "koreanText":"남은 뽑기 상자가 없습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"gasha_guide",
+ "japaneseText":"ドン小判を使ってアイテム玉手箱をゲットしよう!",
+ "japaneseFontType":0,
+ "englishUsText":"Use DON coins to get Treasure Boxes!",
+ "englishUsFontType":0,
+ "chineseTText":"使用咚小判取得道具玉匣子!",
+ "chineseTFontType":1,
+ "koreanText":"동 전으로 아이템 뽑기 상자를 얻자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"gasha_guide_playerselect",
+ "japaneseText":"プレイヤーを選んでください",
+ "japaneseFontType":0,
+ "englishUsText":"Please select your player",
+ "englishUsFontType":0,
+ "chineseTText":"請選擇玩家",
+ "chineseTFontType":1,
+ "koreanText":"플레이어를 선택해 주십시오",
+ "koreanFontType":2
+ },
+ {
+ "key":"gasha_help",
+ "japaneseText":"・ ここではドン小判を使ってアイテム玉手箱をGETする事ができます\n\n・ ドン小判は演奏ゲームのミッションビンゴでビンゴをそろえる等するともらえます\n\n・ アイテムの種類は「音色」「ぼうし」「ふく」「ぼうし+ふく」「メイク」\n 「きぐるみ」「ぷちキャラ」「称号」「あいさつ」があります\n\n・ たまにハズレになる事があります",
+ "japaneseFontType":0,
+ "englishUsText":"・DON coins can be used here to get Treasure Boxes!\n\n・DON coins are awarded upon completing Mission BINGO in Taiko Mode!\n\n・Instruments, Head, Body, Makeup, Costume Set, Kigurumi,\nPetit Characters, Titles and Greetings are obtainable via Treasure Boxes!\n\n・Treasure Box rolls may fail at times!",
+ "englishUsFontType":0,
+ "chineseTText":"・這裡可以使用咚小判取得道具玉匣子\n\n・咚小判可以透過演奏遊戲的賓果任務\n 蒐集賓果等方式獲得\n\n・道具有「音色」「帽子」「服裝」「帽子+服裝」「化妝」\n 「布偶裝」「迷你角色」「稱號」「寒暄」以上種類\n\n・偶而會有落空的情況",
+ "chineseTFontType":1,
+ "koreanText":"・이곳에선 동 전을 사용해 아이템 뽑기 상자를 GET할 수 있습니다\n\n・동 전은 연주 모드 중 빙고 미션에서 빙고를 만들거나 하면 얻을 수 있습니다\n\n・아이템의 종류는 「음색」 「모자」 「옷」 「화장」 「모자+옷」\n 「인형 옷」 「꼬마 캐릭터」 「칭호」 「인사말」이 있습니다\n\n・가끔 꽝이 나올 때도 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"gasha_help_title",
+ "japaneseText":"ヘルプ",
+ "japaneseFontType":0,
+ "englishUsText":"Help",
+ "englishUsFontType":0,
+ "chineseTText":"說明",
+ "chineseTFontType":1,
+ "koreanText":"도움말",
+ "koreanFontType":2
+ },
+ {
+ "key":"gasha_shortage",
+ "japaneseText":"ドン小判の枚数が足りません",
+ "japaneseFontType":0,
+ "englishUsText":"Insufficient DON coins",
+ "englishUsFontType":0,
+ "chineseTText":"咚小判數量不足",
+ "chineseTFontType":1,
+ "koreanText":"동 전이 부족합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"gasha_title",
+ "japaneseText":"アイテム玉手箱",
+ "japaneseFontType":0,
+ "englishUsText":"Treasure Box",
+ "englishUsFontType":0,
+ "chineseTText":"道具玉匣子",
+ "chineseTFontType":1,
+ "koreanText":"아이템 뽑기 상자",
+ "koreanFontType":2
+ },
+ {
+ "key":"bunki_down",
+ "japaneseText":"レベルダウン↓",
+ "japaneseFontType":0,
+ "englishUsText":"▼Level Down",
+ "englishUsFontType":0,
+ "chineseTText":"▼降級",
+ "chineseTFontType":1,
+ "koreanText":"레벨 다운↓",
+ "koreanFontType":2
+ },
+ {
+ "key":"bunki_expert",
+ "japaneseText":"達人譜面",
+ "japaneseFontType":0,
+ "englishUsText":"Master",
+ "englishUsFontType":0,
+ "chineseTText":"達人譜面",
+ "chineseTFontType":1,
+ "koreanText":"달인 악보",
+ "koreanFontType":2
+ },
+ {
+ "key":"bunki_normal",
+ "japaneseText":"普通譜面",
+ "japaneseFontType":0,
+ "englishUsText":"Normal",
+ "englishUsFontType":0,
+ "chineseTText":"一般譜面",
+ "chineseTFontType":1,
+ "koreanText":"보통 악보",
+ "koreanFontType":2
+ },
+ {
+ "key":"bunki_pro",
+ "japaneseText":"玄人譜面",
+ "japaneseFontType":0,
+ "englishUsText":"Professional",
+ "englishUsFontType":0,
+ "chineseTText":"進階譜面",
+ "chineseTFontType":1,
+ "koreanText":"현인 악보",
+ "koreanFontType":2
+ },
+ {
+ "key":"bunki_up",
+ "japaneseText":"レベルアップ↑",
+ "japaneseFontType":0,
+ "englishUsText":"▲Level Up",
+ "englishUsFontType":0,
+ "chineseTText":"▲升級",
+ "chineseTFontType":1,
+ "koreanText":"레벨 업↑",
+ "koreanFontType":2
+ },
+ {
+ "key":"clear",
+ "japaneseText":"クリア",
+ "japaneseFontType":0,
+ "englishUsText":"Clear",
+ "englishUsFontType":0,
+ "chineseTText":"通關",
+ "chineseTFontType":1,
+ "koreanText":"클리어",
+ "koreanFontType":2
+ },
+ {
+ "key":"combo",
+ "japaneseText":"コンボ",
+ "japaneseFontType":0,
+ "englishUsText":"Combo",
+ "englishUsFontType":0,
+ "chineseTText":"連段",
+ "chineseTFontType":1,
+ "koreanText":"콤보",
+ "koreanFontType":2
+ },
+ {
+ "key":"combo_fukidasi",
+ "japaneseText":"コンボ!",
+ "japaneseFontType":0,
+ "englishUsText":"Combo!",
+ "englishUsFontType":0,
+ "chineseTText":"連段!",
+ "chineseTFontType":1,
+ "koreanText":"콤보!",
+ "koreanFontType":2
+ },
+ {
+ "key":"course_easy",
+ "japaneseText":"かんたん",
+ "japaneseFontType":0,
+ "englishUsText":"Easy",
+ "englishUsFontType":0,
+ "chineseTText":"簡單",
+ "chineseTFontType":1,
+ "koreanText":"쉬움",
+ "koreanFontType":2
+ },
+ {
+ "key":"course_hard",
+ "japaneseText":"むずかしい",
+ "japaneseFontType":0,
+ "englishUsText":"Hard",
+ "englishUsFontType":0,
+ "chineseTText":"困難",
+ "chineseTFontType":1,
+ "koreanText":"어려움",
+ "koreanFontType":2
+ },
+ {
+ "key":"course_mania",
+ "japaneseText":"おに",
+ "japaneseFontType":0,
+ "englishUsText":"Extreme",
+ "englishUsFontType":0,
+ "chineseTText":"魔王",
+ "chineseTFontType":1,
+ "koreanText":"귀신",
+ "koreanFontType":2
+ },
+ {
+ "key":"course_normal",
+ "japaneseText":"ふつう",
+ "japaneseFontType":0,
+ "englishUsText":"Normal",
+ "englishUsFontType":0,
+ "chineseTText":"普通",
+ "chineseTFontType":1,
+ "koreanText":"보통",
+ "koreanFontType":2
+ },
+ {
+ "key":"course_ura",
+ "japaneseText":"おに",
+ "japaneseFontType":0,
+ "englishUsText":"Extreme",
+ "englishUsFontType":0,
+ "chineseTText":"魔王",
+ "chineseTFontType":1,
+ "koreanText":"귀신",
+ "koreanFontType":2
+ },
+ {
+ "key":"gavel",
+ "japaneseText":"速くドン連打!",
+ "japaneseFontType":0,
+ "englishUsText":"Drumroll rapidly!",
+ "englishUsFontType":0,
+ "chineseTText":"快速咚連打",
+ "chineseTFontType":1,
+ "koreanText":"빠르게 쿵 연타!",
+ "koreanFontType":2
+ },
+ {
+ "key":"genre_anime",
+ "japaneseText":"アニメ",
+ "japaneseFontType":0,
+ "englishUsText":"Anime",
+ "englishUsFontType":0,
+ "chineseTText":"卡通動畫音樂",
+ "chineseTFontType":1,
+ "koreanText":"애니메이션",
+ "koreanFontType":2
+ },
+ {
+ "key":"genre_children",
+ "japaneseText":"どうよう",
+ "japaneseFontType":0,
+ "englishUsText":"Nursery",
+ "englishUsFontType":0,
+ "chineseTText":"童謠",
+ "chineseTFontType":1,
+ "koreanText":"동요",
+ "koreanFontType":2
+ },
+ {
+ "key":"genre_classic",
+ "japaneseText":"クラシック",
+ "japaneseFontType":0,
+ "englishUsText":"Classical",
+ "englishUsFontType":0,
+ "chineseTText":"古典音樂",
+ "chineseTFontType":1,
+ "koreanText":"클래식",
+ "koreanFontType":2
+ },
+ {
+ "key":"genre_game",
+ "japaneseText":"ゲームミュージック",
+ "japaneseFontType":0,
+ "englishUsText":"Game Music",
+ "englishUsFontType":0,
+ "chineseTText":"遊戲音樂",
+ "chineseTFontType":1,
+ "koreanText":"게임",
+ "koreanFontType":2
+ },
+ {
+ "key":"genre_namco",
+ "japaneseText":"ナムコオリジナル",
+ "japaneseFontType":0,
+ "englishUsText":"NAMCO Original",
+ "englishUsFontType":0,
+ "chineseTText":"NAMCO原創音樂",
+ "chineseTFontType":1,
+ "koreanText":"남코 오리지널",
+ "koreanFontType":2
+ },
+ {
+ "key":"genre_pops",
+ "japaneseText":"ポップス",
+ "japaneseFontType":0,
+ "englishUsText":"POP",
+ "englishUsFontType":0,
+ "chineseTText":"流行音樂",
+ "chineseTFontType":1,
+ "koreanText":"POP",
+ "koreanFontType":2
+ },
+ {
+ "key":"genre_variety",
+ "japaneseText":"バラエティ",
+ "japaneseFontType":0,
+ "englishUsText":"Variety",
+ "englishUsFontType":0,
+ "chineseTText":"綜合音樂",
+ "chineseTFontType":1,
+ "koreanText":"버라이어티",
+ "koreanFontType":2
+ },
+ {
+ "key":"genre_vocalo",
+ "japaneseText":"ボーカロイド™曲",
+ "japaneseFontType":0,
+ "englishUsText":"VOCALOID™ Music",
+ "englishUsFontType":0,
+ "chineseTText":"VOCALOID™ Music",
+ "chineseTFontType":1,
+ "koreanText":"VOCALOID™ Music",
+ "koreanFontType":2
+ },
+ {
+ "key":"hiscore_update",
+ "japaneseText":"自己ベスト更新",
+ "japaneseFontType":0,
+ "englishUsText":"New high score",
+ "englishUsFontType":0,
+ "chineseTText":"刷新自我紀錄",
+ "chineseTFontType":1,
+ "koreanText":"마이 베스트 경신",
+ "koreanFontType":2
+ },
+ {
+ "key":"pause_continue",
+ "japaneseText":"演奏をつづける",
+ "japaneseFontType":0,
+ "englishUsText":"Continue",
+ "englishUsFontType":0,
+ "chineseTText":"繼續演奏",
+ "chineseTFontType":1,
+ "koreanText":"연주 계속하기",
+ "koreanFontType":2
+ },
+ {
+ "key":"pause_help",
+ "japaneseText":"ヘルプをみる",
+ "japaneseFontType":0,
+ "englishUsText":"View help",
+ "englishUsFontType":0,
+ "chineseTText":"檢視說明",
+ "chineseTFontType":1,
+ "koreanText":"도움말을 본다",
+ "koreanFontType":2
+ },
+ {
+ "key":"pause_menu",
+ "japaneseText":"ポーズメニュー",
+ "japaneseFontType":0,
+ "englishUsText":"Pause Menu",
+ "englishUsFontType":0,
+ "chineseTText":"暫停選單",
+ "chineseTFontType":1,
+ "koreanText":"일시정지 메뉴",
+ "koreanFontType":2
+ },
+ {
+ "key":"pause_mode_select",
+ "japaneseText":"「モードをえらぶ」にもどる",
+ "japaneseFontType":0,
+ "englishUsText":"Back to Select mode",
+ "englishUsFontType":0,
+ "chineseTText":"返回「選擇模式」",
+ "chineseTFontType":1,
+ "koreanText":"「모드 선택」으로",
+ "koreanFontType":2
+ },
+ {
+ "key":"pause_retry",
+ "japaneseText":"はじめからやりなおす",
+ "japaneseFontType":0,
+ "englishUsText":"Retry song",
+ "englishUsFontType":0,
+ "chineseTText":"從頭開始",
+ "chineseTFontType":1,
+ "koreanText":"처음부터 다시",
+ "koreanFontType":2
+ },
+ {
+ "key":"pause_song_select",
+ "japaneseText":"「曲をえらぶ」にもどる",
+ "japaneseFontType":0,
+ "englishUsText":"Back to Select song",
+ "englishUsFontType":0,
+ "chineseTText":"返回「選擇樂曲」",
+ "chineseTFontType":1,
+ "koreanText":"「곡 선택」으로",
+ "koreanFontType":2
+ },
+ {
+ "key":"renda",
+ "japaneseText":"連打!!",
+ "japaneseFontType":0,
+ "englishUsText":"Drum Roll!!",
+ "englishUsFontType":0,
+ "chineseTText":"連打!!",
+ "chineseTFontType":1,
+ "koreanText":"연타!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"entory_adjust_dialog_detail1",
+ "japaneseText":"ご家庭のテレビによっては、音符の位置や音が\nボタン操作とずれてしまうことがあります",
+ "japaneseFontType":0,
+ "englishUsText":"Music note position or audio may not be in sync\nwith button input for certain domestic TV sets.",
+ "englishUsFontType":0,
+ "chineseTText":"根據您的電視不同,音符位置或聲音\n可能會和按鈕操作有所偏差",
+ "chineseTFontType":1,
+ "koreanText":"사용하시는 TV에 따라서 음표나 소리가\n버튼 조작 타이밍과 어긋날 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"entory_adjust_dialog_detail2",
+ "japaneseText":"ゲーム設定に移動します",
+ "japaneseFontType":0,
+ "englishUsText":"Proceed to game settings",
+ "englishUsFontType":0,
+ "chineseTText":"移動至遊戲設定",
+ "chineseTFontType":1,
+ "koreanText":"게임 설정으로 이동합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"entory_adjust_dialog_title",
+ "japaneseText":"音符の表示や判定を調整しますか?",
+ "japaneseFontType":0,
+ "englishUsText":"Adjust music notes display or recognition area?",
+ "englishUsFontType":0,
+ "chineseTText":"確定要調整音符顯示或是演奏判定嗎?",
+ "chineseTFontType":1,
+ "koreanText":"음표 표시나 판정을 조정합니까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"entory_autosave",
+ "japaneseText":"このゲームはオートセーブに対応しています\n右上のセーブアイコンが表示されている間は\n電源を切ったり、アプリケーションを終了したりしないで下さい",
+ "japaneseFontType":0,
+ "englishUsText":"This game has an auto-save feature.\nPlease do not power off or exit the game when the\nsave icon is displayed on top right of the screen.",
+ "englishUsFontType":0,
+ "chineseTText":"本遊戲支援自動保存\n右上角顯示保存圖示期間\n請不要關閉電源,或是結束應用程式",
+ "chineseTFontType":1,
+ "koreanText":"이 게임은 자동 저장 기능을 사용합니다\n오른쪽 위의 세이브 아이콘이 표시 중일 때는\n전원을 끄거나 애플리케이션을 종료하지 마십시오",
+ "koreanFontType":2
+ },
+ {
+ "key":"entory_controller_dialog_detail",
+ "japaneseText":"初期設定はタイプ1です",
+ "japaneseFontType":0,
+ "englishUsText":"Default settings - Type 1",
+ "englishUsFontType":0,
+ "chineseTText":"初期設定為類型1",
+ "chineseTFontType":1,
+ "koreanText":"초기 설정은 타입 1입니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"entory_controller_dialog_title",
+ "japaneseText":"操作タイプを変更しますか?",
+ "japaneseFontType":0,
+ "englishUsText":"Change controller type?",
+ "englishUsFontType":0,
+ "chineseTText":"確定要變更操作類型嗎?",
+ "chineseTFontType":1,
+ "koreanText":"조작 타입을 변경합니까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"entory_ghost_detail",
+ "japaneseText":"プレイヤーの演奏を記録したゴーストデータです\nネットワークを通じてプレイヤー間で共有されます",
+ "japaneseFontType":0,
+ "englishUsText":"Copies your playstyle as Ghost data and shares it\nwith other players via the network!",
+ "englishUsFontType":0,
+ "chineseTText":"利用複製玩家演奏舉止的複製資料\n透過網路連線和玩家們共同分享!",
+ "chineseTFontType":1,
+ "koreanText":"플레이어의 연주를 기록한 고스트 데이터입니다\n네트워크를 통해 플레이어 간에 공유됩니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"entory_ghost_ins1",
+ "japaneseText":"フレンドセッション演奏",
+ "japaneseFontType":0,
+ "englishUsText":"Game session with friend!",
+ "englishUsFontType":0,
+ "chineseTText":"好友演奏會!",
+ "chineseTFontType":1,
+ "koreanText":"프렌드 세션 연주",
+ "koreanFontType":2
+ },
+ {
+ "key":"entory_ghost_ins2",
+ "japaneseText":"ゲストセッション演奏",
+ "japaneseFontType":0,
+ "englishUsText":"Game session with guest!",
+ "englishUsFontType":0,
+ "chineseTText":"客串演奏會!",
+ "chineseTFontType":1,
+ "koreanText":"게스트 세션 연주",
+ "koreanFontType":2
+ },
+ {
+ "key":"entory_ghost_ins3",
+ "japaneseText":"太鼓ランクマッチ",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Ranked Match!",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓線上排名戰!",
+ "chineseTFontType":1,
+ "koreanText":"태고 랭크 매치",
+ "koreanFontType":2
+ },
+ {
+ "key":"entory_ghost_ins4",
+ "japaneseText":"ベストリプレイ演奏",
+ "japaneseFontType":0,
+ "englishUsText":"Best replay session!",
+ "englishUsFontType":0,
+ "chineseTText":"最佳重播演奏!",
+ "chineseTFontType":1,
+ "koreanText":"베스트 리플레이 연주",
+ "koreanFontType":2
+ },
+ {
+ "key":"entory_ghost_supple",
+ "japaneseText":"※「ゴーストどん」の送受信設定は、「ゲーム設定」の「ネットワーク」から設定が可能です",
+ "japaneseFontType":0,
+ "englishUsText":"※Ghost transmission settings can be set within\nGame settings > Network",
+ "englishUsFontType":0,
+ "chineseTText":"※「複製咚」的發送/接收設定,\n可以從「遊戲設定」的「網路連線」進行設定。",
+ "chineseTFontType":1,
+ "koreanText":"※「고스트동」 송수신 설정은 「게임 설정」 내의\n「네트워크」에서 설정할 수 있습니다.",
+ "koreanFontType":2
+ },
+ {
+ "key":"entory_ghost_title",
+ "japaneseText":"「ゴーストどん」とは?",
+ "japaneseFontType":0,
+ "englishUsText":"What is Ghost?",
+ "englishUsFontType":0,
+ "chineseTText":"什麼是「複製咚」?",
+ "chineseTFontType":1,
+ "koreanText":"「고스트동」이란?",
+ "koreanFontType":2
+ },
+ {
+ "key":"entory_tutorial_dialog",
+ "japaneseText":"演奏ゲームのあそびかた説明を見ますか?",
+ "japaneseFontType":0,
+ "englishUsText":"View game tutorial?",
+ "englishUsFontType":0,
+ "chineseTText":"要檢視遊戲玩法說明嗎?",
+ "chineseTFontType":1,
+ "koreanText":"연주 모드 플레이 방법을 보시겠습니까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"entory_tutorial_dialog_detail",
+ "japaneseText":"初めて太鼓の達人をプレイする場合は\n見ることをおすすめします",
+ "japaneseFontType":0,
+ "englishUsText":"It is highly recommended to watch\nif you are new to Taiko Master",
+ "englishUsFontType":0,
+ "chineseTText":"若是初次遊玩太鼓之達人\n建議檢視遊戲玩法說明",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인을 처음 플레이하는 경우에는\n보는 것을 추천합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"entory_tutorial_dialog_detail2",
+ "japaneseText":"あそびかた説明に移動します",
+ "japaneseFontType":0,
+ "englishUsText":"Proceed to game tutorial.",
+ "englishUsFontType":0,
+ "chineseTText":"移動至遊戲玩法說明",
+ "chineseTFontType":1,
+ "koreanText":"플레이 방법 설명으로 이동합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"entry_copy_detail",
+ "japaneseText":"ゲームソフトを権利者の許諾なく、\nインターネットを通じて配信、配布する\n行為、また、違法なインターネット配信\nと知りながらダウンロードする行為は\n法律で固く禁じられております。\n\nみなさまのご理解とご協力を\nお願いいたします。",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"entry_copy_title",
+ "japaneseText":"ご注意",
+ "japaneseFontType":0,
+ "englishUsText":"WARNING",
+ "englishUsFontType":0,
+ "chineseTText":"注意",
+ "chineseTFontType":1,
+ "koreanText":"주의",
+ "koreanFontType":2
+ },
+ {
+ "key":"entry_eula_accept",
+ "japaneseText":"承諾する",
+ "japaneseFontType":0,
+ "englishUsText":"Accept",
+ "englishUsFontType":0,
+ "chineseTText":"同意",
+ "chineseTFontType":1,
+ "koreanText":"동의한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"entry_eula_decline",
+ "japaneseText":"承諾しない",
+ "japaneseFontType":0,
+ "englishUsText":"Decline",
+ "englishUsFontType":0,
+ "chineseTText":"不同意",
+ "chineseTFontType":1,
+ "koreanText":"동의하지 않는다",
+ "koreanFontType":2
+ },
+ {
+ "key":"entry_eula_select_dialog_title",
+ "japaneseText":"初めてプレイする方へ",
+ "japaneseFontType":0,
+ "englishUsText":"Those playing for the first time",
+ "englishUsFontType":0,
+ "chineseTText":"給初次遊玩的人",
+ "chineseTFontType":1,
+ "koreanText":"처음 플레이하시는 분에게",
+ "koreanFontType":2
+ },
+ {
+ "key":"entry_eula_select_dialog_text",
+ "japaneseText":"ユーザー「 %s 」に\nオンラインサービスご利用規約と\nプライバシーポリシーの確認をお願いします",
+ "japaneseFontType":0,
+ "englishUsText":"Dear User「 %s 」,\nPlease read and acknowledge both the\nOnline Service Agreement and Privacy Policy.",
+ "englishUsFontType":0,
+ "chineseTText":"請使用者「 %s 」\n確認使用者授權合約和服務條款\n",
+ "chineseTFontType":1,
+ "koreanText":"유저 「 %s 」 님께\n온라인 서비스 이용약관과\n개인정보 보호정책의 확인을 부탁드립니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"entry_tatakcon_detail",
+ "japaneseText":"振動や音で近所の迷惑にならないよう、あそぶ時間帯に気をつけてね!\nバチをふりまわしたり、力まかせに叩いたり、太鼓以外のものを叩いたりしないでね!",
+ "japaneseFontType":0,
+ "englishUsText":"Avoid causing inconvenience to neighbors by\npaying attention to the time!\nRefrain from using the drumstick recklessly or\nhit other things forcefully apart from Taiko!",
+ "englishUsFontType":0,
+ "chineseTText":"避免因為震動或聲音造成\n附近住家困擾,請注意遊玩時段吧!\n請不要用力揮舞鼓棒、使勁敲打、\n或是敲打太鼓之外的東西喔!",
+ "chineseTFontType":1,
+ "koreanText":"진동이나 소리 때문에 주변에 피해가 가지\n않도록 플레이 시간에는 주의해줘!\n북채를 휘두르거나, 너무 힘을 주거나, \n태고 말고 다른 걸 두드리지도 말고!",
+ "koreanFontType":2
+ },
+ {
+ "key":"entry_title_2P",
+ "japaneseText":"2人でプレイしたい場合は\nログインしてください",
+ "japaneseFontType":0,
+ "englishUsText":"Please login with both players\nin order to play together.",
+ "englishUsFontType":0,
+ "chineseTText":"欲遊玩2人模式時\n請先進行登入",
+ "chineseTFontType":1,
+ "koreanText":"둘이서 플레이하고 싶을 때는\n로그인해 주십시오",
+ "koreanFontType":2
+ },
+ {
+ "key":"entry_title_decide",
+ "japaneseText":"㎎ボタンでスタート",
+ "japaneseFontType":0,
+ "englishUsText":"Press ㎎ to start.",
+ "englishUsFontType":0,
+ "chineseTText":"按㎎按鈕開始",
+ "chineseTFontType":1,
+ "koreanText":"㎎버튼으로 스타트",
+ "koreanFontType":2
+ },
+ {
+ "key":"entry_login_start",
+ "japaneseText":"スタート",
+ "japaneseFontType":0,
+ "englishUsText":"Start",
+ "englishUsFontType":0,
+ "chineseTText":"開始",
+ "chineseTFontType":1,
+ "koreanText":"스타트",
+ "koreanFontType":2
+ },
+ {
+ "key":"entry_login_title",
+ "japaneseText":"エントリー",
+ "japaneseFontType":0,
+ "englishUsText":"Entry",
+ "englishUsFontType":0,
+ "chineseTText":"登入",
+ "chineseTFontType":1,
+ "koreanText":"엔트리",
+ "koreanFontType":2
+ },
+ {
+ "key":"entry_login_new",
+ "japaneseText":"新しくはじめる",
+ "japaneseFontType":0,
+ "englishUsText":"New Start",
+ "englishUsFontType":0,
+ "chineseTText":"全新開始",
+ "chineseTFontType":1,
+ "koreanText":"새로 시작한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"entry_title_savedata",
+ "japaneseText":"セーブデータを確認しています\nしばらくおまちください",
+ "japaneseFontType":0,
+ "englishUsText":"Verifying save data.\nPlease wait a moment...",
+ "englishUsFontType":0,
+ "chineseTText":"正在確認保存資料\n請稍待片刻",
+ "chineseTFontType":1,
+ "koreanText":"저장 데이터를 확인 중입니다\n잠시만 기다려 주십시오",
+ "koreanFontType":2
+ },
+ {
+ "key":"title_logo",
+ "japaneseText":"たいこのたつじん",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Master",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓之達人",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"title_subtitle",
+ "japaneseText":"未定",
+ "japaneseFontType":0,
+ "englishUsText":"TBA",
+ "englishUsFontType":0,
+ "chineseTText":"未定",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"detarame",
+ "japaneseText":"でたらめ",
+ "japaneseFontType":0,
+ "englishUsText":"Messy",
+ "englishUsFontType":0,
+ "chineseTText":"隨意",
+ "chineseTFontType":1,
+ "koreanText":"대충",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_abekobe_off",
+ "japaneseText":"音符の「ドン」「カッ」を入れかえるオプション",
+ "japaneseFontType":0,
+ "englishUsText":"Option to swap between DON and KAT music notes.",
+ "englishUsFontType":0,
+ "chineseTText":"替換音符「咚」「咔」的選項",
+ "chineseTFontType":1,
+ "koreanText":"음표 「쿵」 「딱」을 바꾸는 옵션",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_abekobe_on",
+ "japaneseText":"音符の「ドン」「カッ」が全て入れかわる",
+ "japaneseFontType":0,
+ "englishUsText":"Option to swap between all DON and KAT music notes.",
+ "englishUsFontType":0,
+ "chineseTText":"音符「咚」「咔」全部替換",
+ "chineseTFontType":1,
+ "koreanText":"음표 「쿵」 「딱」이 전부 바뀐다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_dron_off",
+ "japaneseText":"音符の表示を消せるオプション",
+ "japaneseFontType":0,
+ "englishUsText":"Toggle music notes display.",
+ "englishUsFontType":0,
+ "chineseTText":"取消音符顯示的選項",
+ "chineseTFontType":1,
+ "koreanText":"음표 표시를 지우는 옵션",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_dron_on",
+ "japaneseText":"音符を表示しない",
+ "japaneseFontType":0,
+ "englishUsText":"Do not display music notes.",
+ "englishUsFontType":0,
+ "chineseTText":"不顯示音符",
+ "chineseTFontType":1,
+ "koreanText":"음표를 표시하지 않는다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_neiro",
+ "japaneseText":"「ドン」「カッ」入力時の音色が変わる",
+ "japaneseFontType":0,
+ "englishUsText":"Change DON and KAT instrument",
+ "englishUsFontType":0,
+ "chineseTText":"改變輸入「咚」、「咔」時的音色",
+ "chineseTFontType":1,
+ "koreanText":"「쿵」 「딱」입력 시의 효과음이 변한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_random_detarame",
+ "japaneseText":"音符の「ドン」「カッ」をたくさん入れかえる",
+ "japaneseFontType":0,
+ "englishUsText":"Swap between majority of DON and KAT music notes.",
+ "englishUsFontType":0,
+ "chineseTText":"音符「咚」「咔」大幅替換",
+ "chineseTFontType":1,
+ "koreanText":"음표 「쿵」 「딱」을 잔뜩 섞는다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_random_kimagure",
+ "japaneseText":"音符の「ドン」「カッ」をすこし入れかえる",
+ "japaneseFontType":0,
+ "englishUsText":"Slightly swap between DON and KAT music notes.",
+ "englishUsFontType":0,
+ "chineseTText":"音符「咚」「咔」微幅替換",
+ "chineseTFontType":1,
+ "koreanText":"음표 「쿵」 「딱」을 약간 섞는다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_random_off",
+ "japaneseText":"音符の「ドン」「カッ」表示をランダムに入れかえるオプション",
+ "japaneseFontType":0,
+ "englishUsText":"Option to randomize DON and KAT music notes.",
+ "englishUsFontType":0,
+ "chineseTText":"隨機替換音符「咚」「咔」的選項",
+ "chineseTFontType":1,
+ "koreanText":"음표 「쿵」 「딱」 표시를 랜덤하게 바꾸는 옵션",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_score_normal",
+ "japaneseText":"コンボをつなぐとより多くのスコアが加算される、通常の配点方式",
+ "japaneseFontType":0,
+ "englishUsText":"Points are awarded proportionally to combo achieved.",
+ "englishUsFontType":0,
+ "chineseTText":"累積連段會加算更多的分數,為一般給分方式",
+ "chineseTFontType":1,
+ "koreanText":"콤보를 더 많이 이어가는 것을 중시한 평범한 배점 방식",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_score_shinuchi",
+ "japaneseText":"コンボに関係なく、タイミングよく音符を叩けたことを重視した配点方式",
+ "japaneseFontType":0,
+ "englishUsText":"Points are awarded for exact input timing regardless of combo.",
+ "englishUsFontType":0,
+ "chineseTText":"與連段無關,重視配合節奏時機敲打音符的給分方式",
+ "chineseTFontType":1,
+ "koreanText":"콤보와 상관없이 박자에 맞춘 타이밍을 중시한 배점 방식",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_special",
+ "japaneseText":"演奏の特殊設定ができるオプション",
+ "japaneseFontType":0,
+ "englishUsText":"Option to set Special feature",
+ "englishUsFontType":0,
+ "chineseTText":"可以針對演奏進行特殊設定",
+ "chineseTFontType":1,
+ "koreanText":"연주의 특수 설정을 할 수 있는 옵션",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_special_auto",
+ "japaneseText":"オート演奏になる",
+ "japaneseFontType":0,
+ "englishUsText":"Auto-play",
+ "englishUsFontType":0,
+ "chineseTText":"將會自動演奏",
+ "chineseTFontType":1,
+ "koreanText":"오토 연주로 변한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_special_perfect",
+ "japaneseText":"「不可」1回で演奏終了",
+ "japaneseFontType":0,
+ "englishUsText":"End play with a single BAD",
+ "englishUsFontType":0,
+ "chineseTText":"1次「不可」即結束演奏",
+ "chineseTFontType":1,
+ "koreanText":"「에구」가 1번이라도 발생하면 연주 종료",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_special_training",
+ "japaneseText":"「不可」1回で演奏やり直し",
+ "japaneseFontType":0,
+ "englishUsText":"Retry play with a single BAD",
+ "englishUsFontType":0,
+ "chineseTText":"1次「不可」即從頭演奏",
+ "chineseTFontType":1,
+ "koreanText":"「에구」가 1번이라도 발생하면 연주 다시 하기",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_speed_off",
+ "japaneseText":"音符の流れるはやさを変更できるオプション",
+ "japaneseFontType":0,
+ "englishUsText":"Option to change the music notes speed.",
+ "englishUsFontType":0,
+ "chineseTText":"變更音符流動速度",
+ "chineseTFontType":1,
+ "koreanText":"음표가 이동하는 속도를 변경하는 옵션",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_speed_x2",
+ "japaneseText":"音符はやさ:2倍",
+ "japaneseFontType":0,
+ "englishUsText":"Music notes speed:2x",
+ "englishUsFontType":0,
+ "chineseTText":"音符速度:2倍",
+ "chineseTFontType":1,
+ "koreanText":"음표 속도 : 2배",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_speed_x3",
+ "japaneseText":"音符はやさ:3倍",
+ "japaneseFontType":0,
+ "englishUsText":"Music notes speed:3x",
+ "englishUsFontType":0,
+ "chineseTText":"音符速度:3倍",
+ "chineseTFontType":1,
+ "koreanText":"음표 속도 : 3배",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_speed_x4",
+ "japaneseText":"音符はやさ:4倍",
+ "japaneseFontType":0,
+ "englishUsText":"Music notes speed:4x",
+ "englishUsFontType":0,
+ "chineseTText":"音符速度:4倍",
+ "chineseTFontType":1,
+ "koreanText":"음표 속도 : 4배",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_support_lv1",
+ "japaneseText":"音符の判定がやさしくなる",
+ "japaneseFontType":0,
+ "englishUsText":"Widen music notes recognition area.",
+ "englishUsFontType":0,
+ "chineseTText":"放寬音符判定範圍",
+ "chineseTFontType":1,
+ "koreanText":"음표의 판정 범위가 커진다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_support_lv2",
+ "japaneseText":"判定がやさしくなり、「ドン」と「カッ」の区別なく、どのボタンを押しても反応する",
+ "japaneseFontType":0,
+ "englishUsText":"Widen music notes recognition area, disregards DON or KAT input.",
+ "englishUsFontType":0,
+ "chineseTText":"放寬音符判定範圍,並且按「咚」或「咔」\n任一按鈕皆算判定",
+ "chineseTFontType":1,
+ "koreanText":"판정 범위가 커지고,「쿵」과 「딱」 구분없이 아무 버튼이나 눌러도 반응한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_support_lv3",
+ "japaneseText":"判定がやさしくなり、ノルマゲージが減らなくなる",
+ "japaneseFontType":0,
+ "englishUsText":"Widen music notes recognition area, Clear gauge no longer decreases.",
+ "englishUsFontType":0,
+ "chineseTText":"放寬音符判定範圍,並且及格線量表將不會減少",
+ "chineseTFontType":1,
+ "koreanText":"판정 범위가 커지고, 클리어 게이지가 줄지 않는다",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_support_off",
+ "japaneseText":"演奏を補助するオプション",
+ "japaneseFontType":0,
+ "englishUsText":"Support play feature for Taiko",
+ "englishUsFontType":0,
+ "chineseTText":"輔助演奏的選項",
+ "chineseTFontType":1,
+ "koreanText":"연주를 보조하는 옵션",
+ "koreanFontType":2
+ },
+ {
+ "key":"kimagure",
+ "japaneseText":"きまぐれ",
+ "japaneseFontType":0,
+ "englishUsText":"Whimsical",
+ "englishUsFontType":0,
+ "chineseTText":"隨興",
+ "chineseTFontType":1,
+ "koreanText":"변덕",
+ "koreanFontType":2
+ },
+ {
+ "key":"off",
+ "japaneseText":"オフ",
+ "japaneseFontType":0,
+ "englishUsText":"Off",
+ "englishUsFontType":0,
+ "chineseTText":"Off",
+ "chineseTFontType":1,
+ "koreanText":"오프",
+ "koreanFontType":2
+ },
+ {
+ "key":"on",
+ "japaneseText":"オン",
+ "japaneseFontType":0,
+ "englishUsText":"On",
+ "englishUsFontType":0,
+ "chineseTText":"On",
+ "chineseTFontType":1,
+ "koreanText":"온",
+ "koreanFontType":2
+ },
+ {
+ "key":"option_abekobe",
+ "japaneseText":"あべこべ",
+ "japaneseFontType":0,
+ "englishUsText":"Inverse",
+ "englishUsFontType":0,
+ "chineseTText":"顛倒",
+ "chineseTFontType":1,
+ "koreanText":"역전",
+ "koreanFontType":2
+ },
+ {
+ "key":"option_auto",
+ "japaneseText":"オート",
+ "japaneseFontType":0,
+ "englishUsText":"Auto",
+ "englishUsFontType":0,
+ "chineseTText":"自動",
+ "chineseTFontType":1,
+ "koreanText":"오토",
+ "koreanFontType":2
+ },
+ {
+ "key":"option_dron",
+ "japaneseText":"ドロン",
+ "japaneseFontType":0,
+ "englishUsText":"Vanish",
+ "englishUsFontType":0,
+ "chineseTText":"隱身",
+ "chineseTFontType":1,
+ "koreanText":"은신",
+ "koreanFontType":2
+ },
+ {
+ "key":"option_duet_using_sp",
+ "japaneseText":"※2人プレイ中は、かんぺき・とっくんは機能しません",
+ "japaneseFontType":0,
+ "englishUsText":"※Perfect and Spartan features are unavailable for multiplayer.",
+ "englishUsFontType":0,
+ "chineseTText":"※2人模式中,將無法使用完美、特訓功能",
+ "chineseTFontType":1,
+ "koreanText":"※둘이서 플레이 중에는 완벽 / 특훈이 작동하지 않습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"option_perfect",
+ "japaneseText":"かんぺき",
+ "japaneseFontType":0,
+ "englishUsText":"Perfect",
+ "englishUsFontType":0,
+ "chineseTText":"完美",
+ "chineseTFontType":1,
+ "koreanText":"완벽",
+ "koreanFontType":2
+ },
+ {
+ "key":"option_random",
+ "japaneseText":"ランダム",
+ "japaneseFontType":0,
+ "englishUsText":"Random",
+ "englishUsFontType":0,
+ "chineseTText":"隨機",
+ "chineseTFontType":1,
+ "koreanText":"랜덤",
+ "koreanFontType":2
+ },
+ {
+ "key":"option_special",
+ "japaneseText":"とくしゅ",
+ "japaneseFontType":0,
+ "englishUsText":"Special",
+ "englishUsFontType":0,
+ "chineseTText":"特殊",
+ "chineseTFontType":1,
+ "koreanText":"특수",
+ "koreanFontType":2
+ },
+ {
+ "key":"option_speed",
+ "japaneseText":"はやさ",
+ "japaneseFontType":0,
+ "englishUsText":"Speed",
+ "englishUsFontType":0,
+ "chineseTText":"速度",
+ "chineseTFontType":1,
+ "koreanText":"속도",
+ "koreanFontType":2
+ },
+ {
+ "key":"option_support",
+ "japaneseText":"サポート",
+ "japaneseFontType":0,
+ "englishUsText":"Support",
+ "englishUsFontType":0,
+ "chineseTText":"支援",
+ "chineseTFontType":1,
+ "koreanText":"서포트",
+ "koreanFontType":2
+ },
+ {
+ "key":"option_support_lv1",
+ "japaneseText":"Lv1",
+ "japaneseFontType":0,
+ "englishUsText":"Lv1",
+ "englishUsFontType":0,
+ "chineseTText":"Lv1",
+ "chineseTFontType":1,
+ "koreanText":"Lv 1",
+ "koreanFontType":2
+ },
+ {
+ "key":"option_support_lv2",
+ "japaneseText":"Lv2",
+ "japaneseFontType":0,
+ "englishUsText":"Lv2",
+ "englishUsFontType":0,
+ "chineseTText":"Lv2",
+ "chineseTFontType":1,
+ "koreanText":"Lv 2",
+ "koreanFontType":2
+ },
+ {
+ "key":"option_support_lv3",
+ "japaneseText":"Lv3",
+ "japaneseFontType":0,
+ "englishUsText":"Lv3",
+ "englishUsFontType":0,
+ "chineseTText":"Lv3",
+ "chineseTFontType":1,
+ "koreanText":"Lv 3",
+ "koreanFontType":2
+ },
+ {
+ "key":"option_training",
+ "japaneseText":"とっくん",
+ "japaneseFontType":0,
+ "englishUsText":"Spartan",
+ "englishUsFontType":0,
+ "chineseTText":"特訓",
+ "chineseTFontType":1,
+ "koreanText":"특훈",
+ "koreanFontType":2
+ },
+ {
+ "key":"option_training_using_sp",
+ "japaneseText":"※トレーニング演奏中は、サポート・とくしゅ・スコアは機能しません",
+ "japaneseFontType":0,
+ "englishUsText":"※Score, Support and Special features are unavailable for Training Mode.",
+ "englishUsFontType":0,
+ "chineseTText":"※訓練演奏中,將無法使用支援、特殊、成績功能",
+ "chineseTFontType":1,
+ "koreanText":"※트레이닝 연주 중에는 서포트 / 특수 / 스코어가 작동하지 않습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"option_using_support",
+ "japaneseText":"※サポート使用時は、スコアは記録されません",
+ "japaneseFontType":0,
+ "englishUsText":"※Score will not be recorded when using the Support feature.",
+ "englishUsFontType":0,
+ "chineseTText":"※使用支援時,將不會記錄成績",
+ "chineseTFontType":1,
+ "koreanText":"※서포트 사용 시에는 스코어가 기록되지 않습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"score_normal",
+ "japaneseText":"通常",
+ "japaneseFontType":0,
+ "englishUsText":"Normal",
+ "englishUsFontType":0,
+ "chineseTText":"一般",
+ "chineseTFontType":1,
+ "koreanText":"일반",
+ "koreanFontType":2
+ },
+ {
+ "key":"score_shinuchi",
+ "japaneseText":"真打",
+ "japaneseFontType":0,
+ "englishUsText":"Shin-Uchi",
+ "englishUsFontType":0,
+ "chineseTText":"真打",
+ "chineseTFontType":1,
+ "koreanText":"진타",
+ "koreanFontType":2
+ },
+ {
+ "key":"speed_x2",
+ "japaneseText":"ばいそく",
+ "japaneseFontType":0,
+ "englishUsText":"2x speed",
+ "englishUsFontType":0,
+ "chineseTText":"二倍速",
+ "chineseTFontType":1,
+ "koreanText":"배속",
+ "koreanFontType":2
+ },
+ {
+ "key":"speed_x3",
+ "japaneseText":"さんばい",
+ "japaneseFontType":0,
+ "englishUsText":"3x speed",
+ "englishUsFontType":0,
+ "chineseTText":"三倍速",
+ "chineseTFontType":1,
+ "koreanText":"세배",
+ "koreanFontType":2
+ },
+ {
+ "key":"speed_x4",
+ "japaneseText":"よんばい",
+ "japaneseFontType":0,
+ "englishUsText":"4x speed",
+ "englishUsFontType":0,
+ "chineseTText":"四倍速",
+ "chineseTFontType":1,
+ "koreanText":"네배",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_costume_mydon",
+ "japaneseText":"おためし中!",
+ "japaneseFontType":0,
+ "englishUsText":"Preview!",
+ "englishUsFontType":0,
+ "chineseTText":"試裝中!",
+ "chineseTFontType":1,
+ "koreanText":"한번 입어 보세요!",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_favorite_add",
+ "japaneseText":"着せ替えたい「お気に入りセット」の番号を選んでください",
+ "japaneseFontType":0,
+ "englishUsText":"Select slot number of Favorite Set.",
+ "englishUsFontType":0,
+ "chineseTText":"請選擇欲登錄為中意套組的號碼",
+ "chineseTFontType":1,
+ "koreanText":"갈아입고 싶은 「즐겨찾기 세트」 번호를 선택해 주십시오",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_favorite_list",
+ "japaneseText":"お気に入りリスト",
+ "japaneseFontType":0,
+ "englishUsText":"Favorite List",
+ "englishUsFontType":0,
+ "chineseTText":"中意列表",
+ "chineseTFontType":1,
+ "koreanText":"즐겨찾기 리스트",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_favorite_load",
+ "japaneseText":"きせかえる",
+ "japaneseFontType":0,
+ "englishUsText":"Load",
+ "englishUsFontType":0,
+ "chineseTText":"換裝",
+ "chineseTFontType":1,
+ "koreanText":"의상을 갈아입는다",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_favorite_load_add",
+ "japaneseText":"今の「きせかえ」「いろ」をセットで登録することができます",
+ "japaneseFontType":0,
+ "englishUsText":"Save current costume set and color to favorite list.",
+ "englishUsFontType":0,
+ "chineseTText":"可以將目前的「換裝配件」「顏色」登錄為套組",
+ "chineseTFontType":1,
+ "koreanText":"착용 중인 「의상」「색」을 세트로 등록할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_favorite_load_result",
+ "japaneseText":"着せ替えました!",
+ "japaneseFontType":0,
+ "englishUsText":"Load completed!",
+ "englishUsFontType":0,
+ "chineseTText":"已換裝!",
+ "chineseTFontType":1,
+ "koreanText":"갈아입었습니다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_favorite_load_select",
+ "japaneseText":"きせかえをしたい、お気に入りセットの番号を選んでください",
+ "japaneseFontType":0,
+ "englishUsText":"Select slot number of Favorite Set.",
+ "englishUsFontType":0,
+ "chineseTText":"請選擇欲換裝的中意套組號碼",
+ "chineseTFontType":1,
+ "koreanText":"갈아입고 싶은 즐겨찾기 세트 번호를 선택해 주십시오",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_favorite_load_supple",
+ "japaneseText":"登録した「お気に入りセット」に着せ替えできます",
+ "japaneseFontType":0,
+ "englishUsText":"Load favorite costumes.",
+ "englishUsFontType":0,
+ "chineseTText":"可以換上已登錄的中意套組",
+ "chineseTFontType":1,
+ "koreanText":"등록해둔 「즐겨찾기 세트」 로 갈아입을 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_favorite_load_title",
+ "japaneseText":"このセットに着せ替えますか?",
+ "japaneseFontType":0,
+ "englishUsText":"Load this Favorite Set?",
+ "englishUsFontType":0,
+ "chineseTText":"確定換上這個套組嗎?",
+ "chineseTFontType":1,
+ "koreanText":"이 세트로 갈아입습니까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_favorite_notregist",
+ "japaneseText":"未登録",
+ "japaneseFontType":0,
+ "englishUsText":"Available slot",
+ "englishUsFontType":0,
+ "chineseTText":"尚未登錄",
+ "chineseTFontType":1,
+ "koreanText":"미등록",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_favorite_question",
+ "japaneseText":"?",
+ "japaneseFontType":0,
+ "englishUsText":"?",
+ "englishUsFontType":0,
+ "chineseTText":"?",
+ "chineseTFontType":1,
+ "koreanText":"?",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_favorite_regist1",
+ "japaneseText":"お気に入りセット①",
+ "japaneseFontType":0,
+ "englishUsText":"Favorite Set ①",
+ "englishUsFontType":0,
+ "chineseTText":"中意套組①",
+ "chineseTFontType":1,
+ "koreanText":"즐겨찾기 세트①",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_favorite_regist2",
+ "japaneseText":"お気に入りセット②",
+ "japaneseFontType":0,
+ "englishUsText":"Favorite Set ②",
+ "englishUsFontType":0,
+ "chineseTText":"中意套組②",
+ "chineseTFontType":1,
+ "koreanText":"즐겨찾기 세트②",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_favorite_regist3",
+ "japaneseText":"お気に入りセット③",
+ "japaneseFontType":0,
+ "englishUsText":"Favorite Set ③",
+ "englishUsFontType":0,
+ "chineseTText":"中意套組③",
+ "chineseTFontType":1,
+ "koreanText":"즐겨찾기 세트③",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_favorite_regist4",
+ "japaneseText":"お気に入りセット④",
+ "japaneseFontType":0,
+ "englishUsText":"Favorite Set ④",
+ "englishUsFontType":0,
+ "chineseTText":"中意套組④",
+ "chineseTFontType":1,
+ "koreanText":"즐겨찾기 세트④",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_favorite_regist5",
+ "japaneseText":"お気に入りセット⑤",
+ "japaneseFontType":0,
+ "englishUsText":"Favorite Set ⑤",
+ "englishUsFontType":0,
+ "chineseTText":"中意套組⑤",
+ "chineseTFontType":1,
+ "koreanText":"즐겨찾기 세트⑤",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_favorite_regist6",
+ "japaneseText":"お気に入りセット⑥",
+ "japaneseFontType":0,
+ "englishUsText":"Favorite Set ⑥",
+ "englishUsFontType":0,
+ "chineseTText":"中意套組⑥",
+ "chineseTFontType":1,
+ "koreanText":"즐겨찾기 세트⑥",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_favorite_regist7",
+ "japaneseText":"お気に入りセット⑦",
+ "japaneseFontType":0,
+ "englishUsText":"Favorite Set ⑦",
+ "englishUsFontType":0,
+ "chineseTText":"中意套組⑦",
+ "chineseTFontType":1,
+ "koreanText":"즐겨찾기 세트⑦",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_favorite_regist8",
+ "japaneseText":"お気に入りセット⑧",
+ "japaneseFontType":0,
+ "englishUsText":"Favorite Set ⑧",
+ "englishUsFontType":0,
+ "chineseTText":"中意套組⑧",
+ "chineseTFontType":1,
+ "koreanText":"즐겨찾기 세트⑧",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_favorite_rewrite_add",
+ "japaneseText":"※元の「お気に入りセット」はなくなります",
+ "japaneseFontType":0,
+ "englishUsText":"※Existing Favorite Set will be overwritten.",
+ "englishUsFontType":0,
+ "chineseTText":"※會失去原有的中意套組",
+ "chineseTFontType":1,
+ "koreanText":"※기존의 「즐겨찾기 세트」 가 사라집니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_favorite_rewrite_result",
+ "japaneseText":"上書きしました!",
+ "japaneseFontType":0,
+ "englishUsText":"Overwrite completed!",
+ "englishUsFontType":0,
+ "chineseTText":"已覆蓋!",
+ "chineseTFontType":1,
+ "koreanText":"덮어썼습니다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_favorite_rewrite_title",
+ "japaneseText":"上書きしますか?",
+ "japaneseFontType":0,
+ "englishUsText":"Overwrite?",
+ "englishUsFontType":0,
+ "chineseTText":"確定要覆蓋嗎?",
+ "chineseTFontType":1,
+ "koreanText":"덮어씁니까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_favorite_save",
+ "japaneseText":"登録する",
+ "japaneseFontType":0,
+ "englishUsText":"Save",
+ "englishUsFontType":0,
+ "chineseTText":"登錄",
+ "chineseTFontType":1,
+ "koreanText":"등록한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_favorite_save_add",
+ "japaneseText":"メイク",
+ "japaneseFontType":0,
+ "englishUsText":"Make",
+ "englishUsFontType":0,
+ "chineseTText":"化妝",
+ "chineseTFontType":1,
+ "koreanText":"화장",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_greeting_friend_post",
+ "japaneseText":"フレンドセッション 終わりのあいさつ",
+ "japaneseFontType":0,
+ "englishUsText":"Friend session greetings (End)",
+ "englishUsFontType":0,
+ "chineseTText":"好友演奏會 結束的寒暄",
+ "chineseTFontType":1,
+ "koreanText":"프렌드 세션 끝날 때 인사말",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_greeting_friend_pre",
+ "japaneseText":"フレンドセッション 始めのあいさつ",
+ "japaneseFontType":0,
+ "englishUsText":"Friend session greetings (Start)",
+ "englishUsFontType":0,
+ "chineseTText":"好友演奏會 開始的寒暄",
+ "chineseTFontType":1,
+ "koreanText":"프렌드 세션 시작할 때 인사말",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_greeting_list",
+ "japaneseText":"あいさつリスト",
+ "japaneseFontType":0,
+ "englishUsText":"Greetings List",
+ "englishUsFontType":0,
+ "chineseTText":"寒暄列表",
+ "chineseTFontType":1,
+ "koreanText":"인사 리스트",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_greeting_rank_post",
+ "japaneseText":"太鼓ランクマッチ 終わりのあいさつ",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Ranked Match greetings (End)",
+ "englishUsFontType":0,
+ "chineseTText":"線上排名戰 結束的寒暄",
+ "chineseTFontType":1,
+ "koreanText":"태고 랭크 매치 끝날 때 인사말",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_greeting_rank_pre",
+ "japaneseText":"太鼓ランクマッチ 始めのあいさつ",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Ranked Match greetings (Start)",
+ "englishUsFontType":0,
+ "chineseTText":"線上排名戰 開始的寒暄",
+ "chineseTFontType":1,
+ "koreanText":"태고 랭크 매치 시작할 때 인사말",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_mydon_color",
+ "japaneseText":"いろ",
+ "japaneseFontType":0,
+ "englishUsText":"Color",
+ "englishUsFontType":0,
+ "chineseTText":"顏色",
+ "chineseTFontType":1,
+ "koreanText":"색",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_mydon_color_add",
+ "japaneseText":"色を変えることができます\n※「きせかえ」によっては「いろ」が反映されないものがあります",
+ "japaneseFontType":0,
+ "englishUsText":"Set Color\n※Some colors may not be reflected due to the costume.",
+ "englishUsFontType":0,
+ "chineseTText":"可以改變顏色\n※部分「換裝配件」無法套用「顏色」",
+ "chineseTFontType":1,
+ "koreanText":"색을 바꿀 수 있습니다\n※일부 「의상」 중엔 「색」이 반영되지 않는 것이 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_mydon_color_body",
+ "japaneseText":"どう",
+ "japaneseFontType":0,
+ "englishUsText":"Body",
+ "englishUsFontType":0,
+ "chineseTText":"身體",
+ "chineseTFontType":1,
+ "koreanText":"몸통",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_mydon_color_face",
+ "japaneseText":"かお",
+ "japaneseFontType":0,
+ "englishUsText":"Face",
+ "englishUsFontType":0,
+ "chineseTText":"臉部",
+ "chineseTFontType":1,
+ "koreanText":"얼굴",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_mydon_color_other",
+ "japaneseText":"てあし",
+ "japaneseFontType":0,
+ "englishUsText":"Others",
+ "englishUsFontType":0,
+ "chineseTText":"手腳",
+ "chineseTFontType":1,
+ "koreanText":"손발",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_mydon_costume",
+ "japaneseText":"きせかえ",
+ "japaneseFontType":0,
+ "englishUsText":"Costume",
+ "englishUsFontType":0,
+ "chineseTText":"換裝配件",
+ "chineseTFontType":1,
+ "koreanText":"의상",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_mydon_costume_add",
+ "japaneseText":"着せ替えができます\n※「ぷちキャラ」と「きぐるみ」は同時に着せ替えができません",
+ "japaneseFontType":0,
+ "englishUsText":"Set Costume\n※Petit Character and Kigurumi can not be set together.",
+ "englishUsFontType":0,
+ "chineseTText":"進行換裝\n※部分迷你角色及布偶裝無法同時換裝",
+ "chineseTFontType":1,
+ "koreanText":"의상을 갈아입을 수 있습니다\n※ 「꼬마 캐릭터」와 「인형 옷」은 동시에 입을 수 없습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_mydon_favorite",
+ "japaneseText":"お気に入りセット",
+ "japaneseFontType":0,
+ "englishUsText":"Save Favorite Set",
+ "englishUsFontType":0,
+ "chineseTText":"中意套組",
+ "chineseTFontType":1,
+ "koreanText":"즐겨찾기 세트",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_mydon_favorite_add",
+ "japaneseText":"今の「きせかえ」「いろ」を「お気に入りセット」として\n登録したり、着せ替えたりできます",
+ "japaneseFontType":0,
+ "englishUsText":"Save or load favorite for current costume and color.",
+ "englishUsFontType":0,
+ "chineseTText":"可以將目前的「換裝配件」「顏色」\n登錄為「中意套組」,或是進行換裝",
+ "chineseTFontType":1,
+ "koreanText":"착용 중인 「의상」 「색」을 「즐겨찾기 세트」에 등록하거나,\n등록한 의상으로 갈아입을 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_mydon_supple1",
+ "japaneseText":"※ぷちキャラときぐるみは同時にきせかえできないものがあります",
+ "japaneseFontType":0,
+ "englishUsText":"※Some Petit Character and Kigurumi may not be set together.",
+ "englishUsFontType":0,
+ "chineseTText":"※部分迷你角色及布偶裝無法同時換裝",
+ "chineseTFontType":1,
+ "koreanText":"※꼬마 캐릭터와 인형 옷 중엔 동시에 입을 수 없는 것이 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_mydon_supple2",
+ "japaneseText":"※きせかえによっては「いろ」が反映されないものがあります",
+ "japaneseFontType":0,
+ "englishUsText":"※Some Color may not be reflected.",
+ "englishUsFontType":0,
+ "chineseTText":"※部分換裝配件無法套用「顏色」",
+ "chineseTFontType":1,
+ "koreanText":"※일부 의상 중엔 「색」이 반영되지 않는 것이 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_mydon_title",
+ "japaneseText":"マイどん",
+ "japaneseFontType":0,
+ "englishUsText":"My DON",
+ "englishUsFontType":0,
+ "chineseTText":"我的咚",
+ "chineseTFontType":1,
+ "koreanText":"마이 동",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_question",
+ "japaneseText":"プレイヤーを選ぶ",
+ "japaneseFontType":0,
+ "englishUsText":"Select player",
+ "englishUsFontType":0,
+ "chineseTText":"選擇玩家",
+ "chineseTFontType":1,
+ "koreanText":"플레이어 선택",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_question_add_txt",
+ "japaneseText":"カスタマイズするプレイヤーを選んでください",
+ "japaneseFontType":0,
+ "englishUsText":"Select player to customise",
+ "englishUsFontType":0,
+ "chineseTText":"請選擇欲自訂的玩家",
+ "chineseTFontType":1,
+ "koreanText":"커스터마이즈할 플레이어를 선택해 주십시오",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_select_greeting",
+ "japaneseText":"フレンドやライバルに向けた、あいさつを設定できます",
+ "japaneseFontType":0,
+ "englishUsText":"Set greetings for friends or rivals.",
+ "englishUsFontType":0,
+ "chineseTText":"設定針對好友或對手的寒暄",
+ "chineseTFontType":1,
+ "koreanText":"프렌드나 라이벌에게 전하는 인사말을 설정할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_select_mydon",
+ "japaneseText":"どんちゃんの「きせかえ」や「ぷちキャラ」を設定できます",
+ "japaneseFontType":0,
+ "englishUsText":"Set DON-chan customisation or Petit Character.",
+ "englishUsFontType":0,
+ "chineseTText":"設定小咚的「換裝配件」及「迷你角色」",
+ "chineseTFontType":1,
+ "koreanText":"동이의 「의상」이나 「꼬마 캐릭터」를 설정할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_select_shougou",
+ "japaneseText":"プレイヤーの称号を設定できます",
+ "japaneseFontType":0,
+ "englishUsText":"Set player titles",
+ "englishUsFontType":0,
+ "chineseTText":"設定玩家的稱號",
+ "chineseTFontType":1,
+ "koreanText":"플레이어의 칭호를 설정할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_syougou_detail",
+ "japaneseText":"楽曲\n「%s」\nミッションビンゴコンプリート",
+ "japaneseFontType":0,
+ "englishUsText":"Song\n『%s』\nMission BINGO completed",
+ "englishUsFontType":0,
+ "chineseTText":"樂曲\n「%s」\n完成任務賓果",
+ "chineseTFontType":1,
+ "koreanText":"곡\n『%s』\n미션 빙고 컴플리트",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_syougou_detail_word",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_syougou_list",
+ "japaneseText":"称号リスト",
+ "japaneseFontType":0,
+ "englishUsText":"Title List",
+ "englishUsFontType":0,
+ "chineseTText":"稱號列表",
+ "chineseTFontType":1,
+ "koreanText":"칭호 리스트",
+ "koreanFontType":2
+ },
+ {
+ "key":"customize_title",
+ "japaneseText":"カスタマイズルーム ",
+ "japaneseFontType":0,
+ "englishUsText":"Customize Room",
+ "englishUsFontType":0,
+ "chineseTText":"自訂房間",
+ "chineseTFontType":1,
+ "koreanText":"커스터마이즈 룸",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_10zikizu",
+ "japaneseText":"十字傷の男",
+ "japaneseFontType":0,
+ "englishUsText":"Cross Scarred Man",
+ "englishUsFontType":0,
+ "chineseTText":"十字傷疤的男人",
+ "chineseTFontType":1,
+ "koreanText":"십자 흉터",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_akabeko",
+ "japaneseText":"あかべこ",
+ "japaneseFontType":0,
+ "englishUsText":"Akabeko Doll",
+ "englishUsFontType":0,
+ "chineseTText":"紅牛",
+ "chineseTFontType":1,
+ "koreanText":"빨간 소 장식",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_akazukin",
+ "japaneseText":"赤ずきん",
+ "japaneseFontType":0,
+ "englishUsText":"Little Red Riding Hood",
+ "englishUsFontType":0,
+ "chineseTText":"小紅帽",
+ "chineseTFontType":1,
+ "koreanText":"빨간 망토",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_alpaka",
+ "japaneseText":"アルパカ",
+ "japaneseFontType":0,
+ "englishUsText":"Alpaca",
+ "englishUsFontType":0,
+ "chineseTText":"羊駝",
+ "chineseTFontType":1,
+ "koreanText":"알파카",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_anime",
+ "japaneseText":"アニ目",
+ "japaneseFontType":0,
+ "englishUsText":"Anime Eyes",
+ "englishUsFontType":0,
+ "chineseTText":"卡通動畫眼睛",
+ "chineseTFontType":1,
+ "koreanText":"애니메이션 눈",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_arashi",
+ "japaneseText":"アラシ",
+ "japaneseFontType":0,
+ "englishUsText":"Tempest",
+ "englishUsFontType":0,
+ "chineseTText":"風暴",
+ "chineseTFontType":1,
+ "koreanText":"아라시",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_bigribbon",
+ "japaneseText":"ビッグリボン",
+ "japaneseFontType":0,
+ "englishUsText":"Big Ribbon",
+ "englishUsFontType":0,
+ "chineseTText":"大緞帶",
+ "chineseTFontType":1,
+ "koreanText":"큰 리본",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_blind",
+ "japaneseText":"目かくし",
+ "japaneseFontType":0,
+ "englishUsText":"Blindfold",
+ "englishUsFontType":0,
+ "chineseTText":"遮眼線",
+ "chineseTFontType":1,
+ "koreanText":"모자이크",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_block",
+ "japaneseText":"ブロック",
+ "japaneseFontType":0,
+ "englishUsText":"Block",
+ "englishUsFontType":0,
+ "chineseTText":"積木",
+ "chineseTFontType":1,
+ "koreanText":"블록",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_bulldog",
+ "japaneseText":"ブルドッグ",
+ "japaneseFontType":0,
+ "englishUsText":"Bulldog",
+ "englishUsFontType":0,
+ "chineseTText":"鬥牛犬",
+ "chineseTFontType":1,
+ "koreanText":"불독",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_camera",
+ "japaneseText":"カメラ",
+ "japaneseFontType":0,
+ "englishUsText":"Camera",
+ "englishUsFontType":0,
+ "chineseTText":"相機",
+ "chineseTFontType":1,
+ "koreanText":"카메라",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_catmake",
+ "japaneseText":"ねこ顔",
+ "japaneseFontType":0,
+ "englishUsText":"Cat Face",
+ "englishUsFontType":0,
+ "chineseTText":"貓臉",
+ "chineseTFontType":1,
+ "koreanText":"고양이 얼굴",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_celeb",
+ "japaneseText":"セレブメガネ",
+ "japaneseFontType":0,
+ "englishUsText":"Celebrity Glasses",
+ "englishUsFontType":0,
+ "chineseTText":"名流眼鏡",
+ "chineseTFontType":1,
+ "koreanText":"고급 안경",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_cheese",
+ "japaneseText":"チーズバーガー",
+ "japaneseFontType":0,
+ "englishUsText":"Cheeseburger",
+ "englishUsFontType":0,
+ "chineseTText":"起士漢堡",
+ "chineseTFontType":1,
+ "koreanText":"치즈버거",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_chibidon",
+ "japaneseText":"ちびどんレインボー",
+ "japaneseFontType":0,
+ "englishUsText":"Rainbow Mini DON",
+ "englishUsFontType":0,
+ "chineseTText":"小小咚彩虹",
+ "chineseTFontType":1,
+ "koreanText":"무지개 꼬마 동",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_chili",
+ "japaneseText":"チリチリロープ",
+ "japaneseFontType":0,
+ "englishUsText":"Belled Rope",
+ "englishUsFontType":0,
+ "chineseTText":"繫鈴繩",
+ "chineseTFontType":1,
+ "koreanText":"딸랑딸랑 로프",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_chochin",
+ "japaneseText":"ちょうちんうなぎ",
+ "japaneseFontType":0,
+ "englishUsText":"Unagi",
+ "englishUsFontType":0,
+ "chineseTText":"提燈鰻",
+ "chineseTFontType":1,
+ "koreanText":"초롱 장어",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_choucho",
+ "japaneseText":"ちょうちょ",
+ "japaneseFontType":0,
+ "englishUsText":"Butterfly",
+ "englishUsFontType":0,
+ "chineseTText":"蝴蝶",
+ "chineseTFontType":1,
+ "koreanText":"나비",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_chu",
+ "japaneseText":"チュウ",
+ "japaneseFontType":0,
+ "englishUsText":"Kiss",
+ "englishUsFontType":0,
+ "chineseTText":"啾",
+ "chineseTFontType":1,
+ "koreanText":"입술",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_cosmo",
+ "japaneseText":"宇宙服",
+ "japaneseFontType":0,
+ "englishUsText":"Astronaut's Suit",
+ "englishUsFontType":0,
+ "chineseTText":"太空服",
+ "chineseTFontType":1,
+ "koreanText":"우주복",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_dai3nome",
+ "japaneseText":"第三の目",
+ "japaneseFontType":0,
+ "englishUsText":"Third Eye",
+ "englishUsFontType":0,
+ "chineseTText":"第三之眼",
+ "chineseTFontType":1,
+ "koreanText":"제3의 눈",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_daitensi",
+ "japaneseText":"白の覚醒",
+ "japaneseFontType":0,
+ "englishUsText":"White Enlightenment",
+ "englishUsFontType":0,
+ "chineseTText":"白之覺醒",
+ "chineseTFontType":1,
+ "koreanText":"하얀 각성",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_danbo",
+ "japaneseText":"ダンボール",
+ "japaneseFontType":0,
+ "englishUsText":"Cardboard",
+ "englishUsFontType":0,
+ "chineseTText":"紙箱",
+ "chineseTFontType":1,
+ "koreanText":"골판지",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_denchu",
+ "japaneseText":"電柱",
+ "japaneseFontType":0,
+ "englishUsText":"Light Pole",
+ "englishUsFontType":0,
+ "chineseTText":"電線桿",
+ "chineseTFontType":1,
+ "koreanText":"전봇대",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_densha",
+ "japaneseText":"でんしゃ",
+ "japaneseFontType":0,
+ "englishUsText":"Train",
+ "englishUsFontType":0,
+ "chineseTText":"電車",
+ "chineseTFontType":1,
+ "koreanText":"전철",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_devil",
+ "japaneseText":"デビル",
+ "japaneseFontType":0,
+ "englishUsText":"Devil",
+ "englishUsFontType":0,
+ "chineseTText":"惡魔",
+ "chineseTFontType":1,
+ "koreanText":"데빌",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_dk",
+ "japaneseText":"男子高校生に人気",
+ "japaneseFontType":0,
+ "englishUsText":"DK Popularity",
+ "englishUsFontType":0,
+ "chineseTText":"受男高中生歡迎",
+ "chineseTFontType":1,
+ "koreanText":"남고생에게 인기 만점",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_doctor",
+ "japaneseText":"お医者さん",
+ "japaneseFontType":0,
+ "englishUsText":"Doctor",
+ "englishUsFontType":0,
+ "chineseTText":"醫生",
+ "chineseTFontType":1,
+ "koreanText":"의사 선생님",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_dododo",
+ "japaneseText":"ドドドド",
+ "japaneseFontType":0,
+ "englishUsText":"DoDoDoDo",
+ "englishUsFontType":0,
+ "chineseTText":"咚咚咚咚",
+ "chineseTFontType":1,
+ "koreanText":"도도도도",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_doguu",
+ "japaneseText":"どぐう",
+ "japaneseFontType":0,
+ "englishUsText":"Clay Doll",
+ "englishUsFontType":0,
+ "chineseTText":"土偶",
+ "chineseTFontType":1,
+ "koreanText":"토우",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_donyan",
+ "japaneseText":"どんニャン",
+ "japaneseFontType":0,
+ "englishUsText":"DON-Cat",
+ "englishUsFontType":0,
+ "chineseTText":"咚喵",
+ "chineseTFontType":1,
+ "koreanText":"동 냥",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_drill",
+ "japaneseText":"ドリル",
+ "japaneseFontType":0,
+ "englishUsText":"Drill",
+ "englishUsFontType":0,
+ "chineseTText":"鑽頭",
+ "chineseTFontType":1,
+ "koreanText":"드릴",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_drum",
+ "japaneseText":"ドラムセット",
+ "japaneseFontType":0,
+ "englishUsText":"Drum Set",
+ "englishUsFontType":0,
+ "chineseTText":"爵士鼓",
+ "chineseTFontType":1,
+ "koreanText":"드럼 세트",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_electric",
+ "japaneseText":"エレキギター",
+ "japaneseFontType":0,
+ "englishUsText":"Electric Guitar",
+ "englishUsFontType":0,
+ "chineseTText":"電吉他",
+ "chineseTFontType":1,
+ "koreanText":"일렉기타",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_extu",
+ "japaneseText":"えっ?!",
+ "japaneseFontType":0,
+ "englishUsText":"Huh?!",
+ "englishUsFontType":0,
+ "chineseTText":"咦?!",
+ "chineseTFontType":1,
+ "koreanText":"어라?!",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_fang",
+ "japaneseText":"キバ",
+ "japaneseFontType":0,
+ "englishUsText":"Fang",
+ "englishUsFontType":0,
+ "chineseTText":"牙",
+ "chineseTFontType":1,
+ "koreanText":"송곳니",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_flanken",
+ "japaneseText":"フランケン",
+ "japaneseFontType":0,
+ "englishUsText":"Franken",
+ "englishUsFontType":0,
+ "chineseTText":"科學怪人",
+ "chineseTFontType":1,
+ "koreanText":"프랑켄슈타인",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_fox",
+ "japaneseText":"お面小僧きつね",
+ "japaneseFontType":0,
+ "englishUsText":"Kabuki Kids (Fox)",
+ "englishUsFontType":0,
+ "chineseTText":"面具小僧狐狸",
+ "chineseTFontType":1,
+ "koreanText":"가면 도령 “키츠네”",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_fullmake",
+ "japaneseText":"フルメイク",
+ "japaneseFontType":0,
+ "englishUsText":"Full Makeup",
+ "englishUsFontType":0,
+ "chineseTText":"全妝",
+ "chineseTFontType":1,
+ "koreanText":"풀 메이크업",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_gakki",
+ "japaneseText":"ハーモニカ",
+ "japaneseFontType":0,
+ "englishUsText":"Harmonica",
+ "englishUsFontType":0,
+ "chineseTText":"口琴",
+ "chineseTFontType":1,
+ "koreanText":"하모니카",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_gakuran",
+ "japaneseText":"学生服",
+ "japaneseFontType":0,
+ "englishUsText":"School Uniform",
+ "englishUsFontType":0,
+ "chineseTText":"學生服",
+ "chineseTFontType":1,
+ "koreanText":"교복",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_gantai",
+ "japaneseText":"眼帯",
+ "japaneseFontType":0,
+ "englishUsText":"Eyepatch",
+ "englishUsFontType":0,
+ "chineseTText":"單眼罩",
+ "chineseTFontType":1,
+ "koreanText":"안대",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_gesso",
+ "japaneseText":"ゲッソリ",
+ "japaneseFontType":0,
+ "englishUsText":"Tired Look",
+ "englishUsFontType":0,
+ "chineseTText":"面容憔悴",
+ "chineseTFontType":1,
+ "koreanText":"추욱",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_gira",
+ "japaneseText":"ギラギラ",
+ "japaneseFontType":0,
+ "englishUsText":"Bloodshot Eyes",
+ "englishUsFontType":0,
+ "chineseTText":"目露兇光",
+ "chineseTFontType":1,
+ "koreanText":"이글이글",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_goldunch",
+ "japaneseText":"金の運",
+ "japaneseFontType":0,
+ "englishUsText":"Lucky Gold",
+ "englishUsFontType":0,
+ "chineseTText":"好運當頭",
+ "chineseTFontType":1,
+ "koreanText":"금전운",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_gouka",
+ "japaneseText":"豪華な太鼓(柄付)",
+ "japaneseFontType":0,
+ "englishUsText":"Decorated Deluxe Taiko",
+ "englishUsFontType":0,
+ "chineseTText":"豪華太鼓(附握柄)",
+ "chineseTFontType":1,
+ "koreanText":"화려한 태고",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_guruguru",
+ "japaneseText":"ぐるぐるほっぺ",
+ "japaneseFontType":0,
+ "englishUsText":"Spiral Cheeks",
+ "englishUsFontType":0,
+ "chineseTText":"圓圈圈臉頰",
+ "chineseTFontType":1,
+ "koreanText":"빙글빙글 뺨",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_hakase",
+ "japaneseText":"きょうじゅ",
+ "japaneseFontType":0,
+ "englishUsText":"Professor",
+ "englishUsFontType":0,
+ "chineseTText":"教授",
+ "chineseTFontType":1,
+ "koreanText":"교수",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_hamster",
+ "japaneseText":"ハムスター",
+ "japaneseFontType":0,
+ "englishUsText":"Hamster",
+ "englishUsFontType":0,
+ "chineseTText":"倉鼠",
+ "chineseTFontType":1,
+ "koreanText":"햄스터",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_hanakazari",
+ "japaneseText":"はなかざり",
+ "japaneseFontType":0,
+ "englishUsText":"Floral Decoration",
+ "englishUsFontType":0,
+ "chineseTText":"花飾",
+ "chineseTFontType":1,
+ "koreanText":"꽃장식",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_harajuku",
+ "japaneseText":"ハラジュク",
+ "japaneseFontType":0,
+ "englishUsText":"Harajuku",
+ "englishUsFontType":0,
+ "chineseTText":"原宿",
+ "chineseTFontType":1,
+ "koreanText":"하라주쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_hatake",
+ "japaneseText":"はたけしごと",
+ "japaneseFontType":0,
+ "englishUsText":"Farmer",
+ "englishUsFontType":0,
+ "chineseTText":"農務",
+ "chineseTFontType":1,
+ "koreanText":"농부",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_headphone",
+ "japaneseText":"ヘッドフォン",
+ "japaneseFontType":0,
+ "englishUsText":"Headphone",
+ "englishUsFontType":0,
+ "chineseTText":"頭戴式耳機",
+ "chineseTFontType":1,
+ "koreanText":"헤드폰",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_hearcheek",
+ "japaneseText":"ハートのほっぺ",
+ "japaneseFontType":0,
+ "englishUsText":"Heart Cheeks",
+ "englishUsFontType":0,
+ "chineseTText":"愛心臉頰",
+ "chineseTFontType":1,
+ "koreanText":"하트 뺨",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_heart",
+ "japaneseText":"ハート",
+ "japaneseFontType":0,
+ "englishUsText":"Heart",
+ "englishUsFontType":0,
+ "chineseTText":"愛心",
+ "chineseTFontType":1,
+ "koreanText":"하트",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_heartgnt",
+ "japaneseText":"ハート眼帯",
+ "japaneseFontType":0,
+ "englishUsText":"Heart Eyepatch",
+ "englishUsFontType":0,
+ "chineseTText":"愛心單眼罩",
+ "chineseTFontType":1,
+ "koreanText":"하트 안대",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_heartmake",
+ "japaneseText":"ジョーカー",
+ "japaneseFontType":0,
+ "englishUsText":"Joker",
+ "englishUsFontType":0,
+ "chineseTText":"小丑",
+ "chineseTFontType":1,
+ "koreanText":"조커",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_heavymt",
+ "japaneseText":"ヘビメタ",
+ "japaneseFontType":0,
+ "englishUsText":"Heavy Metal",
+ "englishUsFontType":0,
+ "chineseTText":"重金屬",
+ "chineseTFontType":1,
+ "koreanText":"헤비메탈",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_helico",
+ "japaneseText":"ヘリコプター",
+ "japaneseFontType":0,
+ "englishUsText":"Helicopter",
+ "englishUsFontType":0,
+ "chineseTText":"直昇機",
+ "chineseTFontType":1,
+ "koreanText":"헬리콥터",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_himegal",
+ "japaneseText":"姫ギャル",
+ "japaneseFontType":0,
+ "englishUsText":"Hime Gyaru",
+ "englishUsFontType":0,
+ "chineseTText":"公主辣妹",
+ "chineseTFontType":1,
+ "koreanText":"히메 갸루",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_hirameki",
+ "japaneseText":"ひらめき",
+ "japaneseFontType":0,
+ "englishUsText":"Inspiration",
+ "englishUsFontType":0,
+ "chineseTText":"靈光一閃",
+ "chineseTFontType":1,
+ "koreanText":"번뜩임",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_holstein",
+ "japaneseText":"ホルスタイン",
+ "japaneseFontType":0,
+ "englishUsText":"Holstein",
+ "englishUsFontType":0,
+ "chineseTText":"荷蘭乳牛",
+ "chineseTFontType":1,
+ "koreanText":"홀스타인",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_housaku",
+ "japaneseText":"豊作",
+ "japaneseFontType":0,
+ "englishUsText":"Harvest",
+ "englishUsFontType":0,
+ "chineseTText":"豐收",
+ "chineseTFontType":1,
+ "koreanText":"풍작",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_houseki",
+ "japaneseText":"ほうせき",
+ "japaneseFontType":0,
+ "englishUsText":"Gem",
+ "englishUsFontType":0,
+ "chineseTText":"寶石",
+ "chineseTFontType":1,
+ "koreanText":"보석",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_huga",
+ "japaneseText":"フウガ",
+ "japaneseFontType":0,
+ "englishUsText":"Fuga",
+ "englishUsFontType":0,
+ "chineseTText":"風牙",
+ "chineseTFontType":1,
+ "koreanText":"후우가",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_hukidasi",
+ "japaneseText":"ふきだし",
+ "japaneseFontType":0,
+ "englishUsText":"Balloon",
+ "englishUsFontType":0,
+ "chineseTText":"對話框",
+ "chineseTFontType":1,
+ "koreanText":"말풍선",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_hukumake",
+ "japaneseText":"かぶきレスラー",
+ "japaneseFontType":0,
+ "englishUsText":"Kabuki Wrestler",
+ "englishUsFontType":0,
+ "chineseTText":"歌舞伎摔角手",
+ "chineseTFontType":1,
+ "koreanText":"가부키 레슬러",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_hukumen",
+ "japaneseText":"ふくめん",
+ "japaneseFontType":0,
+ "englishUsText":"Mask",
+ "englishUsFontType":0,
+ "chineseTText":"面罩",
+ "chineseTFontType":1,
+ "koreanText":"복면",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_hyotto",
+ "japaneseText":"お面小僧ひょっとこ",
+ "japaneseFontType":0,
+ "englishUsText":"Kabuki Kids (Clown)",
+ "englishUsFontType":0,
+ "chineseTText":"面具小僧醜男",
+ "chineseTFontType":1,
+ "koreanText":"가면 도령 “횻토코”",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_ikari",
+ "japaneseText":"怒り",
+ "japaneseFontType":0,
+ "englishUsText":"Angry Face",
+ "englishUsFontType":0,
+ "chineseTText":"憤怒",
+ "chineseTFontType":1,
+ "koreanText":"분노",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_ikemen",
+ "japaneseText":"イケメンヘアー(銀)",
+ "japaneseFontType":0,
+ "englishUsText":"Cool Hair (Silver)",
+ "englishUsFontType":0,
+ "chineseTText":"美男子髮型(銀)",
+ "chineseTFontType":1,
+ "koreanText":"멋쟁이 헤어 (은색)",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_ikesun",
+ "japaneseText":"イケイケサングラス",
+ "japaneseFontType":0,
+ "englishUsText":"Trendy Sunglasses",
+ "englishUsFontType":0,
+ "chineseTText":"煞氣墨鏡",
+ "chineseTFontType":1,
+ "koreanText":"멋쟁이 선글라스",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_illusion",
+ "japaneseText":"イリュージョン",
+ "japaneseFontType":0,
+ "englishUsText":"Illusion",
+ "englishUsFontType":0,
+ "chineseTText":"幻影",
+ "chineseTFontType":1,
+ "koreanText":"일루전",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_intelimake",
+ "japaneseText":"インテリめがね",
+ "japaneseFontType":0,
+ "englishUsText":"Intelligent Glasses",
+ "englishUsFontType":0,
+ "chineseTText":"知識眼鏡",
+ "chineseTFontType":1,
+ "koreanText":"인텔리 안경",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_iwa",
+ "japaneseText":"いわ",
+ "japaneseFontType":0,
+ "englishUsText":"Rock",
+ "englishUsFontType":0,
+ "chineseTText":"岩石",
+ "chineseTFontType":1,
+ "koreanText":"바위",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_jk",
+ "japaneseText":"JKに大人気",
+ "japaneseFontType":0,
+ "englishUsText":"Huge JK Popularity",
+ "englishUsFontType":0,
+ "chineseTText":"大受女高中生歡迎",
+ "chineseTFontType":1,
+ "koreanText":"여고생에게 인기 만점",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_jungle",
+ "japaneseText":"ジャングル",
+ "japaneseFontType":0,
+ "englishUsText":"Jungle",
+ "englishUsFontType":0,
+ "chineseTText":"叢林",
+ "chineseTFontType":1,
+ "koreanText":"정글",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_kaba",
+ "japaneseText":"かば",
+ "japaneseFontType":0,
+ "englishUsText":"Hippopotamus",
+ "englishUsFontType":0,
+ "chineseTText":"河馬",
+ "chineseTFontType":1,
+ "koreanText":"하마",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_kabuto",
+ "japaneseText":"かぶとむし",
+ "japaneseFontType":0,
+ "englishUsText":"Dynastinae",
+ "englishUsFontType":0,
+ "chineseTText":"獨角仙",
+ "chineseTFontType":1,
+ "koreanText":"장수풍뎅이",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_kagemu",
+ "japaneseText":"落武者めいく",
+ "japaneseFontType":0,
+ "englishUsText":"Fallen Warrior Makeup",
+ "englishUsFontType":0,
+ "chineseTText":"落難武士妝",
+ "chineseTFontType":1,
+ "koreanText":"패잔병 화장",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_kaizoku",
+ "japaneseText":"かいぞくせん",
+ "japaneseFontType":0,
+ "englishUsText":"Pirate Ship",
+ "englishUsFontType":0,
+ "chineseTText":"海盜船",
+ "chineseTFontType":1,
+ "koreanText":"해적선",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_kajiki",
+ "japaneseText":"かじきまぐろ",
+ "japaneseFontType":0,
+ "englishUsText":"Marlin",
+ "englishUsFontType":0,
+ "chineseTText":"旗魚",
+ "chineseTFontType":1,
+ "koreanText":"청새치",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_kame",
+ "japaneseText":"カメ",
+ "japaneseFontType":0,
+ "englishUsText":"Tortoise",
+ "englishUsFontType":0,
+ "chineseTText":"烏龜",
+ "chineseTFontType":1,
+ "koreanText":"거북이",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_kaminari",
+ "japaneseText":"カミナリ様",
+ "japaneseFontType":0,
+ "englishUsText":"Thunder Taiko",
+ "englishUsFontType":0,
+ "chineseTText":"雷神大人",
+ "chineseTFontType":1,
+ "koreanText":"뇌신",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_kani",
+ "japaneseText":"カニ",
+ "japaneseFontType":0,
+ "englishUsText":"Crab",
+ "englishUsFontType":0,
+ "chineseTText":"螃蟹",
+ "chineseTFontType":1,
+ "koreanText":"게",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_kaseki",
+ "japaneseText":"かせき",
+ "japaneseFontType":0,
+ "englishUsText":"Fossil",
+ "englishUsFontType":0,
+ "chineseTText":"化石",
+ "chineseTFontType":1,
+ "koreanText":"화석",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_katatu",
+ "japaneseText":"かたつむり",
+ "japaneseFontType":0,
+ "englishUsText":"Snail",
+ "englishUsFontType":0,
+ "chineseTText":"蝸牛",
+ "chineseTFontType":1,
+ "koreanText":"달팽이",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_kaxtu",
+ "japaneseText":"カッ!!",
+ "japaneseFontType":0,
+ "englishUsText":"Got it!",
+ "englishUsFontType":0,
+ "chineseTText":"咔!!",
+ "chineseTFontType":1,
+ "koreanText":"알았어!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_killereye",
+ "japaneseText":"キラ目",
+ "japaneseFontType":0,
+ "englishUsText":"Sparkling Eyes",
+ "englishUsFontType":0,
+ "chineseTText":"閃耀眼睛",
+ "chineseTFontType":1,
+ "koreanText":"반짝반짝 눈",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_kingyo",
+ "japaneseText":"金魚ねぶた",
+ "japaneseFontType":0,
+ "englishUsText":"Goldfish Mask",
+ "englishUsFontType":0,
+ "chineseTText":"金魚面具",
+ "chineseTFontType":1,
+ "koreanText":"금붕어 등불",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_kinoko",
+ "japaneseText":"きのこ",
+ "japaneseFontType":0,
+ "englishUsText":"Mushroom",
+ "englishUsFontType":0,
+ "chineseTText":"蘑菇",
+ "chineseTFontType":1,
+ "koreanText":"버섯",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_kintaro",
+ "japaneseText":"金太郎あめ",
+ "japaneseFontType":0,
+ "englishUsText":"Kintaro Candy",
+ "englishUsFontType":0,
+ "chineseTText":"金太郎糖",
+ "chineseTFontType":1,
+ "koreanText":"킨타로 사탕",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_kiran",
+ "japaneseText":"キラーン",
+ "japaneseFontType":0,
+ "englishUsText":"Inspired Eyes",
+ "englishUsFontType":0,
+ "chineseTText":"閃亮~",
+ "chineseTFontType":1,
+ "koreanText":"번쩍~",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_kirikabu",
+ "japaneseText":"きりかぶ",
+ "japaneseFontType":0,
+ "englishUsText":"Stump",
+ "englishUsFontType":0,
+ "chineseTText":"樹墩",
+ "chineseTFontType":1,
+ "koreanText":"그루터기",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_koino",
+ "japaneseText":"こいのぼり",
+ "japaneseFontType":0,
+ "englishUsText":"Carp Banner",
+ "englishUsFontType":0,
+ "chineseTText":"鯉魚旗",
+ "chineseTFontType":1,
+ "koreanText":"잉어 깃발",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_koinwo",
+ "japaneseText":"コインを入れてね!",
+ "japaneseFontType":0,
+ "englishUsText":"Money Face",
+ "englishUsFontType":0,
+ "chineseTText":"請投入代幣喔!",
+ "chineseTFontType":1,
+ "koreanText":"동전을 넣어주세요!",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_kok",
+ "japaneseText":"コックさん",
+ "japaneseFontType":0,
+ "englishUsText":"Chef",
+ "englishUsFontType":0,
+ "chineseTText":"主廚",
+ "chineseTFontType":1,
+ "koreanText":"요리사 아저씨",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_komari",
+ "japaneseText":"困りまゆ",
+ "japaneseFontType":0,
+ "englishUsText":"Troubled Eyebrows",
+ "englishUsFontType":0,
+ "chineseTText":"愁眉",
+ "chineseTFontType":1,
+ "koreanText":"곤란한데",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_koutei",
+ "japaneseText":"皇帝(三国志風)",
+ "japaneseFontType":0,
+ "englishUsText":"Emperor",
+ "englishUsFontType":0,
+ "chineseTText":"皇帝(三國志風格)",
+ "chineseTFontType":1,
+ "koreanText":"황제 (삼국지 풍)",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_kujaku",
+ "japaneseText":"くじゃく",
+ "japaneseFontType":0,
+ "englishUsText":"Peacock",
+ "englishUsFontType":0,
+ "chineseTText":"孔雀",
+ "chineseTFontType":1,
+ "koreanText":"공작",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_kumadori",
+ "japaneseText":"くまどり",
+ "japaneseFontType":0,
+ "englishUsText":"Kabuki Makeup",
+ "englishUsFontType":0,
+ "chineseTText":"歌舞伎妝",
+ "chineseTFontType":1,
+ "koreanText":"가부키",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_kunkun",
+ "japaneseText":"クンクン",
+ "japaneseFontType":0,
+ "englishUsText":"Sniffing Nose",
+ "englishUsFontType":0,
+ "chineseTText":"嗅嗅",
+ "chineseTFontType":1,
+ "koreanText":"킁킁",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_kyouryu",
+ "japaneseText":"ティラノサウルス",
+ "japaneseFontType":0,
+ "englishUsText":"Tyrannosaurus",
+ "englishUsFontType":0,
+ "chineseTText":"暴龍",
+ "chineseTFontType":1,
+ "koreanText":"티라노사우루스",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_lion",
+ "japaneseText":"らいおん",
+ "japaneseFontType":0,
+ "englishUsText":"Lion",
+ "englishUsFontType":0,
+ "chineseTText":"獅子",
+ "chineseTFontType":1,
+ "koreanText":"라이온",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_mahou",
+ "japaneseText":"まほうつかい",
+ "japaneseFontType":0,
+ "englishUsText":"Magician",
+ "englishUsFontType":0,
+ "chineseTText":"魔法師",
+ "chineseTFontType":1,
+ "koreanText":"마법사",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_maid",
+ "japaneseText":"メイドさん(黒)",
+ "japaneseFontType":0,
+ "englishUsText":"Maid (Black)",
+ "englishUsFontType":0,
+ "chineseTText":"女僕(黑)",
+ "chineseTFontType":1,
+ "koreanText":"메이드 (검정)",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_manga",
+ "japaneseText":"マンガ目",
+ "japaneseFontType":0,
+ "englishUsText":"Manga Eye",
+ "englishUsFontType":0,
+ "chineseTText":"漫畫眼睛",
+ "chineseTFontType":1,
+ "koreanText":"만화 눈",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_manma",
+ "japaneseText":"まんまるひげ",
+ "japaneseFontType":0,
+ "englishUsText":"Round Beard",
+ "englishUsFontType":0,
+ "chineseTText":"圓鬍子",
+ "chineseTFontType":1,
+ "koreanText":"덥수룩 수염",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_maou",
+ "japaneseText":"マオウ",
+ "japaneseFontType":0,
+ "englishUsText":"MAOH",
+ "englishUsFontType":0,
+ "chineseTText":"魔王",
+ "chineseTFontType":1,
+ "koreanText":"마오우",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_maromayu",
+ "japaneseText":"マロまゆげ",
+ "japaneseFontType":0,
+ "englishUsText":"Thin Eyelashes",
+ "englishUsFontType":0,
+ "chineseTText":"麻呂眉",
+ "chineseTFontType":1,
+ "koreanText":"동글 눈썹",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_marubatu",
+ "japaneseText":"○×",
+ "japaneseFontType":0,
+ "englishUsText":"Doodle Makeup",
+ "englishUsFontType":0,
+ "chineseTText":"○×",
+ "chineseTFontType":1,
+ "koreanText":"○×",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_mask",
+ "japaneseText":"マスク",
+ "japaneseFontType":0,
+ "englishUsText":"Mask",
+ "englishUsFontType":0,
+ "chineseTText":"口罩",
+ "chineseTFontType":1,
+ "koreanText":"마스크",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_mato",
+ "japaneseText":"的",
+ "japaneseFontType":0,
+ "englishUsText":"Target",
+ "englishUsFontType":0,
+ "chineseTText":"標靶",
+ "chineseTFontType":1,
+ "koreanText":"표적",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_matuge",
+ "japaneseText":"まつげ",
+ "japaneseFontType":0,
+ "englishUsText":"Eyelashes",
+ "englishUsFontType":0,
+ "chineseTText":"睫毛",
+ "chineseTFontType":1,
+ "koreanText":"속눈썹",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_meat",
+ "japaneseText":"肉",
+ "japaneseFontType":0,
+ "englishUsText":"Meat",
+ "englishUsFontType":0,
+ "chineseTText":"肉",
+ "chineseTFontType":1,
+ "koreanText":"고기",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_mecha",
+ "japaneseText":"メカドン",
+ "japaneseFontType":0,
+ "englishUsText":"Mecha-DON",
+ "englishUsFontType":0,
+ "chineseTText":"機器咚",
+ "chineseTFontType":1,
+ "koreanText":"메카동",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_medmake",
+ "japaneseText":"ゴーゴン",
+ "japaneseFontType":0,
+ "englishUsText":"Gorgon",
+ "englishUsFontType":0,
+ "chineseTText":"戈爾貢",
+ "chineseTFontType":1,
+ "koreanText":"고르곤",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_medusa",
+ "japaneseText":"メデューサ",
+ "japaneseFontType":0,
+ "englishUsText":"Medusa",
+ "englishUsFontType":0,
+ "chineseTText":"梅杜莎",
+ "chineseTFontType":1,
+ "koreanText":"메두사",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_mekakusi",
+ "japaneseText":"めかくし",
+ "japaneseFontType":0,
+ "englishUsText":"Blindfold",
+ "englishUsFontType":0,
+ "chineseTText":"眼罩",
+ "chineseTFontType":1,
+ "koreanText":"눈가리개",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_melomelo",
+ "japaneseText":"メロメロ",
+ "japaneseFontType":0,
+ "englishUsText":"Charmed Eyes",
+ "englishUsFontType":0,
+ "chineseTText":"如癡如醉",
+ "chineseTFontType":1,
+ "koreanText":"해롱해롱",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_metalic",
+ "japaneseText":"メタリック",
+ "japaneseFontType":0,
+ "englishUsText":"Metallic",
+ "englishUsFontType":0,
+ "chineseTText":"金屬製",
+ "chineseTFontType":1,
+ "koreanText":"메탈릭",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_mexican",
+ "japaneseText":"メキシカン",
+ "japaneseFontType":0,
+ "englishUsText":"Mexican",
+ "englishUsFontType":0,
+ "chineseTText":"墨西哥人",
+ "chineseTFontType":1,
+ "koreanText":"멕시칸",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_miira",
+ "japaneseText":"ミイラ",
+ "japaneseFontType":0,
+ "englishUsText":"Mummy",
+ "englishUsFontType":0,
+ "chineseTText":"木乃伊",
+ "chineseTFontType":1,
+ "koreanText":"미라",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_mike",
+ "japaneseText":"ミケにゃん",
+ "japaneseFontType":0,
+ "englishUsText":"Calico Cat",
+ "englishUsFontType":0,
+ "chineseTText":"三色喵",
+ "chineseTFontType":1,
+ "koreanText":"삼색 냥이",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_miken",
+ "japaneseText":"みけんにシワ",
+ "japaneseFontType":0,
+ "englishUsText":"Vinegary Face",
+ "englishUsFontType":0,
+ "chineseTText":"皺眉",
+ "chineseTFontType":1,
+ "koreanText":"미간에 주름",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_miko",
+ "japaneseText":"巫女のはかま",
+ "japaneseFontType":0,
+ "englishUsText":"Shrine Maiden's Robe",
+ "englishUsFontType":0,
+ "chineseTText":"巫女的裙褲",
+ "chineseTFontType":1,
+ "koreanText":"무녀 복장",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_miku",
+ "japaneseText":"初音ミク",
+ "japaneseFontType":0,
+ "englishUsText":"HATSUNE MIKU",
+ "englishUsFontType":0,
+ "chineseTText":"初音未來",
+ "chineseTFontType":1,
+ "koreanText":"하츠네 미쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_mirai",
+ "japaneseText":"ミライ",
+ "japaneseFontType":0,
+ "englishUsText":"Mirai",
+ "englishUsFontType":0,
+ "chineseTText":"魅雷",
+ "chineseTFontType":1,
+ "koreanText":"미라이",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_mishojo",
+ "japaneseText":"美少女のお面",
+ "japaneseFontType":0,
+ "englishUsText":"Beauty's Mask",
+ "englishUsFontType":0,
+ "chineseTText":"美少女面具",
+ "chineseTFontType":1,
+ "koreanText":"미소녀 가면",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_mitubati",
+ "japaneseText":"ミツバチ",
+ "japaneseFontType":0,
+ "englishUsText":"Honey Bee",
+ "englishUsFontType":0,
+ "chineseTText":"蜜蜂",
+ "chineseTFontType":1,
+ "koreanText":"꿀벌",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_mitudomake",
+ "japaneseText":"三つ巴",
+ "japaneseFontType":0,
+ "englishUsText":"3-Way Struggle",
+ "englishUsFontType":0,
+ "chineseTText":"三巴紋",
+ "chineseTFontType":1,
+ "koreanText":"소용돌이무늬",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_mizukabu",
+ "japaneseText":"水かぶり",
+ "japaneseFontType":0,
+ "englishUsText":"Drenched",
+ "englishUsFontType":0,
+ "chineseTText":"水灌頂",
+ "chineseTFontType":1,
+ "koreanText":"아이스 버킷",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_mizutama",
+ "japaneseText":"水玉りぼん",
+ "japaneseFontType":0,
+ "englishUsText":"Polka Dot Ribbon",
+ "englishUsFontType":0,
+ "chineseTText":"圓點緞帶",
+ "chineseTFontType":1,
+ "koreanText":"물방울 리본",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_moai",
+ "japaneseText":"モアイ",
+ "japaneseFontType":0,
+ "englishUsText":"Moai",
+ "englishUsFontType":0,
+ "chineseTText":"摩艾",
+ "chineseTFontType":1,
+ "koreanText":"모아이",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_moeru",
+ "japaneseText":"もえる目",
+ "japaneseFontType":0,
+ "englishUsText":"Motivated Eyes",
+ "englishUsFontType":0,
+ "chineseTText":"熱血眼睛",
+ "chineseTFontType":1,
+ "koreanText":"불타는 눈",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_morino",
+ "japaneseText":"森の仲間たち",
+ "japaneseFontType":0,
+ "englishUsText":"Forest Animals",
+ "englishUsFontType":0,
+ "chineseTText":"森林裡的夥伴們",
+ "chineseTFontType":1,
+ "koreanText":"숲속 친구들",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_nabe",
+ "japaneseText":"愛用のナベ",
+ "japaneseFontType":0,
+ "englishUsText":"Favorite Pot",
+ "englishUsFontType":0,
+ "chineseTText":"愛不釋手的鍋子",
+ "chineseTFontType":1,
+ "koreanText":"애용하는 냄비",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_namida",
+ "japaneseText":"涙",
+ "japaneseFontType":0,
+ "englishUsText":"Tears",
+ "englishUsFontType":0,
+ "chineseTText":"眼淚",
+ "chineseTFontType":1,
+ "koreanText":"눈물",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_nebusoku",
+ "japaneseText":"ねぶそく",
+ "japaneseFontType":0,
+ "englishUsText":"Sleepy Face",
+ "englishUsFontType":0,
+ "chineseTText":"睡眠不足",
+ "chineseTFontType":1,
+ "koreanText":"수면 부족",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_negane",
+ "japaneseText":"メガネメガネ",
+ "japaneseFontType":0,
+ "englishUsText":"Lost Glasses Eye",
+ "englishUsFontType":0,
+ "chineseTText":"我的眼鏡在哪裡",
+ "chineseTFontType":1,
+ "koreanText":"내 안경 어딨지",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_nejire",
+ "japaneseText":"ねじれまゆ",
+ "japaneseFontType":0,
+ "englishUsText":"Twisty Eyebrows",
+ "englishUsFontType":0,
+ "chineseTText":"獰眉",
+ "chineseTFontType":1,
+ "koreanText":"꼬인 눈썹",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_nekonoshu",
+ "japaneseText":"ネコの集会",
+ "japaneseFontType":0,
+ "englishUsText":"Cats' Meeting",
+ "englishUsFontType":0,
+ "chineseTText":"貓咪聚會",
+ "chineseTFontType":1,
+ "koreanText":"고양이의 집회",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_nekoshaku",
+ "japaneseText":"ネコと杓子",
+ "japaneseFontType":0,
+ "englishUsText":"Cat and Shaxy",
+ "englishUsFontType":0,
+ "chineseTText":"貓與飯匙",
+ "chineseTFontType":1,
+ "koreanText":"고양이와 주걱",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_nekotoshakusi",
+ "japaneseText":"ネコと杓子",
+ "japaneseFontType":0,
+ "englishUsText":"Cat and Shaxy",
+ "englishUsFontType":0,
+ "chineseTText":"貓與飯匙",
+ "chineseTFontType":1,
+ "koreanText":"고양이와 주걱",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_ninja",
+ "japaneseText":"にんじゃ",
+ "japaneseFontType":0,
+ "englishUsText":"Ninja",
+ "englishUsFontType":0,
+ "chineseTText":"忍者",
+ "chineseTFontType":1,
+ "koreanText":"닌자",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_nisedon",
+ "japaneseText":"ニセどん",
+ "japaneseFontType":0,
+ "englishUsText":"Fake DON",
+ "englishUsFontType":0,
+ "chineseTText":"冒牌咚",
+ "chineseTFontType":1,
+ "koreanText":"가짜 동",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_noisemake",
+ "japaneseText":"ノイズ",
+ "japaneseFontType":0,
+ "englishUsText":"Noise",
+ "englishUsFontType":0,
+ "chineseTText":"雜音",
+ "chineseTFontType":1,
+ "koreanText":"노이즈",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_nuri",
+ "japaneseText":"ペンキなう",
+ "japaneseFontType":0,
+ "englishUsText":"Painting in Progress",
+ "englishUsFontType":0,
+ "chineseTText":"塗鴉到一半",
+ "chineseTFontType":1,
+ "koreanText":"페인트칠 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_ohuro",
+ "japaneseText":"おフロセット",
+ "japaneseFontType":0,
+ "englishUsText":"Bath Set",
+ "englishUsFontType":0,
+ "chineseTText":"泡澡套組",
+ "chineseTFontType":1,
+ "koreanText":"목욕 세트",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_oiran",
+ "japaneseText":"芸者",
+ "japaneseFontType":0,
+ "englishUsText":"Geisha",
+ "englishUsFontType":0,
+ "chineseTText":"藝妓",
+ "chineseTFontType":1,
+ "koreanText":"게이샤",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_okame",
+ "japaneseText":"お面小僧おかめ",
+ "japaneseFontType":0,
+ "englishUsText":"Kabuki Kids (Plain Woman)",
+ "englishUsFontType":0,
+ "chineseTText":"面具小僧醜女",
+ "chineseTFontType":1,
+ "koreanText":"가면 도령 “오카메”",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_omaturi",
+ "japaneseText":"お祭りセット",
+ "japaneseFontType":0,
+ "englishUsText":"Festival Set",
+ "englishUsFontType":0,
+ "chineseTText":"祭典套組",
+ "chineseTFontType":1,
+ "koreanText":"축제 세트",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_omenkozo",
+ "japaneseText":"お面小僧(きつね)",
+ "japaneseFontType":0,
+ "englishUsText":"Kabuki Kids (Fox)",
+ "englishUsFontType":0,
+ "chineseTText":"面具小僧(狐狸)",
+ "chineseTFontType":1,
+ "koreanText":"가면 도령 키츠네",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_omikosi",
+ "japaneseText":"おみこし",
+ "japaneseFontType":0,
+ "englishUsText":"Portable Shrine",
+ "englishUsFontType":0,
+ "chineseTText":"神轎",
+ "chineseTFontType":1,
+ "koreanText":"가마",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_onpueye",
+ "japaneseText":"音符目",
+ "japaneseFontType":0,
+ "englishUsText":"Music Note Eyes",
+ "englishUsFontType":0,
+ "chineseTText":"音符眼睛",
+ "chineseTFontType":1,
+ "koreanText":"음표 눈",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_osumou",
+ "japaneseText":"おすもうさん",
+ "japaneseFontType":0,
+ "englishUsText":"Sumo Wrestler",
+ "englishUsFontType":0,
+ "chineseTText":"相撲",
+ "chineseTFontType":1,
+ "koreanText":"스모 선수",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_otokogi",
+ "japaneseText":"男気まゆげ",
+ "japaneseFontType":0,
+ "englishUsText":"Manly Eyebrows",
+ "englishUsFontType":0,
+ "chineseTText":"男子氣概眉毛",
+ "chineseTFontType":1,
+ "koreanText":"남자다운 눈썹",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_pajama",
+ "japaneseText":"パジャマ",
+ "japaneseFontType":0,
+ "englishUsText":"Pajamas",
+ "englishUsFontType":0,
+ "chineseTText":"睡衣",
+ "chineseTFontType":1,
+ "koreanText":"파자마",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_panda",
+ "japaneseText":"パンダ顔",
+ "japaneseFontType":0,
+ "englishUsText":"Panda Face",
+ "englishUsFontType":0,
+ "chineseTText":"熊貓臉",
+ "chineseTFontType":1,
+ "koreanText":"판다 얼굴",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_piza",
+ "japaneseText":"ピザ",
+ "japaneseFontType":0,
+ "englishUsText":"Pizza",
+ "englishUsFontType":0,
+ "chineseTText":"披薩",
+ "chineseTFontType":1,
+ "koreanText":"피자",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_polynesian",
+ "japaneseText":"ポリネシアン",
+ "japaneseFontType":0,
+ "englishUsText":"Polynesian",
+ "englishUsFontType":0,
+ "chineseTText":"玻里尼西亞人",
+ "chineseTFontType":1,
+ "koreanText":"폴리네시안",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_propela",
+ "japaneseText":"プロペラ飛行機",
+ "japaneseFontType":0,
+ "englishUsText":"Propeller Plane",
+ "englishUsFontType":0,
+ "chineseTText":"螺旋槳飛機",
+ "chineseTFontType":1,
+ "koreanText":"프로펠러 비행기",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_puchiDora",
+ "japaneseText":"ドラえもん",
+ "japaneseFontType":0,
+ "englishUsText":"DORAEMON",
+ "englishUsFontType":0,
+ "chineseTText":"哆啦A夢",
+ "chineseTFontType":1,
+ "koreanText":"도라에몽",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_puchiMiku",
+ "japaneseText":"初音ミク",
+ "japaneseFontType":0,
+ "englishUsText":"HATSUNE MIKU",
+ "englishUsFontType":0,
+ "chineseTText":"初音未來",
+ "chineseTFontType":1,
+ "koreanText":"하츠네 미쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_puchiMirai",
+ "japaneseText":"春日未来",
+ "japaneseFontType":0,
+ "englishUsText":"MIRAI KASUGA",
+ "englishUsFontType":0,
+ "chineseTText":"春日未來",
+ "chineseTFontType":1,
+ "koreanText":"카스가 미라이",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_puchiPac",
+ "japaneseText":"パックマン",
+ "japaneseFontType":0,
+ "englishUsText":"PAC-MAN",
+ "englishUsFontType":0,
+ "chineseTText":"PAC-MAN",
+ "chineseTFontType":1,
+ "koreanText":"팩맨",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_puchiUduki",
+ "japaneseText":"島村卯月",
+ "japaneseFontType":0,
+ "englishUsText":"UZUKI SHIMAMURA",
+ "englishUsFontType":0,
+ "chineseTText":"島村卯月",
+ "chineseTFontType":1,
+ "koreanText":"시마무라 우즈키",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_racecar",
+ "japaneseText":"レースカー",
+ "japaneseFontType":0,
+ "englishUsText":"Racecar",
+ "englishUsFontType":0,
+ "chineseTText":"賽車",
+ "chineseTFontType":1,
+ "koreanText":"레이스 카",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_rakuda",
+ "japaneseText":"らくだのこぶ",
+ "japaneseFontType":0,
+ "englishUsText":"Camel's Hump",
+ "englishUsFontType":0,
+ "chineseTText":"駝峰",
+ "chineseTFontType":1,
+ "koreanText":"낙타 혹",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_ralco",
+ "japaneseText":"ラルコ",
+ "japaneseFontType":0,
+ "englishUsText":"Larco",
+ "englishUsFontType":0,
+ "chineseTText":"拉爾可",
+ "chineseTFontType":1,
+ "koreanText":"라르코",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_richiman",
+ "japaneseText":"おかねもち",
+ "japaneseFontType":0,
+ "englishUsText":"Rich Man",
+ "englishUsFontType":0,
+ "chineseTText":"有錢人",
+ "chineseTFontType":1,
+ "koreanText":"부자",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_rikisi",
+ "japaneseText":"りきし",
+ "japaneseFontType":0,
+ "englishUsText":"Sumo Wrestler",
+ "englishUsFontType":0,
+ "chineseTText":"相撲選手",
+ "chineseTFontType":1,
+ "koreanText":"장사",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_ringo",
+ "japaneseText":"りんご",
+ "japaneseFontType":0,
+ "englishUsText":"Apple",
+ "englishUsFontType":0,
+ "chineseTText":"蘋果",
+ "chineseTFontType":1,
+ "koreanText":"사과",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_robo",
+ "japaneseText":"ロボ",
+ "japaneseFontType":0,
+ "englishUsText":"Robot",
+ "englishUsFontType":0,
+ "chineseTText":"機器人",
+ "chineseTFontType":1,
+ "koreanText":"로봇",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_rocket",
+ "japaneseText":"ロケット",
+ "japaneseFontType":0,
+ "englishUsText":"Rocket",
+ "englishUsFontType":0,
+ "chineseTText":"火箭",
+ "chineseTFontType":1,
+ "koreanText":"로켓",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_sakura",
+ "japaneseText":"さくらもち",
+ "japaneseFontType":0,
+ "englishUsText":"Sakura Ricecake",
+ "englishUsFontType":0,
+ "chineseTText":"櫻餅",
+ "chineseTFontType":1,
+ "koreanText":"벚꽃떡",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_same",
+ "japaneseText":"さめ",
+ "japaneseFontType":0,
+ "englishUsText":"Shark",
+ "englishUsFontType":0,
+ "chineseTText":"鯊魚",
+ "chineseTFontType":1,
+ "koreanText":"상어",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_sanbon",
+ "japaneseText":"三本ひげ",
+ "japaneseFontType":0,
+ "englishUsText":"Whiskers",
+ "englishUsFontType":0,
+ "chineseTText":"三根鬚",
+ "chineseTFontType":1,
+ "koreanText":"세 가닥 수염",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_seilor",
+ "japaneseText":"セーラー服",
+ "japaneseFontType":0,
+ "englishUsText":"Sailor Uniform",
+ "englishUsFontType":0,
+ "chineseTText":"水手服",
+ "chineseTFontType":1,
+ "koreanText":"세일러복",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_sengoku",
+ "japaneseText":"せんごくぶしょう",
+ "japaneseFontType":0,
+ "englishUsText":"Shogun",
+ "englishUsFontType":0,
+ "chineseTText":"戰國武將",
+ "chineseTFontType":1,
+ "koreanText":"전국시대 무장",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_senju",
+ "japaneseText":"せんじゅかんのん",
+ "japaneseFontType":0,
+ "englishUsText":"Avalokiteshvara",
+ "englishUsFontType":0,
+ "chineseTText":"千手觀音",
+ "chineseTFontType":1,
+ "koreanText":"천수관음",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_shiroime",
+ "japaneseText":"白い目",
+ "japaneseFontType":0,
+ "englishUsText":"Cynical Eyes",
+ "englishUsFontType":0,
+ "chineseTText":"白眼",
+ "chineseTFontType":1,
+ "koreanText":"차가운 시선",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_shock",
+ "japaneseText":"ガーン・・・",
+ "japaneseFontType":0,
+ "englishUsText":"Shocked...",
+ "englishUsFontType":0,
+ "chineseTText":"沮喪……",
+ "chineseTFontType":1,
+ "koreanText":"충격…",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_shogakuse",
+ "japaneseText":"小学生",
+ "japaneseFontType":0,
+ "englishUsText":"First Grader",
+ "englishUsFontType":0,
+ "chineseTText":"小學生",
+ "chineseTFontType":1,
+ "koreanText":"초등학생",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_siawase",
+ "japaneseText":"空の仲間たち",
+ "japaneseFontType":0,
+ "englishUsText":"Happy Birds",
+ "englishUsFontType":0,
+ "chineseTText":"天空中的夥伴們",
+ "chineseTFontType":1,
+ "koreanText":"하늘 위 친구들",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_siba",
+ "japaneseText":"シバごろう",
+ "japaneseFontType":0,
+ "englishUsText":"Shiba Inu",
+ "englishUsFontType":0,
+ "chineseTText":"柴犬",
+ "chineseTFontType":1,
+ "koreanText":"시바견",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_sirohige",
+ "japaneseText":"しろひげ",
+ "japaneseFontType":0,
+ "englishUsText":"White Beard",
+ "englishUsFontType":0,
+ "chineseTText":"白鬍子",
+ "chineseTFontType":1,
+ "koreanText":"흰 수염",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_sop",
+ "japaneseText":"ソプラノ姫",
+ "japaneseFontType":0,
+ "englishUsText":"Soprano Princess",
+ "englishUsFontType":0,
+ "chineseTText":"蘇普拉諾公主",
+ "chineseTFontType":1,
+ "koreanText":"소프라노 공주",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_sudon",
+ "japaneseText":"なし",
+ "japaneseFontType":0,
+ "englishUsText":"None",
+ "englishUsFontType":0,
+ "chineseTText":"無",
+ "chineseTFontType":1,
+ "koreanText":"없음",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_suihei",
+ "japaneseText":"水兵",
+ "japaneseFontType":0,
+ "englishUsText":"Sailor",
+ "englishUsFontType":0,
+ "chineseTText":"水手",
+ "chineseTFontType":1,
+ "koreanText":"해병",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_susi",
+ "japaneseText":"すし",
+ "japaneseFontType":0,
+ "englishUsText":"Sushi",
+ "englishUsFontType":0,
+ "chineseTText":"壽司",
+ "chineseTFontType":1,
+ "koreanText":"스시",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_suwaru",
+ "japaneseText":"すわるどん",
+ "japaneseFontType":0,
+ "englishUsText":"Sitting DON",
+ "englishUsFontType":0,
+ "chineseTText":"坐下咚",
+ "chineseTFontType":1,
+ "koreanText":"앉은동",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_sweets",
+ "japaneseText":"スイーツ",
+ "japaneseFontType":0,
+ "englishUsText":"Sweets",
+ "englishUsFontType":0,
+ "chineseTText":"甜食",
+ "chineseTFontType":1,
+ "koreanText":"간식",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_takara",
+ "japaneseText":"たからぶね",
+ "japaneseFontType":0,
+ "englishUsText":"Treasure Ship",
+ "englishUsFontType":0,
+ "chineseTText":"寶船",
+ "chineseTFontType":1,
+ "koreanText":"보물선",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_tako",
+ "japaneseText":"たこやき",
+ "japaneseFontType":0,
+ "englishUsText":"Takoyaki",
+ "englishUsFontType":0,
+ "chineseTText":"章魚燒",
+ "chineseTFontType":1,
+ "koreanText":"타코야키",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_tatu",
+ "japaneseText":"たつどし",
+ "japaneseFontType":0,
+ "englishUsText":"Year of the Dragon",
+ "englishUsFontType":0,
+ "chineseTText":"龍年",
+ "chineseTFontType":1,
+ "koreanText":"용",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_tehe",
+ "japaneseText":"てへぺろどん",
+ "japaneseFontType":0,
+ "englishUsText":"Embarrassed DON",
+ "englishUsFontType":0,
+ "chineseTText":"吐舌裝可愛咚",
+ "chineseTFontType":1,
+ "koreanText":"데헷페로 동",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_tetuo",
+ "japaneseText":"テツオ",
+ "japaneseFontType":0,
+ "englishUsText":"Tetsuo",
+ "englishUsFontType":0,
+ "chineseTText":"哲生",
+ "chineseTFontType":1,
+ "koreanText":"테츠오",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_tetuoride",
+ "japaneseText":"テツオライド",
+ "japaneseFontType":0,
+ "englishUsText":"Tetsuo Ride",
+ "englishUsFontType":0,
+ "chineseTText":"哲生騎乘",
+ "chineseTFontType":1,
+ "koreanText":"테츠오 라이더",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_thia",
+ "japaneseText":"ティア&ポポカカ",
+ "japaneseFontType":0,
+ "englishUsText":"Tia & Popokaka",
+ "englishUsFontType":0,
+ "chineseTText":"媞雅&波波卡卡",
+ "chineseTFontType":1,
+ "koreanText":"티아 & 포포카카",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_tora",
+ "japaneseText":"とら",
+ "japaneseFontType":0,
+ "englishUsText":"Tiger",
+ "englishUsFontType":0,
+ "chineseTText":"老虎",
+ "chineseTFontType":1,
+ "koreanText":"호랑이",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_torino",
+ "japaneseText":"まねきねこ",
+ "japaneseFontType":0,
+ "englishUsText":"Fortune Cat",
+ "englishUsFontType":0,
+ "chineseTText":"招財貓",
+ "chineseTFontType":1,
+ "koreanText":"마네키네코",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_truth",
+ "japaneseText":"真実の目",
+ "japaneseFontType":0,
+ "englishUsText":"True Gaze",
+ "englishUsFontType":0,
+ "chineseTText":"真實之眼",
+ "chineseTFontType":1,
+ "koreanText":"진실의 눈",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_tugihagi",
+ "japaneseText":"つぎはぎ",
+ "japaneseFontType":0,
+ "englishUsText":"Patchwork",
+ "englishUsFontType":0,
+ "chineseTText":"補丁",
+ "chineseTFontType":1,
+ "koreanText":"누더기",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_uchu",
+ "japaneseText":"宇宙人",
+ "japaneseFontType":0,
+ "englishUsText":"Alien",
+ "englishUsFontType":0,
+ "chineseTText":"外星人",
+ "chineseTFontType":1,
+ "koreanText":"우주인",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_ufo",
+ "japaneseText":"UFO",
+ "japaneseFontType":0,
+ "englishUsText":"UFO",
+ "englishUsFontType":0,
+ "chineseTText":"UFO",
+ "chineseTFontType":1,
+ "koreanText":"UFO",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_umino",
+ "japaneseText":"海の仲間たち",
+ "japaneseFontType":0,
+ "englishUsText":"Sea Animals",
+ "englishUsFontType":0,
+ "chineseTText":"海中的夥伴們",
+ "chineseTFontType":1,
+ "koreanText":"바닷속 친구들",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_usagi",
+ "japaneseText":"うさぎ顔",
+ "japaneseFontType":0,
+ "englishUsText":"Rabbit Face",
+ "englishUsFontType":0,
+ "chineseTText":"兔子臉",
+ "chineseTFontType":1,
+ "koreanText":"토끼 얼굴",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_wagtagasi",
+ "japaneseText":"わたがし",
+ "japaneseFontType":0,
+ "englishUsText":"Cotton Candy",
+ "englishUsFontType":0,
+ "chineseTText":"棉花糖",
+ "chineseTFontType":1,
+ "koreanText":"솜사탕",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_wakusei",
+ "japaneseText":"わくせい",
+ "japaneseFontType":0,
+ "englishUsText":"Planet",
+ "englishUsFontType":0,
+ "chineseTText":"行星",
+ "chineseTFontType":1,
+ "koreanText":"행성",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_wild",
+ "japaneseText":"ワイルドヘア",
+ "japaneseFontType":0,
+ "englishUsText":"Wild Hair",
+ "englishUsFontType":0,
+ "chineseTText":"狂野髮型",
+ "chineseTFontType":1,
+ "koreanText":"와일드 헤어",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_yatai",
+ "japaneseText":"やたい",
+ "japaneseFontType":0,
+ "englishUsText":"Night Stall",
+ "englishUsFontType":0,
+ "chineseTText":"小吃攤",
+ "chineseTFontType":1,
+ "koreanText":"포장마차",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_yogadon",
+ "japaneseText":"ヨガどん",
+ "japaneseFontType":0,
+ "englishUsText":"Yoga DON",
+ "englishUsFontType":0,
+ "chineseTText":"瑜珈咚",
+ "chineseTFontType":1,
+ "koreanText":"요가 동",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_yosenabe",
+ "japaneseText":"よせ鍋",
+ "japaneseFontType":0,
+ "englishUsText":"Stew",
+ "englishUsFontType":0,
+ "chineseTText":"海鮮火鍋",
+ "chineseTFontType":1,
+ "koreanText":"냄비 요리",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_yotun",
+ "japaneseText":"よつんばいどん",
+ "japaneseFontType":0,
+ "englishUsText":"DON on Fours",
+ "englishUsFontType":0,
+ "chineseTText":"匍匐咚",
+ "chineseTFontType":1,
+ "koreanText":"엎드린동",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_yousetu",
+ "japaneseText":"ようせつマスク",
+ "japaneseFontType":0,
+ "englishUsText":"Welding Mask",
+ "englishUsFontType":0,
+ "chineseTText":"焊接面罩",
+ "chineseTFontType":1,
+ "koreanText":"용접 마스크",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_yurei",
+ "japaneseText":"ユーレイ",
+ "japaneseFontType":0,
+ "englishUsText":"Spirits",
+ "englishUsFontType":0,
+ "chineseTText":"幽靈",
+ "chineseTFontType":1,
+ "koreanText":"유령",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_yusha",
+ "japaneseText":"ゆうしゃ",
+ "japaneseFontType":0,
+ "englishUsText":"Hero-DON",
+ "englishUsFontType":0,
+ "chineseTText":"勇者咚",
+ "chineseTFontType":1,
+ "koreanText":"용사",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_zipper",
+ "japaneseText":"ジッパー",
+ "japaneseFontType":0,
+ "englishUsText":"Zipper",
+ "englishUsFontType":0,
+ "chineseTText":"拉鍊",
+ "chineseTFontType":1,
+ "koreanText":"지퍼",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_puchiKitty",
+ "japaneseText":"ハローキティ",
+ "japaneseFontType":0,
+ "englishUsText":"HELLO KITTY",
+ "englishUsFontType":0,
+ "chineseTText":"HELLO KITTY",
+ "chineseTFontType":1,
+ "koreanText":"HELLO KITTY",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_puchiTkhei8",
+ "japaneseText":"三島平八",
+ "japaneseFontType":0,
+ "englishUsText":"HEIHACHI",
+ "englishUsFontType":0,
+ "chineseTText":"HEIHACHI",
+ "chineseTFontType":1,
+ "koreanText":"HEIHACHI",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_puchiKuma",
+ "japaneseText":"KUMA",
+ "japaneseFontType":0,
+ "englishUsText":"KUMA",
+ "englishUsFontType":0,
+ "chineseTText":"KUMA",
+ "chineseTFontType":1,
+ "koreanText":"KUMA",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_puchiPanda",
+ "japaneseText":"PANDA",
+ "japaneseFontType":0,
+ "englishUsText":"PANDA",
+ "englishUsFontType":0,
+ "chineseTText":"PANDA",
+ "chineseTFontType":1,
+ "koreanText":"PANDA",
+ "koreanFontType":2
+ },
+ {
+ "key":"filter_songs",
+ "japaneseText":"%s曲",
+ "japaneseFontType":0,
+ "englishUsText":"%s Song(s)",
+ "englishUsFontType":0,
+ "chineseTText":"%s樂曲",
+ "chineseTFontType":1,
+ "koreanText":"%s곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"filter_songs_title",
+ "japaneseText":"フィルター結果",
+ "japaneseFontType":0,
+ "englishUsText":"Filtered Result(s)",
+ "englishUsFontType":0,
+ "chineseTText":"篩選結果",
+ "chineseTFontType":1,
+ "koreanText":"필터 결과",
+ "koreanFontType":2
+ },
+ {
+ "key":"filter_used",
+ "japaneseText":"ソートフィルター設定中",
+ "japaneseFontType":0,
+ "englishUsText":"Set sort filter",
+ "englishUsFontType":0,
+ "chineseTText":"分類篩選設定中",
+ "chineseTFontType":1,
+ "koreanText":"정렬 필터 설정 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"genre_friends",
+ "japaneseText":"フレンド",
+ "japaneseFontType":0,
+ "englishUsText":"Friend",
+ "englishUsFontType":0,
+ "chineseTText":"好友",
+ "chineseTFontType":1,
+ "koreanText":"프렌드",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo",
+ "japaneseText":"ミッションビンゴ",
+ "japaneseFontType":0,
+ "englishUsText":"Mission BINGO",
+ "englishUsFontType":0,
+ "chineseTText":"任務賓果",
+ "chineseTFontType":1,
+ "koreanText":"미션 빙고",
+ "koreanFontType":2
+ },
+ {
+ "key":"play_mode_best_replay",
+ "japaneseText":"ベストリプレイ演奏",
+ "japaneseFontType":0,
+ "englishUsText":"Best replay",
+ "englishUsFontType":0,
+ "chineseTText":"最佳重播演奏",
+ "chineseTFontType":1,
+ "koreanText":"베스트 리플레이",
+ "koreanFontType":2
+ },
+ {
+ "key":"play_mode_normal",
+ "japaneseText":"通常演奏",
+ "japaneseFontType":0,
+ "englishUsText":"Normal Play",
+ "englishUsFontType":0,
+ "chineseTText":"一般演奏",
+ "chineseTFontType":1,
+ "koreanText":"평범하게 연주",
+ "koreanFontType":2
+ },
+ {
+ "key":"play_mode_traning",
+ "japaneseText":"トレーニング演奏",
+ "japaneseFontType":0,
+ "englishUsText":"Training Mode",
+ "englishUsFontType":0,
+ "chineseTText":"訓練演奏",
+ "chineseTFontType":1,
+ "koreanText":"트레이닝 연주",
+ "koreanFontType":2
+ },
+ {
+ "key":"select_difficulty",
+ "japaneseText":"むずかしさをえらぶ",
+ "japaneseFontType":0,
+ "englishUsText":"Select difficulty",
+ "englishUsFontType":0,
+ "chineseTText":"選擇難度",
+ "chineseTFontType":1,
+ "koreanText":"난이도 선택",
+ "koreanFontType":2
+ },
+ {
+ "key":"select_song",
+ "japaneseText":"曲をえらぶ",
+ "japaneseFontType":0,
+ "englishUsText":"Select song",
+ "englishUsFontType":0,
+ "chineseTText":"選擇樂曲",
+ "chineseTFontType":1,
+ "koreanText":"곡 선택",
+ "koreanFontType":2
+ },
+ {
+ "key":"session_friend_missed",
+ "japaneseText":"フレンドのデータが見つかりませんでした",
+ "japaneseFontType":0,
+ "englishUsText":"Unable to find friend data",
+ "englishUsFontType":0,
+ "chineseTText":"找不到好友的資料。",
+ "chineseTFontType":1,
+ "koreanText":"프렌드의 데이터를 발견하지 못했습니다.",
+ "koreanFontType":2
+ },
+ {
+ "key":"session_friend_updated",
+ "japaneseText":"フレンドの選曲データが更新されました",
+ "japaneseFontType":0,
+ "englishUsText":"Friend's song data updaed",
+ "englishUsFontType":0,
+ "chineseTText":"好友的選曲資料已更新。",
+ "chineseTFontType":1,
+ "koreanText":"프렌드의 선곡 데이터가 갱신됐습니다.",
+ "koreanFontType":2
+ },
+ {
+ "key":"session_friend_updating",
+ "japaneseText":"フレンドデータ更新中",
+ "japaneseFontType":0,
+ "englishUsText":"Updating friend data",
+ "englishUsFontType":0,
+ "chineseTText":"更新好友資料中",
+ "chineseTFontType":1,
+ "koreanText":"프렌드 데이터 갱신 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"songselect_confirmed",
+ "japaneseText":"えらびなおす",
+ "japaneseFontType":0,
+ "englishUsText":"Re-select",
+ "englishUsFontType":0,
+ "chineseTText":"重新選擇",
+ "chineseTFontType":1,
+ "koreanText":"다시 선택하기",
+ "koreanFontType":2
+ },
+ {
+ "key":"credit_part_29",
+ "japaneseText":"どんちゃんとゆかいな仲間たち",
+ "japaneseFontType":0,
+ "englishUsText":"DON-chan & Jovial Companions",
+ "englishUsFontType":0,
+ "chineseTText":"小咚與他的愉快夥伴們",
+ "chineseTFontType":1,
+ "koreanText":"동이와 유쾌한 친구들",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_title",
+ "japaneseText":"ゲーム設定",
+ "japaneseFontType":0,
+ "englishUsText":"Game Settings",
+ "englishUsFontType":0,
+ "chineseTText":"遊戲設定",
+ "chineseTFontType":1,
+ "koreanText":"게임 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_auto",
+ "japaneseText":"計測開始",
+ "japaneseFontType":0,
+ "englishUsText":"Start",
+ "englishUsFontType":0,
+ "chineseTText":"測量開始",
+ "chineseTFontType":1,
+ "koreanText":"계측 개시",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_auto_2p_supple",
+ "japaneseText":"2人プレイ時の音と判定の調整値は、 %s のセーブデータに保存されます",
+ "japaneseFontType":0,
+ "englishUsText":"The Calibration settings for both players\nhave been saved inside the save data %s .",
+ "englishUsFontType":0,
+ "chineseTText":"2人模式時的聲音與判定的調整值\n會保存至 %s 的保存資料",
+ "chineseTFontType":1,
+ "koreanText":"둘이서 플레이할 때 음량과 판정을 조정하면\n%s 의 저장 데이터에 보존됩니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_auto_add_txt1",
+ "japaneseText":" ※お使いの操作タイプやテレビなどの環境を変更した場合は、再調整が必要です",
+ "japaneseFontType":0,
+ "englishUsText":"※Recalibration is required if there is a change for either the controller, TV, etc.",
+ "englishUsFontType":0,
+ "chineseTText":"※若是您已變更使用的操作類型或電視等其他設備的操作環境時,需要再次調整",
+ "chineseTFontType":1,
+ "koreanText":"※조작 타입 설정이나 사용하는 TV 등, 환경이 달라졌을 때는 다시 조정해야 합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_auto_add_txt2",
+ "japaneseText":"※音量が小さかったり周囲の雑音が大きいと正常に測定できない場合があります",
+ "japaneseFontType":0,
+ "englishUsText":"※Auto calibration may not work properly if the volume is too soft or surrounding noise is too loud.",
+ "englishUsFontType":0,
+ "chineseTText":"※可能會發生因音量過小或是週遭雜音太大,導致無法正常測量的情況",
+ "chineseTFontType":1,
+ "koreanText":"※음량이 작거나 주위의 잡음이 크면 정상적으로 측정하지 못할 때도 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_auto_add_txt3",
+ "japaneseText":" ※ヘッドセット接続時にTVから音が出力されない場合は、本体設定を変更して下さい\n変更方法はOPTIONSを押すと確認できます",
+ "japaneseFontType":0,
+ "englishUsText":"※Please adjust the settings if the mono headset is connected but no audio output from the TV.\nPress OPTIONS to find out how to make the changes.",
+ "englishUsFontType":0,
+ "chineseTText":"※若連接耳機組時,TV沒有聲音輸出,請您變更主機設定。\n 關於變更方法,可按下OPTIONS進行確認",
+ "chineseTFontType":1,
+ "koreanText":"※헤드셋을 연결한 후 TV에서 소리가 나지 않을 때는 본체 설정을 변경해 주십시오.\nOPTIONS을 눌러 확인할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_auto_guide_cancel",
+ "japaneseText":"キャンセル",
+ "japaneseFontType":0,
+ "englishUsText":"Cancel",
+ "englishUsFontType":0,
+ "chineseTText":"取消",
+ "chineseTFontType":1,
+ "koreanText":"취소",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_auto_guide_complete",
+ "japaneseText":"完了",
+ "japaneseFontType":0,
+ "englishUsText":"End",
+ "englishUsFontType":0,
+ "chineseTText":"完成",
+ "chineseTFontType":1,
+ "koreanText":"완료",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_auto_title",
+ "japaneseText":"テレビの音と音符のずれを自動で調整します",
+ "japaneseFontType":0,
+ "englishUsText":"Auto calibration for TV audio and music notes",
+ "englishUsFontType":0,
+ "chineseTText":"自動調整電視聲音與音符的偏差",
+ "chineseTFontType":1,
+ "koreanText":"음표를 TV 소리에 맞춰 자동 조정합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_auto_txt_supple",
+ "japaneseText":"太鼓コントローラー判定調整は、操作タイプがタイプ4(太鼓)の時のみ反映されます",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Controller Calibration\nwill only be reflected on Type 4 (Taiko).",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓控制器判定調整,\n僅限於操作類型為類型4(太鼓)時套用",
+ "chineseTFontType":1,
+ "koreanText":"북 컨트롤러 판정 조정은 \n조작 타입이 타입 4 (북)일 때만 반영됩니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_auto_txt_supple2",
+ "japaneseText":"1目盛りは約4ミリ秒です",
+ "japaneseFontType":0,
+ "englishUsText":"1 scale is about 4 miliseconds.",
+ "englishUsFontType":0,
+ "chineseTText":"1刻度為約4毫秒",
+ "chineseTFontType":1,
+ "koreanText":"1칸은 약 4밀리초입니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_auto_txt1",
+ "japaneseText":"①PlayStation®4付属の\n モノラルヘッドセットを用意します\n ",
+ "japaneseFontType":0,
+ "englishUsText":"①Ready the mono headset.\n\n",
+ "englishUsFontType":0,
+ "chineseTText":"①請準備PlayStation®4\n 隨附的單聲道耳機組\n",
+ "chineseTFontType":1,
+ "koreanText":"①PlayStation®4에 동봉된\n 모노 헤드셋을 준비합니다\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_auto_txt2",
+ "japaneseText":"②ユーザー「 %s 」の\n ワイヤレスコントローラーにつなげます\n ",
+ "japaneseFontType":0,
+ "englishUsText":"②Connect to %s's\n DUALSHOCK®4 wireless controller.\n",
+ "englishUsFontType":0,
+ "chineseTText":"②接上使用者「 %s 」的\n 無線控制器\n",
+ "chineseTFontType":1,
+ "koreanText":"② 유저 %s 의 \n 무선 컨트롤러에 연결합니다\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_auto_txt3",
+ "japaneseText":"③モノラルヘッドセットのマイクをONにして\n テレビのスピーカーにマイクを近づけて\n 計測を開始してください",
+ "japaneseFontType":0,
+ "englishUsText":"③Turn the MIC switch ON for the mono\n headset and bring it closer to the TV\n speaker to start calibration.",
+ "englishUsFontType":0,
+ "chineseTText":"③請將單聲道耳機組的麥克風設為ON\n 並將麥克風貼近電視喇叭開始測量\n",
+ "chineseTFontType":1,
+ "koreanText":"③모노 헤드셋의 마이크를 ON으로 하고\n TV의 스피커에 마이크를 가져가\n 계측을 시작해 주십시오",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_buttontype",
+ "japaneseText":"操作タイプ",
+ "japaneseFontType":0,
+ "englishUsText":"Controller",
+ "englishUsFontType":0,
+ "chineseTText":"操作類型",
+ "chineseTFontType":1,
+ "koreanText":"조작 타입",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_buttontype_setting",
+ "japaneseText":"演奏ゲーム中のワイヤレスコントローラーのボタンタイプを選びます",
+ "japaneseFontType":0,
+ "englishUsText":"Select DUALSHOCK®4 wireless controller button type in Taiko Mode.",
+ "englishUsFontType":0,
+ "chineseTText":"選擇演奏遊戲中的無線控制器之按鈕類型",
+ "chineseTFontType":1,
+ "koreanText":"연주 때 사용할 무선 컨트롤러의 버튼 타입을 선택합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_buttontype_setting_taiko",
+ "japaneseText":"太鼓コントローラーで操作します",
+ "japaneseFontType":0,
+ "englishUsText":"Sets Taiko Controller",
+ "englishUsFontType":0,
+ "chineseTText":"使用太鼓控制器操作",
+ "chineseTFontType":1,
+ "koreanText":"북 컨트롤러로 조작합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_buttontype_type",
+ "japaneseText":"タイプ",
+ "japaneseFontType":0,
+ "englishUsText":"Type",
+ "englishUsFontType":0,
+ "chineseTText":"類型",
+ "chineseTFontType":1,
+ "koreanText":"타입",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_buttontype_type_1",
+ "japaneseText":"タイプ 1",
+ "japaneseFontType":0,
+ "englishUsText":"Type 1",
+ "englishUsFontType":0,
+ "chineseTText":"類型1",
+ "chineseTFontType":1,
+ "koreanText":"타입 1",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_buttontype_type_2",
+ "japaneseText":"タイプ 2",
+ "japaneseFontType":0,
+ "englishUsText":"Type 2",
+ "englishUsFontType":0,
+ "chineseTText":"類型2",
+ "chineseTFontType":1,
+ "koreanText":"타입 2",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_buttontype_type_3",
+ "japaneseText":"タイプ 3",
+ "japaneseFontType":0,
+ "englishUsText":"Type 3",
+ "englishUsFontType":0,
+ "chineseTText":"類型3",
+ "chineseTFontType":1,
+ "koreanText":"타입 3",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_buttontype_type_4",
+ "japaneseText":"タイプ 4(太鼓)",
+ "japaneseFontType":0,
+ "englishUsText":"Type 4 (Taiko)",
+ "englishUsFontType":0,
+ "chineseTText":"類型4(太鼓)",
+ "chineseTFontType":1,
+ "koreanText":"타입 4 (북)",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_buttontype_type_indicate1",
+ "japaneseText":"ふち(左)",
+ "japaneseFontType":0,
+ "englishUsText":"Rim (Left)",
+ "englishUsFontType":0,
+ "chineseTText":"鼓邊(左)",
+ "chineseTFontType":1,
+ "koreanText":"테 (좌)",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_buttontype_type_indicate2",
+ "japaneseText":"面(左)",
+ "japaneseFontType":0,
+ "englishUsText":"Head (Left)",
+ "englishUsFontType":0,
+ "chineseTText":"鼓面(左)",
+ "chineseTFontType":1,
+ "koreanText":"면 (좌)",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_buttontype_type_indicate3",
+ "japaneseText":"面(右)",
+ "japaneseFontType":0,
+ "englishUsText":"Head (Right)",
+ "englishUsFontType":0,
+ "chineseTText":"鼓面(右)",
+ "chineseTFontType":1,
+ "koreanText":"면 (우)",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_buttontype_type_indicate4",
+ "japaneseText":"ふち(右)",
+ "japaneseFontType":0,
+ "englishUsText":"Rim (Right)",
+ "englishUsFontType":0,
+ "chineseTText":"鼓邊(右)",
+ "chineseTFontType":1,
+ "koreanText":"테 (우)",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_buttontype_type_indicate5",
+ "japaneseText":"L1",
+ "japaneseFontType":0,
+ "englishUsText":"L1",
+ "englishUsFontType":0,
+ "chineseTText":"L 1",
+ "chineseTFontType":1,
+ "koreanText":"L1",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_buttontype_type_indicate6",
+ "japaneseText":"L2",
+ "japaneseFontType":0,
+ "englishUsText":"L2",
+ "englishUsFontType":0,
+ "chineseTText":"L 2",
+ "chineseTFontType":1,
+ "koreanText":"L2",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_buttontype_type_indicate7",
+ "japaneseText":"R1",
+ "japaneseFontType":0,
+ "englishUsText":"R1",
+ "englishUsFontType":0,
+ "chineseTText":"R 1",
+ "chineseTFontType":1,
+ "koreanText":"R1",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_buttontype_type_indicate8",
+ "japaneseText":"R2",
+ "japaneseFontType":0,
+ "englishUsText":"R2",
+ "englishUsFontType":0,
+ "chineseTText":"R 2",
+ "chineseTFontType":1,
+ "koreanText":"R2",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_buttontype4_supple",
+ "japaneseText":"判定に違和感を感じる場合は、「音と判定の調整」で調整が出来ます",
+ "japaneseFontType":0,
+ "englishUsText":"Calibration can be used to\nrecalibrate any synchronization issue.",
+ "englishUsFontType":0,
+ "chineseTText":"如果覺得判定不協調,\n可在「聲音與判定的調整」進行調整",
+ "chineseTFontType":1,
+ "koreanText":"판정이 이상하다고 느껴질 때는\n「소리와 판정 조정」에서 조정할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_comment_buttontype",
+ "japaneseText":"演奏ゲーム中の操作タイプを変更します\n※太鼓コントローラーにも変更できます",
+ "japaneseFontType":0,
+ "englishUsText":"Change Taiko Mode button type\n※Also applicable for Taiko Controller.",
+ "englishUsFontType":0,
+ "chineseTText":"變更演奏遊戲中的操作類型\n※也可以變更為太鼓控制器",
+ "chineseTFontType":1,
+ "koreanText":"연주할 때의 조작 타입을 변경합니다\n※북 컨트롤러로도 변경 가능합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_comment_buttontype4",
+ "japaneseText":"太鼓コントローラーで操作します",
+ "japaneseFontType":0,
+ "englishUsText":"Play with Taiko Controller",
+ "englishUsFontType":0,
+ "chineseTText":"使用太鼓控制器操作",
+ "chineseTFontType":1,
+ "koreanText":"북 컨트롤러로 조작합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_comment_net",
+ "japaneseText":"ゴーストどん(リプレイデータ)の送受信設定をします",
+ "japaneseFontType":0,
+ "englishUsText":"Allows you to set the transmission\nsettings for Ghost (Replay data).",
+ "englishUsFontType":0,
+ "chineseTText":"針對複製咚(重播資料)的發送/接受進行設定",
+ "chineseTFontType":1,
+ "koreanText":"고스트동 (리플레이 데이터)\n송수신을 설정합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_comment_sound",
+ "japaneseText":"BGMと効果音の音量と、音符位置と判定位置の調整をします",
+ "japaneseFontType":0,
+ "englishUsText":"Adjust BGM & SE volume, calibrates music\nnotes position & recognition area.",
+ "englishUsFontType":0,
+ "chineseTText":"調整背景音樂、效果音的音量、音符位置及判定位置",
+ "chineseTFontType":1,
+ "koreanText":"BGM과 효과음의 음량이나\n음표 위치와 판정 위치를 조정합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_comment_staffroll",
+ "japaneseText":"クレジットを表示します",
+ "japaneseFontType":0,
+ "englishUsText":"Display game credits and staff roll",
+ "englishUsFontType":0,
+ "chineseTText":"顯示製作人員名單",
+ "chineseTFontType":1,
+ "koreanText":"크레딧을 표시합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_comment_supple",
+ "japaneseText":"「太鼓コントローラー判定調整」の値が反映されます",
+ "japaneseFontType":0,
+ "englishUsText":"Reflects the calibrated values for Taiko Controller.",
+ "englishUsFontType":0,
+ "chineseTText":"套用「太鼓控制器判定調整」的數值",
+ "chineseTFontType":1,
+ "koreanText":"「북 컨트롤러 판정 조정」\n수치가 반영됩니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_comment_tutorial",
+ "japaneseText":"演奏ゲームのあそびかたを説明します",
+ "japaneseFontType":0,
+ "englishUsText":"Tutorial for Taiko Mode.",
+ "englishUsFontType":0,
+ "chineseTText":"說明演奏遊戲的遊戲玩法",
+ "chineseTFontType":1,
+ "koreanText":"연주 모드의 플레이 방법을 설명합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_dialo_back",
+ "japaneseText":"他のプレイヤーの操作がないので\n画面を閉じます",
+ "japaneseFontType":0,
+ "englishUsText":"No input(s) detected by other\nplayer, return to Game settings",
+ "englishUsFontType":0,
+ "chineseTText":"由於其他玩家沒有輸入操作指令\n將返回「遊戲設定」",
+ "chineseTFontType":1,
+ "koreanText":"다른 플레이어의 입력이 없었기 때문에\n화면을 닫습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_dialog",
+ "japaneseText":"演奏ゲーム画面で確認しますか?",
+ "japaneseFontType":0,
+ "englishUsText":"Test it in Taiko Mode?",
+ "englishUsFontType":0,
+ "chineseTText":"要確認演奏畫面嗎?",
+ "chineseTFontType":1,
+ "koreanText":"연주 화면에서 확인합니까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_dialog_title",
+ "japaneseText":"演奏テスト",
+ "japaneseFontType":0,
+ "englishUsText":"Play Test",
+ "englishUsFontType":0,
+ "chineseTText":"演奏測試",
+ "chineseTFontType":1,
+ "koreanText":"연주 테스트",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_help",
+ "japaneseText":"音声出力変更方法",
+ "japaneseFontType":0,
+ "englishUsText":"Audio output guide",
+ "englishUsFontType":0,
+ "chineseTText":"聲音輸出變更方法",
+ "chineseTFontType":1,
+ "koreanText":"음성 출력 변경 방법",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_help_title",
+ "japaneseText":"音声出力の変更方法",
+ "japaneseFontType":0,
+ "englishUsText":"Change audio output",
+ "englishUsFontType":0,
+ "chineseTText":"聲音輸出的變更方法",
+ "chineseTFontType":1,
+ "koreanText":"음성 출력의 변경 방법",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_help_txt",
+ "japaneseText":"本体設定によっては、ヘッドセットを接続すると\nヘッドセットから音が聞こえ、TVから音が鳴らなくなることがあります\n\n自動調整をするには、TVから音声出力をする必要があります\n音声出力先の変更は、PSボタンを長押ししてクイックメニューを表示し、\n\n「サウンドと周辺機器」>「ヘッドホンへの出力」\n\nを選択し、「ヘッドホンへの出力」を「チャット音声」に変更して下さい",
+ "japaneseFontType":0,
+ "englishUsText":"Depending on the current settings, audio output may\nonly be heard from the mono headset when connected.\n\nAuto calibration requires TV audio output which can be\nadjusted by holding the PS button to display\nthe quick menu as follows.\n\nSound/Devices > Output to Headphones\n\nPlease ensure the settings are set to Chat Audio.",
+ "englishUsFontType":0,
+ "chineseTText":"根據主機設定,連接耳機組時可能會從耳機組聽到聲音、但TV沒有發出聲音\n\n如欲自動調整,需要設定從TV輸出聲音\n關於聲音輸出位置變更,長按PS按鈕將會顯示快速選單\n\n請選擇「聲音與周邊機器」>「輸出至耳機」,\n\n並將「輸出至耳機」變更為「聊天語音」",
+ "chineseTFontType":1,
+ "koreanText":"헤드셋을 접속할 경우, 본체 설정에 따라서는\nTV에서 소리가 나지 않을 수도 있습니다\n\n자동 조정 기능은 TV 음성 출력을 사용합니다\n음성 출력 변경은 PS 버튼을 길게 눌러 빠른 메뉴를 열고\n\n「사운드 및 주변기기」>「헤드폰에 출력」을 선택하여\n\n「헤드폰에 출력」을 「대화 음성」으로 변경해 주십시오",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_listening_NG",
+ "japaneseText":"計測失敗",
+ "japaneseFontType":0,
+ "englishUsText":"Calibration failed",
+ "englishUsFontType":0,
+ "chineseTText":"測量失敗",
+ "chineseTFontType":1,
+ "koreanText":"계측 실패",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_listening_NG_txt",
+ "japaneseText":"ワイヤレスコントローラーにモノラルヘッドセットを繋げて、\nテレビに近づけてもう一度やり直してください",
+ "japaneseFontType":0,
+ "englishUsText":"Connect the DUALSHOCK®4 wireless controller with the\nmono headset and bring it closer to the TV again.",
+ "englishUsFontType":0,
+ "chineseTText":"請將單聲道耳機組接上無線控制器,\n貼近電視再重試一次",
+ "chineseTFontType":1,
+ "koreanText":"무선 컨트롤러에 모노 헤드셋을 연결하여\nTV에 가져간 뒤 다시 한번 확인해 주십시오 ",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_listening_now",
+ "japaneseText":"現在の計測値",
+ "japaneseFontType":0,
+ "englishUsText":"Current calibrated value",
+ "englishUsFontType":0,
+ "chineseTText":"現在測量值",
+ "chineseTFontType":1,
+ "koreanText":"현재 계측치",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_listening_OK",
+ "japaneseText":"計測成功",
+ "japaneseFontType":0,
+ "englishUsText":"Calibration successful",
+ "englishUsFontType":0,
+ "chineseTText":"測量成功",
+ "chineseTFontType":1,
+ "koreanText":"계측 성공",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_listening_result1",
+ "japaneseText":"音符位置調整値:",
+ "japaneseFontType":0,
+ "englishUsText":"Calibrated position value:",
+ "englishUsFontType":0,
+ "chineseTText":"音符位置調整值:",
+ "chineseTFontType":1,
+ "koreanText":"음표 위치 조정 수치 :",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_listening_result2",
+ "japaneseText":"太鼓コントローラー判定調整値:",
+ "japaneseFontType":0,
+ "englishUsText":"Calibrated recongition value:",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓控制器判定調整值:",
+ "chineseTFontType":1,
+ "koreanText":"북 컨트롤러 판정 조정 수치 :",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_listening_title",
+ "japaneseText":"計測中",
+ "japaneseFontType":0,
+ "englishUsText":"Calibrating...",
+ "englishUsFontType":0,
+ "chineseTText":"測量中",
+ "chineseTFontType":1,
+ "koreanText":"계측 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_net",
+ "japaneseText":"ネットワーク",
+ "japaneseFontType":0,
+ "englishUsText":"Network",
+ "englishUsFontType":0,
+ "chineseTText":"網路連線",
+ "chineseTFontType":1,
+ "koreanText":"네트워크",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_net_get_no",
+ "japaneseText":"受信しない",
+ "japaneseFontType":0,
+ "englishUsText":"Decline",
+ "englishUsFontType":0,
+ "chineseTText":"不接收",
+ "chineseTFontType":1,
+ "koreanText":"수신하지 않는다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_net_get_no_txt",
+ "japaneseText":"フレンドの「ゴーストどん」を受信しません\n※曲ジャンル「フレンド」がなくなり、\nフレンドセッション演奏ができなくなります",
+ "japaneseFontType":0,
+ "englishUsText":"You will not receive Friend Ghost data.\n※Song genre Friend and Friend session\nwill be unavailable.",
+ "englishUsFontType":0,
+ "chineseTText":"不接收好友的「複製咚」\n※將失去樂曲類型「好友」,\n並且無法進行好友演奏會",
+ "chineseTFontType":1,
+ "koreanText":"프렌드의 「고스트동」을 수신하지 않습니다\n※곡의 장르 「프렌드」가 사라지고\n프렌드 세션 연주를 할 수 없게 됩니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_net_get_title",
+ "japaneseText":"フレンドゴーストどん受信設定",
+ "japaneseFontType":0,
+ "englishUsText":"Friend Ghost data settings",
+ "englishUsFontType":0,
+ "chineseTText":"好友複製咚接收設定",
+ "chineseTFontType":1,
+ "koreanText":"프렌드 고스트동 수신 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_net_get_yes",
+ "japaneseText":"受信する",
+ "japaneseFontType":0,
+ "englishUsText":"Accept",
+ "englishUsFontType":0,
+ "chineseTText":"接收",
+ "chineseTFontType":1,
+ "koreanText":"수신한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_net_get_yes_txt",
+ "japaneseText":"フレンドの「ゴーストどん」を受信します\n※曲ジャンル「フレンド」で\nフレンドセッション演奏ができます",
+ "japaneseFontType":0,
+ "englishUsText":"You will receive Friend Ghost data.\n※Song genre Friend will be available in\nFriend session.",
+ "englishUsFontType":0,
+ "chineseTText":"接收好友的「複製咚」\n※可在樂曲類型「好友」\n進行好友演奏會",
+ "chineseTFontType":1,
+ "koreanText":"프렌드의 「고스트동」을 수신합니다\n※곡의 장르 「프렌드」에서\n프렌드 세션 연주가 가능합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_net_send_no",
+ "japaneseText":"送信しない",
+ "japaneseFontType":0,
+ "englishUsText":"Don’t share Ghost",
+ "englishUsFontType":0,
+ "chineseTText":"不發送",
+ "chineseTFontType":1,
+ "koreanText":"송신하지 않는다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_net_send_no_txt",
+ "japaneseText":"自分の「ゴーストどん」をネットワークに送信しません\n※自分の「ゴーストどん」が、他のプレイヤーや\nフレンドのゲームに登場しなくなります",
+ "japaneseFontType":0,
+ "englishUsText":"Your Ghost data will not be shared over the network.\n※Your Ghost will not appear in other players' or\nfriends' game.",
+ "englishUsFontType":0,
+ "chineseTText":"不將自己的「複製咚」發送至網路\n※自己的「複製咚」不會在\n其他玩家或好友的遊戲中登場",
+ "chineseTFontType":1,
+ "koreanText":"「고스트동」을 네트워크에 송신하지 않습니다\n※자신의 「고스트동」이 다른 플레이어나\n프렌드의 게임에 등장하지 않습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_net_send_title",
+ "japaneseText":"ゴーストどん送信設定",
+ "japaneseFontType":0,
+ "englishUsText":"Ghost data settings",
+ "englishUsFontType":0,
+ "chineseTText":"複製咚發送設定",
+ "chineseTFontType":1,
+ "koreanText":"고스트동 송신 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_net_send_yes",
+ "japaneseText":"送信する",
+ "japaneseFontType":0,
+ "englishUsText":"Share Ghost",
+ "englishUsFontType":0,
+ "chineseTText":"發送",
+ "chineseTFontType":1,
+ "koreanText":"송신한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_net_send_yes_txt",
+ "japaneseText":"自分の「ゴーストどん」をネットワークに送信します\n※自分の「ゴーストどん」が、他のプレイヤーや\nフレンドのゲームに登場します",
+ "japaneseFontType":0,
+ "englishUsText":"Your Ghost data will be shared over the network.\n※Your Ghost will appear in other players' or\nfriends' game.",
+ "englishUsFontType":0,
+ "chineseTText":"將自己的「複製咚」發送至網路\n※自己的「複製咚」將會在\n其他玩家或好友的遊戲中登場",
+ "chineseTFontType":1,
+ "koreanText":"「고스트동」을 네트워크에 송신합니다\n※자신의 「고스트동」이 다른 플레이어나\n프렌드의 게임에 등장합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_note_point_title",
+ "japaneseText":"音符位置調整",
+ "japaneseFontType":0,
+ "englishUsText":"Music note positions",
+ "englishUsFontType":0,
+ "chineseTText":"音符位置調整",
+ "chineseTFontType":1,
+ "koreanText":"음표 위치 조정",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_note_point_txt",
+ "japaneseText":"音符の表示位置を調整します\n+の数値が大きいほど音符の表示位置が右に移動\n-の数値が大きいほど音符の表示位置が左に移動",
+ "japaneseFontType":0,
+ "englishUsText":"Calibrates music note positions\n+ to shift music notes to the right\n- to shift music notes to the left ",
+ "englishUsFontType":0,
+ "chineseTText":"調整音符的顯示位置\n+的數值越大,音符的顯示位置越往右移\n-的數值越大,音符的顯示位置越往左移",
+ "chineseTFontType":1,
+ "koreanText":"음표의 표시 위치를 조정합니다\n+수치가 클수록 음표 표시 위치가 우측으로\n-수치가 클수록 음표 표시 위치가 좌측으로",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_note_timing_title",
+ "japaneseText":"音符判定調整",
+ "japaneseFontType":0,
+ "englishUsText":"Music note recognition area",
+ "englishUsFontType":0,
+ "chineseTText":"音符判定調整",
+ "chineseTFontType":1,
+ "koreanText":"음표 판정 조정",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_note_timing_txt",
+ "japaneseText":"音符の判定タイミングを調整します\n+数値が大きいほど音符の判定のタイミングを早くします\n-の数値が大きいほど音符の判定のタイミングを遅くします",
+ "japaneseFontType":0,
+ "englishUsText":"Calibrates music note recognition timing\n+ to make the recognition timing faster\n- to make the recognition timing slower",
+ "englishUsFontType":0,
+ "chineseTText":"調整音符的判定時機\n+的數值越大,音符的判定時機變越快\n-的數值越大,音符的判定時機變越慢",
+ "chineseTFontType":1,
+ "koreanText":"음표의 판정 타이밍을 조정합니다\n+수치가 클수록 음표의 판정 타이밍이 빠름\n-수치가 클수록 음표의 판정 타이밍이 느림",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_sound",
+ "japaneseText":"音と判定の調整",
+ "japaneseFontType":0,
+ "englishUsText":"Calibration",
+ "englishUsFontType":0,
+ "chineseTText":"聲音與判定調整",
+ "chineseTFontType":1,
+ "koreanText":"소리와 판정 조정",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_sound_vol_bgm_title",
+ "japaneseText":"BGM",
+ "japaneseFontType":0,
+ "englishUsText":"BGM",
+ "englishUsFontType":0,
+ "chineseTText":"背景音樂",
+ "chineseTFontType":1,
+ "koreanText":"BGM",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_sound_vol_bgm_txt",
+ "japaneseText":"BGMの音量を設定します",
+ "japaneseFontType":0,
+ "englishUsText":"Adjust BGM volume",
+ "englishUsFontType":0,
+ "chineseTText":"設定背景音樂的音量",
+ "chineseTFontType":1,
+ "koreanText":"BGM의 음량을 설정합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_sound_vol_se_title",
+ "japaneseText":"効果音",
+ "japaneseFontType":0,
+ "englishUsText":"Sound Effect",
+ "englishUsFontType":0,
+ "chineseTText":"效果音",
+ "chineseTFontType":1,
+ "koreanText":"효과음",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_sound_vol_se_txt",
+ "japaneseText":"効果音の音量を設定します",
+ "japaneseFontType":0,
+ "englishUsText":"Adjust SE Volume",
+ "englishUsFontType":0,
+ "chineseTText":"設定效果音的音量",
+ "chineseTFontType":1,
+ "koreanText":"효과음의 음량을 설정합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_staffroll",
+ "japaneseText":"クレジット",
+ "japaneseFontType":0,
+ "englishUsText":"Credits",
+ "englishUsFontType":0,
+ "chineseTText":"製作人員名單",
+ "chineseTFontType":1,
+ "koreanText":"크레딧",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_staffroll_detail",
+ "japaneseText":"クレジットを表示します",
+ "japaneseFontType":0,
+ "englishUsText":"View Credits",
+ "englishUsFontType":0,
+ "chineseTText":"顯示製作人員名單",
+ "chineseTFontType":1,
+ "koreanText":"크레딧을 표시합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_tatacon_timing",
+ "japaneseText":"太鼓コントローラーの判定タイミングをマニュアル調整します\n-の数値が大きいほど判定のタイミングを遅くします",
+ "japaneseFontType":0,
+ "englishUsText":"Manually calibrates the Taiko Controller\nrecognition timing.\nIncrease to make the timing slower.",
+ "englishUsFontType":0,
+ "chineseTText":"手動調整太鼓控制器的判定時機\n-的數值越大,判定時機越慢",
+ "chineseTFontType":1,
+ "koreanText":"북 컨트롤러의 판정을 수동 조정합니다\n-수치가 클수록 판정 타이밍이 느림",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_tatacon_timing_title",
+ "japaneseText":"太鼓コントローラー判定調整",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Controller Calibration",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓控制器判定調整",
+ "chineseTFontType":1,
+ "koreanText":"북 컨트롤러 판정 조정",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_test",
+ "japaneseText":"演奏テスト",
+ "japaneseFontType":0,
+ "englishUsText":"Play test",
+ "englishUsFontType":0,
+ "chineseTText":"演奏測試",
+ "chineseTFontType":1,
+ "koreanText":"연주 테스트",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_test_options",
+ "japaneseText":"確認完了",
+ "japaneseFontType":0,
+ "englishUsText":"Test completed.",
+ "englishUsFontType":0,
+ "chineseTText":"確認完成",
+ "chineseTFontType":1,
+ "koreanText":"확인 완료",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_tutorial",
+ "japaneseText":"あそびかた説明",
+ "japaneseFontType":0,
+ "englishUsText":"Game tutorial",
+ "englishUsFontType":0,
+ "chineseTText":"遊戲玩法說明",
+ "chineseTFontType":1,
+ "koreanText":"플레이 방법 설명",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_tutorial_clear",
+ "japaneseText":"ココをこえればクリア!",
+ "japaneseFontType":0,
+ "englishUsText":"Overcome this to clear song!",
+ "englishUsFontType":0,
+ "chineseTText":"超過這裡就通關了!",
+ "chineseTFontType":1,
+ "koreanText":"여기를 넘으면 클리어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_tutorial_finish",
+ "japaneseText":"でムービー終了",
+ "japaneseFontType":0,
+ "englishUsText":"End",
+ "englishUsFontType":0,
+ "chineseTText":"結束影片",
+ "chineseTFontType":1,
+ "koreanText":"으로 무비 종료",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_tutorial_info_title",
+ "japaneseText":"だいじなお知らせ",
+ "japaneseFontType":0,
+ "englishUsText":"【Important Notice】",
+ "englishUsFontType":0,
+ "chineseTText":"【重要通知】",
+ "chineseTFontType":1,
+ "koreanText":"중요한 정보",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_tutorial_info_txt",
+ "japaneseText":"テレビによっては、映像や音声に遅れがあり、\n正しいタイミングで太鼓をたたいても\n演奏を失敗してしまうことがあります\n\nもし、そのようなことが起きている場合は、\n「ゲーム設定」の「音と判定の調整」で調整して下さい",
+ "japaneseFontType":0,
+ "englishUsText":"Music note display or audio may not be in sync\neven with precise button input for certain TVs,\nwhich may cause you to fail the game.\n\nPlease perform Calibration found\nunder Game settings if that happens.",
+ "englishUsFontType":0,
+ "chineseTText":"依電視不同,可能會發生影像或是聲音延遲,\n即使在正確時機敲打太鼓,也有可能會演奏失敗。\n\n若是發生上述情形,請在「遊戲設定」的\n「聲音與判定的調整」中進行調整",
+ "chineseTFontType":1,
+ "koreanText":"TV에 따라서 영상이나 음성의 오차로 인해\n올바른 타이밍에 태고를 두드려도\n연주에 실패하는 경우가 있습니다.\n\n만약 이러한 현상이 있을 경우 「게임 설정」의\n「소리와 판정 조정」에서 조정해 주십시오",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_tutorial_text01",
+ "japaneseText":"このゲームのあそびかたをおしえるよ",
+ "japaneseFontType":0,
+ "englishUsText":"I'll show you the ropes to become a Taiko Master!",
+ "englishUsFontType":0,
+ "chineseTText":"我來介紹這個遊戲的遊戲玩法吧",
+ "chineseTFontType":1,
+ "koreanText":"이 게임을 플레이하는 법을 알려줄게",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_tutorial_text02",
+ "japaneseText":"流れてくる音符がワクにかさなったら\nバチで太鼓をたたこう",
+ "japaneseFontType":0,
+ "englishUsText":"Hit the Taiko when the incoming\nmusic notes overlap the circle!",
+ "englishUsFontType":0,
+ "chineseTText":"當流動的音符將與框框重疊時\n就用鼓棒敲打太鼓吧",
+ "chineseTFontType":1,
+ "koreanText":"이동하는 음표가 테두리와 겹쳐졌을 때\n북채로 태고를 두드리자",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_tutorial_text03",
+ "japaneseText":"赤い音符は面をたたこう",
+ "japaneseFontType":0,
+ "englishUsText":"Hit the Head for red music notes",
+ "englishUsFontType":0,
+ "chineseTText":"遇到紅色音符要敲打鼓面",
+ "chineseTFontType":1,
+ "koreanText":"빨간 음표는 면을 두드리자",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_tutorial_text04",
+ "japaneseText":"青い音符はふちをたたこう",
+ "japaneseFontType":0,
+ "englishUsText":"Hit the Rim for blue music notes",
+ "englishUsFontType":0,
+ "chineseTText":"遇到藍色音符則敲打鼓邊",
+ "chineseTFontType":1,
+ "koreanText":"파란 음표는 테를 두드리자",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_tutorial_text05",
+ "japaneseText":"ワイヤレスコントローラーであそぶ\nときは、赤い音符は\n方向キー㎡/㏍か、㎏/㎜ボタン\nを押そう",
+ "japaneseFontType":0,
+ "englishUsText":"Press either the ㎡/㏍ directional button\nor the ㎏/㎜ button for red music notes when\nusing the DUALSHOCK®4 wireless controller!",
+ "englishUsFontType":0,
+ "chineseTText":"用無線控制器遊玩時,\n遇到紅色音符就按下方向按鈕㎡/㏍、或是㎏/㎜按鈕吧",
+ "chineseTFontType":1,
+ "koreanText":"무선 컨트롤러로 플레이할 때,\n빨간 음표는 \n방향키 ㎡/㏍, 혹은 ㎏/㎜버튼을\n누르자",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_tutorial_text06",
+ "japaneseText":"青い音符は、\n方向キー㎞/㏄か、㎎/㎝、L1/R1ボタン\nを押そう",
+ "japaneseFontType":0,
+ "englishUsText":"Press either the ㎞/㏄ directional button, L1/R1\nor ㎎/㎝ button for blue music notes!",
+ "englishUsFontType":0,
+ "chineseTText":"遇到藍色音符就按下方向按鈕㎞/㏄、\n㎎/㎝、或是L1/R1按鈕吧",
+ "chineseTFontType":1,
+ "koreanText":"파란 음표는 \n방향키 ㎞/㏄나 ㎎/㎝버튼, 혹은 L1/R1 버튼\n을 누르자",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_tutorial_text07",
+ "japaneseText":"大きな音符は左右同時にたたくと高得点!",
+ "japaneseFontType":0,
+ "englishUsText":"Hitting both sides together for big music\nnotes will award you with higher points!",
+ "englishUsFontType":0,
+ "chineseTText":"遇到大型音符時,左右同時敲打可以獲得高分!",
+ "chineseTFontType":1,
+ "koreanText":"커다란 음표는\n좌우를 동시에 두드리면 고득점!",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_tutorial_text08",
+ "japaneseText":"黄色い音符はひたすら連打!",
+ "japaneseFontType":0,
+ "englishUsText":"Do a rapid drumroll for yellow music notes!",
+ "englishUsFontType":0,
+ "chineseTText":"遇到黃色音符就拼命連打!",
+ "chineseTFontType":1,
+ "koreanText":"노란 음표는 계속 연타!",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_tutorial_text09",
+ "japaneseText":"ふうせん音符と、こづち音符も、\nとにかく連打~!",
+ "japaneseFontType":0,
+ "englishUsText":"Balloon and Mallet music notes call for\na rapid drumroll~!",
+ "englishUsFontType":0,
+ "chineseTText":"遇到氣球音符、還有小槌音符時\n連打就對了~!",
+ "chineseTFontType":1,
+ "koreanText":"풍선 음표와 금망치 음표도\n아무튼 연타~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_tutorial_text10",
+ "japaneseText":"タイミングよくたたけば\n魂(たましい)ゲージがアップ!",
+ "japaneseFontType":0,
+ "englishUsText":"Time your hits carefully to increase\nthe Soul gauge!",
+ "englishUsFontType":0,
+ "chineseTText":"抓準時機敲打的話\n會累積魂量表!",
+ "chineseTFontType":1,
+ "koreanText":"타이밍에 맞춰 두드리면\n혼 게이지가 업!",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_tutorial_text11",
+ "japaneseText":"うまくたたいてクリアをめざそう!",
+ "japaneseFontType":0,
+ "englishUsText":"Strike the notes well and aim for clear!",
+ "englishUsFontType":0,
+ "chineseTText":"以順利敲打通關為目標!",
+ "chineseTFontType":1,
+ "koreanText":"열심히 두드려서 클리어를 노리자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"vib_off",
+ "japaneseText":"振動 OFF",
+ "japaneseFontType":0,
+ "englishUsText":"Vibration OFF",
+ "englishUsFontType":0,
+ "chineseTText":"震動 OFF",
+ "chineseTFontType":1,
+ "koreanText":"진동 OFF",
+ "koreanFontType":2
+ },
+ {
+ "key":"vib_on",
+ "japaneseText":"振動 ON",
+ "japaneseFontType":0,
+ "englishUsText":"Vibration ON",
+ "englishUsFontType":0,
+ "chineseTText":"震動 ON",
+ "chineseTFontType":1,
+ "koreanText":"진동 ON",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips001",
+ "japaneseText":"本体に2人ログインしてゲームを始めると、\n2人でいっしょに演奏できる",
+ "japaneseFontType":0,
+ "englishUsText":"If both players are logged in before the game starts,\nboth of you can play together!",
+ "englishUsFontType":0,
+ "chineseTText":"如果 2人登入主機並開始遊戲,\n即可 2人一同演奏",
+ "chineseTFontType":1,
+ "koreanText":"본체에 둘이서 로그인한 상태로 게임을 시작하면\n둘이서 함께 연주할 수 있다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips002",
+ "japaneseText":"大きな音符は両手で叩くと高得点!",
+ "japaneseFontType":0,
+ "englishUsText":"Hitting with both hands for big music notes\nawards you with a higher score!",
+ "englishUsFontType":0,
+ "chineseTText":"遇到大型音符時,雙手敲打可以獲得高分!",
+ "chineseTFontType":1,
+ "koreanText":"커다란 음표는 양손으로 두드리면 고득점!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips003",
+ "japaneseText":"黄色い音符はとにかく連打!",
+ "japaneseFontType":0,
+ "englishUsText":"Just keep hitting yellow music notes\nwhen you see them!",
+ "englishUsFontType":0,
+ "chineseTText":"遇到黃色音符時,連打就對了!",
+ "chineseTFontType":1,
+ "koreanText":"노란색 음표는 어쨌든 연타!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips004",
+ "japaneseText":"ふうせん音符/こづち音符は\nドンをはやく連打!",
+ "japaneseFontType":0,
+ "englishUsText":"Hit Don rapidly for balloon / Mallet music notes!",
+ "englishUsFontType":0,
+ "chineseTText":"遇到氣球音符/小槌音符時,快速連打「咚」!",
+ "chineseTFontType":1,
+ "koreanText":"풍선 음표/금망치 음표는\n쿵을 빠르게 연타!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips005",
+ "japaneseText":"太鼓の音色が遅れて演奏しにくい場合は\n音色「音なし」を試してみよう!",
+ "japaneseFontType":0,
+ "englishUsText":"When the Taiko instrument is out of sync and makes\nplaying difficult, try playing with Silent instead!",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓的音色延遲而無法順利演奏時\n試著使用音色「無聲」吧!",
+ "chineseTFontType":1,
+ "koreanText":"태고 소리가 늦게 나서 연주하기 힘들 때는\n음색을 「무음」으로 해보자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips006",
+ "japaneseText":"連打音符をいっぱい叩くと、\nその分スコアがたくさんもらえるよ!",
+ "japaneseFontType":0,
+ "englishUsText":"Hitting repeatedly for Drum Roll, Balloon or Mallet\nwill award you with that many additional points!",
+ "englishUsFontType":0,
+ "chineseTText":"如果拼命敲打連打音符,\n即可獲得該部分的大量分數喔!",
+ "chineseTFontType":1,
+ "koreanText":"연타 음표를 잔뜩 두드리면\n그만큼 스코어도 잔뜩 얻을 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips007",
+ "japaneseText":"音符をぴったりのタイミングの「良」判定で叩くと\n「可」よりもスコアが多くもらえる!",
+ "japaneseFontType":0,
+ "englishUsText":"Hitting music notes precisely scores a GOOD, which\nawards you more points than an OK evaluation!",
+ "englishUsFontType":0,
+ "chineseTText":"在合適的時機敲出「良」判定的音符時,\n將會獲得比「可」更多的分數!",
+ "chineseTFontType":1,
+ "koreanText":"음표를 정확한 타이밍 「얼쑤」 판정으로 두드리면\n「좋다」보다 스코어를 많이 얻을 수 있다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips008",
+ "japaneseText":"音符をミスせずにうまく叩き続けると、\nスコアにコンボボーナスが加わるよ!",
+ "japaneseFontType":0,
+ "englishUsText":"Combo bonus will be added to the score\nas long as no mistakes are made!",
+ "englishUsFontType":0,
+ "chineseTText":"零失誤巧妙敲打音符的話,\n會增加連段獎勵至成績上喔!",
+ "chineseTFontType":1,
+ "koreanText":"음표를 실수 없이 계속 두드리면\n스코어에 콤보 보너스가 추가돼!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips009",
+ "japaneseText":"「こづち音符」は、はやく叩き終わらせると高得点!",
+ "japaneseFontType":0,
+ "englishUsText":"Hitting the Mallet music note rapidly will\naward you with lots of points!",
+ "englishUsFontType":0,
+ "chineseTText":"遇到「小槌音符」時,\n快速敲打完即可獲得高分!",
+ "chineseTFontType":1,
+ "koreanText":"「금망치 음표」는 빨리 두드려 끝내면 고득점!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips010",
+ "japaneseText":"「譜面分岐」と書かれた譜面では、\nその時の演奏の出来によって音符の数や種類が変わる",
+ "japaneseFontType":0,
+ "englishUsText":"Songs labeled with Diverge Notes change the quantity\nand type of music notes based on your playing.",
+ "englishUsFontType":0,
+ "chineseTText":"在寫有「譜面分歧」的譜面中,\n會依當時演奏結果改變音符數量及種類",
+ "chineseTFontType":1,
+ "koreanText":"「악보 분기」라고 쓰인 악보는\n연주 정확도에 따라 음표의 수나 종류가 변한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips011",
+ "japaneseText":"「曲をえらぶ」でキャラアイコン付きの曲は、\nゲストキャラがいっしょに演奏するよ!",
+ "japaneseFontType":0,
+ "englishUsText":"Under Select song, songs with character icons\nallow you to play with guest characters!",
+ "englishUsFontType":0,
+ "chineseTText":"「選擇樂曲」中有附加角色圖示的樂曲,\n會和客串角色一同演奏喔!",
+ "chineseTFontType":1,
+ "koreanText":"「곡 선택」에서 캐릭터 아이콘이 붙은 곡은\n게스트 캐릭터가 같이 연주해 줄 거야!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips012",
+ "japaneseText":"「曲をえらぶ」で□ボタンを押すと、\n曲をお気に入り登録できる",
+ "japaneseFontType":0,
+ "englishUsText":"Pressing □ button in Select song\nallows you to register the song as a favorite!",
+ "englishUsFontType":0,
+ "chineseTText":"在「選擇樂曲」按下□按鈕,\n即可將樂曲登錄為中意樂曲",
+ "chineseTFontType":1,
+ "koreanText":"「곡 선택」에서 □ 버튼을 누르면\n곡을 즐겨찾기에 등록할 수 있다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips013",
+ "japaneseText":"むずかしさ「おに」には、通常とは異なる\n「裏譜面」であそべる曲もある",
+ "japaneseFontType":0,
+ "englishUsText":"A secret difficulty known as Extra\nlies within the Extreme difficulty.",
+ "englishUsFontType":0,
+ "chineseTText":"在「魔王」難度中,也會有不同於\n一般譜面玩法的「裏譜面」樂曲",
+ "chineseTFontType":1,
+ "koreanText":"난이도 「귀신」 중에는 일반적인 것과 달리\n「악보 뒷면」을 플레이할 수 있는 곡도 있다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips014",
+ "japaneseText":"「おに」にカーソルを合わせて右キーを連打すると\n「裏譜面」がえらべる曲もある",
+ "japaneseFontType":0,
+ "englishUsText":"Align to Extreme difficulty and press the right directional\nbutton repeatedly to select the Extra difficulty.",
+ "englishUsFontType":0,
+ "chineseTText":"如果移動指標至「魔王」連續敲打右方向按鈕,\n會有「裏譜面」的樂曲可供選擇",
+ "chineseTFontType":1,
+ "koreanText":"「귀신」에 커서를 맞추고 오른쪽 방향키를\n연타하면 「악보 뒷면」을 고를 수 있는 곡도 있다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips015",
+ "japaneseText":"「曲をえらぶ」で△ボタンを押すと、\nサブメニューの設定ができる",
+ "japaneseFontType":0,
+ "englishUsText":"Press △ to access the Submenu in\nSelect song, allowing you to make changes.",
+ "englishUsFontType":0,
+ "chineseTText":"在「選擇樂曲」按下△按鈕,\n即可針對子選單進行設定",
+ "chineseTFontType":1,
+ "koreanText":"「곡 선택」에서 △버튼을 누르면,\n서브 메뉴를 설정할 수 있다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips016",
+ "japaneseText":"演奏のサブメニュー 「ソートフィルタ設定」 で\n表示したい曲を指定できる",
+ "japaneseFontType":0,
+ "englishUsText":"Select what to display under game's Submenu\nSort filter settings",
+ "englishUsFontType":0,
+ "chineseTText":"可以在演奏子選單 \n「分類篩選設定」 指定欲顯示的樂曲",
+ "chineseTFontType":1,
+ "koreanText":"연주의 서브 메뉴 「정렬 필터 설정」에서\n표시하고 싶은 곡을 지정할 수 있다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips017",
+ "japaneseText":"「むずかしさをえらぶ」で△ボタンを押すと、\n演奏のオプションを設定できる",
+ "japaneseFontType":0,
+ "englishUsText":"Press △ to access the options in Select difficulty,\nwhich allows you to make changes.",
+ "englishUsFontType":0,
+ "chineseTText":"「選擇難度」中按下△按鈕,即可設定演奏選項",
+ "chineseTFontType":1,
+ "koreanText":"「난이도 선택」에서 △버튼을 누르면\n연주 옵션을 설정할 수 있다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips018",
+ "japaneseText":"演奏のオプション「スコア - 真打」では、\nコンボ数に関係なくスコアを計算する",
+ "japaneseFontType":0,
+ "englishUsText":"Scoring will disregard Combos when\nShin-Uchi is enabled in options.",
+ "englishUsFontType":0,
+ "chineseTText":"在演奏選項「成績 ─ 真打」中,\n連段數不會影響成績",
+ "chineseTFontType":1,
+ "koreanText":"연주 옵션 「스코어 - 진타」일 때는\n콤보수와 상관없이 스코어를 계산한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips019",
+ "japaneseText":"演奏のオプション「とくしゅ - とっくん」では、\n不可が出ると自動で演奏をやり直せる",
+ "japaneseFontType":0,
+ "englishUsText":"The game will restart automatically if you missed\nany notes when Spartan is enabled in options.",
+ "englishUsFontType":0,
+ "chineseTText":"在演奏選項「特殊 ─ 特訓」中,敲出不可後\n將會自動從頭開始演奏",
+ "chineseTFontType":1,
+ "koreanText":"연주 옵션 「특수 - 특훈」일 때 「에구」가\n나오면 자동으로 연주를 다시 시작한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips020",
+ "japaneseText":"「演奏サポート」を使うと、\nふだんよりもクリアしやすくなるよ!",
+ "japaneseFontType":0,
+ "englishUsText":"The game becomes much easier to clear\nwhen the Support feature is enabled!",
+ "englishUsFontType":0,
+ "chineseTText":"使用「演奏支援」的話,\n將會比平常更容易通關喔!",
+ "chineseTFontType":1,
+ "koreanText":"「연주 서포트」를 쓰면\n평소보다 클리어하기 쉬워져!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips021",
+ "japaneseText":"「演奏サポート Lv 1」 では、\n音符の判定がやさしくなる",
+ "japaneseFontType":0,
+ "englishUsText":"Support Lv1\nMusic note recognition area widens",
+ "englishUsFontType":0,
+ "chineseTText":"「演奏支援 Lv 1」 中,\n會放寬音符判定",
+ "chineseTFontType":1,
+ "koreanText":"「연주서포트 Lv 1」일 때는\n음표 판정에 여유가 생긴다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips022",
+ "japaneseText":"「演奏サポート Lv 2」 では、\n「ドン」「カッ」の区別なくボタンが反応する",
+ "japaneseFontType":0,
+ "englishUsText":"Support Lv2\nResponds to any button input whether it is DON or KAT.",
+ "englishUsFontType":0,
+ "chineseTText":"「演奏支援 Lv 2」 中,不論按下「咚」或「咔」按鈕皆算判定",
+ "chineseTFontType":1,
+ "koreanText":"「연주 서포트 Lv 2」일 때는\n「쿵」 「딱」구별 없이 버튼이 반응한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips023",
+ "japaneseText":"「演奏サポート Lv 3」 では、\nミスしてもノルマゲージが減らなくなる",
+ "japaneseFontType":0,
+ "englishUsText":"Support Lv3\nClear gauge does not decrease even if you miss notes.",
+ "englishUsFontType":0,
+ "chineseTText":"「演奏支援 Lv 3」 中,\n即使失誤及格線量表也不會減少",
+ "chineseTFontType":1,
+ "koreanText":"「연주 서포트 Lv 3」일 때는\n실수해도 클리어 게이지가 줄지 않는다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips024",
+ "japaneseText":"「むずかしさをえらぶ」で□ボタンを押すと、\n曲のビンゴカードを見られるよ!",
+ "japaneseFontType":0,
+ "englishUsText":"Press □ at Select difficulty to view\nthe BINGO CARD!",
+ "englishUsFontType":0,
+ "chineseTText":"「選擇難度」中按下□按鈕,\n即可檢視樂曲的賓果卡喔!",
+ "chineseTFontType":1,
+ "koreanText":"「난이도 선택」에서 □버튼을 누르면\n그 곡의 빙고 카드를 볼 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips025",
+ "japaneseText":"演奏ゲームには、曲ごとに9個のお題が設定された\n「ビンゴカード」があるよ!",
+ "japaneseFontType":0,
+ "englishUsText":"For Taiko Mode, each song has a total of\n9 missions on the BINGO CARD!",
+ "englishUsFontType":0,
+ "chineseTText":"演奏遊戲中,每首樂曲\n都設有9道課題的「賓果卡」喔!",
+ "chineseTFontType":1,
+ "koreanText":"연주 모드에는 곡마다 9개의 과제가 설정된\n「빙고 카드」라는 게 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips026",
+ "japaneseText":"「ビンゴカード」の列を揃えると、\nドン小判がゲットできるよ!",
+ "japaneseFontType":0,
+ "englishUsText":"Aligning any straight lines on the BINGO CARD\nwill award you with a DON coin!",
+ "englishUsFontType":0,
+ "chineseTText":"「賓果卡」湊齊成一列時,\n即可獲得咚小判喔!",
+ "chineseTFontType":1,
+ "koreanText":"「빙고 카드」의 열을 맞추면\n동 전을 겟할 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips027",
+ "japaneseText":"「ビンゴカード」のお題を9個全部達成してから、\nビンゴカードを見ると……?",
+ "japaneseFontType":0,
+ "englishUsText":"If you take a look at the BINGO CARD\nafter all 9 missions are completed...?",
+ "englishUsFontType":0,
+ "chineseTText":"在全部達成「賓果卡」的9道課題後,\n檢視賓果卡的話……?",
+ "chineseTFontType":1,
+ "koreanText":"「빙고 카드」의 과제를 9개 전부 달성한 다음\n빙고 카드를 보면……?",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips028",
+ "japaneseText":"ジャンル 「フレンド」 を選ぶとフレンドが最後に\n遊んだ曲でいっしょに演奏できるよ!",
+ "japaneseFontType":0,
+ "englishUsText":"If Friend genre is selected, you can play the\nlast song that your friend played, together!",
+ "englishUsFontType":0,
+ "chineseTText":"選擇類型 「好友」 後,\n可以一同演奏好友最後遊玩的樂曲喔!",
+ "chineseTFontType":1,
+ "koreanText":"장르 「프렌드」를 고르면 프렌드가\n마지막에 플레이한 곡을 같이 연주할 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips029",
+ "japaneseText":"サブメニューの演奏設定で\n「トレーニング演奏」を選べるよ!",
+ "japaneseFontType":0,
+ "englishUsText":"Training Mode can be selected via\nthe Submenu under Game Settings!",
+ "englishUsFontType":0,
+ "chineseTText":"可在子選單的演奏設定\n選擇「訓練演奏」喔!",
+ "chineseTFontType":1,
+ "koreanText":"서브 메뉴의 연주 설정에서\n「트레이닝 연주」를 고를 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips030",
+ "japaneseText":"サブメニューの演奏設定で「ベストリプレイ演奏」を\n選ぶと過去の自分と競争できるよ!",
+ "japaneseFontType":0,
+ "englishUsText":"Selecting Best replay via the Submenu under Game settings\nallows you to challenge your former self!",
+ "englishUsFontType":0,
+ "chineseTText":"在子選單的演奏設定選擇「最佳重播演奏」,\n便可和過去的自己一較高下喔!",
+ "chineseTFontType":1,
+ "koreanText":"과거의 나와 겨루는 「베스트 리플레이 연주」는\n서브 메뉴의 연주 설정에서 고를 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips031",
+ "japaneseText":"「太鼓ランクマッチ」で、他のプレイヤーの\nゴーストどん(リプレイデータ)と腕試し!",
+ "japaneseFontType":0,
+ "englishUsText":"Pit your skills against other players'\nGhosts in Taiko Ranked Match!",
+ "englishUsFontType":0,
+ "chineseTText":"在「太鼓線上排名戰」,\n和其他玩家的複製咚(重播資料)較量身手!",
+ "chineseTFontType":1,
+ "koreanText":"「태고 랭크 매치」에서 다른 플레이어의 \n고스트동 (리플레이 데이터)과 승부!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips032",
+ "japaneseText":"「太鼓ランクマッチ」は、\n演奏終了時のスコアの多さで勝敗が決まる",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Ranked Match determines the player\nwith the highest score at the end as the winner.",
+ "englishUsFontType":0,
+ "chineseTText":"「太鼓線上排名戰」會依照\n演奏結束時的成績多寡決定勝負",
+ "chineseTFontType":1,
+ "koreanText":"「태고 랭크 매치」에서는\n연주 종료 시의 스코어로 승부를 낸다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips033",
+ "japaneseText":"「太鼓ランクマッチ」でランクが上がると、\n専用の「称号」がゲットできるよ!",
+ "japaneseFontType":0,
+ "englishUsText":"When you increase your rank via Taiko Ranked\nMatch, exclusive Titles may be awarded!",
+ "englishUsFontType":0,
+ "chineseTText":"在「太鼓線上排名戰」提昇階級後,\n即可獲得專屬的「稱號」!",
+ "chineseTFontType":1,
+ "koreanText":"「태고 랭크 매치」에서 랭크가 오르면\n전용 「칭호」를 얻을 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips034",
+ "japaneseText":"「太鼓ランクマッチ」は、対戦中にプレイを中断すると\nペナルティがあるので注意しよう",
+ "japaneseFontType":0,
+ "englishUsText":"Please take note that game interruptions during\nTaiko Ranked Match will have penalties!",
+ "englishUsFontType":0,
+ "chineseTText":"「太鼓線上排名戰」需要注意的是,\n對戰時中斷遊玩會得到懲罰",
+ "chineseTFontType":1,
+ "koreanText":"「태고 랭크 매치」에서 대전 중인 플레이를\n중단하면 페널티가 존재하니 주의하자",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips035",
+ "japaneseText":"「太鼓ランクマッチ」のランキングは、\n「対戦ポイント」を多く集めるほど上位になれる",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Ranked Match ranking determines your rank\naccording to total VS Points accumulated.",
+ "englishUsFontType":0,
+ "chineseTText":"「太鼓線上排名戰」的排行榜\n蒐集越多「對戰點數」可躋身前段排名",
+ "chineseTFontType":1,
+ "koreanText":"「태고 랭크 매치」의 랭킹은 「대전 포인트」를\n많이 모을수록 상위로 올라간다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips036",
+ "japaneseText":"「カスタマイズルーム」では、\nどんちゃんの見た目や称号を変えられるよ!",
+ "japaneseFontType":0,
+ "englishUsText":"Customization for DON-chan's appearance or\nTitle can be changed in Customize Room!",
+ "englishUsFontType":0,
+ "chineseTText":"「自訂房間」中,\n可以更改小咚的外觀與稱號喔!",
+ "chineseTFontType":1,
+ "koreanText":"「커스터마이즈 룸」에서는\n동이의 겉모습이나 칭호를 바꿀 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips037",
+ "japaneseText":"友達やライバルに一言「あいさつ」を設定しよう!\n「カスタマイズルーム」で設定できるよ!",
+ "japaneseFontType":0,
+ "englishUsText":"Greetings for Friend or Rival session\ncan be set in Customize Room!",
+ "englishUsFontType":0,
+ "chineseTText":"設定給好友與對手的「寒暄」短句吧!\n可在「自訂房間」進行設定!",
+ "chineseTFontType":1,
+ "koreanText":"친구와 라이벌에게 건낼 「인사」를 설정하자!\n「커스터마이즈 룸」에서 설정 할 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips038",
+ "japaneseText":"「アイテム玉手箱」では、集めた「ドン小判」で\nアイテムをもらえるよ!",
+ "japaneseFontType":0,
+ "englishUsText":"Trade your DON coins for Treasure Boxes\nin order to receive various items!",
+ "englishUsFontType":0,
+ "chineseTText":"在「道具玉匣子」中,\n使用收集到的「咚小判」可以獲得道具喔!",
+ "chineseTFontType":1,
+ "koreanText":"「아이템 뽑기 상자」에서는\n모아놓은 「동 전」으로 아이템을 얻을 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips039",
+ "japaneseText":"「ドン小判」は、ビンゴを揃えたり、\nフレンドとセッションしたりすると集められるよ!",
+ "japaneseFontType":0,
+ "englishUsText":"DON coins may be awarded via\nBINGO and Friend sessions!",
+ "englishUsFontType":0,
+ "chineseTText":"「咚小判」可以透過賓果湊齊,\n或是與好友演奏來收集到喔!",
+ "chineseTFontType":1,
+ "koreanText":"「동 전」은 빙고를 맞추거나, \n프렌드와 세션을 하면 모을 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips040",
+ "japaneseText":"太鼓コントローラーで遊ぶときは、\n操作タイプを「タイプ4(太鼓)」にしよう",
+ "japaneseFontType":0,
+ "englishUsText":"Select Type 4 (Taiko) under controller type\nwhen playing with the Taiko Controller.",
+ "englishUsFontType":0,
+ "chineseTText":"使用太鼓控制器遊玩時,\n請將操作類型設定為「類型4(太鼓)」",
+ "chineseTFontType":1,
+ "koreanText":"북 컨트롤러로 플레이할 때는\n조작 타입을 「타입 4 (북)」로 해놓자",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips041",
+ "japaneseText":"「ドン」「カッ」のボタン割り当ては\n「ゲーム設定」>「操作タイプ」で変更できる",
+ "japaneseFontType":0,
+ "englishUsText":"You can reassign the Don and Kat button input via\nGame settings > Controller",
+ "englishUsFontType":0,
+ "chineseTText":"「咚」「咔」的按鈕分配\n可在「遊戲設定」>「 操作類型」進行變更",
+ "chineseTFontType":1,
+ "koreanText":"「쿵」 「딱」의 버튼 설정은\n「게임설정」 > 「조작 타입」에서 변경할 수 있다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips042",
+ "japaneseText":"音符が思ったように叩けないと感じたら\n「音と判定の調整」を試してみよう",
+ "japaneseFontType":0,
+ "englishUsText":"Try performing Calibration if music\nnotes are not responsive to your inputs!",
+ "englishUsFontType":0,
+ "chineseTText":"若無法隨心所欲敲出音符的話,\n嘗試一下「聲音與判定的調整」吧",
+ "chineseTFontType":1,
+ "koreanText":"음표의 판정이 어긋난 것 같을 때는\n「소리와 판정 조정」을 해보자",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips043",
+ "japaneseText":"「ゲーム設定」で演奏ゲームの\n「あそびかた説明」を見ることができる",
+ "japaneseFontType":0,
+ "englishUsText":"View the game tutorial found under Game Settings!",
+ "englishUsFontType":0,
+ "chineseTText":"可以在「遊戲設定」檢視演奏遊戲的「遊戲玩法說明」",
+ "chineseTFontType":1,
+ "koreanText":"「게임 설정」에서 연주 모드의\n「플레이 방법 설명」을 볼 수 있다",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips044",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"Tips test data 044",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips045",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"Tips test data 045",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips046",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"Tips test data 046",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips047",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"Tips test data 047",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips048",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"Tips test data 048",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips049",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"Tips test data 049",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"tips050",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"Tips test data 050",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_guide_auto",
+ "japaneseText":"判定自動調整をする",
+ "japaneseFontType":0,
+ "englishUsText":"Automatically calibrate recognition area",
+ "englishUsFontType":0,
+ "chineseTText":"設為判定自動調整",
+ "chineseTFontType":1,
+ "koreanText":"판정을 자동 조절한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_se_test",
+ "japaneseText":"効果音テスト",
+ "japaneseFontType":0,
+ "englishUsText":"Sound Effect Test",
+ "englishUsFontType":0,
+ "chineseTText":"效果音測試",
+ "chineseTFontType":1,
+ "koreanText":"효과음 테스트",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_dora_balloon01",
+ "japaneseText":"よーしっ!",
+ "japaneseFontType":0,
+ "englishUsText":"Alright!",
+ "englishUsFontType":0,
+ "chineseTText":"好─!",
+ "chineseTFontType":1,
+ "koreanText":"좋~아!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_dora_balloon02",
+ "japaneseText":"いっくぞー!",
+ "japaneseFontType":0,
+ "englishUsText":"LET'S GO!",
+ "englishUsFontType":0,
+ "chineseTText":"要開始囉!",
+ "chineseTFontType":1,
+ "koreanText":"간다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_dora_balloon03",
+ "japaneseText":"ゴー!ゴー!",
+ "japaneseFontType":0,
+ "englishUsText":"GO! GO!",
+ "englishUsFontType":0,
+ "chineseTText":"GO!GO!",
+ "chineseTFontType":1,
+ "koreanText":"고~! 고~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_dora_balloon04",
+ "japaneseText":"ぎゃっ",
+ "japaneseFontType":0,
+ "englishUsText":"Ouch!",
+ "englishUsFontType":0,
+ "chineseTText":"呀啊!",
+ "chineseTFontType":1,
+ "koreanText":"으악",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_dora_balloon05",
+ "japaneseText":"あわわわ",
+ "japaneseFontType":0,
+ "englishUsText":"Awaaaaaa",
+ "englishUsFontType":0,
+ "chineseTText":"啊哇哇哇",
+ "chineseTFontType":1,
+ "koreanText":"으아아아",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_dora_balloon06",
+ "japaneseText":"あらあら",
+ "japaneseFontType":0,
+ "englishUsText":"Aaaaaaaa",
+ "englishUsFontType":0,
+ "chineseTText":"哎呀呀",
+ "chineseTFontType":1,
+ "koreanText":"어라라",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_dora_balloon07",
+ "japaneseText":"わーい!",
+ "japaneseFontType":0,
+ "englishUsText":"YAY!",
+ "englishUsFontType":0,
+ "chineseTText":"哇─!",
+ "chineseTFontType":1,
+ "koreanText":"와~아!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_dora_balloon08",
+ "japaneseText":"ふふふ・・・",
+ "japaneseFontType":0,
+ "englishUsText":"Hehehe",
+ "englishUsFontType":0,
+ "chineseTText":"呵呵呵……",
+ "chineseTFontType":1,
+ "koreanText":"후후후…",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_dora_balloon09",
+ "japaneseText":"イイ感じ!",
+ "japaneseFontType":0,
+ "englishUsText":"Nice going!",
+ "englishUsFontType":0,
+ "chineseTText":"感覺不錯!",
+ "chineseTFontType":1,
+ "koreanText":"느낌 좋은데!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_dora_balloon10",
+ "japaneseText":"タケコプター",
+ "japaneseFontType":0,
+ "englishUsText":"Take-Copter",
+ "englishUsFontType":0,
+ "chineseTText":"竹蜻蜓!",
+ "chineseTFontType":1,
+ "koreanText":"대나무 헬리콥터~",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_kitty_balloon01",
+ "japaneseText":"よっ!",
+ "japaneseFontType":0,
+ "englishUsText":"Yo!",
+ "englishUsFontType":0,
+ "chineseTText":"呦!",
+ "chineseTFontType":1,
+ "koreanText":"이얏!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_kitty_balloon02",
+ "japaneseText":"はっ!",
+ "japaneseFontType":0,
+ "englishUsText":"Hah!",
+ "englishUsFontType":0,
+ "chineseTText":"喝!",
+ "chineseTFontType":1,
+ "koreanText":"핫!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_kitty_balloon03",
+ "japaneseText":"やっ!",
+ "japaneseFontType":0,
+ "englishUsText":"Yah!",
+ "englishUsFontType":0,
+ "chineseTText":"呀!",
+ "chineseTFontType":1,
+ "koreanText":"얍!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_kitty_balloon04",
+ "japaneseText":"ううう~",
+ "japaneseFontType":0,
+ "englishUsText":"Uuuuuu~!",
+ "englishUsFontType":0,
+ "chineseTText":"嗚嗚嗚~!",
+ "chineseTFontType":1,
+ "koreanText":"으으으~",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_kitty_balloon05",
+ "japaneseText":"ふにゅ~",
+ "japaneseFontType":0,
+ "englishUsText":"Hunyuuuu~",
+ "englishUsFontType":0,
+ "chineseTText":"呼喲~",
+ "chineseTFontType":1,
+ "koreanText":"이익~",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_kitty_balloon06",
+ "japaneseText":"ひぃ~",
+ "japaneseFontType":0,
+ "englishUsText":"Heeeeee~",
+ "englishUsFontType":0,
+ "chineseTText":"咿~",
+ "chineseTFontType":1,
+ "koreanText":"으앙~",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_kitty_balloon07",
+ "japaneseText":"きゃははは!",
+ "japaneseFontType":0,
+ "englishUsText":"Kyahahaha!",
+ "englishUsFontType":0,
+ "chineseTText":"呀哈哈哈!",
+ "chineseTFontType":1,
+ "koreanText":"꺄하하하!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_kitty_balloon08",
+ "japaneseText":"うふふふふ!",
+ "japaneseFontType":0,
+ "englishUsText":"Ufufufufu!",
+ "englishUsFontType":0,
+ "chineseTText":"呵呵呵呵!",
+ "chineseTFontType":1,
+ "koreanText":"우후후후후!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_kitty_balloon09",
+ "japaneseText":"やったー!",
+ "japaneseFontType":0,
+ "englishUsText":"I DID IT!",
+ "englishUsFontType":0,
+ "chineseTText":"成功了!",
+ "chineseTFontType":1,
+ "koreanText":"됐다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_kitty_balloon10",
+ "japaneseText":"わーい!わーい!",
+ "japaneseFontType":0,
+ "englishUsText":"Yay yay!",
+ "englishUsFontType":0,
+ "chineseTText":"好欸~好欸~!",
+ "chineseTFontType":1,
+ "koreanText":"만세~ 만세~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_miku_balloon01",
+ "japaneseText":"よっ!",
+ "japaneseFontType":0,
+ "englishUsText":"Yo!",
+ "englishUsFontType":0,
+ "chineseTText":"呦!",
+ "chineseTFontType":1,
+ "koreanText":"이얏!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_miku_balloon02",
+ "japaneseText":"はっ!",
+ "japaneseFontType":0,
+ "englishUsText":"Hah!",
+ "englishUsFontType":0,
+ "chineseTText":"喝!",
+ "chineseTFontType":1,
+ "koreanText":"핫!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_miku_balloon03",
+ "japaneseText":"やっ!",
+ "japaneseFontType":0,
+ "englishUsText":"Yah!",
+ "englishUsFontType":0,
+ "chineseTText":"呀!",
+ "chineseTFontType":1,
+ "koreanText":"얍!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_miku_balloon04",
+ "japaneseText":"きゃっ!",
+ "japaneseFontType":0,
+ "englishUsText":"Kyaa!",
+ "englishUsFontType":0,
+ "chineseTText":"呀啊!",
+ "chineseTFontType":1,
+ "koreanText":"꺄악!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_miku_balloon05",
+ "japaneseText":"あれっ!?",
+ "japaneseFontType":0,
+ "englishUsText":"Huh?!",
+ "englishUsFontType":0,
+ "chineseTText":"奇怪!?",
+ "chineseTFontType":1,
+ "koreanText":"어라!?",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_miku_balloon06",
+ "japaneseText":"うそっ!?",
+ "japaneseFontType":0,
+ "englishUsText":"No way?!",
+ "englishUsFontType":0,
+ "chineseTText":"不會吧!?",
+ "chineseTFontType":1,
+ "koreanText":"농담이지!?",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_miku_balloon07",
+ "japaneseText":"よしよ~し!",
+ "japaneseFontType":0,
+ "englishUsText":"Steady!",
+ "englishUsFontType":0,
+ "chineseTText":"很好很好~!",
+ "chineseTFontType":1,
+ "koreanText":"좋아 좋아~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_miku_balloon08",
+ "japaneseText":"まだまだ~!",
+ "japaneseFontType":0,
+ "englishUsText":"Not over yet~!",
+ "englishUsFontType":0,
+ "chineseTText":"還沒完呢~!",
+ "chineseTFontType":1,
+ "koreanText":"아직이야~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_miku_balloon09",
+ "japaneseText":"おっけ~い!",
+ "japaneseFontType":0,
+ "englishUsText":"OKAYY!",
+ "englishUsFontType":0,
+ "chineseTText":"OK~!",
+ "chineseTFontType":1,
+ "koreanText":"오케이~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_miku_balloon10",
+ "japaneseText":"いっくよ~!",
+ "japaneseFontType":0,
+ "englishUsText":"HERE I GO~!",
+ "englishUsFontType":0,
+ "chineseTText":"我要上囉~!",
+ "chineseTFontType":1,
+ "koreanText":"간다~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_pac_balloon01",
+ "japaneseText":"POWER UP",
+ "japaneseFontType":0,
+ "englishUsText":"POWER UP",
+ "englishUsFontType":0,
+ "chineseTText":"POWER UP",
+ "chineseTFontType":1,
+ "koreanText":"POWER UP",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_tekken_balloon01",
+ "japaneseText":"じゃっっ!!",
+ "japaneseFontType":0,
+ "englishUsText":"Ja!!",
+ "englishUsFontType":0,
+ "chineseTText":"呀啊!!",
+ "chineseTFontType":1,
+ "koreanText":"야앗!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_tekken_balloon02",
+ "japaneseText":"はぁっっっ!!",
+ "japaneseFontType":0,
+ "englishUsText":"Haaa!!",
+ "englishUsFontType":0,
+ "chineseTText":"喝啊!!",
+ "chineseTFontType":1,
+ "koreanText":"하아아아앗!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_tekken_balloon03",
+ "japaneseText":"ふんっ!!",
+ "japaneseFontType":0,
+ "englishUsText":"Hmph!!",
+ "englishUsFontType":0,
+ "chineseTText":"哼!!",
+ "chineseTFontType":1,
+ "koreanText":"흐음!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_tekken_balloon04",
+ "japaneseText":"なにっ!?",
+ "japaneseFontType":0,
+ "englishUsText":"What!?",
+ "englishUsFontType":0,
+ "chineseTText":"什麼!?",
+ "chineseTFontType":1,
+ "koreanText":"이런!?",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_tekken_balloon05",
+ "japaneseText":"ぐあっ!!",
+ "japaneseFontType":0,
+ "englishUsText":"Guagh!!",
+ "englishUsFontType":0,
+ "chineseTText":"咕啊!!",
+ "chineseTFontType":1,
+ "koreanText":"크윽!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_tekken_balloon06",
+ "japaneseText":"かはっ!!",
+ "japaneseFontType":0,
+ "englishUsText":"Ku-hagh!!",
+ "englishUsFontType":0,
+ "chineseTText":"嘎哈!!",
+ "chineseTFontType":1,
+ "koreanText":"커헉!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_tekken_balloon07",
+ "japaneseText":"そこじゃーっ!",
+ "japaneseFontType":0,
+ "englishUsText":"Well then!",
+ "englishUsFontType":0,
+ "chineseTText":"在那裡!",
+ "chineseTFontType":1,
+ "koreanText":"거기구나!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_tekken_balloon08",
+ "japaneseText":"まだまだ~っ!",
+ "japaneseFontType":0,
+ "englishUsText":"Not yet~!",
+ "englishUsFontType":0,
+ "chineseTText":"還沒結束呢~!",
+ "chineseTFontType":1,
+ "koreanText":"아직 멀었다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_tekken_balloon09",
+ "japaneseText":"甘いわーっ!",
+ "japaneseFontType":0,
+ "englishUsText":"Naive!",
+ "englishUsFontType":0,
+ "chineseTText":"太天真了─!",
+ "chineseTFontType":1,
+ "koreanText":"무르구나ー!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_tekken_balloon10",
+ "japaneseText":"どぅりやぁー!!!",
+ "japaneseFontType":0,
+ "englishUsText":"Doryaaa!!!",
+ "englishUsFontType":0,
+ "chineseTText":"哦呀啊─!!!",
+ "chineseTFontType":1,
+ "koreanText":"타앗ー!!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"best_replay_add_txt",
+ "japaneseText":"※ベストリプレイ中は、フレンドやゲストキャラたちとの演奏はできません",
+ "japaneseFontType":0,
+ "englishUsText":"※Friends or guest characters will not be available during best replay.",
+ "englishUsFontType":0,
+ "chineseTText":"※最佳重播中,無法與好友或客串角色們進行演奏",
+ "chineseTFontType":1,
+ "koreanText":"※베스트 리플레이 중엔 프렌드나 게스트 캐릭터와 연주할 수 없습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"course_all",
+ "japaneseText":"ぜんぶ",
+ "japaneseFontType":0,
+ "englishUsText":"All",
+ "englishUsFontType":0,
+ "chineseTText":"全部",
+ "chineseTFontType":1,
+ "koreanText":"전부",
+ "koreanFontType":2
+ },
+ {
+ "key":"course_easy_txt",
+ "japaneseText":"かんたんを基準にする",
+ "japaneseFontType":0,
+ "englishUsText":"According to Easy",
+ "englishUsFontType":0,
+ "chineseTText":"以簡單為基準",
+ "chineseTFontType":1,
+ "koreanText":"쉬움을 기준으로 설정한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"course_hard_txt",
+ "japaneseText":"むずかしいを基準にする",
+ "japaneseFontType":0,
+ "englishUsText":"According to Hard",
+ "englishUsFontType":0,
+ "chineseTText":"以困難為基準",
+ "chineseTFontType":1,
+ "koreanText":"어려움을 기준으로 설정한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"course_mania_txt",
+ "japaneseText":"おにを基準にする",
+ "japaneseFontType":0,
+ "englishUsText":"According to Extreme",
+ "englishUsFontType":0,
+ "chineseTText":"以魔王為基準",
+ "chineseTFontType":1,
+ "koreanText":"귀신을 기준으로 설정한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"course_normal_txt",
+ "japaneseText":"ふつうを基準にする",
+ "japaneseFontType":0,
+ "englishUsText":"According to Normal",
+ "englishUsFontType":0,
+ "chineseTText":"以普通為基準",
+ "chineseTFontType":1,
+ "koreanText":"보통을 기준으로 설정한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"couse_all_txt",
+ "japaneseText":"「ならび順」ソートや「クリア状況」フィルタの基準となるむずかしさを指定する機能",
+ "japaneseFontType":0,
+ "englishUsText":"Filter song difficulty according to Sort type or Cleared status.",
+ "englishUsFontType":0,
+ "chineseTText":"指定「排序順序」分類或「通關狀況」篩選的難度為基準",
+ "chineseTFontType":1,
+ "koreanText":"「정렬 순서」나 「클리어 상황」필터의 기준으로 삼을 난이도를 설정하는 기능",
+ "koreanFontType":2
+ },
+ {
+ "key":"disp_off",
+ "japaneseText":"表示しない",
+ "japaneseFontType":0,
+ "englishUsText":"No display",
+ "englishUsFontType":0,
+ "chineseTText":"不顯示",
+ "chineseTFontType":1,
+ "koreanText":"표시 안 한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"disp_on",
+ "japaneseText":"表示する",
+ "japaneseFontType":0,
+ "englishUsText":"Display",
+ "englishUsFontType":0,
+ "chineseTText":"顯示",
+ "chineseTFontType":1,
+ "koreanText":"표시한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"dualplay_add_txt",
+ "japaneseText":"※2人プレイ中の演奏設定は「通常演奏」になります",
+ "japaneseFontType":0,
+ "englishUsText":"※Game settings set to Normal Play for 2 players.",
+ "englishUsFontType":0,
+ "chineseTText":"※2人模式中的演奏設定為「一般演奏」",
+ "chineseTFontType":1,
+ "koreanText":"※둘이서 플레이 할 때의 연주 설정은 「일반 연주」로 고정됩니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_type_normal",
+ "japaneseText":"通常演奏",
+ "japaneseFontType":0,
+ "englishUsText":"Normal Play",
+ "englishUsFontType":0,
+ "chineseTText":"一般演奏",
+ "chineseTFontType":1,
+ "koreanText":"일반 연주",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_type_replay",
+ "japaneseText":"ベストリプレイ演奏",
+ "japaneseFontType":0,
+ "englishUsText":"Best replay",
+ "englishUsFontType":0,
+ "chineseTText":"最佳重播演奏",
+ "chineseTFontType":1,
+ "koreanText":"베스트 리플레이 연주",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_type_training",
+ "japaneseText":"トレーニング演奏",
+ "japaneseFontType":0,
+ "englishUsText":"Training",
+ "englishUsFontType":0,
+ "chineseTText":"訓練演奏",
+ "chineseTFontType":1,
+ "koreanText":"트레이닝 연주",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_type_txt1",
+ "japaneseText":"通常の演奏。フレンドやゲストキャラと一緒に演奏もできる",
+ "japaneseFontType":0,
+ "englishUsText":"Normal Play. Play together with friends or guest characters!",
+ "englishUsFontType":0,
+ "chineseTText":"一般演奏。也可和好友或客串角色一同演奏",
+ "chineseTFontType":1,
+ "koreanText":"일반 연주. 프렌드나 게스트 캐릭터와 함께 연주할 수도 있다",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_type_txt2",
+ "japaneseText":"自分のゴーストどんを2P側に表示した演奏",
+ "japaneseFontType":0,
+ "englishUsText":"Have your own ghost join as 2P!",
+ "englishUsFontType":0,
+ "chineseTText":"將自己的複製咚顯示為2P的演奏",
+ "chineseTFontType":1,
+ "koreanText":"자신의 고스트동을 2P 쪽에 표시하고 연주",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_type_txt3",
+ "japaneseText":"早送りや早戻しなどで曲中の好きな場所をじっくり練習する機能",
+ "japaneseFontType":0,
+ "englishUsText":"With fast forward/backward you can now practice any portion of the song better!",
+ "englishUsFontType":0,
+ "chineseTText":"可利用快轉和倒轉在樂曲中喜歡的地方紮實練習",
+ "chineseTFontType":1,
+ "koreanText":"빨리 감기나 되감기를 사용해 곡에서 원하는 곳을 차분하게 연주하는 모드",
+ "koreanFontType":2
+ },
+ {
+ "key":"filter_no_star_txt",
+ "japaneseText":"お気に入り曲だけ表示する機能",
+ "japaneseFontType":0,
+ "englishUsText":"Toggle favorite only",
+ "englishUsFontType":0,
+ "chineseTText":"僅顯示中意樂曲功能",
+ "chineseTFontType":1,
+ "koreanText":"즐겨찾기한 곡만 표시하는 기능",
+ "koreanFontType":2
+ },
+ {
+ "key":"filter_no_txt",
+ "japaneseText":"クリア状況で絞りこむ機能",
+ "japaneseFontType":0,
+ "englishUsText":"According to Cleared status",
+ "englishUsFontType":0,
+ "chineseTText":"依通關狀況篩選功能",
+ "chineseTFontType":1,
+ "koreanText":"클리어 상황으로 선별하는 기능",
+ "koreanFontType":2
+ },
+ {
+ "key":"filter_not_clear_txt",
+ "japaneseText":"未クリアの曲だけ表示",
+ "japaneseFontType":0,
+ "englishUsText":"Display Not Cleared songs",
+ "englishUsFontType":0,
+ "chineseTText":"僅顯示尚未通關樂曲",
+ "chineseTFontType":1,
+ "koreanText":"클리어하지 않은 곡만 표시",
+ "koreanFontType":2
+ },
+ {
+ "key":"filter_not_fullcombo_txt",
+ "japaneseText":"未フルコンボの曲だけ表示",
+ "japaneseFontType":0,
+ "englishUsText":"Display Not Full Combo songs",
+ "englishUsFontType":0,
+ "chineseTText":"僅顯示尚未全連段樂曲",
+ "chineseTFontType":1,
+ "koreanText":"풀 콤보를 달성하지 않은 곡만 표시",
+ "koreanFontType":2
+ },
+ {
+ "key":"filter_not_play_txt",
+ "japaneseText":"未プレイの曲だけ表示",
+ "japaneseFontType":0,
+ "englishUsText":"Display Not played songs",
+ "englishUsFontType":0,
+ "chineseTText":"僅顯示尚未遊玩樂曲",
+ "chineseTFontType":1,
+ "koreanText":"플레이하지 않은 곡만 표시",
+ "koreanFontType":2
+ },
+ {
+ "key":"filter_only_star_txt",
+ "japaneseText":"お気に入り曲だけ表示",
+ "japaneseFontType":0,
+ "englishUsText":"Display favorite only",
+ "englishUsFontType":0,
+ "chineseTText":"僅顯示中意樂曲",
+ "chineseTFontType":1,
+ "koreanText":"즐겨찾기한 곡만 표시",
+ "koreanFontType":2
+ },
+ {
+ "key":"hiscore_nor_txt",
+ "japaneseText":"自己ベストを表示する",
+ "japaneseFontType":0,
+ "englishUsText":"Display high score (Normal)",
+ "englishUsFontType":0,
+ "chineseTText":"顯示一般自我最佳紀錄",
+ "chineseTFontType":1,
+ "koreanText":"마이 베스트를 표시한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"hiscore_normal",
+ "japaneseText":"通常自己ベスト",
+ "japaneseFontType":0,
+ "englishUsText":"Normal high Score",
+ "englishUsFontType":0,
+ "chineseTText":"一般自我最佳紀錄",
+ "chineseTFontType":1,
+ "koreanText":"일반 마이 베스트",
+ "koreanFontType":2
+ },
+ {
+ "key":"hiscore_off_txt",
+ "japaneseText":"「曲をえらぶ」ときに自己ベストを表示する機能",
+ "japaneseFontType":0,
+ "englishUsText":"Display high score in Select song screen",
+ "englishUsFontType":0,
+ "chineseTText":"「選擇樂曲」時,顯示自我最佳紀錄功能",
+ "chineseTFontType":1,
+ "koreanText":"「곡 선택」 화면일 때 마이 베스트를 표시하는 기능",
+ "koreanFontType":2
+ },
+ {
+ "key":"hiscore_shinuchi",
+ "japaneseText":"真打自己ベスト",
+ "japaneseFontType":0,
+ "englishUsText":"Shin-Uchi high score",
+ "englishUsFontType":0,
+ "chineseTText":"真打自我最佳紀錄",
+ "chineseTFontType":1,
+ "koreanText":"진타 마이 베스트",
+ "koreanFontType":2
+ },
+ {
+ "key":"hiscore_sin_txt",
+ "japaneseText":"真打の自己ベストを表示する",
+ "japaneseFontType":0,
+ "englishUsText":"Display high score (Shin-Uchi)",
+ "englishUsFontType":0,
+ "chineseTText":"顯示真打自我最佳紀錄",
+ "chineseTFontType":1,
+ "koreanText":"진타 마이 베스트를 표시한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"misbin_off_txt",
+ "japaneseText":"「曲をえらぶ」ときにミッションビンゴの状況を表示する機能",
+ "japaneseFontType":0,
+ "englishUsText":"Display Mission BINGO progress in Select song screen",
+ "englishUsFontType":0,
+ "chineseTText":"「選擇樂曲」時,顯示任務賓果狀況功能",
+ "chineseTFontType":1,
+ "koreanText":"「곡 선택」 화면일 때 미션 빙고 상황을 표시하는 기능",
+ "koreanFontType":2
+ },
+ {
+ "key":"misbin_on_txt",
+ "japaneseText":"ミッションビンゴの達成状況を表示",
+ "japaneseFontType":0,
+ "englishUsText":"Display Mission BINGO progress",
+ "englishUsFontType":0,
+ "chineseTText":"顯示任務賓果的達成狀況",
+ "chineseTFontType":1,
+ "koreanText":"미션 빙고 달성 상황을 표시",
+ "koreanFontType":2
+ },
+ {
+ "key":"not_clear",
+ "japaneseText":"未クリア",
+ "japaneseFontType":0,
+ "englishUsText":"Not Cleared",
+ "englishUsFontType":0,
+ "chineseTText":"尚未通關",
+ "chineseTFontType":1,
+ "koreanText":"미 클리어",
+ "koreanFontType":2
+ },
+ {
+ "key":"not_fullcombo",
+ "japaneseText":"未フルコンボ",
+ "japaneseFontType":0,
+ "englishUsText":"Not Full Combo",
+ "englishUsFontType":0,
+ "chineseTText":"尚未全連段",
+ "chineseTFontType":1,
+ "koreanText":"미 풀 콤보",
+ "koreanFontType":2
+ },
+ {
+ "key":"not_play",
+ "japaneseText":"未プレイ",
+ "japaneseFontType":0,
+ "englishUsText":"Not Played",
+ "englishUsFontType":0,
+ "chineseTText":"尚未遊玩",
+ "chineseTFontType":1,
+ "koreanText":"미 플레이",
+ "koreanFontType":2
+ },
+ {
+ "key":"setting_off",
+ "japaneseText":"設定しない",
+ "japaneseFontType":0,
+ "englishUsText":"OFF",
+ "englishUsFontType":0,
+ "chineseTText":"不設定",
+ "chineseTFontType":1,
+ "koreanText":"설정 안 한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"setting_on",
+ "japaneseText":"設定する",
+ "japaneseFontType":0,
+ "englishUsText":"ON",
+ "englishUsFontType":0,
+ "chineseTText":"設定",
+ "chineseTFontType":1,
+ "koreanText":"설정한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"sort_genre",
+ "japaneseText":"ジャンル順",
+ "japaneseFontType":0,
+ "englishUsText":"Genre",
+ "englishUsFontType":0,
+ "chineseTText":"依類型",
+ "chineseTFontType":1,
+ "koreanText":"장르 순",
+ "koreanFontType":2
+ },
+ {
+ "key":"sort_genre_txt",
+ "japaneseText":"ジャンルの順に並べる",
+ "japaneseFontType":0,
+ "englishUsText":"According to Genre",
+ "englishUsFontType":0,
+ "chineseTText":"依類型排序",
+ "chineseTFontType":1,
+ "koreanText":"장르 순으로 정렬한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"sort_star",
+ "japaneseText":"★の数順",
+ "japaneseFontType":0,
+ "englishUsText":"According to ★",
+ "englishUsFontType":0,
+ "chineseTText":"依★數量",
+ "chineseTFontType":1,
+ "koreanText":"★숫자 순",
+ "koreanFontType":2
+ },
+ {
+ "key":"sort_star_txt",
+ "japaneseText":"★の数が少ない順に並べる",
+ "japaneseFontType":0,
+ "englishUsText":"Ascending ★",
+ "englishUsFontType":0,
+ "chineseTText":"依★數量升序",
+ "chineseTFontType":1,
+ "koreanText":"★의 개수가 적은 순으로 정렬한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"sortfilter_add_txt",
+ "japaneseText":"※むずかしさを「ぜんぶ」にしていると「ならび順」「クリア状況」は選択できません",
+ "japaneseFontType":0,
+ "englishUsText":"※Unable to select Sort type or Cleared status when diffculty is set to all.",
+ "englishUsFontType":0,
+ "chineseTText":"※若是將難度設為「全部」,將無法選擇「排序順序」「通關狀況」",
+ "chineseTFontType":1,
+ "koreanText":"※난이도를 「전부」로 설정해 두면 「정렬 순서」 「클리어 상황」필터는 선택할 수 없습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"submenu_course",
+ "japaneseText":"むずかしさ",
+ "japaneseFontType":0,
+ "englishUsText":"Difficulty",
+ "englishUsFontType":0,
+ "chineseTText":"難度",
+ "chineseTFontType":1,
+ "koreanText":"난이도",
+ "koreanFontType":2
+ },
+ {
+ "key":"submenu_disp_bingo",
+ "japaneseText":"ミッションビンゴ表示",
+ "japaneseFontType":0,
+ "englishUsText":"Mission BINGO display",
+ "englishUsFontType":0,
+ "chineseTText":"顯示任務賓果",
+ "chineseTFontType":1,
+ "koreanText":"미션 빙고 표시",
+ "koreanFontType":2
+ },
+ {
+ "key":"submenu_disp_hiscore",
+ "japaneseText":"自己ベスト表示",
+ "japaneseFontType":0,
+ "englishUsText":"High score display",
+ "englishUsFontType":0,
+ "chineseTText":"顯示自我最佳紀錄",
+ "chineseTFontType":1,
+ "koreanText":"마이 베스트 표시",
+ "koreanFontType":2
+ },
+ {
+ "key":"submenu_filter_clear",
+ "japaneseText":"クリア状況",
+ "japaneseFontType":0,
+ "englishUsText":"Cleared status",
+ "englishUsFontType":0,
+ "chineseTText":"通關狀況",
+ "chineseTFontType":1,
+ "koreanText":"클리어 상황",
+ "koreanFontType":2
+ },
+ {
+ "key":"submenu_filter_favorite",
+ "japaneseText":"お気に入りだけ表示",
+ "japaneseFontType":0,
+ "englishUsText":"Favorite",
+ "englishUsFontType":0,
+ "chineseTText":"僅顯示中意樂曲",
+ "chineseTFontType":1,
+ "koreanText":"즐겨찾기만 표시",
+ "koreanFontType":2
+ },
+ {
+ "key":"submenu_sort_type",
+ "japaneseText":"ならび順",
+ "japaneseFontType":0,
+ "englishUsText":"Sort type",
+ "englishUsFontType":0,
+ "chineseTText":"排序順序",
+ "chineseTFontType":1,
+ "koreanText":"정렬 순서",
+ "koreanFontType":2
+ },
+ {
+ "key":"submenu_title_display",
+ "japaneseText":"表示設定",
+ "japaneseFontType":0,
+ "englishUsText":"Display settings",
+ "englishUsFontType":0,
+ "chineseTText":"顯示設定",
+ "chineseTFontType":1,
+ "koreanText":"표시 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"submenu_title_enso",
+ "japaneseText":"演奏設定",
+ "japaneseFontType":0,
+ "englishUsText":"Game settings",
+ "englishUsFontType":0,
+ "chineseTText":"演奏設定",
+ "chineseTFontType":1,
+ "koreanText":"연주 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"submenu_title_sort",
+ "japaneseText":"ソートフィルター設定",
+ "japaneseFontType":0,
+ "englishUsText":"Sort filter settings",
+ "englishUsFontType":0,
+ "chineseTText":"分類篩選設定",
+ "chineseTFontType":1,
+ "koreanText":"정렬 필터 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"traning_add_txt",
+ "japaneseText":"※トレーニング演奏中はスコアが記録されません\nまた、フレンドやゲストキャラ等との演奏はできません",
+ "japaneseFontType":0,
+ "englishUsText":"※Scores are not recorded for Training Mode.\nFriends or guest characters will not be available for this mode.",
+ "englishUsFontType":0,
+ "chineseTText":"※訓練演奏中將不會記錄成績。\n 另外,也無法與好友或客串角色進行演奏",
+ "chineseTFontType":1,
+ "koreanText":"※트레이닝 연주 중에는 스코어가 기록되지 않습니다.\n또한, 프렌드나 게스트 캐릭터와는 연주할 수 없습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"crown_bronze",
+ "japaneseText":"サポートクリア",
+ "japaneseFontType":0,
+ "englishUsText":"Support Clear",
+ "englishUsFontType":0,
+ "chineseTText":"支援成功",
+ "chineseTFontType":1,
+ "koreanText":"서포트 클리어",
+ "koreanFontType":2
+ },
+ {
+ "key":"crown_gold",
+ "japaneseText":"フルコンボ",
+ "japaneseFontType":0,
+ "englishUsText":"Full Combo",
+ "englishUsFontType":0,
+ "chineseTText":"全連段",
+ "chineseTFontType":1,
+ "koreanText":"풀 콤보",
+ "koreanFontType":2
+ },
+ {
+ "key":"crown_silver",
+ "japaneseText":"ノルマクリア",
+ "japaneseFontType":0,
+ "englishUsText":"Normal Clear",
+ "englishUsFontType":0,
+ "chineseTText":"演奏成功",
+ "chineseTFontType":1,
+ "koreanText":"클리어 성공",
+ "koreanFontType":2
+ },
+ {
+ "key":"fullcombo_success",
+ "japaneseText":"フルコンボ成功!",
+ "japaneseFontType":0,
+ "englishUsText":"Full Combo Success!",
+ "englishUsFontType":0,
+ "chineseTText":"全連段成功!",
+ "chineseTFontType":1,
+ "koreanText":"풀 콤보 성공!",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_success",
+ "japaneseText":"ビンゴカード コンプリート!",
+ "japaneseFontType":0,
+ "englishUsText":"BINGO CARD COMPLETE!",
+ "englishUsFontType":0,
+ "chineseTText":"完成賓果卡!",
+ "chineseTFontType":1,
+ "koreanText":"빙고 카드 컴플리트!",
+ "koreanFontType":2
+ },
+ {
+ "key":"koban_get",
+ "japaneseText":"ドン小判ゲット!",
+ "japaneseFontType":0,
+ "englishUsText":"GET DON coin!",
+ "englishUsFontType":0,
+ "chineseTText":"獲得咚小判!",
+ "chineseTFontType":1,
+ "koreanText":"동 전 GET!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rankup_success",
+ "japaneseText":"ランク到達!",
+ "japaneseFontType":0,
+ "englishUsText":"Rank Achieved!",
+ "englishUsFontType":0,
+ "chineseTText":"達到階級!",
+ "chineseTFontType":1,
+ "koreanText":"랭크 도달!",
+ "koreanFontType":2
+ },
+ {
+ "key":"requirement",
+ "japaneseText":"条件",
+ "japaneseFontType":0,
+ "englishUsText":"Requirement",
+ "englishUsFontType":0,
+ "chineseTText":"條件",
+ "chineseTFontType":1,
+ "koreanText":"조건",
+ "koreanFontType":2
+ },
+ {
+ "key":"result",
+ "japaneseText":"成績発表",
+ "japaneseFontType":0,
+ "englishUsText":"Results",
+ "englishUsFontType":0,
+ "chineseTText":"發表成績",
+ "chineseTFontType":1,
+ "koreanText":"성적 발표",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_bestscore",
+ "japaneseText":"自己ベスト更新!",
+ "japaneseFontType":0,
+ "englishUsText":"New high score!",
+ "englishUsFontType":0,
+ "chineseTText":"刷新自我紀錄!",
+ "chineseTFontType":1,
+ "koreanText":"마이 베스트 경신!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_bingo_complete",
+ "japaneseText":"COMPLETE!",
+ "japaneseFontType":0,
+ "englishUsText":"COMPLETE!",
+ "englishUsFontType":0,
+ "chineseTText":"COMPLETE!",
+ "chineseTFontType":1,
+ "koreanText":"COMPLETE!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_bingo_get",
+ "japaneseText":"BINGO!",
+ "japaneseFontType":0,
+ "englishUsText":"BINGO!",
+ "englishUsFontType":0,
+ "chineseTText":"BINGO!",
+ "chineseTFontType":1,
+ "koreanText":"BINGO!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_bingo_koban",
+ "japaneseText":"ゲット!",
+ "japaneseFontType":0,
+ "englishUsText":"GET!",
+ "englishUsFontType":0,
+ "chineseTText":"獲得!",
+ "chineseTFontType":1,
+ "koreanText":"겟!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_bingo_title",
+ "japaneseText":"ミッションBINGO",
+ "japaneseFontType":0,
+ "englishUsText":"Mission BINGO",
+ "englishUsFontType":0,
+ "chineseTText":"任務BINGO",
+ "chineseTFontType":1,
+ "koreanText":"미션 BINGO",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_don_failure_high",
+ "japaneseText":"失敗、あともうちょっとだったドン!",
+ "japaneseFontType":0,
+ "englishUsText":"FAILED, just a little bit more!",
+ "englishUsFontType":0,
+ "chineseTText":"失敗,就差那一點咚!",
+ "chineseTFontType":1,
+ "koreanText":"실패, 엄청 아쉬웠다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_don_failure_low",
+ "japaneseText":"失敗・・・次はもっといけるドン!",
+ "japaneseFontType":0,
+ "englishUsText":"FAILED... Try harder!",
+ "englishUsFontType":0,
+ "chineseTText":"失敗……下次會表現更好咚!",
+ "chineseTFontType":1,
+ "koreanText":"실패… 다음엔 더 힘내자쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_don_meka",
+ "japaneseText":"クリア大成功だメカ!",
+ "japaneseFontType":0,
+ "englishUsText":"CLEARED! Mecha Great Success!",
+ "englishUsFontType":0,
+ "chineseTText":"通關!演奏得超成功!",
+ "chineseTFontType":1,
+ "koreanText":"클리어 대성공이다메카!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_don_success_high",
+ "japaneseText":"クリア!フルコンボだドーン!",
+ "japaneseFontType":0,
+ "englishUsText":"CLEARED! Great Success!",
+ "englishUsFontType":0,
+ "chineseTText":"通關!全連段咚!",
+ "chineseTFontType":1,
+ "koreanText":"클리어! 풀 콤보다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_don_success_low",
+ "japaneseText":"クリア!上手に演奏できたドン!",
+ "japaneseFontType":0,
+ "englishUsText":"CLEARED! Well played!",
+ "englishUsFontType":0,
+ "chineseTText":"通關!演奏得非常出色!",
+ "chineseTFontType":1,
+ "koreanText":"클리어! 훌륭하게 연주했다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"session_success",
+ "japaneseText":"セッション大成功!",
+ "japaneseFontType":0,
+ "englishUsText":"Session Success!",
+ "englishUsFontType":0,
+ "chineseTText":"演奏會大獲成功!",
+ "chineseTFontType":1,
+ "koreanText":"세션 대성공!",
+ "koreanFontType":2
+ },
+ {
+ "key":"aisatsu",
+ "japaneseText":"あいさつ",
+ "japaneseFontType":0,
+ "englishUsText":"Greetings",
+ "englishUsFontType":0,
+ "chineseTText":"寒暄",
+ "chineseTFontType":1,
+ "koreanText":"인사",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_body",
+ "japaneseText":"ふく",
+ "japaneseFontType":0,
+ "englishUsText":"Body",
+ "englishUsFontType":0,
+ "chineseTText":"服裝",
+ "chineseTFontType":1,
+ "koreanText":"옷",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_head",
+ "japaneseText":"ぼうし",
+ "japaneseFontType":0,
+ "englishUsText":"Head",
+ "englishUsFontType":0,
+ "chineseTText":"帽子",
+ "chineseTFontType":1,
+ "koreanText":"모자",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_kigurumi",
+ "japaneseText":"きぐるみ",
+ "japaneseFontType":0,
+ "englishUsText":"Kigurumi",
+ "englishUsFontType":0,
+ "chineseTText":"布偶裝",
+ "chineseTFontType":1,
+ "koreanText":"인형 옷",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_makeup",
+ "japaneseText":"メイク",
+ "japaneseFontType":0,
+ "englishUsText":"Makeup",
+ "englishUsFontType":0,
+ "chineseTText":"化妝",
+ "chineseTFontType":1,
+ "koreanText":"화장",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_putichara",
+ "japaneseText":"ぷちキャラ",
+ "japaneseFontType":0,
+ "englishUsText":"Petit Character",
+ "englishUsFontType":0,
+ "chineseTText":"迷你角色",
+ "chineseTFontType":1,
+ "koreanText":"꼬마 캐릭터",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_set",
+ "japaneseText":"ぼうし+ふく",
+ "japaneseFontType":0,
+ "englishUsText":"Costume Set",
+ "englishUsFontType":0,
+ "chineseTText":"帽子+服裝",
+ "chineseTFontType":1,
+ "koreanText":"모자+옷",
+ "koreanFontType":2
+ },
+ {
+ "key":"hazure",
+ "japaneseText":"ハズレ",
+ "japaneseFontType":0,
+ "englishUsText":"Try again",
+ "englishUsFontType":0,
+ "chineseTText":"落空",
+ "chineseTFontType":1,
+ "koreanText":"꽝",
+ "koreanFontType":2
+ },
+ {
+ "key":"koban",
+ "japaneseText":"ドン小判",
+ "japaneseFontType":0,
+ "englishUsText":"DON coin",
+ "englishUsFontType":0,
+ "chineseTText":"咚小判",
+ "chineseTFontType":1,
+ "koreanText":"동 전",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro",
+ "japaneseText":"音色",
+ "japaneseFontType":0,
+ "englishUsText":"Instruments",
+ "englishUsFontType":0,
+ "chineseTText":"音色",
+ "chineseTFontType":1,
+ "koreanText":"음색",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou",
+ "japaneseText":"称号",
+ "japaneseFontType":0,
+ "englishUsText":"Title",
+ "englishUsFontType":0,
+ "chineseTText":"稱號",
+ "chineseTFontType":1,
+ "koreanText":"칭호",
+ "koreanFontType":2
+ },
+ {
+ "key":"combo_num",
+ "japaneseText":"最大コンボ数",
+ "japaneseFontType":0,
+ "englishUsText":"MAX Combo",
+ "englishUsFontType":0,
+ "chineseTText":"最多連段數",
+ "chineseTFontType":1,
+ "koreanText":"최대 콤보 수 ",
+ "koreanFontType":2
+ },
+ {
+ "key":"renda_num",
+ "japaneseText":"連打数",
+ "japaneseFontType":0,
+ "englishUsText":"Drumroll",
+ "englishUsFontType":0,
+ "chineseTText":"連打數",
+ "chineseTFontType":1,
+ "koreanText":"연타 횟수 ",
+ "koreanFontType":2
+ },
+ {
+ "key":"score",
+ "japaneseText":"スコア",
+ "japaneseFontType":0,
+ "englishUsText":"Score",
+ "englishUsFontType":0,
+ "chineseTText":"成績",
+ "chineseTFontType":1,
+ "koreanText":"스코어",
+ "koreanFontType":2
+ },
+ {
+ "key":"autosetting",
+ "japaneseText":"判定自動調整",
+ "japaneseFontType":0,
+ "englishUsText":"Auto calibration",
+ "englishUsFontType":0,
+ "chineseTText":"自動調整判定",
+ "chineseTFontType":1,
+ "koreanText":"판정 자동 조정",
+ "koreanFontType":2
+ },
+ {
+ "key":"back",
+ "japaneseText":"戻る",
+ "japaneseFontType":0,
+ "englishUsText":"Back",
+ "englishUsFontType":0,
+ "chineseTText":"返回",
+ "chineseTFontType":1,
+ "koreanText":"돌아간다",
+ "koreanFontType":2
+ },
+ {
+ "key":"change",
+ "japaneseText":"変更",
+ "japaneseFontType":0,
+ "englishUsText":"Change",
+ "englishUsFontType":0,
+ "chineseTText":"變更",
+ "chineseTFontType":1,
+ "koreanText":"변경",
+ "koreanFontType":2
+ },
+ {
+ "key":"close",
+ "japaneseText":"閉じる",
+ "japaneseFontType":0,
+ "englishUsText":"Close",
+ "englishUsFontType":0,
+ "chineseTText":"關閉",
+ "chineseTFontType":1,
+ "koreanText":"닫기",
+ "koreanFontType":2
+ },
+ {
+ "key":"decide",
+ "japaneseText":"決定",
+ "japaneseFontType":0,
+ "englishUsText":"Confirm",
+ "englishUsFontType":0,
+ "chineseTText":"決定",
+ "chineseTFontType":1,
+ "koreanText":"결정",
+ "koreanFontType":2
+ },
+ {
+ "key":"discard_changes",
+ "japaneseText":"元に戻す",
+ "japaneseFontType":0,
+ "englishUsText":"Revert",
+ "englishUsFontType":0,
+ "chineseTText":"前次設定",
+ "chineseTFontType":1,
+ "koreanText":"되돌린다",
+ "koreanFontType":2
+ },
+ {
+ "key":"genre_skip",
+ "japaneseText":"スキップ",
+ "japaneseFontType":0,
+ "englishUsText":"Skip",
+ "englishUsFontType":0,
+ "chineseTText":"切換",
+ "chineseTFontType":1,
+ "koreanText":"스킵",
+ "koreanFontType":2
+ },
+ {
+ "key":"genre_skip_songselect",
+ "japaneseText":"スキップ",
+ "japaneseFontType":0,
+ "englishUsText":"Skip",
+ "englishUsFontType":0,
+ "chineseTText":"切換",
+ "chineseTFontType":1,
+ "koreanText":"스킵",
+ "koreanFontType":2
+ },
+ {
+ "key":"level_skip",
+ "japaneseText":"スキップ",
+ "japaneseFontType":0,
+ "englishUsText":"Skip",
+ "englishUsFontType":0,
+ "chineseTText":"切換",
+ "chineseTFontType":1,
+ "koreanText":"스킵",
+ "koreanFontType":2
+ },
+ {
+ "key":"help",
+ "japaneseText":"ヘルプ",
+ "japaneseFontType":0,
+ "englishUsText":"Help",
+ "englishUsFontType":0,
+ "chineseTText":"說明",
+ "chineseTFontType":1,
+ "koreanText":"도움말",
+ "koreanFontType":2
+ },
+ {
+ "key":"move",
+ "japaneseText":"移動",
+ "japaneseFontType":0,
+ "englishUsText":"Select",
+ "englishUsFontType":0,
+ "chineseTText":"移動",
+ "chineseTFontType":1,
+ "koreanText":"이동",
+ "koreanFontType":2
+ },
+ {
+ "key":"next",
+ "japaneseText":"次へ",
+ "japaneseFontType":0,
+ "englishUsText":"Next",
+ "englishUsFontType":0,
+ "chineseTText":"繼續",
+ "chineseTFontType":1,
+ "koreanText":"다음",
+ "koreanFontType":2
+ },
+ {
+ "key":"option",
+ "japaneseText":"オプション",
+ "japaneseFontType":0,
+ "englishUsText":"Option",
+ "englishUsFontType":0,
+ "chineseTText":"選項",
+ "chineseTFontType":1,
+ "koreanText":"옵션",
+ "koreanFontType":2
+ },
+ {
+ "key":"random_song",
+ "japaneseText":"ランダム選曲",
+ "japaneseFontType":0,
+ "englishUsText":"Random",
+ "englishUsFontType":0,
+ "chineseTText":"隨機選曲",
+ "chineseTFontType":1,
+ "koreanText":"랜덤 곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"reference_book",
+ "japaneseText":"解説書",
+ "japaneseFontType":0,
+ "englishUsText":"Guide",
+ "englishUsFontType":0,
+ "chineseTText":"導覽書",
+ "chineseTFontType":1,
+ "koreanText":"설명서",
+ "koreanFontType":2
+ },
+ {
+ "key":"restore_defaults",
+ "japaneseText":"初期値に戻す",
+ "japaneseFontType":0,
+ "englishUsText":"Default",
+ "englishUsFontType":0,
+ "chineseTText":"恢復預設",
+ "chineseTFontType":1,
+ "koreanText":"설정 초기화",
+ "koreanFontType":2
+ },
+ {
+ "key":"save_and_close",
+ "japaneseText":"反映して閉じる",
+ "japaneseFontType":0,
+ "englishUsText":"Save and exit",
+ "englishUsFontType":0,
+ "chineseTText":"套用並關閉",
+ "chineseTFontType":1,
+ "koreanText":"저장하고 닫는다",
+ "koreanFontType":2
+ },
+ {
+ "key":"select",
+ "japaneseText":"選択",
+ "japaneseFontType":0,
+ "englishUsText":"Select",
+ "englishUsFontType":0,
+ "chineseTText":"選擇",
+ "chineseTFontType":1,
+ "koreanText":"선택",
+ "koreanFontType":2
+ },
+ {
+ "key":"show_bingo_card",
+ "japaneseText":"ビンゴカードを見る",
+ "japaneseFontType":0,
+ "englishUsText":"Show BINGO CARD",
+ "englishUsFontType":0,
+ "chineseTText":"檢視賓果卡",
+ "chineseTFontType":1,
+ "koreanText":"빙고 카드 확인",
+ "koreanFontType":2
+ },
+ {
+ "key":"submenu",
+ "japaneseText":"サブメニュー",
+ "japaneseFontType":0,
+ "englishUsText":"Submenu",
+ "englishUsFontType":0,
+ "chineseTText":"子選單",
+ "chineseTFontType":1,
+ "koreanText":"서브 메뉴",
+ "koreanFontType":2
+ },
+ {
+ "key":"tabchange",
+ "japaneseText":"タブ切替",
+ "japaneseFontType":0,
+ "englishUsText":"Switch Tab",
+ "englishUsFontType":0,
+ "chineseTText":"切換頁籤",
+ "chineseTFontType":1,
+ "koreanText":"탭 전환",
+ "koreanFontType":2
+ },
+ {
+ "key":"toggle_favorite",
+ "japaneseText":"お気に入り",
+ "japaneseFontType":0,
+ "englishUsText":"Favorite",
+ "englishUsFontType":0,
+ "chineseTText":"登錄為中意樂曲",
+ "chineseTFontType":1,
+ "koreanText":"즐겨찾기",
+ "koreanFontType":2
+ },
+ {
+ "key":"toggle_session",
+ "japaneseText":"セッション ON/OFF",
+ "japaneseFontType":0,
+ "englishUsText":"Toggle session",
+ "englishUsFontType":0,
+ "chineseTText":"合奏 ON/OFF",
+ "chineseTFontType":1,
+ "koreanText":"세션 ON/OFF",
+ "koreanFontType":2
+ },
+ {
+ "key":"toggle_vib",
+ "japaneseText":"振動 ON/OFF",
+ "japaneseFontType":0,
+ "englishUsText":"Vibration ON/OFF",
+ "englishUsFontType":0,
+ "chineseTText":"震動 ON/OFF",
+ "chineseTFontType":1,
+ "koreanText":"진동 ON/OFF",
+ "koreanFontType":2
+ },
+ {
+ "key":"toggle_true_hit",
+ "japaneseText":"真打 ON/OFF",
+ "japaneseFontType":0,
+ "englishUsText":"Shin-Uchi",
+ "englishUsFontType":0,
+ "chineseTText":"真打 ON/OFF",
+ "chineseTFontType":1,
+ "koreanText":"진타 ON/OFF",
+ "koreanFontType":2
+ },
+ {
+ "key":"training_auto",
+ "japaneseText":"オート ON/OFF",
+ "japaneseFontType":0,
+ "englishUsText":"Auto ON/OFF",
+ "englishUsFontType":0,
+ "chineseTText":"自動 ON/OFF",
+ "chineseTFontType":1,
+ "koreanText":"오토 ON/OFF",
+ "koreanFontType":2
+ },
+ {
+ "key":"traning_auto_on",
+ "japaneseText":"オート ON",
+ "japaneseFontType":0,
+ "englishUsText":"Auto ON",
+ "englishUsFontType":0,
+ "chineseTText":"自動 ON",
+ "chineseTFontType":1,
+ "koreanText":"오토 ON",
+ "koreanFontType":2
+ },
+ {
+ "key":"training_guide__ds4",
+ "japaneseText":"ワイヤレスコントローラー",
+ "japaneseFontType":0,
+ "englishUsText":"DUALSHOCK®4 wireless controller",
+ "englishUsFontType":0,
+ "chineseTText":"無線控制器",
+ "chineseTFontType":1,
+ "koreanText":"무선 컨트롤러",
+ "koreanFontType":2
+ },
+ {
+ "key":"training_guide_change",
+ "japaneseText":"操作ガイド切り替え",
+ "japaneseFontType":0,
+ "englishUsText":"Toggle controls",
+ "englishUsFontType":0,
+ "chineseTText":"切換操作導覽",
+ "chineseTFontType":1,
+ "koreanText":"조작 가이드 변경",
+ "koreanFontType":2
+ },
+ {
+ "key":"training_guide_tatacon",
+ "japaneseText":"太鼓コントローラー",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Controller",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓控制器",
+ "chineseTFontType":1,
+ "koreanText":"북 컨트롤러",
+ "koreanFontType":2
+ },
+ {
+ "key":"traning_bar",
+ "japaneseText":"小節",
+ "japaneseFontType":0,
+ "englishUsText":"Bar",
+ "englishUsFontType":0,
+ "chineseTText":"小節",
+ "chineseTFontType":1,
+ "koreanText":"소절",
+ "koreanFontType":2
+ },
+ {
+ "key":"traning_dialog_title",
+ "japaneseText":"速度変更について",
+ "japaneseFontType":0,
+ "englishUsText":"About speed adjustments",
+ "englishUsFontType":0,
+ "chineseTText":"關於速度變更",
+ "chineseTFontType":1,
+ "koreanText":"속도 변경이란",
+ "koreanFontType":2
+ },
+ {
+ "key":"traning_dialog_txt",
+ "japaneseText":"「トレーニング演奏」では、譜面の速度が変更できます\n速度は0.9~0.5倍速まで選択可能ですが、音楽は再生されません",
+ "japaneseFontType":0,
+ "englishUsText":"Training Mode allows adjustment to music notes speed between 0.9~0.5x without music playback.",
+ "englishUsFontType":0,
+ "chineseTText":"可在「訓練演奏」變更譜面的速度\n速度可以選0.9~0.5倍速,但不會播放音樂",
+ "chineseTFontType":1,
+ "koreanText":"「트레이닝 연주」 중에 악보의 속도를 변경할 수 있습니다\n속도는 0.9~0.5 배속까지 선택할 수 있지만, 음악은 재생되지 않습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"traning_hit_rate",
+ "japaneseText":"たたけた率",
+ "japaneseFontType":0,
+ "englishUsText":"Hit Rate",
+ "englishUsFontType":0,
+ "chineseTText":"音符敲打率",
+ "chineseTFontType":1,
+ "koreanText":"두드린 비율",
+ "koreanFontType":2
+ },
+ {
+ "key":"traning_menu",
+ "japaneseText":"トレーニングメニュー",
+ "japaneseFontType":0,
+ "englishUsText":"Training Menu",
+ "englishUsFontType":0,
+ "chineseTText":"訓練選單",
+ "chineseTFontType":1,
+ "koreanText":"트레이닝 메뉴",
+ "koreanFontType":2
+ },
+ {
+ "key":"traning_pause",
+ "japaneseText":"長押しでポーズ",
+ "japaneseFontType":0,
+ "englishUsText":"Hold button to Pause",
+ "englishUsFontType":0,
+ "chineseTText":"用長按來暫停",
+ "chineseTFontType":1,
+ "koreanText":"길게 누르면 일시정지",
+ "koreanFontType":2
+ },
+ {
+ "key":"traning_result_menu",
+ "japaneseText":"トレーニング\nメニューを開く",
+ "japaneseFontType":0,
+ "englishUsText":"Access\nTraining Menu",
+ "englishUsFontType":0,
+ "chineseTText":"開啟\n訓練選單",
+ "chineseTFontType":1,
+ "koreanText":"트레이닝\n메뉴를 연다",
+ "koreanFontType":2
+ },
+ {
+ "key":"traning_result_title",
+ "japaneseText":"演奏終了",
+ "japaneseFontType":0,
+ "englishUsText":"End play",
+ "englishUsFontType":0,
+ "chineseTText":"演奏結束",
+ "chineseTFontType":1,
+ "koreanText":"연주 종료",
+ "koreanFontType":2
+ },
+ {
+ "key":"traning_song_tempo",
+ "japaneseText":"曲テンポ",
+ "japaneseFontType":0,
+ "englishUsText":"Song tempo",
+ "englishUsFontType":0,
+ "chineseTText":"樂曲節拍",
+ "chineseTFontType":1,
+ "koreanText":"곡의 템포",
+ "koreanFontType":2
+ },
+ {
+ "key":"traning_tatacon_menu_branch",
+ "japaneseText":"譜面切り替え",
+ "japaneseFontType":0,
+ "englishUsText":"Toggle notes",
+ "englishUsFontType":0,
+ "chineseTText":"切換譜面",
+ "chineseTFontType":1,
+ "koreanText":"악보 분기 변경",
+ "koreanFontType":2
+ },
+ {
+ "key":"traning_tatacon_menu_branch_var",
+ "japaneseText":"(普通/玄人/達人)",
+ "japaneseFontType":0,
+ "englishUsText":"(Normal/Professional/Master)",
+ "englishUsFontType":0,
+ "chineseTText":"(一般/進階/達人)",
+ "chineseTFontType":1,
+ "koreanText":"(보통 / 현인 / 달인)",
+ "koreanFontType":2
+ },
+ {
+ "key":"traning_tatacon_menu_continue",
+ "japaneseText":"再開",
+ "japaneseFontType":0,
+ "englishUsText":"Resume",
+ "englishUsFontType":0,
+ "chineseTText":"繼續播放",
+ "chineseTFontType":1,
+ "koreanText":"시작",
+ "koreanFontType":2
+ },
+ {
+ "key":"traning_tatacon_menu_fast",
+ "japaneseText":"曲テンポ速く",
+ "japaneseFontType":0,
+ "englishUsText":"Faster",
+ "englishUsFontType":0,
+ "chineseTText":"調快",
+ "chineseTFontType":1,
+ "koreanText":"템포를 빠르게",
+ "koreanFontType":2
+ },
+ {
+ "key":"traning_tatacon_menu_forward",
+ "japaneseText":"早送り",
+ "japaneseFontType":0,
+ "englishUsText":"Fast forward",
+ "englishUsFontType":0,
+ "chineseTText":"快轉",
+ "chineseTFontType":1,
+ "koreanText":"빨리 감기",
+ "koreanFontType":2
+ },
+ {
+ "key":"traning_tatacon_menu_reward",
+ "japaneseText":"早戻し",
+ "japaneseFontType":0,
+ "englishUsText":"Fast backward",
+ "englishUsFontType":0,
+ "chineseTText":"倒轉",
+ "chineseTFontType":1,
+ "koreanText":"되감기",
+ "koreanFontType":2
+ },
+ {
+ "key":"traning_tatacon_menu_slow",
+ "japaneseText":"曲テンポ遅く",
+ "japaneseFontType":0,
+ "englishUsText":"Slower",
+ "englishUsFontType":0,
+ "chineseTText":"調慢",
+ "chineseTFontType":1,
+ "koreanText":"템포를 느리게",
+ "koreanFontType":2
+ },
+ {
+ "key":"traning_tempo",
+ "japaneseText":"倍",
+ "japaneseFontType":0,
+ "englishUsText":"Times",
+ "englishUsFontType":0,
+ "chineseTText":"倍",
+ "chineseTFontType":1,
+ "koreanText":"배속",
+ "koreanFontType":2
+ },
+ {
+ "key":"traning_tatacon_detail",
+ "japaneseText":"※曲テンポ0.9~0.5倍では音楽が再生されません",
+ "japaneseFontType":0,
+ "englishUsText":"※Songs will be muted if set at 0.5~0.9x tempo",
+ "englishUsFontType":0,
+ "chineseTText":"※樂曲節拍在0.9~0.5倍時,不會播放音樂",
+ "chineseTFontType":1,
+ "koreanText":"※곡의 템포가 0.9~0.5배일 때는\n음악이 재생되지 않습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"bingo_card_ex_title",
+ "japaneseText":"BINGO",
+ "japaneseFontType":0,
+ "englishUsText":"BINGO",
+ "englishUsFontType":0,
+ "chineseTText":"BINGO",
+ "chineseTFontType":1,
+ "koreanText":"BINGO",
+ "koreanFontType":2
+ },
+ {
+ "key":"bingo_card_nor_title",
+ "japaneseText":"BINGO",
+ "japaneseFontType":0,
+ "englishUsText":"BINGO",
+ "englishUsFontType":0,
+ "chineseTText":"BINGO",
+ "chineseTFontType":1,
+ "koreanText":"BINGO",
+ "koreanFontType":2
+ },
+ {
+ "key":"bingo_clear",
+ "japaneseText":"CLEAR!",
+ "japaneseFontType":0,
+ "englishUsText":"CLEAR!",
+ "englishUsFontType":0,
+ "chineseTText":"CLEAR!",
+ "chineseTFontType":1,
+ "koreanText":"CLEAR!",
+ "koreanFontType":2
+ },
+ {
+ "key":"bingo_clear_dialog_title",
+ "japaneseText":"裏BINGOに挑戦しますか?",
+ "japaneseFontType":0,
+ "englishUsText":"Challenge hidden BINGO?",
+ "englishUsFontType":0,
+ "chineseTText":"確定要挑戰裏BINGO嗎?",
+ "chineseTFontType":1,
+ "koreanText":"BINGO 뒷장에 도전합니까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"bingo_clear_dialog_txt",
+ "japaneseText":"「むずかしい」以上を遊ぶ方向けです",
+ "japaneseFontType":0,
+ "englishUsText":"For players who wish to play beyond Hard difficulty",
+ "englishUsFontType":0,
+ "chineseTText":"針對遊玩「困難」以上難度的玩家",
+ "chineseTFontType":1,
+ "koreanText":"「어려움」 이상 플레이어 권장",
+ "koreanFontType":2
+ },
+ {
+ "key":"bingo_clear_dialog_suppl",
+ "japaneseText":"「むずかしさをえらぶ」で□ボタンを押すと、\nいつでも挑戦できます",
+ "japaneseFontType":0,
+ "englishUsText":"Press □ at Select difficulty to challenge anytime.",
+ "englishUsFontType":0,
+ "chineseTText":"在「選擇難度」按下□按鈕後,\n隨時都可以挑戰",
+ "chineseTFontType":1,
+ "koreanText":"「난이도 선택」에서 □버튼을 누르면\n언제든지 도전할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"branch",
+ "japaneseText":"譜面分岐",
+ "japaneseFontType":0,
+ "englishUsText":"Diverge Notes",
+ "englishUsFontType":0,
+ "chineseTText":"譜面分歧",
+ "chineseTFontType":1,
+ "koreanText":"악보 분기",
+ "koreanFontType":2
+ },
+ {
+ "key":"course_back",
+ "japaneseText":"他のプレイヤーの操作がないので\n「曲をえらぶ」に戻ります",
+ "japaneseFontType":0,
+ "englishUsText":"No input detected by other players, returning to Select song.",
+ "englishUsFontType":0,
+ "chineseTText":"由於其他玩家並無輸入操作指令\n將返回「選擇樂曲」畫面",
+ "chineseTFontType":1,
+ "koreanText":"다른 플레이어의 입력이 없었기 때문에\n「곡 선택」으로 돌아갑니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"dialog_no",
+ "japaneseText":"いいえ",
+ "japaneseFontType":0,
+ "englishUsText":"No",
+ "englishUsFontType":0,
+ "chineseTText":"否",
+ "chineseTFontType":1,
+ "koreanText":"아니오",
+ "koreanFontType":2
+ },
+ {
+ "key":"dialog_yes",
+ "japaneseText":"はい",
+ "japaneseFontType":0,
+ "englishUsText":"Yes",
+ "englishUsFontType":0,
+ "chineseTText":"是",
+ "chineseTFontType":1,
+ "koreanText":"예",
+ "koreanFontType":2
+ },
+ {
+ "key":"hiscore",
+ "japaneseText":"自己ベスト",
+ "japaneseFontType":0,
+ "englishUsText":"High score",
+ "englishUsFontType":0,
+ "chineseTText":"自我紀錄",
+ "chineseTFontType":1,
+ "koreanText":"마이 베스트",
+ "koreanFontType":2
+ },
+ {
+ "key":"replay_ghost_off",
+ "japaneseText":"※ベストスコアデータがないため、1人プレイとなります",
+ "japaneseFontType":0,
+ "englishUsText":"※Session will be set to solo play as there is no existing best score.",
+ "englishUsFontType":0,
+ "chineseTText":"※由於無最佳成績資料,將進行1人模式。",
+ "chineseTFontType":1,
+ "koreanText":"※베스트 스코어 데이터가 없기 때문에 혼자서 플레이합니다.",
+ "koreanFontType":2
+ },
+ {
+ "key":"session_npc_off",
+ "japaneseText":"1人プレイになります",
+ "japaneseFontType":0,
+ "englishUsText":"Solo play",
+ "englishUsFontType":0,
+ "chineseTText":"1人模式",
+ "chineseTFontType":1,
+ "koreanText":"혼자서 플레이합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"wait_4_input_course",
+ "japaneseText":"「曲をえらぶ」に戻るには、他のプレイヤーに\n「㎏えらびなおす」を押してもらう必要があります",
+ "japaneseFontType":0,
+ "englishUsText":"The other player must select ㎏ to return to Select song.",
+ "englishUsFontType":0,
+ "chineseTText":"如欲返回「選擇樂曲」,\n需要其他玩家按「㎏重新選擇」",
+ "chineseTFontType":1,
+ "koreanText":"「곡 선택」으로 돌아가려면 다른 플레이어가\n「㎏다시 선택」을 선택해야 합니다.",
+ "koreanFontType":2
+ },
+ {
+ "key":"wait_4_input_mission",
+ "japaneseText":"他のプレイヤーの操作を待っています",
+ "japaneseFontType":0,
+ "englishUsText":"Waiting for other player's input...",
+ "englishUsFontType":0,
+ "chineseTText":"正在等待其他玩家的操作",
+ "chineseTFontType":1,
+ "koreanText":"다른 플레이어의 조작을 기다리고 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"wait_a_minutes",
+ "japaneseText":"ちょっとまってね",
+ "japaneseFontType":0,
+ "englishUsText":"Please wait a moment...",
+ "englishUsFontType":0,
+ "chineseTText":"請稍待片刻哦",
+ "chineseTFontType":1,
+ "koreanText":"조금만 기다려줘",
+ "koreanFontType":2
+ },
+ {
+ "key":"wait_a_minutes_suppl",
+ "japaneseText":"他のプレイヤーの操作を待っています",
+ "japaneseFontType":0,
+ "englishUsText":"Waiting for other player's input...",
+ "englishUsFontType":0,
+ "chineseTText":"正在等待其他玩家的操作",
+ "chineseTFontType":1,
+ "koreanText":"다른 플레이어의 조작을 기다리고 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"dummy_word",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_0",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_1",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_10",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_11",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_12",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_13",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_14",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_15",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_16",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_17",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_2",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_3",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_4",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_5",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_6",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_7",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_8",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_9",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_0_1p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_1_1p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_10_1p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_11_1p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_12_1p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_13_1p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_14_1p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_15_1p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_16_1p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_17_1p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_2_1p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_3_1p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_4_1p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_5_1p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_6_1p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_7_1p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_8_1p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_9_1p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_0_2p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_1_2p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_10_2p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_11_2p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_12_2p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_13_2p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_14_2p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_15_2p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_16_2p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_17_2p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_2_2p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_3_2p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_4_2p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_5_2p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_6_2p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_7_2p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_8_2p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_cumulative_9_2p",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"not_found",
+ "japaneseText":"見つからない!!",
+ "japaneseFontType":0,
+ "englishUsText":"見つからない!!",
+ "englishUsFontType":0,
+ "chineseTText":"見つからない!!",
+ "chineseTFontType":0,
+ "koreanText":"見つからない!!",
+ "koreanFontType":0
+ },
+ {
+ "key":"user_koban_p1",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"user_koban_p2",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"user_name_p1",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"user_name_p2",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"user_title_p1",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"user_title_p2",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_txt_01_title",
+ "japaneseText":"ゲストキャラと一緒にセッションしよう!",
+ "japaneseFontType":0,
+ "englishUsText":"Play a game session together with your guest character!",
+ "englishUsFontType":0,
+ "chineseTText":"和客串角色來場演奏會!",
+ "chineseTFontType":1,
+ "koreanText":"게스트 캐릭터와 세션 연주!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_txt_01content",
+ "japaneseText":"ゲストキャラのアイコン付きの曲を選ぼう!",
+ "japaneseFontType":0,
+ "englishUsText":"Select a song with a guest character icon!",
+ "englishUsFontType":0,
+ "chineseTText":"選擇附加客串角色圖示的樂曲吧!",
+ "chineseTFontType":1,
+ "koreanText":"게스트 캐릭터 아이콘이 표시된 곡을 선택하자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_txt_02_title",
+ "japaneseText":"フレンドと気軽にセッションしよう!",
+ "japaneseFontType":0,
+ "englishUsText":"Casual game session with your friends!",
+ "englishUsFontType":0,
+ "chineseTText":"和好友輕鬆愉快地進行演奏會!",
+ "chineseTFontType":1,
+ "koreanText":"프렌드와 세션 연주!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_txt_02content",
+ "japaneseText":"フレンドが最後に遊んだ曲が並ぶよ!",
+ "japaneseFontType":0,
+ "englishUsText":"Select the song that your friend has last played!",
+ "englishUsFontType":0,
+ "chineseTText":"會顯示好友遊玩的最後樂曲喔!",
+ "chineseTFontType":1,
+ "koreanText":"프렌드가 마지막으로 연주한 곡이 표시돼!\n",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_txt_03_title",
+ "japaneseText":"ミッションビンゴにチャレンジ!",
+ "japaneseFontType":0,
+ "englishUsText":"Challenge Mission BINGO!",
+ "englishUsFontType":0,
+ "chineseTText":"挑戰任務賓果!",
+ "chineseTFontType":1,
+ "koreanText":"미션 빙고에 챌린지!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_txt_03content",
+ "japaneseText":"1曲毎に演奏のお題が書かれたビンゴカードがあるよ!",
+ "japaneseFontType":0,
+ "englishUsText":"Each song title comes with a BINGO CARD!",
+ "englishUsFontType":0,
+ "chineseTText":"每一首樂曲都有寫上演奏課題的賓果卡喔!",
+ "chineseTFontType":1,
+ "koreanText":"각각의 곡마다\n연주 미션이 적힌 빙고 카드가 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_txt_04_title",
+ "japaneseText":"トレーニング演奏で苦手な部分を克服!",
+ "japaneseFontType":0,
+ "englishUsText":"Overcome parts you are poor at with Training Mode!",
+ "englishUsFontType":0,
+ "chineseTText":"用訓練演奏克服自己不擅長的地方!",
+ "chineseTFontType":1,
+ "koreanText":"트레이닝 연주로\n어려운 부분을 극복!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_txt_04content",
+ "japaneseText":"早送り・早戻しで苦手な打ち分けを反復練習しよう!\nサブメニューの「演奏設定」で設定できるよ!",
+ "japaneseFontType":0,
+ "englishUsText":"Practice by using forward/backward!\nSet this in the Submenu! ",
+ "englishUsFontType":0,
+ "chineseTText":"用快轉、倒轉反覆練習不擅長的分開敲打吧!\n可在子選單「演奏設定」進行設定!",
+ "chineseTFontType":1,
+ "koreanText":"빨리 감기 / 되감기로 어려운 구간을 반복연습하자!\n서브 메뉴 「연주 설정」에서 설정할 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_txt_05_title",
+ "japaneseText":"ベストリプレイ演奏で見直しプレイ!",
+ "japaneseFontType":0,
+ "englishUsText":"Play against your Ghost's best replay!",
+ "englishUsFontType":0,
+ "chineseTText":"用最佳重播演奏重新觀看並遊玩!",
+ "chineseTFontType":1,
+ "koreanText":"베스트 리플레이 연주로\n검토하며 플레이!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_txt_05content",
+ "japaneseText":"自己ベスト演奏を見ながら記録を更新できるよ!\nサブメニューの「演奏設定」で設定できるよ!",
+ "japaneseFontType":0,
+ "englishUsText":"Watch your best replay and renew\nyour records at the same time!\nSet this in the Submenu! ",
+ "englishUsFontType":0,
+ "chineseTText":"可以一邊觀賞自己的最佳演奏,一邊刷新紀錄喔!\n可在子選單「演奏設定」進行設定!",
+ "chineseTFontType":1,
+ "koreanText":"마이 베스트 연주를 보며 기록을 경신하자!\n서브 메뉴의 「연주 설정」에서 설정할 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_txt_06_title",
+ "japaneseText":"苦手な曲は「サポート」を使おう!",
+ "japaneseFontType":0,
+ "englishUsText":"Use the Support feature for songs which you are poor at!",
+ "englishUsFontType":0,
+ "chineseTText":"不擅長的樂曲就使用「支援」!",
+ "chineseTFontType":1,
+ "koreanText":"어려운 곡은\n「서포트」를 사용하자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"help_txt_06content",
+ "japaneseText":"音符の判定を広げる、「ドン」「カッ」打ち分け無し、などの設定があるよ!\nオプションで設定できるよ!",
+ "japaneseFontType":0,
+ "englishUsText":"Widen the music note recognition area, no longer separate\nDON or KAT inputs and various other settings are available!\nSet these in the options!",
+ "englishUsFontType":0,
+ "chineseTText":"有放寬音符判定、以及取消「咚」「咔」分開敲打等設定喔!\n可在選項進行設定!",
+ "chineseTFontType":1,
+ "koreanText":"음표의 판정을 넓히거나「쿵」 「딱」 구별 없애기 같은 설정이 있어!\n옵션에서 설정할 수 있어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_abekobe_clear",
+ "japaneseText":"オプション「あべこべ」を\n付けてノルマクリア",
+ "japaneseFontType":0,
+ "englishUsText":"Clear song with Inverse",
+ "englishUsFontType":0,
+ "chineseTText":"附加「顛倒」選項\n並且演奏成功",
+ "chineseTFontType":1,
+ "koreanText":"옵션 「역전」을\n걸고 클리어 성공",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_abekobe_kimagure_clear",
+ "japaneseText":"オプション「あべこべ」「きまぐれ」を\n付けてノルマクリア",
+ "japaneseFontType":0,
+ "englishUsText":"Clear song with Inverse\nand Whimsical",
+ "englishUsFontType":0,
+ "chineseTText":"附加「顛倒」「隨興」選項\n並且演奏成功",
+ "chineseTFontType":1,
+ "koreanText":"옵션 「역전」 「변덕」을\n걸고 클리어 성공",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_detarame_clear",
+ "japaneseText":"オプション「でたらめ」を\n付けてノルマクリア",
+ "japaneseFontType":0,
+ "englishUsText":"Clear song with Messy",
+ "englishUsFontType":0,
+ "chineseTText":"附加「隨意」選項\n並且演奏成功",
+ "chineseTFontType":1,
+ "koreanText":"옵션 「대충」을\n걸고 클리어 성공",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_dron_clear",
+ "japaneseText":"オプション「ドロン」を\n付けてノルマクリア",
+ "japaneseFontType":0,
+ "englishUsText":"Clear song with Vanish",
+ "englishUsFontType":0,
+ "chineseTText":"附加「隱身」選項\n並且演奏成功",
+ "chineseTFontType":1,
+ "koreanText":"옵션 「은신」을\n걸고 클리어 성공",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_fuka",
+ "japaneseText":"不可の数%d以下",
+ "japaneseFontType":0,
+ "englishUsText":"BAD rate below %d",
+ "englishUsFontType":0,
+ "chineseTText":"不可次數%d以下",
+ "chineseTFontType":1,
+ "koreanText":"에구 횟수 %d 이하",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_fullcombo",
+ "japaneseText":"フルコンボ",
+ "japaneseFontType":0,
+ "englishUsText":"Full combo",
+ "englishUsFontType":0,
+ "chineseTText":"全連段",
+ "chineseTFontType":1,
+ "koreanText":"풀 콤보",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_hitcount",
+ "japaneseText":"叩けた数%d以上",
+ "japaneseFontType":0,
+ "englishUsText":"Hit rate above %d",
+ "englishUsFontType":0,
+ "chineseTText":"音符成功敲打次數\n%d以上",
+ "chineseTFontType":1,
+ "koreanText":"북을 친 횟수 %d 이상",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_kimagure_clear",
+ "japaneseText":"オプション「きまぐれ」を\n付けてノルマクリア",
+ "japaneseFontType":0,
+ "englishUsText":"Clear song with Whimsical",
+ "englishUsFontType":0,
+ "chineseTText":"附加「隨興」選項\n並且演奏成功",
+ "chineseTFontType":1,
+ "koreanText":"옵션 「변덕」을\n걸고 클리어 성공",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_maxcombo",
+ "japaneseText":"最大コンボ数%d以上",
+ "japaneseFontType":0,
+ "englishUsText":"Combo above %d",
+ "englishUsFontType":0,
+ "chineseTText":"最多連段數%d以上",
+ "chineseTFontType":1,
+ "koreanText":"최대 콤보 수 %d 이상",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_neiro_clear",
+ "japaneseText":"音色「 %s 」\nをつけてノルマクリア",
+ "japaneseFontType":0,
+ "englishUsText":"Clear song using \ninstrument 『 %s 』",
+ "englishUsFontType":0,
+ "chineseTText":"裝上「 %s 」的音色\n並且演奏成功",
+ "chineseTFontType":1,
+ "koreanText":"「 %s 」음색을\n장착하고 클리어 성공",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_normaclear",
+ "japaneseText":"ノルマクリア",
+ "japaneseFontType":0,
+ "englishUsText":"Clear song",
+ "englishUsFontType":0,
+ "chineseTText":"演奏成功",
+ "chineseTFontType":1,
+ "koreanText":"클리어 성공",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_renda",
+ "japaneseText":"連打数%d以上",
+ "japaneseFontType":0,
+ "englishUsText":"Drumroll rate above %d",
+ "englishUsFontType":0,
+ "chineseTText":"連打數%d以上",
+ "chineseTFontType":1,
+ "koreanText":"연타 횟수 %d 이상",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_ryo",
+ "japaneseText":"良の数%d以上",
+ "japaneseFontType":0,
+ "englishUsText":"GOOD rate above %d",
+ "englishUsFontType":0,
+ "chineseTText":"良次數%d以上",
+ "chineseTFontType":1,
+ "koreanText":"얼쑤 횟수 %d 이상",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_score",
+ "japaneseText":"通常スコア%d以上",
+ "japaneseFontType":0,
+ "englishUsText":"Normal score above %d",
+ "englishUsFontType":0,
+ "chineseTText":"一般成績%d以上",
+ "chineseTFontType":1,
+ "koreanText":"통산 스코어 %d 이상",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_sscore",
+ "japaneseText":"真打スコア%d以上",
+ "japaneseFontType":0,
+ "englishUsText":"Shin-Uchi score above %d",
+ "englishUsFontType":0,
+ "chineseTText":"真打成績%d以上",
+ "chineseTFontType":1,
+ "koreanText":"진타 스코어 %d 이상",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_tamachii",
+ "japaneseText":"魂ゲージ%d%以上",
+ "japaneseFontType":0,
+ "englishUsText":"Soul gauge above %d",
+ "englishUsFontType":0,
+ "chineseTText":"魂量表%d%以上",
+ "chineseTFontType":1,
+ "koreanText":"혼 게이지 %d% 이상",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_x2_abekobe_clear",
+ "japaneseText":"オプション「ばいそく」「あべこべ」を\n付けてノルマクリア",
+ "japaneseFontType":0,
+ "englishUsText":"Clear song with 2x speed\nand Inverse",
+ "englishUsFontType":0,
+ "chineseTText":"附加「二倍速」「顛倒」選項\n並且演奏成功",
+ "chineseTFontType":1,
+ "koreanText":"옵션 「배속」 「역전」을\n걸고 클리어 성공",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_x2_clear",
+ "japaneseText":"オプション「ばいそく」を\n付けてノルマクリア",
+ "japaneseFontType":0,
+ "englishUsText":"Clear song with 2x speed",
+ "englishUsFontType":0,
+ "chineseTText":"附加「二倍速」選項\n並且演奏成功",
+ "chineseTFontType":1,
+ "koreanText":"옵션 「배속」을\n걸고 클리어 성공",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_x2_detarame_clear",
+ "japaneseText":"オプション「ばいそく」「でたらめ」を\n付けてノルマクリア",
+ "japaneseFontType":0,
+ "englishUsText":"Clear song with 2x speed\nand Messy",
+ "englishUsFontType":0,
+ "chineseTText":"附加「二倍速」「隨意」選項\n並且演奏成功",
+ "chineseTFontType":1,
+ "koreanText":"옵션 「배속」 「대충」을\n걸고 클리어 성공",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_x2_kimagure_clear",
+ "japaneseText":"オプション「ばいそく」「きまぐれ」を\n付けてノルマクリア",
+ "japaneseFontType":0,
+ "englishUsText":"Clear song with 2x speed\nand Whimiscal",
+ "englishUsFontType":0,
+ "chineseTText":"附加「二倍速」「隨興」選項\n並且演奏成功",
+ "chineseTFontType":1,
+ "koreanText":"옵션 「배속」 「변덕」을\n걸고 클리어 성공",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_x3_clear",
+ "japaneseText":"オプション「さんばい」を\n付けてノルマクリア",
+ "japaneseFontType":0,
+ "englishUsText":"Clear song with 3x speed",
+ "englishUsFontType":0,
+ "chineseTText":"附加「三倍速」選項\n並且演奏成功",
+ "chineseTFontType":1,
+ "koreanText":"옵션 「세배」를 걸고\n클리어 성공",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_x4_clear",
+ "japaneseText":"オプション「よんばい」を\n付けてノルマクリア",
+ "japaneseFontType":0,
+ "englishUsText":"Clear song with 4x speed",
+ "englishUsFontType":0,
+ "chineseTText":"附加「四倍速」選項\n並且演奏成功",
+ "chineseTFontType":1,
+ "koreanText":"옵션 「네배」를 걸고\n클리어 성공",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_total_score",
+ "japaneseText":"通常スコア累計%d以上",
+ "japaneseFontType":0,
+ "englishUsText":"Accumulate a normal score\nof %d or more",
+ "englishUsFontType":0,
+ "chineseTText":"一般成績\n累計%d以上",
+ "chineseTFontType":1,
+ "koreanText":"통산 스코어 누계 %d 이상",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_total_sscore",
+ "japaneseText":"真打スコア累計%d以上",
+ "japaneseFontType":0,
+ "englishUsText":"Accumulate a Shin-Uchi\nscore of %d or more ",
+ "englishUsFontType":0,
+ "chineseTText":"真打成績累計%d以上",
+ "chineseTFontType":1,
+ "koreanText":"진타 스코어 누계 %d 이상",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_total_ryo",
+ "japaneseText":"良の数累計%d以上",
+ "japaneseFontType":0,
+ "englishUsText":"Accumulate a GOOD rate\nabove %d",
+ "englishUsFontType":0,
+ "chineseTText":"良次數\n累計%d以上",
+ "chineseTFontType":1,
+ "koreanText":"얼쑤 횟수 누계 %d 이상",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_total_left",
+ "japaneseText":"あと %d",
+ "japaneseFontType":0,
+ "englishUsText":" %d left",
+ "englishUsFontType":0,
+ "chineseTText":"剩下 %d",
+ "chineseTFontType":1,
+ "koreanText":"앞으로 %d",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_total_hitcount",
+ "japaneseText":"叩けた数累計%d以上",
+ "japaneseFontType":0,
+ "englishUsText":"Accumulate Hit rate\nabove %d",
+ "englishUsFontType":0,
+ "chineseTText":"音符成功敲打次數\n累計%d以上",
+ "chineseTFontType":1,
+ "koreanText":"북을 친 횟수 누계 %d 이상",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_sscore_hard",
+ "japaneseText":"「むずかしい」以上で\n真打スコア%d以上",
+ "japaneseFontType":0,
+ "englishUsText":"Shin-Uchi score above %d\non Hard Difficulty or higher",
+ "englishUsFontType":0,
+ "chineseTText":"在「困難」以上難度\n真打成績%d以上",
+ "chineseTFontType":1,
+ "koreanText":"「어려움」 이상에서\n진타 스코어 %d 이상",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_fuka_hard",
+ "japaneseText":"「むずかしい」以上で\n不可の数%d以下",
+ "japaneseFontType":0,
+ "englishUsText":"BAD rate below %d",
+ "englishUsFontType":0,
+ "chineseTText":"在「困難」以上難度\n不可次數%d以下",
+ "chineseTFontType":1,
+ "koreanText":"「어려움」 이상에서\n에구 횟수 %d 이하",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_tamachii_hard",
+ "japaneseText":"「むずかしい」以上で\n魂ゲージ%d%以上",
+ "japaneseFontType":0,
+ "englishUsText":"Soul gauge above %d",
+ "englishUsFontType":0,
+ "chineseTText":"在「困難」以上難度\n魂量表%d以上",
+ "chineseTFontType":1,
+ "koreanText":"「어려움」 이상에서\n게이지 %d% 이상",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_normaclear_hard",
+ "japaneseText":"「むずかしい」以上でノルマクリア",
+ "japaneseFontType":0,
+ "englishUsText":"Clear song",
+ "englishUsFontType":0,
+ "chineseTText":"在「困難」以上難度\n演奏成功",
+ "chineseTFontType":1,
+ "koreanText":"「어려움」 이상을 클리어 성공",
+ "koreanFontType":2
+ },
+ {
+ "key":"mission_bingo_fullcombo_hard",
+ "japaneseText":"「むずかしい」以上でフルコンボ",
+ "japaneseFontType":0,
+ "englishUsText":"Full combo",
+ "englishUsFontType":0,
+ "chineseTText":"在「困難」以上難度\n達成全連段",
+ "chineseTFontType":1,
+ "koreanText":"「어려움」 이상에서 풀 콤보",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select",
+ "japaneseText":"モードをえらぶ",
+ "japaneseFontType":0,
+ "englishUsText":"Select mode",
+ "englishUsFontType":0,
+ "chineseTText":"選擇模式",
+ "chineseTFontType":1,
+ "koreanText":"모드 선택",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_comment_configuration",
+ "japaneseText":"いろいろな設定を確認・変更できます\n音符位置・判定の調整やあそびかた説明の確認などができます",
+ "japaneseFontType":0,
+ "englishUsText":"Adjust various game settings here!\nIncludes calibration of music note positions,\nrecognition area and the tutorial.",
+ "englishUsFontType":0,
+ "chineseTText":"可以確認或變更各種設定\n亦可確認音符位置、判定調整以及遊戲玩法等說明",
+ "chineseTFontType":1,
+ "koreanText":"여러 가지 설정을 확인, 변경할 수 있습니다\n음표의 위치, 판정을 조정하거나\n플레이 방법 설명을 확인할 수 있습니다.",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_comment_dani",
+ "japaneseText":"他のプレイヤーのゴーストどん相手に腕試しができます\n※1人でプレイしている時のみ遊べるモードです",
+ "japaneseFontType":0,
+ "englishUsText":"Pit your skills against other ghost players!\n※Mode is only available for solo play.",
+ "englishUsFontType":0,
+ "chineseTText":"可以與其他玩家的複製咚較量身手\n※僅限於單人遊玩時可選擇的模式",
+ "chineseTFontType":1,
+ "koreanText":"다른 플레이어의 고스트동을 상대로\n실력을 겨룰 수 있습니다\n※혼자서 플레이할 때만 즐길 수 있는 모드입니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_comment_dlc",
+ "japaneseText":"PlayStation™Storeにアクセスして\n曲などの追加コンテンツを取得します\n※曲の試聴が行なえます",
+ "japaneseFontType":0,
+ "englishUsText":"Access PlayStation™Store for additional DLCs!\n※You can listen to the songs too!",
+ "englishUsFontType":0,
+ "chineseTText":"登入PlayStation™Store\n取得樂曲等追加內容\n※可以試聽樂曲",
+ "chineseTFontType":1,
+ "koreanText":"PlayStation™Store에 접속하여\n곡 등의 추가 콘텐츠를 획득합니다\n※곡 미리 듣기가 가능합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_comment_enso",
+ "japaneseText":"お気に入りの曲を自分に合ったむずかしさで遊べます\nキャラクターやフレンドといっしょに演奏したり\n演奏のトレーニングをしたりもできます",
+ "japaneseFontType":0,
+ "englishUsText":"Play your favorite song according to the difficulty selected!\nYou can perform and train together with characters or friends\nin Taiko Mode.",
+ "englishUsFontType":0,
+ "chineseTText":"可依適合自己的難度遊玩喜歡的樂曲\n亦可與角色或好友一同演奏\n或是自己進行訓練演奏",
+ "chineseTFontType":1,
+ "koreanText":"좋아하는 곡을 원하는 난이도로 즐길 수 있습니다\n캐릭터나 프렌드와 함께 연주하거나\n곡의 트레이닝을 할 수도 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_comment_event",
+ "japaneseText":"(仮テキスト)開催中のイベントフェスの状況を確認します\nイベントフェスでは、2つのチームのどちらかに参加して\nみんなで集めた合計ポイントを競います",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"개최 중인 이벤트 페스티벌의 상황을 확인합니다\n이벤트 페스티벌에서는 두 팀 중 한쪽에 참가하여\n다 함께 모은 포인트의 합계로 경쟁합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_comment_gasha",
+ "japaneseText":"集めた「ドン小判」でアイテム玉手箱を開けて\nきせかえ・音色・称号などをゲットできます",
+ "japaneseFontType":0,
+ "englishUsText":"Use collected DON coins on Treasure Boxes to get various\ncustom costumes, instruments, titles, etc!",
+ "englishUsFontType":0,
+ "chineseTText":"可以用收集到的「咚小判」開啟道具玉匣子\n獲得換裝配件、音色、稱號等要素",
+ "chineseTFontType":1,
+ "koreanText":"모아 놓은 「동 전」으로 아이템 뽑기 상자를 열어\n의상, 음색, 칭호 등을 얻을 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_comment_studio",
+ "japaneseText":"どんちゃんの見た目や称号を変えることができます",
+ "japaneseFontType":0,
+ "englishUsText":"Customize titles or DON-chan's appearance to your liking!",
+ "englishUsFontType":0,
+ "chineseTText":"可以變更小咚的外觀與稱號",
+ "chineseTFontType":1,
+ "koreanText":"동이의 겉모습이나 칭호를 바꿀 수 있습니다.",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_configuration",
+ "japaneseText":"ゲーム設定",
+ "japaneseFontType":0,
+ "englishUsText":"Game\nSettings",
+ "englishUsFontType":0,
+ "chineseTText":"遊戲設定",
+ "chineseTFontType":1,
+ "koreanText":"게임 설정",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_dani",
+ "japaneseText":"太鼓\nランクマッチ",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko\nRanked Match",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓\n線上排名戰",
+ "chineseTFontType":1,
+ "koreanText":"태고\n랭크 매치",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_dlc",
+ "japaneseText":"追加\nコンテンツ",
+ "japaneseFontType":0,
+ "englishUsText":"Additional\nDLC",
+ "englishUsFontType":0,
+ "chineseTText":"追加內容",
+ "chineseTFontType":1,
+ "koreanText":"추가\n콘텐츠",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_enso",
+ "japaneseText":"演奏ゲーム",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Mode",
+ "englishUsFontType":0,
+ "chineseTText":"演奏遊戲",
+ "chineseTFontType":1,
+ "koreanText":"연주",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_event",
+ "japaneseText":"イベントフェス",
+ "japaneseFontType":0,
+ "englishUsText":"Event",
+ "englishUsFontType":0,
+ "chineseTText":"活動",
+ "chineseTFontType":1,
+ "koreanText":"이벤트 페스티벌",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_gasha",
+ "japaneseText":"アイテム\n玉手箱",
+ "japaneseFontType":0,
+ "englishUsText":"Treasure\nBox",
+ "englishUsFontType":0,
+ "chineseTText":"道具玉匣子",
+ "chineseTFontType":1,
+ "koreanText":"아이템\n뽑기 상자",
+ "koreanFontType":2
+ },
+ {
+ "key":"mode_select_studio",
+ "japaneseText":"カスタマイズ\nルーム",
+ "japaneseFontType":0,
+ "englishUsText":"Customize\nRoom",
+ "englishUsFontType":0,
+ "chineseTText":"自訂房間",
+ "chineseTFontType":1,
+ "koreanText":"커스터마이즈룸",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_certification",
+ "japaneseText":"ランク認定戦",
+ "japaneseFontType":0,
+ "englishUsText":"Evaluation Match",
+ "englishUsFontType":0,
+ "chineseTText":"階級審核戰",
+ "chineseTFontType":1,
+ "koreanText":"랭크 검정 배틀",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_certification_guide",
+ "japaneseText":"ランクを認定するために\nランク認定戦を行います",
+ "japaneseFontType":0,
+ "englishUsText":"To evaluate your rank, an\nEvaluation Match will occur.",
+ "englishUsFontType":0,
+ "chineseTText":"為了判定階級\n即將進行階級審核戰",
+ "chineseTFontType":1,
+ "koreanText":"랭크를 검정하기 위해\n랭크 검정 배틀을 시작합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_certification_intro",
+ "japaneseText":"はじめのランクを決めるために、ランク認定戦を行います\nランク認定戦は「演奏対決」を選んで5回戦います",
+ "japaneseFontType":0,
+ "englishUsText":"Play 5 evaluation matches to\ndetermine your starting rank.",
+ "englishUsFontType":0,
+ "chineseTText":"為了決定初次階級,即將進行階級審核戰\n階級審核戰會選擇「演奏對決」並對戰5次",
+ "chineseTFontType":1,
+ "koreanText":"최초 랭크를 매기기 위해 랭크 검정 배틀을 실시합니다\n「연주 대결」을 선택하면 5번에 걸쳐 진행합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_certification_help1_text",
+ "japaneseText":"あなたのランクを認定します\nランク認定戦は5戦あります",
+ "japaneseFontType":0,
+ "englishUsText":"Your rank will be evaluated based\non 5 Evaluation Matches.",
+ "englishUsFontType":0,
+ "chineseTText":"即將審核你的階級\n階級判定戰總共有5場對戰",
+ "chineseTFontType":1,
+ "koreanText":"당신의 랭크를 검정합니다\n랭크 검정 배틀은 5번 합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_certification_help1_title",
+ "japaneseText":"演奏対決",
+ "japaneseFontType":0,
+ "englishUsText":"VS Match",
+ "englishUsFontType":0,
+ "chineseTText":"演奏對決",
+ "chineseTFontType":1,
+ "koreanText":"연주 대결",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_certification_help2_text",
+ "japaneseText":"ゴーストどんと演奏スコア対決をします\nランクに応じた対戦相手とマッチングします",
+ "japaneseFontType":0,
+ "englishUsText":"Play against Ghost players in score battle as we\nmatch you with opponents according to your rank",
+ "englishUsFontType":0,
+ "chineseTText":"將與複製咚們進行演奏成績對決\n會與自身階級相當的對戰對手進行對戰",
+ "chineseTFontType":1,
+ "koreanText":"고스트동과 연주 스코어로 대결합니다\n랭크에 따른 대전 상대와 매칭합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_certification_help3_text",
+ "japaneseText":"対戦ポイントのランキングを確認できます",
+ "japaneseFontType":0,
+ "englishUsText":"View VS Points ranking",
+ "englishUsFontType":0,
+ "chineseTText":"可以確認對戰點數的排行榜",
+ "chineseTFontType":1,
+ "koreanText":"대전 포인트 랭킹을 확인할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_certification_help3_title",
+ "japaneseText":"対戦ポイントランキング",
+ "japaneseFontType":0,
+ "englishUsText":"VS Points Ranking",
+ "englishUsFontType":0,
+ "chineseTText":"對戰點數排行榜",
+ "chineseTFontType":1,
+ "koreanText":"대전 포인트 랭킹",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_certification_help4_text",
+ "japaneseText":"対戦成績を確認できます",
+ "japaneseFontType":0,
+ "englishUsText":"View VS results",
+ "englishUsFontType":0,
+ "chineseTText":"可以確認對戰成績",
+ "chineseTFontType":1,
+ "koreanText":"대전 성적을 확인할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_certification_help4_title",
+ "japaneseText":"対戦成績",
+ "japaneseFontType":0,
+ "englishUsText":"VS Result",
+ "englishUsFontType":0,
+ "chineseTText":"對戰成績",
+ "chineseTFontType":1,
+ "koreanText":"대전 성적",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_certification_times_1",
+ "japaneseText":"1戦目",
+ "japaneseFontType":0,
+ "englishUsText":"1st Match",
+ "englishUsFontType":0,
+ "chineseTText":"第1戰",
+ "chineseTFontType":1,
+ "koreanText":"1번째 배틀",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_certification_times_2",
+ "japaneseText":"2戦目",
+ "japaneseFontType":0,
+ "englishUsText":"2nd Match",
+ "englishUsFontType":0,
+ "chineseTText":"第2戰",
+ "chineseTFontType":1,
+ "koreanText":"2번째 배틀",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_certification_times_3",
+ "japaneseText":"3戦目",
+ "japaneseFontType":0,
+ "englishUsText":"3rd Match",
+ "englishUsFontType":0,
+ "chineseTText":"第3戰",
+ "chineseTFontType":1,
+ "koreanText":"3번째 배틀",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_certification_times_4",
+ "japaneseText":"4戦目",
+ "japaneseFontType":0,
+ "englishUsText":"4th Match",
+ "englishUsFontType":0,
+ "chineseTText":"第4戰",
+ "chineseTFontType":1,
+ "koreanText":"4번째 배틀",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_certification_times_5",
+ "japaneseText":"5戦目",
+ "japaneseFontType":0,
+ "englishUsText":"5th Match",
+ "englishUsFontType":0,
+ "chineseTText":"第5戰",
+ "chineseTFontType":1,
+ "koreanText":"5번째 배틀",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_consecutive_win_bonus",
+ "japaneseText":"連勝ボーナス",
+ "japaneseFontType":0,
+ "englishUsText":"Consecutive Win Bonus",
+ "englishUsFontType":0,
+ "chineseTText":"連勝獎勵",
+ "chineseTFontType":1,
+ "koreanText":"연승 보너스",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_help1_title",
+ "japaneseText":"太鼓ランクマッチとは?",
+ "japaneseFontType":0,
+ "englishUsText":"What is Taiko Ranked Match?",
+ "englishUsFontType":0,
+ "chineseTText":"什麼是太鼓線上排名戰?",
+ "chineseTFontType":1,
+ "koreanText":"태고 랭크 매치란?",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_help1_txt",
+ "japaneseText":"他のプレイヤーのゴーストどんと演奏対決!\n自分の腕前に応じた相手とマッチング!\n勝ち進んで上位ランクを目指そう!",
+ "japaneseFontType":0,
+ "englishUsText":"Compete against other Ghost players in VS Match!\nMatch your skills against suitable opponents!\nWin your way through and aim for the top!",
+ "englishUsFontType":0,
+ "chineseTText":"與其他玩家的複製咚來場演奏對決!\n與自己實力旗鼓相當的對手對戰!\n贏到最後並以前段階級為目標!",
+ "chineseTFontType":1,
+ "koreanText":"다른 플레이어의 고스트동과 연주 대결!\n자신의 실력에 맞는 상대와 매칭!\n승리를 쌓아올려 상위 랭크를 노리자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_help2_lose",
+ "japaneseText":"負け!",
+ "japaneseFontType":0,
+ "englishUsText":"YOU LOSE!",
+ "englishUsFontType":0,
+ "chineseTText":"落敗!",
+ "chineseTFontType":1,
+ "koreanText":"패배!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_help2_title",
+ "japaneseText":"ゲームルールはスコア対決!",
+ "japaneseFontType":0,
+ "englishUsText":"Compete with score!",
+ "englishUsFontType":0,
+ "chineseTText":"遊戲規則為成績對決!",
+ "chineseTFontType":1,
+ "koreanText":"게임 룰은 스코어 대결!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_help2_txt",
+ "japaneseText":"演奏終了時、相手のスコアを越えれば勝ち!",
+ "japaneseFontType":0,
+ "englishUsText":"Player with the higher score wins!",
+ "englishUsFontType":0,
+ "chineseTText":"演奏結束時,超越對手的成績就算勝利!",
+ "chineseTFontType":1,
+ "koreanText":"연주 종료 시 상대의 스코어를 넘으면 승리!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_help2_win",
+ "japaneseText":"勝ち!",
+ "japaneseFontType":0,
+ "englishUsText":"YOU WIN!",
+ "englishUsFontType":0,
+ "chineseTText":"勝利!",
+ "chineseTFontType":1,
+ "koreanText":"승리!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_help3_rank",
+ "japaneseText":"ランク",
+ "japaneseFontType":0,
+ "englishUsText":"Rank",
+ "englishUsFontType":0,
+ "chineseTText":"階級",
+ "chineseTFontType":1,
+ "koreanText":"랭크",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_help3_title",
+ "japaneseText":"勝ち星メダルをためよう!",
+ "japaneseFontType":0,
+ "englishUsText":"Let's accumulate victory medals!",
+ "englishUsFontType":0,
+ "chineseTText":"累積獲勝獎牌吧!",
+ "chineseTFontType":1,
+ "koreanText":"승점 메달을 모으자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_help3_txt",
+ "japaneseText":"勝つと1枚、連勝すると更に1枚ボーナス!",
+ "japaneseFontType":0,
+ "englishUsText":"Each win earns you a victory medal while consecutive\nwins add another bonus victory medal!",
+ "englishUsFontType":0,
+ "chineseTText":"獲勝會得到1枚,連勝後會再得到1枚作為獎勵!",
+ "chineseTFontType":1,
+ "koreanText":"이기면 1개. 연승하면 또 1개 보너스!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_help4_title",
+ "japaneseText":"ランクアップを目指そう!",
+ "japaneseFontType":0,
+ "englishUsText":"Strive for Rank UP!",
+ "englishUsFontType":0,
+ "chineseTText":"以提昇階級為目標吧!",
+ "chineseTFontType":1,
+ "koreanText":"랭크 업을 목표로 화이팅!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_help4_txt",
+ "japaneseText":"勝ち星メダルが一杯になると、ランクアップ!",
+ "japaneseFontType":0,
+ "englishUsText":"Automatically Rank UP when victory medals are filled!",
+ "englishUsFontType":0,
+ "chineseTText":"獲勝獎牌數量集滿時,即可提昇階級!",
+ "chineseTFontType":1,
+ "koreanText":"승점 메달이 가득 차면 랭크 업!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_help5_title",
+ "japaneseText":"対戦ポイントもためよう!",
+ "japaneseFontType":0,
+ "englishUsText":"Let's accumulate VS Points!",
+ "englishUsFontType":0,
+ "chineseTText":"累積對戰點數吧!",
+ "chineseTFontType":1,
+ "koreanText":"대전 포인트도 모아 보자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_help5_txt",
+ "japaneseText":"ランクインして、フレンドやライバルに差をつけよう!",
+ "japaneseFontType":0,
+ "englishUsText":"Enter the ranking!\nShow your friend and rival the difference!",
+ "englishUsFontType":0,
+ "chineseTText":"躋身排行榜,並與好友及對手拉開差距吧!",
+ "chineseTFontType":1,
+ "koreanText":"랭크 인해서\n프렌드나 라이벌과 격차를 벌리자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_help6_add_txt",
+ "japaneseText":"※ペナルティの詳細については公式サイトをご覧ください",
+ "japaneseFontType":0,
+ "englishUsText":"※For more details on penalties, please refer to the official website.",
+ "englishUsFontType":0,
+ "chineseTText":"※關於懲罰細節,請參照官方網站",
+ "chineseTFontType":1,
+ "koreanText":"※페널티의 자세한 정보는 공식 사이트를 확인하여 주십시오",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_help6_title",
+ "japaneseText":"【ご注意】プレイ中断について",
+ "japaneseFontType":0,
+ "englishUsText":"[WARNING] About game interruption",
+ "englishUsFontType":0,
+ "chineseTText":"[注意]關於中斷遊玩",
+ "chineseTFontType":1,
+ "koreanText":"【주의】 플레이 중단에 관하여",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_help6_txt",
+ "japaneseText":"演奏対決中にゲームを中断すると\n負けとなり、低評価の戦績が残ります",
+ "japaneseFontType":0,
+ "englishUsText":"When a game interruption occurs in VS Match,\na loss will be recorded, resulting in a poor evaluation.",
+ "englishUsFontType":0,
+ "chineseTText":"若是在演奏對決中中斷遊戲\n會判定落敗,留下低評價的戰績",
+ "chineseTFontType":1,
+ "koreanText":"연주 대결 중에 게임을 중단하면\n패배로 취급되어, 전적에 저평가로 기록됩니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_inferior",
+ "japaneseText":"劣勢",
+ "japaneseFontType":0,
+ "englishUsText":"Losing",
+ "englishUsFontType":0,
+ "chineseTText":"不利",
+ "chineseTFontType":1,
+ "koreanText":"열세",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_match_error",
+ "japaneseText":"前回の対戦中にプレイが中断されました\n1戦分「負け」となりますので、ご注意ください",
+ "japaneseFontType":0,
+ "englishUsText":"A VS Match game interruption occurred.\nPlease take note that you lost the last game.",
+ "englishUsFontType":0,
+ "chineseTText":"前一次對戰中已中斷遊玩\n變成「落敗」一場,敬請注意",
+ "chineseTFontType":1,
+ "koreanText":"지난 대전 중, 플레이가 중단되었습니다\n1번 「패배」로 취급되니 주의하여 주십시오",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_match_miss",
+ "japaneseText":"対戦相手が見つかりません",
+ "japaneseFontType":0,
+ "englishUsText":"Unable to find opponent.",
+ "englishUsFontType":0,
+ "chineseTText":"搜尋不到對戰對手",
+ "chineseTFontType":1,
+ "koreanText":"대전 상대를 찾지 못했습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_match_search",
+ "japaneseText":"対戦相手を探しています…",
+ "japaneseFontType":0,
+ "englishUsText":"Searching for opponent...",
+ "englishUsFontType":0,
+ "chineseTText":"正在搜尋對戰對手",
+ "chineseTFontType":1,
+ "koreanText":"대전 상대를 찾고 있습니다…",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_point",
+ "japaneseText":"対戦ポイント",
+ "japaneseFontType":0,
+ "englishUsText":"Total VS Points",
+ "englishUsFontType":0,
+ "chineseTText":"對戰點數",
+ "chineseTFontType":1,
+ "koreanText":"대전 포인트",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_rankdown",
+ "japaneseText":"ランクダウン",
+ "japaneseFontType":0,
+ "englishUsText":"Rank Down",
+ "englishUsFontType":0,
+ "chineseTText":"階級下降",
+ "chineseTFontType":1,
+ "koreanText":"랭크 다운",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_ranking_all",
+ "japaneseText":"ALL",
+ "japaneseFontType":0,
+ "englishUsText":"All",
+ "englishUsFontType":0,
+ "chineseTText":"ALL",
+ "chineseTFontType":1,
+ "koreanText":"ALL",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_ranking_friend",
+ "japaneseText":"フレンド",
+ "japaneseFontType":0,
+ "englishUsText":"Friend",
+ "englishUsFontType":0,
+ "chineseTText":"好友",
+ "chineseTFontType":1,
+ "koreanText":"프렌드",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_ranking_guide1",
+ "japaneseText":"TOP/自分 切り替え",
+ "japaneseFontType":0,
+ "englishUsText":"TOP/You Toggle",
+ "englishUsFontType":0,
+ "chineseTText":"切換 TOP/自己 ",
+ "chineseTFontType":1,
+ "koreanText":"TOP / 자신 전환",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_ranking_guide3",
+ "japaneseText":"フレンド⇔ALL",
+ "japaneseFontType":0,
+ "englishUsText":"Friend ⇔ All",
+ "englishUsFontType":0,
+ "chineseTText":"好友⇔ALL",
+ "chineseTFontType":1,
+ "koreanText":"프렌드 ⇔ ALL",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_ranking_guide2",
+ "japaneseText":"プロフィール",
+ "japaneseFontType":0,
+ "englishUsText":"Profile",
+ "englishUsFontType":0,
+ "chineseTText":"個人資料",
+ "chineseTFontType":1,
+ "koreanText":"프로필",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_ranking_L1",
+ "japaneseText":"L1",
+ "japaneseFontType":0,
+ "englishUsText":"L1",
+ "englishUsFontType":0,
+ "chineseTText":"L 1",
+ "chineseTFontType":1,
+ "koreanText":"L1",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_ranking_R1",
+ "japaneseText":"R1",
+ "japaneseFontType":0,
+ "englishUsText":"R1",
+ "englishUsFontType":0,
+ "chineseTText":"R 1",
+ "chineseTFontType":1,
+ "koreanText":"R1",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_ranking_sub_id",
+ "japaneseText":"オンラインID",
+ "japaneseFontType":0,
+ "englishUsText":"Online ID",
+ "englishUsFontType":0,
+ "chineseTText":"線上ID",
+ "chineseTFontType":1,
+ "koreanText":"온라인 ID",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_ranking_sub_rank",
+ "japaneseText":"順位",
+ "japaneseFontType":0,
+ "englishUsText":"Ranking",
+ "englishUsFontType":0,
+ "chineseTText":"排名",
+ "chineseTFontType":1,
+ "koreanText":"순위",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_rankup",
+ "japaneseText":"ランクアップ",
+ "japaneseFontType":0,
+ "englishUsText":"Rank UP",
+ "englishUsFontType":0,
+ "chineseTText":"階級提昇",
+ "chineseTFontType":1,
+ "koreanText":"랭크 업",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_reached_rank20",
+ "japaneseText":"ランク20到達!",
+ "japaneseFontType":0,
+ "englishUsText":"Rank 20 achieved!",
+ "englishUsFontType":0,
+ "chineseTText":"達到 階級20!",
+ "chineseTFontType":1,
+ "koreanText":"랭크 20 도달!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_reached_rank25",
+ "japaneseText":"ランク25到達!",
+ "japaneseFontType":0,
+ "englishUsText":"Rank 25 achieved!",
+ "englishUsFontType":0,
+ "chineseTText":"達到 階級25!",
+ "chineseTFontType":1,
+ "koreanText":"랭크 25 도달!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_reached_rank30",
+ "japaneseText":"ランク30到達!",
+ "japaneseFontType":0,
+ "englishUsText":"Rank 30 achieved!",
+ "englishUsFontType":0,
+ "chineseTText":"達到 階級30!",
+ "chineseTFontType":1,
+ "koreanText":"랭크 30 도달!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_reached_rank40",
+ "japaneseText":"ランク40到達!",
+ "japaneseFontType":0,
+ "englishUsText":"Rank 40 achieved!",
+ "englishUsFontType":0,
+ "chineseTText":"達到 階級40!",
+ "chineseTFontType":1,
+ "koreanText":"랭크 40 도달!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_reached_rank50",
+ "japaneseText":"ランク50到達!",
+ "japaneseFontType":0,
+ "englishUsText":"Rank 50 achieved!",
+ "englishUsFontType":0,
+ "chineseTText":"達到 階級50!",
+ "chineseTFontType":1,
+ "koreanText":"랭크 50 도달!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_reached_rank60",
+ "japaneseText":"ランク60到達!",
+ "japaneseFontType":0,
+ "englishUsText":"Rank 60 achieved!",
+ "englishUsFontType":0,
+ "chineseTText":"達到 階級60!",
+ "chineseTFontType":1,
+ "koreanText":"랭크 60 도달!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_reached_rank70",
+ "japaneseText":"ランク70到達!",
+ "japaneseFontType":0,
+ "englishUsText":"Rank 70 achieved!",
+ "englishUsFontType":0,
+ "chineseTText":"達到 階級70!",
+ "chineseTFontType":1,
+ "koreanText":"랭크 70 도달!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_reached_rank80",
+ "japaneseText":"ランク80到達!",
+ "japaneseFontType":0,
+ "englishUsText":"Rank 80 achieved!",
+ "englishUsFontType":0,
+ "chineseTText":"達到 階級80!",
+ "chineseTFontType":1,
+ "koreanText":"랭크 80 도달!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_reached_rank90",
+ "japaneseText":"ランク90到達!",
+ "japaneseFontType":0,
+ "englishUsText":"Rank 90 achieved!",
+ "englishUsFontType":0,
+ "chineseTText":"達到 階級90!",
+ "chineseTFontType":1,
+ "koreanText":"랭크 90 도달!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_reached_rank99",
+ "japaneseText":"ランク99到達!",
+ "japaneseFontType":0,
+ "englishUsText":"Rank 99 achieved!",
+ "englishUsFontType":0,
+ "chineseTText":"達到 階級99!",
+ "chineseTFontType":1,
+ "koreanText":"랭크 99 도달!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_result_add_txt",
+ "japaneseText":"※「平均秒間連打数」「平均叩けた率」「良の精度」は\n直近100曲分の対戦データの集計になります",
+ "japaneseFontType":0,
+ "englishUsText":"※Highest Drum Roll hits per second, Average Hit Rate and GOOD Accuracy\ndata are evaluated based on an estimated 100 VS Matches.",
+ "englishUsFontType":0,
+ "chineseTText":"※「平均每秒連打數」「平均音符成功敲打率」「良精準度」\n會收集將近100首數量的對戰資料以做統計。",
+ "chineseTFontType":1,
+ "koreanText":"※「초당 평균 연타 수」 「두드린 평균치」 「얼쑤 비율」은\n직전 100곡 만큼의 대전 데이터를 집계한 것입니다.",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_result_average_hit_second",
+ "japaneseText":"平均秒間連打数",
+ "japaneseFontType":0,
+ "englishUsText":"Average hit per second",
+ "englishUsFontType":0,
+ "chineseTText":"平均每秒連打數",
+ "chineseTFontType":1,
+ "koreanText":"초당 평균 연타 수",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_result_draw",
+ "japaneseText":"引き分け",
+ "japaneseFontType":0,
+ "englishUsText":"Draw",
+ "englishUsFontType":0,
+ "chineseTText":"平手",
+ "chineseTFontType":1,
+ "koreanText":"무승부",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_result_hit_great_rate",
+ "japaneseText":"良の精度",
+ "japaneseFontType":0,
+ "englishUsText":"GOOD Accuracy",
+ "englishUsFontType":0,
+ "chineseTText":"良精準度",
+ "chineseTFontType":1,
+ "koreanText":"얼쑤 비율",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_result_hit_success_rate",
+ "japaneseText":"平均叩けた率",
+ "japaneseFontType":0,
+ "englishUsText":"Average Hit Rate",
+ "englishUsFontType":0,
+ "chineseTText":"平均音符成功敲打率",
+ "chineseTFontType":1,
+ "koreanText":"두드린 평균치",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_result_lose",
+ "japaneseText":"負け",
+ "japaneseFontType":0,
+ "englishUsText":"Lose",
+ "englishUsFontType":0,
+ "chineseTText":"落敗",
+ "chineseTFontType":1,
+ "koreanText":"패배",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_result_times_fullcombo",
+ "japaneseText":"フルコンボ回数",
+ "japaneseFontType":0,
+ "englishUsText":"Total Full Combo",
+ "englishUsFontType":0,
+ "chineseTText":"全連段次數",
+ "chineseTFontType":1,
+ "koreanText":"풀 콤보 횟수",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_result_times_hit_second",
+ "japaneseText":"最高秒間連打数",
+ "japaneseFontType":0,
+ "englishUsText":"Highest Drum Roll Hits per second",
+ "englishUsFontType":0,
+ "chineseTText":"最高每秒連打數",
+ "chineseTFontType":1,
+ "koreanText":"최고 초당 연타 수",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_result_times_match",
+ "japaneseText":"対戦数",
+ "japaneseFontType":0,
+ "englishUsText":"VS Match count",
+ "englishUsFontType":0,
+ "chineseTText":"對戰次數",
+ "chineseTFontType":1,
+ "koreanText":"대전 횟수",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_result_times_rensho",
+ "japaneseText":"最高連勝数",
+ "japaneseFontType":0,
+ "englishUsText":"Highest consecutive Wins",
+ "englishUsFontType":0,
+ "chineseTText":"最高連勝數",
+ "chineseTFontType":1,
+ "koreanText":"최고 연승 수",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_result_times_win",
+ "japaneseText":"勝利数",
+ "japaneseFontType":0,
+ "englishUsText":"Wins",
+ "englishUsFontType":0,
+ "chineseTText":"勝利次數",
+ "chineseTFontType":1,
+ "koreanText":"승리 수",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_result_win",
+ "japaneseText":"勝ち",
+ "japaneseFontType":0,
+ "englishUsText":"Win",
+ "englishUsFontType":0,
+ "chineseTText":"勝利",
+ "chineseTFontType":1,
+ "koreanText":"승리",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_result_win_1word",
+ "japaneseText":"勝",
+ "japaneseFontType":0,
+ "englishUsText":"W",
+ "englishUsFontType":0,
+ "chineseTText":"勝",
+ "chineseTFontType":1,
+ "koreanText":"승",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_result_lose_1word",
+ "japaneseText":"負",
+ "japaneseFontType":0,
+ "englishUsText":"L",
+ "englishUsFontType":0,
+ "chineseTText":"敗",
+ "chineseTFontType":1,
+ "koreanText":"패",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_result_draw_1word",
+ "japaneseText":"分",
+ "japaneseFontType":0,
+ "englishUsText":"D",
+ "englishUsFontType":0,
+ "chineseTText":"平",
+ "chineseTFontType":1,
+ "koreanText":"무",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_result_win_rate",
+ "japaneseText":"勝率",
+ "japaneseFontType":0,
+ "englishUsText":"Win Rate",
+ "englishUsFontType":0,
+ "chineseTText":"勝率",
+ "chineseTFontType":1,
+ "koreanText":"승률",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_superior",
+ "japaneseText":"優勢",
+ "japaneseFontType":0,
+ "englishUsText":"Winning",
+ "englishUsFontType":0,
+ "chineseTText":"有利",
+ "chineseTFontType":1,
+ "koreanText":"우세",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_top_match",
+ "japaneseText":"演奏対決",
+ "japaneseFontType":0,
+ "englishUsText":"VS Match",
+ "englishUsFontType":0,
+ "chineseTText":"演奏對決",
+ "chineseTFontType":1,
+ "koreanText":"연주 대결",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_top_match_help",
+ "japaneseText":"ゴーストどん達と演奏スコア対決をします\nランクに応じた対戦相手とマッチングします",
+ "japaneseFontType":0,
+ "englishUsText":"Play against Ghost players in score battle as we\nmatch you with opponents according to your rank",
+ "englishUsFontType":0,
+ "chineseTText":"將與複製咚們進行演奏成績對決\n會與自身階級相當的對戰對手進行對戰",
+ "chineseTFontType":1,
+ "koreanText":"고스트동들과 연주 스코어를 겨룹니다\n랭크에 따른 대전 상대와 매칭합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_top_match_status",
+ "japaneseText":"ランク認定中",
+ "japaneseFontType":0,
+ "englishUsText":"Evaluating rank...",
+ "englishUsFontType":0,
+ "chineseTText":"階級審核中",
+ "chineseTFontType":1,
+ "koreanText":"랭크 검정 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_top_ranking",
+ "japaneseText":"対戦ポイント\nランキング",
+ "japaneseFontType":0,
+ "englishUsText":"VS Points\nRanking",
+ "englishUsFontType":0,
+ "chineseTText":"對戰點數\n排行榜",
+ "chineseTFontType":1,
+ "koreanText":"대전 포인트\n랭킹",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_top_ranking_help",
+ "japaneseText":"対戦ポイントのランキングを確認できます",
+ "japaneseFontType":0,
+ "englishUsText":"View VS Points ranking",
+ "englishUsFontType":0,
+ "chineseTText":"可以確認對戰點數的排行榜",
+ "chineseTFontType":1,
+ "koreanText":"대전 포인트 랭킹을 확인할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_top_result",
+ "japaneseText":"対戦成績",
+ "japaneseFontType":0,
+ "englishUsText":"VS Result",
+ "englishUsFontType":0,
+ "chineseTText":"對戰成績",
+ "chineseTFontType":1,
+ "koreanText":"대전 성적",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_top_result_help",
+ "japaneseText":"対戦成績を確認できます",
+ "japaneseFontType":0,
+ "englishUsText":"View VS results",
+ "englishUsFontType":0,
+ "chineseTText":"可以確認對戰成績",
+ "chineseTFontType":1,
+ "koreanText":"대전 성적을 확인할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_top_status_progress",
+ "japaneseText":"途中経過",
+ "japaneseFontType":0,
+ "englishUsText":"Progression",
+ "englishUsFontType":0,
+ "chineseTText":"中間過程",
+ "chineseTFontType":1,
+ "koreanText":"중간 결과",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_top_status_rensho",
+ "japaneseText":"%d連勝中!",
+ "japaneseFontType":0,
+ "englishUsText":"CONSECUTIVE %d WINS!",
+ "englishUsFontType":0,
+ "chineseTText":"%d連勝中!",
+ "chineseTFontType":1,
+ "koreanText":"%d 연승 중!",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_top_title",
+ "japaneseText":"太鼓ランクマッチ",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Ranked Match",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓線上排名戰",
+ "chineseTFontType":1,
+ "koreanText":"태고 랭크 매치",
+ "koreanFontType":2
+ },
+ {
+ "key":"rankmatch_npc_curry",
+ "japaneseText":"カレクッタ=ドンディー",
+ "japaneseFontType":0,
+ "englishUsText":"Currycutta-Dondy",
+ "englishUsFontType":0,
+ "chineseTText":"咖哩‧咚迪",
+ "chineseTFontType":1,
+ "koreanText":"콜카레=동디",
+ "koreanFontType":2
+ },
+ {
+ "key":"rankmatch_npc_don",
+ "japaneseText":"どんちゃん",
+ "japaneseFontType":0,
+ "englishUsText":"DON-chan",
+ "englishUsFontType":0,
+ "chineseTText":"小咚",
+ "chineseTFontType":1,
+ "koreanText":"동이",
+ "koreanFontType":2
+ },
+ {
+ "key":"rankmatch_npc_katsu",
+ "japaneseText":"かっちゃん",
+ "japaneseFontType":0,
+ "englishUsText":"KATSU-chan",
+ "englishUsFontType":0,
+ "chineseTText":"小咔",
+ "chineseTFontType":1,
+ "koreanText":"딱이",
+ "koreanFontType":2
+ },
+ {
+ "key":"rankmatch_npc_yomo",
+ "japaneseText":"よもぎまる",
+ "japaneseFontType":0,
+ "englishUsText":"Yomogimaru",
+ "englishUsFontType":0,
+ "chineseTText":"艾草丸",
+ "chineseTFontType":1,
+ "koreanText":"요모기마루",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_pause_menu1",
+ "japaneseText":"残り%n回",
+ "japaneseFontType":0,
+ "englishUsText":"Remaining %n",
+ "englishUsFontType":0,
+ "chineseTText":"剩下%n次",
+ "chineseTFontType":1,
+ "koreanText":"남은 %n 횟수",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_pause_menu2",
+ "japaneseText":"あきらめる",
+ "japaneseFontType":0,
+ "englishUsText":"Quit VS Match",
+ "englishUsFontType":0,
+ "chineseTText":"投降",
+ "chineseTFontType":1,
+ "koreanText":"포기한다",
+ "koreanFontType":2
+ },
+ {
+ "key":"rank_pause_quit_cert",
+ "japaneseText":"認定戦を中止する",
+ "japaneseFontType":0,
+ "englishUsText":"Quit VS Match",
+ "englishUsFontType":0,
+ "chineseTText":"中止審核戰",
+ "chineseTFontType":1,
+ "koreanText":"검정 배틀을 중지합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"hint",
+ "japaneseText":"ゲームのヒント",
+ "japaneseFontType":0,
+ "englishUsText":"Hint",
+ "englishUsFontType":0,
+ "chineseTText":"遊戲提示",
+ "chineseTFontType":1,
+ "koreanText":"게임의 힌트",
+ "koreanFontType":2
+ },
+ {
+ "key":"loading",
+ "japaneseText":"ロード中",
+ "japaneseFontType":0,
+ "englishUsText":"Loading",
+ "englishUsFontType":0,
+ "chineseTText":"讀取中",
+ "chineseTFontType":1,
+ "koreanText":"로딩 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_dora_load",
+ "japaneseText":"ぼくドラえもんです。よろしくね、ふふふ",
+ "japaneseFontType":0,
+ "englishUsText":"I'm Doraemon. Nice to meet you.",
+ "englishUsFontType":0,
+ "chineseTText":"我是哆啦A夢。請多指教囉,呵呵呵",
+ "chineseTFontType":1,
+ "koreanText":"난 도라에몽이야. 잘 부탁해, 후후후",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_kitty_load1",
+ "japaneseText":"ハロー!わたしキティ!よろしくね!",
+ "japaneseFontType":0,
+ "englishUsText":"Hellooo! I'm Kitty! Nice to meet you!",
+ "englishUsFontType":0,
+ "chineseTText":"哈囉!我是Kitty!請多指教囉!",
+ "chineseTFontType":1,
+ "koreanText":"헬로~! 난 키티! 잘 부탁해!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_kitty_load2",
+ "japaneseText":"レッツプレイ!太鼓の達人!",
+ "japaneseFontType":0,
+ "englishUsText":"LET'S PLAY! Taiko Master!",
+ "englishUsFontType":0,
+ "chineseTText":"Let's Play!太鼓之達人!",
+ "chineseTFontType":1,
+ "koreanText":"렛츠 플레이! 태고의 달인!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_miku_load1",
+ "japaneseText":"よろしく~!ミクとプレイしてね~!",
+ "japaneseFontType":0,
+ "englishUsText":"Nice to meet you! Please play with MIKU~!",
+ "englishUsFontType":0,
+ "chineseTText":"請多指教~!和未來一起玩吧~!",
+ "chineseTFontType":1,
+ "koreanText":"잘 부탁해~! 미쿠랑 플레이하자~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_miku_load2",
+ "japaneseText":"ミクと遊んでくれて、ありがと~!",
+ "japaneseFontType":0,
+ "englishUsText":"Thanks for playing with MIKU~!",
+ "englishUsFontType":0,
+ "chineseTText":"謝謝你和未來一起玩~!",
+ "chineseTFontType":1,
+ "koreanText":"미쿠랑 놀아줘서 고마워~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_kekken_load1",
+ "japaneseText":"はじめるとするか!",
+ "japaneseFontType":0,
+ "englishUsText":"Let's begin!",
+ "englishUsFontType":0,
+ "chineseTText":"開始吧!",
+ "chineseTFontType":1,
+ "koreanText":"시작해볼까!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_kekken_load2",
+ "japaneseText":"覚悟はできたか?",
+ "japaneseFontType":0,
+ "englishUsText":"Are you ready?",
+ "englishUsFontType":0,
+ "chineseTText":"做好覺悟了嗎?",
+ "chineseTFontType":1,
+ "koreanText":"각오는 했겠지?",
+ "koreanFontType":2
+ },
+ {
+ "key":"session_vs",
+ "japaneseText":"と\nセッション!",
+ "japaneseFontType":0,
+ "englishUsText":"and you\nin a Session!",
+ "englishUsFontType":0,
+ "chineseTText":"和你\n進行演奏會!",
+ "chineseTFontType":1,
+ "koreanText":"와(과)\n세션 연주!",
+ "koreanFontType":2
+ },
+ {
+ "key":"fuka",
+ "japaneseText":"不可",
+ "japaneseFontType":0,
+ "englishUsText":"BAD",
+ "englishUsFontType":0,
+ "chineseTText":"不可",
+ "chineseTFontType":1,
+ "koreanText":"에구",
+ "koreanFontType":2
+ },
+ {
+ "key":"ka",
+ "japaneseText":"可",
+ "japaneseFontType":0,
+ "englishUsText":"OK",
+ "englishUsFontType":0,
+ "chineseTText":"可",
+ "chineseTFontType":1,
+ "koreanText":"좋다",
+ "koreanFontType":2
+ },
+ {
+ "key":"ryo",
+ "japaneseText":"良",
+ "japaneseFontType":0,
+ "englishUsText":"GOOD",
+ "englishUsFontType":0,
+ "chineseTText":"良",
+ "chineseTFontType":1,
+ "koreanText":"얼쑤",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_baseball",
+ "japaneseText":"野球",
+ "japaneseFontType":0,
+ "englishUsText":"Baseball",
+ "englishUsFontType":0,
+ "chineseTText":"棒球",
+ "chineseTFontType":1,
+ "koreanText":"야구",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_bit-tuned",
+ "japaneseText":"8ビット太鼓",
+ "japaneseFontType":0,
+ "englishUsText":"8-bit Taiko",
+ "englishUsFontType":0,
+ "chineseTText":"8位元太鼓",
+ "chineseTFontType":1,
+ "koreanText":"8비트 태고",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_bongo",
+ "japaneseText":"ボンゴ",
+ "japaneseFontType":0,
+ "englishUsText":"Bongo",
+ "englishUsFontType":0,
+ "chineseTText":"邦哥鼓",
+ "chineseTFontType":1,
+ "koreanText":"봉고",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_chinese",
+ "japaneseText":"中華",
+ "japaneseFontType":0,
+ "englishUsText":"Chinese",
+ "englishUsFontType":0,
+ "chineseTText":"中華",
+ "chineseTFontType":1,
+ "koreanText":"중화",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_conga",
+ "japaneseText":"コンガ",
+ "japaneseFontType":0,
+ "englishUsText":"Conga",
+ "englishUsFontType":0,
+ "chineseTText":"康加鼓",
+ "chineseTFontType":1,
+ "koreanText":"콩가",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_cooking",
+ "japaneseText":"料理",
+ "japaneseFontType":0,
+ "englishUsText":"Cooking",
+ "englishUsFontType":0,
+ "chineseTText":"烹飪",
+ "chineseTFontType":1,
+ "koreanText":"요리",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_daisuki",
+ "japaneseText":"だいすき",
+ "japaneseFontType":0,
+ "englishUsText":"Daisuki",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡",
+ "chineseTFontType":1,
+ "koreanText":"너무 좋아",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_digdug",
+ "japaneseText":"ディグダグ",
+ "japaneseFontType":0,
+ "englishUsText":"DIGDUG",
+ "englishUsFontType":0,
+ "chineseTText":"打空氣",
+ "chineseTFontType":1,
+ "koreanText":"디그더그",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_dogcat",
+ "japaneseText":"いぬねこ",
+ "japaneseFontType":0,
+ "englishUsText":"Dogs & Cats",
+ "englishUsFontType":0,
+ "chineseTText":"貓&狗",
+ "chineseTFontType":1,
+ "koreanText":"멍멍야옹",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_dolaga",
+ "japaneseText":"ドルアーガ",
+ "japaneseFontType":0,
+ "englishUsText":"Druaga",
+ "englishUsFontType":0,
+ "chineseTText":"迷宮塔",
+ "chineseTFontType":1,
+ "koreanText":"드루아가",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_donvoice",
+ "japaneseText":"どんちゃん",
+ "japaneseFontType":0,
+ "englishUsText":"DON-chan",
+ "englishUsFontType":0,
+ "chineseTText":"小咚",
+ "chineseTFontType":1,
+ "koreanText":"동이",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_drumkit",
+ "japaneseText":"ドラム",
+ "japaneseFontType":0,
+ "englishUsText":"Drumkit",
+ "englishUsFontType":0,
+ "chineseTText":"西洋鼓",
+ "chineseTFontType":1,
+ "koreanText":"드럼",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_electric",
+ "japaneseText":"エレキギター",
+ "japaneseFontType":0,
+ "englishUsText":"Electric Guitar",
+ "englishUsFontType":0,
+ "chineseTText":"電吉他",
+ "chineseTFontType":1,
+ "koreanText":"일렉기타",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_english",
+ "japaneseText":"えいご",
+ "japaneseFontType":0,
+ "englishUsText":"English",
+ "englishUsFontType":0,
+ "chineseTText":"英文",
+ "chineseTFontType":1,
+ "koreanText":"영어",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_firecracker",
+ "japaneseText":"はなび",
+ "japaneseFontType":0,
+ "englishUsText":"Sparkler",
+ "englishUsFontType":0,
+ "chineseTText":"煙火",
+ "chineseTFontType":1,
+ "koreanText":"불꽃놀이",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_football",
+ "japaneseText":"サッカー",
+ "japaneseFontType":0,
+ "englishUsText":"Soccerball",
+ "englishUsFontType":0,
+ "chineseTText":"足球",
+ "chineseTFontType":1,
+ "koreanText":"축구",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_galaga",
+ "japaneseText":"ギャラガ",
+ "japaneseFontType":0,
+ "englishUsText":"GALAGA",
+ "englishUsFontType":0,
+ "chineseTText":"大蜜蜂",
+ "chineseTFontType":1,
+ "koreanText":"갤러그",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_genpei",
+ "japaneseText":"源平討魔伝",
+ "japaneseFontType":0,
+ "englishUsText":"Genpei Toma Den",
+ "englishUsFontType":0,
+ "chineseTText":"源平討魔傳",
+ "chineseTFontType":1,
+ "koreanText":"원평토마전",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_gorgeous",
+ "japaneseText":"豪華な太鼓",
+ "japaneseFontType":0,
+ "englishUsText":"Deluxe Taiko",
+ "englishUsFontType":0,
+ "chineseTText":"豪華太鼓",
+ "chineseTFontType":1,
+ "koreanText":"화려한 태고",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_hero",
+ "japaneseText":"ヒーロー",
+ "japaneseFontType":0,
+ "englishUsText":"Hero",
+ "englishUsFontType":0,
+ "chineseTText":"英雄",
+ "chineseTFontType":1,
+ "koreanText":"히어로",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_heroine",
+ "japaneseText":"ヒロイン",
+ "japaneseFontType":0,
+ "englishUsText":"Heroine",
+ "englishUsFontType":0,
+ "chineseTText":"女主角",
+ "chineseTFontType":1,
+ "koreanText":"히로인",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_kaiju",
+ "japaneseText":"かいじゅう",
+ "japaneseFontType":0,
+ "englishUsText":"Kaiju",
+ "englishUsFontType":0,
+ "chineseTText":"怪獸",
+ "chineseTFontType":1,
+ "koreanText":"괴수",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_kakegoe",
+ "japaneseText":"おっかけ",
+ "japaneseFontType":0,
+ "englishUsText":"Cheer",
+ "englishUsFontType":0,
+ "chineseTText":"應援口號",
+ "chineseTFontType":1,
+ "koreanText":"기합",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_koban",
+ "japaneseText":"小判",
+ "japaneseFontType":0,
+ "englishUsText":"Coin",
+ "englishUsFontType":0,
+ "chineseTText":"小判",
+ "chineseTFontType":1,
+ "koreanText":"동전",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_maid",
+ "japaneseText":"メイド",
+ "japaneseFontType":0,
+ "englishUsText":"Maid",
+ "englishUsFontType":0,
+ "chineseTText":"女僕",
+ "chineseTFontType":1,
+ "koreanText":"메이드",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_mappy",
+ "japaneseText":"マッピー",
+ "japaneseFontType":0,
+ "englishUsText":"Mappy",
+ "englishUsFontType":0,
+ "chineseTText":"貓捉老鼠",
+ "chineseTFontType":1,
+ "koreanText":"마피",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_mechadeath",
+ "japaneseText":"メカデス。",
+ "japaneseFontType":0,
+ "englishUsText":"Mecha-Death",
+ "englishUsFontType":0,
+ "chineseTText":"死亡金屬聲",
+ "chineseTFontType":1,
+ "koreanText":"메카 데스.",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_mechadon",
+ "japaneseText":"メカドン",
+ "japaneseFontType":0,
+ "englishUsText":"Mecha-DON",
+ "englishUsFontType":0,
+ "chineseTText":"機器咚",
+ "chineseTFontType":1,
+ "koreanText":"메카동",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_moju",
+ "japaneseText":"猛獣",
+ "japaneseFontType":0,
+ "englishUsText":"Beast",
+ "englishUsFontType":0,
+ "chineseTText":"猛獸",
+ "chineseTFontType":1,
+ "koreanText":"맹수",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_mokugyo",
+ "japaneseText":"もくぎょ",
+ "japaneseFontType":0,
+ "englishUsText":"Wooden Fish",
+ "englishUsFontType":0,
+ "chineseTText":"木魚",
+ "chineseTFontType":1,
+ "koreanText":"목탁",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_okama",
+ "japaneseText":"オカマ",
+ "japaneseFontType":0,
+ "englishUsText":"Drag Queen",
+ "englishUsFontType":0,
+ "chineseTText":"人妖",
+ "chineseTFontType":1,
+ "koreanText":"여장 남자",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_omairi",
+ "japaneseText":"お参り",
+ "japaneseFontType":0,
+ "englishUsText":"Shrine",
+ "englishUsFontType":0,
+ "chineseTText":"參拜",
+ "chineseTFontType":1,
+ "koreanText":"참배",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_onara",
+ "japaneseText":"おなら",
+ "japaneseFontType":0,
+ "englishUsText":"Fart",
+ "englishUsFontType":0,
+ "chineseTText":"放屁聲",
+ "chineseTFontType":1,
+ "koreanText":"방귀",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_pacman",
+ "japaneseText":"パックマン",
+ "japaneseFontType":0,
+ "englishUsText":"PAC-MAN",
+ "englishUsFontType":0,
+ "chineseTText":"PAC-MAN",
+ "chineseTFontType":1,
+ "koreanText":"팩맨",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_puti",
+ "japaneseText":"ぷちぷち",
+ "japaneseFontType":0,
+ "englishUsText":"Bubble Wrap",
+ "englishUsFontType":0,
+ "chineseTText":"氣泡布",
+ "chineseTFontType":1,
+ "koreanText":"뽁뽁이",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_quiz",
+ "japaneseText":"クイズ",
+ "japaneseFontType":0,
+ "englishUsText":"Quiz",
+ "englishUsFontType":0,
+ "chineseTText":"問答",
+ "chineseTFontType":1,
+ "koreanText":"퀴즈",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_register",
+ "japaneseText":"レジ",
+ "japaneseFontType":0,
+ "englishUsText":"Register",
+ "englishUsFontType":0,
+ "chineseTText":"收銀機",
+ "chineseTFontType":1,
+ "koreanText":"계산대",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_silent",
+ "japaneseText":"音なし",
+ "japaneseFontType":0,
+ "englishUsText":"Silent",
+ "englishUsFontType":0,
+ "chineseTText":"無聲",
+ "chineseTFontType":1,
+ "koreanText":"무음",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_soiya",
+ "japaneseText":"ソイヤ",
+ "japaneseFontType":0,
+ "englishUsText":"Heave-ho",
+ "englishUsFontType":0,
+ "chineseTText":"嘿呀",
+ "chineseTFontType":1,
+ "koreanText":"이얍",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_soroban",
+ "japaneseText":"そろばん",
+ "japaneseFontType":0,
+ "englishUsText":"Abacus",
+ "englishUsFontType":0,
+ "chineseTText":"算盤",
+ "chineseTFontType":1,
+ "koreanText":"주판",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_sword",
+ "japaneseText":"刀",
+ "japaneseFontType":0,
+ "englishUsText":"Katana",
+ "englishUsFontType":0,
+ "chineseTText":"日本刀",
+ "chineseTFontType":1,
+ "koreanText":"칼",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_syndrum",
+ "japaneseText":"シンセドラム",
+ "japaneseFontType":0,
+ "englishUsText":"Syndrum",
+ "englishUsFontType":0,
+ "chineseTText":"電子鼓",
+ "chineseTFontType":1,
+ "koreanText":"일렉드럼",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_syuri",
+ "japaneseText":"手裏剣",
+ "japaneseFontType":0,
+ "englishUsText":"Shuriken",
+ "englishUsFontType":0,
+ "chineseTText":"手裏劍",
+ "chineseTFontType":1,
+ "koreanText":"수리검",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_taiho",
+ "japaneseText":"大砲",
+ "japaneseFontType":0,
+ "englishUsText":"Cannon",
+ "englishUsFontType":0,
+ "chineseTText":"大砲",
+ "chineseTFontType":1,
+ "koreanText":"대포",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_taiko",
+ "japaneseText":"太鼓",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓",
+ "chineseTFontType":1,
+ "koreanText":"태고",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_tanba",
+ "japaneseText":"タンバリン",
+ "japaneseFontType":0,
+ "englishUsText":"Tambourine",
+ "englishUsFontType":0,
+ "chineseTText":"鈴鼓",
+ "chineseTFontType":1,
+ "koreanText":"탬버린",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_tansan",
+ "japaneseText":"炭酸飲料",
+ "japaneseFontType":0,
+ "englishUsText":"Softdrink",
+ "englishUsFontType":0,
+ "chineseTText":"碳酸飲料",
+ "chineseTFontType":1,
+ "koreanText":"탄산음료",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_tudumi",
+ "japaneseText":"つづみ",
+ "japaneseFontType":0,
+ "englishUsText":"Hand Drum",
+ "englishUsFontType":0,
+ "chineseTText":"小鼓",
+ "chineseTFontType":1,
+ "koreanText":"꾸러미",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_wakare",
+ "japaneseText":"別れ話",
+ "japaneseFontType":0,
+ "englishUsText":"Parting Words",
+ "englishUsFontType":0,
+ "chineseTText":"談分手",
+ "chineseTFontType":1,
+ "koreanText":"이별 이야기",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_xevi",
+ "japaneseText":"ゼビウス",
+ "japaneseFontType":0,
+ "englishUsText":"Xevious",
+ "englishUsFontType":0,
+ "chineseTText":"鐵板陣",
+ "chineseTFontType":1,
+ "koreanText":"제비우스",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_yakiniku",
+ "japaneseText":"やきにく",
+ "japaneseFontType":0,
+ "englishUsText":"Grilled Meat",
+ "englishUsFontType":0,
+ "chineseTText":"燒肉",
+ "chineseTFontType":1,
+ "koreanText":"불고기",
+ "koreanFontType":2
+ },
+ {
+ "key":"neiro_youkai",
+ "japaneseText":"妖怪道中記",
+ "japaneseFontType":0,
+ "englishUsText":"Yokai Dochuki",
+ "englishUsFontType":0,
+ "chineseTText":"妖怪道中記",
+ "chineseTFontType":1,
+ "koreanText":"요괴도중기",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_kakunin",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_10tai",
+ "japaneseText":"天体観測",
+ "japaneseFontType":0,
+ "englishUsText":"天体観測",
+ "englishUsFontType":0,
+ "chineseTText":"天体観測",
+ "chineseTFontType":0,
+ "koreanText":"天体観測",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_32segw",
+ "japaneseText":"三瀬川乱舞",
+ "japaneseFontType":0,
+ "englishUsText":"三瀬川乱舞",
+ "englishUsFontType":0,
+ "chineseTText":"三瀬川乱舞",
+ "chineseTFontType":0,
+ "koreanText":"三瀬川乱舞",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_4shaas",
+ "japaneseText":"明日も",
+ "japaneseFontType":0,
+ "englishUsText":"明日も",
+ "englishUsFontType":0,
+ "chineseTText":"明日も",
+ "chineseTFontType":0,
+ "koreanText":"明日も",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_anayuk",
+ "japaneseText":"Let It Go~ありのままで~",
+ "japaneseFontType":0,
+ "englishUsText":"Let It Go~ありのままで~",
+ "englishUsFontType":0,
+ "chineseTText":"Let It Go~ありのままで~",
+ "chineseTFontType":0,
+ "koreanText":"Let It Go~ありのままで~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_batan9",
+ "japaneseText":"全力バタンキュー",
+ "japaneseFontType":0,
+ "englishUsText":"全力バタンキュー",
+ "englishUsFontType":0,
+ "chineseTText":"全力バタンキュー",
+ "chineseTFontType":0,
+ "koreanText":"全力バタンキュー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_bforc",
+ "japaneseText":"バーニングフォースメドレー",
+ "japaneseFontType":0,
+ "englishUsText":"バーニングフォースメドレー",
+ "englishUsFontType":0,
+ "chineseTText":"バーニングフォースメドレー",
+ "chineseTFontType":0,
+ "koreanText":"バーニングフォースメドレー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_butou9",
+ "japaneseText":"桜花爛漫",
+ "japaneseFontType":0,
+ "englishUsText":"桜花爛漫",
+ "englishUsFontType":0,
+ "chineseTText":"桜花爛漫",
+ "chineseTFontType":0,
+ "koreanText":"桜花爛漫",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_cls10",
+ "japaneseText":"天国と地獄 序曲",
+ "japaneseFontType":0,
+ "englishUsText":"天国と地獄 序曲",
+ "englishUsFontType":0,
+ "chineseTText":"天国と地獄 序曲",
+ "chineseTFontType":0,
+ "koreanText":"天国と地獄 序曲",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_clsca",
+ "japaneseText":"カルメン 組曲一番終曲",
+ "japaneseFontType":0,
+ "englishUsText":"カルメン 組曲一番終曲",
+ "englishUsFontType":0,
+ "chineseTText":"カルメン 組曲一番終曲",
+ "chineseTFontType":0,
+ "koreanText":"カルメン 組曲一番終曲",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_clsh69",
+ "japaneseText":"ハンロック",
+ "japaneseFontType":0,
+ "englishUsText":"ハンロック",
+ "englishUsFontType":0,
+ "chineseTText":"ハンロック",
+ "chineseTFontType":0,
+ "koreanText":"ハンロック",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_clsr",
+ "japaneseText":"クラシックメドレー(ロック編)",
+ "japaneseFontType":0,
+ "englishUsText":"クラシックメドレー(ロック編)",
+ "englishUsFontType":0,
+ "chineseTText":"クラシックメドレー(ロック編)",
+ "chineseTFontType":0,
+ "koreanText":"クラシックメドレー(ロック編)",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_clsw",
+ "japaneseText":"ウィリアム・テル序曲",
+ "japaneseFontType":0,
+ "englishUsText":"ウィリアム・テル序曲",
+ "englishUsFontType":0,
+ "chineseTText":"ウィリアム・テル序曲",
+ "chineseTFontType":0,
+ "koreanText":"ウィリアム・テル序曲",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_crkvic",
+ "japaneseText":"VICTORIA",
+ "japaneseFontType":0,
+ "englishUsText":"VICTORIA",
+ "englishUsFontType":0,
+ "chineseTText":"VICTORIA",
+ "chineseTFontType":0,
+ "koreanText":"VICTORIA",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_crturb",
+ "japaneseText":"Urban Striker",
+ "japaneseFontType":0,
+ "englishUsText":"Urban Striker",
+ "englishUsFontType":0,
+ "chineseTText":"Urban Striker",
+ "chineseTFontType":0,
+ "koreanText":"Urban Striker",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_d96can",
+ "japaneseText":"毒LOCANdy♡",
+ "japaneseFontType":0,
+ "englishUsText":"毒LOCANdy♡",
+ "englishUsFontType":0,
+ "chineseTText":"毒LOCANdy♡",
+ "chineseTFontType":0,
+ "koreanText":"毒LOCANdy♡",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_dbcgen",
+ "japaneseText":"限界突破×サバイバー",
+ "japaneseFontType":0,
+ "englishUsText":"限界突破×サバイバー",
+ "englishUsFontType":0,
+ "chineseTText":"限界突破×サバイバー",
+ "chineseTFontType":0,
+ "koreanText":"限界突破×サバイバー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_10tai",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Tentai Kansoku",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"텐타이칸소쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_32segw",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"MITSUSEGAWA RANBU",
+ "englishUsFontType":0,
+ "chineseTText":"三瀨川亂舞",
+ "chineseTFontType":1,
+ "koreanText":"미츠세가와 란부",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_4shaas",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Ashitamo",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"아시타모",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_anayuk",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_batan9",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Zenryoku Batankyuu",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"젠료쿠바탕큐",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_bforc",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"BURNING FORCE Medley",
+ "englishUsFontType":0,
+ "chineseTText":"BURNING FORCE Medley",
+ "chineseTFontType":1,
+ "koreanText":"BURNING FORCE Medley",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_butou9",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"OUKA RANMAN",
+ "englishUsFontType":0,
+ "chineseTText":"櫻花爛漫",
+ "chineseTFontType":1,
+ "koreanText":"오우카란만",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_cls10",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Overture from 'Orpheus in the Underworld'",
+ "englishUsFontType":0,
+ "chineseTText":"天堂與地獄序曲",
+ "chineseTFontType":1,
+ "koreanText":"천국과 지옥 서곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_clsca",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Carmen Prelude",
+ "englishUsFontType":0,
+ "chineseTText":"卡門第一組曲 鬥牛士之歌",
+ "chineseTFontType":1,
+ "koreanText":"카르멘 조곡 1번 종곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_clsh69",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Hung-rock",
+ "englishUsFontType":0,
+ "chineseTText":"Hung-rock",
+ "chineseTFontType":1,
+ "koreanText":"Hung-rock",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_clsr",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Classical Music Medley (Rock version)",
+ "englishUsFontType":0,
+ "chineseTText":"古典樂組曲(搖滾篇)",
+ "chineseTFontType":1,
+ "koreanText":"클래식 메들리(록 편)",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_clsw",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"William Tell Overture",
+ "englishUsFontType":0,
+ "chineseTText":"威廉泰爾序曲",
+ "chineseTFontType":1,
+ "koreanText":"윌리엄 텔 서곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_crkvic",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_crturb",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_d96can",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"DOKU LO CANdy♡",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"도쿠 LO CANdy♡",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_dbcgen",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Genkai Toppa × Survivor",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"겐카이톳파X사바이바",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_dora4",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Yumeo Kanaete DORAEMON",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"꿈을 이루어줘 도라에몽",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_drsp",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"DRAGON SPIRIT Medley",
+ "englishUsFontType":0,
+ "chineseTText":"DRAGON SPIRIT Medley",
+ "chineseTFontType":1,
+ "koreanText":"DRAGON SPIRIT Medley",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_druaga",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"THE TOWER OF DRUAGA Medley",
+ "englishUsFontType":0,
+ "chineseTText":"THE TOWER OF DRUAGA Medley",
+ "chineseTFontType":1,
+ "koreanText":"THE TOWER OF DRUAGA Medley",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_eatem",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_eva",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Zankokuna Tenshino Teeze",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"잔코쿠나텐시노테제",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_flyawy",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_genpe",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_gimcho",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Gimme Chocolate!!",
+ "englishUsFontType":0,
+ "chineseTText":"Gimme Chocolate!!",
+ "chineseTFontType":1,
+ "koreanText":"Gimme Chocolate!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_himyak",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Himawarino Yakusoku",
+ "englishUsFontType":0,
+ "chineseTText":"向日葵的約定",
+ "chineseTFontType":1,
+ "koreanText":"해바라기의 약속",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_hkitty",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"HELLO KITTY",
+ "englishUsFontType":0,
+ "chineseTText":"HELLO KITTY",
+ "chineseTFontType":1,
+ "koreanText":"헬로키티",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ia6cho",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Rokuchounento Ichiya Monogatari",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"로쿠쵸넨토이치야모노가타리",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ikenai",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Ikenai Taiyou",
+ "englishUsFontType":0,
+ "chineseTText":"太陽無用",
+ "chineseTFontType":1,
+ "koreanText":"이케나이타이요우",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_imconc",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Onegai! Cinderella",
+ "englishUsFontType":0,
+ "chineseTText":"拜託妳了!灰姑娘",
+ "chineseTFontType":1,
+ "koreanText":"오네가이!신데레라",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_izanam",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"YOMI NO IZANAMI",
+ "englishUsFontType":0,
+ "chineseTText":"黃泉的伊邪那美",
+ "chineseTFontType":1,
+ "koreanText":"요미노이자나미",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_japari",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Youkoso JAPARI PARK",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"요우코소쟈파리파크에",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kekka2",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Sugar Song to Bitter Step",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"Sugar Song to Bitter Step",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kiseki",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"KISEKI",
+ "englishUsFontType":0,
+ "chineseTText":"奇蹟",
+ "chineseTFontType":1,
+ "koreanText":"키세키",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_koiama",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Koiototo Amazora",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"코이오토토아마조라",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_linda",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"LINDA LINDA",
+ "englishUsFontType":0,
+ "chineseTText":"LINDA LINDA",
+ "chineseTFontType":1,
+ "koreanText":"LINDA LINDA",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_lost1g",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Rosutowanno Goukoku",
+ "englishUsFontType":0,
+ "chineseTText":"Lost one 的慟哭",
+ "chineseTFontType":1,
+ "koreanText":"로스트원노고코쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mappy2",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"MAPPY Medley",
+ "englishUsFontType":0,
+ "chineseTText":"MAPPY Medley",
+ "chineseTFontType":1,
+ "koreanText":"MAPPY Medley",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_march",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"THE TAIKO MARCH",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓進行曲",
+ "chineseTFontType":1,
+ "koreanText":"타이코노마치",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_memesi",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Memeshikute",
+ "englishUsFontType":0,
+ "chineseTText":"娘娘腔",
+ "chineseTFontType":1,
+ "koreanText":"메메시쿠테",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mgpafe",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Magical Parfait",
+ "englishUsFontType":0,
+ "chineseTText":"Magical Parfait",
+ "chineseTFontType":1,
+ "koreanText":"Magical Parfait",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mikuaa",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Alien Alien",
+ "englishUsFontType":0,
+ "chineseTText":"Alien Alien",
+ "chineseTFontType":1,
+ "koreanText":"Alien Alien",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mikugr",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Ghost Rule",
+ "englishUsFontType":0,
+ "chineseTText":"Ghost Rule",
+ "chineseTFontType":1,
+ "koreanText":"Ghost Rule",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_moji",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"MOJIPITTAN Medley",
+ "englishUsFontType":0,
+ "chineseTText":"文字拼圖組曲",
+ "chineseTFontType":1,
+ "koreanText":"모지피탄 메들리",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mugens",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"MUGEN NO SORA",
+ "englishUsFontType":0,
+ "chineseTText":"夢幻蒼空",
+ "chineseTFontType":1,
+ "koreanText":"무겐노소큐",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_natsu",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Natsumatsuri",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"나츠마츠리",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ninjbb",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"NINJARI BANBAN",
+ "englishUsFontType":0,
+ "chineseTText":"忍者棒棒",
+ "chineseTFontType":1,
+ "koreanText":"닌쟈리 방방",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_nograv",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ppap",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Pen-Pineapple-Apple-Pen (PPAP)",
+ "englishUsFontType":0,
+ "chineseTText":"Pen-Pineapple-Apple-Pen(PPAP)",
+ "chineseTFontType":1,
+ "koreanText":"펜파이나포아포펜(PPAP)",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_rdrose",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_roadmv",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Road Movie",
+ "englishUsFontType":0,
+ "chineseTText":"Road Movie",
+ "chineseTFontType":1,
+ "koreanText":"Road Movie",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_rot",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"SAITAMA 2000",
+ "englishUsFontType":0,
+ "chineseTText":"埼玉2000",
+ "chineseTFontType":1,
+ "koreanText":"사이타마 2000",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_rot4",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"MADA SAITAMA 2000",
+ "englishUsFontType":0,
+ "chineseTText":"還是埼玉2000",
+ "chineseTFontType":1,
+ "koreanText":"마다사이타마 2000",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ryuhim",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"RYU TO KOKUEN NO HIMEGIMI",
+ "englishUsFontType":0,
+ "chineseTText":"龍與黑炎的公主",
+ "chineseTFontType":1,
+ "koreanText":"류토코쿠엔노히메기미",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_sf5ryu",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_shing2",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Gurenno Yumiya",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"홍련의 화살",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_skorpg",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_skrnb",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Sakuranbo",
+ "englishUsFontType":0,
+ "chineseTText":"櫻桃",
+ "chineseTFontType":1,
+ "koreanText":"사쿠란보",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_so2omf",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"SOTSUOMESHIKI・Full",
+ "englishUsFontType":0,
+ "chineseTText":"恭喜畢業典禮・完整版",
+ "chineseTFontType":1,
+ "koreanText":"소츠오메시키・후루",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_stabof",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"GASSHO SUTABOFE!",
+ "englishUsFontType":0,
+ "chineseTText":"合唱慶節!",
+ "chineseTFontType":1,
+ "koreanText":"갓쇼 스타보페!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_tek7he",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_tengu",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"TENGU BAYASHI",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"텐구 바야시",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_th7171",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Night of Knights",
+ "englishUsFontType":0,
+ "chineseTText":"Night of Knights ",
+ "chineseTFontType":1,
+ "koreanText":"Night of Knights ",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_thchil",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Cirnono Perfect Sansu Kyositsu",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"Chiruno노파페쿠토산수쿄시츠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_thflnd",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Saisyuu Kichiku Imouto Frandre・S",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"사이슈키치쿠이모토 Flandre・S",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_timtrv",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Time Traveler",
+ "englishUsFontType":0,
+ "chineseTText":"Time Traveler",
+ "chineseTFontType":1,
+ "koreanText":"Time Traveler",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_tksoda",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Tokyo Soda 8Bit Edit",
+ "englishUsFontType":0,
+ "chineseTText":"Tokyo Soda 8Bit Edit",
+ "chineseTFontType":1,
+ "koreanText":"Tokyo Soda 8Bit Edit",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_tobers",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Tales of Berseria Medley",
+ "englishUsFontType":0,
+ "chineseTText":"緋夜傳奇組曲",
+ "chineseTFontType":1,
+ "koreanText":"테일즈 오브 베르세리아 메들리",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_totoro",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Tonarino TOTORO",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"토나리노토토로",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_trance",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Angel Dream",
+ "englishUsFontType":0,
+ "chineseTText":"Angel Dream",
+ "chineseTFontType":1,
+ "koreanText":"Angel Dream",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_trustg",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Trust Game",
+ "englishUsFontType":0,
+ "chineseTText":"Trust Game",
+ "chineseTFontType":1,
+ "koreanText":"Trust Game",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_uminok",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Umino Koe",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"우미노코에",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_vrock",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"YUGAO NO KIMI",
+ "englishUsFontType":0,
+ "chineseTText":"如夕顔般的妳",
+ "chineseTFontType":1,
+ "koreanText":"유우가오노키미",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_weare0",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"We Are!",
+ "englishUsFontType":0,
+ "chineseTText":"We Are!",
+ "chineseTFontType":1,
+ "koreanText":"We are!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_xjapan",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"KURENAI",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"쿠레나이",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_yayoi",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"HOUJO YAYOI",
+ "englishUsFontType":0,
+ "chineseTText":"豐穰彌生",
+ "chineseTFontType":1,
+ "koreanText":"호죠 야요이",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ynlose",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_zense",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Zenzenzense",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"전 전 전생",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_zootop",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Try Everything",
+ "englishUsFontType":0,
+ "chineseTText":"Try Everything",
+ "chineseTFontType":1,
+ "koreanText":"Try Everything",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_dora4",
+ "japaneseText":"夢をかなえてドラえもん",
+ "japaneseFontType":0,
+ "englishUsText":"夢をかなえてドラえもん",
+ "englishUsFontType":0,
+ "chineseTText":"夢をかなえてドラえもん",
+ "chineseTFontType":0,
+ "koreanText":"夢をかなえてドラえもん",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_drsp",
+ "japaneseText":"ドラゴンスピリットメドレー",
+ "japaneseFontType":0,
+ "englishUsText":"ドラゴンスピリットメドレー",
+ "englishUsFontType":0,
+ "chineseTText":"ドラゴンスピリットメドレー",
+ "chineseTFontType":0,
+ "koreanText":"ドラゴンスピリットメドレー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_druaga",
+ "japaneseText":"ドルアーガの塔メドレー",
+ "japaneseFontType":0,
+ "englishUsText":"ドルアーガの塔メドレー",
+ "englishUsFontType":0,
+ "chineseTText":"ドルアーガの塔メドレー",
+ "chineseTFontType":0,
+ "koreanText":"ドルアーガの塔メドレー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_eatem",
+ "japaneseText":"EAT’EM UP!",
+ "japaneseFontType":0,
+ "englishUsText":"EAT’EM UP!",
+ "englishUsFontType":0,
+ "chineseTText":"EAT’EM UP!",
+ "chineseTFontType":0,
+ "koreanText":"EAT’EM UP!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_eva",
+ "japaneseText":"残酷な天使のテーゼ",
+ "japaneseFontType":0,
+ "englishUsText":"残酷な天使のテーゼ",
+ "englishUsFontType":0,
+ "chineseTText":"残酷な天使のテーゼ",
+ "chineseTFontType":0,
+ "koreanText":"残酷な天使のテーゼ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_flyawy",
+ "japaneseText":"Fly away",
+ "japaneseFontType":0,
+ "englishUsText":"Fly away",
+ "englishUsFontType":0,
+ "chineseTText":"Fly away",
+ "chineseTFontType":0,
+ "koreanText":"Fly away",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_genpe",
+ "japaneseText":"KAGEKIYO",
+ "japaneseFontType":0,
+ "englishUsText":"KAGEKIYO",
+ "englishUsFontType":0,
+ "chineseTText":"KAGEKIYO",
+ "chineseTFontType":0,
+ "koreanText":"KAGEKIYO",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_gimcho",
+ "japaneseText":"ギミチョコ!!",
+ "japaneseFontType":0,
+ "englishUsText":"ギミチョコ!!",
+ "englishUsFontType":0,
+ "chineseTText":"ギミチョコ!!",
+ "chineseTFontType":0,
+ "koreanText":"ギミチョコ!!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_himyak",
+ "japaneseText":"ひまわりの約束",
+ "japaneseFontType":0,
+ "englishUsText":"ひまわりの約束",
+ "englishUsFontType":0,
+ "chineseTText":"ひまわりの約束",
+ "chineseTFontType":0,
+ "koreanText":"ひまわりの約束",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_hkitty",
+ "japaneseText":"ハローキティ",
+ "japaneseFontType":0,
+ "englishUsText":"ハローキティ",
+ "englishUsFontType":0,
+ "chineseTText":"ハローキティ",
+ "chineseTFontType":0,
+ "koreanText":"ハローキティ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ia6cho",
+ "japaneseText":"六兆年と一夜物語",
+ "japaneseFontType":0,
+ "englishUsText":"六兆年と一夜物語",
+ "englishUsFontType":0,
+ "chineseTText":"六兆年と一夜物語",
+ "chineseTFontType":0,
+ "koreanText":"六兆年と一夜物語",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ikenai",
+ "japaneseText":"イケナイ太陽",
+ "japaneseFontType":0,
+ "englishUsText":"イケナイ太陽",
+ "englishUsFontType":0,
+ "chineseTText":"イケナイ太陽",
+ "chineseTFontType":0,
+ "koreanText":"イケナイ太陽",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_imconc",
+ "japaneseText":"お願い!シンデレラ",
+ "japaneseFontType":0,
+ "englishUsText":"お願い!シンデレラ",
+ "englishUsFontType":0,
+ "chineseTText":"お願い!シンデレラ",
+ "chineseTFontType":0,
+ "koreanText":"お願い!シンデレラ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_izanam",
+ "japaneseText":"黄泉のイザナミ",
+ "japaneseFontType":0,
+ "englishUsText":"黄泉のイザナミ",
+ "englishUsFontType":0,
+ "chineseTText":"黄泉のイザナミ",
+ "chineseTFontType":0,
+ "koreanText":"黄泉のイザナミ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_japari",
+ "japaneseText":"ようこそジャパリパークへ",
+ "japaneseFontType":0,
+ "englishUsText":"ようこそジャパリパークへ",
+ "englishUsFontType":0,
+ "chineseTText":"ようこそジャパリパークへ",
+ "chineseTFontType":0,
+ "koreanText":"ようこそジャパリパークへ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kekka2",
+ "japaneseText":"シュガーソングとビターステップ",
+ "japaneseFontType":0,
+ "englishUsText":"シュガーソングとビターステップ",
+ "englishUsFontType":0,
+ "chineseTText":"シュガーソングとビターステップ",
+ "chineseTFontType":0,
+ "koreanText":"シュガーソングとビターステップ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kiseki",
+ "japaneseText":"キセキ",
+ "japaneseFontType":0,
+ "englishUsText":"キセキ",
+ "englishUsFontType":0,
+ "chineseTText":"キセキ",
+ "chineseTFontType":0,
+ "koreanText":"キセキ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_koiama",
+ "japaneseText":"恋音と雨空",
+ "japaneseFontType":0,
+ "englishUsText":"恋音と雨空",
+ "englishUsFontType":0,
+ "chineseTText":"恋音と雨空",
+ "chineseTFontType":0,
+ "koreanText":"恋音と雨空",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_linda",
+ "japaneseText":"リンダリンダ",
+ "japaneseFontType":0,
+ "englishUsText":"リンダリンダ",
+ "englishUsFontType":0,
+ "chineseTText":"リンダリンダ",
+ "chineseTFontType":0,
+ "koreanText":"リンダリンダ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_lost1g",
+ "japaneseText":"ロストワンの号哭",
+ "japaneseFontType":0,
+ "englishUsText":"ロストワンの号哭",
+ "englishUsFontType":0,
+ "chineseTText":"ロストワンの号哭",
+ "chineseTFontType":0,
+ "koreanText":"ロストワンの号哭",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mappy2",
+ "japaneseText":"マッピーメドレー",
+ "japaneseFontType":0,
+ "englishUsText":"マッピーメドレー",
+ "englishUsFontType":0,
+ "chineseTText":"マッピーメドレー",
+ "chineseTFontType":0,
+ "koreanText":"マッピーメドレー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_march",
+ "japaneseText":"太鼓のマーチ",
+ "japaneseFontType":0,
+ "englishUsText":"太鼓のマーチ",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓のマーチ",
+ "chineseTFontType":0,
+ "koreanText":"太鼓のマーチ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_memesi",
+ "japaneseText":"女々しくて",
+ "japaneseFontType":0,
+ "englishUsText":"女々しくて",
+ "englishUsFontType":0,
+ "chineseTText":"女々しくて",
+ "chineseTFontType":0,
+ "koreanText":"女々しくて",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mgpafe",
+ "japaneseText":"マジカル・パフェ",
+ "japaneseFontType":0,
+ "englishUsText":"マジカル・パフェ",
+ "englishUsFontType":0,
+ "chineseTText":"マジカル・パフェ",
+ "chineseTFontType":0,
+ "koreanText":"マジカル・パフェ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mikuaa",
+ "japaneseText":"エイリアンエイリアン",
+ "japaneseFontType":0,
+ "englishUsText":"エイリアンエイリアン",
+ "englishUsFontType":0,
+ "chineseTText":"エイリアンエイリアン",
+ "chineseTFontType":0,
+ "koreanText":"エイリアンエイリアン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mikugr",
+ "japaneseText":"ゴーストルール",
+ "japaneseFontType":0,
+ "englishUsText":"ゴーストルール",
+ "englishUsFontType":0,
+ "chineseTText":"ゴーストルール",
+ "chineseTFontType":0,
+ "koreanText":"ゴーストルール",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_moji",
+ "japaneseText":"もじぴったんメドレー",
+ "japaneseFontType":0,
+ "englishUsText":"もじぴったんメドレー",
+ "englishUsFontType":0,
+ "chineseTText":"もじぴったんメドレー",
+ "chineseTFontType":0,
+ "koreanText":"もじぴったんメドレー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mugens",
+ "japaneseText":"夢幻の蒼空",
+ "japaneseFontType":0,
+ "englishUsText":"夢幻の蒼空",
+ "englishUsFontType":0,
+ "chineseTText":"夢幻の蒼空",
+ "chineseTFontType":0,
+ "koreanText":"夢幻の蒼空",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_natsu",
+ "japaneseText":"夏祭り",
+ "japaneseFontType":0,
+ "englishUsText":"夏祭り",
+ "englishUsFontType":0,
+ "chineseTText":"夏祭り",
+ "chineseTFontType":0,
+ "koreanText":"夏祭り",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ninjbb",
+ "japaneseText":"にんじゃりばんばん",
+ "japaneseFontType":0,
+ "englishUsText":"にんじゃりばんばん",
+ "englishUsFontType":0,
+ "chineseTText":"にんじゃりばんばん",
+ "chineseTFontType":0,
+ "koreanText":"にんじゃりばんばん",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_nograv",
+ "japaneseText":"No Gravity",
+ "japaneseFontType":0,
+ "englishUsText":"No Gravity",
+ "englishUsFontType":0,
+ "chineseTText":"No Gravity",
+ "chineseTFontType":0,
+ "koreanText":"No Gravity",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ppap",
+ "japaneseText":"ペンパイナッポーアッポーペン(PPAP)",
+ "japaneseFontType":0,
+ "englishUsText":"ペンパイナッポーアッポーペン(PPAP)",
+ "englishUsFontType":0,
+ "chineseTText":"ペンパイナッポーアッポーペン(PPAP)",
+ "chineseTFontType":0,
+ "koreanText":"ペンパイナッポーアッポーペン(PPAP)",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_rdrose",
+ "japaneseText":"Red Rose Evangel",
+ "japaneseFontType":0,
+ "englishUsText":"Red Rose Evangel",
+ "englishUsFontType":0,
+ "chineseTText":"Red Rose Evangel",
+ "chineseTFontType":0,
+ "koreanText":"Red Rose Evangel",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_roadmv",
+ "japaneseText":"ロードムービー",
+ "japaneseFontType":0,
+ "englishUsText":"ロードムービー",
+ "englishUsFontType":0,
+ "chineseTText":"ロードムービー",
+ "chineseTFontType":0,
+ "koreanText":"ロードムービー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_rot",
+ "japaneseText":"さいたま2000",
+ "japaneseFontType":0,
+ "englishUsText":"さいたま2000",
+ "englishUsFontType":0,
+ "chineseTText":"さいたま2000",
+ "chineseTFontType":0,
+ "koreanText":"さいたま2000",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_rot4",
+ "japaneseText":"まださいたま2000",
+ "japaneseFontType":0,
+ "englishUsText":"まださいたま2000",
+ "englishUsFontType":0,
+ "chineseTText":"まださいたま2000",
+ "chineseTFontType":0,
+ "koreanText":"まださいたま2000",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ryuhim",
+ "japaneseText":"竜と黒炎の姫君",
+ "japaneseFontType":0,
+ "englishUsText":"竜と黒炎の姫君",
+ "englishUsFontType":0,
+ "chineseTText":"竜と黒炎の姫君",
+ "chineseTFontType":0,
+ "koreanText":"竜と黒炎の姫君",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sf5ryu",
+ "japaneseText":"Theme of Ryu",
+ "japaneseFontType":0,
+ "englishUsText":"Theme of Ryu",
+ "englishUsFontType":0,
+ "chineseTText":"Theme of Ryu",
+ "chineseTFontType":0,
+ "koreanText":"Theme of Ryu",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_shing2",
+ "japaneseText":"紅蓮の弓矢",
+ "japaneseFontType":0,
+ "englishUsText":"紅蓮の弓矢",
+ "englishUsFontType":0,
+ "chineseTText":"紅蓮の弓矢",
+ "chineseTFontType":0,
+ "koreanText":"紅蓮の弓矢",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_skorpg",
+ "japaneseText":"RPG",
+ "japaneseFontType":0,
+ "englishUsText":"RPG",
+ "englishUsFontType":0,
+ "chineseTText":"RPG",
+ "chineseTFontType":0,
+ "koreanText":"RPG",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_skrnb",
+ "japaneseText":"さくらんぼ",
+ "japaneseFontType":0,
+ "englishUsText":"さくらんぼ",
+ "englishUsFontType":0,
+ "chineseTText":"さくらんぼ",
+ "chineseTFontType":0,
+ "koreanText":"さくらんぼ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_anayuk",
+ "japaneseText":"Let It Go\n~ありのままで~",
+ "japaneseFontType":0,
+ "englishUsText":"Let It Go\n~ありのままで~",
+ "englishUsFontType":0,
+ "chineseTText":"Let It Go\n~ありのままで~",
+ "chineseTFontType":0,
+ "koreanText":"Let It Go\n~ありのままで~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_bforc",
+ "japaneseText":"バーニングフォース\nメドレー",
+ "japaneseFontType":0,
+ "englishUsText":"バーニングフォース\nメドレー",
+ "englishUsFontType":0,
+ "chineseTText":"バーニングフォース\nメドレー",
+ "chineseTFontType":0,
+ "koreanText":"バーニングフォース\nメドレー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_clsca",
+ "japaneseText":"カルメン\n組曲一番終曲",
+ "japaneseFontType":0,
+ "englishUsText":"カルメン\n組曲一番終曲",
+ "englishUsFontType":0,
+ "chineseTText":"カルメン\n組曲一番終曲",
+ "chineseTFontType":0,
+ "koreanText":"カルメン\n組曲一番終曲",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_clsr",
+ "japaneseText":"クラシックメドレー\n(ロック編)",
+ "japaneseFontType":0,
+ "englishUsText":"クラシックメドレー\n(ロック編)",
+ "englishUsFontType":0,
+ "chineseTText":"クラシックメドレー\n(ロック編)",
+ "chineseTFontType":0,
+ "koreanText":"クラシックメドレー\n(ロック編)",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_dora4",
+ "japaneseText":"夢をかなえて\nドラえもん",
+ "japaneseFontType":0,
+ "englishUsText":"夢をかなえて\nドラえもん",
+ "englishUsFontType":0,
+ "chineseTText":"夢をかなえて\nドラえもん",
+ "chineseTFontType":0,
+ "koreanText":"夢をかなえて\nドラえもん",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_drsp",
+ "japaneseText":"ドラゴンスピリット\nメドレー",
+ "japaneseFontType":0,
+ "englishUsText":"ドラゴンスピリット\nメドレー",
+ "englishUsFontType":0,
+ "chineseTText":"ドラゴンスピリット\nメドレー",
+ "chineseTFontType":0,
+ "koreanText":"ドラゴンスピリット\nメドレー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_druaga",
+ "japaneseText":"ドルアーガの塔\nメドレー",
+ "japaneseFontType":0,
+ "englishUsText":"ドルアーガの塔\nメドレー",
+ "englishUsFontType":0,
+ "chineseTText":"ドルアーガの塔\nメドレー",
+ "chineseTFontType":0,
+ "koreanText":"ドルアーガの塔\nメドレー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_japari",
+ "japaneseText":"ようこそ\nジャパリパークへ",
+ "japaneseFontType":0,
+ "englishUsText":"ようこそ\nジャパリパークへ",
+ "englishUsFontType":0,
+ "chineseTText":"ようこそ\nジャパリパークへ",
+ "chineseTFontType":0,
+ "koreanText":"ようこそ\nジャパリパークへ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_kekka2",
+ "japaneseText":"シュガーソングと\nビターステップ",
+ "japaneseFontType":0,
+ "englishUsText":"シュガーソングと\nビターステップ",
+ "englishUsFontType":0,
+ "chineseTText":"シュガーソングと\nビターステップ",
+ "chineseTFontType":0,
+ "koreanText":"シュガーソングと\nビターステップ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_march",
+ "japaneseText":"太鼓のマーチ",
+ "japaneseFontType":0,
+ "englishUsText":"太鼓のマーチ",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓のマーチ",
+ "chineseTFontType":0,
+ "koreanText":"太鼓のマーチ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_moji",
+ "japaneseText":"もじぴったん\nメドレー",
+ "japaneseFontType":0,
+ "englishUsText":"もじぴったん\nメドレー",
+ "englishUsFontType":0,
+ "chineseTText":"もじぴったん\nメドレー",
+ "chineseTFontType":0,
+ "koreanText":"もじぴったん\nメドレー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_ppap",
+ "japaneseText":"ペンパイナッポーアッポーペン\n(PPAP)",
+ "japaneseFontType":0,
+ "englishUsText":"ペンパイナッポーアッポーペン\n(PPAP)",
+ "englishUsFontType":0,
+ "chineseTText":"ペンパイナッポーアッポーペン\n(PPAP)",
+ "chineseTFontType":0,
+ "koreanText":"ペンパイナッポーアッポーペン\n(PPAP)",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_rdrose",
+ "japaneseText":"Red Rose\nEvangel",
+ "japaneseFontType":0,
+ "englishUsText":"Red Rose\nEvangel",
+ "englishUsFontType":0,
+ "chineseTText":"Red Rose\nEvangel",
+ "chineseTFontType":0,
+ "koreanText":"Red Rose\nEvangel",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_tek7he",
+ "japaneseText":"Heat Haze\nShadow 2",
+ "japaneseFontType":0,
+ "englishUsText":"Heat Haze\nShadow 2",
+ "englishUsFontType":0,
+ "chineseTText":"Heat Haze\nShadow 2",
+ "chineseTFontType":0,
+ "koreanText":"Heat Haze\nShadow 2",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_thchil",
+ "japaneseText":"チルノのパーフェクト\nさんすう教室",
+ "japaneseFontType":0,
+ "englishUsText":"チルノのパーフェクト\nさんすう教室",
+ "englishUsFontType":0,
+ "chineseTText":"チルノのパーフェクト\nさんすう教室",
+ "chineseTFontType":0,
+ "koreanText":"チルノのパーフェクト\nさんすう教室",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_thflnd",
+ "japaneseText":"最終鬼畜妹\nフランドール・S",
+ "japaneseFontType":0,
+ "englishUsText":"最終鬼畜妹\nフランドール・S",
+ "englishUsFontType":0,
+ "chineseTText":"最終鬼畜妹\nフランドール・S",
+ "chineseTFontType":0,
+ "koreanText":"最終鬼畜妹\nフランドール・S",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_tksoda",
+ "japaneseText":"東京ソーダ\n8Bit Edit",
+ "japaneseFontType":0,
+ "englishUsText":"東京ソーダ\n8Bit Edit",
+ "englishUsFontType":0,
+ "chineseTText":"東京ソーダ\n8Bit Edit",
+ "chineseTFontType":0,
+ "koreanText":"東京ソーダ\n8Bit Edit",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_tobers",
+ "japaneseText":"テイルズ オブ\nベルセリア メドレー",
+ "japaneseFontType":0,
+ "englishUsText":"テイルズ オブ\nベルセリア メドレー",
+ "englishUsFontType":0,
+ "chineseTText":"テイルズ オブ\nベルセリア メドレー",
+ "chineseTFontType":0,
+ "koreanText":"テイルズ オブ\nベルセリア メドレー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_so2omf",
+ "japaneseText":"そつおめしき・ふる",
+ "japaneseFontType":0,
+ "englishUsText":"そつおめしき・ふる",
+ "englishUsFontType":0,
+ "chineseTText":"そつおめしき・ふる",
+ "chineseTFontType":0,
+ "koreanText":"そつおめしき・ふる",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_stabof",
+ "japaneseText":"合唱スタボーフェ!",
+ "japaneseFontType":0,
+ "englishUsText":"合唱スタボーフェ!",
+ "englishUsFontType":0,
+ "chineseTText":"合唱スタボーフェ!",
+ "chineseTFontType":0,
+ "koreanText":"合唱スタボーフェ!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_4shaas",
+ "japaneseText":"NTTドコモ「ドコモの学割」CMソング",
+ "japaneseFontType":0,
+ "englishUsText":"NTTドコモ「ドコモの学割」CMソング",
+ "englishUsFontType":0,
+ "chineseTText":"NTTドコモ「ドコモの学割」CMソング",
+ "chineseTFontType":0,
+ "koreanText":"NTTドコモ「ドコモの学割」CMソング",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_anayuk",
+ "japaneseText":"「アナと雪の女王」より",
+ "japaneseFontType":0,
+ "englishUsText":"「アナと雪の女王」より",
+ "englishUsFontType":0,
+ "chineseTText":"「アナと雪の女王」より",
+ "chineseTFontType":0,
+ "koreanText":"「アナと雪の女王」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_batan9",
+ "japaneseText":"「おそ松さん」より",
+ "japaneseFontType":0,
+ "englishUsText":"「おそ松さん」より",
+ "englishUsFontType":0,
+ "chineseTText":"「おそ松さん」より",
+ "chineseTFontType":0,
+ "koreanText":"「おそ松さん」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_cls10",
+ "japaneseText":"オッフェンバック",
+ "japaneseFontType":0,
+ "englishUsText":"オッフェンバック",
+ "englishUsFontType":0,
+ "chineseTText":"オッフェンバック",
+ "chineseTFontType":0,
+ "koreanText":"オッフェンバック",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_clsca",
+ "japaneseText":"ビゼー",
+ "japaneseFontType":0,
+ "englishUsText":"ビゼー",
+ "englishUsFontType":0,
+ "chineseTText":"ビゼー",
+ "chineseTFontType":0,
+ "koreanText":"ビゼー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_clsw",
+ "japaneseText":"ロッシーニ",
+ "japaneseFontType":0,
+ "englishUsText":"ロッシーニ",
+ "englishUsFontType":0,
+ "chineseTText":"ロッシーニ",
+ "chineseTFontType":0,
+ "koreanText":"ロッシーニ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_crkvic",
+ "japaneseText":"Cranky",
+ "japaneseFontType":0,
+ "englishUsText":"Cranky",
+ "englishUsFontType":0,
+ "chineseTText":"Cranky",
+ "chineseTFontType":0,
+ "koreanText":"Cranky",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_crturb",
+ "japaneseText":"「クリティカルベロシティ」より",
+ "japaneseFontType":0,
+ "englishUsText":"「クリティカルベロシティ」より",
+ "englishUsFontType":0,
+ "chineseTText":"「クリティカルベロシティ」より",
+ "chineseTFontType":0,
+ "koreanText":"「クリティカルベロシティ」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_d96can",
+ "japaneseText":"t+pazolite",
+ "japaneseFontType":0,
+ "englishUsText":"t+pazolite",
+ "englishUsFontType":0,
+ "chineseTText":"t+pazolite",
+ "chineseTFontType":0,
+ "koreanText":"t+pazolite",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_dbcgen",
+ "japaneseText":"「ドラゴンボール超」より",
+ "japaneseFontType":0,
+ "englishUsText":"「ドラゴンボール超」より",
+ "englishUsFontType":0,
+ "chineseTText":"「ドラゴンボール超」より",
+ "chineseTFontType":0,
+ "koreanText":"「ドラゴンボール超」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_eatem",
+ "japaneseText":"「R4 ‐RIDGE RACER TYPE4‐」より",
+ "japaneseFontType":0,
+ "englishUsText":"「R4 ‐RIDGE RACER TYPE4‐」より",
+ "englishUsFontType":0,
+ "chineseTText":"「R4 ‐RIDGE RACER TYPE4‐」より",
+ "chineseTFontType":0,
+ "koreanText":"「R4 ‐RIDGE RACER TYPE4‐」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_eva",
+ "japaneseText":"「新世紀エヴァンゲリオン」より",
+ "japaneseFontType":0,
+ "englishUsText":"「新世紀エヴァンゲリオン」より",
+ "englishUsFontType":0,
+ "chineseTText":"「新世紀エヴァンゲリオン」より",
+ "chineseTFontType":0,
+ "koreanText":"「新世紀エヴァンゲリオン」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_genpe",
+ "japaneseText":"源平討魔伝メドレー",
+ "japaneseFontType":0,
+ "englishUsText":"源平討魔伝メドレー",
+ "englishUsFontType":0,
+ "chineseTText":"源平討魔伝メドレー",
+ "chineseTFontType":0,
+ "koreanText":"源平討魔伝メドレー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_ia6cho",
+ "japaneseText":"kemu feat.IA",
+ "japaneseFontType":0,
+ "englishUsText":"kemu feat.IA",
+ "englishUsFontType":0,
+ "chineseTText":"kemu feat.IA",
+ "chineseTFontType":0,
+ "koreanText":"kemu feat.IA",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_imconc",
+ "japaneseText":"「アイドルマスター シンデレラガールズ」より",
+ "japaneseFontType":0,
+ "englishUsText":"「アイドルマスター シンデレラガールズ」より",
+ "englishUsFontType":0,
+ "chineseTText":"「アイドルマスター シンデレラガールズ」より",
+ "chineseTFontType":0,
+ "koreanText":"「アイドルマスター シンデレラガールズ」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_japari",
+ "japaneseText":"どうぶつビスケッツ×PPP 「けものフレンズ」より ",
+ "japaneseFontType":0,
+ "englishUsText":"どうぶつビスケッツ×PPP 「けものフレンズ」より ",
+ "englishUsFontType":0,
+ "chineseTText":"どうぶつビスケッツ×PPP 「けものフレンズ」より ",
+ "chineseTFontType":0,
+ "koreanText":"どうぶつビスケッツ×PPP 「けものフレンズ」より ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_lost1g",
+ "japaneseText":"Neru feat.鏡音リン",
+ "japaneseFontType":0,
+ "englishUsText":"Neru feat.鏡音リン",
+ "englishUsFontType":0,
+ "chineseTText":"Neru feat.鏡音リン",
+ "chineseTFontType":0,
+ "koreanText":"Neru feat.鏡音リン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_memesi",
+ "japaneseText":"ゴールデンボンバー",
+ "japaneseFontType":0,
+ "englishUsText":"ゴールデンボンバー",
+ "englishUsFontType":0,
+ "chineseTText":"ゴールデンボンバー",
+ "chineseTFontType":0,
+ "koreanText":"ゴールデンボンバー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_mikuaa",
+ "japaneseText":"ナユタン星人 feat.初音ミク",
+ "japaneseFontType":0,
+ "englishUsText":"ナユタン星人 feat.初音ミク",
+ "englishUsFontType":0,
+ "chineseTText":"ナユタン星人 feat.初音ミク",
+ "chineseTFontType":0,
+ "koreanText":"ナユタン星人 feat.初音ミク",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_mikugr",
+ "japaneseText":"DECO*27 feat.初音ミク",
+ "japaneseFontType":0,
+ "englishUsText":"DECO*27 feat.初音ミク",
+ "englishUsFontType":0,
+ "chineseTText":"DECO*27 feat.初音ミク",
+ "chineseTFontType":0,
+ "koreanText":"DECO*27 feat.初音ミク",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_mugens",
+ "japaneseText":"Silver Forest feat.SAYA",
+ "japaneseFontType":0,
+ "englishUsText":"Silver Forest feat.SAYA",
+ "englishUsFontType":0,
+ "chineseTText":"Silver Forest feat.SAYA",
+ "chineseTFontType":0,
+ "koreanText":"Silver Forest feat.SAYA",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_ppap",
+ "japaneseText":"ピコ太郎",
+ "japaneseFontType":0,
+ "englishUsText":"ピコ太郎",
+ "englishUsFontType":0,
+ "chineseTText":"ピコ太郎",
+ "chineseTFontType":0,
+ "koreanText":"ピコ太郎",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_roadmv",
+ "japaneseText":"「映画クレヨンしんちゃん 襲来!! 宇宙人シリリ」主題歌",
+ "japaneseFontType":0,
+ "englishUsText":"「映画クレヨンしんちゃん 襲来!! 宇宙人シリリ」主題歌",
+ "englishUsFontType":0,
+ "chineseTText":"「映画クレヨンしんちゃん 襲来!! 宇宙人シリリ」主題歌",
+ "chineseTFontType":0,
+ "koreanText":"「映画クレヨンしんちゃん 襲来!! 宇宙人シリリ」主題歌",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_sf5ryu",
+ "japaneseText":"「ストリートファイターV」より",
+ "japaneseFontType":0,
+ "englishUsText":"「ストリートファイターV」より",
+ "englishUsFontType":0,
+ "chineseTText":"「ストリートファイターV」より",
+ "chineseTFontType":0,
+ "koreanText":"「ストリートファイターV」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_shing2",
+ "japaneseText":"「進撃の巨人」より",
+ "japaneseFontType":0,
+ "englishUsText":"「進撃の巨人」より",
+ "englishUsFontType":0,
+ "chineseTText":"「進撃の巨人」より",
+ "chineseTFontType":0,
+ "koreanText":"「進撃の巨人」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_so2omf",
+ "japaneseText":"feat.unmo",
+ "japaneseFontType":0,
+ "englishUsText":"feat.unmo",
+ "englishUsFontType":0,
+ "chineseTText":"feat.unmo",
+ "chineseTFontType":0,
+ "koreanText":"feat.unmo",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_stabof",
+ "japaneseText":"with たま☆たい feat.団地ノ宮",
+ "japaneseFontType":0,
+ "englishUsText":"with たま☆たい feat.団地ノ宮",
+ "englishUsFontType":0,
+ "chineseTText":"with たま☆たい feat.団地ノ宮",
+ "chineseTFontType":0,
+ "koreanText":"with たま☆たい feat.団地ノ宮",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_tek7he",
+ "japaneseText":"「鉄拳7」より",
+ "japaneseFontType":0,
+ "englishUsText":"「鉄拳7」より",
+ "englishUsFontType":0,
+ "chineseTText":"「鉄拳7」より",
+ "chineseTFontType":0,
+ "koreanText":"「鉄拳7」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_th7171",
+ "japaneseText":"東方Projectアレンジ ビートまりお",
+ "japaneseFontType":0,
+ "englishUsText":"東方Projectアレンジ ビートまりお",
+ "englishUsFontType":0,
+ "chineseTText":"東方Projectアレンジ ビートまりお",
+ "chineseTFontType":0,
+ "koreanText":"東方Projectアレンジ ビートまりお",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_thchil",
+ "japaneseText":"東方Projectアレンジ ARM+夕野ヨシミ(IOSYS) feat.miko",
+ "japaneseFontType":0,
+ "englishUsText":"東方Projectアレンジ ARM+夕野ヨシミ(IOSYS) feat.miko",
+ "englishUsFontType":0,
+ "chineseTText":"東方Projectアレンジ ARM+夕野ヨシミ(IOSYS) feat.miko",
+ "chineseTFontType":0,
+ "koreanText":"東方Projectアレンジ ARM+夕野ヨシミ(IOSYS) feat.miko",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_thflnd",
+ "japaneseText":"東方Projectアレンジ ビートまりお",
+ "japaneseFontType":0,
+ "englishUsText":"東方Projectアレンジ ビートまりお",
+ "englishUsFontType":0,
+ "chineseTText":"東方Projectアレンジ ビートまりお",
+ "chineseTFontType":0,
+ "koreanText":"東方Projectアレンジ ビートまりお",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_timtrv",
+ "japaneseText":"伊東歌詞太郎",
+ "japaneseFontType":0,
+ "englishUsText":"伊東歌詞太郎",
+ "englishUsFontType":0,
+ "chineseTText":"伊東歌詞太郎",
+ "chineseTFontType":0,
+ "koreanText":"伊東歌詞太郎",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_tksoda",
+ "japaneseText":"ヒゲドライVAN",
+ "japaneseFontType":0,
+ "englishUsText":"ヒゲドライVAN",
+ "englishUsFontType":0,
+ "chineseTText":"ヒゲドライVAN",
+ "chineseTFontType":0,
+ "koreanText":"ヒゲドライVAN",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_trustg",
+ "japaneseText":"feat.SaChi(harineko)",
+ "japaneseFontType":0,
+ "englishUsText":"feat.SaChi(harineko)",
+ "englishUsFontType":0,
+ "chineseTText":"feat.SaChi(harineko)",
+ "chineseTFontType":0,
+ "koreanText":"feat.SaChi(harineko)",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_uminok",
+ "japaneseText":"au「三太郎シリーズ」CMソング",
+ "japaneseFontType":0,
+ "englishUsText":"au「三太郎シリーズ」CMソング",
+ "englishUsFontType":0,
+ "chineseTText":"au「三太郎シリーズ」CMソング",
+ "chineseTFontType":0,
+ "koreanText":"au「三太郎シリーズ」CMソング",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_weare0",
+ "japaneseText":"「ワンピース」より",
+ "japaneseFontType":0,
+ "englishUsText":"「ワンピース」より",
+ "englishUsFontType":0,
+ "chineseTText":"「ワンピース」より",
+ "chineseTFontType":0,
+ "koreanText":"「ワンピース」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_ynlose",
+ "japaneseText":"米津玄師",
+ "japaneseFontType":0,
+ "englishUsText":"米津玄師",
+ "englishUsFontType":0,
+ "chineseTText":"米津玄師",
+ "chineseTFontType":0,
+ "koreanText":"米津玄師",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_zense",
+ "japaneseText":"映画「君の名は。」より",
+ "japaneseFontType":0,
+ "englishUsText":"映画「君の名は。」より",
+ "englishUsFontType":0,
+ "chineseTText":"映画「君の名は。」より",
+ "chineseTFontType":0,
+ "koreanText":"映画「君の名は。」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_zootop",
+ "japaneseText":"「ズートピア」より",
+ "japaneseFontType":0,
+ "englishUsText":"「ズートピア」より",
+ "englishUsFontType":0,
+ "chineseTText":"「ズートピア」より",
+ "chineseTFontType":0,
+ "koreanText":"「ズートピア」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_tek7he",
+ "japaneseText":"Heat Haze Shadow 2",
+ "japaneseFontType":0,
+ "englishUsText":"Heat Haze Shadow 2",
+ "englishUsFontType":0,
+ "chineseTText":"Heat Haze Shadow 2",
+ "chineseTFontType":0,
+ "koreanText":"Heat Haze Shadow 2",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_tengu",
+ "japaneseText":"天狗囃子",
+ "japaneseFontType":0,
+ "englishUsText":"天狗囃子",
+ "englishUsFontType":0,
+ "chineseTText":"天狗囃子",
+ "chineseTFontType":0,
+ "koreanText":"天狗囃子",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_th7171",
+ "japaneseText":"ナイト・オブ・ナイツ",
+ "japaneseFontType":0,
+ "englishUsText":"ナイト・オブ・ナイツ",
+ "englishUsFontType":0,
+ "chineseTText":"ナイト・オブ・ナイツ",
+ "chineseTFontType":0,
+ "koreanText":"ナイト・オブ・ナイツ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_thchil",
+ "japaneseText":"チルノのパーフェクトさんすう教室",
+ "japaneseFontType":0,
+ "englishUsText":"チルノのパーフェクトさんすう教室",
+ "englishUsFontType":0,
+ "chineseTText":"チルノのパーフェクトさんすう教室",
+ "chineseTFontType":0,
+ "koreanText":"チルノのパーフェクトさんすう教室",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_thflnd",
+ "japaneseText":"最終鬼畜妹フランドール・S",
+ "japaneseFontType":0,
+ "englishUsText":"最終鬼畜妹フランドール・S",
+ "englishUsFontType":0,
+ "chineseTText":"最終鬼畜妹フランドール・S",
+ "chineseTFontType":0,
+ "koreanText":"最終鬼畜妹フランドール・S",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_timtrv",
+ "japaneseText":"タイムトラベラー",
+ "japaneseFontType":0,
+ "englishUsText":"タイムトラベラー",
+ "englishUsFontType":0,
+ "chineseTText":"タイムトラベラー",
+ "chineseTFontType":0,
+ "koreanText":"タイムトラベラー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_tksoda",
+ "japaneseText":"東京ソーダ 8Bit Edit",
+ "japaneseFontType":0,
+ "englishUsText":"東京ソーダ 8Bit Edit",
+ "englishUsFontType":0,
+ "chineseTText":"東京ソーダ 8Bit Edit",
+ "chineseTFontType":0,
+ "koreanText":"東京ソーダ 8Bit Edit",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_tobers",
+ "japaneseText":"テイルズ オブ ベルセリア メドレー",
+ "japaneseFontType":0,
+ "englishUsText":"テイルズ オブ ベルセリア メドレー",
+ "englishUsFontType":0,
+ "chineseTText":"テイルズ オブ ベルセリア メドレー",
+ "chineseTFontType":0,
+ "koreanText":"テイルズ オブ ベルセリア メドレー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_totoro",
+ "japaneseText":"となりのトトロ",
+ "japaneseFontType":0,
+ "englishUsText":"となりのトトロ",
+ "englishUsFontType":0,
+ "chineseTText":"となりのトトロ",
+ "chineseTFontType":0,
+ "koreanText":"となりのトトロ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_trance",
+ "japaneseText":"エンジェル ドリーム",
+ "japaneseFontType":0,
+ "englishUsText":"エンジェル ドリーム",
+ "englishUsFontType":0,
+ "chineseTText":"エンジェル ドリーム",
+ "chineseTFontType":0,
+ "koreanText":"エンジェル ドリーム",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_trustg",
+ "japaneseText":"トラストゲーム",
+ "japaneseFontType":0,
+ "englishUsText":"トラストゲーム",
+ "englishUsFontType":0,
+ "chineseTText":"トラストゲーム",
+ "chineseTFontType":0,
+ "koreanText":"トラストゲーム",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_uminok",
+ "japaneseText":"海の声",
+ "japaneseFontType":0,
+ "englishUsText":"海の声",
+ "englishUsFontType":0,
+ "chineseTText":"海の声",
+ "chineseTFontType":0,
+ "koreanText":"海の声",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_vrock",
+ "japaneseText":"ユウガオノキミ",
+ "japaneseFontType":0,
+ "englishUsText":"ユウガオノキミ",
+ "englishUsFontType":0,
+ "chineseTText":"ユウガオノキミ",
+ "chineseTFontType":0,
+ "koreanText":"ユウガオノキミ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_weare0",
+ "japaneseText":"ウィーアー!",
+ "japaneseFontType":0,
+ "englishUsText":"ウィーアー!",
+ "englishUsFontType":0,
+ "chineseTText":"ウィーアー!",
+ "chineseTFontType":0,
+ "koreanText":"ウィーアー!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_xjapan",
+ "japaneseText":"紅",
+ "japaneseFontType":0,
+ "englishUsText":"紅",
+ "englishUsFontType":0,
+ "chineseTText":"紅",
+ "chineseTFontType":0,
+ "koreanText":"紅",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_yayoi",
+ "japaneseText":"豊穣弥生",
+ "japaneseFontType":0,
+ "englishUsText":"豊穣弥生",
+ "englishUsFontType":0,
+ "chineseTText":"豊穣弥生",
+ "chineseTFontType":0,
+ "koreanText":"豊穣弥生",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ynlose",
+ "japaneseText":"LOSER",
+ "japaneseFontType":0,
+ "englishUsText":"LOSER",
+ "englishUsFontType":0,
+ "chineseTText":"LOSER",
+ "chineseTFontType":0,
+ "koreanText":"LOSER",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_zense",
+ "japaneseText":"前前前世",
+ "japaneseFontType":0,
+ "englishUsText":"前前前世",
+ "englishUsFontType":0,
+ "chineseTText":"前前前世",
+ "chineseTFontType":0,
+ "koreanText":"前前前世",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_zootop",
+ "japaneseText":"トライ・エヴリシング",
+ "japaneseFontType":0,
+ "englishUsText":"トライ・エヴリシング",
+ "englishUsFontType":0,
+ "chineseTText":"トライ・エヴリシング",
+ "chineseTFontType":0,
+ "koreanText":"トライ・エヴリシング",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_babel",
+ "japaneseText":"バベルの塔",
+ "japaneseFontType":0,
+ "englishUsText":"バベルの塔",
+ "englishUsFontType":0,
+ "chineseTText":"バベルの塔",
+ "chineseTFontType":0,
+ "koreanText":"バベルの塔",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_babel",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"THE TOWER OF BABEL",
+ "englishUsFontType":0,
+ "chineseTText":"THE TOWER OF BABEL",
+ "chineseTFontType":1,
+ "koreanText":"THE TOWER OF BABEL",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_immbra",
+ "japaneseText":"Brand New Theater!",
+ "japaneseFontType":0,
+ "englishUsText":"Brand New Theater!",
+ "englishUsFontType":0,
+ "chineseTText":"Brand New Theater!",
+ "chineseTFontType":0,
+ "koreanText":"Brand New Theater!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_immbra",
+ "japaneseText":"「アイドルマスター ミリオンライブ! シアターデイズ」より",
+ "japaneseFontType":0,
+ "englishUsText":"「アイドルマスター ミリオンライブ! シアターデイズ」より",
+ "englishUsFontType":0,
+ "chineseTText":"「アイドルマスター ミリオンライブ! シアターデイズ」より",
+ "chineseTFontType":0,
+ "koreanText":"「アイドルマスター ミリオンライブ! シアターデイズ」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_immbra",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_apollo",
+ "japaneseText":"アポロ",
+ "japaneseFontType":0,
+ "englishUsText":"アポロ",
+ "englishUsFontType":0,
+ "chineseTText":"アポロ",
+ "chineseTFontType":0,
+ "koreanText":"アポロ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_psf1op",
+ "japaneseText":"つながれ!ひろがれ!打ち上がれ!",
+ "japaneseFontType":0,
+ "englishUsText":"つながれ!ひろがれ!打ち上がれ!",
+ "englishUsFontType":0,
+ "chineseTText":"つながれ!ひろがれ!打ち上がれ!",
+ "chineseTFontType":0,
+ "koreanText":"つながれ!ひろがれ!打ち上がれ!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_psf1op",
+ "japaneseText":"つながれ!\nひろがれ!\n打ち上がれ!",
+ "japaneseFontType":0,
+ "englishUsText":"つながれ!\nひろがれ!\n打ち上がれ!",
+ "englishUsFontType":0,
+ "chineseTText":"つながれ!\nひろがれ!\n打ち上がれ!",
+ "chineseTFontType":0,
+ "koreanText":"つながれ!\nひろがれ!\n打ち上がれ!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_apollo",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"APOLLO",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"아폴로",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_psf1op",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"TSUNAGARE! HIROGARE! UCHIAGARE!",
+ "englishUsFontType":0,
+ "chineseTText":"連繫!推展!打上天!",
+ "chineseTFontType":1,
+ "koreanText":"츠나가레! 히로가레! 우치아가레!",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_10tai",
+ "japaneseText":"「天体観測」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Tentai Kansoku」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「天体観測」",
+ "chineseTFontType":1,
+ "koreanText":"「텐타이칸소쿠」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_32segw",
+ "japaneseText":"最果てに舞う蝶",
+ "japaneseFontType":0,
+ "englishUsText":"Ephemeral Butterfly",
+ "englishUsFontType":0,
+ "chineseTText":"在生命盡頭飛舞的蝴蝶",
+ "chineseTFontType":1,
+ "koreanText":"땅끝에서 춤추는 나비",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_4shaas",
+ "japaneseText":"「明日も」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Ashitamo」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「明日も」",
+ "chineseTFontType":1,
+ "koreanText":"「아시타모」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_anayuk",
+ "japaneseText":"「Let It Go~ありのままで~」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Let It Go~ありのままで~」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Let It Go~ありのままで~」",
+ "chineseTFontType":1,
+ "koreanText":"「Let It Go」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_batan9",
+ "japaneseText":"「全力バタンキュー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Zenryoku Batankyuu」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「全力バタンキュー」",
+ "chineseTFontType":1,
+ "koreanText":"「젠료쿠바탕큐」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_bforc",
+ "japaneseText":"「バーニングフォース」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「BURNING FORCE」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「BURNING FORCE」",
+ "chineseTFontType":1,
+ "koreanText":"「BURNING FORCE」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_butou9",
+ "japaneseText":"桜吹雪浴",
+ "japaneseFontType":0,
+ "englishUsText":"Bask in Fleeting Blossoms",
+ "englishUsFontType":0,
+ "chineseTText":"櫻吹雪浴",
+ "chineseTFontType":1,
+ "koreanText":"흩날리는 벚꽃을 맞으며",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_cls10",
+ "japaneseText":"勝てば天国 負ければ地獄",
+ "japaneseFontType":0,
+ "englishUsText":"Heaven and Hell",
+ "englishUsFontType":0,
+ "chineseTText":"贏了就是天國 輸了則是地獄",
+ "chineseTFontType":1,
+ "koreanText":"이기면 천국, 지면 지옥",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_clsca",
+ "japaneseText":"情熱の連打!",
+ "japaneseFontType":0,
+ "englishUsText":"Passionate Drummer!",
+ "englishUsFontType":0,
+ "chineseTText":"熱情連打!",
+ "chineseTFontType":1,
+ "koreanText":"정열적으로 연타!",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_clsh69",
+ "japaneseText":"第六感を信じろ!",
+ "japaneseFontType":0,
+ "englishUsText":"Trust your Sixth Sense!",
+ "englishUsFontType":0,
+ "chineseTText":"相信你的第六感!",
+ "chineseTFontType":1,
+ "koreanText":"육감을 믿어라!",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_clsr",
+ "japaneseText":"オレの太鼓はロックだぜ!",
+ "japaneseFontType":0,
+ "englishUsText":"I am Taiko ROCKER!",
+ "englishUsFontType":0,
+ "chineseTText":"我的太鼓可是很ROCK的啊!",
+ "chineseTFontType":1,
+ "koreanText":"내 태고는 록이라고!",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_clsw",
+ "japaneseText":"精度の極み!",
+ "japaneseFontType":0,
+ "englishUsText":"Precision's Pinnacle!",
+ "englishUsFontType":0,
+ "chineseTText":"精準度的極致!",
+ "chineseTFontType":1,
+ "koreanText":"정밀함의 극한!",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_crkvic",
+ "japaneseText":"勝利の女神",
+ "japaneseFontType":0,
+ "englishUsText":"Goddess of Victory",
+ "englishUsFontType":0,
+ "chineseTText":"勝利女神",
+ "chineseTFontType":1,
+ "koreanText":"승리의 여신",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_crturb",
+ "japaneseText":"ドライブ行こうぜ!",
+ "japaneseFontType":0,
+ "englishUsText":"Let's DRIVE!",
+ "englishUsFontType":0,
+ "chineseTText":"去兜風吧!",
+ "chineseTFontType":1,
+ "koreanText":"드라이브 하러 가자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_d96can",
+ "japaneseText":"ハッピーハロイン!",
+ "japaneseFontType":0,
+ "englishUsText":"Happy Halloween!",
+ "englishUsFontType":0,
+ "chineseTText":"萬聖節快樂!",
+ "chineseTFontType":1,
+ "koreanText":"해피 핼러윈!",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_dbcgen",
+ "japaneseText":"「限界突破×サバイバー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Genkai Toppa × Survivor」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「限界突破×サバイバー」",
+ "chineseTFontType":1,
+ "koreanText":"「겐카이톳파X사바이바」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_default01",
+ "japaneseText":"はじめてのドンだー",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Debut!",
+ "englishUsFontType":0,
+ "chineseTText":"初次鼓眾",
+ "chineseTFontType":1,
+ "koreanText":"신출내기 태고러",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_default02",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_default03",
+ "japaneseText":"太鼓の新人",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Newbie",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓新人",
+ "chineseTFontType":1,
+ "koreanText":"태고의 신인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_default04",
+ "japaneseText":"太鼓の達人はじめました",
+ "japaneseFontType":0,
+ "englishUsText":"Started Taiko",
+ "englishUsFontType":0,
+ "chineseTText":"開始遊玩太鼓之達人",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 시작했습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_dora",
+ "japaneseText":"ドラえもん大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ Doraemon",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡哆啦A夢",
+ "chineseTFontType":1,
+ "koreanText":"도라에몽 최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_dora4",
+ "japaneseText":"「夢をかなえてドラえもん」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Yumeo Kanaete DORAEMON」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「夢をかなえてドラえもん」",
+ "chineseTFontType":1,
+ "koreanText":"「꿈을 이루어줘 도라에몽」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_drsp",
+ "japaneseText":"「ドラゴンスピリット」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「DRAGON SPIRIT Medley」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「DRAGON SPIRIT」",
+ "chineseTFontType":1,
+ "koreanText":"「DRAGON SPIRIT」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_druaga",
+ "japaneseText":"「ドルアーガの塔」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「THE TOWER OF DRUAGA Medley」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「THE TOWER OF DRUAGA」",
+ "chineseTFontType":1,
+ "koreanText":"「THE TOWER OF DRUAGA」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_eatem",
+ "japaneseText":"パックマン大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ PAC-MAN",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡PAC-MAN",
+ "chineseTFontType":1,
+ "koreanText":"팩맨 최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_eva",
+ "japaneseText":"「残酷な天使のテーゼ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Zankokuna Tenshino Teeze」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「残酷な天使のテーゼ」",
+ "chineseTFontType":1,
+ "koreanText":"「잔코쿠나텐시노테제」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_flyawy",
+ "japaneseText":"共に描いた夢",
+ "japaneseFontType":0,
+ "englishUsText":"Dream Painter",
+ "englishUsFontType":0,
+ "chineseTText":"共同描繪的夢想",
+ "chineseTFontType":1,
+ "koreanText":"함께 그린 꿈",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash001",
+ "japaneseText":"太鼓の原人",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Caveman",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓原人",
+ "chineseTFontType":1,
+ "koreanText":"태고의 원시인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash002",
+ "japaneseText":"太鼓の石油王",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Oil Magnate",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓石油王",
+ "chineseTFontType":1,
+ "koreanText":"태고의 석유왕",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash003",
+ "japaneseText":"太鼓の世話人",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Sponsor",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓贊助人",
+ "chineseTFontType":1,
+ "koreanText":"태고의 관리인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash004",
+ "japaneseText":"太鼓の変人",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Weirdo",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓奇人",
+ "chineseTFontType":1,
+ "koreanText":"태고의 괴인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash005",
+ "japaneseText":"いいわけの達人",
+ "japaneseFontType":0,
+ "englishUsText":"Excuse Master",
+ "englishUsFontType":0,
+ "chineseTText":"找藉口達人",
+ "chineseTFontType":1,
+ "koreanText":"변명의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash006",
+ "japaneseText":"イケボの達人",
+ "japaneseFontType":0,
+ "englishUsText":"Cool Voice Master",
+ "englishUsFontType":0,
+ "chineseTText":"酷嗓音達人",
+ "chineseTFontType":1,
+ "koreanText":"꿀성대의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash007",
+ "japaneseText":"ウインクの達人",
+ "japaneseFontType":0,
+ "englishUsText":"Winking Master",
+ "englishUsFontType":0,
+ "chineseTText":"眨眼達人",
+ "chineseTFontType":1,
+ "koreanText":"윙크의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash008",
+ "japaneseText":"占いの達人",
+ "japaneseFontType":0,
+ "englishUsText":"Fortune-reading Master",
+ "englishUsFontType":0,
+ "chineseTText":"占卜達人",
+ "chineseTFontType":1,
+ "koreanText":"점술의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash009",
+ "japaneseText":"買物の達人",
+ "japaneseFontType":0,
+ "englishUsText":"Shopping Master",
+ "englishUsFontType":0,
+ "chineseTText":"購物達人",
+ "chineseTFontType":1,
+ "koreanText":"쇼핑의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash010",
+ "japaneseText":"気遣いの達人",
+ "japaneseFontType":0,
+ "englishUsText":"Thoughtful Master",
+ "englishUsFontType":0,
+ "chineseTText":"著想達人",
+ "chineseTFontType":1,
+ "koreanText":"걱정의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash011",
+ "japaneseText":"クレーンゲームの達人",
+ "japaneseFontType":0,
+ "englishUsText":"Crane Game Master",
+ "englishUsFontType":0,
+ "chineseTText":"夾娃娃機達人",
+ "chineseTFontType":1,
+ "koreanText":"인형 뽑기의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash012",
+ "japaneseText":"散歩の達人",
+ "japaneseFontType":0,
+ "englishUsText":"Strolling Master",
+ "englishUsFontType":0,
+ "chineseTText":"散步達人",
+ "chineseTFontType":1,
+ "koreanText":"산책의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash013",
+ "japaneseText":"写メ盛りの達人",
+ "japaneseFontType":0,
+ "englishUsText":"Selfie Master",
+ "englishUsFontType":0,
+ "chineseTText":"自拍照加工達人",
+ "chineseTFontType":1,
+ "koreanText":"셀카의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash014",
+ "japaneseText":"女子会の達人",
+ "japaneseFontType":0,
+ "englishUsText":"Girls Meet Master",
+ "englishUsFontType":0,
+ "chineseTText":"女子聚會達人",
+ "chineseTFontType":1,
+ "koreanText":"여자 모임의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash015",
+ "japaneseText":"長風呂の達人",
+ "japaneseFontType":0,
+ "englishUsText":"Long Bath Master",
+ "englishUsFontType":0,
+ "chineseTText":"長時間泡澡達人",
+ "chineseTFontType":1,
+ "koreanText":"목욕 오래하기의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash016",
+ "japaneseText":"なぞなぞの達人",
+ "japaneseFontType":0,
+ "englishUsText":"Riddle Master",
+ "englishUsFontType":0,
+ "chineseTText":"猜謎達人",
+ "chineseTFontType":1,
+ "koreanText":"수수께끼의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash017",
+ "japaneseText":"鍋パの達人",
+ "japaneseFontType":0,
+ "englishUsText":"Hot Pot Master",
+ "englishUsFontType":0,
+ "chineseTText":"火鍋派對達人",
+ "chineseTFontType":1,
+ "koreanText":"전골파티의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash018",
+ "japaneseText":"成り行き任せの達人",
+ "japaneseFontType":0,
+ "englishUsText":"Happy-Go-Lucky Master",
+ "englishUsFontType":0,
+ "chineseTText":"隨波逐流達人",
+ "chineseTFontType":1,
+ "koreanText":"케 세라 세라의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash019",
+ "japaneseText":"独り言の達人",
+ "japaneseFontType":0,
+ "englishUsText":"Soliloquy Master",
+ "englishUsFontType":0,
+ "chineseTText":"自言自語達人",
+ "chineseTFontType":1,
+ "koreanText":"혼잣말의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash020",
+ "japaneseText":"フォローの達人",
+ "japaneseFontType":0,
+ "englishUsText":"Support Master",
+ "englishUsFontType":0,
+ "chineseTText":"調解達人",
+ "chineseTFontType":1,
+ "koreanText":"서포트의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash021",
+ "japaneseText":"フリマの達人",
+ "japaneseFontType":0,
+ "englishUsText":"Flea Market Master",
+ "englishUsFontType":0,
+ "chineseTText":"跳蚤市場達人",
+ "chineseTFontType":1,
+ "koreanText":"벼룩시장의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash022",
+ "japaneseText":"ほふく前進の達人",
+ "japaneseFontType":0,
+ "englishUsText":"Crawling Master",
+ "englishUsFontType":0,
+ "chineseTText":"匍匐前進達人",
+ "chineseTFontType":1,
+ "koreanText":"포복 전진의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash023",
+ "japaneseText":"変顔の達人",
+ "japaneseFontType":0,
+ "englishUsText":"Clown Face Master",
+ "englishUsFontType":0,
+ "chineseTText":"滑稽臉孔達人",
+ "chineseTFontType":1,
+ "koreanText":"얼굴 개그의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash024",
+ "japaneseText":"真顔の達人",
+ "japaneseFontType":0,
+ "englishUsText":"Serious Face Master",
+ "englishUsFontType":0,
+ "chineseTText":"嚴肅臉孔達人",
+ "chineseTFontType":1,
+ "koreanText":"정색의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash025",
+ "japaneseText":"ポエムの達人",
+ "japaneseFontType":0,
+ "englishUsText":"Poem Master",
+ "englishUsFontType":0,
+ "chineseTText":"作詩達人",
+ "chineseTFontType":1,
+ "koreanText":"시 쓰기의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash026",
+ "japaneseText":"料理の達人",
+ "japaneseFontType":0,
+ "englishUsText":"Cooking Master",
+ "englishUsFontType":0,
+ "chineseTText":"料理達人",
+ "chineseTFontType":1,
+ "koreanText":"요리의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash027",
+ "japaneseText":"連打の達人",
+ "japaneseFontType":0,
+ "englishUsText":"Drum Roll Master",
+ "englishUsFontType":0,
+ "chineseTText":"連打達人",
+ "chineseTFontType":1,
+ "koreanText":"연타의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash028",
+ "japaneseText":"既読スルーの達人",
+ "japaneseFontType":0,
+ "englishUsText":"Read-Ignore Master",
+ "englishUsFontType":0,
+ "chineseTText":"已讀不回達人",
+ "chineseTFontType":1,
+ "koreanText":"읽고 무시하기의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash029",
+ "japaneseText":"寝たフリの達人",
+ "japaneseFontType":0,
+ "englishUsText":"Fake Sleeping Master",
+ "englishUsFontType":0,
+ "chineseTText":"裝睡達人",
+ "chineseTFontType":1,
+ "koreanText":"자는 척의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash030",
+ "japaneseText":"あけましておめでドン!",
+ "japaneseFontType":0,
+ "englishUsText":"Have A Happy New Year!",
+ "englishUsFontType":0,
+ "chineseTText":"恭賀新年咚!",
+ "chineseTFontType":1,
+ "koreanText":"새해 복 많이 받쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash031",
+ "japaneseText":"おつカレーライス!",
+ "japaneseFontType":0,
+ "englishUsText":"Tanks the effort!",
+ "englishUsFontType":0,
+ "chineseTText":"辛苦辣咖哩飯!",
+ "chineseTFontType":1,
+ "koreanText":"수고해시라이스!",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash032",
+ "japaneseText":"よいお年を!",
+ "japaneseFontType":0,
+ "englishUsText":"Have A Good Year!",
+ "englishUsFontType":0,
+ "chineseTText":"祝您明年過好年!",
+ "chineseTFontType":1,
+ "koreanText":"내년도 좋은 한 해 되길!",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash033",
+ "japaneseText":"エリートドンだー",
+ "japaneseFontType":0,
+ "englishUsText":"ELITE Donder",
+ "englishUsFontType":0,
+ "chineseTText":"我是菁英鼓眾",
+ "chineseTFontType":1,
+ "koreanText":"엘리트 태고러",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash034",
+ "japaneseText":"かんたんプレイヤーです",
+ "japaneseFontType":0,
+ "englishUsText":"Easy Player",
+ "englishUsFontType":0,
+ "chineseTText":"我是簡單難度玩家",
+ "chineseTFontType":1,
+ "koreanText":"쉬움 플레이어입니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash035",
+ "japaneseText":"ふつうプレイヤーです",
+ "japaneseFontType":0,
+ "englishUsText":"Normal Player",
+ "englishUsFontType":0,
+ "chineseTText":"我是普通難度玩家",
+ "chineseTFontType":1,
+ "koreanText":"보통 플레이어입니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash036",
+ "japaneseText":"むずかしいプレイヤーです",
+ "japaneseFontType":0,
+ "englishUsText":"Hard Player",
+ "englishUsFontType":0,
+ "chineseTText":"我是困難難度玩家",
+ "chineseTFontType":1,
+ "koreanText":"어려움 플레이어입니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash037",
+ "japaneseText":"おにプレイヤーです",
+ "japaneseFontType":0,
+ "englishUsText":"Extreme Player",
+ "englishUsFontType":0,
+ "chineseTText":"我是魔鬼難度玩家",
+ "chineseTFontType":1,
+ "koreanText":"귀신 플레이어입니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash038",
+ "japaneseText":"精度命",
+ "japaneseFontType":0,
+ "englishUsText":"Precision Freak",
+ "englishUsFontType":0,
+ "chineseTText":"精準度擺第一",
+ "chineseTFontType":1,
+ "koreanText":"정확함이 생명",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash039",
+ "japaneseText":"太鼓ゴリラ",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Enthusiast",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓大猩猩",
+ "chineseTFontType":1,
+ "koreanText":"태고 고릴라",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash040",
+ "japaneseText":"ノールック太鼓",
+ "japaneseFontType":0,
+ "englishUsText":"No Look Taiko",
+ "englishUsFontType":0,
+ "chineseTText":"閉眼打鼓",
+ "chineseTFontType":1,
+ "koreanText":"노룩 태고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash041",
+ "japaneseText":"I♥TAIKO",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ TAIKO",
+ "englishUsFontType":0,
+ "chineseTText":"I♥TAIKO",
+ "chineseTFontType":1,
+ "koreanText":"I♥TAIKO",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash042",
+ "japaneseText":"SNSは別人",
+ "japaneseFontType":0,
+ "englishUsText":"SNS Personality",
+ "englishUsFontType":0,
+ "chineseTText":"和社群網站上判若兩人",
+ "chineseTFontType":1,
+ "koreanText":"SNS에서는 딴사람",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash043",
+ "japaneseText":"エア太鼓",
+ "japaneseFontType":0,
+ "englishUsText":"Air Taiko",
+ "englishUsFontType":0,
+ "chineseTText":"空氣太鼓",
+ "chineseTFontType":1,
+ "koreanText":"에어 태고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash044",
+ "japaneseText":"お祭りわっしょい!",
+ "japaneseFontType":0,
+ "englishUsText":"Festival Heave-ho!",
+ "englishUsFontType":0,
+ "chineseTText":"祭典嘿咻!",
+ "chineseTFontType":1,
+ "koreanText":"축제다 얼쑤!",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash045",
+ "japaneseText":"お金大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ Money",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡錢",
+ "chineseTFontType":1,
+ "koreanText":"돈 최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash046",
+ "japaneseText":"お米大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ Rice",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡米",
+ "chineseTFontType":1,
+ "koreanText":"쌀밥 최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash047",
+ "japaneseText":"お肉大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ Meat",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡肉",
+ "chineseTFontType":1,
+ "koreanText":"고기 최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash048",
+ "japaneseText":"スマホ大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ Smartphone",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡手機",
+ "chineseTFontType":1,
+ "koreanText":"맛폰 최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash049",
+ "japaneseText":"ミステリー大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ Mystery",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡神秘",
+ "chineseTFontType":1,
+ "koreanText":"미스터리 최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash050",
+ "japaneseText":"どんちゃん大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ DON-chan",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡小咚",
+ "chineseTFontType":1,
+ "koreanText":"동이 최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash051",
+ "japaneseText":"かっちゃん大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ KATSU-chan",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡小咔",
+ "chineseTFontType":1,
+ "koreanText":"딱이 최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash052",
+ "japaneseText":"カレクッタ=ドンディー大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ Currycutta-Dondy",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡咖哩‧咚迪",
+ "chineseTFontType":1,
+ "koreanText":"콜카레=동디 최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash053",
+ "japaneseText":"よもぎまる大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ Yomogimaru",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡艾草丸",
+ "chineseTFontType":1,
+ "koreanText":"요모기마루 최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash054",
+ "japaneseText":"テツオ大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ Tetsuo",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡哲生",
+ "chineseTFontType":1,
+ "koreanText":"테츠오 최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash055",
+ "japaneseText":"はなちゃんLOVE!",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ Hana-chan",
+ "englishUsFontType":0,
+ "chineseTText":"I LOVE 小花!",
+ "chineseTFontType":1,
+ "koreanText":"하나 짱 LOVE!",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash056",
+ "japaneseText":"バチお先生リスペクトしてます",
+ "japaneseFontType":0,
+ "englishUsText":"Master Bachio, RESPECT!",
+ "englishUsFontType":0,
+ "chineseTText":"我很尊敬鼓棒師父",
+ "chineseTFontType":1,
+ "koreanText":"존경합니다 북채 선생님",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash057",
+ "japaneseText":"こたつにみかん",
+ "japaneseFontType":0,
+ "englishUsText":"All Set To Go!",
+ "englishUsFontType":0,
+ "chineseTText":"暖桌加橘子",
+ "chineseTFontType":1,
+ "koreanText":"코타츠에 감귤",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash058",
+ "japaneseText":"催眠術にはめっぽう弱い",
+ "japaneseFontType":0,
+ "englishUsText":"Superweak Against Hypnosis",
+ "englishUsFontType":0,
+ "chineseTText":"對催眠術超級沒轍",
+ "chineseTFontType":1,
+ "koreanText":"최면술에 엄청 약함",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash059",
+ "japaneseText":"未読の達人",
+ "japaneseFontType":0,
+ "englishUsText":"Unread Master",
+ "englishUsFontType":0,
+ "chineseTText":"未讀達人",
+ "chineseTFontType":1,
+ "koreanText":"안 읽고 무시하기의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash060",
+ "japaneseText":"太鼓コントローラー派",
+ "japaneseFontType":0,
+ "englishUsText":"Tatacon Practitioner",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓控制器派",
+ "chineseTFontType":1,
+ "koreanText":"북 컨트롤러 파",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash061",
+ "japaneseText":"ボタンでプレイ派",
+ "japaneseFontType":0,
+ "englishUsText":"Controller Practitioner",
+ "englishUsFontType":0,
+ "chineseTText":"按鈕遊玩派",
+ "chineseTFontType":1,
+ "koreanText":"버튼 플레이 파",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash062",
+ "japaneseText":"太鼓パリピ",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Party Animal",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓派對人",
+ "chineseTFontType":1,
+ "koreanText":"태고 파티 피플",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash063",
+ "japaneseText":"体力系音ゲーマー",
+ "japaneseFontType":0,
+ "englishUsText":"Athletic Musician",
+ "englishUsFontType":0,
+ "chineseTText":"體力系音樂玩家",
+ "chineseTFontType":1,
+ "koreanText":"육체파 리듬 게이머",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash064",
+ "japaneseText":"フルコン目前のクシャミスト",
+ "japaneseFontType":0,
+ "englishUsText":"Sneeze Before Full Combo",
+ "englishUsFontType":0,
+ "chineseTText":"即將全連段時打噴嚏的玩家",
+ "chineseTFontType":1,
+ "koreanText":"풀 콤보 직전에 재채기",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash065",
+ "japaneseText":"エクストリーム演奏中",
+ "japaneseFontType":0,
+ "englishUsText":"Extreme Play",
+ "englishUsFontType":0,
+ "chineseTText":"極限演奏中",
+ "chineseTFontType":1,
+ "koreanText":"익스트림 연주 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash066",
+ "japaneseText":"女子力計測中",
+ "japaneseFontType":0,
+ "englishUsText":"Measuring Feminine Power",
+ "englishUsFontType":0,
+ "chineseTText":"測量女子力中",
+ "chineseTFontType":1,
+ "koreanText":"여성스러움 계측 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash067",
+ "japaneseText":"ずっと充電中",
+ "japaneseFontType":0,
+ "englishUsText":"Forever Charging",
+ "englishUsFontType":0,
+ "chineseTText":"一直充電中",
+ "chineseTFontType":1,
+ "koreanText":"계속 충전 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash068",
+ "japaneseText":"掃除機から逃走中",
+ "japaneseFontType":0,
+ "englishUsText":"Vacuum Cleaner Escapee",
+ "englishUsFontType":0,
+ "chineseTText":"逃離吸塵機中",
+ "chineseTFontType":1,
+ "koreanText":"청소기를 피해 도주 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash069",
+ "japaneseText":"おこづかい値上げ交渉中",
+ "japaneseFontType":0,
+ "englishUsText":"Pocket Money Negotiation",
+ "englishUsFontType":0,
+ "chineseTText":"交涉提高零用錢中",
+ "chineseTFontType":1,
+ "koreanText":"용돈 인상 협상 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash070",
+ "japaneseText":"明日からちゃんとやる",
+ "japaneseFontType":0,
+ "englishUsText":"Solemnity Starts Tomorrow",
+ "englishUsFontType":0,
+ "chineseTText":"明天我會好好做的",
+ "chineseTFontType":1,
+ "koreanText":"내일부터는 제대로 해야지",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash071",
+ "japaneseText":"オシャンティの極み",
+ "japaneseFontType":0,
+ "englishUsText":"Fashionist's Pinnacle",
+ "englishUsFontType":0,
+ "chineseTText":"時尚的極致",
+ "chineseTFontType":1,
+ "koreanText":"간지폭풍",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash072",
+ "japaneseText":"最強の自宅警備員",
+ "japaneseFontType":0,
+ "englishUsText":"Strongest NEET",
+ "englishUsFontType":0,
+ "chineseTText":"最強的自家警衛",
+ "chineseTFontType":1,
+ "koreanText":"최강의 자택경비원",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash073",
+ "japaneseText":"ダジャレ番長",
+ "japaneseFontType":0,
+ "englishUsText":"Pun Master",
+ "englishUsFontType":0,
+ "chineseTText":"冷笑話番長",
+ "chineseTFontType":1,
+ "koreanText":"말장난 끝판왕",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash074",
+ "japaneseText":"テストは基本、一夜漬け",
+ "japaneseFontType":0,
+ "englishUsText":"Last Minute Testee",
+ "englishUsFontType":0,
+ "chineseTText":"考試基本上是前一天熬夜抱佛腳",
+ "chineseTFontType":1,
+ "koreanText":"시험은 기본적으로 벼락치기",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash075",
+ "japaneseText":"テストは基本、勘頼み",
+ "japaneseFontType":0,
+ "englishUsText":"Intuitive Testee",
+ "englishUsFontType":0,
+ "chineseTText":"考試基本上是靠直覺",
+ "chineseTFontType":1,
+ "koreanText":"시험은 기본적으로 찍기",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash076",
+ "japaneseText":"伝説級の豆腐メンタル",
+ "japaneseFontType":0,
+ "englishUsText":"Legendary Faint-hearted",
+ "englishUsFontType":0,
+ "chineseTText":"傳說等級的玻璃心",
+ "chineseTFontType":1,
+ "koreanText":"전설급 유리멘탈",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash077",
+ "japaneseText":"脳内カーニバルだドーン!",
+ "japaneseFontType":0,
+ "englishUsText":"Carnival Dreamer",
+ "englishUsFontType":0,
+ "chineseTText":"腦內嘉年華咚!",
+ "chineseTFontType":1,
+ "koreanText":"머릿속은 카니발이다쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash078",
+ "japaneseText":"バイブスがカミッテル",
+ "japaneseFontType":0,
+ "englishUsText":"Enthusiastic Vibes",
+ "englishUsFontType":0,
+ "chineseTText":"氣氛極佳",
+ "chineseTFontType":1,
+ "koreanText":"분위기가 미쳤어",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash079",
+ "japaneseText":"ひび割れた画面からこんにちは",
+ "japaneseFontType":0,
+ "englishUsText":"Hello From Cracked Screen",
+ "englishUsFontType":0,
+ "chineseTText":"從破碎的畫面中道你好",
+ "chineseTFontType":1,
+ "koreanText":"깨진 화면 너머로 안녕하세요",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash080",
+ "japaneseText":"不可と踊っちまったんだよ",
+ "japaneseFontType":0,
+ "englishUsText":"Dancing With BAD",
+ "englishUsFontType":0,
+ "chineseTText":"和不可共舞",
+ "chineseTFontType":1,
+ "koreanText":"에구와 춤을 추고 만거지",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash081",
+ "japaneseText":"フルコンボ直前の緊張感は異常",
+ "japaneseFontType":0,
+ "englishUsText":"Abnormal Tension Before Full Combo",
+ "englishUsFontType":0,
+ "chineseTText":"全連段前的緊張感非同尋常",
+ "chineseTFontType":1,
+ "koreanText":"풀 콤보 직전의 긴장감은 이상해",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash082",
+ "japaneseText":"僕のドヤ顔プライスレス",
+ "japaneseFontType":0,
+ "englishUsText":"My Snobbish Face, Priceless",
+ "englishUsFontType":0,
+ "chineseTText":"我的自豪表情無價",
+ "chineseTFontType":1,
+ "koreanText":"내 잘난 척 무료체험 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash083",
+ "japaneseText":"超弩級の太鼓持ち",
+ "japaneseFontType":0,
+ "englishUsText":"Super Flatterer",
+ "englishUsFontType":0,
+ "chineseTText":"出類拔萃的馬屁精",
+ "chineseTFontType":1,
+ "koreanText":"초특급 고수",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash084",
+ "japaneseText":"日々是限界",
+ "japaneseFontType":0,
+ "englishUsText":"Daily Hardwork",
+ "englishUsFontType":0,
+ "chineseTText":"每天都到達極限",
+ "chineseTFontType":1,
+ "koreanText":"나날이 정지해야 하는 법",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash085",
+ "japaneseText":"連打マシマシ・不可スクナメ",
+ "japaneseFontType":0,
+ "englishUsText":"More Drum Roll, Less BAD",
+ "englishUsFontType":0,
+ "chineseTText":"我要連打超多量・不可少量",
+ "chineseTFontType":1,
+ "koreanText":"에구 반, 연타 많이",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gash086",
+ "japaneseText":"毎日が日曜日",
+ "japaneseFontType":0,
+ "englishUsText":"Everyday Sunday",
+ "englishUsFontType":0,
+ "chineseTText":"每天都是星期天",
+ "chineseTFontType":1,
+ "koreanText":"매일매일 일요일",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_genpe",
+ "japaneseText":"これで勝ったと思うなよ!",
+ "japaneseFontType":0,
+ "englishUsText":"This is not the end!",
+ "englishUsFontType":0,
+ "chineseTText":"可別以為這樣就贏了!",
+ "chineseTFontType":1,
+ "koreanText":"이걸로 이겼다고 생각마라!",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gimcho",
+ "japaneseText":"「ギミチョコ!!」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Gimme Chocolate!!」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「ギミチョコ!!」",
+ "chineseTFontType":1,
+ "koreanText":"「Gimme Chocolate!!」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_himyak",
+ "japaneseText":"「ひまわりの約束」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Himawarino Yakusoku」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「向日葵的約定」",
+ "chineseTFontType":1,
+ "koreanText":"「해바라기의 약속」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_hkitty",
+ "japaneseText":"「ハローキティ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HELLO KITTY」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Hello Kitty」",
+ "chineseTFontType":1,
+ "koreanText":"「헬로키티」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_ia6cho",
+ "japaneseText":"「六兆年と一夜物語」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Rokuchounento Ichiya Monogatari」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「六兆年と一夜物語」",
+ "chineseTFontType":1,
+ "koreanText":"「로쿠쵸넨토이치야모노가타리」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_ikenai",
+ "japaneseText":"「イケナイ太陽」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Ikenai Taiyou」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「太陽無用」",
+ "chineseTFontType":1,
+ "koreanText":"「이케나이타이요우」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_imconc",
+ "japaneseText":"レジェンド346プロデューサー",
+ "japaneseFontType":0,
+ "englishUsText":"Legendary 346 Producer",
+ "englishUsFontType":0,
+ "chineseTText":"傳說346製作人",
+ "chineseTFontType":1,
+ "koreanText":"레전드 346 프로듀서",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_izanam",
+ "japaneseText":"高天原の戦い",
+ "japaneseFontType":0,
+ "englishUsText":"Takamagahara Battle",
+ "englishUsFontType":0,
+ "chineseTText":"高天原戰役",
+ "chineseTFontType":1,
+ "koreanText":"타카마가하라의 싸움",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_japari",
+ "japaneseText":"「ようこそジャパリパークへ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Youkoso JAPARI PARK」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「ようこそジャパリパークへ」",
+ "chineseTFontType":1,
+ "koreanText":"「요우코소쟈파리파크에」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_kakunin",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_kekka2",
+ "japaneseText":"「シュガーソングとビターステップ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Sugar Song to Bitter Step」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「シュガーソングとビターステップ」",
+ "chineseTFontType":1,
+ "koreanText":"「Sugar Song to Bitter Step」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_kiseki",
+ "japaneseText":"「キセキ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「KISEKI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「奇蹟」",
+ "chineseTFontType":1,
+ "koreanText":"「키세키」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_koiama",
+ "japaneseText":"「恋音と雨空」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Koiototo Amazora」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「恋音と雨空」",
+ "chineseTFontType":1,
+ "koreanText":"「코이오토토아마조라」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_linda",
+ "japaneseText":"「リンダリンダ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「LINDA LINDA」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「LINDA LINDA」",
+ "chineseTFontType":1,
+ "koreanText":"「LINDA LINDA」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_lost1g",
+ "japaneseText":"「ロストワンの号哭」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Rosutowanno Goukoku」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Lost one 的慟哭」",
+ "chineseTFontType":1,
+ "koreanText":"「로스트원노고코쿠」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_mappy2",
+ "japaneseText":"「マッピー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「MAPPY Medley」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「MAPPY」",
+ "chineseTFontType":1,
+ "koreanText":"「MAPPY」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_march",
+ "japaneseText":"レトロゲー大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ Retro Game",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡懷舊遊戲",
+ "chineseTFontType":1,
+ "koreanText":"고전 겜 최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_memesi",
+ "japaneseText":"「女々しくて」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Memeshikute」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「娘娘腔」",
+ "chineseTFontType":1,
+ "koreanText":"「메메시쿠테」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_mgpafe",
+ "japaneseText":"初めての味",
+ "japaneseFontType":0,
+ "englishUsText":"Beginner's Experience",
+ "englishUsFontType":0,
+ "chineseTText":"初嚐的滋味",
+ "chineseTFontType":1,
+ "koreanText":"처음 맛보는 맛",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_mikuaa",
+ "japaneseText":"「エイリアンエイリアン」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Alien Alien」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Alien Alien」",
+ "chineseTFontType":1,
+ "koreanText":"「Alien Alien」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_mikugr",
+ "japaneseText":"「ゴーストルール」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Ghost Rule」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Ghost Rule」",
+ "chineseTFontType":1,
+ "koreanText":"「Ghost Rule」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_moji",
+ "japaneseText":"「もじぴったん」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「MOJIPITTAN Medley」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「文字拼圖」",
+ "chineseTFontType":1,
+ "koreanText":"「모지피탄」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_mugens",
+ "japaneseText":"記憶の中の君",
+ "japaneseFontType":0,
+ "englishUsText":"Memories of you",
+ "englishUsFontType":0,
+ "chineseTText":"記憶中的你",
+ "chineseTFontType":1,
+ "koreanText":"기억 속의 그대",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_natsu",
+ "japaneseText":"「夏祭り」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Natsumatsuri」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「夏祭り」",
+ "chineseTFontType":1,
+ "koreanText":"「나츠마츠리」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_ninjbb",
+ "japaneseText":"「にんじゃりばんばん」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「NINJARI BANBAN」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「忍者棒棒」",
+ "chineseTFontType":1,
+ "koreanText":"「닌쟈리 방방」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_nograv",
+ "japaneseText":"無重力遊泳",
+ "japaneseFontType":0,
+ "englishUsText":"Anti-Gravitational Life",
+ "englishUsFontType":0,
+ "chineseTText":"無重力游泳",
+ "chineseTFontType":1,
+ "koreanText":"무중력 유영",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_ppap",
+ "japaneseText":"「PPAP」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Pen-Pineapple-Apple-Pen (PPAP)」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「PPAP」",
+ "chineseTFontType":1,
+ "koreanText":"「PPAP」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_rank20",
+ "japaneseText":"太鼓の芸人",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Artiste",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓藝人",
+ "chineseTFontType":1,
+ "koreanText":"태고의 예인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_rank25",
+ "japaneseText":"太鼓の友人",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Friend",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓友人",
+ "chineseTFontType":1,
+ "koreanText":"태고의 친인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_rank30",
+ "japaneseText":"太鼓の恋人",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Lover",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓戀人",
+ "chineseTFontType":1,
+ "koreanText":"태고의 연인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_rank40",
+ "japaneseText":"太鼓の才人",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Genius",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓英才",
+ "chineseTFontType":1,
+ "koreanText":"태고의 재인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_rank50",
+ "japaneseText":"太鼓の賢人",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Sage",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓賢者",
+ "chineseTFontType":1,
+ "koreanText":"태고의 혜인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_rank60",
+ "japaneseText":"太鼓の鉄人",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Iron Man",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓鐵人",
+ "chineseTFontType":1,
+ "koreanText":"태고의 철인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_rank70",
+ "japaneseText":"太鼓の玄人",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Professional",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓行家",
+ "chineseTFontType":1,
+ "koreanText":"태고의 현인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_rank80",
+ "japaneseText":"太鼓の名人",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Expert",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓名人",
+ "chineseTFontType":1,
+ "koreanText":"태고의 명인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_rank90",
+ "japaneseText":"太鼓の超人",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Superhuman",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓超人",
+ "chineseTFontType":1,
+ "koreanText":"태고의 초인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_rank99",
+ "japaneseText":"太鼓の達人",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Master",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓達人",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_rdrose",
+ "japaneseText":"もう一度叩かせて!",
+ "japaneseFontType":0,
+ "englishUsText":"Let Me Strike Once More!",
+ "englishUsFontType":0,
+ "chineseTText":"再讓我敲打一次!",
+ "chineseTFontType":1,
+ "koreanText":"한 번 더 두드려 줘!",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_roadmv",
+ "japaneseText":"「ロードムービー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Road Movie」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Road Movie」",
+ "chineseTFontType":1,
+ "koreanText":"「Road Movie」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_rot",
+ "japaneseText":"あなた好みの太鼓になります",
+ "japaneseFontType":0,
+ "englishUsText":"Your Favorite Taiko",
+ "englishUsFontType":0,
+ "chineseTText":"成為你所喜歡的太鼓",
+ "chineseTFontType":1,
+ "koreanText":"당신 취향의 태고가 될게요",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_rot4",
+ "japaneseText":"うたた寝の悲劇",
+ "japaneseFontType":0,
+ "englishUsText":"Napper's Tragedy",
+ "englishUsFontType":0,
+ "chineseTText":"打瞌睡的悲劇",
+ "chineseTFontType":1,
+ "koreanText":"선잠의 비극",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_ryuhim",
+ "japaneseText":"復讐の獣",
+ "japaneseFontType":0,
+ "englishUsText":"Vengeful Beast",
+ "englishUsFontType":0,
+ "chineseTText":"復仇野獸",
+ "chineseTFontType":1,
+ "koreanText":"복수하는 짐승",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_sf5ryu",
+ "japaneseText":"「Theme of Ryu」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Theme of Ryu」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Theme of Ryu」",
+ "chineseTFontType":1,
+ "koreanText":"「Theme Of Ryu」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_shing2",
+ "japaneseText":"「紅蓮の弓矢」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Gurenno Yumiya」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「紅蓮の弓矢」",
+ "chineseTFontType":1,
+ "koreanText":"「홍련의 화살」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_shingk",
+ "japaneseText":"必死の攻防",
+ "japaneseFontType":0,
+ "englishUsText":"Fight Or Flight",
+ "englishUsFontType":0,
+ "chineseTText":"拼死攻防",
+ "chineseTFontType":1,
+ "koreanText":"필사적인 공방",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_skorpg",
+ "japaneseText":"「RPG」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「RPG」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「RPG」",
+ "chineseTFontType":1,
+ "koreanText":"「RPG」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_skrnb",
+ "japaneseText":"「さくらんぼ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Sakuranbo」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「櫻桃」",
+ "chineseTFontType":1,
+ "koreanText":"「사쿠란보」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_so2omf",
+ "japaneseText":"そつおめ!",
+ "japaneseFontType":0,
+ "englishUsText":"BRAVO!",
+ "englishUsFontType":0,
+ "chineseTText":"恭喜畢業!",
+ "chineseTFontType":1,
+ "koreanText":"졸업 축하!",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_stabof",
+ "japaneseText":"みんなの太鼓、サイコー!",
+ "japaneseFontType":0,
+ "englishUsText":"ALL TAIKO, SAIKO!",
+ "englishUsFontType":0,
+ "chineseTText":"大家的太鼓,太棒了!",
+ "chineseTFontType":1,
+ "koreanText":"여러분의 태고, 최고!",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_tek7he",
+ "japaneseText":"三島流喧嘩空手",
+ "japaneseFontType":0,
+ "englishUsText":"Mishima Style Karate",
+ "englishUsFontType":0,
+ "chineseTText":"三島流打架空手道",
+ "chineseTFontType":1,
+ "koreanText":"미시마류 싸움 가라테",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_tengu",
+ "japaneseText":"天狗の集会",
+ "japaneseFontType":0,
+ "englishUsText":"Tengu's Gathering",
+ "englishUsFontType":0,
+ "chineseTText":"天狗聚會",
+ "chineseTFontType":1,
+ "koreanText":"텐구의 집회",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_th7171",
+ "japaneseText":"「ナイト・オブ・ナイツ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Night of Knights」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Night of Knights 」",
+ "chineseTFontType":1,
+ "koreanText":"「Night of Knights」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_thchil",
+ "japaneseText":"「チルノのパーフェクトさんすう教室」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Cirnono Perfect Sansu Kyositsu」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「チルノのパーフェクトさんすう教室」",
+ "chineseTFontType":1,
+ "koreanText":"「Chiruno노파페쿠토산수쿄시츠」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_thflnd",
+ "japaneseText":"「最終鬼畜妹フランドール・S」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Saisyuu Kichiku Imouto Frandre・S」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「最終鬼畜妹フランドール・S」",
+ "chineseTFontType":1,
+ "koreanText":"「사이슈키치쿠이모토 Flandre・S」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_timtrv",
+ "japaneseText":"時空を越えた旅人",
+ "japaneseFontType":0,
+ "englishUsText":"Time Traveler",
+ "englishUsFontType":0,
+ "chineseTText":"穿越時空的旅人",
+ "chineseTFontType":1,
+ "koreanText":"시공을 뛰어 넘은 여행자",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_tksoda",
+ "japaneseText":"ともに響かせよう",
+ "japaneseFontType":0,
+ "englishUsText":"Let's Resonate!",
+ "englishUsFontType":0,
+ "chineseTText":"一起響徹吧",
+ "chineseTFontType":1,
+ "koreanText":"함께 울려보자",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_tobers",
+ "japaneseText":"災禍の顕主",
+ "japaneseFontType":0,
+ "englishUsText":"Lord of Calamity",
+ "englishUsFontType":0,
+ "chineseTText":"災禍的顯主",
+ "chineseTFontType":1,
+ "koreanText":"재앙의 현주",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_totoro",
+ "japaneseText":"「となりのトトロ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Tonarino TOTORO」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「となりのトトロ」",
+ "chineseTFontType":1,
+ "koreanText":"「토나리노토토로」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_trance",
+ "japaneseText":"未来へ飛び出そう!",
+ "japaneseFontType":0,
+ "englishUsText":"Leap to the future!",
+ "englishUsFontType":0,
+ "chineseTText":"飛向未來吧!",
+ "chineseTFontType":1,
+ "koreanText":"미래로 뛰어 나가자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_trustg",
+ "japaneseText":"簡単に越えた長いハイステージ",
+ "japaneseFontType":0,
+ "englishUsText":"Cakewalking the Medley",
+ "englishUsFontType":0,
+ "chineseTText":"輕易跨越的長遠高聳舞台",
+ "chineseTFontType":1,
+ "koreanText":"쉽게 넘은 길고 긴 하이 스테이지",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_uminok",
+ "japaneseText":"「海の声」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Umino Koe」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「海の声」",
+ "chineseTFontType":1,
+ "koreanText":"「우미노코에」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_vrock",
+ "japaneseText":"アサキユメミシ",
+ "japaneseFontType":0,
+ "englishUsText":"Tale of Genji",
+ "englishUsFontType":0,
+ "chineseTText":"源氏物語",
+ "chineseTFontType":1,
+ "koreanText":"아사키 유메미시",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_weare0",
+ "japaneseText":"「ウィーアー!」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「We Are!」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「We Are!」",
+ "chineseTFontType":1,
+ "koreanText":"「We are!」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_xjapan",
+ "japaneseText":"「紅」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「KURENAI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「紅」",
+ "chineseTFontType":1,
+ "koreanText":"「쿠레나이」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_yayoi",
+ "japaneseText":"五穀豊穣",
+ "japaneseFontType":0,
+ "englishUsText":"Bountiful Harvest",
+ "englishUsFontType":0,
+ "chineseTText":"五穀豐登",
+ "chineseTFontType":1,
+ "koreanText":"오곡풍양",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_ynlose",
+ "japaneseText":"「LOSER」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「LOSER」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「LOSER」",
+ "chineseTFontType":1,
+ "koreanText":"「LOSER」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_zense",
+ "japaneseText":"「前前前世」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Zenzenzense」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「前前前世」",
+ "chineseTFontType":1,
+ "koreanText":"「전 전 전생」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_zootop",
+ "japaneseText":"「トライ・エヴリシング」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Try Everything」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Try Everything」",
+ "chineseTFontType":1,
+ "koreanText":"「Try Everything」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_babel",
+ "japaneseText":"「バベルの塔」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「THE TOWER OF BABEL」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「THE TOWER OF BABEL」",
+ "chineseTFontType":1,
+ "koreanText":"「THE TOWER OF BABEL」 최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_immbra",
+ "japaneseText":"レジェンド765プロデューサー",
+ "japaneseFontType":0,
+ "englishUsText":"Legendary 765 Producer",
+ "englishUsFontType":0,
+ "chineseTText":"傳說765製作人",
+ "chineseTFontType":1,
+ "koreanText":"레전드 765 프로듀서",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_apollo",
+ "japaneseText":"「アポロ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「APOLLO」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「アポロ」",
+ "chineseTFontType":1,
+ "koreanText":"「아폴로」 최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_psf1op",
+ "japaneseText":"ココロトキメキ★",
+ "japaneseFontType":0,
+ "englishUsText":"Racing Heartbeat★",
+ "englishUsFontType":0,
+ "chineseTText":"內心小鹿亂撞★",
+ "chineseTFontType":1,
+ "koreanText":"가슴이 두근두근★",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_detail_default02",
+ "japaneseText":"称号が空欄になります",
+ "japaneseFontType":0,
+ "englishUsText":"No Title",
+ "englishUsFontType":0,
+ "chineseTText":"此稱號為空白欄位",
+ "chineseTFontType":1,
+ "koreanText":"칭호가 빈칸으로 변합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_detail_rank20",
+ "japaneseText":"太鼓ランクマッチでランク20到達",
+ "japaneseFontType":0,
+ "englishUsText":"Achieve Rank 20\nin Taiko Ranked Match",
+ "englishUsFontType":0,
+ "chineseTText":"在太鼓線上排名戰達到 階級20",
+ "chineseTFontType":1,
+ "koreanText":"태고 랭크 매치에서 rank 20 도달",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_detail_rank25",
+ "japaneseText":"太鼓ランクマッチでランク25到達",
+ "japaneseFontType":0,
+ "englishUsText":"Achieve Rank 25\nin Taiko Ranked Match",
+ "englishUsFontType":0,
+ "chineseTText":"在太鼓線上排名戰達到 階級25",
+ "chineseTFontType":1,
+ "koreanText":"태고 랭크 매치에서 rank 25 도달",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_detail_rank30",
+ "japaneseText":"太鼓ランクマッチでランク30到達",
+ "japaneseFontType":0,
+ "englishUsText":"Achieve Rank 30\nin Taiko Ranked Match",
+ "englishUsFontType":0,
+ "chineseTText":"在太鼓線上排名戰達到 階級30",
+ "chineseTFontType":1,
+ "koreanText":"태고 랭크 매치에서 rank 30 도달",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_detail_rank40",
+ "japaneseText":"太鼓ランクマッチでランク40到達",
+ "japaneseFontType":0,
+ "englishUsText":"Achieve Rank 40\nin Taiko Ranked Match",
+ "englishUsFontType":0,
+ "chineseTText":"在太鼓線上排名戰達到 階級40",
+ "chineseTFontType":1,
+ "koreanText":"태고 랭크 매치에서 rank 40 도달",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_detail_rank50",
+ "japaneseText":"太鼓ランクマッチでランク50到達",
+ "japaneseFontType":0,
+ "englishUsText":"Achieve Rank 50\nin Taiko Ranked Match",
+ "englishUsFontType":0,
+ "chineseTText":"在太鼓線上排名戰達到 階級50",
+ "chineseTFontType":1,
+ "koreanText":"태고 랭크 매치에서 rank 50 도달",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_detail_rank60",
+ "japaneseText":"太鼓ランクマッチでランク60到達",
+ "japaneseFontType":0,
+ "englishUsText":"Achieve Rank 60\nin Taiko Ranked Match",
+ "englishUsFontType":0,
+ "chineseTText":"在太鼓線上排名戰達到 階級60",
+ "chineseTFontType":1,
+ "koreanText":"태고 랭크 매치에서 rank 60 도달",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_detail_rank70",
+ "japaneseText":"太鼓ランクマッチでランク70到達",
+ "japaneseFontType":0,
+ "englishUsText":"Achieve Rank 70\nin Taiko Ranked Match",
+ "englishUsFontType":0,
+ "chineseTText":"在太鼓線上排名戰達到 階級70",
+ "chineseTFontType":1,
+ "koreanText":"태고 랭크 매치에서 rank 70 도달",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_detail_rank80",
+ "japaneseText":"太鼓ランクマッチでランク80到達",
+ "japaneseFontType":0,
+ "englishUsText":"Achieve Rank 80\nin Taiko Ranked Match",
+ "englishUsFontType":0,
+ "chineseTText":"在太鼓線上排名戰達到 階級80",
+ "chineseTFontType":1,
+ "koreanText":"태고 랭크 매치에서 rank 80 도달",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_detail_rank90",
+ "japaneseText":"太鼓ランクマッチでランク90到達",
+ "japaneseFontType":0,
+ "englishUsText":"Achieve Rank 90\nin Taiko Ranked Match",
+ "englishUsFontType":0,
+ "chineseTText":"在太鼓線上排名戰達到 階級90",
+ "chineseTFontType":1,
+ "koreanText":"태고 랭크 매치에서 rank 90 도달",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_detail_rank99",
+ "japaneseText":"太鼓ランクマッチでランク99到達",
+ "japaneseFontType":0,
+ "englishUsText":"Achieve Rank 99\nin Taiko Ranked Match",
+ "englishUsFontType":0,
+ "chineseTText":"在太鼓線上排名戰達到 階級99",
+ "chineseTFontType":1,
+ "koreanText":"태고 랭크 매치에서 rank 99 도달",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_dora_result01",
+ "japaneseText":"フルコンボするなんて、\nし、信じられない!!",
+ "japaneseFontType":0,
+ "englishUsText":"A full combo?! Th-that's FANTASTIC!!",
+ "englishUsFontType":0,
+ "chineseTText":"竟然達成全連段\n真、真令人不敢相信!!",
+ "chineseTFontType":1,
+ "koreanText":"풀 콤보를 하다니\n마, 말도 안 돼!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_dora_result02",
+ "japaneseText":"フ、フルコンボだってー!?\nきみは天才かもしれないな!",
+ "japaneseFontType":0,
+ "englishUsText":"F-Full combo?! You are GREAT!",
+ "englishUsFontType":0,
+ "chineseTText":"竟、竟然全連段了─!?\n說不定你是天才呢!",
+ "chineseTFontType":1,
+ "koreanText":"푸, 풀 콤보라고~!?\n너 천재일지도 모르겠는데!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_dora_result03",
+ "japaneseText":"よくがんばったね!",
+ "japaneseFontType":0,
+ "englishUsText":"You did your best, didn't you!",
+ "englishUsFontType":0,
+ "chineseTText":"你很努力了!",
+ "chineseTFontType":1,
+ "koreanText":"수고했어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_dora_result04",
+ "japaneseText":"やればできるじゃないか!",
+ "japaneseFontType":0,
+ "englishUsText":"You did it!",
+ "englishUsFontType":0,
+ "chineseTText":"你認真做還是辦得到嘛!",
+ "chineseTFontType":1,
+ "koreanText":"거봐, 하면 되잖아!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_dora_result05",
+ "japaneseText":"惜しかったね~\n次はきっとクリアできるさ!",
+ "japaneseFontType":0,
+ "englishUsText":"That was really close~\nYou'll clear it next time!",
+ "englishUsFontType":0,
+ "chineseTText":"真可惜啊~\n下次一定能夠通關的!",
+ "chineseTFontType":1,
+ "koreanText":"아깝다~\n다음엔 분명 클리어할 수 있을 거야!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_dora_result06",
+ "japaneseText":"あらあらあら・・・\n次はもう少し頑張ってみよう!",
+ "japaneseFontType":0,
+ "englishUsText":"My, my, my...\nYou will make it next time!",
+ "englishUsFontType":0,
+ "chineseTText":"哎呀呀呀……\n下次再多加把勁吧!",
+ "chineseTFontType":1,
+ "koreanText":"어라라라…\n다음엔 좀 더 열심히 해보자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_dora_result07",
+ "japaneseText":"あともう少しだったね!\n次はきっとクリアできるさ!",
+ "japaneseFontType":0,
+ "englishUsText":"Just a little bit more!\nYou can do it next time!",
+ "englishUsFontType":0,
+ "chineseTText":"就差那一點了!\n下次一定能夠通關的!",
+ "chineseTFontType":1,
+ "koreanText":"조금만 더 하면 됐는데!\n다음엔 분명 클리어할 수 있을 거야!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_kitty_result01",
+ "japaneseText":"フルコンボ!?\nよく頑張ったね!",
+ "japaneseFontType":0,
+ "englishUsText":"FULL COMBO?!\nYou really gave your best!",
+ "englishUsFontType":0,
+ "chineseTText":"是全連段!?\n你很努力呢!",
+ "chineseTFontType":1,
+ "koreanText":"풀 콤보!?\n수고했어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_kitty_result02",
+ "japaneseText":"フルコンボ!?\nまた一緒にしようね!",
+ "japaneseFontType":0,
+ "englishUsText":"FULL COMBO?!\nLet's do this together again!",
+ "englishUsFontType":0,
+ "chineseTText":"是全連段!?\n下次再一起玩吧!",
+ "chineseTFontType":1,
+ "koreanText":"풀 콤보!?\n다음에 또 같이 하자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_kitty_result03",
+ "japaneseText":"フルコンボ!?\nまたあそぼうね~!",
+ "japaneseFontType":0,
+ "englishUsText":"FULL COMBO?!\nLet's play together again~!",
+ "englishUsFontType":0,
+ "chineseTText":"是全連段!?\n下次再玩吧~!",
+ "chineseTFontType":1,
+ "koreanText":"풀 콤보!?\n다음에 또 놀자~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_kitty_result04",
+ "japaneseText":"ノルマクリア?\nやっほ~!楽しかったね!",
+ "japaneseFontType":0,
+ "englishUsText":"SONG CLEAR~?\nYaahooo~ That was fun!",
+ "englishUsFontType":0,
+ "chineseTText":"演奏成功~?\n好欸~!我玩得很開心喔!",
+ "chineseTFontType":1,
+ "koreanText":"클리어 성공~?\n얏호~! 재밌었어!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_kitty_result05",
+ "japaneseText":"ノルマクリア?\nありがとうー!またね~!",
+ "japaneseFontType":0,
+ "englishUsText":"SONG CLEAR~?\nTHANKS! See ya~!",
+ "englishUsFontType":0,
+ "chineseTText":"演奏成功~?\n謝謝你─!再會囉~!",
+ "chineseTFontType":1,
+ "koreanText":"클리어 성공~?\n고마웠어~! 다음에 또 만나~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_kitty_result06",
+ "japaneseText":"ノルマクリア?\nすごいすごーい!",
+ "japaneseFontType":0,
+ "englishUsText":"SONG CLEAR~?\nT-That's amazing!",
+ "englishUsFontType":0,
+ "chineseTText":"演奏成功~?\n真的好厲害~!",
+ "chineseTFontType":1,
+ "koreanText":"클리어 성공~?\n대단해 대단해~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_kitty_result07",
+ "japaneseText":"惜しい!\nリラックスリラックス!",
+ "japaneseFontType":0,
+ "englishUsText":"Ahh... what a pity!\nRELAX! RELAX!",
+ "englishUsFontType":0,
+ "chineseTText":"好可惜!\n放輕鬆、放輕鬆!",
+ "chineseTFontType":1,
+ "koreanText":"아깝다!\n릴렉스 릴렉스!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_kitty_result08",
+ "japaneseText":"次はノルマクリア\nできますように☆",
+ "japaneseFontType":0,
+ "englishUsText":"Hope you'll be able to clear the next time☆",
+ "englishUsFontType":0,
+ "chineseTText":"下次設法達成\n演奏成功吧☆",
+ "chineseTFontType":1,
+ "koreanText":"다음엔 클리어 성공하기를 기도할게☆",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_kitty_result09",
+ "japaneseText":"頑張ってね!応援しているよ!",
+ "japaneseFontType":0,
+ "englishUsText":"Give it your best shot! I'm behind you all the way!",
+ "englishUsFontType":0,
+ "chineseTText":"你很努力呢!我會替你加油打氣!",
+ "chineseTFontType":1,
+ "koreanText":"열심히 해! 항상 응원할 테니까!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_miku_result01",
+ "japaneseText":"やった~!\nフルコ~ンボ~!",
+ "japaneseFontType":0,
+ "englishUsText":"Nailed it~!\nFULL COMBOOO~!",
+ "englishUsFontType":0,
+ "chineseTText":"成功了~!\n全連段~!",
+ "chineseTFontType":1,
+ "koreanText":"만세~!\n풀~콤보~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_miku_result02",
+ "japaneseText":"すっご~い!\nフルコンボだよ~!",
+ "japaneseFontType":0,
+ "englishUsText":"Impressive!\nFULL COMBO~!",
+ "englishUsFontType":0,
+ "chineseTText":"好厲~害!\n是全連段喔~!",
+ "chineseTFontType":1,
+ "koreanText":"대단해!\n풀 콤보했어~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_miku_result03",
+ "japaneseText":"フルコンボ!\nや~ったね~!",
+ "japaneseFontType":0,
+ "englishUsText":"FULL COMBO!\nYou did it~!",
+ "englishUsFontType":0,
+ "chineseTText":"全連段!\n太~好了~!",
+ "chineseTFontType":1,
+ "koreanText":"풀 콤보!\n해냈구나~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_miku_result04",
+ "japaneseText":"ノルマクリア~!\nよくできました~!",
+ "japaneseFontType":0,
+ "englishUsText":"SONG CLEAR~!\nNicely done~!",
+ "englishUsFontType":0,
+ "chineseTText":"演奏成功~!\n你做得非常好~!",
+ "chineseTFontType":1,
+ "koreanText":"클리어 성공~!\n참 잘했어요~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_miku_result05",
+ "japaneseText":"ノルマクリア~!\nバッチリだね~!",
+ "japaneseFontType":0,
+ "englishUsText":"SONG CLEAR~!\nPerfectly timed~!",
+ "englishUsFontType":0,
+ "chineseTText":"演奏成功~!\n表現得很完美~!",
+ "chineseTFontType":1,
+ "koreanText":"클리어 성공~!\n멋진 연주였어~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_miku_result06",
+ "japaneseText":"ノルマクリア~!\nイイ感じだね~!",
+ "japaneseFontType":0,
+ "englishUsText":"SONG CLEAR~!\nYou've got a knack for this~!",
+ "englishUsFontType":0,
+ "chineseTText":"演奏成功~!\n感覺很不錯~!",
+ "chineseTFontType":1,
+ "koreanText":"클리어 성공~!\n느낌 좋은데~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_miku_result07",
+ "japaneseText":"惜しい~!\nあと、少しだったね~!",
+ "japaneseFontType":0,
+ "englishUsText":"Argh, what a pity~!\nJust a little more~!",
+ "englishUsFontType":0,
+ "chineseTText":"好可惜~!\n還差一點~!",
+ "chineseTFontType":1,
+ "koreanText":"아깝다~!\n조금만 더하면 됐는데~!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_miku_result08",
+ "japaneseText":"もうちょっと!\nがんばろうね~",
+ "japaneseFontType":0,
+ "englishUsText":"You're almost there!\nLet's do our best, shall we~",
+ "englishUsFontType":0,
+ "chineseTText":"再稍微\n加把勁吧~",
+ "chineseTFontType":1,
+ "koreanText":"조금만 더!\n멸심히 하자~",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_miku_result09",
+ "japaneseText":"ううう~!\n次は、がんばって~!",
+ "japaneseFontType":0,
+ "englishUsText":"Uuuuuu~!\nWe'll try harder next time!",
+ "englishUsFontType":0,
+ "chineseTText":"嗚嗚嗚~!\n下次要加油~!",
+ "chineseTFontType":1,
+ "koreanText":"으으으~!\n다음엔 열심히 해야 해!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_pac_result01",
+ "japaneseText":"CONGRATULATIONS!",
+ "japaneseFontType":0,
+ "englishUsText":"CONGRATULATIONS!",
+ "englishUsFontType":0,
+ "chineseTText":"CONGRATULATIONS!",
+ "chineseTFontType":1,
+ "koreanText":"CONGRATULATIONS!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_pac_result02",
+ "japaneseText":"NICE GAME!",
+ "japaneseFontType":0,
+ "englishUsText":"NICE GAME!",
+ "englishUsFontType":0,
+ "chineseTText":"NICE GAME!",
+ "chineseTFontType":1,
+ "koreanText":"NICE GAME!",
+ "koreanFontType":2
+ },
+ {
+ "key":"support_score",
+ "japaneseText":"サポートスコア",
+ "japaneseFontType":0,
+ "englishUsText":"Support Score",
+ "englishUsFontType":0,
+ "chineseTText":"支援成績",
+ "chineseTFontType":1,
+ "koreanText":"서포트 스코어",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_tekken_result01",
+ "japaneseText":"貴様なかなかやるではないか\n名を名乗れっ!!",
+ "japaneseFontType":0,
+ "englishUsText":"You're pretty good.\nNow, name yourself!!",
+ "englishUsFontType":0,
+ "chineseTText":"你這傢伙挺有一手的嘛\n報上名來!!",
+ "chineseTFontType":1,
+ "koreanText":"네 녀석 꽤 실력이 있구나\n이름을 대라!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_tekken_result02",
+ "japaneseText":"久しぶりに血がたぎるわー!!",
+ "japaneseFontType":0,
+ "englishUsText":"It's been a while since my blood boiled!!",
+ "englishUsFontType":0,
+ "chineseTText":"我久違地熱血沸騰起來了─!!",
+ "chineseTFontType":1,
+ "koreanText":"오랜만에 피가 끓는군!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_tekken_result03",
+ "japaneseText":"まだまだぁーっ!!!!",
+ "japaneseFontType":0,
+ "englishUsText":"I'm not done yet!!!!",
+ "englishUsFontType":0,
+ "chineseTText":"還差得遠了!!!!",
+ "chineseTFontType":1,
+ "koreanText":"아직 멀었다!!!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_tekken_result04",
+ "japaneseText":"この程度か・・・\n期待外れじゃのうーっ!!",
+ "japaneseFontType":0,
+ "englishUsText":"Is that the best you can do...?\nWhat a disappointment!!",
+ "englishUsFontType":0,
+ "chineseTText":"就這點程度嗎……\n害老夫的期待落空了!!",
+ "chineseTFontType":1,
+ "koreanText":"고작 이 정돈가…\n기대만 못하구만!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_tekken_result05",
+ "japaneseText":"ぐーっはっはっはっ!\n修行が足りんわーっ!",
+ "japaneseFontType":0,
+ "englishUsText":"Guahahaha!\nYou need more training!",
+ "englishUsFontType":0,
+ "chineseTText":"咕哈哈哈哈~!\n修練還不夠啊!",
+ "chineseTFontType":1,
+ "koreanText":"크ー핫핫핫!\n수련이 부족하구나!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_tekken_result06",
+ "japaneseText":"生まれ変わって\n出直してこいっ!!!",
+ "japaneseFontType":0,
+ "englishUsText":"Try again in your next life!!!",
+ "englishUsFontType":0,
+ "chineseTText":"等你下輩子\n重新練過再來吧!!!",
+ "chineseTFontType":1,
+ "koreanText":"싸울 준비가 되거든\n다시 오너라!!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"collabo_tekken_result07",
+ "japaneseText":"失敗すれば・・・\n次はないと思えっ!",
+ "japaneseFontType":0,
+ "englishUsText":"If you lose...\nThere won't be next time!",
+ "englishUsFontType":0,
+ "chineseTText":"要是失敗……\n可別以為會有下次!",
+ "chineseTFontType":1,
+ "koreanText":"실패하면…\n다음은 없는 줄 알아라!",
+ "koreanFontType":2
+ },
+ {
+ "key":"confirm",
+ "japaneseText":"確認",
+ "japaneseFontType":0,
+ "englishUsText":"Agree",
+ "englishUsFontType":0,
+ "chineseTText":"確認",
+ "chineseTFontType":1,
+ "koreanText":"확인",
+ "koreanFontType":2
+ },
+ {
+ "key":"cancel",
+ "japaneseText":"キャンセル",
+ "japaneseFontType":0,
+ "englishUsText":"Cancel",
+ "englishUsFontType":0,
+ "chineseTText":"取消",
+ "chineseTFontType":1,
+ "koreanText":"취소",
+ "koreanFontType":2
+ },
+ {
+ "key":"OK",
+ "japaneseText":"OK",
+ "japaneseFontType":0,
+ "englishUsText":"OK",
+ "englishUsFontType":0,
+ "chineseTText":"OK",
+ "chineseTFontType":1,
+ "koreanText":"OK",
+ "koreanFontType":2
+ },
+ {
+ "key":"dialog_save_error",
+ "japaneseText":"空き容量が不足しているため\n再度エントリーができません",
+ "japaneseFontType":0,
+ "englishUsText":"Unable to overwrite due\nto insufficient storage.",
+ "englishUsFontType":0,
+ "chineseTText":"由於空間不足\n無法重新登入",
+ "chineseTFontType":1,
+ "koreanText":"빈 공간이 부족하기 때문에\n다시 엔트리할 수 없습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_dem31k",
+ "japaneseText":"「Saika」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Saika」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Saika」",
+ "chineseTFontType":1,
+ "koreanText":"「Saika」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_kteien",
+ "japaneseText":"「懐中庭園を持つ少女」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「KAICHUTEIEN WO MOTSU SYOUJO」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「擁有手中庭園的少女」",
+ "chineseTFontType":1,
+ "koreanText":"「카이추테이엔오 모쯔 쇼우죠」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gunsln",
+ "japaneseText":"「ガンスリンガーシンデレラ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Gunslinger Cinderella」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Gunslinger Cinderella」",
+ "chineseTFontType":1,
+ "koreanText":"「Gunslinger Cinderella」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_6ne9om",
+ "japaneseText":"「ドキドキ胸きゅん おまつりタイム」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「DOKIDOKI MUNEKYUN OMATSURI Time」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「心動亂跳祭典Time」",
+ "chineseTFontType":1,
+ "koreanText":"「도키도키무네큐웅 오마쓰리 타임」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_angel3",
+ "japaneseText":"「パステル ドリーム」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Pastel Dream」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Pastel Dream」",
+ "chineseTFontType":1,
+ "koreanText":"「Pastel Dream」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_yugen",
+ "japaneseText":"「幽玄ノ乱」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「YUGEN NO RAN」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「幽玄之亂」",
+ "chineseTFontType":1,
+ "koreanText":"「유우겐노 란」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_ygnarr",
+ "japaneseText":"「Infinite Rebellion」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Infinite Rebellion」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Infinite Rebellion」",
+ "chineseTFontType":1,
+ "koreanText":"「Infinite Rebellion」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_57mono",
+ "japaneseText":"「コナモノ☆」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「KONAMONO☆」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「小麥粉☆」",
+ "chineseTFontType":1,
+ "koreanText":"「코나모노☆」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_kaidan",
+ "japaneseText":"「χ談」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「KAI DAN」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「χ談」",
+ "chineseTFontType":1,
+ "koreanText":"「χ談」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_uheart",
+ "japaneseText":"「UNDEAD HEART(怒りのWarriors)」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「UNDEAD HEART(IKARI NO Warriors)」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「UNDEAD HEART(憤怒的Warriors)」",
+ "chineseTFontType":1,
+ "koreanText":"「UNDEAD HEART(怒りのWarriors)」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_takamg",
+ "japaneseText":"高天原学園の生徒",
+ "japaneseFontType":0,
+ "englishUsText":"Takamagahara Student",
+ "englishUsFontType":0,
+ "chineseTText":"高天原學園的學生",
+ "chineseTFontType":1,
+ "koreanText":"타카마가하라가쿠엔의 학생",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_83noma",
+ "japaneseText":"「闇の魔法少女」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「YAMI NO MAHOUSYOUJO」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「暗黑魔法少女」",
+ "chineseTFontType":1,
+ "koreanText":"「闇の魔法少女」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_dem31k",
+ "japaneseText":"「Saika」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Saika」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Saika」",
+ "chineseTFontType":1,
+ "koreanText":"「Saika」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_kteien",
+ "japaneseText":"「懐中庭園を持つ少女」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「KAICHUTEIEN WO MOTSU SYOUJO」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「擁有手中庭園的少女」",
+ "chineseTFontType":1,
+ "koreanText":"「카이추테이엔오 모쯔 쇼우죠」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gunsln",
+ "japaneseText":"「ガンスリンガーシンデレラ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Gunslinger Cinderella」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Gunslinger Cinderella」",
+ "chineseTFontType":1,
+ "koreanText":"「Gunslinger Cinderella」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_6ne9om",
+ "japaneseText":"「ドキドキ胸きゅん おまつりタイム」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「DOKIDOKI MUNEKYUN OMATSURI Time」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「心動亂跳祭典Time」",
+ "chineseTFontType":1,
+ "koreanText":"「도키도키무네큐웅 오마쓰리 타임」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_angel3",
+ "japaneseText":"「パステル ドリーム」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Pastel Dream」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Pastel Dream」",
+ "chineseTFontType":1,
+ "koreanText":"「Pastel Dream」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_yugen",
+ "japaneseText":"「幽玄ノ乱」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「YUGEN NO RAN」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「幽玄之亂」",
+ "chineseTFontType":1,
+ "koreanText":"「유우겐노 란」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_ygnarr",
+ "japaneseText":"「Infinite Rebellion」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Infinite Rebellion」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Infinite Rebellion」",
+ "chineseTFontType":1,
+ "koreanText":"「Infinite Rebellion」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_57mono",
+ "japaneseText":"「コナモノ☆」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「KONAMONO☆」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「小麥粉☆」",
+ "chineseTFontType":1,
+ "koreanText":"「코나모노☆」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_kaidan",
+ "japaneseText":"「χ談」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「KAI DAN」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「χ談」",
+ "chineseTFontType":1,
+ "koreanText":"「카이단」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_uheart",
+ "japaneseText":"「UNDEAD HEART(怒りのWarriors)」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「UNDEAD HEART(IKARI NO Warriors)」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「UNDEAD HEART(憤怒的Warriors)」",
+ "chineseTFontType":1,
+ "koreanText":"「UNDEAD HEART(이카리노 Warriors)」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_takamg",
+ "japaneseText":"「私立高天原学園高校・校歌」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SHIRITSU TAKAMAGAHARA GAKUEN KOUKOU・KOUKA」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「私立高天原學園高中・校歌」",
+ "chineseTFontType":1,
+ "koreanText":"「시리츠 타카마가하라가쿠엔코우코우・코우카」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_83noma",
+ "japaneseText":"「闇の魔法少女」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「YAMI NO MAHOUSYOUJO」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「暗黑魔法少女」",
+ "chineseTFontType":1,
+ "koreanText":"「야미노 마호우쇼우죠」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_dem31k",
+ "japaneseText":"Saika",
+ "japaneseFontType":0,
+ "englishUsText":"Saika",
+ "englishUsFontType":0,
+ "chineseTText":"Saika",
+ "chineseTFontType":0,
+ "koreanText":"Saika",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kteien",
+ "japaneseText":"懐中庭園を持つ少女",
+ "japaneseFontType":0,
+ "englishUsText":"懐中庭園を持つ少女",
+ "englishUsFontType":0,
+ "chineseTText":"懐中庭園を持つ少女",
+ "chineseTFontType":0,
+ "koreanText":"懐中庭園を持つ少女",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_gunsln",
+ "japaneseText":"ガンスリンガーシンデレラ",
+ "japaneseFontType":0,
+ "englishUsText":"ガンスリンガーシンデレラ",
+ "englishUsFontType":0,
+ "chineseTText":"ガンスリンガーシンデレラ",
+ "chineseTFontType":0,
+ "koreanText":"ガンスリンガーシンデレラ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_6ne9om",
+ "japaneseText":"ドキドキ胸きゅん おまつりタイム",
+ "japaneseFontType":0,
+ "englishUsText":"ドキドキ胸きゅん おまつりタイム",
+ "englishUsFontType":0,
+ "chineseTText":"ドキドキ胸きゅん おまつりタイム",
+ "chineseTFontType":0,
+ "koreanText":"ドキドキ胸きゅん おまつりタイム",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_angel3",
+ "japaneseText":"パステル ドリーム",
+ "japaneseFontType":0,
+ "englishUsText":"パステル ドリーム",
+ "englishUsFontType":0,
+ "chineseTText":"パステル ドリーム",
+ "chineseTFontType":0,
+ "koreanText":"パステル ドリーム",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_yugen",
+ "japaneseText":"幽玄ノ乱",
+ "japaneseFontType":0,
+ "englishUsText":"幽玄ノ乱",
+ "englishUsFontType":0,
+ "chineseTText":"幽玄ノ乱",
+ "chineseTFontType":0,
+ "koreanText":"幽玄ノ乱",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ygnarr",
+ "japaneseText":"Infinite Rebellion",
+ "japaneseFontType":0,
+ "englishUsText":"Infinite Rebellion",
+ "englishUsFontType":0,
+ "chineseTText":"Infinite Rebellion",
+ "chineseTFontType":0,
+ "koreanText":"Infinite Rebellion",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_57mono",
+ "japaneseText":"コナモノ☆",
+ "japaneseFontType":0,
+ "englishUsText":"コナモノ☆",
+ "englishUsFontType":0,
+ "chineseTText":"コナモノ☆",
+ "chineseTFontType":0,
+ "koreanText":"コナモノ☆",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kaidan",
+ "japaneseText":"χ談",
+ "japaneseFontType":0,
+ "englishUsText":"χ談",
+ "englishUsFontType":0,
+ "chineseTText":"χ談",
+ "chineseTFontType":0,
+ "koreanText":"χ談",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_uheart",
+ "japaneseText":"UNDEAD HEART(怒りのWarriors)",
+ "japaneseFontType":0,
+ "englishUsText":"UNDEAD HEART(怒りのWarriors)",
+ "englishUsFontType":0,
+ "chineseTText":"UNDEAD HEART(怒りのWarriors)",
+ "chineseTFontType":0,
+ "koreanText":"UNDEAD HEART(怒りのWarriors)",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_takamg",
+ "japaneseText":"私立高天原学園高校・校歌",
+ "japaneseFontType":0,
+ "englishUsText":"私立高天原学園高校・校歌",
+ "englishUsFontType":0,
+ "chineseTText":"私立高天原学園高校・校歌",
+ "chineseTFontType":0,
+ "koreanText":"私立高天原学園高校・校歌",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_83noma",
+ "japaneseText":"闇の魔法少女",
+ "japaneseFontType":0,
+ "englishUsText":"闇の魔法少女",
+ "englishUsFontType":0,
+ "chineseTText":"闇の魔法少女",
+ "chineseTFontType":0,
+ "koreanText":"闇の魔法少女",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_dem31k",
+ "japaneseText":"「DEEMO」より",
+ "japaneseFontType":0,
+ "englishUsText":"「DEEMO」より",
+ "englishUsFontType":0,
+ "chineseTText":"「DEEMO」より",
+ "chineseTFontType":0,
+ "koreanText":"「DEEMO」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_kteien",
+ "japaneseText":"はるなば feat.石黒千尋",
+ "japaneseFontType":0,
+ "englishUsText":"はるなば feat.石黒千尋",
+ "englishUsFontType":0,
+ "chineseTText":"はるなば feat.石黒千尋",
+ "chineseTFontType":0,
+ "koreanText":"はるなば feat.石黒千尋",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_yugen",
+ "japaneseText":"世阿弥",
+ "japaneseFontType":0,
+ "englishUsText":"世阿弥",
+ "englishUsFontType":0,
+ "chineseTText":"世阿弥",
+ "chineseTFontType":0,
+ "koreanText":"世阿弥",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_ygnarr",
+ "japaneseText":"黒沢ダイスケ 原曲「幽玄ノ乱/世阿弥(Tatsh)」",
+ "japaneseFontType":0,
+ "englishUsText":"黒沢ダイスケ 原曲「幽玄ノ乱/世阿弥(Tatsh)」",
+ "englishUsFontType":0,
+ "chineseTText":"黒沢ダイスケ 原曲「幽玄ノ乱/世阿弥(Tatsh)」",
+ "chineseTFontType":0,
+ "koreanText":"黒沢ダイスケ 原曲「幽玄ノ乱/世阿弥(Tatsh)」",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_57mono",
+ "japaneseText":"郷 拓郎",
+ "japaneseFontType":0,
+ "englishUsText":"郷 拓郎",
+ "englishUsFontType":0,
+ "chineseTText":"郷 拓郎",
+ "chineseTFontType":0,
+ "koreanText":"郷 拓郎",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_kaidan",
+ "japaneseText":"かねこちはる",
+ "japaneseFontType":0,
+ "englishUsText":"かねこちはる",
+ "englishUsFontType":0,
+ "chineseTText":"かねこちはる",
+ "chineseTFontType":0,
+ "koreanText":"かねこちはる",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_uheart",
+ "japaneseText":"坂本英三×高濱祐輔",
+ "japaneseFontType":0,
+ "englishUsText":"坂本英三×高濱祐輔",
+ "englishUsFontType":0,
+ "chineseTText":"坂本英三×高濱祐輔",
+ "chineseTFontType":0,
+ "koreanText":"坂本英三×高濱祐輔",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_takamg",
+ "japaneseText":"D.watt(IOSYS) feat. Np 犬田彦 & 山本椛",
+ "japaneseFontType":0,
+ "englishUsText":"D.watt(IOSYS) feat. Np 犬田彦 & 山本椛",
+ "englishUsFontType":0,
+ "chineseTText":"D.watt(IOSYS) feat. Np 犬田彦 & 山本椛",
+ "chineseTFontType":0,
+ "koreanText":"D.watt(IOSYS) feat. Np 犬田彦 & 山本椛",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_83noma",
+ "japaneseText":"Silver Forest feat.アキ",
+ "japaneseFontType":0,
+ "englishUsText":"Silver Forest feat.アキ",
+ "englishUsFontType":0,
+ "chineseTText":"Silver Forest feat.アキ",
+ "chineseTFontType":0,
+ "koreanText":"Silver Forest feat.アキ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_dem31k",
+ "japaneseText":"Saika",
+ "japaneseFontType":0,
+ "englishUsText":"Saika",
+ "englishUsFontType":0,
+ "chineseTText":"Saika",
+ "chineseTFontType":0,
+ "koreanText":"Saika",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_kteien",
+ "japaneseText":"懐中庭園を\n持つ少女",
+ "japaneseFontType":0,
+ "englishUsText":"懐中庭園を\n持つ少女",
+ "englishUsFontType":0,
+ "chineseTText":"懐中庭園を\n持つ少女",
+ "chineseTFontType":0,
+ "koreanText":"懐中庭園を\n持つ少女",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_gunsln",
+ "japaneseText":"ガンスリンガー\nシンデレラ",
+ "japaneseFontType":0,
+ "englishUsText":"ガンスリンガー\nシンデレラ",
+ "englishUsFontType":0,
+ "chineseTText":"ガンスリンガー\nシンデレラ",
+ "chineseTFontType":0,
+ "koreanText":"ガンスリンガー\nシンデレラ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_6ne9om",
+ "japaneseText":"ドキドキ胸きゅん\nおまつりタイム",
+ "japaneseFontType":0,
+ "englishUsText":"ドキドキ胸きゅん\nおまつりタイム",
+ "englishUsFontType":0,
+ "chineseTText":"ドキドキ胸きゅん\nおまつりタイム",
+ "chineseTFontType":0,
+ "koreanText":"ドキドキ胸きゅん\nおまつりタイム",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_angel3",
+ "japaneseText":"パステル ドリーム",
+ "japaneseFontType":0,
+ "englishUsText":"パステル ドリーム",
+ "englishUsFontType":0,
+ "chineseTText":"パステル ドリーム",
+ "chineseTFontType":0,
+ "koreanText":"パステル ドリーム",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_yugen",
+ "japaneseText":"幽玄ノ乱",
+ "japaneseFontType":0,
+ "englishUsText":"幽玄ノ乱",
+ "englishUsFontType":0,
+ "chineseTText":"幽玄ノ乱",
+ "chineseTFontType":0,
+ "koreanText":"幽玄ノ乱",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_ygnarr",
+ "japaneseText":"Infinite\nRebellion",
+ "japaneseFontType":0,
+ "englishUsText":"Infinite\nRebellion",
+ "englishUsFontType":0,
+ "chineseTText":"Infinite\nRebellion",
+ "chineseTFontType":0,
+ "koreanText":"Infinite\nRebellion",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_57mono",
+ "japaneseText":"コナモノ☆",
+ "japaneseFontType":0,
+ "englishUsText":"コナモノ☆",
+ "englishUsFontType":0,
+ "chineseTText":"コナモノ☆",
+ "chineseTFontType":0,
+ "koreanText":"コナモノ☆",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_kaidan",
+ "japaneseText":"χ談",
+ "japaneseFontType":0,
+ "englishUsText":"χ談",
+ "englishUsFontType":0,
+ "chineseTText":"χ談",
+ "chineseTFontType":0,
+ "koreanText":"χ談",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_uheart",
+ "japaneseText":"UNDEAD HEART\n(怒りのWarriors)",
+ "japaneseFontType":0,
+ "englishUsText":"UNDEAD HEART\n(怒りのWarriors)",
+ "englishUsFontType":0,
+ "chineseTText":"UNDEAD HEART\n(怒りのWarriors)",
+ "chineseTFontType":0,
+ "koreanText":"UNDEAD HEART\n(怒りのWarriors)",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_takamg",
+ "japaneseText":"私立高天原学園\n高校・校歌",
+ "japaneseFontType":0,
+ "englishUsText":"私立高天原学園\n高校・校歌",
+ "englishUsFontType":0,
+ "chineseTText":"私立高天原学園\n高校・校歌",
+ "chineseTFontType":0,
+ "koreanText":"私立高天原学園\n高校・校歌",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_83noma",
+ "japaneseText":"闇の魔法少女",
+ "japaneseFontType":0,
+ "englishUsText":"闇の魔法少女",
+ "englishUsFontType":0,
+ "chineseTText":"闇の魔法少女",
+ "chineseTFontType":0,
+ "koreanText":"闇の魔法少女",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_dem31k",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":1,
+ "koreanText":" ",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kteien",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"KAICHUTEIEN WO MOTSU SYOUJO",
+ "englishUsFontType":0,
+ "chineseTText":"擁有手中庭園的少女",
+ "chineseTFontType":1,
+ "koreanText":"카이추테이엔오 모쯔 쇼우죠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_gunsln",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Gunslinger Cinderella",
+ "englishUsFontType":0,
+ "chineseTText":"Gunslinger Cinderella",
+ "chineseTFontType":1,
+ "koreanText":"Gunslinger Cinderella",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_6ne9om",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"DOKIDOKI MUNEKYUN OMATSURI Time",
+ "englishUsFontType":0,
+ "chineseTText":"心動亂跳祭典Time",
+ "chineseTFontType":1,
+ "koreanText":"도키도키무네큐웅 오마쓰리 타임",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_angel3",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Pastel Dream",
+ "englishUsFontType":0,
+ "chineseTText":"Pastel Dream",
+ "chineseTFontType":1,
+ "koreanText":"Pastel Dream",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_yugen",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"YUGEN NO RAN",
+ "englishUsFontType":0,
+ "chineseTText":"幽玄之亂",
+ "chineseTFontType":1,
+ "koreanText":"유우겐노 란",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ygnarr",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":1,
+ "koreanText":" ",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_57mono",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"KONAMONO☆",
+ "englishUsFontType":0,
+ "chineseTText":"小麥粉☆",
+ "chineseTFontType":1,
+ "koreanText":"코나모노☆",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kaidan",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"KAI DAN",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":1,
+ "koreanText":"카이단",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_uheart",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"UNDEAD HEART(IKARI NO Warriors)",
+ "englishUsFontType":0,
+ "chineseTText":"UNDEAD HEART(憤怒的Warriors)",
+ "chineseTFontType":1,
+ "koreanText":"UNDEAD HEART(이카리노 Warriors)",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_takamg",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"SHIRITSU TAKAMAGAHARA GAKUEN KOUKOU・KOUKA",
+ "englishUsFontType":0,
+ "chineseTText":"私立高天原學園高中・校歌",
+ "chineseTFontType":1,
+ "koreanText":"시리츠 타카마가하라가쿠엔코우코우・코우카",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_83noma",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"YAMI NO MAHOUSYOUJO",
+ "englishUsFontType":0,
+ "chineseTText":"暗黑魔法少女",
+ "chineseTFontType":1,
+ "koreanText":"야미노 마호우쇼우죠",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_puchiDeemo",
+ "japaneseText":"Deemo & The Little Girl",
+ "japaneseFontType":0,
+ "englishUsText":"Deemo & The Little Girl",
+ "englishUsFontType":0,
+ "chineseTText":"Deemo & The Little Girl",
+ "chineseTFontType":1,
+ "koreanText":"Deemo & The Little Girl",
+ "koreanFontType":2
+ },
+ {
+ "key":"patch_version",
+ "japaneseText":"Ver.%s",
+ "japaneseFontType":0,
+ "englishUsText":"Ver.%s",
+ "englishUsFontType":0,
+ "chineseTText":"Ver.%s",
+ "chineseTFontType":1,
+ "koreanText":"Ver.%s",
+ "koreanFontType":2
+ },
+ {
+ "key":"patch_version_word",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"report_card_clear_songs",
+ "japaneseText":"ノルマクリア曲数",
+ "japaneseFontType":0,
+ "englishUsText":"Total Cleared",
+ "englishUsFontType":0,
+ "chineseTText":"演奏成功曲數",
+ "chineseTFontType":1,
+ "koreanText":"클리어한 곡 수",
+ "koreanFontType":2
+ },
+ {
+ "key":"report_card_full_songs",
+ "japaneseText":"フルコンボ曲数",
+ "japaneseFontType":0,
+ "englishUsText":"Total Full Combo",
+ "englishUsFontType":0,
+ "chineseTText":"全連段曲數",
+ "chineseTFontType":1,
+ "koreanText":"풀 콤보한 곡 수",
+ "koreanFontType":2
+ },
+ {
+ "key":"report_card_play_count",
+ "japaneseText":"プレイ回数",
+ "japaneseFontType":0,
+ "englishUsText":"Played",
+ "englishUsFontType":0,
+ "chineseTText":"遊玩次數",
+ "chineseTFontType":1,
+ "koreanText":"플레이 횟수",
+ "koreanFontType":2
+ },
+ {
+ "key":"report_card",
+ "japaneseText":"成績表",
+ "japaneseFontType":0,
+ "englishUsText":"Play Record",
+ "englishUsFontType":0,
+ "chineseTText":"成績表",
+ "chineseTFontType":1,
+ "koreanText":"성적표",
+ "koreanFontType":2
+ },
+ {
+ "key":"report_bingo_comp",
+ "japaneseText":"コンプリート枚数",
+ "japaneseFontType":0,
+ "englishUsText":"BINGO CARD Completed",
+ "englishUsFontType":0,
+ "chineseTText":"完成張數",
+ "chineseTFontType":1,
+ "koreanText":"컴플리트한 빙고 카드 수",
+ "koreanFontType":2
+ },
+ {
+ "key":"enso_pad_type_error",
+ "japaneseText":"お使いのコントローラーと操作タイプが\n適切ではない可能性があります",
+ "japaneseFontType":0,
+ "englishUsText":"The controller type and settings which\nis currently in used may not be suitable.",
+ "englishUsFontType":0,
+ "chineseTText":"您使用的控制器和操作類型\n可能不恰當",
+ "chineseTFontType":1,
+ "koreanText":"사용 중인 컨트롤러와 어울리지 않는\n조작 타입일 가능성이 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"result_pad_type_error",
+ "japaneseText":"お使いのコントローラーと操作タイプが\n適切ではない可能性があります\nゲーム設定に移動しますか?",
+ "japaneseFontType":0,
+ "englishUsText":"The controller type and settings which\nis currently in used may not be suitable.\nProceed to Game Settings?",
+ "englishUsFontType":0,
+ "chineseTText":"您使用的控制器和操作類型\n可能不恰當\n要移動至遊戲設定嗎?",
+ "chineseTFontType":1,
+ "koreanText":"사용 중인 컨트롤러와 어울리지 않는\n조작 타입일 가능성이 있습니다\n게임 설정으로 이동합니까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"config_buttontype4_supple_ex",
+ "japaneseText":"コントローラーを変更する場合は、遊ぶコントローラーの\nPSボタンを押してアカウントを選択してください",
+ "japaneseFontType":0,
+ "englishUsText":"Switch to your desired controller by pressing the PS button\nand select an account.",
+ "englishUsFontType":0,
+ "chineseTText":"若要變更控制器,\n請按下遊玩控制器的PS按鈕並選擇帳戶",
+ "chineseTFontType":1,
+ "koreanText":"컨트롤러를 변경할 경우 플레이할 컨트롤러의 \nPS 버튼을 눌러 계정을 선택해 주십시오.",
+ "koreanFontType":2
+ },
+ {
+ "key":"entry_pad",
+ "japaneseText":"太鼓コントローラーで遊ぶ場合は、太鼓コントローラーを本体に接続し\nPSボタンを押してアカウントを選択してください",
+ "japaneseFontType":0,
+ "englishUsText":"Play with the Taiko Controller by connecting it to the\nPlayStation®4 and press the PS button to select an account.",
+ "englishUsFontType":0,
+ "chineseTText":"使用太鼓控制器遊玩時,請連接太鼓控制器至主機,\n按下PS按鈕並選擇帳戶",
+ "chineseTFontType":1,
+ "koreanText":"북 컨트롤러로 플레이할 경우 북 컨트롤러를 본체에 접속하고 \nPS 버튼을 눌러 계정을 선택해 주십시오.",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_mikuse",
+ "japaneseText":"千本桜",
+ "japaneseFontType":0,
+ "englishUsText":"千本桜",
+ "englishUsFontType":0,
+ "chineseTText":"千本桜",
+ "chineseTFontType":0,
+ "koreanText":"千本桜",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_mikuse",
+ "japaneseText":"黒うさP feat.初音ミク",
+ "japaneseFontType":0,
+ "englishUsText":"黒うさP feat.初音ミク",
+ "englishUsFontType":0,
+ "chineseTText":"黒うさP feat.初音ミク",
+ "chineseTFontType":0,
+ "koreanText":"黒うさP feat.初音ミク",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_mikuse",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"SENBONZAKURA",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"센봉자쿠라",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_mikuse",
+ "japaneseText":"「千本桜」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SENBONZAKURA」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「千本桜」",
+ "chineseTFontType":1,
+ "koreanText":"「센봉자쿠라」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_mikuse",
+ "japaneseText":"「千本桜」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SENBONZAKURA」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「千本桜」",
+ "chineseTFontType":1,
+ "koreanText":"「센봉자쿠라」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_puchiMikuse",
+ "japaneseText":"初音未來",
+ "japaneseFontType":0,
+ "englishUsText":"HATSUNE MIKU",
+ "englishUsFontType":0,
+ "chineseTText":"初音未來",
+ "chineseTFontType":1,
+ "koreanText":"하츠네 미쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"npc_mikuse",
+ "japaneseText":"初音未來",
+ "japaneseFontType":0,
+ "englishUsText":"HATSUNE MIKU",
+ "englishUsFontType":0,
+ "chineseTText":"初音未來",
+ "chineseTFontType":1,
+ "koreanText":"하츠네 미쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_miku",
+ "japaneseText":"初音ミク大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ HATSUNE MIKU",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡初音未來",
+ "chineseTFontType":1,
+ "koreanText":"하츠네 미쿠 최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_miku",
+ "japaneseText":"初音ミク大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ HATSUNE MIKU",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡初音未來",
+ "chineseTFontType":1,
+ "koreanText":"하츠네 미쿠 최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_omirai",
+ "japaneseText":"オリジナルミライ",
+ "japaneseFontType":0,
+ "englishUsText":"オリジナルミライ",
+ "englishUsFontType":0,
+ "chineseTText":"オリジナルミライ",
+ "chineseTFontType":0,
+ "koreanText":"オリジナルミライ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ymtgen",
+ "japaneseText":"夢と現実の境界線",
+ "japaneseFontType":0,
+ "englishUsText":"夢と現実の境界線",
+ "englishUsFontType":0,
+ "chineseTText":"夢と現実の境界線",
+ "chineseTFontType":0,
+ "koreanText":"夢と現実の境界線",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_msclht",
+ "japaneseText":"My Muscle Heart",
+ "japaneseFontType":0,
+ "englishUsText":"My Muscle Heart",
+ "englishUsFontType":0,
+ "chineseTText":"My Muscle Heart",
+ "chineseTFontType":0,
+ "koreanText":"My Muscle Heart",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_chaost",
+ "japaneseText":"!!!カオスタイム!!!",
+ "japaneseFontType":0,
+ "englishUsText":"!!!カオスタイム!!!",
+ "englishUsFontType":0,
+ "chineseTText":"!!!カオスタイム!!!",
+ "chineseTFontType":0,
+ "koreanText":"!!!カオスタイム!!!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_souryu",
+ "japaneseText":"双竜ノ乱",
+ "japaneseFontType":0,
+ "englishUsText":"双竜ノ乱",
+ "englishUsFontType":0,
+ "chineseTText":"双竜ノ乱",
+ "chineseTFontType":0,
+ "koreanText":"双竜ノ乱",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_2ge8ji",
+ "japaneseText":"恋",
+ "japaneseFontType":0,
+ "englishUsText":"恋",
+ "englishUsFontType":0,
+ "chineseTText":"恋",
+ "chineseTFontType":0,
+ "koreanText":"恋",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kyksmj",
+ "japaneseText":"サイレントマジョリティー",
+ "japaneseFontType":0,
+ "englishUsText":"サイレントマジョリティー",
+ "englishUsFontType":0,
+ "chineseTText":"サイレントマジョリティー",
+ "chineseTFontType":0,
+ "koreanText":"サイレントマジョリティー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_krbld",
+ "japaneseText":"Be The One",
+ "japaneseFontType":0,
+ "englishUsText":"Be The One",
+ "englishUsFontType":0,
+ "chineseTText":"Be The One",
+ "chineseTFontType":0,
+ "koreanText":"Be The One",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_miku39",
+ "japaneseText":"みくみくにしてあげる♪【してやんよ】",
+ "japaneseFontType":0,
+ "englishUsText":"みくみくにしてあげる♪【してやんよ】",
+ "englishUsFontType":0,
+ "chineseTText":"みくみくにしてあげる♪【してやんよ】",
+ "chineseTFontType":0,
+ "koreanText":"みくみくにしてあげる♪【してやんよ】",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mikuer",
+ "japaneseText":"初音ミクの消失‐劇場版‐",
+ "japaneseFontType":0,
+ "englishUsText":"初音ミクの消失‐劇場版‐",
+ "englishUsFontType":0,
+ "chineseTText":"初音ミクの消失‐劇場版‐",
+ "chineseTFontType":0,
+ "koreanText":"初音ミクの消失‐劇場版‐",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_msclht",
+ "japaneseText":"~テレビ高天原系アニメ「筋肉魔法少女タケミナカタ」主題歌~\nコバヤシユウヤ(IOSYS) feat.山本椛 (monotone)",
+ "japaneseFontType":0,
+ "englishUsText":"~テレビ高天原系アニメ「筋肉魔法少女タケミナカタ」主題歌~\nコバヤシユウヤ(IOSYS) feat.山本椛 (monotone)",
+ "englishUsFontType":0,
+ "chineseTText":"~テレビ高天原系アニメ「筋肉魔法少女タケミナカタ」主題歌~\nコバヤシユウヤ(IOSYS) feat.山本椛 (monotone)",
+ "chineseTFontType":0,
+ "koreanText":"~テレビ高天原系アニメ「筋肉魔法少女タケミナカタ」主題歌~\nコバヤシユウヤ(IOSYS) feat.山本椛 (monotone)",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_chaost",
+ "japaneseText":"t+pazolite",
+ "japaneseFontType":0,
+ "englishUsText":"t+pazolite",
+ "englishUsFontType":0,
+ "chineseTText":"t+pazolite",
+ "chineseTFontType":0,
+ "koreanText":"t+pazolite",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_souryu",
+ "japaneseText":"世阿弥",
+ "japaneseFontType":0,
+ "englishUsText":"世阿弥",
+ "englishUsFontType":0,
+ "chineseTText":"世阿弥",
+ "chineseTFontType":0,
+ "koreanText":"世阿弥",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_2ge8ji",
+ "japaneseText":"ドラマ「逃げるは恥だが役に立つ」より",
+ "japaneseFontType":0,
+ "englishUsText":"ドラマ「逃げるは恥だが役に立つ」より",
+ "englishUsFontType":0,
+ "chineseTText":"ドラマ「逃げるは恥だが役に立つ」より",
+ "chineseTFontType":0,
+ "koreanText":"ドラマ「逃げるは恥だが役に立つ」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_krbld",
+ "japaneseText":"「仮面ライダービルド」より",
+ "japaneseFontType":0,
+ "englishUsText":"「仮面ライダービルド」より",
+ "englishUsFontType":0,
+ "chineseTText":"「仮面ライダービルド」より",
+ "chineseTFontType":0,
+ "koreanText":"「仮面ライダービルド」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_miku39",
+ "japaneseText":"ika feat.初音ミク",
+ "japaneseFontType":0,
+ "englishUsText":"ika feat.初音ミク",
+ "englishUsFontType":0,
+ "chineseTText":"ika feat.初音ミク",
+ "chineseTFontType":0,
+ "koreanText":"ika feat.初音ミク",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_omirai",
+ "japaneseText":"オリジナルミライ",
+ "japaneseFontType":0,
+ "englishUsText":"オリジナルミライ",
+ "englishUsFontType":0,
+ "chineseTText":"オリジナルミライ",
+ "chineseTFontType":0,
+ "koreanText":"オリジナルミライ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_ymtgen",
+ "japaneseText":"夢と現実の境界線",
+ "japaneseFontType":0,
+ "englishUsText":"夢と現実の境界線",
+ "englishUsFontType":0,
+ "chineseTText":"夢と現実の境界線",
+ "chineseTFontType":0,
+ "koreanText":"夢と現実の境界線",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_msclht",
+ "japaneseText":"My\nMuscle\nHeart",
+ "japaneseFontType":0,
+ "englishUsText":"My\nMuscle\nHeart",
+ "englishUsFontType":0,
+ "chineseTText":"My\nMuscle\nHeart",
+ "chineseTFontType":0,
+ "koreanText":"My\nMuscle\nHeart",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_chaost",
+ "japaneseText":"!!!カオスタイム!!!",
+ "japaneseFontType":0,
+ "englishUsText":"!!!カオスタイム!!!",
+ "englishUsFontType":0,
+ "chineseTText":"!!!カオスタイム!!!",
+ "chineseTFontType":0,
+ "koreanText":"!!!カオスタイム!!!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_souryu",
+ "japaneseText":"双竜ノ乱",
+ "japaneseFontType":0,
+ "englishUsText":"双竜ノ乱",
+ "englishUsFontType":0,
+ "chineseTText":"双竜ノ乱",
+ "chineseTFontType":0,
+ "koreanText":"双竜ノ乱",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_2ge8ji",
+ "japaneseText":"恋",
+ "japaneseFontType":0,
+ "englishUsText":"恋",
+ "englishUsFontType":0,
+ "chineseTText":"恋",
+ "chineseTFontType":0,
+ "koreanText":"恋",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_kyksmj",
+ "japaneseText":"サイレントマジョリティー",
+ "japaneseFontType":0,
+ "englishUsText":"サイレントマジョリティー",
+ "englishUsFontType":0,
+ "chineseTText":"サイレントマジョリティー",
+ "chineseTFontType":0,
+ "koreanText":"サイレントマジョリティー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_krbld",
+ "japaneseText":"Be The One",
+ "japaneseFontType":0,
+ "englishUsText":"Be The One",
+ "englishUsFontType":0,
+ "chineseTText":"Be The One",
+ "chineseTFontType":0,
+ "koreanText":"Be The One",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_miku39",
+ "japaneseText":"みくみくにしてあげる♪\n【してやんよ】",
+ "japaneseFontType":0,
+ "englishUsText":"みくみくにしてあげる♪\n【してやんよ】",
+ "englishUsFontType":0,
+ "chineseTText":"みくみくにしてあげる♪\n【してやんよ】",
+ "chineseTFontType":0,
+ "koreanText":"みくみくにしてあげる♪\n【してやんよ】",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_mikuer",
+ "japaneseText":"初音ミクの消失\n‐劇場版‐",
+ "japaneseFontType":0,
+ "englishUsText":"初音ミクの消失\n‐劇場版‐",
+ "englishUsFontType":0,
+ "chineseTText":"初音ミクの消失\n‐劇場版‐",
+ "chineseTFontType":0,
+ "koreanText":"初音ミクの消失\n‐劇場版‐",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_omirai",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Original MIRAI",
+ "englishUsFontType":0,
+ "chineseTText":"原創未來",
+ "chineseTFontType":1,
+ "koreanText":"오리지널 미라이",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ymtgen",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"YUME TO GENJITSU NO KYOUKAISEN",
+ "englishUsFontType":0,
+ "chineseTText":"夢與現實的邊界",
+ "chineseTFontType":1,
+ "koreanText":"유메토 겐지츠노 쿄우카이센",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_msclht",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_chaost",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"!!!Chaos Time!!!",
+ "englishUsFontType":0,
+ "chineseTText":"!!!Chaos Time!!!",
+ "chineseTFontType":1,
+ "koreanText":"!!!Chaos Time!!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_souryu",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"SOURYU NO RAN",
+ "englishUsFontType":0,
+ "chineseTText":"雙龍之亂",
+ "chineseTFontType":1,
+ "koreanText":"소우류우노 란",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_2ge8ji",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Koi",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"코이",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kyksmj",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Silent Majority",
+ "englishUsFontType":0,
+ "chineseTText":"Silent Majority",
+ "chineseTFontType":1,
+ "koreanText":"Silent Majority",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_krbld",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_miku39",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"MIKUMIKU Ni Shiteageru♪【Shiteyan-yo】",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"미쿠미쿠니 시테아게루♪【시테양요】",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mikuer",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"HATSUNE MIKU No Syoushitsu ‐Gekijouban‐",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"하츠네 미쿠노 쇼우시츠-게키죠우방-",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_omirai",
+ "japaneseText":"「オリジナルミライ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Original MIRAI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「原創未來」",
+ "chineseTFontType":1,
+ "koreanText":"「오리지널 미라이」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_ymtgen",
+ "japaneseText":"「夢と現実の境界線」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「YUME TO GENJITSU NO KYOUKAISEN」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「夢與現實的邊界」",
+ "chineseTFontType":1,
+ "koreanText":"「유메토 겐지츠노 쿄우카이센」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_msclht",
+ "japaneseText":"「My Muscle Heart」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「My Muscle Heart」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「My Muscle Heart」",
+ "chineseTFontType":1,
+ "koreanText":"「My Muscle Heart」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_chaost",
+ "japaneseText":"「!!!カオスタイム!!!」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「!!!Chaos Time!!!」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「!!!Chaos Time!!!」",
+ "chineseTFontType":1,
+ "koreanText":"「!!!Chaos Time!!!」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_souryu",
+ "japaneseText":"「双竜ノ乱」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SOURYU NO RAN」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「雙龍之亂」",
+ "chineseTFontType":1,
+ "koreanText":"「소우류우노 란」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_2ge8ji",
+ "japaneseText":"「恋」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Koi」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「恋」",
+ "chineseTFontType":1,
+ "koreanText":"「코이」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_kyksmj",
+ "japaneseText":"「サイレントマジョリティー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Silent Majority」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Silent Majority」",
+ "chineseTFontType":1,
+ "koreanText":"「Silent Majority」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_krbld",
+ "japaneseText":"「Be The One」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Be The One」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Be The One」",
+ "chineseTFontType":1,
+ "koreanText":"「Be The One」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_miku39",
+ "japaneseText":"「みくみくにしてあげる♪【してやんよ】」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「MIKUMIKU Ni Shiteageru♪【Shiteyan-yo】」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「みくみくにしてあげる♪【してやんよ】」",
+ "chineseTFontType":1,
+ "koreanText":"「미쿠미쿠니 시테아게루♪【시테양요】」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_mikuer",
+ "japaneseText":"「初音ミクの消失‐劇場版‐」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HATSUNE MIKU No Syoushitsu ‐Gekijouban‐」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「初音ミクの消失‐劇場版‐」",
+ "chineseTFontType":1,
+ "koreanText":"「하츠네 미쿠노 쇼우시츠-게키죠우방-」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_omirai",
+ "japaneseText":"「オリジナルミライ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Original MIRAI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「原創未來」",
+ "chineseTFontType":1,
+ "koreanText":"「오리지널 미라이」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_ymtgen",
+ "japaneseText":"「夢と現実の境界線」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「YUME TO GENJITSU NO KYOUKAISEN」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「夢與現實的邊界」",
+ "chineseTFontType":1,
+ "koreanText":"「유메토 겐지츠노 쿄우카이센」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_msclht",
+ "japaneseText":"「My Muscle Heart」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「My Muscle Heart」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「My Muscle Heart」",
+ "chineseTFontType":1,
+ "koreanText":"「My Muscle Heart」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_chaost",
+ "japaneseText":"「!!!カオスタイム!!!」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「!!!Chaos Time!!!」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「!!!Chaos Time!!!」",
+ "chineseTFontType":1,
+ "koreanText":"「!!!Chaos Time!!!」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_souryu",
+ "japaneseText":"「双竜ノ乱」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SOURYU NO RAN」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「雙龍之亂」",
+ "chineseTFontType":1,
+ "koreanText":"「소우류우노 란」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_2ge8ji",
+ "japaneseText":"「恋」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Koi」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「恋」",
+ "chineseTFontType":1,
+ "koreanText":"「코이」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_kyksmj",
+ "japaneseText":"「サイレントマジョリティー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Silent Majority」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Silent Majority」",
+ "chineseTFontType":1,
+ "koreanText":"「Silent Majority」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_krbld",
+ "japaneseText":"「Be The One」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Be The One」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Be The One」",
+ "chineseTFontType":1,
+ "koreanText":"「Be The One」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_miku39",
+ "japaneseText":"「みくみくにしてあげる♪【してやんよ】」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「MIKUMIKU Ni Shiteageru♪【Shiteyan-yo】」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「みくみくにしてあげる♪【してやんよ】」",
+ "chineseTFontType":1,
+ "koreanText":"「미쿠미쿠니 시테아게루♪【시테양요】」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_mikuer",
+ "japaneseText":"「初音ミクの消失‐劇場版‐」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HATSUNE MIKU No Syoushitsu ‐Gekijouban‐」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「初音ミクの消失‐劇場版‐」",
+ "chineseTFontType":1,
+ "koreanText":"「하츠네 미쿠노 쇼우시츠-게키죠우방-」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_small_mikuse",
+ "japaneseText":"千本桜",
+ "japaneseFontType":0,
+ "englishUsText":"千本桜",
+ "englishUsFontType":0,
+ "chineseTText":"千本桜",
+ "chineseTFontType":0,
+ "koreanText":"千本桜",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_omirai",
+ "japaneseText":"feat.マモル(nhhmbase)",
+ "japaneseFontType":0,
+ "englishUsText":"feat.マモル(nhhmbase)",
+ "englishUsFontType":0,
+ "chineseTText":"feat.マモル(nhhmbase)",
+ "chineseTFontType":0,
+ "koreanText":"feat.マモル(nhhmbase)",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_otomus",
+ "japaneseText":"音虫をつかまえろ!",
+ "japaneseFontType":0,
+ "englishUsText":"音虫をつかまえろ!",
+ "englishUsFontType":0,
+ "chineseTText":"音虫をつかまえろ!",
+ "chineseTFontType":0,
+ "koreanText":"音虫をつかまえろ!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ymyrp4",
+ "japaneseText":"忘却のティルナノグ",
+ "japaneseFontType":0,
+ "englishUsText":"忘却のティルナノグ",
+ "englishUsFontType":0,
+ "chineseTText":"忘却のティルナノグ",
+ "chineseTFontType":0,
+ "koreanText":"忘却のティルナノグ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_warya",
+ "japaneseText":"さよならワーリャ",
+ "japaneseFontType":0,
+ "englishUsText":"さよならワーリャ",
+ "englishUsFontType":0,
+ "chineseTText":"さよならワーリャ",
+ "chineseTFontType":0,
+ "koreanText":"さよならワーリャ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_snyq",
+ "japaneseText":"承認欲Q",
+ "japaneseFontType":0,
+ "englishUsText":"承認欲Q",
+ "englishUsFontType":0,
+ "chineseTText":"承認欲Q",
+ "chineseTFontType":0,
+ "koreanText":"承認欲Q",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_dsadvn",
+ "japaneseText":"D′s Adventure Note",
+ "japaneseFontType":0,
+ "englishUsText":"D′s Adventure Note",
+ "englishUsFontType":0,
+ "chineseTText":"D′s Adventure Note",
+ "chineseTFontType":0,
+ "koreanText":"D′s Adventure Note",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_otomus",
+ "japaneseText":"KiWi",
+ "japaneseFontType":0,
+ "englishUsText":"KiWi",
+ "englishUsFontType":0,
+ "chineseTText":"KiWi",
+ "chineseTFontType":0,
+ "koreanText":"KiWi",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_warya",
+ "japaneseText":"未来古代楽団 feat.霜月はるか",
+ "japaneseFontType":0,
+ "englishUsText":"未来古代楽団 feat.霜月はるか",
+ "englishUsFontType":0,
+ "chineseTText":"未来古代楽団 feat.霜月はるか",
+ "chineseTFontType":0,
+ "koreanText":"未来古代楽団 feat.霜月はるか",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_snyq",
+ "japaneseText":"かねこちはる feat.はぁち",
+ "japaneseFontType":0,
+ "englishUsText":"かねこちはる feat.はぁち",
+ "englishUsFontType":0,
+ "chineseTText":"かねこちはる feat.はぁち",
+ "chineseTFontType":0,
+ "koreanText":"かねこちはる feat.はぁち",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_dsadvn",
+ "japaneseText":"暖@よみぃ",
+ "japaneseFontType":0,
+ "englishUsText":"暖@よみぃ",
+ "englishUsFontType":0,
+ "chineseTText":"暖@よみぃ",
+ "chineseTFontType":0,
+ "koreanText":"暖@よみぃ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_otomus",
+ "japaneseText":"音虫をつかまえろ!",
+ "japaneseFontType":0,
+ "englishUsText":"音虫をつかまえろ!",
+ "englishUsFontType":0,
+ "chineseTText":"音虫をつかまえろ!",
+ "chineseTFontType":0,
+ "koreanText":"音虫をつかまえろ!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_ymyrp4",
+ "japaneseText":"忘却のティルナノグ",
+ "japaneseFontType":0,
+ "englishUsText":"忘却のティルナノグ",
+ "englishUsFontType":0,
+ "chineseTText":"忘却のティルナノグ",
+ "chineseTFontType":0,
+ "koreanText":"忘却のティルナノグ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_warya",
+ "japaneseText":"さよならワーリャ",
+ "japaneseFontType":0,
+ "englishUsText":"さよならワーリャ",
+ "englishUsFontType":0,
+ "chineseTText":"さよならワーリャ",
+ "chineseTFontType":0,
+ "koreanText":"さよならワーリャ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_snyq",
+ "japaneseText":"承認欲Q",
+ "japaneseFontType":0,
+ "englishUsText":"承認欲Q",
+ "englishUsFontType":0,
+ "chineseTText":"承認欲Q",
+ "chineseTFontType":0,
+ "koreanText":"承認欲Q",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_dsadvn",
+ "japaneseText":"D′s\nAdventure\nNote",
+ "japaneseFontType":0,
+ "englishUsText":"D′s\nAdventure\nNote",
+ "englishUsFontType":0,
+ "chineseTText":"D′s\nAdventure\nNote",
+ "chineseTFontType":0,
+ "koreanText":"D′s\nAdventure\nNote",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_otomus",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"OTOMUSHI WO TSUKAMAERO!",
+ "englishUsFontType":0,
+ "chineseTText":"抓住那隻音樂蟲!",
+ "chineseTFontType":1,
+ "koreanText":"오토무시오 츠카마에로",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ymyrp4",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"BOUKYAKU NO Tir na nOg",
+ "englishUsFontType":0,
+ "chineseTText":"被遺忘的提爾納諾",
+ "chineseTFontType":1,
+ "koreanText":"보우캬쿠노 티르 나 노그",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_warya",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"SAYONARA Varya",
+ "englishUsFontType":0,
+ "chineseTText":"再見了Varya",
+ "chineseTFontType":1,
+ "koreanText":"사요나라 바르 야",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_snyq",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"SYOUNIN YOKKYU",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"쇼우닌 욕Q",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_dsadvn",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_otomus",
+ "japaneseText":"「音虫をつかまえろ!」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「OTOMUSHI WO TSUKAMAERO!」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「抓住那隻音樂蟲!」",
+ "chineseTFontType":1,
+ "koreanText":"「오토무시오 츠카마에로」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_ymyrp4",
+ "japaneseText":"「忘却のティルナノグ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「BOUKYAKU NO Tir na nOg」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「被遺忘的提爾納諾」",
+ "chineseTFontType":1,
+ "koreanText":"「보우캬쿠노 티르 나 노그」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_warya",
+ "japaneseText":"「さよならワーリャ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SAYONARA Varya」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「再見了Varya」",
+ "chineseTFontType":1,
+ "koreanText":"「사요나라 바르 야」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_snyq",
+ "japaneseText":"「承認欲Q」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SYOUNIN YOKKYU」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「承認欲Q」",
+ "chineseTFontType":1,
+ "koreanText":"「쇼우닌 욕Q」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_dsadvn",
+ "japaneseText":"「D′s Adventure Note」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「D′s Adventure Note」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「D′s Adventure Note」",
+ "chineseTFontType":1,
+ "koreanText":"「D′s Adventure Note」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_otomus",
+ "japaneseText":"「音虫をつかまえろ!」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「OTOMUSHI WO TSUKAMAERO!」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「抓住那隻音樂蟲!」",
+ "chineseTFontType":1,
+ "koreanText":"「오토무시오 츠카마에로」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_ymyrp4",
+ "japaneseText":"「忘却のティルナノグ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「BOUKYAKU NO Tir na nOg」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「被遺忘的提爾納諾」",
+ "chineseTFontType":1,
+ "koreanText":"「보우캬쿠노 티르 나 노그」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_warya",
+ "japaneseText":"「さよならワーリャ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SAYONARA Varya」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「再見了Varya」",
+ "chineseTFontType":1,
+ "koreanText":"「사요나라 바르 야」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_snyq",
+ "japaneseText":"「承認欲Q」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SYOUNIN YOKKYU」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「承認欲Q」",
+ "chineseTFontType":1,
+ "koreanText":"「쇼우닌 욕Q」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_dsadvn",
+ "japaneseText":"「D′s Adventure Note」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「D′s Adventure Note」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「D′s Adventure Note」",
+ "chineseTFontType":1,
+ "koreanText":"「D′s Adventure Note」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_korokoro",
+ "japaneseText":"コロコロコミック",
+ "japaneseFontType":0,
+ "englishUsText":"CoroCoro Comic",
+ "englishUsFontType":0,
+ "chineseTText":"CoroCoro Comic",
+ "chineseTFontType":1,
+ "koreanText":"CoroCoro Comic",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_puchiKorodora",
+ "japaneseText":"コロドラゴン",
+ "japaneseFontType":0,
+ "englishUsText":"Coro Dragon",
+ "englishUsFontType":0,
+ "chineseTText":"Coro Dragon",
+ "chineseTFontType":1,
+ "koreanText":"Coro Dragon",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_coro4",
+ "japaneseText":"コロコロコミック40周年のうた",
+ "japaneseFontType":0,
+ "englishUsText":"コロコロコミック40周年のうた",
+ "englishUsFontType":0,
+ "chineseTText":"コロコロコミック40周年のうた",
+ "chineseTFontType":0,
+ "koreanText":"コロコロコミック40周年のうた",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_589him",
+ "japaneseText":"流浪の琥珀姫",
+ "japaneseFontType":0,
+ "englishUsText":"流浪の琥珀姫",
+ "englishUsFontType":0,
+ "chineseTText":"流浪の琥珀姫",
+ "chineseTFontType":0,
+ "koreanText":"流浪の琥珀姫",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_tuku43",
+ "japaneseText":"月読命",
+ "japaneseFontType":0,
+ "englishUsText":"月読命",
+ "englishUsFontType":0,
+ "chineseTText":"月読命",
+ "chineseTFontType":0,
+ "koreanText":"月読命",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_7fuku",
+ "japaneseText":"激運!七福ハッピークルー",
+ "japaneseFontType":0,
+ "englishUsText":"激運!七福ハッピークルー",
+ "englishUsFontType":0,
+ "chineseTText":"激運!七福ハッピークルー",
+ "chineseTFontType":0,
+ "koreanText":"激運!七福ハッピークルー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_orochi",
+ "japaneseText":"8OROCHI",
+ "japaneseFontType":0,
+ "englishUsText":"8OROCHI",
+ "englishUsFontType":0,
+ "chineseTText":"8OROCHI",
+ "chineseTFontType":0,
+ "koreanText":"8OROCHI",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_hkgmag",
+ "japaneseText":"ほうかご☆マジシャン",
+ "japaneseFontType":0,
+ "englishUsText":"ほうかご☆マジシャン",
+ "englishUsFontType":0,
+ "chineseTText":"ほうかご☆マジシャン",
+ "chineseTFontType":0,
+ "koreanText":"ほうかご☆マジシャン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_coro4",
+ "japaneseText":"岡崎体育",
+ "japaneseFontType":0,
+ "englishUsText":"岡崎体育",
+ "englishUsFontType":0,
+ "chineseTText":"岡崎体育",
+ "chineseTFontType":0,
+ "koreanText":"岡崎体育",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_tuku43",
+ "japaneseText":"Tatsh a.k.a 世阿弥",
+ "japaneseFontType":0,
+ "englishUsText":"Tatsh a.k.a 世阿弥",
+ "englishUsFontType":0,
+ "chineseTText":"Tatsh a.k.a 世阿弥",
+ "chineseTFontType":0,
+ "koreanText":"Tatsh a.k.a 世阿弥",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_7fuku",
+ "japaneseText":"コバヤシユウヤ(IOSYS) feat.山本椛 (monotone)",
+ "japaneseFontType":0,
+ "englishUsText":"コバヤシユウヤ(IOSYS) feat.山本椛 (monotone)",
+ "englishUsFontType":0,
+ "chineseTText":"コバヤシユウヤ(IOSYS) feat.山本椛 (monotone)",
+ "chineseTFontType":0,
+ "koreanText":"コバヤシユウヤ(IOSYS) feat.山本椛 (monotone)",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_orochi",
+ "japaneseText":"REDALiCE",
+ "japaneseFontType":0,
+ "englishUsText":"REDALiCE",
+ "englishUsFontType":0,
+ "chineseTText":"REDALiCE",
+ "chineseTFontType":0,
+ "koreanText":"REDALiCE",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_hkgmag",
+ "japaneseText":"まりんべーす",
+ "japaneseFontType":0,
+ "englishUsText":"まりんべーす",
+ "englishUsFontType":0,
+ "chineseTText":"まりんべーす",
+ "chineseTFontType":0,
+ "koreanText":"まりんべーす",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_coro4",
+ "japaneseText":"コロコロコミック\n40周年のうた",
+ "japaneseFontType":0,
+ "englishUsText":"コロコロコミック\n40周年のうた",
+ "englishUsFontType":0,
+ "chineseTText":"コロコロコミック\n40周年のうた",
+ "chineseTFontType":0,
+ "koreanText":"コロコロコミック\n40周年のうた",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_589him",
+ "japaneseText":"流浪の琥珀姫",
+ "japaneseFontType":0,
+ "englishUsText":"流浪の琥珀姫",
+ "englishUsFontType":0,
+ "chineseTText":"流浪の琥珀姫",
+ "chineseTFontType":0,
+ "koreanText":"流浪の琥珀姫",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_tuku43",
+ "japaneseText":"月読命",
+ "japaneseFontType":0,
+ "englishUsText":"月読命",
+ "englishUsFontType":0,
+ "chineseTText":"月読命",
+ "chineseTFontType":0,
+ "koreanText":"月読命",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_7fuku",
+ "japaneseText":"激運!\n七福ハッピークルー",
+ "japaneseFontType":0,
+ "englishUsText":"激運!\n七福ハッピークルー",
+ "englishUsFontType":0,
+ "chineseTText":"激運!\n七福ハッピークルー",
+ "chineseTFontType":0,
+ "koreanText":"激運!\n七福ハッピークルー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_orochi",
+ "japaneseText":"8OROCHI",
+ "japaneseFontType":0,
+ "englishUsText":"8OROCHI",
+ "englishUsFontType":0,
+ "chineseTText":"8OROCHI",
+ "chineseTFontType":0,
+ "koreanText":"8OROCHI",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_hkgmag",
+ "japaneseText":"ほうかご☆マジシャン",
+ "japaneseFontType":0,
+ "englishUsText":"ほうかご☆マジシャン",
+ "englishUsFontType":0,
+ "chineseTText":"ほうかご☆マジシャン",
+ "chineseTFontType":0,
+ "koreanText":"ほうかご☆マジシャン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_coro4",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"CoroCoro Comic 40th Anniversary Song",
+ "englishUsFontType":0,
+ "chineseTText":"CoroCoro Comic 40th Anniversary Song",
+ "chineseTFontType":1,
+ "koreanText":"CoroCoro Comic 40th Anniversary Song",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_589him",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"RUROU NO KOHAKU HIME",
+ "englishUsFontType":0,
+ "chineseTText":"流浪的琥珀公主",
+ "chineseTFontType":1,
+ "koreanText":"루로우노 코하쿠히메",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_tuku43",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"TSUKUYOMI",
+ "englishUsFontType":0,
+ "chineseTText":"月讀命",
+ "chineseTFontType":1,
+ "koreanText":"쓰쿠요미",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_7fuku",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"GEKIUN!SHICHIFUKU Happy Crew",
+ "englishUsFontType":0,
+ "chineseTText":"超幸運!七福快樂團組員",
+ "chineseTFontType":1,
+ "koreanText":"게키운! 시치후쿠 해피크루",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_orochi",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_hkgmag",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"HOUKAGO☆Magician",
+ "englishUsFontType":0,
+ "chineseTText":"放學後☆魔術師",
+ "chineseTFontType":1,
+ "koreanText":"호우카고☆매지션",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_coro4",
+ "japaneseText":"「コロコロコミック40周年のうた」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「CoroCoro Comic 40th Anniversary Song」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「CoroCoro Comic 40th Anniversary Song」",
+ "chineseTFontType":1,
+ "koreanText":"「CoroCoro Comic 40th Anniversary Song」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_589him",
+ "japaneseText":"「流浪の琥珀姫」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「RUROU NO KOHAKU HIME」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「流浪的琥珀公主」",
+ "chineseTFontType":1,
+ "koreanText":"「루로우노 코하쿠히메」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_tuku43",
+ "japaneseText":"「月読命」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「TSUKUYOMI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「月讀命」",
+ "chineseTFontType":1,
+ "koreanText":"「쓰쿠요미」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_7fuku",
+ "japaneseText":"「激運!七福ハッピークルー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「GEKIUN!SHICHIFUKU Happy Crew」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「超幸運!七福快樂團組員」",
+ "chineseTFontType":1,
+ "koreanText":"「게키운! 시치후쿠 해피크루」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_orochi",
+ "japaneseText":"「8OROCHI」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「8OROCHI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「8OROCHI」",
+ "chineseTFontType":1,
+ "koreanText":"「8OROCHI」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_hkgmag",
+ "japaneseText":"「ほうかご☆マジシャン」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HOUKAGO☆Magician」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「放學後☆魔術師」",
+ "chineseTFontType":1,
+ "koreanText":"「호우카고☆매지션」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_coro4",
+ "japaneseText":"「コロコロコミック40周年のうた」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「CoroCoro Comic 40th Anniversary Song」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「CoroCoro Comic 40th Anniversary Song」",
+ "chineseTFontType":1,
+ "koreanText":"「CoroCoro Comic 40th Anniversary Song」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_589him",
+ "japaneseText":"「流浪の琥珀姫」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「RUROU NO KOHAKU HIME」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「流浪的琥珀公主」",
+ "chineseTFontType":1,
+ "koreanText":"「루로우노 코하쿠히메」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_tuku43",
+ "japaneseText":"「月読命」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「TSUKUYOMI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「月讀命」",
+ "chineseTFontType":1,
+ "koreanText":"「쓰쿠요미」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_7fuku",
+ "japaneseText":"「激運!七福ハッピークルー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「GEKIUN!SHICHIFUKU Happy Crew」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「超幸運!七福快樂團組員」",
+ "chineseTFontType":1,
+ "koreanText":"「게키운! 시치후쿠 해피크루」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_orochi",
+ "japaneseText":"「8OROCHI」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「8OROCHI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「8OROCHI」",
+ "chineseTFontType":1,
+ "koreanText":"「8OROCHI」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_hkgmag",
+ "japaneseText":"「ほうかご☆マジシャン」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HOUKAGO☆Magician」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「放學後☆魔術師」",
+ "chineseTFontType":1,
+ "koreanText":"「호우카고☆매지션」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_tongat",
+ "japaneseText":"トンガチン",
+ "japaneseFontType":0,
+ "englishUsText":"トンガチン",
+ "englishUsFontType":0,
+ "chineseTText":"トンガチン",
+ "chineseTFontType":0,
+ "koreanText":"トンガチン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ta5ta5",
+ "japaneseText":"Turquoise Tachometer",
+ "japaneseFontType":0,
+ "englishUsText":"Turquoise Tachometer",
+ "englishUsFontType":0,
+ "chineseTText":"Turquoise Tachometer",
+ "chineseTFontType":0,
+ "koreanText":"Turquoise Tachometer",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_glokey",
+ "japaneseText":"Gloria",
+ "japaneseFontType":0,
+ "englishUsText":"Gloria",
+ "englishUsFontType":0,
+ "chineseTText":"Gloria",
+ "chineseTFontType":0,
+ "koreanText":"Gloria",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_allimh",
+ "japaneseText":"オール・イン・マイハート",
+ "japaneseFontType":0,
+ "englishUsText":"オール・イン・マイハート",
+ "englishUsFontType":0,
+ "chineseTText":"オール・イン・マイハート",
+ "chineseTFontType":0,
+ "koreanText":"オール・イン・マイハート",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_goth",
+ "japaneseText":"DON’T CUT",
+ "japaneseFontType":0,
+ "englishUsText":"DON’T CUT",
+ "englishUsFontType":0,
+ "chineseTText":"DON’T CUT",
+ "chineseTFontType":0,
+ "koreanText":"DON’T CUT",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_tongat",
+ "japaneseText":"Kimitaka Matsumae",
+ "japaneseFontType":0,
+ "englishUsText":"Kimitaka Matsumae",
+ "englishUsFontType":0,
+ "chineseTText":"Kimitaka Matsumae",
+ "chineseTFontType":0,
+ "koreanText":"Kimitaka Matsumae",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_ta5ta5",
+ "japaneseText":"AJURIKA",
+ "japaneseFontType":0,
+ "englishUsText":"AJURIKA",
+ "englishUsFontType":0,
+ "chineseTText":"AJURIKA",
+ "chineseTFontType":0,
+ "koreanText":"AJURIKA",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_glokey",
+ "japaneseText":"K.key",
+ "japaneseFontType":0,
+ "englishUsText":"K.key",
+ "englishUsFontType":0,
+ "chineseTText":"K.key",
+ "chineseTFontType":0,
+ "koreanText":"K.key",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_allimh",
+ "japaneseText":"ソメイヨシノ feat. 高木美佑 (Wake Up, Girls!)",
+ "japaneseFontType":0,
+ "englishUsText":"ソメイヨシノ feat. 高木美佑 (Wake Up, Girls!)",
+ "englishUsFontType":0,
+ "chineseTText":"ソメイヨシノ feat. 高木美佑 (Wake Up, Girls!)",
+ "chineseTFontType":0,
+ "koreanText":"ソメイヨシノ feat. 高木美佑 (Wake Up, Girls!)",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_tongat",
+ "japaneseText":"トンガチン",
+ "japaneseFontType":0,
+ "englishUsText":"トンガチン",
+ "englishUsFontType":0,
+ "chineseTText":"トンガチン",
+ "chineseTFontType":0,
+ "koreanText":"トンガチン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_ta5ta5",
+ "japaneseText":"Turquoise\nTachometer",
+ "japaneseFontType":0,
+ "englishUsText":"Turquoise\nTachometer",
+ "englishUsFontType":0,
+ "chineseTText":"Turquoise\nTachometer",
+ "chineseTFontType":0,
+ "koreanText":"Turquoise\nTachometer",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_glokey",
+ "japaneseText":"Gloria",
+ "japaneseFontType":0,
+ "englishUsText":"Gloria",
+ "englishUsFontType":0,
+ "chineseTText":"Gloria",
+ "chineseTFontType":0,
+ "koreanText":"Gloria",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_allimh",
+ "japaneseText":"オール・イン・マイハート",
+ "japaneseFontType":0,
+ "englishUsText":"オール・イン・マイハート",
+ "englishUsFontType":0,
+ "chineseTText":"オール・イン・マイハート",
+ "chineseTFontType":0,
+ "koreanText":"オール・イン・マイハート",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_goth",
+ "japaneseText":"DON’T CUT",
+ "japaneseFontType":0,
+ "englishUsText":"DON’T CUT",
+ "englishUsFontType":0,
+ "chineseTText":"DON’T CUT",
+ "chineseTFontType":0,
+ "koreanText":"DON’T CUT",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_tongat",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"TONGACHIN",
+ "englishUsFontType":0,
+ "chineseTText":"TONGACHIN",
+ "chineseTFontType":1,
+ "koreanText":"TONGACHIN",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ta5ta5",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_glokey",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_allimh",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"All In My Heart",
+ "englishUsFontType":0,
+ "chineseTText":"All In My Heart",
+ "chineseTFontType":1,
+ "koreanText":"All In My Heart",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_goth",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_tongat",
+ "japaneseText":"「トンガチン」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「TONGACHIN」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「TONGACHIN」",
+ "chineseTFontType":1,
+ "koreanText":"「TONGACHIN」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_ta5ta5",
+ "japaneseText":"「Turquoise Tachometer」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Turquoise Tachometer」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Turquoise Tachometer」",
+ "chineseTFontType":1,
+ "koreanText":"「Turquoise Tachometer」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_glokey",
+ "japaneseText":"「Gloria」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Gloria」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Gloria」",
+ "chineseTFontType":1,
+ "koreanText":"「Gloria」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_allimh",
+ "japaneseText":"「オール・イン・マイハート」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「All In My Heart」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「All In My Heart」",
+ "chineseTFontType":1,
+ "koreanText":"「All In My Heart」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_goth",
+ "japaneseText":"「DON’T CUT」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「DON'T CUT」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「DON'T CUT」",
+ "chineseTFontType":1,
+ "koreanText":"「DON'T CUT」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_tongat",
+ "japaneseText":"「トンガチン」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「TONGACHIN」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「TONGACHIN」",
+ "chineseTFontType":1,
+ "koreanText":"「TONGACHIN」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_ta5ta5",
+ "japaneseText":"「Turquoise Tachometer」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Turquoise Tachometer」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Turquoise Tachometer」",
+ "chineseTFontType":1,
+ "koreanText":"「Turquoise Tachometer」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_glokey",
+ "japaneseText":"「Gloria」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Gloria」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Gloria」",
+ "chineseTFontType":1,
+ "koreanText":"「Gloria」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_allimh",
+ "japaneseText":"「オール・イン・マイハート」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「All In My Heart」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「All In My Heart」",
+ "chineseTFontType":1,
+ "koreanText":"「All In My Heart」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_goth",
+ "japaneseText":"「DON’T CUT」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「DON'T CUT」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「DON'T CUT」",
+ "chineseTFontType":1,
+ "koreanText":"「DON'T CUT」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_sakura",
+ "japaneseText":"春祭り",
+ "japaneseFontType":0,
+ "englishUsText":"Spring Festival",
+ "englishUsFontType":0,
+ "chineseTText":"春季祭典",
+ "chineseTFontType":1,
+ "koreanText":"봄 축제",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_banner_subtitle",
+ "japaneseText":"期間限定イベント",
+ "japaneseFontType":0,
+ "englishUsText":"Limited Event",
+ "englishUsFontType":0,
+ "chineseTText":"期間限定活動",
+ "chineseTFontType":1,
+ "koreanText":"기간 한정 이벤트",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_banner_title",
+ "japaneseText":"%s",
+ "japaneseFontType":0,
+ "englishUsText":"%s",
+ "englishUsFontType":0,
+ "chineseTText":"%s",
+ "chineseTFontType":1,
+ "koreanText":"%s",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_banner_remain",
+ "japaneseText":"終了まであと",
+ "japaneseFontType":0,
+ "englishUsText":"Until end",
+ "englishUsFontType":0,
+ "chineseTText":"距結束還有",
+ "chineseTFontType":1,
+ "koreanText":"종료까지 앞으로",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_banner_remain_end",
+ "japaneseText":"終了しました",
+ "japaneseFontType":0,
+ "englishUsText":"Ended",
+ "englishUsFontType":0,
+ "chineseTText":"已結束",
+ "chineseTFontType":1,
+ "koreanText":"종료되었습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"days",
+ "japaneseText":"日",
+ "japaneseFontType":0,
+ "englishUsText":"Day(s)",
+ "englishUsFontType":0,
+ "chineseTText":"天",
+ "chineseTFontType":1,
+ "koreanText":"일",
+ "koreanFontType":2
+ },
+ {
+ "key":"hours",
+ "japaneseText":"時",
+ "japaneseFontType":0,
+ "englishUsText":"Hour(s)",
+ "englishUsFontType":0,
+ "chineseTText":"小時",
+ "chineseTFontType":1,
+ "koreanText":"시",
+ "koreanFontType":2
+ },
+ {
+ "key":"minutes",
+ "japaneseText":"分",
+ "japaneseFontType":0,
+ "englishUsText":"Min(s)",
+ "englishUsFontType":0,
+ "chineseTText":"分鐘",
+ "chineseTFontType":1,
+ "koreanText":"분",
+ "koreanFontType":2
+ },
+ {
+ "key":"seconds",
+ "japaneseText":"秒",
+ "japaneseFontType":0,
+ "englishUsText":"Sec(s)",
+ "englishUsFontType":0,
+ "chineseTText":"秒",
+ "chineseTFontType":1,
+ "koreanText":"초",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_gohoubi",
+ "japaneseText":"ごほうび",
+ "japaneseFontType":0,
+ "englishUsText":"Reward",
+ "englishUsFontType":0,
+ "chineseTText":"獎賞",
+ "chineseTFontType":1,
+ "koreanText":"보상",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_need_fp",
+ "japaneseText":"必要FP",
+ "japaneseFontType":0,
+ "englishUsText":"Required FP",
+ "englishUsFontType":0,
+ "chineseTText":"所需FP",
+ "chineseTFontType":1,
+ "koreanText":"필요한 FP",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_acquired_rank",
+ "japaneseText":"達成カウンター",
+ "japaneseFontType":0,
+ "englishUsText":"Total Reward",
+ "englishUsFontType":0,
+ "chineseTText":"達成順位",
+ "chineseTFontType":1,
+ "koreanText":"달성 카운터",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_get_fp",
+ "japaneseText":"もらえるFP",
+ "japaneseFontType":0,
+ "englishUsText":"FP Reward",
+ "englishUsFontType":0,
+ "chineseTText":"獲得FP",
+ "chineseTFontType":1,
+ "koreanText":"받을 수 있는 FP",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_fp_boost",
+ "japaneseText":"FPブースト",
+ "japaneseFontType":0,
+ "englishUsText":"FP Boost",
+ "englishUsFontType":0,
+ "chineseTText":"FP 增幅",
+ "chineseTFontType":1,
+ "koreanText":"FP 부스트",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_guide_goal",
+ "japaneseText":"フェスポイント(FP)を集めて特別なごほうびをゲットしよう!",
+ "japaneseFontType":0,
+ "englishUsText":"Collect Fest Points (FP) and get rewards!",
+ "englishUsFontType":0,
+ "chineseTText":"蒐集節慶點數(FP)取得特殊獎賞吧!",
+ "chineseTFontType":1,
+ "koreanText":"페스티벌 포인트(FP)를 모아서 보상을 받자!",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_participation_notice",
+ "japaneseText":"※ランク認定後、オンラインで参加できます",
+ "japaneseFontType":0,
+ "englishUsText":"※Online mode available after Evaluation Match",
+ "englishUsFontType":0,
+ "chineseTText":"※可以在階級審核戰之後,以線上模式參加。",
+ "chineseTFontType":1,
+ "koreanText":"※랭크 설정 후에 온라인에서 참가할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_duration",
+ "japaneseText":"%s ~ %s",
+ "japaneseFontType":0,
+ "englishUsText":"%s ~ %s",
+ "englishUsFontType":0,
+ "chineseTText":"%s ~ %s",
+ "chineseTFontType":1,
+ "koreanText":"%s ~ %s",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_gohoubi_type_song",
+ "japaneseText":"楽曲 %s",
+ "japaneseFontType":0,
+ "englishUsText":"Song %s",
+ "englishUsFontType":0,
+ "chineseTText":"樂曲 %s",
+ "chineseTFontType":1,
+ "koreanText":"곡 %s",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_gohoubi_type_song_ex",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_open_info_window",
+ "japaneseText":"イベント",
+ "japaneseFontType":0,
+ "englishUsText":"Event",
+ "englishUsFontType":0,
+ "chineseTText":"活動",
+ "chineseTFontType":1,
+ "koreanText":"이벤트",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_fp_boost_confirm",
+ "japaneseText":"ドン小判3枚でゲットできるFPを倍にできます\nFPブーストしますか?",
+ "japaneseFontType":0,
+ "englishUsText":"Use 3 DON coins to double FP reward.\nDo you want to use it?",
+ "englishUsFontType":0,
+ "chineseTText":"可以使用3枚咚小判獲得2倍的FP\n確定要提升FP嗎?",
+ "chineseTFontType":1,
+ "koreanText":"동 전 3개로 얻을 수 있는 FP를 2배로 만들 수 있습니다\nFP 부스트를 하시겠습니까?",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_fp_boost_no_coin",
+ "japaneseText":"ドン小判3枚でゲットできるFPを倍にできます\n\n※ドン小判の枚数がたりません",
+ "japaneseFontType":0,
+ "englishUsText":"Use 3 DON coins to double FP reward.\n※Insufficient DON coins",
+ "englishUsFontType":0,
+ "chineseTText":"可以使用3枚咚小判獲得2倍的FP\n\n※咚小判數量不足",
+ "chineseTFontType":1,
+ "koreanText":"동 전 3개로 얻을 수 있는 FP를 2배로 만들 수 있습니다\n\n※동 전의 개수가 부족합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_fp_boost_note",
+ "japaneseText":"※演奏対決が始まるまでは変更できます",
+ "japaneseFontType":0,
+ "englishUsText":"※Toggle FP boost before VS Match starts",
+ "englishUsFontType":0,
+ "chineseTText":"※可以在演奏對決開始前變更",
+ "chineseTFontType":1,
+ "koreanText":"※연주 대결이 시작되기 전까지는 변경할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_open_fp_boost_confirm",
+ "japaneseText":"FPブースト",
+ "japaneseFontType":0,
+ "englishUsText":"FP Boost",
+ "englishUsFontType":0,
+ "chineseTText":"FP 增幅",
+ "chineseTFontType":1,
+ "koreanText":"FP 부스트",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_reword_message_ex",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_reword_message_ex1",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_reword_message_ex2",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_reword_message_ex3",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_reword_message_ex4",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_reword_message",
+ "japaneseText":"%sFP達成!",
+ "japaneseFontType":0,
+ "englishUsText":"FP %s completed!",
+ "englishUsFontType":0,
+ "chineseTText":"%s FP達成!",
+ "chineseTFontType":1,
+ "koreanText":"%s FP 달성!",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_koban_get_ex",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_koban_get",
+ "japaneseText":"ドン小判%s枚ゲット!",
+ "japaneseFontType":0,
+ "englishUsText":"Received %s DON coins!",
+ "englishUsFontType":0,
+ "chineseTText":"獲得咚小判%s枚!",
+ "chineseTFontType":1,
+ "koreanText":"동 전 %s개 GET !",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_result_fp",
+ "japaneseText":"フェスポイント",
+ "japaneseFontType":0,
+ "englishUsText":"Fest Points",
+ "englishUsFontType":0,
+ "chineseTText":"節慶點數",
+ "chineseTFontType":1,
+ "koreanText":"페스티벌 포인트",
+ "koreanFontType":2
+ },
+ {
+ "key":"song",
+ "japaneseText":"楽曲",
+ "japaneseFontType":0,
+ "englishUsText":"Song",
+ "englishUsFontType":0,
+ "chineseTText":"樂曲",
+ "chineseTFontType":1,
+ "koreanText":"곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_gohoubi_type_1",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_gohoubi_type_2",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_gohoubi_type_3",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_gohoubi_type_4",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_gohoubi_type_5",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_gohoubi_type_6",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_gohoubi_value_1",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_gohoubi_value_2",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_gohoubi_value_3",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_gohoubi_value_4",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_gohoubi_value_5",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_gohoubi_value_6",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_duration_body",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_fp_value_win",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_fp_value_draw",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_fp_value_lose",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_fp_value_dlc",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_fp_value_fp_boost",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_banner_title_detail",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_dlc_up",
+ "japaneseText":"マッチング率アップ!",
+ "japaneseFontType":0,
+ "englishUsText":"Matching Rate Up!",
+ "englishUsFontType":0,
+ "chineseTText":"提昇對戰率!",
+ "chineseTFontType":1,
+ "koreanText":"매칭률 상승!",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_koban_info",
+ "japaneseText":"※10FP集めるごとにドン小判3枚ゲットできます",
+ "japaneseFontType":0,
+ "englishUsText":"※Every 10FP accumulated earns you 3 DON coins!",
+ "englishUsFontType":0,
+ "chineseTText":"※每蒐集10FP即可獲得3枚咚小判",
+ "chineseTFontType":1,
+ "koreanText":"※10FP 모을 때마다 동 전 3장을 획득할 수 있습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_skrexh",
+ "japaneseText":"SAKURA EXHAUST",
+ "japaneseFontType":0,
+ "englishUsText":"SAKURA EXHAUST",
+ "englishUsFontType":0,
+ "chineseTText":"SAKURA EXHAUST",
+ "chineseTFontType":0,
+ "koreanText":"SAKURA EXHAUST",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_blrose",
+ "japaneseText":"Blue Rose Ruin",
+ "japaneseFontType":0,
+ "englishUsText":"Blue Rose Ruin",
+ "englishUsFontType":0,
+ "chineseTText":"Blue Rose Ruin",
+ "chineseTFontType":0,
+ "koreanText":"Blue Rose Ruin",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_haryu",
+ "japaneseText":"春竜 ~Haryu~",
+ "japaneseFontType":0,
+ "englishUsText":"春竜 ~Haryu~",
+ "englishUsFontType":0,
+ "chineseTText":"春竜 ~Haryu~",
+ "chineseTFontType":0,
+ "koreanText":"春竜 ~Haryu~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_clspvn",
+ "japaneseText":"亡き王女のためのパヴァーヌ",
+ "japaneseFontType":0,
+ "englishUsText":"亡き王女のためのパヴァーヌ",
+ "englishUsFontType":0,
+ "chineseTText":"亡き王女のためのパヴァーヌ",
+ "chineseTFontType":0,
+ "koreanText":"亡き王女のためのパヴァーヌ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_tank",
+ "japaneseText":"やわらか戦車",
+ "japaneseFontType":0,
+ "englishUsText":"やわらか戦車",
+ "englishUsFontType":0,
+ "chineseTText":"やわらか戦車",
+ "chineseTFontType":0,
+ "koreanText":"やわらか戦車",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_tdm",
+ "japaneseText":"Taiko Drum Monster",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Drum Monster",
+ "englishUsFontType":0,
+ "chineseTText":"Taiko Drum Monster",
+ "chineseTFontType":0,
+ "koreanText":"Taiko Drum Monster",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_clspvn",
+ "japaneseText":"~きみのこどう~",
+ "japaneseFontType":0,
+ "englishUsText":"~きみのこどう~",
+ "englishUsFontType":0,
+ "chineseTText":"~きみのこどう~",
+ "chineseTFontType":0,
+ "koreanText":"~きみのこどう~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_tdm",
+ "japaneseText":"steμ feat.siroa",
+ "japaneseFontType":0,
+ "englishUsText":"steμ feat.siroa",
+ "englishUsFontType":0,
+ "chineseTText":"steμ feat.siroa",
+ "chineseTFontType":0,
+ "koreanText":"steμ feat.siroa",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_skrexh",
+ "japaneseText":"SAKURA\nEXHAUST",
+ "japaneseFontType":0,
+ "englishUsText":"SAKURA\nEXHAUST",
+ "englishUsFontType":0,
+ "chineseTText":"SAKURA\nEXHAUST",
+ "chineseTFontType":0,
+ "koreanText":"SAKURA\nEXHAUST",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_blrose",
+ "japaneseText":"Blue Rose\nRuin",
+ "japaneseFontType":0,
+ "englishUsText":"Blue Rose\nRuin",
+ "englishUsFontType":0,
+ "chineseTText":"Blue Rose\nRuin",
+ "chineseTFontType":0,
+ "koreanText":"Blue Rose\nRuin",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_haryu",
+ "japaneseText":"春竜 ~Haryu~",
+ "japaneseFontType":0,
+ "englishUsText":"春竜 ~Haryu~",
+ "englishUsFontType":0,
+ "chineseTText":"春竜 ~Haryu~",
+ "chineseTFontType":0,
+ "koreanText":"春竜 ~Haryu~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_clspvn",
+ "japaneseText":"亡き王女のための\nパヴァーヌ",
+ "japaneseFontType":0,
+ "englishUsText":"亡き王女のための\nパヴァーヌ",
+ "englishUsFontType":0,
+ "chineseTText":"亡き王女のための\nパヴァーヌ",
+ "chineseTFontType":0,
+ "koreanText":"亡き王女のための\nパヴァーヌ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_tank",
+ "japaneseText":"やわらか戦車",
+ "japaneseFontType":0,
+ "englishUsText":"やわらか戦車",
+ "englishUsFontType":0,
+ "chineseTText":"やわらか戦車",
+ "chineseTFontType":0,
+ "koreanText":"やわらか戦車",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_tdm",
+ "japaneseText":"Taiko Drum\nMonster",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Drum\nMonster",
+ "englishUsFontType":0,
+ "chineseTText":"Taiko Drum\nMonster",
+ "chineseTFontType":0,
+ "koreanText":"Taiko Drum\nMonster",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_skrexh",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_blrose",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_haryu",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"春龍 ~Haryu~",
+ "chineseTFontType":1,
+ "koreanText":"하류 ~Haryu~",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_clspvn",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Pavane For A Dead Princess",
+ "englishUsFontType":0,
+ "chineseTText":"悼念公主的帕凡舞曲",
+ "chineseTFontType":1,
+ "koreanText":"죽은 왕녀를 위한 파반느",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_tank",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Yawaraka Tank",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"야와라카 센샤",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_tdm",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_skrexh",
+ "japaneseText":"「SAKURA EXHAUST」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SAKURA EXHAUST」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「SAKURA EXHAUST」",
+ "chineseTFontType":1,
+ "koreanText":"「SAKURA EXHAUST」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_blrose",
+ "japaneseText":"「Blue Rose Ruin」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Blue Rose Ruin」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Blue Rose Ruin」",
+ "chineseTFontType":1,
+ "koreanText":"「Blue Rose Ruin」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_haryu",
+ "japaneseText":"「春竜 ~Haryu~」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「春竜 ~Haryu~」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「春龍 ~Haryu~」",
+ "chineseTFontType":1,
+ "koreanText":"「하류 ~Haryu~」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_clspvn",
+ "japaneseText":"「亡き王女のためのパヴァーヌ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Pavane For A Dead Princess」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「悼念公主的帕凡舞曲」",
+ "chineseTFontType":1,
+ "koreanText":"「죽은 왕녀를 위한 파반느」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_tank",
+ "japaneseText":"「やわらか戦車」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Yawaraka Tank」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「やわらか戦車」",
+ "chineseTFontType":1,
+ "koreanText":"「야와라카 센샤」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_tdm",
+ "japaneseText":"「Taiko Drum Monster」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Taiko Drum Monster」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Taiko Drum Monster」",
+ "chineseTFontType":1,
+ "koreanText":"「Taiko Drum Monster」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_skrexh",
+ "japaneseText":"「SAKURA EXHAUST」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SAKURA EXHAUST」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「SAKURA EXHAUST」",
+ "chineseTFontType":1,
+ "koreanText":"「SAKURA EXHAUST」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_blrose",
+ "japaneseText":"「Blue Rose Ruin」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Blue Rose Ruin」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Blue Rose Ruin」",
+ "chineseTFontType":1,
+ "koreanText":"「Blue Rose Ruin」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_haryu",
+ "japaneseText":"「春竜 ~Haryu~」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「春竜 ~Haryu~」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「春龍 ~Haryu~」",
+ "chineseTFontType":1,
+ "koreanText":"「하류 ~Haryu~」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_clspvn",
+ "japaneseText":"「亡き王女のためのパヴァーヌ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Pavane For A Dead Princess」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「悼念公主的帕凡舞曲」",
+ "chineseTFontType":1,
+ "koreanText":"「죽은 왕녀를 위한 파반느」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_tank",
+ "japaneseText":"「やわらか戦車」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Yawaraka Tank」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「やわらか戦車」",
+ "chineseTFontType":1,
+ "koreanText":"「야와라카 센샤」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_tdm",
+ "japaneseText":"「Taiko Drum Monster」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Taiko Drum Monster」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Taiko Drum Monster」",
+ "chineseTFontType":1,
+ "koreanText":"「Taiko Drum Monster」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_flksak",
+ "japaneseText":"さくら(春)",
+ "japaneseFontType":0,
+ "englishUsText":"さくら(春)",
+ "englishUsFontType":0,
+ "chineseTText":"さくら(春)",
+ "chineseTFontType":0,
+ "koreanText":"さくら(春)",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_flksak",
+ "japaneseText":"さくら(春)",
+ "japaneseFontType":0,
+ "englishUsText":"さくら(春)",
+ "englishUsFontType":0,
+ "chineseTText":"さくら(春)",
+ "chineseTFontType":0,
+ "koreanText":"さくら(春)",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_flksak",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"SAKURA(HARU)",
+ "englishUsFontType":0,
+ "chineseTText":"櫻花(春)",
+ "chineseTFontType":1,
+ "koreanText":"사쿠라 (하루)",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_sakuramaturi",
+ "japaneseText":"いちご大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ Strawberry",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡草莓",
+ "chineseTFontType":1,
+ "koreanText":"딸기 최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_flksak",
+ "japaneseText":"「さくら(春)」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SAKURA(HARU)」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「櫻花(春)」",
+ "chineseTFontType":1,
+ "koreanText":"「사쿠라 (하루)」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_sakuramaturi",
+ "japaneseText":"春祭りはじめました",
+ "japaneseFontType":0,
+ "englishUsText":"Spring Festival is here!",
+ "englishUsFontType":0,
+ "chineseTText":"開始遊玩春季祭典",
+ "chineseTFontType":1,
+ "koreanText":"봄 축제 시작했습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_sakuramaturiex",
+ "japaneseText":"春祭りの達人",
+ "japaneseFontType":0,
+ "englishUsText":"Spring Festival Master",
+ "englishUsFontType":0,
+ "chineseTText":"春季祭典達人",
+ "chineseTFontType":1,
+ "koreanText":"봄 축제의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_flksak",
+ "japaneseText":"「さくら(春)」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SAKURA(HARU)」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「櫻花(春)」",
+ "chineseTFontType":1,
+ "koreanText":"「사쿠라 (하루)」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_ichigo",
+ "japaneseText":"いちご",
+ "japaneseFontType":0,
+ "englishUsText":"Strawberry",
+ "englishUsFontType":0,
+ "chineseTText":"草莓",
+ "chineseTFontType":1,
+ "koreanText":"딸기",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_gekikk",
+ "japaneseText":"HARDCOREノ心得",
+ "japaneseFontType":0,
+ "englishUsText":"HARDCOREノ心得",
+ "englishUsFontType":0,
+ "chineseTText":"HARDCOREノ心得",
+ "chineseTFontType":0,
+ "koreanText":"HARDCOREノ心得",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_oka47",
+ "japaneseText":"クルクルクロックル",
+ "japaneseFontType":0,
+ "englishUsText":"クルクルクロックル",
+ "englishUsFontType":0,
+ "chineseTText":"クルクルクロックル",
+ "chineseTFontType":0,
+ "koreanText":"クルクルクロックル",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_castle",
+ "japaneseText":"Black Rose Apostle",
+ "japaneseFontType":0,
+ "englishUsText":"Black Rose Apostle",
+ "englishUsFontType":0,
+ "chineseTText":"Black Rose Apostle",
+ "chineseTFontType":0,
+ "koreanText":"Black Rose Apostle",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_thncrd",
+ "japaneseText":"ネクロファンタジア ~ Arr.Demetori",
+ "japaneseFontType":0,
+ "englishUsText":"ネクロファンタジア ~ Arr.Demetori",
+ "englishUsFontType":0,
+ "chineseTText":"ネクロファンタジア ~ Arr.Demetori",
+ "chineseTFontType":0,
+ "koreanText":"ネクロファンタジア ~ Arr.Demetori",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_syclsn",
+ "japaneseText":"New World",
+ "japaneseFontType":0,
+ "englishUsText":"New World",
+ "englishUsFontType":0,
+ "chineseTText":"New World",
+ "chineseTFontType":0,
+ "koreanText":"New World",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_gekikk",
+ "japaneseText":"DJ Myosuke",
+ "japaneseFontType":0,
+ "englishUsText":"DJ Myosuke",
+ "englishUsFontType":0,
+ "chineseTText":"DJ Myosuke",
+ "chineseTFontType":0,
+ "koreanText":"DJ Myosuke",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_syclsn",
+ "japaneseText":"「シンクロニカ」より",
+ "japaneseFontType":0,
+ "englishUsText":"「シンクロニカ」より",
+ "englishUsFontType":0,
+ "chineseTText":"「シンクロニカ」より",
+ "chineseTFontType":0,
+ "koreanText":"「シンクロニカ」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_gekikk",
+ "japaneseText":"HARDCOREノ心得",
+ "japaneseFontType":0,
+ "englishUsText":"HARDCOREノ心得",
+ "englishUsFontType":0,
+ "chineseTText":"HARDCOREノ心得",
+ "chineseTFontType":0,
+ "koreanText":"HARDCOREノ心得",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_oka47",
+ "japaneseText":"クルクルクロックル",
+ "japaneseFontType":0,
+ "englishUsText":"クルクルクロックル",
+ "englishUsFontType":0,
+ "chineseTText":"クルクルクロックル",
+ "chineseTFontType":0,
+ "koreanText":"クルクルクロックル",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_castle",
+ "japaneseText":"Black Rose\nApostle",
+ "japaneseFontType":0,
+ "englishUsText":"Black Rose\nApostle",
+ "englishUsFontType":0,
+ "chineseTText":"Black Rose\nApostle",
+ "chineseTFontType":0,
+ "koreanText":"Black Rose\nApostle",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_thncrd",
+ "japaneseText":"ネクロファンタジア\n~ Arr.Demetori",
+ "japaneseFontType":0,
+ "englishUsText":"ネクロファンタジア\n~ Arr.Demetori",
+ "englishUsFontType":0,
+ "chineseTText":"ネクロファンタジア\n~ Arr.Demetori",
+ "chineseTFontType":0,
+ "koreanText":"ネクロファンタジア\n~ Arr.Demetori",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_syclsn",
+ "japaneseText":"New World",
+ "japaneseFontType":0,
+ "englishUsText":"New World",
+ "englishUsFontType":0,
+ "chineseTText":"New World",
+ "chineseTFontType":0,
+ "koreanText":"New World",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_gekikk",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"HARDCORE NO KOKOROE",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"HARDCORE 노 코코로에",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_oka47",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"KURU KURU KUROKKURU",
+ "englishUsFontType":0,
+ "chineseTText":"KURU KURU KUROKKURU",
+ "chineseTFontType":1,
+ "koreanText":"쿠루쿠루 크록쿠루",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_castle",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_thncrd",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Necro Fantasia ~ Arr.Demetori",
+ "englishUsFontType":0,
+ "chineseTText":"Necro Fantasia ~ Arr.Demetori",
+ "chineseTFontType":1,
+ "koreanText":"Necro Fantasia ~ Arr.Demetori",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_syclsn",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gekikk",
+ "japaneseText":"「HARDCOREノ心得」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HARDCORE NO KOKOROE」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「HARDCOREノ心得」",
+ "chineseTFontType":1,
+ "koreanText":"「HARDCORE 노 코코로에」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_oka47",
+ "japaneseText":"「クルクルクロックル」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「KURU KURU KUROKKURU」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「KURU KURU KUROKKURU」",
+ "chineseTFontType":1,
+ "koreanText":"「쿠루쿠루 크록쿠루」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_castle",
+ "japaneseText":"「Black Rose Apostle」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Black Rose Apostle」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Black Rose Apostle」",
+ "chineseTFontType":1,
+ "koreanText":"「Black Rose Apostle」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_thncrd",
+ "japaneseText":"「ネクロファンタジア ~ Arr.Demetori」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Necro Fantasia ~ Arr.Demetori」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Necro Fantasia ~ Arr.Demetori」",
+ "chineseTFontType":1,
+ "koreanText":"「Necro Fantasia ~ Arr.Demetori」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_syclsn",
+ "japaneseText":"「New World」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「New World」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「New World」",
+ "chineseTFontType":1,
+ "koreanText":"「New World」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gekikk",
+ "japaneseText":"「HARDCOREノ心得」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HARDCORE NO KOKOROE」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「HARDCOREノ心得」",
+ "chineseTFontType":1,
+ "koreanText":"「HARDCORE 노 코코로에」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_oka47",
+ "japaneseText":"「クルクルクロックル」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「KURU KURU KUROKKURU」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「KURU KURU KUROKKURU」",
+ "chineseTFontType":1,
+ "koreanText":"「쿠루쿠루 크록쿠루」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_castle",
+ "japaneseText":"「Black Rose Apostle」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Black Rose Apostle」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Black Rose Apostle」",
+ "chineseTFontType":1,
+ "koreanText":"「Black Rose Apostle」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_thncrd",
+ "japaneseText":"「ネクロファンタジア ~ Arr.Demetori」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Necro Fantasia ~ Arr.Demetori」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Necro Fantasia ~ Arr.Demetori」",
+ "chineseTFontType":1,
+ "koreanText":"「Necro Fantasia ~ Arr.Demetori」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_syclsn",
+ "japaneseText":"「New World」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「New World」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「New World」",
+ "chineseTFontType":1,
+ "koreanText":"「New World」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_thncrd",
+ "japaneseText":"東方Projectアレンジ Demetori",
+ "japaneseFontType":0,
+ "englishUsText":"東方Projectアレンジ Demetori",
+ "englishUsFontType":0,
+ "chineseTText":"東方Projectアレンジ Demetori",
+ "chineseTFontType":0,
+ "koreanText":"東方Projectアレンジ Demetori",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_cs4op",
+ "japaneseText":"おはよう!太鼓サマー",
+ "japaneseFontType":0,
+ "englishUsText":"おはよう!太鼓サマー",
+ "englishUsFontType":0,
+ "chineseTText":"おはよう!太鼓サマー",
+ "chineseTFontType":0,
+ "koreanText":"おはよう!太鼓サマー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_saoop",
+ "japaneseText":"crossing field",
+ "japaneseFontType":0,
+ "englishUsText":"crossing field",
+ "englishUsFontType":0,
+ "chineseTText":"crossing field",
+ "chineseTFontType":0,
+ "koreanText":"crossing field",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_clssum",
+ "japaneseText":"弩蚊怒夏",
+ "japaneseFontType":0,
+ "englishUsText":"弩蚊怒夏",
+ "englishUsFontType":0,
+ "chineseTText":"弩蚊怒夏",
+ "chineseTFontType":0,
+ "koreanText":"弩蚊怒夏",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_amatrs",
+ "japaneseText":"天照",
+ "japaneseFontType":0,
+ "englishUsText":"天照",
+ "englishUsFontType":0,
+ "chineseTText":"天照",
+ "chineseTFontType":0,
+ "koreanText":"天照",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ksrain",
+ "japaneseText":"喫茶レイン",
+ "japaneseFontType":0,
+ "englishUsText":"喫茶レイン",
+ "englishUsFontType":0,
+ "chineseTText":"喫茶レイン",
+ "chineseTFontType":0,
+ "koreanText":"喫茶レイン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_karyu",
+ "japaneseText":"夏竜 ~Karyu~",
+ "japaneseFontType":0,
+ "englishUsText":"夏竜 ~Karyu~",
+ "englishUsFontType":0,
+ "chineseTText":"夏竜 ~Karyu~",
+ "chineseTFontType":0,
+ "koreanText":"夏竜 ~Karyu~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_saoop",
+ "japaneseText":"「ソードアート・オンライン」より",
+ "japaneseFontType":0,
+ "englishUsText":"「ソードアート・オンライン」より",
+ "englishUsFontType":0,
+ "chineseTText":"「ソードアート・オンライン」より",
+ "chineseTFontType":0,
+ "koreanText":"「ソードアート・オンライン」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_amatrs",
+ "japaneseText":"Tatsh a.k.a 世阿弥",
+ "japaneseFontType":0,
+ "englishUsText":"Tatsh a.k.a 世阿弥",
+ "englishUsFontType":0,
+ "chineseTText":"Tatsh a.k.a 世阿弥",
+ "chineseTFontType":0,
+ "koreanText":"Tatsh a.k.a 世阿弥",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_cs4op",
+ "japaneseText":"おはよう!太鼓サマー",
+ "japaneseFontType":0,
+ "englishUsText":"おはよう!太鼓サマー",
+ "englishUsFontType":0,
+ "chineseTText":"おはよう!太鼓サマー",
+ "chineseTFontType":0,
+ "koreanText":"おはよう!太鼓サマー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_saoop",
+ "japaneseText":"crossing\nfield",
+ "japaneseFontType":0,
+ "englishUsText":"crossing\nfield",
+ "englishUsFontType":0,
+ "chineseTText":"crossing\nfield",
+ "chineseTFontType":0,
+ "koreanText":"crossing\nfield",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_clssum",
+ "japaneseText":"弩蚊怒夏",
+ "japaneseFontType":0,
+ "englishUsText":"弩蚊怒夏",
+ "englishUsFontType":0,
+ "chineseTText":"弩蚊怒夏",
+ "chineseTFontType":0,
+ "koreanText":"弩蚊怒夏",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_amatrs",
+ "japaneseText":"天照",
+ "japaneseFontType":0,
+ "englishUsText":"天照",
+ "englishUsFontType":0,
+ "chineseTText":"天照",
+ "chineseTFontType":0,
+ "koreanText":"天照",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_ksrain",
+ "japaneseText":"喫茶レイン",
+ "japaneseFontType":0,
+ "englishUsText":"喫茶レイン",
+ "englishUsFontType":0,
+ "chineseTText":"喫茶レイン",
+ "chineseTFontType":0,
+ "koreanText":"喫茶レイン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_karyu",
+ "japaneseText":"夏竜 ~Karyu~",
+ "japaneseFontType":0,
+ "englishUsText":"夏竜 ~Karyu~",
+ "englishUsFontType":0,
+ "chineseTText":"夏竜 ~Karyu~",
+ "chineseTFontType":0,
+ "koreanText":"夏竜 ~Karyu~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_cs4op",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"OHAYO! TAIKO SUMMER",
+ "englishUsFontType":0,
+ "chineseTText":"早安!太鼓夏日",
+ "chineseTFontType":1,
+ "koreanText":"안녕! 태고 서머",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_saoop",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_clssum",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"DOKA DOKA",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"도카도카",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_amatrs",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"AMATERASU",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"아마테라스",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ksrain",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"KISSA Rain",
+ "englishUsFontType":0,
+ "chineseTText":"紅茶店「雨天」",
+ "chineseTFontType":1,
+ "koreanText":"킷사 레인",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_karyu",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"夏龍 ~Karyu~",
+ "chineseTFontType":1,
+ "koreanText":"카류 ~Karyu~",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_cs4op",
+ "japaneseText":"「おはよう!太鼓サマー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「OHAYO! TAIKO SUMMER」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「早安!太鼓夏日」",
+ "chineseTFontType":1,
+ "koreanText":"「안녕! 태고 서머」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_saoop",
+ "japaneseText":"「crossing field」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「crossing field」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「crossing field」",
+ "chineseTFontType":1,
+ "koreanText":"「crossing field」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_clssum",
+ "japaneseText":"「弩蚊怒夏」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「DOKA DOKA」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「弩蚊怒夏」",
+ "chineseTFontType":1,
+ "koreanText":"「도카도카」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_amatrs",
+ "japaneseText":"「天照」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「AMATERASU」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「天照」",
+ "chineseTFontType":1,
+ "koreanText":"「아마테라스」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_ksrain",
+ "japaneseText":"「喫茶レイン」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「KISSA Rain」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「紅茶店「雨天」」",
+ "chineseTFontType":1,
+ "koreanText":"「킷사 레인」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_karyu",
+ "japaneseText":"「夏竜 ~Karyu~」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「夏竜 ~Karyu~」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「夏龍 ~Karyu~」",
+ "chineseTFontType":1,
+ "koreanText":"「카류 ~Karyu~」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_cs4op",
+ "japaneseText":"「おはよう!太鼓サマー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「OHAYO! TAIKO SUMMER」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「早安!太鼓夏日」",
+ "chineseTFontType":1,
+ "koreanText":"「안녕! 태고 서머」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_saoop",
+ "japaneseText":"「crossing field」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「crossing field」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「crossing field」",
+ "chineseTFontType":1,
+ "koreanText":"「crossing field」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_clssum",
+ "japaneseText":"「弩蚊怒夏」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「DOKA DOKA」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「弩蚊怒夏」",
+ "chineseTFontType":1,
+ "koreanText":"「도카도카」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_amatrs",
+ "japaneseText":"「天照」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「AMATERASU」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「天照」",
+ "chineseTFontType":1,
+ "koreanText":"「아마테라스」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_ksrain",
+ "japaneseText":"「喫茶レイン」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「KISSA Rain」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「紅茶店「雨天」」",
+ "chineseTFontType":1,
+ "koreanText":"「킷사 레인」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_karyu",
+ "japaneseText":"「夏竜 ~Karyu~」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「夏竜 ~Karyu~」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「夏龍 ~Karyu~」",
+ "chineseTFontType":1,
+ "koreanText":"「카류 ~Karyu~」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_natsu",
+ "japaneseText":"夏フェス",
+ "japaneseFontType":0,
+ "englishUsText":"Summer Festival",
+ "englishUsFontType":0,
+ "chineseTText":"夏季節慶",
+ "chineseTFontType":1,
+ "koreanText":"여름 페스티벌",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_natsufes",
+ "japaneseText":"夏フェス大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ Summer Festival",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡夏季節慶",
+ "chineseTFontType":1,
+ "koreanText":"여름 페스티벌 최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_natsufes",
+ "japaneseText":"夏フェスはじめました",
+ "japaneseFontType":0,
+ "englishUsText":"Summer Festival Starts!",
+ "englishUsFontType":0,
+ "chineseTText":"開始遊玩夏季節慶",
+ "chineseTFontType":1,
+ "koreanText":"여름 페스티벌 시작했습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_natsufesex",
+ "japaneseText":"夏フェスの達人",
+ "japaneseFontType":0,
+ "englishUsText":"Summer Festival Tatsujin",
+ "englishUsFontType":0,
+ "chineseTText":"夏季節慶達人",
+ "chineseTFontType":1,
+ "koreanText":"여름 페스티벌의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_natsufes",
+ "japaneseText":"夏フェス",
+ "japaneseFontType":0,
+ "englishUsText":"Summer Festival",
+ "englishUsFontType":0,
+ "chineseTText":"夏季節慶",
+ "chineseTFontType":1,
+ "koreanText":"여름 페스티벌",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sub_cs4op",
+ "japaneseText":"「太鼓の達人 あつまれ!祭りだ!!四代目」テーマソング",
+ "japaneseFontType":0,
+ "englishUsText":"「太鼓の達人 あつまれ!祭りだ!!四代目」テーマソング",
+ "englishUsFontType":0,
+ "chineseTText":"「太鼓の達人 あつまれ!祭りだ!!四代目」テーマソング",
+ "chineseTFontType":0,
+ "koreanText":"「太鼓の達人 あつまれ!祭りだ!!四代目」テーマソング",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kmbaby",
+ "japaneseText":"キルミーのベイベー!",
+ "japaneseFontType":0,
+ "englishUsText":"キルミーのベイベー!",
+ "englishUsFontType":0,
+ "chineseTText":"キルミーのベイベー!",
+ "chineseTFontType":0,
+ "koreanText":"キルミーのベイベー!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_clsbut",
+ "japaneseText":"サーフサイド・サティ",
+ "japaneseFontType":0,
+ "englishUsText":"サーフサイド・サティ",
+ "englishUsFontType":0,
+ "chineseTText":"サーフサイド・サティ",
+ "chineseTFontType":0,
+ "koreanText":"サーフサイド・サティ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_freewy",
+ "japaneseText":"Freeway3234",
+ "japaneseFontType":0,
+ "englishUsText":"Freeway3234",
+ "englishUsFontType":0,
+ "chineseTText":"Freeway3234",
+ "chineseTFontType":0,
+ "koreanText":"Freeway3234",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ignis",
+ "japaneseText":"Ignis Danse",
+ "japaneseFontType":0,
+ "englishUsText":"Ignis Danse",
+ "englishUsFontType":0,
+ "chineseTText":"Ignis Danse",
+ "chineseTFontType":0,
+ "koreanText":"Ignis Danse",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kokoo",
+ "japaneseText":"太鼓侍",
+ "japaneseFontType":0,
+ "englishUsText":"太鼓侍",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓侍",
+ "chineseTFontType":0,
+ "koreanText":"太鼓侍",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_kmbaby",
+ "japaneseText":"「キルミーベイベー」より",
+ "japaneseFontType":0,
+ "englishUsText":"「キルミーベイベー」より",
+ "englishUsFontType":0,
+ "chineseTText":"「キルミーベイベー」より",
+ "chineseTFontType":0,
+ "koreanText":"「キルミーベイベー」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_ignis",
+ "japaneseText":"Yuji Masubuchi「太鼓の達人」より",
+ "japaneseFontType":0,
+ "englishUsText":"Yuji Masubuchi「太鼓の達人」より",
+ "englishUsFontType":0,
+ "chineseTText":"Yuji Masubuchi「太鼓の達人」より",
+ "chineseTFontType":0,
+ "koreanText":"Yuji Masubuchi「太鼓の達人」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_kmbaby",
+ "japaneseText":"キルミーのベイベー!",
+ "japaneseFontType":0,
+ "englishUsText":"キルミーのベイベー!",
+ "englishUsFontType":0,
+ "chineseTText":"キルミーのベイベー!",
+ "chineseTFontType":0,
+ "koreanText":"キルミーのベイベー!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_clsbut",
+ "japaneseText":"サーフサイド・サティ",
+ "japaneseFontType":0,
+ "englishUsText":"サーフサイド・サティ",
+ "englishUsFontType":0,
+ "chineseTText":"サーフサイド・サティ",
+ "chineseTFontType":0,
+ "koreanText":"サーフサイド・サティ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_freewy",
+ "japaneseText":"Freeway3234",
+ "japaneseFontType":0,
+ "englishUsText":"Freeway3234",
+ "englishUsFontType":0,
+ "chineseTText":"Freeway3234",
+ "chineseTFontType":0,
+ "koreanText":"Freeway3234",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_ignis",
+ "japaneseText":"Ignis Danse",
+ "japaneseFontType":0,
+ "englishUsText":"Ignis Danse",
+ "englishUsFontType":0,
+ "chineseTText":"Ignis Danse",
+ "chineseTFontType":0,
+ "koreanText":"Ignis Danse",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_kokoo",
+ "japaneseText":"太鼓侍",
+ "japaneseFontType":0,
+ "englishUsText":"太鼓侍",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓侍",
+ "chineseTFontType":0,
+ "koreanText":"太鼓侍",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_kmbaby",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Baby, please kill me!",
+ "englishUsFontType":0,
+ "chineseTText":"Baby, please kill me!",
+ "chineseTFontType":1,
+ "koreanText":"Baby, please kill me!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_clsbut",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Surfside Satie",
+ "englishUsFontType":0,
+ "chineseTText":"Surfside Satie",
+ "chineseTFontType":1,
+ "koreanText":"서프사이드 사티",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_freewy",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ignis",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kokoo",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"TAIKO ZAMURAI",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"타이코 자무라이",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_kmbaby",
+ "japaneseText":"「キルミーのベイベー!」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Baby, please kill me!」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Baby, please kill me!」",
+ "chineseTFontType":1,
+ "koreanText":"「Baby, please kill me!」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_clsbut",
+ "japaneseText":"「サーフサイド・サティ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Surfside Satie」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Surfside Satie」",
+ "chineseTFontType":1,
+ "koreanText":"「서프사이드 사티」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_freewy",
+ "japaneseText":"「Freeway3234」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Freeway3234」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Freeway3234」",
+ "chineseTFontType":1,
+ "koreanText":"「Freeway3234」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_ignis",
+ "japaneseText":"「Ignis Danse」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Ignis Danse」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Ignis Danse」",
+ "chineseTFontType":1,
+ "koreanText":"「Ignis Danse」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_kokoo",
+ "japaneseText":"「太鼓侍」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「TAIKO ZAMURAI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「太鼓侍」",
+ "chineseTFontType":1,
+ "koreanText":"「타이코 자무라이」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_kmbaby",
+ "japaneseText":"「キルミーのベイベー!」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Baby, please kill me!」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Baby, please kill me!」",
+ "chineseTFontType":1,
+ "koreanText":"「Baby, please kill me!」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_clsbut",
+ "japaneseText":"「サーフサイド・サティ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Surfside Satie」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Surfside Satie」",
+ "chineseTFontType":1,
+ "koreanText":"「서프사이드 사티」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_freewy",
+ "japaneseText":"「Freeway3234」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Freeway3234」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Freeway3234」",
+ "chineseTFontType":1,
+ "koreanText":"「Freeway3234」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_ignis",
+ "japaneseText":"「Ignis Danse」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Ignis Danse」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Ignis Danse」",
+ "chineseTFontType":1,
+ "koreanText":"「Ignis Danse」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_kokoo",
+ "japaneseText":"「太鼓侍」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「TAIKO ZAMURAI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「太鼓侍」",
+ "chineseTFontType":1,
+ "koreanText":"「타이코 자무라이」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_tkym2",
+ "japaneseText":"崩冠の紅月",
+ "japaneseFontType":0,
+ "englishUsText":"崩冠の紅月",
+ "englishUsFontType":0,
+ "chineseTText":"崩冠の紅月",
+ "chineseTFontType":0,
+ "koreanText":"崩冠の紅月",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_madmag",
+ "japaneseText":"コネクト",
+ "japaneseFontType":0,
+ "englishUsText":"コネクト",
+ "englishUsFontType":0,
+ "chineseTText":"コネクト",
+ "chineseTFontType":0,
+ "koreanText":"コネクト",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_jouzai",
+ "japaneseText":"愛と浄罪の森",
+ "japaneseFontType":0,
+ "englishUsText":"愛と浄罪の森",
+ "englishUsFontType":0,
+ "chineseTText":"愛と浄罪の森",
+ "chineseTFontType":0,
+ "koreanText":"愛と浄罪の森",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_whrose",
+ "japaneseText":"White Rose Insanity",
+ "japaneseFontType":0,
+ "englishUsText":"White Rose Insanity",
+ "englishUsFontType":0,
+ "chineseTText":"White Rose Insanity",
+ "chineseTFontType":0,
+ "koreanText":"White Rose Insanity",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_siuryu",
+ "japaneseText":"秋竜 ~Shiuryu~",
+ "japaneseFontType":0,
+ "englishUsText":"秋竜 ~Shiuryu~",
+ "englishUsFontType":0,
+ "chineseTText":"秋竜 ~Shiuryu~",
+ "chineseTFontType":0,
+ "koreanText":"秋竜 ~Shiuryu~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_tokkyo",
+ "japaneseText":"東京特許キョ許可局局長!!",
+ "japaneseFontType":0,
+ "englishUsText":"東京特許キョ許可局局長!!",
+ "englishUsFontType":0,
+ "chineseTText":"東京特許キョ許可局局長!!",
+ "chineseTFontType":0,
+ "koreanText":"東京特許キョ許可局局長!!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_keion",
+ "japaneseText":"Don’t say ”lazy”",
+ "japaneseFontType":0,
+ "englishUsText":"Don’t say ”lazy”",
+ "englishUsFontType":0,
+ "chineseTText":"Don’t say ”lazy”",
+ "chineseTFontType":0,
+ "koreanText":"Don’t say ”lazy”",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_doomn",
+ "japaneseText":"Doom Noiz",
+ "japaneseFontType":0,
+ "englishUsText":"Doom Noiz",
+ "englishUsFontType":0,
+ "chineseTText":"Doom Noiz",
+ "chineseTFontType":0,
+ "koreanText":"Doom Noiz",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_pprose",
+ "japaneseText":"Purple Rose Fusion",
+ "japaneseFontType":0,
+ "englishUsText":"Purple Rose Fusion",
+ "englishUsFontType":0,
+ "chineseTText":"Purple Rose Fusion",
+ "chineseTFontType":0,
+ "koreanText":"Purple Rose Fusion",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ryogen",
+ "japaneseText":"燎原ノ舞",
+ "japaneseFontType":0,
+ "englishUsText":"燎原ノ舞",
+ "englishUsFontType":0,
+ "chineseTText":"燎原ノ舞",
+ "chineseTFontType":0,
+ "koreanText":"燎原ノ舞",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_furyu",
+ "japaneseText":"冬竜 ~Toryu~",
+ "japaneseFontType":0,
+ "englishUsText":"冬竜 ~Toryu~",
+ "englishUsFontType":0,
+ "chineseTText":"冬竜 ~Toryu~",
+ "chineseTFontType":0,
+ "koreanText":"冬竜 ~Toryu~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_tkym2",
+ "japaneseText":"破章「嘆きの姫」",
+ "japaneseFontType":0,
+ "englishUsText":"破章「嘆きの姫」",
+ "englishUsFontType":0,
+ "chineseTText":"破章「嘆きの姫」",
+ "chineseTFontType":0,
+ "koreanText":"破章「嘆きの姫」",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_madmag",
+ "japaneseText":"「魔法少女まどか☆マギカ」より",
+ "japaneseFontType":0,
+ "englishUsText":"「魔法少女まどか☆マギカ」より",
+ "englishUsFontType":0,
+ "chineseTText":"「魔法少女まどか☆マギカ」より",
+ "chineseTFontType":0,
+ "koreanText":"「魔法少女まどか☆マギカ」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_keion",
+ "japaneseText":"「けいおん!」より",
+ "japaneseFontType":0,
+ "englishUsText":"「けいおん!」より",
+ "englishUsFontType":0,
+ "chineseTText":"「けいおん!」より",
+ "chineseTFontType":0,
+ "koreanText":"「けいおん!」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_doomn",
+ "japaneseText":"「ギャラガレギオンズ」より",
+ "japaneseFontType":0,
+ "englishUsText":"「ギャラガレギオンズ」より",
+ "englishUsFontType":0,
+ "chineseTText":"「ギャラガレギオンズ」より",
+ "chineseTFontType":0,
+ "koreanText":"「ギャラガレギオンズ」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_tkym2",
+ "japaneseText":"崩冠の紅月",
+ "japaneseFontType":0,
+ "englishUsText":"崩冠の紅月",
+ "englishUsFontType":0,
+ "chineseTText":"崩冠の紅月",
+ "chineseTFontType":0,
+ "koreanText":"崩冠の紅月",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_madmag",
+ "japaneseText":"コネクト",
+ "japaneseFontType":0,
+ "englishUsText":"コネクト",
+ "englishUsFontType":0,
+ "chineseTText":"コネクト",
+ "chineseTFontType":0,
+ "koreanText":"コネクト",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_jouzai",
+ "japaneseText":"愛と浄罪の森",
+ "japaneseFontType":0,
+ "englishUsText":"愛と浄罪の森",
+ "englishUsFontType":0,
+ "chineseTText":"愛と浄罪の森",
+ "chineseTFontType":0,
+ "koreanText":"愛と浄罪の森",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_whrose",
+ "japaneseText":"White Rose\nInsanity",
+ "japaneseFontType":0,
+ "englishUsText":"White Rose\nInsanity",
+ "englishUsFontType":0,
+ "chineseTText":"White Rose\nInsanity",
+ "chineseTFontType":0,
+ "koreanText":"White Rose\nInsanity",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_siuryu",
+ "japaneseText":"秋竜 ~Shiuryu~",
+ "japaneseFontType":0,
+ "englishUsText":"秋竜 ~Shiuryu~",
+ "englishUsFontType":0,
+ "chineseTText":"秋竜 ~Shiuryu~",
+ "chineseTFontType":0,
+ "koreanText":"秋竜 ~Shiuryu~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_tokkyo",
+ "japaneseText":"東京特許キョ許可局局長!!",
+ "japaneseFontType":0,
+ "englishUsText":"東京特許キョ許可局局長!!",
+ "englishUsFontType":0,
+ "chineseTText":"東京特許キョ許可局局長!!",
+ "chineseTFontType":0,
+ "koreanText":"東京特許キョ許可局局長!!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_keion",
+ "japaneseText":"Don’t say\n”lazy”",
+ "japaneseFontType":0,
+ "englishUsText":"Don’t say\n”lazy”",
+ "englishUsFontType":0,
+ "chineseTText":"Don’t say\n”lazy”",
+ "chineseTFontType":0,
+ "koreanText":"Don’t say\n”lazy”",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_doomn",
+ "japaneseText":"Doom Noiz",
+ "japaneseFontType":0,
+ "englishUsText":"Doom Noiz",
+ "englishUsFontType":0,
+ "chineseTText":"Doom Noiz",
+ "chineseTFontType":0,
+ "koreanText":"Doom Noiz",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_pprose",
+ "japaneseText":"Purple Rose\nFusion",
+ "japaneseFontType":0,
+ "englishUsText":"Purple Rose\nFusion",
+ "englishUsFontType":0,
+ "chineseTText":"Purple Rose\nFusion",
+ "chineseTFontType":0,
+ "koreanText":"Purple Rose\nFusion",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_ryogen",
+ "japaneseText":"燎原ノ舞",
+ "japaneseFontType":0,
+ "englishUsText":"燎原ノ舞",
+ "englishUsFontType":0,
+ "chineseTText":"燎原ノ舞",
+ "chineseTFontType":0,
+ "koreanText":"燎原ノ舞",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_furyu",
+ "japaneseText":"冬竜 ~Toryu~",
+ "japaneseFontType":0,
+ "englishUsText":"冬竜 ~Toryu~",
+ "englishUsFontType":0,
+ "chineseTText":"冬竜 ~Toryu~",
+ "chineseTFontType":0,
+ "koreanText":"冬竜 ~Toryu~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_tkym2",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"HOUKAN NO KUGETSU",
+ "englishUsFontType":0,
+ "chineseTText":"崩冠之紅月",
+ "chineseTFontType":1,
+ "koreanText":"호우칸노 쿠게츠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_madmag",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"Connect",
+ "englishUsFontType":0,
+ "chineseTText":"Connect",
+ "chineseTFontType":1,
+ "koreanText":"Connect",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_jouzai",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"AI TO JOUZAI NO MORI",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"아이토 죠우자이노 모리",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_whrose",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_siuryu",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"秋龍~Shiuryu~",
+ "chineseTFontType":1,
+ "koreanText":"슈류 ~Shiuryu~",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_tokkyo",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"도쿄 톡쿄 쿄쿄카쿄쿠 쿄쿠쵸!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_keion",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_doomn",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_pprose",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ryogen",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"RYOGEN NO MAI",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"료우겐노 마이",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_furyu",
+ "japaneseText":"",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"冬龍 ~Toryu~",
+ "chineseTFontType":1,
+ "koreanText":"토류 ~Toryu~",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_tkym2",
+ "japaneseText":"「崩冠の紅月」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HOUKAN NO KUGETSU」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「崩冠之紅月」",
+ "chineseTFontType":1,
+ "koreanText":"「호우칸노 쿠게츠」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_madmag",
+ "japaneseText":"「コネクト」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Connect」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Connect」",
+ "chineseTFontType":1,
+ "koreanText":"「Connect」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_jouzai",
+ "japaneseText":"「愛と浄罪の森」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「AI TO JOUZAI NO MORI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「愛と浄罪の森」",
+ "chineseTFontType":1,
+ "koreanText":"「아이토 죠우자이노 모리」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_whrose",
+ "japaneseText":"「White Rose Insanity」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「White Rose Insanity」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「White Rose Insanity」",
+ "chineseTFontType":1,
+ "koreanText":"「White Rose Insanity」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_siuryu",
+ "japaneseText":"「秋竜 ~Shiuryu~」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「秋竜 ~Shiuryu~」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「秋龍~Shiuryu~」",
+ "chineseTFontType":1,
+ "koreanText":"「슈류 ~Shiuryu~」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_tokkyo",
+ "japaneseText":"「東京特許キョ許可局局長!!」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「東京特許キョ許可局局長!!」",
+ "chineseTFontType":1,
+ "koreanText":"「도쿄 톡쿄 쿄쿄카쿄쿠 쿄쿠쵸!!」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_keion",
+ "japaneseText":"「Don’t say ”lazy”」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Don't say \"lazy\"」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Don't say \"lazy\"」",
+ "chineseTFontType":1,
+ "koreanText":"「Don't say \"lazy\"」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_doomn",
+ "japaneseText":"「Doom Noiz」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Doom Noiz」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Doom Noiz」",
+ "chineseTFontType":1,
+ "koreanText":"「Doom Noiz」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_pprose",
+ "japaneseText":"「Purple Rose Fusion」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Purple Rose Fusion」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Purple Rose Fusion」",
+ "chineseTFontType":1,
+ "koreanText":"「Purple Rose Fusion」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_ryogen",
+ "japaneseText":"「燎原ノ舞」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「RYOGEN NO MAI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「燎原ノ舞」",
+ "chineseTFontType":1,
+ "koreanText":"「료우겐노 마이」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_furyu",
+ "japaneseText":"「冬竜 ~Toryu~」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「冬竜 ~Toryu~」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「冬龍 ~Toryu~」",
+ "chineseTFontType":1,
+ "koreanText":"「토류 ~Toryu~」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_tkym2",
+ "japaneseText":"「崩冠の紅月」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HOUKAN NO KUGETSU」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「崩冠之紅月」",
+ "chineseTFontType":1,
+ "koreanText":"「호우칸노 쿠게츠」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_madmag",
+ "japaneseText":"「コネクト」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Connect」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Connect」",
+ "chineseTFontType":1,
+ "koreanText":"「Connect」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_jouzai",
+ "japaneseText":"「愛と浄罪の森」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「AI TO JOUZAI NO MORI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「愛と浄罪の森」",
+ "chineseTFontType":1,
+ "koreanText":"「아이토 죠우자이노 모리」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_whrose",
+ "japaneseText":"「White Rose Insanity」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「White Rose Insanity」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「White Rose Insanity」",
+ "chineseTFontType":1,
+ "koreanText":"「White Rose Insanity」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_siuryu",
+ "japaneseText":"「秋竜 ~Shiuryu~」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「秋竜 ~Shiuryu~」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「秋龍~Shiuryu~」",
+ "chineseTFontType":1,
+ "koreanText":"「슈류 ~Shiuryu~」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_tokkyo",
+ "japaneseText":"「東京特許キョ許可局局長!!」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Tokyo Tokkyo Kyo Kyokakyoku Kyokuchou!!」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「東京特許キョ許可局局長!!」",
+ "chineseTFontType":1,
+ "koreanText":"「도쿄 톡쿄 쿄쿄카쿄쿠 쿄쿠쵸!!」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_keion",
+ "japaneseText":"「Don’t say ”lazy”」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Don't say \"lazy\"」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Don't say \"lazy\"」",
+ "chineseTFontType":1,
+ "koreanText":"「Don't say \"lazy\"」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_doomn",
+ "japaneseText":"「Doom Noiz」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Doom Noiz」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Doom Noiz」",
+ "chineseTFontType":1,
+ "koreanText":"「Doom Noiz」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_pprose",
+ "japaneseText":"「Purple Rose Fusion」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Purple Rose Fusion」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Purple Rose Fusion」",
+ "chineseTFontType":1,
+ "koreanText":"「Purple Rose Fusion」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_ryogen",
+ "japaneseText":"「燎原ノ舞」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「RYOGEN NO MAI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「燎原ノ舞」",
+ "chineseTFontType":1,
+ "koreanText":"「료우겐노 마이」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_furyu",
+ "japaneseText":"「冬竜 ~Toryu~」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「冬竜 ~Toryu~」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「冬龍 ~Toryu~」",
+ "chineseTFontType":1,
+ "koreanText":"「토류 ~Toryu~」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_gekka",
+ "japaneseText":"月下の達人祭",
+ "japaneseFontType":0,
+ "englishUsText":"Moonlit Master Fest",
+ "englishUsFontType":0,
+ "chineseTText":"月下達人祭典",
+ "chineseTFontType":1,
+ "koreanText":"월하의 달인 축제",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gekka",
+ "japaneseText":"お月見大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ Moon",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡賞月",
+ "chineseTFontType":1,
+ "koreanText":"달구경 완전 좋아",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_moon",
+ "japaneseText":"お月さま",
+ "japaneseFontType":0,
+ "englishUsText":"The Moon",
+ "englishUsFontType":0,
+ "chineseTText":"月亮大人",
+ "chineseTFontType":1,
+ "koreanText":"달님",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_katoributa",
+ "japaneseText":"蚊取り豚",
+ "japaneseFontType":0,
+ "englishUsText":"Pig-shaped Mosquito Coil Holder",
+ "englishUsFontType":0,
+ "chineseTText":"蚊香豬",
+ "chineseTFontType":1,
+ "koreanText":"모기향 돼지통",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gekka",
+ "japaneseText":"月下の達人祭はじめました",
+ "japaneseFontType":0,
+ "englishUsText":"Moonlit Master Fest Starts!",
+ "englishUsFontType":0,
+ "chineseTText":"開始遊玩月下達人祭典",
+ "chineseTFontType":1,
+ "koreanText":"월하의 달인 축제 시작했습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gekkaex",
+ "japaneseText":"月下の達人",
+ "japaneseFontType":0,
+ "englishUsText":"Moonlit Master",
+ "englishUsFontType":0,
+ "chineseTText":"月下達人",
+ "chineseTFontType":1,
+ "koreanText":"월하의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"save_version_error",
+ "japaneseText":"セーブデータのバージョンが違います\n最新のアプリケーションに更新してください",
+ "japaneseFontType":0,
+ "englishUsText":"Save data version is different.\nPlease update to latest game version.",
+ "englishUsFontType":0,
+ "chineseTText":"保存資料的版本不一致\n請更新至最新版本",
+ "chineseTFontType":1,
+ "koreanText":"세이브 데이터의 버전이 다릅니다\n최신 애플리케이션으로 갱신해주세요",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack01",
+ "japaneseText":"ドンだーパックVol.1",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.1",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.1",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.1",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack02",
+ "japaneseText":"ドンだーパックVol.2",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.2",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.2",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.2",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack03",
+ "japaneseText":"ドンだーパックVol.3",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.3",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.3",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.3",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack01asia",
+ "japaneseText":"ドンだーパックVol.1",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.1",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.1",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.1",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack02asia",
+ "japaneseText":"ドンだーパックVol.2",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.2",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.2",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.2",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack03asia",
+ "japaneseText":"ドンだーパックVol.3",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.3",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.3",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.3",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack04",
+ "japaneseText":"ドンだーパックVol.4",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.4",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.4",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.4",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack05",
+ "japaneseText":"ドンだーパックVol.5",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.5",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.5",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.5",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack06",
+ "japaneseText":"ドンだーパックVol.6",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.6",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.6",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.6",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack07",
+ "japaneseText":"ドンだーパックVol.7",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.7",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.7",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.7",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack08",
+ "japaneseText":"ドンだーパックVol.8",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.8",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.8",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.8",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack09",
+ "japaneseText":"ドンだーパックVol.9",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.9",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.9",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.9",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack10",
+ "japaneseText":"ドンだーパックVol.10",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.10",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.10",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.10",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack11",
+ "japaneseText":"ドンだーパックVol.11",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.11",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.11",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.11",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack12",
+ "japaneseText":"ドンだーパックVol.12",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.12",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.12",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.12",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack13",
+ "japaneseText":"ドンだーパックVol.13",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.13",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.13",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.13",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack14",
+ "japaneseText":"ドンだーパックVol.14",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.14",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.14",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.14",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack15",
+ "japaneseText":"ドンだーパックVol.15",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.15",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.15",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.15",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack16",
+ "japaneseText":"ドンだーパックVol.16",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.16",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.16",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.16",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack17",
+ "japaneseText":"ドンだーパックVol.17",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.17",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.17",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.17",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack18",
+ "japaneseText":"ドンだーパックVol.18",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.18",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.18",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.18",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_deemopack",
+ "japaneseText":"DEEMOパック",
+ "japaneseFontType":0,
+ "englishUsText":"DEEMO Pack",
+ "englishUsFontType":0,
+ "chineseTText":"DEEMO Pack",
+ "chineseTFontType":1,
+ "koreanText":"DEEMO 팩",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_corocoropack",
+ "japaneseText":"コロコロコミック40周年記念パック",
+ "japaneseFontType":0,
+ "englishUsText":"CoroCoro Comic 40th Anniversary Pack",
+ "englishUsFontType":0,
+ "chineseTText":"CoroCoro Comic 40th Anniversary Pack",
+ "chineseTFontType":1,
+ "koreanText":"코로코로 코믹 40주녁 기념 팩",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_mikupack",
+ "japaneseText":"初音ミクパック",
+ "japaneseFontType":0,
+ "englishUsText":"HATSUNE MIKU Pack",
+ "englishUsFontType":0,
+ "chineseTText":"初音未來 Pack",
+ "chineseTFontType":1,
+ "koreanText":"하츠네 미쿠 팩",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_mikupackasia",
+ "japaneseText":"初音ミクパック",
+ "japaneseFontType":0,
+ "englishUsText":"HATSUNE MIKU Pack",
+ "englishUsFontType":0,
+ "chineseTText":"初音未來 Pack",
+ "chineseTFontType":1,
+ "koreanText":"하츠네 미쿠 팩",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_hitpack01",
+ "japaneseText":"人気曲パックVol.1",
+ "japaneseFontType":0,
+ "englishUsText":"Popular Hits Pack Vol.1",
+ "englishUsFontType":0,
+ "chineseTText":"Popular songs Pack Vol.1",
+ "chineseTFontType":1,
+ "koreanText":"인기곡 팩 Vol.1",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_hitpack01asia",
+ "japaneseText":"人気曲パックVol.1",
+ "japaneseFontType":0,
+ "englishUsText":"Popular Hits Pack Vol.1",
+ "englishUsFontType":0,
+ "chineseTText":"Popular songs Pack Vol.1",
+ "chineseTFontType":1,
+ "koreanText":"인기곡 팩 Vol.1",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_season01",
+ "japaneseText":"ドンだーパック\nVol.1~Vol.6\nセット",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol.1-6 Set",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol 1~6\nSet",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.1~Vol.6\n세트",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_season02",
+ "japaneseText":"ドンだーパック\nVol.7~Vol.12\nセット",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol.7-12 Set",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol 7~12\nSet",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.7~Vol.12\n세트",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_season03",
+ "japaneseText":"ドンだーパック\nVol.13~Vol.18\nセット",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol.13-18 Set",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol 13~18\nSet",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.13~Vol.18\n세트",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_message_attention_01",
+ "japaneseText":"こちらの商品が含まれたセット商品もございます\n重複購入にご注意下さい",
+ "japaneseFontType":0,
+ "englishUsText":"This item is also included in another\nset (sold separately). Please refrain\nfrom making repeated purchases.",
+ "englishUsFontType":0,
+ "chineseTText":"亦有包含此商品的套組\n請您留意勿重複購買",
+ "chineseTFontType":1,
+ "koreanText":"이 상품이 포함된 세트 상품도 있습니다\n중복구매가 되지 않도록 주의하십시오",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_message_attention_02",
+ "japaneseText":"こちらの商品はプロダクトコードで入手可能です\n事前にご確認のうえ、重複購入にご注意ください",
+ "japaneseFontType":0,
+ "englishUsText":"This item is also redeemable with\nproduct code. Please refrain from\nmaking repeated purchases.",
+ "englishUsFontType":0,
+ "chineseTText":"此商品可以使用下載代碼取得\n請您於購買前確認,留意勿重複購買",
+ "chineseTFontType":1,
+ "koreanText":"이 상품은 프로모션 코드로 입수할 수 있습니다\n미리 확인하시고\n중복구매가 되지 않도록 주의하십시오",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_message_attention_03",
+ "japaneseText":"追加DLCパックをそれぞれ購入するよりも\nお得なセットになっています\n特典曲は単品でもご購入出来ます",
+ "japaneseFontType":0,
+ "englishUsText":"This season pass includes all the additional\nDLCs as a set for a discounted price as\ncompared to individual purchases.",
+ "englishUsFontType":0,
+ "chineseTText":"本套組,能購得比個別購買\n追加DLC組合包更優惠的價格。\n亦可單獨購買特典樂曲。",
+ "chineseTFontType":1,
+ "koreanText":"추가 DLC 팩을 개별 구매하는 것보다\n저렴한 세트입니다\n특전곡은 개별 구매도 가능합니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_message_attention_04",
+ "japaneseText":"追加DLCパックをそれぞれ購入するよりも\nお得なセットになっています",
+ "japaneseFontType":0,
+ "englishUsText":"This season pass includes all the additional\nDLCs as a set for a discounted price as\ncompared to individual purchases.",
+ "englishUsFontType":0,
+ "chineseTText":"本套組,能購得比個別購買\n追加DLC組合包更優惠的價格。",
+ "chineseTFontType":1,
+ "koreanText":"추가 DLC 팩을 개별 구매하는 것보다\n저렴한 세트입니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_price_free",
+ "japaneseText":"無料",
+ "japaneseFontType":0,
+ "englishUsText":"Free",
+ "englishUsFontType":0,
+ "chineseTText":"免費",
+ "chineseTFontType":1,
+ "koreanText":"무료",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_price_purchased",
+ "japaneseText":"購入済み",
+ "japaneseFontType":0,
+ "englishUsText":"Purchased",
+ "englishUsFontType":0,
+ "chineseTText":"已購買",
+ "chineseTFontType":1,
+ "koreanText":"구입함",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_filter_guide",
+ "japaneseText":"表示切り替え",
+ "japaneseFontType":0,
+ "englishUsText":"Filter",
+ "englishUsFontType":0,
+ "chineseTText":"切換顯示",
+ "chineseTFontType":1,
+ "koreanText":"표시 전환",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_filter_all",
+ "japaneseText":"すべて",
+ "japaneseFontType":0,
+ "englishUsText":"All",
+ "englishUsFontType":0,
+ "chineseTText":"全部",
+ "chineseTFontType":1,
+ "koreanText":"전부",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_filter_not_purchased",
+ "japaneseText":"未購入のみ",
+ "japaneseFontType":0,
+ "englishUsText":"Available",
+ "englishUsFontType":0,
+ "chineseTText":"僅限未購買",
+ "chineseTFontType":1,
+ "koreanText":"미구입 상품만",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_filter_purchased",
+ "japaneseText":"購入済みのみ",
+ "japaneseFontType":0,
+ "englishUsText":"Purchased",
+ "englishUsFontType":0,
+ "chineseTText":"僅限已購買",
+ "chineseTFontType":1,
+ "koreanText":"구입한 상품만",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_filter_all2",
+ "japaneseText":"すべて表示",
+ "japaneseFontType":0,
+ "englishUsText":"All",
+ "englishUsFontType":0,
+ "chineseTText":"顯示全部",
+ "chineseTFontType":1,
+ "koreanText":"모두 표시",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_filter_not_purchased2",
+ "japaneseText":"未購入のみ表示",
+ "japaneseFontType":0,
+ "englishUsText":"Available",
+ "englishUsFontType":0,
+ "chineseTText":"僅顯示未購買",
+ "chineseTFontType":1,
+ "koreanText":"미구입 상품만 표시",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_filter_purchased2",
+ "japaneseText":"購入済みのみ表示",
+ "japaneseFontType":0,
+ "englishUsText":"Purchased",
+ "englishUsFontType":0,
+ "chineseTText":"僅顯示已購買",
+ "chineseTFontType":1,
+ "koreanText":"구입한 상품만 표시",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_mode_name",
+ "japaneseText":"追加コンテンツ",
+ "japaneseFontType":0,
+ "englishUsText":"DLC",
+ "englishUsFontType":0,
+ "chineseTText":"追加內容",
+ "chineseTFontType":1,
+ "koreanText":"추가 콘텐츠",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_type_single",
+ "japaneseText":"楽曲(単品販売)",
+ "japaneseFontType":0,
+ "englishUsText":"Songs (Individual)",
+ "englishUsFontType":0,
+ "chineseTText":"樂曲(單獨販售)",
+ "chineseTFontType":1,
+ "koreanText":"악곡(개별 판매)",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_type_pass",
+ "japaneseText":"シーズンパス",
+ "japaneseFontType":0,
+ "englishUsText":"Season Pass",
+ "englishUsFontType":0,
+ "chineseTText":"季票",
+ "chineseTFontType":1,
+ "koreanText":"시즌 패스",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_bonus_song",
+ "japaneseText":"特典曲",
+ "japaneseFontType":0,
+ "englishUsText":"Bonus Songs",
+ "englishUsFontType":0,
+ "chineseTText":"特典樂曲",
+ "chineseTFontType":1,
+ "koreanText":"특전곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_recommend_popular",
+ "japaneseText":"人気!",
+ "japaneseFontType":0,
+ "englishUsText":"Popular!",
+ "englishUsFontType":0,
+ "chineseTText":"受歡迎!",
+ "chineseTFontType":1,
+ "koreanText":"인기!",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_recommend_recommend",
+ "japaneseText":"おすすめ!",
+ "japaneseFontType":0,
+ "englishUsText":"Recommended!",
+ "englishUsFontType":0,
+ "chineseTText":"推薦!",
+ "chineseTFontType":1,
+ "koreanText":"추천!",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_recommend_price",
+ "japaneseText":"お買い得!",
+ "japaneseFontType":0,
+ "englishUsText":"Value!",
+ "englishUsFontType":0,
+ "chineseTText":"划算!",
+ "chineseTFontType":1,
+ "koreanText":"실속!",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_recommend_biginner",
+ "japaneseText":"初心者向け",
+ "japaneseFontType":0,
+ "englishUsText":"For Beginners!",
+ "englishUsFontType":0,
+ "chineseTText":"針對初學者",
+ "chineseTFontType":1,
+ "koreanText":"초보자 추천",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_update",
+ "japaneseText":"ストア情報更新中",
+ "japaneseFontType":0,
+ "englishUsText":"Updating Store...",
+ "englishUsFontType":0,
+ "chineseTText":"更新商店情報中",
+ "chineseTFontType":1,
+ "koreanText":"스토어 정보 갱신 중",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_error",
+ "japaneseText":"コンテンツが見つかりませんでした\n「モードをえらぶ」に戻ります",
+ "japaneseFontType":0,
+ "englishUsText":"Unable to find items.\nReturning to Select Mode.",
+ "englishUsFontType":0,
+ "chineseTText":"找不到內容\n將返回「選擇模式」畫面",
+ "chineseTFontType":1,
+ "koreanText":"콘텐츠를 찾을 수 없습니다\n「모드 선택」으로 돌아갑니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_konpasu",
+ "japaneseText":"コンパス",
+ "japaneseFontType":0,
+ "englishUsText":"Compass",
+ "englishUsFontType":0,
+ "chineseTText":"指南針",
+ "chineseTFontType":1,
+ "koreanText":"컴퍼스",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_niji",
+ "japaneseText":"虹",
+ "japaneseFontType":0,
+ "englishUsText":"Rainbow",
+ "englishUsFontType":0,
+ "chineseTText":"彩虹",
+ "chineseTFontType":1,
+ "koreanText":"무지개",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_chikyuu",
+ "japaneseText":"地球",
+ "japaneseFontType":0,
+ "englishUsText":"Earth",
+ "englishUsFontType":0,
+ "chineseTText":"地球",
+ "chineseTFontType":1,
+ "koreanText":"지구",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_helloworld",
+ "japaneseText":"ハロー!ワールド",
+ "japaneseFontType":0,
+ "englishUsText":"Hello, World!",
+ "englishUsFontType":0,
+ "chineseTText":"哈囉!世界",
+ "chineseTFontType":1,
+ "koreanText":"헬로!월드",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_world",
+ "japaneseText":"達人 ザ・ワールド",
+ "japaneseFontType":0,
+ "englishUsText":"Tatsujin Around the World",
+ "englishUsFontType":0,
+ "chineseTText":"達人The World",
+ "chineseTFontType":1,
+ "koreanText":"달인 더 월드",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_world",
+ "japaneseText":"とびだせ!ワールド太鼓フェス",
+ "japaneseFontType":0,
+ "englishUsText":"World Taiko Fest",
+ "englishUsFontType":0,
+ "chineseTText":"飛躍吧!世界太鼓節慶",
+ "chineseTFontType":1,
+ "koreanText":"튀어나와라!월드 태고 페스",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_bko1",
+ "japaneseText":"どんちゃん 世界旅行",
+ "japaneseFontType":0,
+ "englishUsText":"どんちゃん 世界旅行",
+ "englishUsFontType":0,
+ "chineseTText":"どんちゃん 世界旅行",
+ "chineseTFontType":0,
+ "koreanText":"どんちゃん 世界旅行",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_thnlnd",
+ "japaneseText":"郢曲/暁闇",
+ "japaneseFontType":0,
+ "englishUsText":"郢曲/暁闇",
+ "englishUsFontType":0,
+ "chineseTText":"郢曲/暁闇",
+ "chineseTFontType":0,
+ "koreanText":"郢曲/暁闇",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_clslps",
+ "japaneseText":"ラプソディ・イン・ブルー",
+ "japaneseFontType":0,
+ "englishUsText":"ラプソディ・イン・ブルー",
+ "englishUsFontType":0,
+ "chineseTText":"ラプソディ・イン・ブルー",
+ "chineseTFontType":0,
+ "koreanText":"ラプソディ・イン・ブルー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_imsnex",
+ "japaneseText":"Next Life",
+ "japaneseFontType":0,
+ "englishUsText":"Next Life",
+ "englishUsFontType":0,
+ "chineseTText":"Next Life",
+ "chineseTFontType":0,
+ "koreanText":"Next Life",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_lactea",
+ "japaneseText":"via lactea",
+ "japaneseFontType":0,
+ "englishUsText":"via lactea",
+ "englishUsFontType":0,
+ "chineseTText":"via lactea",
+ "chineseTFontType":0,
+ "koreanText":"via lactea",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_susano",
+ "japaneseText":"須佐之男",
+ "japaneseFontType":0,
+ "englishUsText":"須佐之男",
+ "englishUsFontType":0,
+ "chineseTText":"須佐之男",
+ "chineseTFontType":0,
+ "koreanText":"須佐之男",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_csmdgn",
+ "japaneseText":"ダンガンノーツ",
+ "japaneseFontType":0,
+ "englishUsText":"ダンガンノーツ",
+ "englishUsFontType":0,
+ "chineseTText":"ダンガンノーツ",
+ "chineseTFontType":0,
+ "koreanText":"ダンガンノーツ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_thnlnd",
+ "japaneseText":"東方Project×NAMCO SOUNDS LindaAI‐CUE",
+ "japaneseFontType":0,
+ "englishUsText":"東方Project×NAMCO SOUNDS LindaAI‐CUE",
+ "englishUsFontType":0,
+ "chineseTText":"東方Project×NAMCO SOUNDS LindaAI‐CUE",
+ "chineseTFontType":0,
+ "koreanText":"東方Project×NAMCO SOUNDS LindaAI‐CUE",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_clslps",
+ "japaneseText":"ガーシュウィン",
+ "japaneseFontType":0,
+ "englishUsText":"ガーシュウィン",
+ "englishUsFontType":0,
+ "chineseTText":"ガーシュウィン",
+ "chineseTFontType":0,
+ "koreanText":"ガーシュウィン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_imsnex",
+ "japaneseText":"「アイドルマスター」より",
+ "japaneseFontType":0,
+ "englishUsText":"「アイドルマスター」より",
+ "englishUsFontType":0,
+ "chineseTText":"「アイドルマスター」より",
+ "chineseTFontType":0,
+ "koreanText":"「アイドルマスター」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_lactea",
+ "japaneseText":"feat.薛南",
+ "japaneseFontType":0,
+ "englishUsText":"feat.薛南",
+ "englishUsFontType":0,
+ "chineseTText":"feat.薛南",
+ "chineseTFontType":0,
+ "koreanText":"feat.薛南",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_susano",
+ "japaneseText":"Tatsh a.k.a 世阿弥",
+ "japaneseFontType":0,
+ "englishUsText":"Tatsh a.k.a 世阿弥",
+ "englishUsFontType":0,
+ "chineseTText":"Tatsh a.k.a 世阿弥",
+ "chineseTFontType":0,
+ "koreanText":"Tatsh a.k.a 世阿弥",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_csmdgn",
+ "japaneseText":"cosMo@暴走P",
+ "japaneseFontType":0,
+ "englishUsText":"cosMo@暴走P",
+ "englishUsFontType":0,
+ "chineseTText":"cosMo@暴走P",
+ "chineseTFontType":0,
+ "koreanText":"cosMo@暴走P",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_bko1",
+ "japaneseText":"どんちゃん 世界旅行",
+ "japaneseFontType":0,
+ "englishUsText":"どんちゃん 世界旅行",
+ "englishUsFontType":0,
+ "chineseTText":"どんちゃん 世界旅行",
+ "chineseTFontType":0,
+ "koreanText":"どんちゃん 世界旅行",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_thnlnd",
+ "japaneseText":"郢曲/暁闇",
+ "japaneseFontType":0,
+ "englishUsText":"郢曲/暁闇",
+ "englishUsFontType":0,
+ "chineseTText":"郢曲/暁闇",
+ "chineseTFontType":0,
+ "koreanText":"郢曲/暁闇",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_clslps",
+ "japaneseText":"ラプソディ・イン・ブルー",
+ "japaneseFontType":0,
+ "englishUsText":"ラプソディ・イン・ブルー",
+ "englishUsFontType":0,
+ "chineseTText":"ラプソディ・イン・ブルー",
+ "chineseTFontType":0,
+ "koreanText":"ラプソディ・イン・ブルー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_imsnex",
+ "japaneseText":"Next Life",
+ "japaneseFontType":0,
+ "englishUsText":"Next Life",
+ "englishUsFontType":0,
+ "chineseTText":"Next Life",
+ "chineseTFontType":0,
+ "koreanText":"Next Life",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_lactea",
+ "japaneseText":"via lactea",
+ "japaneseFontType":0,
+ "englishUsText":"via lactea",
+ "englishUsFontType":0,
+ "chineseTText":"via lactea",
+ "chineseTFontType":0,
+ "koreanText":"via lactea",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_susano",
+ "japaneseText":"須佐之男",
+ "japaneseFontType":0,
+ "englishUsText":"須佐之男",
+ "englishUsFontType":0,
+ "chineseTText":"須佐之男",
+ "chineseTFontType":0,
+ "koreanText":"須佐之男",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_csmdgn",
+ "japaneseText":"ダンガンノーツ",
+ "japaneseFontType":0,
+ "englishUsText":"ダンガンノーツ",
+ "englishUsFontType":0,
+ "chineseTText":"ダンガンノーツ",
+ "chineseTFontType":0,
+ "koreanText":"ダンガンノーツ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_bko1",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"DON-chan SEKAI RYOKOU",
+ "englishUsFontType":0,
+ "chineseTText":"小咚 世界旅行",
+ "chineseTFontType":1,
+ "koreanText":"동이 세계 여행",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_thnlnd",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"EIKYOKU/GYOUAN",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"에이쿄쿠/교우안",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_clslps",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Rhapsody in Blue",
+ "englishUsFontType":0,
+ "chineseTText":"藍色狂想曲",
+ "chineseTFontType":1,
+ "koreanText":"랩소디 인 블루",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_imsnex",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_lactea",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_susano",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"SUSANOO",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"스사노오",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_csmdgn",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"DANGAN NOTES",
+ "englishUsFontType":0,
+ "chineseTText":"DANGAN NOTES",
+ "chineseTFontType":1,
+ "koreanText":"DANGAN NOTES",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_bko1",
+ "japaneseText":"「どんちゃん 世界旅行」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「DON-chan SEKAI RYOKOU」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「小咚 世界旅行」",
+ "chineseTFontType":1,
+ "koreanText":"「동이 세계 여행」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_thnlnd",
+ "japaneseText":"「郢曲/暁闇」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「EIKYOKU/GYOUAN」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「郢曲/暁闇」",
+ "chineseTFontType":1,
+ "koreanText":"「에이쿄쿠/교우안」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_clslps",
+ "japaneseText":"「ラプソディ・イン・ブルー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Rhapsody in Blue」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「藍色狂想曲」",
+ "chineseTFontType":1,
+ "koreanText":"「랩소디 인 블루」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_imsnex",
+ "japaneseText":"「Next Life」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Next Life」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Next Life」",
+ "chineseTFontType":1,
+ "koreanText":"「Next Life」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_lactea",
+ "japaneseText":"「via lactea」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「via lactea」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「via lactea」",
+ "chineseTFontType":1,
+ "koreanText":"「via lactea」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_susano",
+ "japaneseText":"「須佐之男」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SUSANOO」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「須佐之男」",
+ "chineseTFontType":1,
+ "koreanText":"「스사노오」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_csmdgn",
+ "japaneseText":"「ダンガンノーツ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「DANGAN NOTES」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「DANGAN NOTES」",
+ "chineseTFontType":1,
+ "koreanText":"「DANGAN NOTES」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_bko1",
+ "japaneseText":"「どんちゃん 世界旅行」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「DON-chan SEKAI RYOKOU」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「小咚 世界旅行」",
+ "chineseTFontType":1,
+ "koreanText":"「동이 세계 여행」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_thnlnd",
+ "japaneseText":"「郢曲/暁闇」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「EIKYOKU/GYOUAN」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「郢曲/暁闇」",
+ "chineseTFontType":1,
+ "koreanText":"「에이쿄쿠/교우안」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_clslps",
+ "japaneseText":"「ラプソディ・イン・ブルー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Rhapsody in Blue」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「藍色狂想曲」",
+ "chineseTFontType":1,
+ "koreanText":"「랩소디 인 블루」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_imsnex",
+ "japaneseText":"「Next Life」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Next Life」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Next Life」",
+ "chineseTFontType":1,
+ "koreanText":"「Next Life」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_lactea",
+ "japaneseText":"「via lactea」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「via lactea」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「via lactea」",
+ "chineseTFontType":1,
+ "koreanText":"「via lactea」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_susano",
+ "japaneseText":"「須佐之男」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SUSANOO」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「須佐之男」",
+ "chineseTFontType":1,
+ "koreanText":"「스사노오」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_csmdgn",
+ "japaneseText":"「ダンガンノーツ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「DANGAN NOTES」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「DANGAN NOTES」",
+ "chineseTFontType":1,
+ "koreanText":"「DANGAN NOTES」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack18",
+ "japaneseText":"ドンだーパック\nVol.18",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol. 18",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.18",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.18",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack17",
+ "japaneseText":"ドンだーパック\nVol.17",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol. 17",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.17",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.17",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack16",
+ "japaneseText":"ドンだーパック\nVol.16",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol. 16",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.16",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.16",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack15",
+ "japaneseText":"ドンだーパック\nVol.15",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol. 15",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.15",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.15",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack14",
+ "japaneseText":"ドンだーパック\nVol.14",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol. 14",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.14",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.14",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack13",
+ "japaneseText":"ドンだーパック\nVol.13",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol. 13",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.13",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.13",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack12",
+ "japaneseText":"ドンだーパック\nVol.12",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol. 12",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.12",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.12",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack11",
+ "japaneseText":"ドンだーパック\nVol.11",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol. 11",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.11",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.11",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack10",
+ "japaneseText":"ドンだーパック\nVol.10",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol. 10",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.10",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.10",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack09",
+ "japaneseText":"ドンだーパック\nVol.9",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol. 9",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.9",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.9",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack08",
+ "japaneseText":"ドンだーパック\nVol.8",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol. 8",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.8",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.8",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack07",
+ "japaneseText":"ドンだーパック\nVol.7",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol. 7",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.7",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.7",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack06",
+ "japaneseText":"ドンだーパック\nVol.6",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol. 6",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.6",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.6",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack05",
+ "japaneseText":"ドンだーパック\nVol.5",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol. 5",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.5",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.5",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack04",
+ "japaneseText":"ドンだーパック\nVol.4",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol. 4",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.4",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.4",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack03",
+ "japaneseText":"ドンだーパック\nVol.3",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol. 3",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.3",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.3",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack02",
+ "japaneseText":"ドンだーパック\nVol.2",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol. 2",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.2",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.2",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack01",
+ "japaneseText":"ドンだーパック\nVol.1",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol. 1",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.1",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.1",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack03asia",
+ "japaneseText":"ドンだーパック\nVol.3",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol. 3",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.3",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.3",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack02asia",
+ "japaneseText":"ドンだーパック\nVol.2",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol. 2",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.2",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.2",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack01asia",
+ "japaneseText":"ドンだーパック\nVol.1",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol. 1",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.1",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.1",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_deemopack",
+ "japaneseText":"DEEMOパック",
+ "japaneseFontType":0,
+ "englishUsText":"DEEMO Pack",
+ "englishUsFontType":0,
+ "chineseTText":"DEEMO Pack",
+ "chineseTFontType":1,
+ "koreanText":"DEEMO 팩",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_corocoropack",
+ "japaneseText":"コロコロコミック\n40周年記念パック",
+ "japaneseFontType":0,
+ "englishUsText":"CoroCoro Comic\n40th Anniversary Pack",
+ "englishUsFontType":0,
+ "chineseTText":"CoroCoro Comic\n40th Anniversary Pack",
+ "chineseTFontType":1,
+ "koreanText":"코로코로 코믹\n40주년 기념 팩",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_mikupack",
+ "japaneseText":"初音ミクパック",
+ "japaneseFontType":0,
+ "englishUsText":"HATSUNE MIKU Pack",
+ "englishUsFontType":0,
+ "chineseTText":"初音未來 Pack",
+ "chineseTFontType":1,
+ "koreanText":"하츠네 미쿠 팩",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_mikupackasia",
+ "japaneseText":"初音ミクパック",
+ "japaneseFontType":0,
+ "englishUsText":"HATSUNE MIKU Pack",
+ "englishUsFontType":0,
+ "chineseTText":"初音未來 Pack",
+ "chineseTFontType":1,
+ "koreanText":"하츠네 미쿠 팩",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_hitpack01",
+ "japaneseText":"人気曲パック\nVol.1",
+ "japaneseFontType":0,
+ "englishUsText":"Popular Hits Pack\nVol.1",
+ "englishUsFontType":0,
+ "chineseTText":"Popular songs Pack\nVol.1",
+ "chineseTFontType":1,
+ "koreanText":"인기곡 팩\nVol.1",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_hitpack01asia",
+ "japaneseText":"人気曲パック\nVol.1",
+ "japaneseFontType":0,
+ "englishUsText":"Popular Hits Pack\nVol.1",
+ "englishUsFontType":0,
+ "chineseTText":"Popular songs Pack\nVol.1",
+ "chineseTFontType":1,
+ "koreanText":"인기곡 팩\nVol.1",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_none",
+ "japaneseText":"表示するコンテンツがありません",
+ "japaneseFontType":0,
+ "englishUsText":"Unable to find items.",
+ "englishUsFontType":0,
+ "chineseTText":"沒有顯示內容",
+ "chineseTFontType":1,
+ "koreanText":"표시할 콘텐츠가 없습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_saoggo",
+ "japaneseText":"流星",
+ "japaneseFontType":0,
+ "englishUsText":"流星",
+ "englishUsFontType":0,
+ "chineseTText":"流星",
+ "chineseTFontType":0,
+ "koreanText":"流星",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_clsswn",
+ "japaneseText":"白鳥の湖",
+ "japaneseFontType":0,
+ "englishUsText":"白鳥の湖",
+ "englishUsFontType":0,
+ "chineseTText":"白鳥の湖",
+ "chineseTFontType":0,
+ "koreanText":"白鳥の湖",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_csabop",
+ "japaneseText":"響け!太鼓の達人",
+ "japaneseFontType":0,
+ "englishUsText":"響け!太鼓の達人",
+ "englishUsFontType":0,
+ "chineseTText":"響け!太鼓の達人",
+ "chineseTFontType":0,
+ "koreanText":"響け!太鼓の達人",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_excsab",
+ "japaneseText":"響け!太鼓の達人 -Long Ver.-",
+ "japaneseFontType":0,
+ "englishUsText":"響け!太鼓の達人 -Long Ver.-",
+ "englishUsFontType":0,
+ "chineseTText":"響け!太鼓の達人 -Long Ver.-",
+ "chineseTFontType":0,
+ "koreanText":"響け!太鼓の達人 -Long Ver.-",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_4396bl",
+ "japaneseText":"夜櫻ブレヰダアズ",
+ "japaneseFontType":0,
+ "englishUsText":"夜櫻ブレヰダアズ",
+ "englishUsFontType":0,
+ "chineseTText":"夜櫻ブレヰダアズ",
+ "chineseTFontType":0,
+ "koreanText":"夜櫻ブレヰダアズ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_vt1b2x",
+ "japaneseText":"≠MM",
+ "japaneseFontType":0,
+ "englishUsText":"≠MM",
+ "englishUsFontType":0,
+ "chineseTText":"≠MM",
+ "chineseTFontType":0,
+ "koreanText":"≠MM",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_usa",
+ "japaneseText":"U.S.A.",
+ "japaneseFontType":0,
+ "englishUsText":"U.S.A.",
+ "englishUsFontType":0,
+ "chineseTText":"U.S.A.",
+ "chineseTFontType":0,
+ "koreanText":"U.S.A.",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ngzsnc",
+ "japaneseText":"シンクロニシティ",
+ "japaneseFontType":0,
+ "englishUsText":"シンクロニシティ",
+ "englishUsFontType":0,
+ "chineseTText":"シンクロニシティ",
+ "chineseTFontType":0,
+ "koreanText":"シンクロニシティ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_elegy",
+ "japaneseText":"さよならエレジー",
+ "japaneseFontType":0,
+ "englishUsText":"さよならエレジー",
+ "englishUsFontType":0,
+ "chineseTText":"さよならエレジー",
+ "chineseTFontType":0,
+ "koreanText":"さよならエレジー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_saoggo",
+ "japaneseText":"「ソードアート・オンライン オルタナティブ ガンゲイル・オンライン」より",
+ "japaneseFontType":0,
+ "englishUsText":"「ソードアート・オンライン オルタナティブ ガンゲイル・オンライン」より",
+ "englishUsFontType":0,
+ "chineseTText":"「ソードアート・オンライン オルタナティブ ガンゲイル・オンライン」より",
+ "chineseTFontType":0,
+ "koreanText":"「ソードアート・オンライン オルタナティブ ガンゲイル・オンライン」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_clsswn",
+ "japaneseText":"~still a duckling~",
+ "japaneseFontType":0,
+ "englishUsText":"~still a duckling~",
+ "englishUsFontType":0,
+ "chineseTText":"~still a duckling~",
+ "chineseTFontType":0,
+ "koreanText":"~still a duckling~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_csabop",
+ "japaneseText":"水木一郎・堀江美都子・影山ヒロノブ",
+ "japaneseFontType":0,
+ "englishUsText":"水木一郎・堀江美都子・影山ヒロノブ",
+ "englishUsFontType":0,
+ "chineseTText":"水木一郎・堀江美都子・影山ヒロノブ",
+ "chineseTFontType":0,
+ "koreanText":"水木一郎・堀江美都子・影山ヒロノブ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_excsab",
+ "japaneseText":"水木一郎・堀江美都子・影山ヒロノブ",
+ "japaneseFontType":0,
+ "englishUsText":"水木一郎・堀江美都子・影山ヒロノブ",
+ "englishUsFontType":0,
+ "chineseTText":"水木一郎・堀江美都子・影山ヒロノブ",
+ "chineseTFontType":0,
+ "koreanText":"水木一郎・堀江美都子・影山ヒロノブ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_4396bl",
+ "japaneseText":"ぽんきち",
+ "japaneseFontType":0,
+ "englishUsText":"ぽんきち",
+ "englishUsFontType":0,
+ "chineseTText":"ぽんきち",
+ "chineseTFontType":0,
+ "koreanText":"ぽんきち",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_vt1b2x",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_usa",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_ngzsnc",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_elegy",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_saoggo",
+ "japaneseText":"流星",
+ "japaneseFontType":0,
+ "englishUsText":"流星",
+ "englishUsFontType":0,
+ "chineseTText":"流星",
+ "chineseTFontType":0,
+ "koreanText":"流星",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_clsswn",
+ "japaneseText":"白鳥の湖",
+ "japaneseFontType":0,
+ "englishUsText":"白鳥の湖",
+ "englishUsFontType":0,
+ "chineseTText":"白鳥の湖",
+ "chineseTFontType":0,
+ "koreanText":"白鳥の湖",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_csabop",
+ "japaneseText":"響け!太鼓の達人",
+ "japaneseFontType":0,
+ "englishUsText":"響け!太鼓の達人",
+ "englishUsFontType":0,
+ "chineseTText":"響け!太鼓の達人",
+ "chineseTFontType":0,
+ "koreanText":"響け!太鼓の達人",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_excsab",
+ "japaneseText":"響け!太鼓の達人\n-Long Ver.-",
+ "japaneseFontType":0,
+ "englishUsText":"響け!太鼓の達人\n-Long Ver.-",
+ "englishUsFontType":0,
+ "chineseTText":"響け!太鼓の達人\n-Long Ver.-",
+ "chineseTFontType":0,
+ "koreanText":"響け!太鼓の達人\n-Long Ver.-",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_4396bl",
+ "japaneseText":"夜櫻ブレヰダアズ",
+ "japaneseFontType":0,
+ "englishUsText":"夜櫻ブレヰダアズ",
+ "englishUsFontType":0,
+ "chineseTText":"夜櫻ブレヰダアズ",
+ "chineseTFontType":0,
+ "koreanText":"夜櫻ブレヰダアズ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_vt1b2x",
+ "japaneseText":"≠MM",
+ "japaneseFontType":0,
+ "englishUsText":"≠MM",
+ "englishUsFontType":0,
+ "chineseTText":"≠MM",
+ "chineseTFontType":0,
+ "koreanText":"≠MM",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_usa",
+ "japaneseText":"U.S.A.",
+ "japaneseFontType":0,
+ "englishUsText":"U.S.A.",
+ "englishUsFontType":0,
+ "chineseTText":"U.S.A.",
+ "chineseTFontType":0,
+ "koreanText":"U.S.A.",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_ngzsnc",
+ "japaneseText":"シンクロニシティ",
+ "japaneseFontType":0,
+ "englishUsText":"シンクロニシティ",
+ "englishUsFontType":0,
+ "chineseTText":"シンクロニシティ",
+ "chineseTFontType":0,
+ "koreanText":"シンクロニシティ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_elegy",
+ "japaneseText":"さよならエレジー",
+ "japaneseFontType":0,
+ "englishUsText":"さよならエレジー",
+ "englishUsFontType":0,
+ "chineseTText":"さよならエレジー",
+ "chineseTFontType":0,
+ "koreanText":"さよならエレジー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_saoggo",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"RYUUSEI",
+ "englishUsFontType":0,
+ "chineseTText":"RYUUSEI",
+ "chineseTFontType":1,
+ "koreanText":"RYUUSEI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_clsswn",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Swan Lake",
+ "englishUsFontType":0,
+ "chineseTText":"天鵝湖",
+ "chineseTFontType":1,
+ "koreanText":"백조의 호수",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_csabop",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"HIBIKE! Taiko No Tatsujin",
+ "englishUsFontType":0,
+ "chineseTText":"響徹雲霄!太鼓之達人",
+ "chineseTFontType":1,
+ "koreanText":"히비케!태고의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_excsab",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"HIBIKE! Taiko No Tatsujin -Long Ver.-",
+ "englishUsFontType":0,
+ "chineseTText":"響徹雲霄!太鼓之達人 -Long Ver.-",
+ "chineseTFontType":1,
+ "koreanText":"히비케!태고의 달인 -Long Ver.-",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_4396bl",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"YOZAKURA Bladerz",
+ "englishUsFontType":0,
+ "chineseTText":"夜櫻 Bladerz",
+ "chineseTFontType":1,
+ "koreanText":"요자쿠라 Bladerz",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_vt1b2x",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_usa",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ngzsnc",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"SYNCHRONICITY",
+ "englishUsFontType":0,
+ "chineseTText":"SYNCHRONICITY",
+ "chineseTFontType":1,
+ "koreanText":"SYNCHRONICITY",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_elegy",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Sayonara Elegy",
+ "englishUsFontType":0,
+ "chineseTText":"告別輓歌",
+ "chineseTFontType":1,
+ "koreanText":"사요나라 엘레지",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_saoggo",
+ "japaneseText":"「流星」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「RYUUSEI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「RYUUSEI」",
+ "chineseTFontType":1,
+ "koreanText":"「RYUUSEI」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_clsswn",
+ "japaneseText":"「白鳥の湖」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Swan Lake」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「天鵝湖」",
+ "chineseTFontType":1,
+ "koreanText":"「백조의 호수」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_csabop",
+ "japaneseText":"「響け!太鼓の達人」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HIBIKE! Taiko No Tatsujin」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「響徹雲霄!太鼓之達人」",
+ "chineseTFontType":1,
+ "koreanText":"「히비케!태고의 달인」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_excsab",
+ "japaneseText":"「響け!太鼓の達人 -Long Ver.-」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HIBIKE! Taiko No Tatsujin -Long Ver.-」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「響徹雲霄!太鼓之達人 -Long Ver.-」",
+ "chineseTFontType":1,
+ "koreanText":"「히비케!태고의 달인 -Long Ver.-」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_4396bl",
+ "japaneseText":"「夜櫻ブレヰダアズ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「YOZAKURA Bladerz」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「夜櫻 Bladerz」",
+ "chineseTFontType":1,
+ "koreanText":"「요자쿠라 Bladerz」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_vt1b2x",
+ "japaneseText":"「≠MM」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「≠MM」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「≠MM」",
+ "chineseTFontType":1,
+ "koreanText":"「≠MM」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_usa",
+ "japaneseText":"「U.S.A.」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「U.S.A.」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「U.S.A.」",
+ "chineseTFontType":1,
+ "koreanText":"「U.S.A.」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_ngzsnc",
+ "japaneseText":"「シンクロニシティ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SYNCHRONICITY」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「SYNCHRONICITY」",
+ "chineseTFontType":1,
+ "koreanText":"「SYNCHRONICITY」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_elegy",
+ "japaneseText":"「さよならエレジー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Sayonara Elegy」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「告別輓歌」",
+ "chineseTFontType":1,
+ "koreanText":"「사요나라 엘레지」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_saoggo",
+ "japaneseText":"「流星」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「RYUUSEI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「RYUUSEI」",
+ "chineseTFontType":1,
+ "koreanText":"「RYUUSEI」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_clsswn",
+ "japaneseText":"「白鳥の湖」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Swan Lake」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「天鵝湖」",
+ "chineseTFontType":1,
+ "koreanText":"「백조의 호수」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_csabop",
+ "japaneseText":"「響け!太鼓の達人」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HIBIKE! Taiko No Tatsujin」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「響徹雲霄!太鼓之達人」",
+ "chineseTFontType":1,
+ "koreanText":"「히비케!태고의 달인」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_excsab",
+ "japaneseText":"「響け!太鼓の達人 -Long Ver.-」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HIBIKE! Taiko No Tatsujin -Long Ver.-」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「響徹雲霄!太鼓之達人 -Long Ver.-」",
+ "chineseTFontType":1,
+ "koreanText":"「히비케!태고의 달인 -Long Ver.-」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_4396bl",
+ "japaneseText":"「夜櫻ブレヰダアズ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「YOZAKURA Bladerz」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「夜櫻 Bladerz」",
+ "chineseTFontType":1,
+ "koreanText":"「요자쿠라 Bladerz」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_vt1b2x",
+ "japaneseText":"「≠MM」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「≠MM」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「≠MM」",
+ "chineseTFontType":1,
+ "koreanText":"「≠MM」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_usa",
+ "japaneseText":"「U.S.A.」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「U.S.A.」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「U.S.A.」",
+ "chineseTFontType":1,
+ "koreanText":"「U.S.A.」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_ngzsnc",
+ "japaneseText":"「シンクロニシティ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SYNCHRONICITY」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「SYNCHRONICITY」",
+ "chineseTFontType":1,
+ "koreanText":"「SYNCHRONICITY」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_elegy",
+ "japaneseText":"「さよならエレジー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Sayonara Elegy」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「告別輓歌」",
+ "chineseTFontType":1,
+ "koreanText":"「사요나라 엘레지」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_hitpack02",
+ "japaneseText":"人気曲パックVol.2",
+ "japaneseFontType":0,
+ "englishUsText":"Popular Hits Pack Vol.2",
+ "englishUsFontType":0,
+ "chineseTText":"Popular songs Pack Vol.2",
+ "chineseTFontType":1,
+ "koreanText":"인기곡 팩 Vol.2",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_hitpack02",
+ "japaneseText":"人気曲パック\nVol.2",
+ "japaneseFontType":0,
+ "englishUsText":"Popular Hits Pack\nVol.2",
+ "englishUsFontType":0,
+ "chineseTText":"Popular songs Pack\nVol.2",
+ "chineseTFontType":1,
+ "koreanText":"인기곡 팩\nVol.2",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_hitpack03",
+ "japaneseText":"人気曲パックVol.3",
+ "japaneseFontType":0,
+ "englishUsText":"Popular Hits Pack Vol.3",
+ "englishUsFontType":0,
+ "chineseTText":"Popular songs Pack Vol.3",
+ "chineseTFontType":1,
+ "koreanText":"인기곡 팩 Vol.3",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_hitpack03",
+ "japaneseText":"人気曲パック\nVol.3",
+ "japaneseFontType":0,
+ "englishUsText":"Popular Hits Pack\nVol.3",
+ "englishUsFontType":0,
+ "chineseTText":"Popular songs Pack\nVol.3",
+ "chineseTFontType":1,
+ "koreanText":"인기곡 팩\nVol.3",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_hitpack04",
+ "japaneseText":"人気曲パックVol.4",
+ "japaneseFontType":0,
+ "englishUsText":"Popular Hits Pack Vol.4",
+ "englishUsFontType":0,
+ "chineseTText":"Popular songs Pack Vol.4",
+ "chineseTFontType":1,
+ "koreanText":"인기곡 팩 Vol.4",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_hitpack04",
+ "japaneseText":"人気曲パック\nVol.4",
+ "japaneseFontType":0,
+ "englishUsText":"Popular Hits Pack\nVol.4",
+ "englishUsFontType":0,
+ "chineseTText":"Popular songs Pack\nVol.4",
+ "chineseTFontType":1,
+ "koreanText":"인기곡 팩\nVol.4",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_clsrad",
+ "japaneseText":"ラデツキー行進曲",
+ "japaneseFontType":0,
+ "englishUsText":"ラデツキー行進曲",
+ "englishUsFontType":0,
+ "chineseTText":"ラデツキー行進曲",
+ "chineseTFontType":0,
+ "koreanText":"ラデツキー行進曲",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_go9ra9",
+ "japaneseText":"極楽浄土",
+ "japaneseFontType":0,
+ "englishUsText":"極楽浄土",
+ "englishUsFontType":0,
+ "chineseTText":"極楽浄土",
+ "chineseTFontType":0,
+ "koreanText":"極楽浄土",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_gumis2",
+ "japaneseText":"セツナトリップ",
+ "japaneseFontType":0,
+ "englishUsText":"セツナトリップ",
+ "englishUsFontType":0,
+ "chineseTText":"セツナトリップ",
+ "chineseTFontType":0,
+ "koreanText":"セツナトリップ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_syyoak",
+ "japaneseText":"夜明けまであと3秒",
+ "japaneseFontType":0,
+ "englishUsText":"夜明けまであと3秒",
+ "englishUsFontType":0,
+ "chineseTText":"夜明けまであと3秒",
+ "chineseTFontType":0,
+ "koreanText":"夜明けまであと3秒",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_bbb",
+ "japaneseText":"Blessed Bouquet Buskers",
+ "japaneseFontType":0,
+ "englishUsText":"Blessed Bouquet Buskers",
+ "englishUsFontType":0,
+ "chineseTText":"Blessed Bouquet Buskers",
+ "chineseTFontType":0,
+ "koreanText":"Blessed Bouquet Buskers",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_xan",
+ "japaneseText":"Xa",
+ "japaneseFontType":0,
+ "englishUsText":"Xa",
+ "englishUsFontType":0,
+ "chineseTText":"Xa",
+ "chineseTFontType":0,
+ "koreanText":"Xa",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_umtube",
+ "japaneseText":"YouTubeテーマソング",
+ "japaneseFontType":0,
+ "englishUsText":"YouTubeテーマソング",
+ "englishUsFontType":0,
+ "chineseTText":"YouTubeテーマソング",
+ "chineseTFontType":0,
+ "koreanText":"YouTubeテーマソング",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kykgrs",
+ "japaneseText":"ガラスを割れ!",
+ "japaneseFontType":0,
+ "englishUsText":"ガラスを割れ!",
+ "englishUsFontType":0,
+ "chineseTText":"ガラスを割れ!",
+ "chineseTFontType":0,
+ "koreanText":"ガラスを割れ!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_railgn",
+ "japaneseText":"only my railgun",
+ "japaneseFontType":0,
+ "englishUsText":"only my railgun",
+ "englishUsFontType":0,
+ "chineseTText":"only my railgun",
+ "chineseTFontType":0,
+ "koreanText":"only my railgun",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_clsrad",
+ "japaneseText":"J.シュトラウス(1世)",
+ "japaneseFontType":0,
+ "englishUsText":"J.シュトラウス(1世)",
+ "englishUsFontType":0,
+ "chineseTText":"J.シュトラウス(1世)",
+ "chineseTFontType":0,
+ "koreanText":"J.シュトラウス(1世)",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_go9ra9",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_gumis2",
+ "japaneseText":"Last NOTE.",
+ "japaneseFontType":0,
+ "englishUsText":"Last NOTE.",
+ "englishUsFontType":0,
+ "chineseTText":"Last NOTE.",
+ "chineseTFontType":0,
+ "koreanText":"Last NOTE.",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_syyoak",
+ "japaneseText":"「シンクロニカ」より",
+ "japaneseFontType":0,
+ "englishUsText":"「シンクロニカ」より",
+ "englishUsFontType":0,
+ "chineseTText":"「シンクロニカ」より",
+ "chineseTFontType":0,
+ "koreanText":"「シンクロニカ」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_bbb",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_xan",
+ "japaneseText":"Tatsh",
+ "japaneseFontType":0,
+ "englishUsText":"Tatsh",
+ "englishUsFontType":0,
+ "chineseTText":"Tatsh",
+ "chineseTFontType":0,
+ "koreanText":"Tatsh",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_umtube",
+ "japaneseText":"HIKAKIN & SEIKIN",
+ "japaneseFontType":0,
+ "englishUsText":"HIKAKIN & SEIKIN",
+ "englishUsFontType":0,
+ "chineseTText":"HIKAKIN & SEIKIN",
+ "chineseTFontType":0,
+ "koreanText":"HIKAKIN & SEIKIN",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_kykgrs",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_railgn",
+ "japaneseText":"「とある科学の超電磁砲」より",
+ "japaneseFontType":0,
+ "englishUsText":"「とある科学の超電磁砲」より",
+ "englishUsFontType":0,
+ "chineseTText":"「とある科学の超電磁砲」より",
+ "chineseTFontType":0,
+ "koreanText":"「とある科学の超電磁砲」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_clsrad",
+ "japaneseText":"ラデツキー行進曲",
+ "japaneseFontType":0,
+ "englishUsText":"ラデツキー行進曲",
+ "englishUsFontType":0,
+ "chineseTText":"ラデツキー行進曲",
+ "chineseTFontType":0,
+ "koreanText":"ラデツキー行進曲",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_go9ra9",
+ "japaneseText":"極楽浄土",
+ "japaneseFontType":0,
+ "englishUsText":"極楽浄土",
+ "englishUsFontType":0,
+ "chineseTText":"極楽浄土",
+ "chineseTFontType":0,
+ "koreanText":"極楽浄土",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_gumis2",
+ "japaneseText":"セツナトリップ",
+ "japaneseFontType":0,
+ "englishUsText":"セツナトリップ",
+ "englishUsFontType":0,
+ "chineseTText":"セツナトリップ",
+ "chineseTFontType":0,
+ "koreanText":"セツナトリップ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_syyoak",
+ "japaneseText":"夜明けまであと3秒",
+ "japaneseFontType":0,
+ "englishUsText":"夜明けまであと3秒",
+ "englishUsFontType":0,
+ "chineseTText":"夜明けまであと3秒",
+ "chineseTFontType":0,
+ "koreanText":"夜明けまであと3秒",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_bbb",
+ "japaneseText":"Blessed\nBouquet\nBuskers",
+ "japaneseFontType":0,
+ "englishUsText":"Blessed\nBouquet\nBuskers",
+ "englishUsFontType":0,
+ "chineseTText":"Blessed\nBouquet\nBuskers",
+ "chineseTFontType":0,
+ "koreanText":"Blessed\nBouquet\nBuskers",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_xan",
+ "japaneseText":"Xa",
+ "japaneseFontType":0,
+ "englishUsText":"Xa",
+ "englishUsFontType":0,
+ "chineseTText":"Xa",
+ "chineseTFontType":0,
+ "koreanText":"Xa",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_umtube",
+ "japaneseText":"YouTube\nテーマソング",
+ "japaneseFontType":0,
+ "englishUsText":"YouTube\nテーマソング",
+ "englishUsFontType":0,
+ "chineseTText":"YouTube\nテーマソング",
+ "chineseTFontType":0,
+ "koreanText":"YouTube\nテーマソング",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_kykgrs",
+ "japaneseText":"ガラスを割れ!",
+ "japaneseFontType":0,
+ "englishUsText":"ガラスを割れ!",
+ "englishUsFontType":0,
+ "chineseTText":"ガラスを割れ!",
+ "chineseTFontType":0,
+ "koreanText":"ガラスを割れ!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_railgn",
+ "japaneseText":"only my\nrailgun",
+ "japaneseFontType":0,
+ "englishUsText":"only my\nrailgun",
+ "englishUsFontType":0,
+ "chineseTText":"only my\nrailgun",
+ "chineseTFontType":0,
+ "koreanText":"only my\nrailgun",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_clsrad",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Radetzky March",
+ "englishUsFontType":0,
+ "chineseTText":"拉德茨基進行曲",
+ "chineseTFontType":1,
+ "koreanText":"라데츠키 행진곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_go9ra9",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"GOKURAKUJOUDO",
+ "englishUsFontType":0,
+ "chineseTText":"極樂淨土",
+ "chineseTFontType":1,
+ "koreanText":"고쿠라쿠죠우도",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_gumis2",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Setsuna Trip",
+ "englishUsFontType":0,
+ "chineseTText":"剎那旅程",
+ "chineseTFontType":1,
+ "koreanText":"세츠나 TRIP",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_syyoak",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Yoake Made Ato 3-byou",
+ "englishUsFontType":0,
+ "chineseTText":"距拂曉還有3秒鐘",
+ "chineseTFontType":1,
+ "koreanText":"요아케마데 아토 3뵤우",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_bbb",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_xan",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_umtube",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"YouTube Theme Song",
+ "englishUsFontType":0,
+ "chineseTText":"YouTube主題曲",
+ "chineseTFontType":1,
+ "koreanText":"YouTube Theme Song",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kykgrs",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Garasu Wo Ware",
+ "englishUsFontType":0,
+ "chineseTText":"Garasu Wo Ware",
+ "chineseTFontType":1,
+ "koreanText":"Garasu Wo Ware",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_railgn",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_clsrad",
+ "japaneseText":"「ラデツキー行進曲」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Radetzky March」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「拉德茨基進行曲」",
+ "chineseTFontType":1,
+ "koreanText":"「라데츠키 행진곡」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_go9ra9",
+ "japaneseText":"「極楽浄土」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「GOKURAKUJOUDO」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「極樂淨土」",
+ "chineseTFontType":1,
+ "koreanText":"「고쿠라쿠죠우도」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gumis2",
+ "japaneseText":"「セツナトリップ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Setsuna Trip」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「剎那旅程」",
+ "chineseTFontType":1,
+ "koreanText":"「세츠나 TRIP」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_syyoak",
+ "japaneseText":"「夜明けまであと3秒」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Yoake Made Ato 3-byou」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「距拂曉還有3秒鐘」",
+ "chineseTFontType":1,
+ "koreanText":"「요아케마데 아토 3뵤우」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_bbb",
+ "japaneseText":"「Blessed Bouquet Buskers」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Blessed Bouquet Buskers」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Blessed Bouquet Buskers」",
+ "chineseTFontType":1,
+ "koreanText":"「Blessed Bouquet Buskers」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_xan",
+ "japaneseText":"「Xa」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Xa」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Xa」",
+ "chineseTFontType":1,
+ "koreanText":"「Xa」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_umtube",
+ "japaneseText":"「YouTubeテーマソング」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「YouTube Theme Song」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「YouTube主題曲」",
+ "chineseTFontType":1,
+ "koreanText":"「YouTube Theme Song」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_kykgrs",
+ "japaneseText":"「ガラスを割れ!」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Garasu Wo Ware」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Garasu Wo Ware」",
+ "chineseTFontType":1,
+ "koreanText":"「Garasu Wo Ware」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_railgn",
+ "japaneseText":"「only my railgun」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「only my railgun」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「only my railgun」",
+ "chineseTFontType":1,
+ "koreanText":"「only my railgun」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_clsrad",
+ "japaneseText":"「ラデツキー行進曲」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Radetzky March」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「拉德茨基進行曲」",
+ "chineseTFontType":1,
+ "koreanText":"「라데츠키 행진곡」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_go9ra9",
+ "japaneseText":"「極楽浄土」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「GOKURAKUJOUDO」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「極樂淨土」",
+ "chineseTFontType":1,
+ "koreanText":"「고쿠라쿠죠우도」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gumis2",
+ "japaneseText":"「セツナトリップ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Setsuna Trip」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「剎那旅程」",
+ "chineseTFontType":1,
+ "koreanText":"「세츠나 TRIP」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_syyoak",
+ "japaneseText":"「夜明けまであと3秒」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Yoake Made Ato 3-byou」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「距拂曉還有3秒鐘」",
+ "chineseTFontType":1,
+ "koreanText":"「요아케마데 아토 3뵤우」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_bbb",
+ "japaneseText":"「Blessed Bouquet Buskers」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Blessed Bouquet Buskers」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Blessed Bouquet Buskers」",
+ "chineseTFontType":1,
+ "koreanText":"「Blessed Bouquet Buskers」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_xan",
+ "japaneseText":"「Xa」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Xa」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Xa」",
+ "chineseTFontType":1,
+ "koreanText":"「Xa」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_umtube",
+ "japaneseText":"「YouTubeテーマソング」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「YouTube Theme Song」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「YouTube主題曲」",
+ "chineseTFontType":1,
+ "koreanText":"「YouTube Theme Song」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_kykgrs",
+ "japaneseText":"「ガラスを割れ!」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Garasu Wo Ware」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Garasu Wo Ware」",
+ "chineseTFontType":1,
+ "koreanText":"「Garasu Wo Ware」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_railgn",
+ "japaneseText":"「only my railgun」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「only my railgun」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「only my railgun」",
+ "chineseTFontType":1,
+ "koreanText":"「only my railgun」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_newyear",
+ "japaneseText":"2019年もよろしくだドン",
+ "japaneseFontType":0,
+ "englishUsText":"Let's drum up a great 2019!",
+ "englishUsFontType":0,
+ "chineseTText":"2019年也請多指教",
+ "chineseTFontType":1,
+ "koreanText":"2019년도 잘 부탁한다쿵",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_newyear",
+ "japaneseText":"ゆくどん☆くるどん♪",
+ "japaneseFontType":0,
+ "englishUsText":"Drum in the new year!",
+ "englishUsFontType":0,
+ "chineseTText":"送舊咚☆迎新咚♪",
+ "chineseTFontType":1,
+ "koreanText":"가는 쿵☆오는 쿵♪",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_newyearex",
+ "japaneseText":"たたき初めフェスの達人",
+ "japaneseFontType":0,
+ "englishUsText":"Drum in the New Year Fest Master",
+ "englishUsFontType":0,
+ "chineseTText":"開始敲打節慶達人",
+ "chineseTFontType":1,
+ "koreanText":"신년 태고 페스의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_medetai",
+ "japaneseText":"めでタイ",
+ "japaneseFontType":0,
+ "englishUsText":"Festivi-tie",
+ "englishUsFontType":0,
+ "chineseTText":"可喜可賀鯛",
+ "chineseTFontType":1,
+ "koreanText":"경사났돔",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_partypeople",
+ "japaneseText":"パーリーピーポー",
+ "japaneseFontType":0,
+ "englishUsText":"Party People",
+ "englishUsFontType":0,
+ "chineseTText":"派對人士",
+ "chineseTFontType":1,
+ "koreanText":"파티 피플",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_newyear",
+ "japaneseText":"ゆくどん☆くるどん♪たたき初めフェス",
+ "japaneseFontType":0,
+ "englishUsText":"Drum in the New Year Fest",
+ "englishUsFontType":0,
+ "chineseTText":"送舊咚☆迎新咚♪開始敲打節慶",
+ "chineseTFontType":1,
+ "koreanText":"가는 쿵☆오는 쿵♪ 신년 태고 페스",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_hsgirl",
+ "japaneseText":"New Stranger",
+ "japaneseFontType":0,
+ "englishUsText":"New Stranger",
+ "englishUsFontType":0,
+ "chineseTText":"New Stranger",
+ "chineseTFontType":0,
+ "koreanText":"New Stranger",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_drsb",
+ "japaneseText":"ドラゴンセイバー 水没都市",
+ "japaneseFontType":0,
+ "englishUsText":"ドラゴンセイバー 水没都市",
+ "englishUsFontType":0,
+ "chineseTText":"ドラゴンセイバー 水没都市",
+ "chineseTFontType":0,
+ "koreanText":"ドラゴンセイバー 水没都市",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_dariu2",
+ "japaneseText":"OLGA BREEZE [太陽シーン]",
+ "japaneseFontType":0,
+ "englishUsText":"OLGA BREEZE [太陽シーン]",
+ "englishUsFontType":0,
+ "chineseTText":"OLGA BREEZE [太陽シーン]",
+ "chineseTFontType":0,
+ "koreanText":"OLGA BREEZE [太陽シーン]",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_genpe2",
+ "japaneseText":"SHOGYO MUJO",
+ "japaneseFontType":0,
+ "englishUsText":"SHOGYO MUJO",
+ "englishUsFontType":0,
+ "chineseTText":"SHOGYO MUJO",
+ "chineseTFontType":0,
+ "koreanText":"SHOGYO MUJO",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_hsgirl",
+ "japaneseText":"「ハイスコアガール」より",
+ "japaneseFontType":0,
+ "englishUsText":"「ハイスコアガール」より",
+ "englishUsFontType":0,
+ "chineseTText":"「ハイスコアガール」より",
+ "chineseTFontType":0,
+ "koreanText":"「ハイスコアガール」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_drsb",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_dariu2",
+ "japaneseText":"「ダライアスII」より",
+ "japaneseFontType":0,
+ "englishUsText":"「ダライアスII」より",
+ "englishUsFontType":0,
+ "chineseTText":"「ダライアスII」より",
+ "chineseTFontType":0,
+ "koreanText":"「ダライアスII」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_genpe2",
+ "japaneseText":"源平討魔伝リミックス COSIO",
+ "japaneseFontType":0,
+ "englishUsText":"源平討魔伝リミックス COSIO",
+ "englishUsFontType":0,
+ "chineseTText":"源平討魔伝リミックス COSIO",
+ "chineseTFontType":0,
+ "koreanText":"源平討魔伝リミックス COSIO",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_hsgirl",
+ "japaneseText":"New Stranger",
+ "japaneseFontType":0,
+ "englishUsText":"New Stranger",
+ "englishUsFontType":0,
+ "chineseTText":"New Stranger",
+ "chineseTFontType":0,
+ "koreanText":"New Stranger",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_drsb",
+ "japaneseText":"ドラゴンセイバー\n水没都市",
+ "japaneseFontType":0,
+ "englishUsText":"ドラゴンセイバー\n水没都市",
+ "englishUsFontType":0,
+ "chineseTText":"ドラゴンセイバー\n水没都市",
+ "chineseTFontType":0,
+ "koreanText":"ドラゴンセイバー\n水没都市",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_dariu2",
+ "japaneseText":"OLGA BREEZE\n[太陽シーン]",
+ "japaneseFontType":0,
+ "englishUsText":"OLGA BREEZE\n[太陽シーン]",
+ "englishUsFontType":0,
+ "chineseTText":"OLGA BREEZE\n[太陽シーン]",
+ "chineseTFontType":0,
+ "koreanText":"OLGA BREEZE\n[太陽シーン]",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_genpe2",
+ "japaneseText":"SHOGYO MUJO",
+ "japaneseFontType":0,
+ "englishUsText":"SHOGYO MUJO",
+ "englishUsFontType":0,
+ "chineseTText":"SHOGYO MUJO",
+ "chineseTFontType":0,
+ "koreanText":"SHOGYO MUJO",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_hsgirl",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_drsb",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"DRAGON SABER",
+ "englishUsFontType":0,
+ "chineseTText":"DRAGON SABER",
+ "chineseTFontType":1,
+ "koreanText":"DRAGON SABER",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_dariu2",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"OLGA BREEZE",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_genpe2",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_hsgirl",
+ "japaneseText":"「New Stranger」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「New Stranger」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「New Stranger」",
+ "chineseTFontType":1,
+ "koreanText":"「New Stranger」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_drsb",
+ "japaneseText":"「ドラゴンセイバー 水没都市」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「DRAGON SABER」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「DRAGON SABER」",
+ "chineseTFontType":1,
+ "koreanText":"「DRAGON SABER」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_dariu2",
+ "japaneseText":"「OLGA BREEZE [太陽シーン]」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「OLGA BREEZE」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「OLGA BREEZE [太陽シーン]」",
+ "chineseTFontType":1,
+ "koreanText":"「OLGA BREEZE [太陽シーン]」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_genpe2",
+ "japaneseText":"「SHOGYO MUJO」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SHOGYO MUJO」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「SHOGYO MUJO」",
+ "chineseTFontType":1,
+ "koreanText":"「SHOGYO MUJO」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_hsgirl",
+ "japaneseText":"「New Stranger」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「New Stranger」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「New Stranger」",
+ "chineseTFontType":1,
+ "koreanText":"「New Stranger」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_drsb",
+ "japaneseText":"「ドラゴンセイバー 水没都市」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「DRAGON SABER」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「DRAGON SABER」",
+ "chineseTFontType":1,
+ "koreanText":"「DRAGON SABER」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_dariu2",
+ "japaneseText":"「OLGA BREEZE [太陽シーン]」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「OLGA BREEZE」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「OLGA BREEZE [太陽シーン]」",
+ "chineseTFontType":1,
+ "koreanText":"「OLGA BREEZE [太陽シーン]」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_genpe2",
+ "japaneseText":"「SHOGYO MUJO」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SHOGYO MUJO」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「SHOGYO MUJO」",
+ "chineseTFontType":1,
+ "koreanText":"「SHOGYO MUJO」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_outrun",
+ "japaneseText":"MAGICAL SOUND SHOWER",
+ "japaneseFontType":0,
+ "englishUsText":"MAGICAL SOUND SHOWER",
+ "englishUsFontType":0,
+ "chineseTText":"MAGICAL SOUND SHOWER",
+ "chineseTFontType":0,
+ "koreanText":"MAGICAL SOUND SHOWER",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_outrun",
+ "japaneseText":"「アウトラン」より",
+ "japaneseFontType":0,
+ "englishUsText":"「アウトラン」より",
+ "englishUsFontType":0,
+ "chineseTText":"「アウトラン」より",
+ "chineseTFontType":0,
+ "koreanText":"「アウトラン」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_outrun",
+ "japaneseText":"MAGICAL\nSOUND SHOWER",
+ "japaneseFontType":0,
+ "englishUsText":"MAGICAL\nSOUND SHOWER",
+ "englishUsFontType":0,
+ "chineseTText":"MAGICAL\nSOUND SHOWER",
+ "chineseTFontType":0,
+ "koreanText":"MAGICAL\nSOUND SHOWER",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_outrun",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_outrun",
+ "japaneseText":"「MAGICAL SOUND SHOWER」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「MAGICAL SOUND SHOWER」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「MAGICAL SOUND SHOWER」",
+ "chineseTFontType":1,
+ "koreanText":"「MAGICAL SOUND SHOWER」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_outrun",
+ "japaneseText":"「MAGICAL SOUND SHOWER」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「MAGICAL SOUND SHOWER」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「MAGICAL SOUND SHOWER」",
+ "chineseTFontType":1,
+ "koreanText":"「MAGICAL SOUND SHOWER」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_wii5op",
+ "japaneseText":"どきどき☆どんちゃん騒ぎ",
+ "japaneseFontType":0,
+ "englishUsText":"どきどき☆どんちゃん騒ぎ",
+ "englishUsFontType":0,
+ "chineseTText":"どきどき☆どんちゃん騒ぎ",
+ "chineseTFontType":0,
+ "koreanText":"どきどき☆どんちゃん騒ぎ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_gldnkm",
+ "japaneseText":"Winding Road",
+ "japaneseFontType":0,
+ "englishUsText":"Winding Road",
+ "englishUsFontType":0,
+ "chineseTText":"Winding Road",
+ "chineseTFontType":0,
+ "koreanText":"Winding Road",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_fdive",
+ "japaneseText":"FREEDOM DiVE↓",
+ "japaneseFontType":0,
+ "englishUsText":"FREEDOM DiVE↓",
+ "englishUsFontType":0,
+ "chineseTText":"FREEDOM DiVE↓",
+ "chineseTFontType":0,
+ "koreanText":"FREEDOM DiVE↓",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mikugk",
+ "japaneseText":"初音ミクの激唱",
+ "japaneseFontType":0,
+ "englishUsText":"初音ミクの激唱",
+ "englishUsFontType":0,
+ "chineseTText":"初音ミクの激唱",
+ "chineseTFontType":0,
+ "koreanText":"初音ミクの激唱",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kahata",
+ "japaneseText":"彼は誰時の誘惑",
+ "japaneseFontType":0,
+ "englishUsText":"彼は誰時の誘惑",
+ "englishUsFontType":0,
+ "chineseTText":"彼は誰時の誘惑",
+ "chineseTFontType":0,
+ "koreanText":"彼は誰時の誘惑",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_daybyd",
+ "japaneseText":"Day by Day!",
+ "japaneseFontType":0,
+ "englishUsText":"Day by Day!",
+ "englishUsFontType":0,
+ "chineseTText":"Day by Day!",
+ "chineseTFontType":0,
+ "koreanText":"Day by Day!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_wii5op",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_gldnkm",
+ "japaneseText":"「ゴールデンカムイ」より",
+ "japaneseFontType":0,
+ "englishUsText":"「ゴールデンカムイ」より",
+ "englishUsFontType":0,
+ "chineseTText":"「ゴールデンカムイ」より",
+ "chineseTFontType":0,
+ "koreanText":"「ゴールデンカムイ」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_fdive",
+ "japaneseText":"xi",
+ "japaneseFontType":0,
+ "englishUsText":"xi",
+ "englishUsFontType":0,
+ "chineseTText":"xi",
+ "chineseTFontType":0,
+ "koreanText":"xi",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_mikugk",
+ "japaneseText":"「初音ミク -Project DIVA- 2nd」より",
+ "japaneseFontType":0,
+ "englishUsText":"「初音ミク -Project DIVA- 2nd」より",
+ "englishUsFontType":0,
+ "chineseTText":"「初音ミク -Project DIVA- 2nd」より",
+ "chineseTFontType":0,
+ "koreanText":"「初音ミク -Project DIVA- 2nd」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_kahata",
+ "japaneseText":"t+pazolite",
+ "japaneseFontType":0,
+ "englishUsText":"t+pazolite",
+ "englishUsFontType":0,
+ "chineseTText":"t+pazolite",
+ "chineseTFontType":0,
+ "koreanText":"t+pazolite",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_daybyd",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_wii5op",
+ "japaneseText":"どきどき☆どんちゃん騒ぎ",
+ "japaneseFontType":0,
+ "englishUsText":"どきどき☆どんちゃん騒ぎ",
+ "englishUsFontType":0,
+ "chineseTText":"どきどき☆どんちゃん騒ぎ",
+ "chineseTFontType":0,
+ "koreanText":"どきどき☆どんちゃん騒ぎ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_gldnkm",
+ "japaneseText":"Winding Road",
+ "japaneseFontType":0,
+ "englishUsText":"Winding Road",
+ "englishUsFontType":0,
+ "chineseTText":"Winding Road",
+ "chineseTFontType":0,
+ "koreanText":"Winding Road",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_fdive",
+ "japaneseText":"FREEDOM DiVE↓",
+ "japaneseFontType":0,
+ "englishUsText":"FREEDOM DiVE↓",
+ "englishUsFontType":0,
+ "chineseTText":"FREEDOM DiVE↓",
+ "chineseTFontType":0,
+ "koreanText":"FREEDOM DiVE↓",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_mikugk",
+ "japaneseText":"初音ミクの激唱",
+ "japaneseFontType":0,
+ "englishUsText":"初音ミクの激唱",
+ "englishUsFontType":0,
+ "chineseTText":"初音ミクの激唱",
+ "chineseTFontType":0,
+ "koreanText":"初音ミクの激唱",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_kahata",
+ "japaneseText":"彼は誰時の誘惑",
+ "japaneseFontType":0,
+ "englishUsText":"彼は誰時の誘惑",
+ "englishUsFontType":0,
+ "chineseTText":"彼は誰時の誘惑",
+ "chineseTFontType":0,
+ "koreanText":"彼は誰時の誘惑",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_daybyd",
+ "japaneseText":"Day by Day!",
+ "japaneseFontType":0,
+ "englishUsText":"Day by Day!",
+ "englishUsFontType":0,
+ "chineseTText":"Day by Day!",
+ "chineseTFontType":0,
+ "koreanText":"Day by Day!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_wii5op",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"DOKI DOKI☆DON-chan SAWAGI",
+ "englishUsFontType":0,
+ "chineseTText":"怦然心動☆小咚騷動",
+ "chineseTFontType":1,
+ "koreanText":"DOKI DOKI☆DON-chan SAWAGI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_gldnkm",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_fdive",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mikugk",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"HATSUNE MIKU No Gekishou",
+ "englishUsFontType":0,
+ "chineseTText":"初音未來の激唱",
+ "chineseTFontType":1,
+ "koreanText":"하츠네 미쿠노 게키쇼오",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kahata",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"KAHATAREDOKI NO YUUWAKU",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"카와 다레도키노 유우와쿠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_daybyd",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_wii5op",
+ "japaneseText":"「どきどき☆どんちゃん騒ぎ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「DOKI DOKI☆DON-chan SAWAGI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「怦然心動☆小咚騷動」",
+ "chineseTFontType":1,
+ "koreanText":"「DOKI DOKI☆DON-chan SAWAGI」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_gldnkm",
+ "japaneseText":"「Winding Road」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Winding Road」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Winding Road」",
+ "chineseTFontType":1,
+ "koreanText":"「Winding Road」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_mikugk",
+ "japaneseText":"「初音ミクの激唱」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HATSUNE MIKU No Gekishou」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「初音未來の激唱」",
+ "chineseTFontType":1,
+ "koreanText":"「하츠네 미쿠노 게키쇼오」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_fdive",
+ "japaneseText":"「FREEDOM DiVE↓」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「FREEDOM DiVE↓」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「FREEDOM DiVE↓」",
+ "chineseTFontType":1,
+ "koreanText":"「FREEDOM DiVE↓」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_kahata",
+ "japaneseText":"「彼は誰時の誘惑」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「KAHATAREDOKI NO YUUWAKU」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「彼は誰時の誘惑」",
+ "chineseTFontType":1,
+ "koreanText":"「카와 다레도키노 유우와쿠」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_daybyd",
+ "japaneseText":"「Day by Day!」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Day by Day!」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Day by Day!」",
+ "chineseTFontType":1,
+ "koreanText":"「Day by Day!」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_wii5op",
+ "japaneseText":"「どきどき☆どんちゃん騒ぎ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「DOKI DOKI☆DON-chan SAWAGI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「怦然心動☆小咚騷動」",
+ "chineseTFontType":1,
+ "koreanText":"「DOKI DOKI☆DON-chan SAWAGI」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_gldnkm",
+ "japaneseText":"「Winding Road」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Winding Road」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Winding Road」",
+ "chineseTFontType":1,
+ "koreanText":"「Winding Road」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_mikugk",
+ "japaneseText":"「初音ミクの激唱」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HATSUNE MIKU No Gekishou」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「初音未來の激唱」",
+ "chineseTFontType":1,
+ "koreanText":"「하츠네 미쿠노 게키쇼오」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_fdive",
+ "japaneseText":"「FREEDOM DiVE↓」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「FREEDOM DiVE↓」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「FREEDOM DiVE↓」",
+ "chineseTFontType":1,
+ "koreanText":"「FREEDOM DiVE↓」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_kahata",
+ "japaneseText":"「彼は誰時の誘惑」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「KAHATAREDOKI NO YUUWAKU」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「彼は誰時の誘惑」",
+ "chineseTFontType":1,
+ "koreanText":"「카와 다레도키노 유우와쿠」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_daybyd",
+ "japaneseText":"「Day by Day!」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Day by Day!」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Day by Day!」",
+ "chineseTFontType":1,
+ "koreanText":"「Day by Day!」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_birthday",
+ "japaneseText":"お誕生日はじめました",
+ "japaneseFontType":0,
+ "englishUsText":"Began the Birthday Bash",
+ "englishUsFontType":0,
+ "chineseTText":"開始過生日",
+ "chineseTFontType":1,
+ "koreanText":"생일 페스티벌 시작했습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_birthdayex",
+ "japaneseText":"どんかつ お誕生日フェスの達人",
+ "japaneseFontType":0,
+ "englishUsText":"Master of DON-chan & KATSU-chan's B-day Bash",
+ "englishUsFontType":0,
+ "chineseTText":"小咚&小咔生日節慶達人",
+ "chineseTFontType":1,
+ "koreanText":"동이딱이 생일 페스티벌의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_birthday",
+ "japaneseText":"プレゼントちょーだい",
+ "japaneseFontType":0,
+ "englishUsText":"Presents, please!",
+ "englishUsFontType":0,
+ "chineseTText":"請給我禮物",
+ "chineseTFontType":1,
+ "koreanText":"선물 주세요",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_unicorn",
+ "japaneseText":"ユニコーン",
+ "japaneseFontType":0,
+ "englishUsText":"Unicorn",
+ "englishUsFontType":0,
+ "chineseTText":"獨角獸",
+ "chineseTFontType":1,
+ "koreanText":"유니콘",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_plushdoll",
+ "japaneseText":"ぬいぐるみ",
+ "japaneseFontType":0,
+ "englishUsText":"Plushie",
+ "englishUsFontType":0,
+ "chineseTText":"布偶裝",
+ "chineseTFontType":1,
+ "koreanText":"봉제 인형",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_birthday",
+ "japaneseText":"どんかつ お誕生日フェス",
+ "japaneseFontType":0,
+ "englishUsText":"DON-chan & KATSU-chan's Birthday Bash",
+ "englishUsFontType":0,
+ "chineseTText":"小咚&小咔生日節慶",
+ "chineseTFontType":1,
+ "koreanText":"동이딱이 생일 페스티벌",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_yukai",
+ "japaneseText":"ハレ晴レユカイ",
+ "japaneseFontType":0,
+ "englishUsText":"ハレ晴レユカイ",
+ "englishUsFontType":0,
+ "chineseTText":"ハレ晴レユカイ",
+ "chineseTFontType":0,
+ "koreanText":"ハレ晴レユカイ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_cls12r",
+ "japaneseText":"練習曲Op.10-4",
+ "japaneseFontType":0,
+ "englishUsText":"練習曲Op.10-4",
+ "englishUsFontType":0,
+ "chineseTText":"練習曲Op.10-4",
+ "chineseTFontType":0,
+ "koreanText":"練習曲Op.10-4",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mggre2",
+ "japaneseText":"ミュージック・リボルバー",
+ "japaneseFontType":0,
+ "englishUsText":"ミュージック・リボルバー",
+ "englishUsFontType":0,
+ "chineseTText":"ミュージック・リボルバー",
+ "chineseTFontType":0,
+ "koreanText":"ミュージック・リボルバー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_dlearn",
+ "japaneseText":"241ディープラーニング",
+ "japaneseFontType":0,
+ "englishUsText":"241ディープラーニング",
+ "englishUsFontType":0,
+ "chineseTText":"241ディープラーニング",
+ "chineseTFontType":0,
+ "koreanText":"241ディープラーニング",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_shikou",
+ "japaneseText":"紫煌ノ乱",
+ "japaneseFontType":0,
+ "englishUsText":"紫煌ノ乱",
+ "englishUsFontType":0,
+ "chineseTText":"紫煌ノ乱",
+ "chineseTFontType":0,
+ "koreanText":"紫煌ノ乱",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_akbftc",
+ "japaneseText":"恋するフォーチュンクッキー",
+ "japaneseFontType":0,
+ "englishUsText":"恋するフォーチュンクッキー",
+ "englishUsFontType":0,
+ "chineseTText":"恋するフォーチュンクッキー",
+ "chineseTFontType":0,
+ "koreanText":"恋するフォーチュンクッキー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_saibou",
+ "japaneseText":"ミッション! 健・康・第・イチ",
+ "japaneseFontType":0,
+ "englishUsText":"ミッション! 健・康・第・イチ",
+ "englishUsFontType":0,
+ "chineseTText":"ミッション! 健・康・第・イチ",
+ "chineseTFontType":0,
+ "koreanText":"ミッション! 健・康・第・イチ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kim4ra",
+ "japaneseText":"君の知らない物語",
+ "japaneseFontType":0,
+ "englishUsText":"君の知らない物語",
+ "englishUsFontType":0,
+ "chineseTText":"君の知らない物語",
+ "chineseTFontType":0,
+ "koreanText":"君の知らない物語",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_yukai",
+ "japaneseText":"「涼宮ハルヒの憂鬱」より",
+ "japaneseFontType":0,
+ "englishUsText":"「涼宮ハルヒの憂鬱」より",
+ "englishUsFontType":0,
+ "chineseTText":"「涼宮ハルヒの憂鬱」より",
+ "chineseTFontType":0,
+ "koreanText":"「涼宮ハルヒの憂鬱」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_mggre2",
+ "japaneseText":"「ミュージックガンガン!2」より",
+ "japaneseFontType":0,
+ "englishUsText":"「ミュージックガンガン!2」より",
+ "englishUsFontType":0,
+ "chineseTText":"「ミュージックガンガン!2」より",
+ "chineseTFontType":0,
+ "koreanText":"「ミュージックガンガン!2」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_shikou",
+ "japaneseText":"世阿弥",
+ "japaneseFontType":0,
+ "englishUsText":"世阿弥",
+ "englishUsFontType":0,
+ "chineseTText":"世阿弥",
+ "chineseTFontType":0,
+ "koreanText":"世阿弥",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_saibou",
+ "japaneseText":"「はたらく細胞」より",
+ "japaneseFontType":0,
+ "englishUsText":"「はたらく細胞」より",
+ "englishUsFontType":0,
+ "chineseTText":"「はたらく細胞」より",
+ "chineseTFontType":0,
+ "koreanText":"「はたらく細胞」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_kim4ra",
+ "japaneseText":"「化物語」より",
+ "japaneseFontType":0,
+ "englishUsText":"「化物語」より",
+ "englishUsFontType":0,
+ "chineseTText":"「化物語」より",
+ "chineseTFontType":0,
+ "koreanText":"「化物語」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_yukai",
+ "japaneseText":"ハレ晴レユカイ",
+ "japaneseFontType":0,
+ "englishUsText":"ハレ晴レユカイ",
+ "englishUsFontType":0,
+ "chineseTText":"ハレ晴レユカイ",
+ "chineseTFontType":0,
+ "koreanText":"ハレ晴レユカイ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_cls12r",
+ "japaneseText":"練習曲Op.10-4",
+ "japaneseFontType":0,
+ "englishUsText":"練習曲Op.10-4",
+ "englishUsFontType":0,
+ "chineseTText":"練習曲Op.10-4",
+ "chineseTFontType":0,
+ "koreanText":"練習曲Op.10-4",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_mggre2",
+ "japaneseText":"ミュージック・リボルバー",
+ "japaneseFontType":0,
+ "englishUsText":"ミュージック・リボルバー",
+ "englishUsFontType":0,
+ "chineseTText":"ミュージック・リボルバー",
+ "chineseTFontType":0,
+ "koreanText":"ミュージック・リボルバー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_dlearn",
+ "japaneseText":"241ディープラーニング",
+ "japaneseFontType":0,
+ "englishUsText":"241ディープラーニング",
+ "englishUsFontType":0,
+ "chineseTText":"241ディープラーニング",
+ "chineseTFontType":0,
+ "koreanText":"241ディープラーニング",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_shikou",
+ "japaneseText":"紫煌ノ乱",
+ "japaneseFontType":0,
+ "englishUsText":"紫煌ノ乱",
+ "englishUsFontType":0,
+ "chineseTText":"紫煌ノ乱",
+ "chineseTFontType":0,
+ "koreanText":"紫煌ノ乱",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_akbftc",
+ "japaneseText":"恋するフォーチュンクッキー",
+ "japaneseFontType":0,
+ "englishUsText":"恋するフォーチュンクッキー",
+ "englishUsFontType":0,
+ "chineseTText":"恋するフォーチュンクッキー",
+ "chineseTFontType":0,
+ "koreanText":"恋するフォーチュンクッキー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_saibou",
+ "japaneseText":"ミッション! 健・康・第・イチ",
+ "japaneseFontType":0,
+ "englishUsText":"ミッション! 健・康・第・イチ",
+ "englishUsFontType":0,
+ "chineseTText":"ミッション! 健・康・第・イチ",
+ "chineseTFontType":0,
+ "koreanText":"ミッション! 健・康・第・イチ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_kim4ra",
+ "japaneseText":"君の知らない物語",
+ "japaneseFontType":0,
+ "englishUsText":"君の知らない物語",
+ "englishUsFontType":0,
+ "chineseTText":"君の知らない物語",
+ "chineseTFontType":0,
+ "koreanText":"君の知らない物語",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_yukai",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Hare Hare Yukai",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"Hare Hare Yukai",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_cls12r",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Etude Op.10, No.4",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"연습곡 Op.10, 4번",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mggre2",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"MUSIC REVOLVER",
+ "englishUsFontType":0,
+ "chineseTText":"MUSIC REVOLVER",
+ "chineseTFontType":1,
+ "koreanText":"MUSIC REVOLVER",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_dlearn",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"241 DEEP LEARNING",
+ "englishUsFontType":0,
+ "chineseTText":"241深度學習",
+ "chineseTFontType":1,
+ "koreanText":"241 DEEP LEARNING",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_shikou",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"SHIKOU NO RAN",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"시코우노 란",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_akbftc",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Koisuru Fortune Cookie",
+ "englishUsFontType":0,
+ "chineseTText":"Koisuru Fortune Cookie",
+ "chineseTFontType":1,
+ "koreanText":"Koisuru Fortune Cookie",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_saibou",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Mission! Ken.Kou.Dai.Ichi",
+ "englishUsFontType":0,
+ "chineseTText":"使命! 健康第一",
+ "chineseTFontType":1,
+ "koreanText":"미션 건강제일!",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kim4ra",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Kimino Shiranai Monogatari",
+ "englishUsFontType":0,
+ "chineseTText":"你不知道的事",
+ "chineseTFontType":1,
+ "koreanText":"Kimino Shiranai Monogatari",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_yukai",
+ "japaneseText":"「ハレ晴レユカイ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Hare Hare Yukai」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「ハレ晴レユカイ」",
+ "chineseTFontType":1,
+ "koreanText":"「Hare Hare Yukai」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_cls12r",
+ "japaneseText":"「練習曲Op.10-4」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Etude Op.10, No.4」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「練習曲Op.10-4」",
+ "chineseTFontType":1,
+ "koreanText":"「연습곡 Op.10, 4번」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_mggre2",
+ "japaneseText":"「ミュージック・リボルバー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「MUSIC REVOLVER」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「MUSIC REVOLVER」",
+ "chineseTFontType":1,
+ "koreanText":"「MUSIC REVOLVER」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_dlearn",
+ "japaneseText":"「241ディープラーニング」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「241 DEEP LEARNING」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「241深度學習」",
+ "chineseTFontType":1,
+ "koreanText":"「241 DEEP LEARNING」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_shikou",
+ "japaneseText":"「紫煌ノ乱」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SHIKOU NO RAN」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「紫煌ノ乱」",
+ "chineseTFontType":1,
+ "koreanText":"「시코우노 란」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_akbftc",
+ "japaneseText":"「恋するフォーチュンクッキー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Koisuru Fortune Cookie」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Koisuru Fortune Cookie」",
+ "chineseTFontType":1,
+ "koreanText":"「Koisuru Fortune Cookie」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_saibou",
+ "japaneseText":"「ミッション! 健・康・第・イチ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Mission! Ken.Kou.Dai.Ichi」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「使命! 健康第一」",
+ "chineseTFontType":1,
+ "koreanText":"「미션 건강제일!」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_kim4ra",
+ "japaneseText":"「君の知らない物語」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Kimino Shiranai Monogatari」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「你不知道的事」",
+ "chineseTFontType":1,
+ "koreanText":"「Kimino Shiranai Monogatari」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_yukai",
+ "japaneseText":"「ハレ晴レユカイ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Hare Hare Yukai」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「ハレ晴レユカイ」",
+ "chineseTFontType":1,
+ "koreanText":"「Hare Hare Yukai」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_cls12r",
+ "japaneseText":"「練習曲Op.10-4」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Etude Op.10, No.4」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「練習曲Op.10-4」",
+ "chineseTFontType":1,
+ "koreanText":"「연습곡 Op.10, 4번」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_mggre2",
+ "japaneseText":"「ミュージック・リボルバー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「MUSIC REVOLVER」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「MUSIC REVOLVER」",
+ "chineseTFontType":1,
+ "koreanText":"「MUSIC REVOLVER」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_dlearn",
+ "japaneseText":"「241ディープラーニング」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「241 DEEP LEARNING」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「241深度學習」",
+ "chineseTFontType":1,
+ "koreanText":"「241 DEEP LEARNING」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_shikou",
+ "japaneseText":"「紫煌ノ乱」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SHIKOU NO RAN」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「紫煌ノ乱」",
+ "chineseTFontType":1,
+ "koreanText":"「시코우노 란」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_akbftc",
+ "japaneseText":"「恋するフォーチュンクッキー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Koisuru Fortune Cookie」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Koisuru Fortune Cookie」",
+ "chineseTFontType":1,
+ "koreanText":"「Koisuru Fortune Cookie」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_saibou",
+ "japaneseText":"「ミッション! 健・康・第・イチ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Mission! Ken.Kou.Dai.Ichi」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「使命! 健康第一」",
+ "chineseTFontType":1,
+ "koreanText":"「미션 건강제일!」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_kim4ra",
+ "japaneseText":"「君の知らない物語」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Kimino Shiranai Monogatari」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「你不知道的事」",
+ "chineseTFontType":1,
+ "koreanText":"「Kimino Shiranai Monogatari」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_spcsam",
+ "japaneseText":"宇宙SAMURAI",
+ "japaneseFontType":0,
+ "englishUsText":"宇宙SAMURAI",
+ "englishUsFontType":0,
+ "chineseTText":"宇宙SAMURAI",
+ "chineseTFontType":0,
+ "koreanText":"宇宙SAMURAI",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_xjapa2",
+ "japaneseText":"Silent Jealousy",
+ "japaneseFontType":0,
+ "englishUsText":"Silent Jealousy",
+ "englishUsFontType":0,
+ "chineseTText":"Silent Jealousy",
+ "chineseTFontType":0,
+ "koreanText":"Silent Jealousy",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_r4nak",
+ "japaneseText":"Naked Glow",
+ "japaneseFontType":0,
+ "englishUsText":"Naked Glow",
+ "englishUsFontType":0,
+ "chineseTText":"Naked Glow",
+ "chineseTFontType":0,
+ "koreanText":"Naked Glow",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_struin",
+ "japaneseText":"セイクリッド ルイン",
+ "japaneseFontType":0,
+ "englishUsText":"セイクリッド ルイン",
+ "englishUsFontType":0,
+ "chineseTText":"セイクリッド ルイン",
+ "chineseTFontType":0,
+ "koreanText":"セイクリッド ルイン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_iwantu",
+ "japaneseText":"哀 want U",
+ "japaneseFontType":0,
+ "englishUsText":"哀 want U",
+ "englishUsFontType":0,
+ "chineseTText":"哀 want U",
+ "chineseTFontType":0,
+ "koreanText":"哀 want U",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_iswaze",
+ "japaneseText":"意識のワーゼ",
+ "japaneseFontType":0,
+ "englishUsText":"意識のワーゼ",
+ "englishUsFontType":0,
+ "chineseTText":"意識のワーゼ",
+ "chineseTFontType":0,
+ "koreanText":"意識のワーゼ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_toymat",
+ "japaneseText":"トイマチック☆パレード!!",
+ "japaneseFontType":0,
+ "englishUsText":"トイマチック☆パレード!!",
+ "englishUsFontType":0,
+ "chineseTText":"トイマチック☆パレード!!",
+ "chineseTFontType":0,
+ "koreanText":"トイマチック☆パレード!!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_spcsam",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_r4nak",
+ "japaneseText":"「R4 ‐RIDGE RACER TYPE4‐」より",
+ "japaneseFontType":0,
+ "englishUsText":"「R4 ‐RIDGE RACER TYPE4‐」より",
+ "englishUsFontType":0,
+ "chineseTText":"「R4 ‐RIDGE RACER TYPE4‐」より",
+ "chineseTFontType":0,
+ "koreanText":"「R4 ‐RIDGE RACER TYPE4‐」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_iwantu",
+ "japaneseText":"かねこちはる",
+ "japaneseFontType":0,
+ "englishUsText":"かねこちはる",
+ "englishUsFontType":0,
+ "chineseTText":"かねこちはる",
+ "chineseTFontType":0,
+ "koreanText":"かねこちはる",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_iswaze",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_toymat",
+ "japaneseText":"DJ Genki",
+ "japaneseFontType":0,
+ "englishUsText":"DJ Genki",
+ "englishUsFontType":0,
+ "chineseTText":"DJ Genki",
+ "chineseTFontType":0,
+ "koreanText":"DJ Genki",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_spcsam",
+ "japaneseText":"宇宙SAMURAI",
+ "japaneseFontType":0,
+ "englishUsText":"宇宙SAMURAI",
+ "englishUsFontType":0,
+ "chineseTText":"宇宙SAMURAI",
+ "chineseTFontType":0,
+ "koreanText":"宇宙SAMURAI",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_xjapa2",
+ "japaneseText":"Silent Jealousy",
+ "japaneseFontType":0,
+ "englishUsText":"Silent Jealousy",
+ "englishUsFontType":0,
+ "chineseTText":"Silent Jealousy",
+ "chineseTFontType":0,
+ "koreanText":"Silent Jealousy",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_r4nak",
+ "japaneseText":"Naked Glow",
+ "japaneseFontType":0,
+ "englishUsText":"Naked Glow",
+ "englishUsFontType":0,
+ "chineseTText":"Naked Glow",
+ "chineseTFontType":0,
+ "koreanText":"Naked Glow",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_struin",
+ "japaneseText":"セイクリッド ルイン",
+ "japaneseFontType":0,
+ "englishUsText":"セイクリッド ルイン",
+ "englishUsFontType":0,
+ "chineseTText":"セイクリッド ルイン",
+ "chineseTFontType":0,
+ "koreanText":"セイクリッド ルイン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_iwantu",
+ "japaneseText":"哀 want U",
+ "japaneseFontType":0,
+ "englishUsText":"哀 want U",
+ "englishUsFontType":0,
+ "chineseTText":"哀 want U",
+ "chineseTFontType":0,
+ "koreanText":"哀 want U",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_iswaze",
+ "japaneseText":"意識のワーゼ",
+ "japaneseFontType":0,
+ "englishUsText":"意識のワーゼ",
+ "englishUsFontType":0,
+ "chineseTText":"意識のワーゼ",
+ "chineseTFontType":0,
+ "koreanText":"意識のワーゼ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_toymat",
+ "japaneseText":"トイマチック☆パレード!!",
+ "japaneseFontType":0,
+ "englishUsText":"トイマチック☆パレード!!",
+ "englishUsFontType":0,
+ "chineseTText":"トイマチック☆パレード!!",
+ "chineseTFontType":0,
+ "koreanText":"トイマチック☆パレード!!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_spcsam",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"UCHU SAMURAI",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"우주SAMURAI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_xjapa2",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_r4nak",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_struin",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Sacred Ruin",
+ "englishUsFontType":0,
+ "chineseTText":"Sacred Ruin",
+ "chineseTFontType":1,
+ "koreanText":"Sacred Ruin",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_iwantu",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"AI want U",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"아이 want U",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_iswaze",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"ISHIKI NO WA/ZE",
+ "englishUsFontType":0,
+ "chineseTText":"ISHIKI NO WA/ZE",
+ "chineseTFontType":1,
+ "koreanText":"이시키노 와제",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_toymat",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"TOYMATIC☆PARADE!!",
+ "englishUsFontType":0,
+ "chineseTText":"TOYMATIC☆PARADE!!",
+ "chineseTFontType":1,
+ "koreanText":"TOYMATIC☆PARADE!!",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_spcsam",
+ "japaneseText":"「宇宙SAMURAI」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「UCHU SAMURAI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「宇宙SAMURAI」",
+ "chineseTFontType":1,
+ "koreanText":"「우주SAMURAI」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_xjapa2",
+ "japaneseText":"「Silent Jealousy」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Silent Jealousy」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Silent Jealousy」",
+ "chineseTFontType":1,
+ "koreanText":"「Silent Jealousy」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_r4nak",
+ "japaneseText":"「Naked Glow」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Naked Glow」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Naked Glow」",
+ "chineseTFontType":1,
+ "koreanText":"「Naked Glow」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_struin",
+ "japaneseText":"「セイクリッド ルイン」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Sacred Ruin」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Sacred Ruin」",
+ "chineseTFontType":1,
+ "koreanText":"「Sacred Ruin」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_iwantu",
+ "japaneseText":"「哀 want U」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「AI want U」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「哀 want U」",
+ "chineseTFontType":1,
+ "koreanText":"「아이 want U」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_iswaze",
+ "japaneseText":"「意識のワーゼ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「ISHIKI NO WA/ZE」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「ISHIKI NO WA/ZE」",
+ "chineseTFontType":1,
+ "koreanText":"「이시키노 와제」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_toymat",
+ "japaneseText":"「トイマチック☆パレード!!」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「TOYMATIC☆PARADE!!」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「TOYMATIC☆PARADE!!」",
+ "chineseTFontType":1,
+ "koreanText":"「TOYMATIC☆PARADE!!」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_spcsam",
+ "japaneseText":"「宇宙SAMURAI」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「UCHU SAMURAI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「宇宙SAMURAI」",
+ "chineseTFontType":1,
+ "koreanText":"「우주SAMURAI」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_xjapa2",
+ "japaneseText":"「Silent Jealousy」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Silent Jealousy」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Silent Jealousy」",
+ "chineseTFontType":1,
+ "koreanText":"「Silent Jealousy」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_r4nak",
+ "japaneseText":"「Naked Glow」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Naked Glow」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Naked Glow」",
+ "chineseTFontType":1,
+ "koreanText":"「Naked Glow」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_struin",
+ "japaneseText":"「セイクリッド ルイン」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Sacred Ruin」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Sacred Ruin」",
+ "chineseTFontType":1,
+ "koreanText":"「Sacred Ruin」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_iwantu",
+ "japaneseText":"「哀 want U」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「AI want U」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「哀 want U」",
+ "chineseTFontType":1,
+ "koreanText":"「아이 want U」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_iswaze",
+ "japaneseText":"「意識のワーゼ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「ISHIKI NO WA/ZE」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「ISHIKI NO WA/ZE」",
+ "chineseTFontType":1,
+ "koreanText":"「이시키노 와제」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_toymat",
+ "japaneseText":"「トイマチック☆パレード!!」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「TOYMATIC☆PARADE!!」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「TOYMATIC☆PARADE!!」",
+ "chineseTFontType":1,
+ "koreanText":"「TOYMATIC☆PARADE!!」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack24",
+ "japaneseText":"ドンだーパックVol.24",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.24",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.24",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.24",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack24",
+ "japaneseText":"ドンだーパック\nVol.24",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol.24",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.24",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.24",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack23",
+ "japaneseText":"ドンだーパックVol.23",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.23",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.23",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.23",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack23",
+ "japaneseText":"ドンだーパック\nVol.23",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol.23",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.23",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.23",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack22",
+ "japaneseText":"ドンだーパックVol.22",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.22",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.22",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.22",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack22",
+ "japaneseText":"ドンだーパック\nVol.22",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol.22",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.22",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.22",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack21",
+ "japaneseText":"ドンだーパックVol.21",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.21",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.21",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.21",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack21",
+ "japaneseText":"ドンだーパック\nVol.21",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol.21",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.21",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.21",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack20",
+ "japaneseText":"ドンだーパックVol.20",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.20",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.20",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.20",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack20",
+ "japaneseText":"ドンだーパック\nVol.20",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol.20",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.20",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.20",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack19",
+ "japaneseText":"ドンだーパックVol.19",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.19",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.19",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.19",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack19",
+ "japaneseText":"ドンだーパック\nVol.19",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol.19",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.19",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.19",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_season04",
+ "japaneseText":"ドンだーパック\nVol.19~Vol.24\nセット",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol.19-24 Set",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol 19~24\nSet",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.19~Vol.24\n세트",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_spacesamurai",
+ "japaneseText":"いざ尋常に勝負!",
+ "japaneseFontType":0,
+ "englishUsText":"Now then, let's have a fair fight!",
+ "englishUsFontType":0,
+ "chineseTText":"現在一決勝負!",
+ "chineseTFontType":1,
+ "koreanText":"정정당당히 승부!",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_spacesamurai",
+ "japaneseText":"宇宙SAMURAI祭はじめました",
+ "japaneseFontType":0,
+ "englishUsText":"Began the UCHU SAMURAI Showdown",
+ "englishUsFontType":0,
+ "chineseTText":"開始遊玩宇宙SAMURAI祭典",
+ "chineseTFontType":1,
+ "koreanText":"우주SAMURAI 시작했습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_kirisute",
+ "japaneseText":"斬り捨て御免",
+ "japaneseFontType":0,
+ "englishUsText":"KIRI-SUTE-GOMEN",
+ "englishUsFontType":0,
+ "chineseTText":"抱歉斬了你",
+ "chineseTFontType":1,
+ "koreanText":"무사의 특권",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_spacesamuraiex",
+ "japaneseText":"宇宙SAMURAI祭の達人",
+ "japaneseFontType":0,
+ "englishUsText":"UCHU SAMURAI Showdown Master",
+ "englishUsFontType":0,
+ "chineseTText":"宇宙SAMURAI祭典達人",
+ "chineseTFontType":1,
+ "koreanText":"우주SAMURAI 축제의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_ochimusya",
+ "japaneseText":"落武者",
+ "japaneseFontType":0,
+ "englishUsText":"Shameful Deserter",
+ "englishUsFontType":0,
+ "chineseTText":"落難武士",
+ "chineseTFontType":1,
+ "koreanText":"패배한 무사",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_musya",
+ "japaneseText":"武者",
+ "japaneseFontType":0,
+ "englishUsText":"True Warrior",
+ "englishUsFontType":0,
+ "chineseTText":"武士",
+ "chineseTFontType":1,
+ "koreanText":"무사",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_guardian",
+ "japaneseText":"ガーディアン",
+ "japaneseFontType":0,
+ "englishUsText":"Guardian",
+ "englishUsFontType":0,
+ "chineseTText":"守護者",
+ "chineseTFontType":1,
+ "koreanText":"가디언",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_spacesamurai",
+ "japaneseText":"宇宙SAMURAI祭",
+ "japaneseFontType":0,
+ "englishUsText":"UCHU SAMURAI Showdown",
+ "englishUsFontType":0,
+ "chineseTText":"宇宙SAMURAI祭典",
+ "chineseTFontType":1,
+ "koreanText":"우주SAMURAI 축제",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_revived",
+ "japaneseText":"復刻",
+ "japaneseFontType":0,
+ "englishUsText":"Revival!",
+ "englishUsFontType":0,
+ "chineseTText":"復刻",
+ "chineseTFontType":1,
+ "koreanText":"복각",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_revived_info",
+ "japaneseText":"※復刻ごほうびを獲得済みの場合は、ごほうびの代わりにFPが+10されます",
+ "japaneseFontType":0,
+ "englishUsText":"*If the player has already received a Revival Award, they will instead receive 10FP",
+ "englishUsFontType":0,
+ "chineseTText":"※已獲得復刻獎賞時,FP即會+10代替獎賞。",
+ "chineseTFontType":1,
+ "koreanText":"※복각 보상을 이미 획득한 경우, 보상 대신 FP가 +10 됩니다.",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_noshou",
+ "japaneseText":"脳漿炸裂ガール",
+ "japaneseFontType":0,
+ "englishUsText":"脳漿炸裂ガール",
+ "englishUsFontType":0,
+ "chineseTText":"脳漿炸裂ガール",
+ "chineseTFontType":0,
+ "koreanText":"脳漿炸裂ガール",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ac7roc",
+ "japaneseText":"Roca Roja",
+ "japaneseFontType":0,
+ "englishUsText":"Roca Roja",
+ "englishUsFontType":0,
+ "chineseTText":"Roca Roja",
+ "chineseTFontType":0,
+ "koreanText":"Roca Roja",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ikaika",
+ "japaneseText":"行かないでイカロス",
+ "japaneseFontType":0,
+ "englishUsText":"行かないでイカロス",
+ "englishUsFontType":0,
+ "chineseTText":"行かないでイカロス",
+ "chineseTFontType":0,
+ "koreanText":"行かないでイカロス",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ds3bs2",
+ "japaneseText":"大多羅捌伍伍壱",
+ "japaneseFontType":0,
+ "englishUsText":"大多羅捌伍伍壱",
+ "englishUsFontType":0,
+ "chineseTText":"大多羅捌伍伍壱",
+ "chineseTFontType":0,
+ "koreanText":"大多羅捌伍伍壱",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_last2k",
+ "japaneseText":"万戈イム-一ノ十",
+ "japaneseFontType":0,
+ "englishUsText":"万戈イム-一ノ十",
+ "englishUsFontType":0,
+ "chineseTText":"万戈イム-一ノ十",
+ "chineseTFontType":0,
+ "koreanText":"万戈イム-一ノ十",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_noshou",
+ "japaneseText":"れるりり",
+ "japaneseFontType":0,
+ "englishUsText":"れるりり",
+ "englishUsFontType":0,
+ "chineseTText":"れるりり",
+ "chineseTFontType":0,
+ "koreanText":"れるりり",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_ac7roc",
+ "japaneseText":"「ACE COMBAT 7: SKIES UNKNOWN」より",
+ "japaneseFontType":0,
+ "englishUsText":"「ACE COMBAT 7: SKIES UNKNOWN」より",
+ "englishUsFontType":0,
+ "chineseTText":"「ACE COMBAT 7: SKIES UNKNOWN」より",
+ "chineseTFontType":0,
+ "koreanText":"「ACE COMBAT 7: SKIES UNKNOWN」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_ikaika",
+ "japaneseText":"AJURIKA",
+ "japaneseFontType":0,
+ "englishUsText":"AJURIKA",
+ "englishUsFontType":0,
+ "chineseTText":"AJURIKA",
+ "chineseTFontType":0,
+ "koreanText":"AJURIKA",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_ds3bs2",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_last2k",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_noshou",
+ "japaneseText":"脳漿炸裂ガール",
+ "japaneseFontType":0,
+ "englishUsText":"脳漿炸裂ガール",
+ "englishUsFontType":0,
+ "chineseTText":"脳漿炸裂ガール",
+ "chineseTFontType":0,
+ "koreanText":"脳漿炸裂ガール",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_ac7roc",
+ "japaneseText":"Roca Roja",
+ "japaneseFontType":0,
+ "englishUsText":"Roca Roja",
+ "englishUsFontType":0,
+ "chineseTText":"Roca Roja",
+ "chineseTFontType":0,
+ "koreanText":"Roca Roja",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_ikaika",
+ "japaneseText":"行かないでイカロス",
+ "japaneseFontType":0,
+ "englishUsText":"行かないでイカロス",
+ "englishUsFontType":0,
+ "chineseTText":"行かないでイカロス",
+ "chineseTFontType":0,
+ "koreanText":"行かないでイカロス",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_ds3bs2",
+ "japaneseText":"大多羅捌伍伍壱",
+ "japaneseFontType":0,
+ "englishUsText":"大多羅捌伍伍壱",
+ "englishUsFontType":0,
+ "chineseTText":"大多羅捌伍伍壱",
+ "chineseTFontType":0,
+ "koreanText":"大多羅捌伍伍壱",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_last2k",
+ "japaneseText":"万戈イム-一ノ十",
+ "japaneseFontType":0,
+ "englishUsText":"万戈イム-一ノ十",
+ "englishUsFontType":0,
+ "chineseTText":"万戈イム-一ノ十",
+ "chineseTFontType":0,
+ "koreanText":"万戈イム-一ノ十",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_noshou",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"NOU SHOU SAKURETSU GIRL",
+ "englishUsFontType":0,
+ "chineseTText":"脳漿炸裂GIRL",
+ "chineseTFontType":1,
+ "koreanText":"노쇼사쿠레츠GIRL",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ac7roc",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ikaika",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Ikanaide Ikaros",
+ "englishUsFontType":0,
+ "chineseTText":"伊卡洛斯不要走",
+ "chineseTFontType":1,
+ "koreanText":"이카나이데 이카로스",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ds3bs2",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Daidara 8551",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"Daidara 8551",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_last2k",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"JOUBUTSU 2000",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"죠우부츠니센",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_noshou",
+ "japaneseText":"「脳漿炸裂ガール」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「NOU SHOU SAKURETSU GIRL」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「脳漿炸裂GIRL」",
+ "chineseTFontType":1,
+ "koreanText":"「노쇼사쿠레츠GIRL」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_ac7roc",
+ "japaneseText":"「Roca Roja」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Roca Roja」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Roca Roja」",
+ "chineseTFontType":1,
+ "koreanText":"「Roca Roja」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_ikaika",
+ "japaneseText":"「行かないでイカロス」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Ikanaide Ikaros」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「伊卡洛斯不要走」",
+ "chineseTFontType":1,
+ "koreanText":"「이카나이데 이카로스」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_ds3bs2",
+ "japaneseText":"「大多羅捌伍伍壱」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Daidara 8551」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「大多羅捌伍伍壱」",
+ "chineseTFontType":1,
+ "koreanText":"「Daidara 8551」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_last2k",
+ "japaneseText":"「万戈イム-一ノ十」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「JOUBUTSU 2000」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「万戈イム-一ノ十」",
+ "chineseTFontType":1,
+ "koreanText":"「죠우부츠니센」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_noshou",
+ "japaneseText":"「脳漿炸裂ガール」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「NOU SHOU SAKURETSU GIRL」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「脳漿炸裂GIRL」",
+ "chineseTFontType":1,
+ "koreanText":"「노쇼사쿠레츠GIRL」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_ac7roc",
+ "japaneseText":"「Roca Roja」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Roca Roja」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Roca Roja」",
+ "chineseTFontType":1,
+ "koreanText":"「Roca Roja」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_ikaika",
+ "japaneseText":"「行かないでイカロス」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Ikanaide Ikaros」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「伊卡洛斯不要走」",
+ "chineseTFontType":1,
+ "koreanText":"「이카나이데 이카로스」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_ds3bs2",
+ "japaneseText":"「大多羅捌伍伍壱」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Daidara 8551」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「大多羅捌伍伍壱」",
+ "chineseTFontType":1,
+ "koreanText":"「Daidara 8551」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_last2k",
+ "japaneseText":"「万戈イム-一ノ十」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「JOUBUTSU 2000」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「万戈イム-一ノ十」",
+ "chineseTFontType":1,
+ "koreanText":"「죠우부츠니센」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_natsumono",
+ "japaneseText":"夏を楽しむドン!",
+ "japaneseFontType":0,
+ "englishUsText":"C'mon, sun's out, drums out!",
+ "englishUsFontType":0,
+ "chineseTText":"享受夏天咚!",
+ "chineseTFontType":1,
+ "koreanText":"여름을 즐기자쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_natsumono",
+ "japaneseText":"ナツモノ☆フェスはじめました",
+ "japaneseFontType":0,
+ "englishUsText":"Began NATSUMONO☆ Fest",
+ "englishUsFontType":0,
+ "chineseTText":"開始遊玩夏季衣著☆節慶",
+ "chineseTFontType":1,
+ "koreanText":"나츠모노☆페스 시작했습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_natsumonoex",
+ "japaneseText":"ナツモノ☆フェスの達人",
+ "japaneseFontType":0,
+ "englishUsText":"NATSUMONO☆ Fest Master",
+ "englishUsFontType":0,
+ "chineseTText":"夏季衣著☆節慶達人",
+ "chineseTFontType":1,
+ "koreanText":"나츠모노☆페스의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_suika",
+ "japaneseText":"スイカ",
+ "japaneseFontType":0,
+ "englishUsText":"Watermelon",
+ "englishUsFontType":0,
+ "chineseTText":"西瓜",
+ "chineseTFontType":1,
+ "koreanText":"수박",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_himawari",
+ "japaneseText":"ひまわり",
+ "japaneseFontType":0,
+ "englishUsText":"Sunflower",
+ "englishUsFontType":0,
+ "chineseTText":"向日葵",
+ "chineseTFontType":1,
+ "koreanText":"해바라기",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_vacation",
+ "japaneseText":"バカンス",
+ "japaneseFontType":0,
+ "englishUsText":"Vacation",
+ "englishUsFontType":0,
+ "chineseTText":"渡假",
+ "chineseTFontType":1,
+ "koreanText":"바캉스",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_summerVacation",
+ "japaneseText":"夏休み",
+ "japaneseFontType":0,
+ "englishUsText":"Summer Holidays",
+ "englishUsFontType":0,
+ "chineseTText":"暑假",
+ "chineseTFontType":1,
+ "koreanText":"여름방학",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_natsumono",
+ "japaneseText":"ナツモノ☆フェス",
+ "japaneseFontType":0,
+ "englishUsText":"NATSUMONO☆ Fest",
+ "englishUsFontType":0,
+ "chineseTText":"夏季衣著☆節慶",
+ "chineseTFontType":1,
+ "koreanText":"나츠모노☆페스",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_72mono",
+ "japaneseText":"ナツモノ☆",
+ "japaneseFontType":0,
+ "englishUsText":"ナツモノ☆",
+ "englishUsFontType":0,
+ "chineseTText":"ナツモノ☆",
+ "chineseTFontType":0,
+ "koreanText":"ナツモノ☆",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_clscpr",
+ "japaneseText":"クープランの墓",
+ "japaneseFontType":0,
+ "englishUsText":"クープランの墓",
+ "englishUsFontType":0,
+ "chineseTText":"クープランの墓",
+ "chineseTFontType":0,
+ "koreanText":"クープランの墓",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_wblade",
+ "japaneseText":"Rising",
+ "japaneseFontType":0,
+ "englishUsText":"Rising",
+ "englishUsFontType":0,
+ "chineseTText":"Rising",
+ "chineseTFontType":0,
+ "koreanText":"Rising",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_behemo",
+ "japaneseText":"Behemoth",
+ "japaneseFontType":0,
+ "englishUsText":"Behemoth",
+ "englishUsFontType":0,
+ "chineseTText":"Behemoth",
+ "chineseTFontType":0,
+ "koreanText":"Behemoth",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kuraim",
+ "japaneseText":"食らいむ!まうんとぱふぇ",
+ "japaneseFontType":0,
+ "englishUsText":"食らいむ!まうんとぱふぇ",
+ "englishUsFontType":0,
+ "chineseTText":"食らいむ!まうんとぱふぇ",
+ "chineseTFontType":0,
+ "koreanText":"食らいむ!まうんとぱふぇ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_carniv",
+ "japaneseText":"The Carnivorous Carnival",
+ "japaneseFontType":0,
+ "englishUsText":"The Carnivorous Carnival",
+ "englishUsFontType":0,
+ "chineseTText":"The Carnivorous Carnival",
+ "chineseTFontType":0,
+ "koreanText":"The Carnivorous Carnival",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_72mono",
+ "japaneseText":"たんきゅんデモクラシー",
+ "japaneseFontType":0,
+ "englishUsText":"たんきゅんデモクラシー",
+ "englishUsFontType":0,
+ "chineseTText":"たんきゅんデモクラシー",
+ "chineseTFontType":0,
+ "koreanText":"たんきゅんデモクラシー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_clscpr",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_wblade",
+ "japaneseText":"「ウォリアーブレード」より",
+ "japaneseFontType":0,
+ "englishUsText":"「ウォリアーブレード」より",
+ "englishUsFontType":0,
+ "chineseTText":"「ウォリアーブレード」より",
+ "chineseTFontType":0,
+ "koreanText":"「ウォリアーブレード」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_behemo",
+ "japaneseText":"DJ Myosuke",
+ "japaneseFontType":0,
+ "englishUsText":"DJ Myosuke",
+ "englishUsFontType":0,
+ "chineseTText":"DJ Myosuke",
+ "chineseTFontType":0,
+ "koreanText":"DJ Myosuke",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_kuraim",
+ "japaneseText":"unatra",
+ "japaneseFontType":0,
+ "englishUsText":"unatra",
+ "englishUsFontType":0,
+ "chineseTText":"unatra",
+ "chineseTFontType":0,
+ "koreanText":"unatra",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_carniv",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_72mono",
+ "japaneseText":"ナツモノ☆",
+ "japaneseFontType":0,
+ "englishUsText":"ナツモノ☆",
+ "englishUsFontType":0,
+ "chineseTText":"ナツモノ☆",
+ "chineseTFontType":0,
+ "koreanText":"ナツモノ☆",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_clscpr",
+ "japaneseText":"クープランの墓",
+ "japaneseFontType":0,
+ "englishUsText":"クープランの墓",
+ "englishUsFontType":0,
+ "chineseTText":"クープランの墓",
+ "chineseTFontType":0,
+ "koreanText":"クープランの墓",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_wblade",
+ "japaneseText":"Rising",
+ "japaneseFontType":0,
+ "englishUsText":"Rising",
+ "englishUsFontType":0,
+ "chineseTText":"Rising",
+ "chineseTFontType":0,
+ "koreanText":"Rising",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_behemo",
+ "japaneseText":"Behemoth",
+ "japaneseFontType":0,
+ "englishUsText":"Behemoth",
+ "englishUsFontType":0,
+ "chineseTText":"Behemoth",
+ "chineseTFontType":0,
+ "koreanText":"Behemoth",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_kuraim",
+ "japaneseText":"食らいむ!まうんとぱふぇ",
+ "japaneseFontType":0,
+ "englishUsText":"食らいむ!まうんとぱふぇ",
+ "englishUsFontType":0,
+ "chineseTText":"食らいむ!まうんとぱふぇ",
+ "chineseTFontType":0,
+ "koreanText":"食らいむ!まうんとぱふぇ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_carniv",
+ "japaneseText":"The Carnivorous\nCarnival",
+ "japaneseFontType":0,
+ "englishUsText":"The Carnivorous\nCarnival",
+ "englishUsFontType":0,
+ "chineseTText":"The Carnivorous\nCarnival",
+ "chineseTFontType":0,
+ "koreanText":"The Carnivorous\nCarnival",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_72mono",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"NATSUMONO☆",
+ "englishUsFontType":0,
+ "chineseTText":"夏季衣著☆",
+ "chineseTFontType":1,
+ "koreanText":"나츠모노☆",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_clscpr",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Le Tombeau de Couperin",
+ "englishUsFontType":0,
+ "chineseTText":"庫普蘭之墓",
+ "chineseTFontType":1,
+ "koreanText":"쿠프랭의 무덤",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_wblade",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_behemo",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kuraim",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Climb! Mt.Parfait",
+ "englishUsFontType":0,
+ "chineseTText":"攀爬!山峰百匯",
+ "chineseTFontType":1,
+ "koreanText":"쿠라이무! 마운토파훼",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_carniv",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_72mono",
+ "japaneseText":"「ナツモノ☆」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「NATSUMONO☆」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「夏季衣著☆」",
+ "chineseTFontType":1,
+ "koreanText":"「나츠모노☆」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_clscpr",
+ "japaneseText":"「クープランの墓」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Le Tombeau de Couperin」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「庫普蘭之墓」",
+ "chineseTFontType":1,
+ "koreanText":"「쿠프랭의 무덤」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_wblade",
+ "japaneseText":"「Rising」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Rising」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Rising」",
+ "chineseTFontType":1,
+ "koreanText":"「Rising」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_behemo",
+ "japaneseText":"「Behemoth」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Behemoth」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Behemoth」",
+ "chineseTFontType":1,
+ "koreanText":"「Behemoth」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_kuraim",
+ "japaneseText":"「食らいむ!まうんとぱふぇ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Climb! Mt.Parfait」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「攀爬!山峰百匯」",
+ "chineseTFontType":1,
+ "koreanText":"「쿠라이무! 마운토파훼」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_carniv",
+ "japaneseText":"「The Carnivorous Carnival」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「The Carnivorous Carnival」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「The Carnivorous Carnival」",
+ "chineseTFontType":1,
+ "koreanText":"「The Carnivorous Carnival」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_72mono",
+ "japaneseText":"「ナツモノ☆」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「NATSUMONO☆」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「夏季衣著☆」",
+ "chineseTFontType":1,
+ "koreanText":"「나츠모노☆」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_clscpr",
+ "japaneseText":"「クープランの墓」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Le Tombeau de Couperin」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「庫普蘭之墓」",
+ "chineseTFontType":1,
+ "koreanText":"「쿠프랭의 무덤」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_wblade",
+ "japaneseText":"「Rising」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Rising」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Rising」",
+ "chineseTFontType":1,
+ "koreanText":"「Rising」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_behemo",
+ "japaneseText":"「Behemoth」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Behemoth」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Behemoth」",
+ "chineseTFontType":1,
+ "koreanText":"「Behemoth」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_kuraim",
+ "japaneseText":"「食らいむ!まうんとぱふぇ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Climb! Mt.Parfait」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「攀爬!山峰百匯」",
+ "chineseTFontType":1,
+ "koreanText":"「쿠라이무! 마운토파훼」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_carniv",
+ "japaneseText":"「The Carnivorous Carnival」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「The Carnivorous Carnival」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「The Carnivorous Carnival」",
+ "chineseTFontType":1,
+ "koreanText":"「The Carnivorous Carnival」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_roki",
+ "japaneseText":"ロキ",
+ "japaneseFontType":0,
+ "englishUsText":"ロキ",
+ "englishUsFontType":0,
+ "chineseTText":"ロキ",
+ "chineseTFontType":0,
+ "koreanText":"ロキ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_im4spr",
+ "japaneseText":"Spread the Wings!!",
+ "japaneseFontType":0,
+ "englishUsText":"Spread the Wings!!",
+ "englishUsFontType":0,
+ "chineseTText":"Spread the Wings!!",
+ "chineseTFontType":0,
+ "koreanText":"Spread the Wings!!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kimpla",
+ "japaneseText":"君のプラネット",
+ "japaneseFontType":0,
+ "englishUsText":"君のプラネット",
+ "englishUsFontType":0,
+ "chineseTText":"君のプラネット",
+ "chineseTFontType":0,
+ "koreanText":"君のプラネット",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_w2bs2x",
+ "japaneseText":"ヒカリノカナタヘ",
+ "japaneseFontType":0,
+ "englishUsText":"ヒカリノカナタヘ",
+ "englishUsFontType":0,
+ "chineseTText":"ヒカリノカナタヘ",
+ "chineseTFontType":0,
+ "koreanText":"ヒカリノカナタヘ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_exw2b2",
+ "japaneseText":"ヒカリノカナタヘ -Long Ver.-",
+ "japaneseFontType":0,
+ "englishUsText":"ヒカリノカナタヘ -Long Ver.-",
+ "englishUsFontType":0,
+ "chineseTText":"ヒカリノカナタヘ -Long Ver.-",
+ "chineseTFontType":0,
+ "koreanText":"ヒカリノカナタヘ -Long Ver.-",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_tkwata",
+ "japaneseText":"142トキノワタリドリ",
+ "japaneseFontType":0,
+ "englishUsText":"142トキノワタリドリ",
+ "englishUsFontType":0,
+ "chineseTText":"142トキノワタリドリ",
+ "chineseTFontType":0,
+ "koreanText":"142トキノワタリドリ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mrgold",
+ "japaneseText":"マリーゴールド",
+ "japaneseFontType":0,
+ "englishUsText":"マリーゴールド",
+ "englishUsFontType":0,
+ "chineseTText":"マリーゴールド",
+ "chineseTFontType":0,
+ "koreanText":"マリーゴールド",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ainokt",
+ "japaneseText":"アイノカタチ feat.HIDE(GReeeeN)",
+ "japaneseFontType":0,
+ "englishUsText":"アイノカタチ feat.HIDE(GReeeeN)",
+ "englishUsFontType":0,
+ "chineseTText":"アイノカタチ feat.HIDE(GReeeeN)",
+ "chineseTFontType":0,
+ "koreanText":"アイノカタチ feat.HIDE(GReeeeN)",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_neverl",
+ "japaneseText":"Touch off",
+ "japaneseFontType":0,
+ "englishUsText":"Touch off",
+ "englishUsFontType":0,
+ "chineseTText":"Touch off",
+ "chineseTFontType":0,
+ "koreanText":"Touch off",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_roki",
+ "japaneseText":"みきとP feat.鏡音リン",
+ "japaneseFontType":0,
+ "englishUsText":"みきとP feat.鏡音リン",
+ "englishUsFontType":0,
+ "chineseTText":"みきとP feat.鏡音リン",
+ "chineseTFontType":0,
+ "koreanText":"みきとP feat.鏡音リン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_im4spr",
+ "japaneseText":"「アイドルマスター シャイニーカラーズ」より",
+ "japaneseFontType":0,
+ "englishUsText":"「アイドルマスター シャイニーカラーズ」より",
+ "englishUsFontType":0,
+ "chineseTText":"「アイドルマスター シャイニーカラーズ」より",
+ "chineseTFontType":0,
+ "koreanText":"「アイドルマスター シャイニーカラーズ」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_kimpla",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_w2bs2x",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_exw2b2",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_tkwata",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_mrgold",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_neverl",
+ "japaneseText":"「約束のネバーランド」より",
+ "japaneseFontType":0,
+ "englishUsText":"「約束のネバーランド」より",
+ "englishUsFontType":0,
+ "chineseTText":"「約束のネバーランド」より",
+ "chineseTFontType":0,
+ "koreanText":"「約束のネバーランド」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_roki",
+ "japaneseText":"ロキ",
+ "japaneseFontType":0,
+ "englishUsText":"ロキ",
+ "englishUsFontType":0,
+ "chineseTText":"ロキ",
+ "chineseTFontType":0,
+ "koreanText":"ロキ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_im4spr",
+ "japaneseText":"Spread the Wings!!",
+ "japaneseFontType":0,
+ "englishUsText":"Spread the Wings!!",
+ "englishUsFontType":0,
+ "chineseTText":"Spread the Wings!!",
+ "chineseTFontType":0,
+ "koreanText":"Spread the Wings!!",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_kimpla",
+ "japaneseText":"君のプラネット",
+ "japaneseFontType":0,
+ "englishUsText":"君のプラネット",
+ "englishUsFontType":0,
+ "chineseTText":"君のプラネット",
+ "chineseTFontType":0,
+ "koreanText":"君のプラネット",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_w2bs2x",
+ "japaneseText":"ヒカリノカナタヘ",
+ "japaneseFontType":0,
+ "englishUsText":"ヒカリノカナタヘ",
+ "englishUsFontType":0,
+ "chineseTText":"ヒカリノカナタヘ",
+ "chineseTFontType":0,
+ "koreanText":"ヒカリノカナタヘ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_exw2b2",
+ "japaneseText":"ヒカリノカナタヘ\n -Long Ver.-",
+ "japaneseFontType":0,
+ "englishUsText":"ヒカリノカナタヘ\n -Long Ver.-",
+ "englishUsFontType":0,
+ "chineseTText":"ヒカリノカナタヘ\n -Long Ver.-",
+ "chineseTFontType":0,
+ "koreanText":"ヒカリノカナタヘ\n -Long Ver.-",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_tkwata",
+ "japaneseText":"142トキノワタリドリ",
+ "japaneseFontType":0,
+ "englishUsText":"142トキノワタリドリ",
+ "englishUsFontType":0,
+ "chineseTText":"142トキノワタリドリ",
+ "chineseTFontType":0,
+ "koreanText":"142トキノワタリドリ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_mrgold",
+ "japaneseText":"マリーゴールド",
+ "japaneseFontType":0,
+ "englishUsText":"マリーゴールド",
+ "englishUsFontType":0,
+ "chineseTText":"マリーゴールド",
+ "chineseTFontType":0,
+ "koreanText":"マリーゴールド",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_ainokt",
+ "japaneseText":"アイノカタチ\nfeat.HIDE(GReeeeN)",
+ "japaneseFontType":0,
+ "englishUsText":"アイノカタチ\nfeat.HIDE(GReeeeN)",
+ "englishUsFontType":0,
+ "chineseTText":"アイノカタチ\nfeat.HIDE(GReeeeN)",
+ "chineseTFontType":0,
+ "koreanText":"アイノカタチ\nfeat.HIDE(GReeeeN)",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_neverl",
+ "japaneseText":"Touch off",
+ "japaneseFontType":0,
+ "englishUsText":"Touch off",
+ "englishUsFontType":0,
+ "chineseTText":"Touch off",
+ "chineseTFontType":0,
+ "koreanText":"Touch off",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_roki",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"ROKI",
+ "englishUsFontType":0,
+ "chineseTText":"ROKI",
+ "chineseTFontType":1,
+ "koreanText":"ROKI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_im4spr",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kimpla",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"KIMI NO Planet",
+ "englishUsFontType":0,
+ "chineseTText":"你的行星",
+ "chineseTFontType":1,
+ "koreanText":"키미노 Planet",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_w2bs2x",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"HIKARINOKANATAE",
+ "englishUsFontType":0,
+ "chineseTText":"HIKARINOKANATAE",
+ "chineseTFontType":1,
+ "koreanText":"히카리노 카나타에",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_exw2b2",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"HIKARINOKANATAE -Long Ver.-",
+ "englishUsFontType":0,
+ "chineseTText":"HIKARINOKANATAE -Long Ver.-",
+ "chineseTFontType":1,
+ "koreanText":"히카리노 카나타에 -Long Ver.-",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_tkwata",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"142 TOKI NO WATARIDORI",
+ "englishUsFontType":0,
+ "chineseTText":"142 TOKI NO WATARIDORI",
+ "chineseTFontType":1,
+ "koreanText":"142 토키노 와타리도리",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mrgold",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Marigold",
+ "englishUsFontType":0,
+ "chineseTText":"Marigold",
+ "chineseTFontType":1,
+ "koreanText":"Marigold",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ainokt",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "englishUsFontType":0,
+ "chineseTText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "chineseTFontType":1,
+ "koreanText":"Ainokatachi feat.HIDE(GReeeeN)",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_neverl",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_roki",
+ "japaneseText":"「ロキ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「ROKI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「ROKI」",
+ "chineseTFontType":1,
+ "koreanText":"「ROKI」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_im4spr",
+ "japaneseText":"「Spread the Wings!!」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Spread the Wings!!」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Spread the Wings!!」",
+ "chineseTFontType":1,
+ "koreanText":"「Spread the Wings!!」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_kimpla",
+ "japaneseText":"「君のプラネット」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「KIMI NO Planet」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「你的行星」",
+ "chineseTFontType":1,
+ "koreanText":"「키미노 Planet」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_w2bs2x",
+ "japaneseText":"「ヒカリノカナタヘ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HIKARINOKANATAE」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「HIKARINOKANATAE」",
+ "chineseTFontType":1,
+ "koreanText":"「히카리노 카나타에」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_exw2b2",
+ "japaneseText":"「ヒカリノカナタヘ -Long Ver.-」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HIKARINOKANATAE -Long Ver.-」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「HIKARINOKANATAE -Long Ver.-」",
+ "chineseTFontType":1,
+ "koreanText":"「히카리노 카나타에 -Long Ver.-」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_tkwata",
+ "japaneseText":"「142トキノワタリドリ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「142 TOKI NO WATARIDORI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「142 TOKI NO WATARIDORI」",
+ "chineseTFontType":1,
+ "koreanText":"「142 토키노 와타리도리」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_mrgold",
+ "japaneseText":"「マリーゴールド」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Marigold」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Marigold」",
+ "chineseTFontType":1,
+ "koreanText":"「Marigold」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_ainokt",
+ "japaneseText":"「アイノカタチ feat.HIDE(GReeeeN)」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Ainokatachi feat.HIDE(GReeeeN)」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Ainokatachi feat.HIDE(GReeeeN)」",
+ "chineseTFontType":1,
+ "koreanText":"「Ainokatachi feat.HIDE(GReeeeN)」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_neverl",
+ "japaneseText":"「Touch off」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Touch off」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Touch off」",
+ "chineseTFontType":1,
+ "koreanText":"「Touch off」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_roki",
+ "japaneseText":"「ロキ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「ROKI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「ROKI」",
+ "chineseTFontType":1,
+ "koreanText":"「ROKI」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_im4spr",
+ "japaneseText":"「Spread the Wings!!」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Spread the Wings!!」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Spread the Wings!!」",
+ "chineseTFontType":1,
+ "koreanText":"「Spread the Wings!!」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_kimpla",
+ "japaneseText":"「君のプラネット」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「KIMI NO Planet」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「你的行星」",
+ "chineseTFontType":1,
+ "koreanText":"「키미노 Planet」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_w2bs2x",
+ "japaneseText":"「ヒカリノカナタヘ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HIKARINOKANATAE」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「HIKARINOKANATAE」",
+ "chineseTFontType":1,
+ "koreanText":"「히카리노 카나타에」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_exw2b2",
+ "japaneseText":"「ヒカリノカナタヘ -Long Ver.-」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HIKARINOKANATAE -Long Ver.-」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「HIKARINOKANATAE -Long Ver.-」",
+ "chineseTFontType":1,
+ "koreanText":"「히카리노 카나타에 -Long Ver.-」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_tkwata",
+ "japaneseText":"「142トキノワタリドリ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「142 TOKI NO WATARIDORI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「142 TOKI NO WATARIDORI」",
+ "chineseTFontType":1,
+ "koreanText":"「142 토키노 와타리도리」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_mrgold",
+ "japaneseText":"「マリーゴールド」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Marigold」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Marigold」",
+ "chineseTFontType":1,
+ "koreanText":"「Marigold」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_ainokt",
+ "japaneseText":"「アイノカタチ feat.HIDE(GReeeeN)」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Ainokatachi feat.HIDE(GReeeeN)」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Ainokatachi feat.HIDE(GReeeeN)」",
+ "chineseTFontType":1,
+ "koreanText":"「Ainokatachi feat.HIDE(GReeeeN)」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_neverl",
+ "japaneseText":"「Touch off」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Touch off」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Touch off」",
+ "chineseTFontType":1,
+ "koreanText":"「Touch off」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_hitpack05",
+ "japaneseText":"人気曲パックVol.5",
+ "japaneseFontType":0,
+ "englishUsText":"Popular Hits Pack Vol.5",
+ "englishUsFontType":0,
+ "chineseTText":"Popular songs Pack Vol.5",
+ "chineseTFontType":1,
+ "koreanText":"인기곡 팩 Vol.5",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_hitpack05",
+ "japaneseText":"人気曲パック\nVol.5",
+ "japaneseFontType":0,
+ "englishUsText":"Popular Hits Pack\nVol.5",
+ "englishUsFontType":0,
+ "chineseTText":"Popular songs Pack\nVol.5",
+ "chineseTFontType":1,
+ "koreanText":"인기곡 팩\nVol.5",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_sqr",
+ "japaneseText":"スポーツダイジェスドン",
+ "japaneseFontType":0,
+ "englishUsText":"スポーツダイジェスドン",
+ "englishUsFontType":0,
+ "chineseTText":"スポーツダイジェスドン",
+ "chineseTFontType":0,
+ "koreanText":"スポーツダイジェスドン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_rezero",
+ "japaneseText":"Paradisus‐Paradoxum",
+ "japaneseFontType":0,
+ "englishUsText":"Paradisus‐Paradoxum",
+ "englishUsFontType":0,
+ "chineseTText":"Paradisus‐Paradoxum",
+ "chineseTFontType":0,
+ "koreanText":"Paradisus‐Paradoxum",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_clstoc",
+ "japaneseText":"トッカータとフーガとロック",
+ "japaneseFontType":0,
+ "englishUsText":"トッカータとフーガとロック",
+ "englishUsFontType":0,
+ "chineseTText":"トッカータとフーガとロック",
+ "chineseTFontType":0,
+ "koreanText":"トッカータとフーガとロック",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_medjed",
+ "japaneseText":"秘ナルメジェドノ悲ナル憂鬱",
+ "japaneseFontType":0,
+ "englishUsText":"秘ナルメジェドノ悲ナル憂鬱",
+ "englishUsFontType":0,
+ "chineseTText":"秘ナルメジェドノ悲ナル憂鬱",
+ "chineseTFontType":0,
+ "koreanText":"秘ナルメジェドノ悲ナル憂鬱",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_senpac",
+ "japaneseText":"旋風ノ舞【天】",
+ "japaneseFontType":0,
+ "englishUsText":"旋風ノ舞【天】",
+ "englishUsFontType":0,
+ "chineseTText":"旋風ノ舞【天】",
+ "chineseTFontType":0,
+ "koreanText":"旋風ノ舞【天】",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_senpcs",
+ "japaneseText":"旋風ノ舞【地】",
+ "japaneseFontType":0,
+ "englishUsText":"旋風ノ舞【地】",
+ "englishUsFontType":0,
+ "chineseTText":"旋風ノ舞【地】",
+ "chineseTFontType":0,
+ "koreanText":"旋風ノ舞【地】",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_argmem",
+ "japaneseText":"Argent Memories",
+ "japaneseFontType":0,
+ "englishUsText":"Argent Memories",
+ "englishUsFontType":0,
+ "chineseTText":"Argent Memories",
+ "chineseTFontType":0,
+ "koreanText":"Argent Memories",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_hypmic",
+ "japaneseText":"ヒプノシスマイク -Division Battle Anthem-",
+ "japaneseFontType":0,
+ "englishUsText":"ヒプノシスマイク -Division Battle Anthem-",
+ "englishUsFontType":0,
+ "chineseTText":"ヒプノシスマイク -Division Battle Anthem-",
+ "chineseTFontType":0,
+ "koreanText":"ヒプノシスマイク -Division Battle Anthem-",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_sqr",
+ "japaneseText":"~Fill in The Sky~",
+ "japaneseFontType":0,
+ "englishUsText":"~Fill in The Sky~",
+ "englishUsFontType":0,
+ "chineseTText":"~Fill in The Sky~",
+ "chineseTFontType":0,
+ "koreanText":"~Fill in The Sky~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_rezero",
+ "japaneseText":"「Re:ゼロから始める異世界生活」より",
+ "japaneseFontType":0,
+ "englishUsText":"「Re:ゼロから始める異世界生活」より",
+ "englishUsFontType":0,
+ "chineseTText":"「Re:ゼロから始める異世界生活」より",
+ "chineseTFontType":0,
+ "koreanText":"「Re:ゼロから始める異世界生活」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_clstoc",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_medjed",
+ "japaneseText":"コバヤシユウヤ(IOSYS) feat.山本椛 (monotone)",
+ "japaneseFontType":0,
+ "englishUsText":"コバヤシユウヤ(IOSYS) feat.山本椛 (monotone)",
+ "englishUsFontType":0,
+ "chineseTText":"コバヤシユウヤ(IOSYS) feat.山本椛 (monotone)",
+ "chineseTFontType":0,
+ "koreanText":"コバヤシユウヤ(IOSYS) feat.山本椛 (monotone)",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_senpac",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_senpcs",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_argmem",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_hypmic",
+ "japaneseText":"Division All Stars",
+ "japaneseFontType":0,
+ "englishUsText":"Division All Stars",
+ "englishUsFontType":0,
+ "chineseTText":"Division All Stars",
+ "chineseTFontType":0,
+ "koreanText":"Division All Stars",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_sqr",
+ "japaneseText":"スポーツダイジェスドン",
+ "japaneseFontType":0,
+ "englishUsText":"スポーツダイジェスドン",
+ "englishUsFontType":0,
+ "chineseTText":"スポーツダイジェスドン",
+ "chineseTFontType":0,
+ "koreanText":"スポーツダイジェスドン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_rezero",
+ "japaneseText":"Paradisus‐\nParadoxum",
+ "japaneseFontType":0,
+ "englishUsText":"Paradisus‐\nParadoxum",
+ "englishUsFontType":0,
+ "chineseTText":"Paradisus‐\nParadoxum",
+ "chineseTFontType":0,
+ "koreanText":"Paradisus‐\nParadoxum",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_clstoc",
+ "japaneseText":"トッカータと\nフーガとロック",
+ "japaneseFontType":0,
+ "englishUsText":"トッカータと\nフーガとロック",
+ "englishUsFontType":0,
+ "chineseTText":"トッカータと\nフーガとロック",
+ "chineseTFontType":0,
+ "koreanText":"トッカータと\nフーガとロック",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_medjed",
+ "japaneseText":"秘ナルメジェドノ悲ナル憂鬱",
+ "japaneseFontType":0,
+ "englishUsText":"秘ナルメジェドノ悲ナル憂鬱",
+ "englishUsFontType":0,
+ "chineseTText":"秘ナルメジェドノ悲ナル憂鬱",
+ "chineseTFontType":0,
+ "koreanText":"秘ナルメジェドノ悲ナル憂鬱",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_senpac",
+ "japaneseText":"旋風ノ舞【天】",
+ "japaneseFontType":0,
+ "englishUsText":"旋風ノ舞【天】",
+ "englishUsFontType":0,
+ "chineseTText":"旋風ノ舞【天】",
+ "chineseTFontType":0,
+ "koreanText":"旋風ノ舞【天】",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_senpcs",
+ "japaneseText":"旋風ノ舞【地】",
+ "japaneseFontType":0,
+ "englishUsText":"旋風ノ舞【地】",
+ "englishUsFontType":0,
+ "chineseTText":"旋風ノ舞【地】",
+ "chineseTFontType":0,
+ "koreanText":"旋風ノ舞【地】",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_argmem",
+ "japaneseText":"Argent\nMemories",
+ "japaneseFontType":0,
+ "englishUsText":"Argent\nMemories",
+ "englishUsFontType":0,
+ "chineseTText":"Argent\nMemories",
+ "chineseTFontType":0,
+ "koreanText":"Argent\nMemories",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_hypmic",
+ "japaneseText":"ヒプノシスマイク\n-Division Battle Anthem-",
+ "japaneseFontType":0,
+ "englishUsText":"ヒプノシスマイク\n-Division Battle Anthem-",
+ "englishUsFontType":0,
+ "chineseTText":"ヒプノシスマイク\n-Division Battle Anthem-",
+ "chineseTFontType":0,
+ "koreanText":"ヒプノシスマイク\n-Division Battle Anthem-",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_sqr",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Sports DigesDON",
+ "englishUsFontType":0,
+ "chineseTText":"Sports DigesDON",
+ "chineseTFontType":1,
+ "koreanText":"Sports DigesDON",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_rezero",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_clstoc",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Toccata and Fugue and Rock",
+ "englishUsFontType":0,
+ "chineseTText":"托卡塔與賦格與ROCK",
+ "chineseTFontType":1,
+ "koreanText":"토카타와 푸가와 ROCK",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_medjed",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"HINARU MEDJED NO HINARU YU-UTSU",
+ "englishUsFontType":0,
+ "chineseTText":"神秘梅傑德的哀傷憂鬱",
+ "chineseTFontType":1,
+ "koreanText":"히나루 메제도노 히나루 유우우츠",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_senpac",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"SENPU NO MAI 【TEN】",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"센푸노 마이【텐】",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_senpcs",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"SENPU NO MAI 【CHI】",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"센푸노 마이【치】",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_argmem",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_hypmic",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"HYPNOSISMIC -Division Battle Anthem-",
+ "englishUsFontType":0,
+ "chineseTText":"HYPNOSISMIC -Division Battle Anthem-",
+ "chineseTFontType":1,
+ "koreanText":"HYPNOSISMIC -Division Battle Anthem-",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_sqr",
+ "japaneseText":"「スポーツダイジェスドン」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Sports DigesDON」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Sports DigesDON」",
+ "chineseTFontType":1,
+ "koreanText":"「Sports DigesDON」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_rezero",
+ "japaneseText":"「Paradisus‐Paradoxum」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Paradisus‐Paradoxum」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Paradisus‐Paradoxum」",
+ "chineseTFontType":1,
+ "koreanText":"「Paradisus‐Paradoxum」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_clstoc",
+ "japaneseText":"「トッカータとフーガとロック」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Toccata and Fugue and Rock」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「托卡塔與賦格與ROCK」",
+ "chineseTFontType":1,
+ "koreanText":"「토카타와 푸가와 ROCK」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_medjed",
+ "japaneseText":"「秘ナルメジェドノ悲ナル憂鬱」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HINARU MEDJED NO HINARU YU-UTSU」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「神秘梅傑德的哀傷憂鬱」",
+ "chineseTFontType":1,
+ "koreanText":"「히나루 메제도노 히나루 유우우츠」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_senpac",
+ "japaneseText":"「旋風ノ舞【天】」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SENPU NO MAI 【TEN】」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「旋風ノ舞【天】」",
+ "chineseTFontType":1,
+ "koreanText":"「센푸노 마이【텐】」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_senpcs",
+ "japaneseText":"「旋風ノ舞【地】」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SENPU NO MAI 【CHI】」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「旋風ノ舞【地】」",
+ "chineseTFontType":1,
+ "koreanText":"「센푸노 마이【치】」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_argmem",
+ "japaneseText":"「Argent Memories」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Argent Memories」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Argent Memories」",
+ "chineseTFontType":1,
+ "koreanText":"「Argent Memories」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_hypmic",
+ "japaneseText":"「ヒプノシスマイク -Division Battle Anthem-」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HYPNOSISMIC -Division Battle Anthem-」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「HYPNOSISMIC -Division Battle Anthem-」",
+ "chineseTFontType":1,
+ "koreanText":"「HYPNOSISMIC -Division Battle Anthem-」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_sqr",
+ "japaneseText":"「スポーツダイジェスドン」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Sports DigesDON」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Sports DigesDON」",
+ "chineseTFontType":1,
+ "koreanText":"「Sports DigesDON」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_rezero",
+ "japaneseText":"「Paradisus‐Paradoxum」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Paradisus‐Paradoxum」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Paradisus‐Paradoxum」",
+ "chineseTFontType":1,
+ "koreanText":"「Paradisus‐Paradoxum」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_clstoc",
+ "japaneseText":"「トッカータとフーガとロック」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Toccata and Fugue and Rock」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「托卡塔與賦格與ROCK」",
+ "chineseTFontType":1,
+ "koreanText":"「토카타와 푸가와 ROCK」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_medjed",
+ "japaneseText":"「秘ナルメジェドノ悲ナル憂鬱」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HINARU MEDJED NO HINARU YU-UTSU」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「神秘梅傑德的哀傷憂鬱」",
+ "chineseTFontType":1,
+ "koreanText":"「히나루 메제도노 히나루 유우우츠」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_senpac",
+ "japaneseText":"「旋風ノ舞【天】」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SENPU NO MAI 【TEN】」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「旋風ノ舞【天】」",
+ "chineseTFontType":1,
+ "koreanText":"「센푸노 마이【텐】」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_senpcs",
+ "japaneseText":"「旋風ノ舞【地】」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SENPU NO MAI 【CHI】」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「旋風ノ舞【地】」",
+ "chineseTFontType":1,
+ "koreanText":"「센푸노 마이【치】」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_argmem",
+ "japaneseText":"「Argent Memories」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Argent Memories」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Argent Memories」",
+ "chineseTFontType":1,
+ "koreanText":"「Argent Memories」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_hypmic",
+ "japaneseText":"「ヒプノシスマイク -Division Battle Anthem-」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HYPNOSISMIC -Division Battle Anthem-」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「HYPNOSISMIC -Division Battle Anthem-」",
+ "chineseTFontType":1,
+ "koreanText":"「HYPNOSISMIC -Division Battle Anthem-」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_esport",
+ "japaneseText":"dスポーツフェスはじめました",
+ "japaneseFontType":0,
+ "englishUsText":"Began dSports Fest",
+ "englishUsFontType":0,
+ "chineseTText":"開始遊玩d運動節慶",
+ "chineseTFontType":1,
+ "koreanText":"d스포츠 페스 시작했습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_esportex",
+ "japaneseText":"dスポーツフェスの達人",
+ "japaneseFontType":0,
+ "englishUsText":"dSports Fest Master",
+ "englishUsFontType":0,
+ "chineseTText":"d運動節慶達人",
+ "chineseTFontType":1,
+ "koreanText":"d스포츠 페스의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_dsport",
+ "japaneseText":"諦めたらそこで演奏終了ですよ",
+ "japaneseFontType":0,
+ "englishUsText":"When you give up, that's when the performance is over.",
+ "englishUsFontType":0,
+ "chineseTText":"要是放棄的話,演奏就等於結束了喔",
+ "chineseTFontType":1,
+ "koreanText":"포기하면 거기서 연주종료입니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_border",
+ "japaneseText":"ボーダー",
+ "japaneseFontType":0,
+ "englishUsText":"Boarder",
+ "englishUsFontType":0,
+ "chineseTText":"滑板",
+ "chineseTFontType":1,
+ "koreanText":"보더",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_bicycle",
+ "japaneseText":"自転車",
+ "japaneseFontType":0,
+ "englishUsText":"Cyclist",
+ "englishUsFontType":0,
+ "chineseTText":"自行車",
+ "chineseTFontType":1,
+ "koreanText":"자전거",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_tennis",
+ "japaneseText":"テニス",
+ "japaneseFontType":0,
+ "englishUsText":"Tennis",
+ "englishUsFontType":0,
+ "chineseTText":"網球",
+ "chineseTFontType":1,
+ "koreanText":"테니스",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_dsport",
+ "japaneseText":"dスポーツフェス",
+ "japaneseFontType":0,
+ "englishUsText":"dSports Fest",
+ "englishUsFontType":0,
+ "chineseTText":"d運動節慶",
+ "chineseTFontType":1,
+ "koreanText":"d스포츠 페스",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_message_attention_05",
+ "japaneseText":"本楽曲は、「フレンドセッション」「ランクマッチ」\n「ベストリプレイ演奏」に対応していません\n事前にご確認の上、ご購入ください",
+ "japaneseFontType":0,
+ "englishUsText":"This song cannot be played in Friend Session,\nRanked Match, or Best Replay modes.\nPlease be aware of this before purchasing.",
+ "englishUsFontType":0,
+ "chineseTText":"本樂曲不支援「好友演奏會」「線上排名戰」\n「最佳重播演奏」\n請您於購買前確認,再進行購買",
+ "chineseTFontType":1,
+ "koreanText":"본 악곡은 「프렌드 세션」「랭크 매치」\n「베스트 리플레이 연주」를 지원하지 않습니다\n미리 확인하신 후 구입해주십시오",
+ "koreanFontType":2
+ },
+ {
+ "key":"songselect_attention",
+ "japaneseText":"本楽曲は、「フレンドセッション」「ランクマッチ」「ベストリプレイ演奏」に対応していません",
+ "japaneseFontType":0,
+ "englishUsText":"This song cannot be played in Friend Session,\nRanked Match, or Best Replay modes.",
+ "englishUsFontType":0,
+ "chineseTText":"本樂曲不支援「好友演奏會」「線上排名戰」「最佳重播演奏」",
+ "chineseTFontType":1,
+ "koreanText":"본 악곡은 「프렌드 세션」「랭크 매치」「베스트 리플레이 연주」를 지원하지 않습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_thmrs",
+ "japaneseText":"魔理沙は大変なものを盗んでいきました",
+ "japaneseFontType":0,
+ "englishUsText":"魔理沙は大変なものを盗んでいきました",
+ "englishUsFontType":0,
+ "chineseTText":"魔理沙は大変なものを盗んでいきました",
+ "chineseTFontType":0,
+ "koreanText":"魔理沙は大変なものを盗んでいきました",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sysurf",
+ "japaneseText":"Surf Zapping",
+ "japaneseFontType":0,
+ "englishUsText":"Surf Zapping",
+ "englishUsFontType":0,
+ "chineseTText":"Surf Zapping",
+ "chineseTFontType":0,
+ "koreanText":"Surf Zapping",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_retoko",
+ "japaneseText":"冷凍庫CJ ~嗚呼面太鼓ブラザーズ~",
+ "japaneseFontType":0,
+ "englishUsText":"冷凍庫CJ ~嗚呼面太鼓ブラザーズ~",
+ "englishUsFontType":0,
+ "chineseTText":"冷凍庫CJ ~嗚呼面太鼓ブラザーズ~",
+ "chineseTFontType":0,
+ "koreanText":"冷凍庫CJ ~嗚呼面太鼓ブラザーズ~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_magdrm",
+ "japaneseText":"The Magician’s Dream",
+ "japaneseFontType":0,
+ "englishUsText":"The Magician’s Dream",
+ "englishUsFontType":0,
+ "chineseTText":"The Magician’s Dream",
+ "chineseTFontType":0,
+ "koreanText":"The Magician’s Dream",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_wara2k",
+ "japaneseText":"わら得る2000",
+ "japaneseFontType":0,
+ "englishUsText":"わら得る2000",
+ "englishUsFontType":0,
+ "chineseTText":"わら得る2000",
+ "chineseTFontType":0,
+ "koreanText":"わら得る2000",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_thmrs",
+ "japaneseText":"東方Projectアレンジ ARM+夕野ヨシミ(IOSYS) feat.藤咲かりん",
+ "japaneseFontType":0,
+ "englishUsText":"東方Projectアレンジ ARM+夕野ヨシミ(IOSYS) feat.藤咲かりん",
+ "englishUsFontType":0,
+ "chineseTText":"東方Projectアレンジ ARM+夕野ヨシミ(IOSYS) feat.藤咲かりん",
+ "chineseTFontType":0,
+ "koreanText":"東方Projectアレンジ ARM+夕野ヨシミ(IOSYS) feat.藤咲かりん",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_sysurf",
+ "japaneseText":"t+pazolite 「シンクロニカ」より",
+ "japaneseFontType":0,
+ "englishUsText":"t+pazolite 「シンクロニカ」より",
+ "englishUsFontType":0,
+ "chineseTText":"t+pazolite 「シンクロニカ」より",
+ "chineseTFontType":0,
+ "koreanText":"t+pazolite 「シンクロニカ」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_retoko",
+ "japaneseText":"DJKurara",
+ "japaneseFontType":0,
+ "englishUsText":"DJKurara",
+ "englishUsFontType":0,
+ "chineseTText":"DJKurara",
+ "chineseTFontType":0,
+ "koreanText":"DJKurara",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_magdrm",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_wara2k",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_thmrs",
+ "japaneseText":"魔理沙は大変なものを\n盗んでいきました",
+ "japaneseFontType":0,
+ "englishUsText":"魔理沙は大変なものを\n盗んでいきました",
+ "englishUsFontType":0,
+ "chineseTText":"魔理沙は大変なものを\n盗んでいきました",
+ "chineseTFontType":0,
+ "koreanText":"魔理沙は大変なものを\n盗んでいきました",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_sysurf",
+ "japaneseText":"Surf Zapping",
+ "japaneseFontType":0,
+ "englishUsText":"Surf Zapping",
+ "englishUsFontType":0,
+ "chineseTText":"Surf Zapping",
+ "chineseTFontType":0,
+ "koreanText":"Surf Zapping",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_retoko",
+ "japaneseText":"冷凍庫CJ\n~嗚呼面太鼓ブラザーズ~",
+ "japaneseFontType":0,
+ "englishUsText":"冷凍庫CJ\n~嗚呼面太鼓ブラザーズ~",
+ "englishUsFontType":0,
+ "chineseTText":"冷凍庫CJ\n~嗚呼面太鼓ブラザーズ~",
+ "chineseTFontType":0,
+ "koreanText":"冷凍庫CJ\n~嗚呼面太鼓ブラザーズ~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_magdrm",
+ "japaneseText":"The Magician’s\nDream",
+ "japaneseFontType":0,
+ "englishUsText":"The Magician’s\nDream",
+ "englishUsFontType":0,
+ "chineseTText":"The Magician’s\nDream",
+ "chineseTFontType":0,
+ "koreanText":"The Magician’s\nDream",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_wara2k",
+ "japaneseText":"わら得る2000",
+ "japaneseFontType":0,
+ "englishUsText":"わら得る2000",
+ "englishUsFontType":0,
+ "chineseTText":"わら得る2000",
+ "chineseTFontType":0,
+ "koreanText":"わら得る2000",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_thmrs",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita",
+ "englishUsFontType":0,
+ "chineseTText":"Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita",
+ "chineseTFontType":1,
+ "koreanText":"Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_sysurf",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_retoko",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"REITOKO CJ ~Amen TAIKO Brothers~",
+ "englishUsFontType":0,
+ "chineseTText":"冷凍庫CJ ~嗚呼面太鼓Brothers~",
+ "chineseTFontType":1,
+ "koreanText":"레이토우코CJ ~Amen 타이코 Brothers~",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_magdrm",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_wara2k",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"WARAERU2000",
+ "englishUsFontType":0,
+ "chineseTText":"可笑可嘯2000",
+ "chineseTFontType":1,
+ "koreanText":"WARAERU2000",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_thmrs",
+ "japaneseText":"「魔理沙は大変なものを盗んでいきました」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita」",
+ "chineseTFontType":1,
+ "koreanText":"「Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_sysurf",
+ "japaneseText":"「Surf Zapping」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Surf Zapping」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Surf Zapping」",
+ "chineseTFontType":1,
+ "koreanText":"「Surf Zapping」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_retoko",
+ "japaneseText":"「冷凍庫CJ ~嗚呼面太鼓ブラザーズ~」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「REITOKO CJ ~Amen TAIKO Brothers~」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「冷凍庫CJ ~嗚呼面太鼓Brothers~」",
+ "chineseTFontType":1,
+ "koreanText":"「레이토우코CJ ~Amen 타이코 Brothers~」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_magdrm",
+ "japaneseText":"「The Magician’s Dream」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「The Magician's Dream」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「The Magician's Dream」",
+ "chineseTFontType":1,
+ "koreanText":"「The Magician's Dream」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_wara2k",
+ "japaneseText":"「わら得る2000」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「WARAERU2000」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「可笑可嘯2000」",
+ "chineseTFontType":1,
+ "koreanText":"「WARAERU2000」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_thmrs",
+ "japaneseText":"「魔理沙は大変なものを盗んでいきました」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita」",
+ "chineseTFontType":1,
+ "koreanText":"「Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_sysurf",
+ "japaneseText":"「Surf Zapping」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Surf Zapping」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Surf Zapping」",
+ "chineseTFontType":1,
+ "koreanText":"「Surf Zapping」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_retoko",
+ "japaneseText":"「冷凍庫CJ ~嗚呼面太鼓ブラザーズ~」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「REITOKO CJ ~Amen TAIKO Brothers~」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「冷凍庫CJ ~嗚呼面太鼓Brothers~」",
+ "chineseTFontType":1,
+ "koreanText":"「레이토우코CJ ~Amen 타이코 Brothers~」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_magdrm",
+ "japaneseText":"「The Magician’s Dream」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「The Magician's Dream」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「The Magician's Dream」",
+ "chineseTFontType":1,
+ "koreanText":"「The Magician's Dream」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_wara2k",
+ "japaneseText":"「わら得る2000」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「WARAERU2000」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「可笑可嘯2000」",
+ "chineseTFontType":1,
+ "koreanText":"「WARAERU2000」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_helhal",
+ "japaneseText":"ハロー!ハロウィン",
+ "japaneseFontType":0,
+ "englishUsText":"ハロー!ハロウィン",
+ "englishUsFontType":0,
+ "chineseTText":"ハロー!ハロウィン",
+ "chineseTFontType":0,
+ "koreanText":"ハロー!ハロウィン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_doctrx",
+ "japaneseText":"ドクターXのテーマ",
+ "japaneseFontType":0,
+ "englishUsText":"ドクターXのテーマ",
+ "englishUsFontType":0,
+ "chineseTText":"ドクターXのテーマ",
+ "chineseTFontType":0,
+ "koreanText":"ドクターXのテーマ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_clsdnu",
+ "japaneseText":"美しく忙しきドナウ",
+ "japaneseFontType":0,
+ "englishUsText":"美しく忙しきドナウ",
+ "englishUsFontType":0,
+ "chineseTText":"美しく忙しきドナウ",
+ "chineseTFontType":0,
+ "koreanText":"美しく忙しきドナウ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_calib6",
+ "japaneseText":"Undying Legend",
+ "japaneseFontType":0,
+ "englishUsText":"Undying Legend",
+ "englishUsFontType":0,
+ "chineseTText":"Undying Legend",
+ "chineseTFontType":0,
+ "koreanText":"Undying Legend",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_germin",
+ "japaneseText":"GERMINATION",
+ "japaneseFontType":0,
+ "englishUsText":"GERMINATION",
+ "englishUsFontType":0,
+ "chineseTText":"GERMINATION",
+ "chineseTFontType":0,
+ "koreanText":"GERMINATION",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sora6x",
+ "japaneseText":"SORA‐Ⅵ 火ノ鳥",
+ "japaneseFontType":0,
+ "englishUsText":"SORA‐Ⅵ 火ノ鳥",
+ "englishUsFontType":0,
+ "chineseTText":"SORA‐Ⅵ 火ノ鳥",
+ "chineseTFontType":0,
+ "koreanText":"SORA‐Ⅵ 火ノ鳥",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_coquet",
+ "japaneseText":"Coquette",
+ "japaneseFontType":0,
+ "englishUsText":"Coquette",
+ "englishUsFontType":0,
+ "chineseTText":"Coquette",
+ "chineseTFontType":0,
+ "koreanText":"Coquette",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_udtmgl",
+ "japaneseText":"MEGALOVANIA",
+ "japaneseFontType":0,
+ "englishUsText":"MEGALOVANIA",
+ "englishUsFontType":0,
+ "chineseTText":"MEGALOVANIA",
+ "chineseTFontType":0,
+ "koreanText":"MEGALOVANIA",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_udtkkr",
+ "japaneseText":"心の痛み",
+ "japaneseFontType":0,
+ "englishUsText":"心の痛み",
+ "englishUsFontType":0,
+ "chineseTText":"心の痛み",
+ "chineseTFontType":0,
+ "koreanText":"心の痛み",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_udtymt",
+ "japaneseText":"夢と希望",
+ "japaneseFontType":0,
+ "englishUsText":"夢と希望",
+ "englishUsFontType":0,
+ "chineseTText":"夢と希望",
+ "chineseTFontType":0,
+ "koreanText":"夢と希望",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_helhal",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_doctrx",
+ "japaneseText":"ドラマ「ドクターX~外科医・大門未知子~」より",
+ "japaneseFontType":0,
+ "englishUsText":"ドラマ「ドクターX~外科医・大門未知子~」より",
+ "englishUsFontType":0,
+ "chineseTText":"ドラマ「ドクターX~外科医・大門未知子~」より",
+ "chineseTFontType":0,
+ "koreanText":"ドラマ「ドクターX~外科医・大門未知子~」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_clsdnu",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_calib6",
+ "japaneseText":"「SOULCALIBUR Ⅵ」より",
+ "japaneseFontType":0,
+ "englishUsText":"「SOULCALIBUR Ⅵ」より",
+ "englishUsFontType":0,
+ "chineseTText":"「SOULCALIBUR Ⅵ」より",
+ "chineseTFontType":0,
+ "koreanText":"「SOULCALIBUR Ⅵ」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_germin",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_sora6x",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_coquet",
+ "japaneseText":"Jun Kuroda",
+ "japaneseFontType":0,
+ "englishUsText":"Jun Kuroda",
+ "englishUsFontType":0,
+ "chineseTText":"Jun Kuroda",
+ "chineseTFontType":0,
+ "koreanText":"Jun Kuroda",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_udtmgl",
+ "japaneseText":"「UNDERTALE」より",
+ "japaneseFontType":0,
+ "englishUsText":"「UNDERTALE」より",
+ "englishUsFontType":0,
+ "chineseTText":"「UNDERTALE」より",
+ "chineseTFontType":0,
+ "koreanText":"「UNDERTALE」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_udtkkr",
+ "japaneseText":"「UNDERTALE」より",
+ "japaneseFontType":0,
+ "englishUsText":"「UNDERTALE」より",
+ "englishUsFontType":0,
+ "chineseTText":"「UNDERTALE」より",
+ "chineseTFontType":0,
+ "koreanText":"「UNDERTALE」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_udtymt",
+ "japaneseText":"「UNDERTALE」より",
+ "japaneseFontType":0,
+ "englishUsText":"「UNDERTALE」より",
+ "englishUsFontType":0,
+ "chineseTText":"「UNDERTALE」より",
+ "chineseTFontType":0,
+ "koreanText":"「UNDERTALE」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_helhal",
+ "japaneseText":"ハロー!ハロウィン",
+ "japaneseFontType":0,
+ "englishUsText":"ハロー!ハロウィン",
+ "englishUsFontType":0,
+ "chineseTText":"ハロー!ハロウィン",
+ "chineseTFontType":0,
+ "koreanText":"ハロー!ハロウィン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_doctrx",
+ "japaneseText":"ドクターXのテーマ",
+ "japaneseFontType":0,
+ "englishUsText":"ドクターXのテーマ",
+ "englishUsFontType":0,
+ "chineseTText":"ドクターXのテーマ",
+ "chineseTFontType":0,
+ "koreanText":"ドクターXのテーマ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_clsdnu",
+ "japaneseText":"美しく忙しきドナウ",
+ "japaneseFontType":0,
+ "englishUsText":"美しく忙しきドナウ",
+ "englishUsFontType":0,
+ "chineseTText":"美しく忙しきドナウ",
+ "chineseTFontType":0,
+ "koreanText":"美しく忙しきドナウ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_calib6",
+ "japaneseText":"Undying Legend",
+ "japaneseFontType":0,
+ "englishUsText":"Undying Legend",
+ "englishUsFontType":0,
+ "chineseTText":"Undying Legend",
+ "chineseTFontType":0,
+ "koreanText":"Undying Legend",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_germin",
+ "japaneseText":"GERMINATION",
+ "japaneseFontType":0,
+ "englishUsText":"GERMINATION",
+ "englishUsFontType":0,
+ "chineseTText":"GERMINATION",
+ "chineseTFontType":0,
+ "koreanText":"GERMINATION",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_sora6x",
+ "japaneseText":"SORA‐Ⅵ 火ノ鳥",
+ "japaneseFontType":0,
+ "englishUsText":"SORA‐Ⅵ 火ノ鳥",
+ "englishUsFontType":0,
+ "chineseTText":"SORA‐Ⅵ 火ノ鳥",
+ "chineseTFontType":0,
+ "koreanText":"SORA‐Ⅵ 火ノ鳥",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_coquet",
+ "japaneseText":"Coquette",
+ "japaneseFontType":0,
+ "englishUsText":"Coquette",
+ "englishUsFontType":0,
+ "chineseTText":"Coquette",
+ "chineseTFontType":0,
+ "koreanText":"Coquette",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_udtmgl",
+ "japaneseText":"MEGALOVANIA",
+ "japaneseFontType":0,
+ "englishUsText":"MEGALOVANIA",
+ "englishUsFontType":0,
+ "chineseTText":"MEGALOVANIA",
+ "chineseTFontType":0,
+ "koreanText":"MEGALOVANIA",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_udtkkr",
+ "japaneseText":"心の痛み",
+ "japaneseFontType":0,
+ "englishUsText":"心の痛み",
+ "englishUsFontType":0,
+ "chineseTText":"心の痛み",
+ "chineseTFontType":0,
+ "koreanText":"心の痛み",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_udtymt",
+ "japaneseText":"夢と希望",
+ "japaneseFontType":0,
+ "englishUsText":"夢と希望",
+ "englishUsFontType":0,
+ "chineseTText":"夢と希望",
+ "chineseTFontType":0,
+ "koreanText":"夢と希望",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_helhal",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Hello! Halloween",
+ "englishUsFontType":0,
+ "chineseTText":"Hello! Halloween",
+ "chineseTFontType":1,
+ "koreanText":"Hello! Halloween",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_doctrx",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Doctor X -main theme-",
+ "englishUsFontType":0,
+ "chineseTText":"Doctor X -main theme-",
+ "chineseTFontType":1,
+ "koreanText":"Doctor X -main theme-",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_clsdnu",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"The Lovely, Lively Danube",
+ "englishUsFontType":0,
+ "chineseTText":"美麗又急促的多瑙河",
+ "chineseTFontType":1,
+ "koreanText":"아름답고 바쁜 도나우",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_calib6",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_germin",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_sora6x",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"SORA-Ⅵ HINOTORI",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"SORA-Ⅵ 히노토리",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_coquet",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_udtmgl",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_udtkkr",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Heartache",
+ "englishUsFontType":0,
+ "chineseTText":"Heartache",
+ "chineseTFontType":1,
+ "koreanText":"Heartache",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_udtymt",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Hopes and Dreams",
+ "englishUsFontType":0,
+ "chineseTText":"Hopes and Dreams",
+ "chineseTFontType":1,
+ "koreanText":"Hopes and Dreams",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_helhal",
+ "japaneseText":"「ハロー!ハロウィン」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Hello! Halloween」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Hello! Halloween」",
+ "chineseTFontType":1,
+ "koreanText":"「Hello! Halloween」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_doctrx",
+ "japaneseText":"「ドクターXのテーマ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Doctor X -main theme-」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Doctor X -main theme-」",
+ "chineseTFontType":1,
+ "koreanText":"「Doctor X -main theme-」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_clsdnu",
+ "japaneseText":"「美しく忙しきドナウ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「The Lovely, Lively Danube」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「美麗又急促的多瑙河」",
+ "chineseTFontType":1,
+ "koreanText":"「아름답고 바쁜 도나우」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_calib6",
+ "japaneseText":"「Undying Legend」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Undying Legend」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Undying Legend」",
+ "chineseTFontType":1,
+ "koreanText":"「Undying Legend」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_germin",
+ "japaneseText":"「GERMINATION」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「GERMINATION」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「GERMINATION」",
+ "chineseTFontType":1,
+ "koreanText":"「GERMINATION」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_sora6x",
+ "japaneseText":"「SORA‐Ⅵ 火ノ鳥」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SORA-Ⅵ HINOTORI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「SORA‐Ⅵ 火ノ鳥」",
+ "chineseTFontType":1,
+ "koreanText":"「SORA-Ⅵ 히노토리」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_coquet",
+ "japaneseText":"「Coquette」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Coquette」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Coquette」",
+ "chineseTFontType":1,
+ "koreanText":"「Coquette」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_udtmgl",
+ "japaneseText":"「MEGALOVANIA」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「MEGALOVANIA」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「MEGALOVANIA」",
+ "chineseTFontType":1,
+ "koreanText":"「MEGALOVANIA」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_udtkkr",
+ "japaneseText":"「心の痛み」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Heartache」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Heartache」",
+ "chineseTFontType":1,
+ "koreanText":"「Heartache」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_udtymt",
+ "japaneseText":"「夢と希望」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Hopes and Dreams」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Hopes and Dreams」",
+ "chineseTFontType":1,
+ "koreanText":"「Hopes and Dreams」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_helhal",
+ "japaneseText":"「ハロー!ハロウィン」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Hello! Halloween」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Hello! Halloween」",
+ "chineseTFontType":1,
+ "koreanText":"「Hello! Halloween」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_doctrx",
+ "japaneseText":"「ドクターXのテーマ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Doctor X -main theme-」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Doctor X -main theme-」",
+ "chineseTFontType":1,
+ "koreanText":"「Doctor X -main theme-」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_clsdnu",
+ "japaneseText":"「美しく忙しきドナウ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「The Lovely, Lively Danube」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「美麗又急促的多瑙河」",
+ "chineseTFontType":1,
+ "koreanText":"「아름답고 바쁜 도나우」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_calib6",
+ "japaneseText":"「Undying Legend」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Undying Legend」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Undying Legend」",
+ "chineseTFontType":1,
+ "koreanText":"「Undying Legend」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_germin",
+ "japaneseText":"「GERMINATION」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「GERMINATION」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「GERMINATION」",
+ "chineseTFontType":1,
+ "koreanText":"「GERMINATION」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_sora6x",
+ "japaneseText":"「SORA‐Ⅵ 火ノ鳥」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SORA-Ⅵ HINOTORI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「SORA‐Ⅵ 火ノ鳥」",
+ "chineseTFontType":1,
+ "koreanText":"「SORA-Ⅵ 히노토리」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_coquet",
+ "japaneseText":"「Coquette」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Coquette」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Coquette」",
+ "chineseTFontType":1,
+ "koreanText":"「Coquette」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_udtmgl",
+ "japaneseText":"「MEGALOVANIA」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「MEGALOVANIA」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「MEGALOVANIA」",
+ "chineseTFontType":1,
+ "koreanText":"「MEGALOVANIA」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_udtkkr",
+ "japaneseText":"「心の痛み」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Heartache」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Heartache」",
+ "chineseTFontType":1,
+ "koreanText":"「Heartache」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_udtymt",
+ "japaneseText":"「夢と希望」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Hopes and Dreams」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Hopes and Dreams」",
+ "chineseTFontType":1,
+ "koreanText":"「Hopes and Dreams」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack30",
+ "japaneseText":"ドンだーパックVol.30",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.30",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.30",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.30",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack30",
+ "japaneseText":"ドンだーパック\nVol.30",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol.30",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.30",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.30",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack29",
+ "japaneseText":"ドンだーパックVol.29",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.29",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.29",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.29",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack29",
+ "japaneseText":"ドンだーパック\nVol.29",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol.29",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.29",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.29",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack28",
+ "japaneseText":"ドンだーパックVol.28",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.28",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.28",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.28",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack28",
+ "japaneseText":"ドンだーパック\nVol.28",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol.28",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.28",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.28",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack27",
+ "japaneseText":"ドンだーパックVol.27",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.27",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.27",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.27",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack27",
+ "japaneseText":"ドンだーパック\nVol.27",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol.27",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.27",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.27",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack26",
+ "japaneseText":"ドンだーパックVol.26",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.26",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.26",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.26",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack26",
+ "japaneseText":"ドンだーパック\nVol.26",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol.26",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.26",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.26",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_donpack25",
+ "japaneseText":"ドンだーパックVol.25",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack Vol.25",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack Vol.25",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩 Vol.25",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_donpack25",
+ "japaneseText":"ドンだーパック\nVol.25",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol.25",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol.25",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.25",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_hitpack06",
+ "japaneseText":"人気曲パックVol.6",
+ "japaneseFontType":0,
+ "englishUsText":"Popular songs Pack Vol.6",
+ "englishUsFontType":0,
+ "chineseTText":"Popular songs Pack Vol.6",
+ "chineseTFontType":1,
+ "koreanText":"인기곡 팩 Vol.6",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_hitpack06",
+ "japaneseText":"人気曲パック\nVol.6",
+ "japaneseFontType":0,
+ "englishUsText":"Popular songs Pack\nVol.6",
+ "englishUsFontType":0,
+ "chineseTText":"Popular songs Pack\nVol.6",
+ "chineseTFontType":1,
+ "koreanText":"인기곡 팩\nVol.6",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_hitpack07",
+ "japaneseText":"人気曲パックVol.7",
+ "japaneseFontType":0,
+ "englishUsText":"Popular songs Pack Vol.7",
+ "englishUsFontType":0,
+ "chineseTText":"Popular songs Pack Vol.7",
+ "chineseTFontType":1,
+ "koreanText":"인기곡 팩 Vol.7",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_hitpack07",
+ "japaneseText":"人気曲パック\nVol.7",
+ "japaneseFontType":0,
+ "englishUsText":"Popular songs Pack\nVol.7",
+ "englishUsFontType":0,
+ "chineseTText":"Popular songs Pack\nVol.7",
+ "chineseTFontType":1,
+ "koreanText":"인기곡 팩\nVol.7",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_hitpack08",
+ "japaneseText":"人気曲パックVol.8",
+ "japaneseFontType":0,
+ "englishUsText":"Popular songs Pack Vol.8",
+ "englishUsFontType":0,
+ "chineseTText":"Popular songs Pack Vol.8",
+ "chineseTFontType":1,
+ "koreanText":"인기곡 팩 Vol.8",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_hitpack08",
+ "japaneseText":"人気曲パック\nVol.8",
+ "japaneseFontType":0,
+ "englishUsText":"Popular songs Pack\nVol.8",
+ "englishUsFontType":0,
+ "chineseTText":"Popular songs Pack\nVol.8",
+ "chineseTFontType":1,
+ "koreanText":"인기곡 팩\nVol.8",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_undertale",
+ "japaneseText":"UNDERTALEパック",
+ "japaneseFontType":0,
+ "englishUsText":"UNDERTALE Pack",
+ "englishUsFontType":0,
+ "chineseTText":"UNDERTALE Pack",
+ "chineseTFontType":1,
+ "koreanText":"UNDERTALE Pack",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_packname_undertale",
+ "japaneseText":"UNDERTALEパック",
+ "japaneseFontType":0,
+ "englishUsText":"UNDERTALE Pack",
+ "englishUsFontType":0,
+ "chineseTText":"UNDERTALE Pack",
+ "chineseTFontType":1,
+ "koreanText":"UNDERTALE\nPack",
+ "koreanFontType":2
+ },
+ {
+ "key":"appstore_name_season05",
+ "japaneseText":"ドンだーパック\nVol.25~Vol.30\nセット",
+ "japaneseFontType":0,
+ "englishUsText":"Donder Pack\nVol.25-30 Set",
+ "englishUsFontType":0,
+ "chineseTText":"Donder Pack\nVol 25~30\nSet",
+ "chineseTFontType":1,
+ "koreanText":"태고러 팩\nVol.25~Vol.30\n세트",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_halloween",
+ "japaneseText":"イーッヒッヒッヒッ・・・",
+ "japaneseFontType":0,
+ "englishUsText":"Eeee-hee-hee-hee-hee!",
+ "englishUsFontType":0,
+ "chineseTText":"咿嘻嘻嘻……",
+ "chineseTFontType":1,
+ "koreanText":"이~힛힛힛…",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_halloween",
+ "japaneseText":"トリック・オア・タイコフェスはじめました",
+ "japaneseFontType":0,
+ "englishUsText":"Began Trick-or-Taiko Fest",
+ "englishUsFontType":0,
+ "chineseTText":"開始遊玩不給糖就taiko節慶",
+ "chineseTFontType":1,
+ "koreanText":"Trick or taiko 페스 시작했습니다",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_halloweenex",
+ "japaneseText":"トリック・オア・タイコフェスの達人",
+ "japaneseFontType":0,
+ "englishUsText":"Trick-or-Taiko Fest Master",
+ "englishUsFontType":0,
+ "chineseTText":"不給糖就taiko節慶達人",
+ "chineseTFontType":1,
+ "koreanText":"Trick or taiko 페스의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_ghost",
+ "japaneseText":"ゴースト",
+ "japaneseFontType":0,
+ "englishUsText":"Ghost",
+ "englishUsFontType":0,
+ "chineseTText":"鬼魂",
+ "chineseTFontType":1,
+ "koreanText":"고스트",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_halloween",
+ "japaneseText":"ハロウィン",
+ "japaneseFontType":0,
+ "englishUsText":"Halloween",
+ "englishUsFontType":0,
+ "chineseTText":"萬聖節",
+ "chineseTFontType":1,
+ "koreanText":"할로윈",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_halloween",
+ "japaneseText":"トリック・オア・タイコフェス",
+ "japaneseFontType":0,
+ "englishUsText":"Trick-or-Taiko Fest",
+ "englishUsFontType":0,
+ "chineseTText":"不給糖就taiko節慶",
+ "chineseTFontType":1,
+ "koreanText":"Trick or taiko 페스",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_vfpetr",
+ "japaneseText":"雨とペトラ",
+ "japaneseFontType":0,
+ "englishUsText":"雨とペトラ",
+ "englishUsFontType":0,
+ "chineseTText":"雨とペトラ",
+ "chineseTFontType":0,
+ "koreanText":"雨とペトラ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kaiki",
+ "japaneseText":"トータル・エクリプス 2035",
+ "japaneseFontType":0,
+ "englishUsText":"トータル・エクリプス 2035",
+ "englishUsFontType":0,
+ "chineseTText":"トータル・エクリプス 2035",
+ "chineseTFontType":0,
+ "koreanText":"トータル・エクリプス 2035",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_shgclr",
+ "japaneseText":"カラフル",
+ "japaneseFontType":0,
+ "englishUsText":"カラフル",
+ "englishUsFontType":0,
+ "chineseTText":"カラフル",
+ "chineseTFontType":0,
+ "koreanText":"カラフル",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mintte",
+ "japaneseText":"mint tears",
+ "japaneseFontType":0,
+ "englishUsText":"mint tears",
+ "englishUsFontType":0,
+ "chineseTText":"mint tears",
+ "chineseTFontType":0,
+ "koreanText":"mint tears",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_solstr",
+ "japaneseText":"Solitude Star",
+ "japaneseFontType":0,
+ "englishUsText":"Solitude Star",
+ "englishUsFontType":0,
+ "chineseTText":"Solitude Star",
+ "chineseTFontType":0,
+ "koreanText":"Solitude Star",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_manpu2",
+ "japaneseText":"あなたとトゥラッタッタ♪",
+ "japaneseFontType":0,
+ "englishUsText":"あなたとトゥラッタッタ♪",
+ "englishUsFontType":0,
+ "chineseTText":"あなたとトゥラッタッタ♪",
+ "chineseTFontType":0,
+ "koreanText":"あなたとトゥラッタッタ♪",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kimetu",
+ "japaneseText":"紅蓮華",
+ "japaneseFontType":0,
+ "englishUsText":"紅蓮華",
+ "englishUsFontType":0,
+ "chineseTText":"紅蓮華",
+ "chineseTFontType":0,
+ "koreanText":"紅蓮華",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_digmon",
+ "japaneseText":"Butter-Fly",
+ "japaneseFontType":0,
+ "englishUsText":"Butter-Fly",
+ "englishUsFontType":0,
+ "chineseTText":"Butter-Fly",
+ "chineseTFontType":0,
+ "koreanText":"Butter-Fly",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_vfpetr",
+ "japaneseText":"バルーン feat.flower",
+ "japaneseFontType":0,
+ "englishUsText":"バルーン feat.flower",
+ "englishUsFontType":0,
+ "chineseTText":"バルーン feat.flower",
+ "chineseTFontType":0,
+ "koreanText":"バルーン feat.flower",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_kaiki",
+ "japaneseText":"~少女の時空皆既日食~",
+ "japaneseFontType":0,
+ "englishUsText":"~少女の時空皆既日食~",
+ "englishUsFontType":0,
+ "chineseTText":"~少女の時空皆既日食~",
+ "chineseTFontType":0,
+ "koreanText":"~少女の時空皆既日食~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_shgclr",
+ "japaneseText":"しょご/野村渉悟",
+ "japaneseFontType":0,
+ "englishUsText":"しょご/野村渉悟",
+ "englishUsFontType":0,
+ "chineseTText":"しょご/野村渉悟",
+ "chineseTFontType":0,
+ "koreanText":"しょご/野村渉悟",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_mintte",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_solstr",
+ "japaneseText":"春先 x beet",
+ "japaneseFontType":0,
+ "englishUsText":"春先 x beet",
+ "englishUsFontType":0,
+ "chineseTText":"春先 x beet",
+ "chineseTFontType":0,
+ "koreanText":"春先 x beet",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_manpu2",
+ "japaneseText":"DREAMS COME TRUE / 「まんぷく」より",
+ "japaneseFontType":0,
+ "englishUsText":"DREAMS COME TRUE / 「まんぷく」より",
+ "englishUsFontType":0,
+ "chineseTText":"DREAMS COME TRUE / 「まんぷく」より",
+ "chineseTFontType":0,
+ "koreanText":"DREAMS COME TRUE / 「まんぷく」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_kimetu",
+ "japaneseText":"「鬼滅の刃」より",
+ "japaneseFontType":0,
+ "englishUsText":"「鬼滅の刃」より",
+ "englishUsFontType":0,
+ "chineseTText":"「鬼滅の刃」より",
+ "chineseTFontType":0,
+ "koreanText":"「鬼滅の刃」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_digmon",
+ "japaneseText":"「デジモンアドベンチャー」より",
+ "japaneseFontType":0,
+ "englishUsText":"「デジモンアドベンチャー」より",
+ "englishUsFontType":0,
+ "chineseTText":"「デジモンアドベンチャー」より",
+ "chineseTFontType":0,
+ "koreanText":"「デジモンアドベンチャー」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_vfpetr",
+ "japaneseText":"雨とペトラ",
+ "japaneseFontType":0,
+ "englishUsText":"雨とペトラ",
+ "englishUsFontType":0,
+ "chineseTText":"雨とペトラ",
+ "chineseTFontType":0,
+ "koreanText":"雨とペトラ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_kaiki",
+ "japaneseText":"トータル・エクリプス 2035",
+ "japaneseFontType":0,
+ "englishUsText":"トータル・エクリプス 2035",
+ "englishUsFontType":0,
+ "chineseTText":"トータル・エクリプス 2035",
+ "chineseTFontType":0,
+ "koreanText":"トータル・エクリプス 2035",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_shgclr",
+ "japaneseText":"カラフル",
+ "japaneseFontType":0,
+ "englishUsText":"カラフル",
+ "englishUsFontType":0,
+ "chineseTText":"カラフル",
+ "chineseTFontType":0,
+ "koreanText":"カラフル",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_mintte",
+ "japaneseText":"mint tears",
+ "japaneseFontType":0,
+ "englishUsText":"mint tears",
+ "englishUsFontType":0,
+ "chineseTText":"mint tears",
+ "chineseTFontType":0,
+ "koreanText":"mint tears",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_solstr",
+ "japaneseText":"Solitude Star",
+ "japaneseFontType":0,
+ "englishUsText":"Solitude Star",
+ "englishUsFontType":0,
+ "chineseTText":"Solitude Star",
+ "chineseTFontType":0,
+ "koreanText":"Solitude Star",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_manpu2",
+ "japaneseText":"あなたとトゥラッタッタ♪",
+ "japaneseFontType":0,
+ "englishUsText":"あなたとトゥラッタッタ♪",
+ "englishUsFontType":0,
+ "chineseTText":"あなたとトゥラッタッタ♪",
+ "chineseTFontType":0,
+ "koreanText":"あなたとトゥラッタッタ♪",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_kimetu",
+ "japaneseText":"紅蓮華",
+ "japaneseFontType":0,
+ "englishUsText":"紅蓮華",
+ "englishUsFontType":0,
+ "chineseTText":"紅蓮華",
+ "chineseTFontType":0,
+ "koreanText":"紅蓮華",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_digmon",
+ "japaneseText":"Butter-Fly",
+ "japaneseFontType":0,
+ "englishUsText":"Butter-Fly",
+ "englishUsFontType":0,
+ "chineseTText":"Butter-Fly",
+ "chineseTFontType":0,
+ "koreanText":"Butter-Fly",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_vfpetr",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Ameto Petora",
+ "englishUsFontType":0,
+ "chineseTText":"Ameto Petora",
+ "chineseTFontType":1,
+ "koreanText":"Ameto Petora",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kaiki",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Total Eclipse 2035",
+ "englishUsFontType":0,
+ "chineseTText":"日全食 2035",
+ "chineseTFontType":1,
+ "koreanText":"개기 일식 2035",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_shgclr",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"colorful",
+ "englishUsFontType":0,
+ "chineseTText":"colorful",
+ "chineseTFontType":1,
+ "koreanText":"colorful",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mintte",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_solstr",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_manpu2",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Anata To Tu Lat Tat Ta♪",
+ "englishUsFontType":0,
+ "chineseTText":"Anata To Tu Lat Tat Ta♪",
+ "chineseTFontType":1,
+ "koreanText":"Anata To Tu Lat Tat Ta♪",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kimetu",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Gurenge",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"Gurenge",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_digmon",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_vfpetr",
+ "japaneseText":"「雨とペトラ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Ameto Petora」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Ameto Petora」",
+ "chineseTFontType":1,
+ "koreanText":"「Ameto Petora」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_kaiki",
+ "japaneseText":"「トータル・エクリプス 2035」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Total Eclipse 2035」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「日全食 2035」",
+ "chineseTFontType":1,
+ "koreanText":"「개기 일식 2035」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_shgclr",
+ "japaneseText":"「カラフル」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「colorful」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「colorful」",
+ "chineseTFontType":1,
+ "koreanText":"「colorful」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_mintte",
+ "japaneseText":"「mint tears」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「mint tears」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「mint tears」",
+ "chineseTFontType":1,
+ "koreanText":"「mint tears」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_solstr",
+ "japaneseText":"「Solitude Star」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Solitude Star」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Solitude Star」",
+ "chineseTFontType":1,
+ "koreanText":"「Solitude Star」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_manpu2",
+ "japaneseText":"「あなたとトゥラッタッタ♪」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Anata To Tu Lat Tat Ta♪」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Anata To Tu Lat Tat Ta♪」",
+ "chineseTFontType":1,
+ "koreanText":"「Anata To Tu Lat Tat Ta♪」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_kimetu",
+ "japaneseText":"「紅蓮華」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Gurenge」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「紅蓮華」",
+ "chineseTFontType":1,
+ "koreanText":"「Gurenge」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_digmon",
+ "japaneseText":"「Butter-Fly」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Butter-Fly」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Butter-Fly」",
+ "chineseTFontType":1,
+ "koreanText":"「Butter-Fly」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_vfpetr",
+ "japaneseText":"「雨とペトラ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Ameto Petora」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Ameto Petora」",
+ "chineseTFontType":1,
+ "koreanText":"「Ameto Petora」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_kaiki",
+ "japaneseText":"「トータル・エクリプス 2035」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Total Eclipse 2035」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「日全食 2035」",
+ "chineseTFontType":1,
+ "koreanText":"「개기 일식 2035」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_shgclr",
+ "japaneseText":"「カラフル」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「colorful」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「colorful」",
+ "chineseTFontType":1,
+ "koreanText":"「colorful」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_mintte",
+ "japaneseText":"「mint tears」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「mint tears」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「mint tears」",
+ "chineseTFontType":1,
+ "koreanText":"「mint tears」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_solstr",
+ "japaneseText":"「Solitude Star」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Solitude Star」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Solitude Star」",
+ "chineseTFontType":1,
+ "koreanText":"「Solitude Star」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_manpu2",
+ "japaneseText":"「あなたとトゥラッタッタ♪」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Anata To Tu Lat Tat Ta♪」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Anata To Tu Lat Tat Ta♪」",
+ "chineseTFontType":1,
+ "koreanText":"「Anata To Tu Lat Tat Ta♪」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_kimetu",
+ "japaneseText":"「紅蓮華」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Gurenge」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「紅蓮華」",
+ "chineseTFontType":1,
+ "koreanText":"「Gurenge」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_digmon",
+ "japaneseText":"「Butter-Fly」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Butter-Fly」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Butter-Fly」",
+ "chineseTFontType":1,
+ "koreanText":"「Butter-Fly」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_clsn",
+ "japaneseText":"新世界より",
+ "japaneseFontType":0,
+ "englishUsText":"新世界より",
+ "englishUsFontType":0,
+ "chineseTText":"新世界より",
+ "chineseTFontType":0,
+ "koreanText":"新世界より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_vfshrr",
+ "japaneseText":"シャルル",
+ "japaneseFontType":0,
+ "englishUsText":"シャルル",
+ "englishUsFontType":0,
+ "chineseTText":"シャルル",
+ "chineseTFontType":0,
+ "koreanText":"シャルル",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kahim",
+ "japaneseText":"ラ・モレーナ・クモナイ",
+ "japaneseFontType":0,
+ "englishUsText":"ラ・モレーナ・クモナイ",
+ "englishUsFontType":0,
+ "chineseTText":"ラ・モレーナ・クモナイ",
+ "chineseTFontType":0,
+ "koreanText":"ラ・モレーナ・クモナイ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_alexan",
+ "japaneseText":"アレキサンダーのテーマ",
+ "japaneseFontType":0,
+ "englishUsText":"アレキサンダーのテーマ",
+ "englishUsFontType":0,
+ "chineseTText":"アレキサンダーのテーマ",
+ "chineseTFontType":0,
+ "koreanText":"アレキサンダーのテーマ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_koi907",
+ "japaneseText":"濃紅",
+ "japaneseFontType":0,
+ "englishUsText":"濃紅",
+ "englishUsFontType":0,
+ "chineseTText":"濃紅",
+ "chineseTFontType":0,
+ "koreanText":"濃紅",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_insidm",
+ "japaneseText":"1/2 ~inside me",
+ "japaneseFontType":0,
+ "englishUsText":"1/2 ~inside me",
+ "englishUsFontType":0,
+ "chineseTText":"1/2 ~inside me",
+ "chineseTFontType":0,
+ "koreanText":"1/2 ~inside me",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_ynzums",
+ "japaneseText":"馬と鹿",
+ "japaneseFontType":0,
+ "englishUsText":"馬と鹿",
+ "englishUsFontType":0,
+ "chineseTText":"馬と鹿",
+ "chineseTFontType":0,
+ "koreanText":"馬と鹿",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kim69",
+ "japaneseText":"君はロックを聴かない",
+ "japaneseFontType":0,
+ "englishUsText":"君はロックを聴かない",
+ "englishUsFontType":0,
+ "chineseTText":"君はロックを聴かない",
+ "chineseTFontType":0,
+ "koreanText":"君はロックを聴かない",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_glyzmb",
+ "japaneseText":"シン・ゾンビ",
+ "japaneseFontType":0,
+ "englishUsText":"シン・ゾンビ",
+ "englishUsFontType":0,
+ "chineseTText":"シン・ゾンビ",
+ "chineseTFontType":0,
+ "koreanText":"シン・ゾンビ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_clsn",
+ "japaneseText":"ドヴォルザーク",
+ "japaneseFontType":0,
+ "englishUsText":"ドヴォルザーク",
+ "englishUsFontType":0,
+ "chineseTText":"ドヴォルザーク",
+ "chineseTFontType":0,
+ "koreanText":"ドヴォルザーク",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_vfshrr",
+ "japaneseText":"バルーン feat.flower",
+ "japaneseFontType":0,
+ "englishUsText":"バルーン feat.flower",
+ "englishUsFontType":0,
+ "chineseTText":"バルーン feat.flower",
+ "chineseTFontType":0,
+ "koreanText":"バルーン feat.flower",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_kahim",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_alexan",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_koi907",
+ "japaneseText":"黒沢ダイスケ × 小寺可南子",
+ "japaneseFontType":0,
+ "englishUsText":"黒沢ダイスケ × 小寺可南子",
+ "englishUsFontType":0,
+ "chineseTText":"黒沢ダイスケ × 小寺可南子",
+ "chineseTFontType":0,
+ "koreanText":"黒沢ダイスケ × 小寺可南子",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_insidm",
+ "japaneseText":"篠原瑞希 feat. 愛原圭織",
+ "japaneseFontType":0,
+ "englishUsText":"篠原瑞希 feat. 愛原圭織",
+ "englishUsFontType":0,
+ "chineseTText":"篠原瑞希 feat. 愛原圭織",
+ "chineseTFontType":0,
+ "koreanText":"篠原瑞希 feat. 愛原圭織",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_ynzums",
+ "japaneseText":"米津玄師 / TBS系 日曜劇場「ノーサイド・ゲーム」主題歌",
+ "japaneseFontType":0,
+ "englishUsText":"米津玄師 / TBS系 日曜劇場「ノーサイド・ゲーム」主題歌",
+ "englishUsFontType":0,
+ "chineseTText":"米津玄師 / TBS系 日曜劇場「ノーサイド・ゲーム」主題歌",
+ "chineseTFontType":0,
+ "koreanText":"米津玄師 / TBS系 日曜劇場「ノーサイド・ゲーム」主題歌",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_kim69",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_glyzmb",
+ "japaneseText":"GLAY×太鼓の達人タイアップソング",
+ "japaneseFontType":0,
+ "englishUsText":"GLAY×太鼓の達人タイアップソング",
+ "englishUsFontType":0,
+ "chineseTText":"GLAY×太鼓の達人タイアップソング",
+ "chineseTFontType":0,
+ "koreanText":"GLAY×太鼓の達人タイアップソング",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_clsn",
+ "japaneseText":"新世界より",
+ "japaneseFontType":0,
+ "englishUsText":"新世界より",
+ "englishUsFontType":0,
+ "chineseTText":"新世界より",
+ "chineseTFontType":0,
+ "koreanText":"新世界より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_vfshrr",
+ "japaneseText":"シャルル",
+ "japaneseFontType":0,
+ "englishUsText":"シャルル",
+ "englishUsFontType":0,
+ "chineseTText":"シャルル",
+ "chineseTFontType":0,
+ "koreanText":"シャルル",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_kahim",
+ "japaneseText":"ラ・モレーナ・クモナイ",
+ "japaneseFontType":0,
+ "englishUsText":"ラ・モレーナ・クモナイ",
+ "englishUsFontType":0,
+ "chineseTText":"ラ・モレーナ・クモナイ",
+ "chineseTFontType":0,
+ "koreanText":"ラ・モレーナ・クモナイ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_alexan",
+ "japaneseText":"アレキサンダーのテーマ",
+ "japaneseFontType":0,
+ "englishUsText":"アレキサンダーのテーマ",
+ "englishUsFontType":0,
+ "chineseTText":"アレキサンダーのテーマ",
+ "chineseTFontType":0,
+ "koreanText":"アレキサンダーのテーマ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_koi907",
+ "japaneseText":"濃紅",
+ "japaneseFontType":0,
+ "englishUsText":"濃紅",
+ "englishUsFontType":0,
+ "chineseTText":"濃紅",
+ "chineseTFontType":0,
+ "koreanText":"濃紅",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_insidm",
+ "japaneseText":"1/2 ~inside me",
+ "japaneseFontType":0,
+ "englishUsText":"1/2 ~inside me",
+ "englishUsFontType":0,
+ "chineseTText":"1/2 ~inside me",
+ "chineseTFontType":0,
+ "koreanText":"1/2 ~inside me",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_ynzums",
+ "japaneseText":"馬と鹿",
+ "japaneseFontType":0,
+ "englishUsText":"馬と鹿",
+ "englishUsFontType":0,
+ "chineseTText":"馬と鹿",
+ "chineseTFontType":0,
+ "koreanText":"馬と鹿",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_kim69",
+ "japaneseText":"君はロックを聴かない",
+ "japaneseFontType":0,
+ "englishUsText":"君はロックを聴かない",
+ "englishUsFontType":0,
+ "chineseTText":"君はロックを聴かない",
+ "chineseTFontType":0,
+ "koreanText":"君はロックを聴かない",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_glyzmb",
+ "japaneseText":"シン・ゾンビ",
+ "japaneseFontType":0,
+ "englishUsText":"シン・ゾンビ",
+ "englishUsFontType":0,
+ "chineseTText":"シン・ゾンビ",
+ "chineseTFontType":0,
+ "koreanText":"シン・ゾンビ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_clsn",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"From the New World",
+ "englishUsFontType":0,
+ "chineseTText":"來自新世界",
+ "chineseTFontType":1,
+ "koreanText":"신세계로부터",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_vfshrr",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Charles",
+ "englishUsFontType":0,
+ "chineseTText":"查爾斯",
+ "chineseTFontType":1,
+ "koreanText":"샤를",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kahim",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"La MORENA KUMONAI",
+ "englishUsFontType":0,
+ "chineseTText":"La MORENA KUMONAI",
+ "chineseTFontType":1,
+ "koreanText":"La MORENA KUMONAI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_alexan",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Theme of Alexander",
+ "englishUsFontType":0,
+ "chineseTText":"亞歷山大 主題曲",
+ "chineseTFontType":1,
+ "koreanText":"알렉산더・테마 곡",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_koi907",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Koikurenai",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"코이쿠레나이",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_insidm",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_ynzums",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"UMA TO SHIKA",
+ "englishUsFontType":0,
+ "chineseTText":"UMA TO SHIKA",
+ "chineseTFontType":1,
+ "koreanText":"UMA TO SHIKA",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kim69",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"KIMIWA ROCK WO KIKANAI",
+ "englishUsFontType":0,
+ "chineseTText":"KIMIWA ROCK WO KIKANAI",
+ "chineseTFontType":1,
+ "koreanText":"KIMIWA ROCK WO KIKANAI",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_glyzmb",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"SHIN ZOMBIE",
+ "englishUsFontType":0,
+ "chineseTText":"SHIN ZOMBIE",
+ "chineseTFontType":1,
+ "koreanText":"SHIN ZOMBIE",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_clsn",
+ "japaneseText":"「新世界より」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「From the New World」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「來自新世界」",
+ "chineseTFontType":1,
+ "koreanText":"「신세계로부터」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_vfshrr",
+ "japaneseText":"「シャルル」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Charles」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「查爾斯」",
+ "chineseTFontType":1,
+ "koreanText":"「샤를」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_kahim",
+ "japaneseText":"「ラ・モレーナ・クモナイ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「La MORENA KUMONAI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「La MORENA KUMONAI」",
+ "chineseTFontType":1,
+ "koreanText":"「La MORENA KUMONAI」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_alexan",
+ "japaneseText":"「アレキサンダーのテーマ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Theme of Alexander」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「亞歷山大 主題曲」",
+ "chineseTFontType":1,
+ "koreanText":"「알렉산더・테마 곡」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_koi907",
+ "japaneseText":"「濃紅」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Koikurenai」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「濃紅」",
+ "chineseTFontType":1,
+ "koreanText":"「코이쿠레나이」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_insidm",
+ "japaneseText":"「1/2 ~inside me」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「1/2 ~inside me」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「1/2 ~inside me」",
+ "chineseTFontType":1,
+ "koreanText":"「1/2 ~inside me」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_ynzums",
+ "japaneseText":"「馬と鹿」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「UMA TO SHIKA」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「UMA TO SHIKA」",
+ "chineseTFontType":1,
+ "koreanText":"「UMA TO SHIKA」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_kim69",
+ "japaneseText":"「君はロックを聴かない」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「KIMIWA ROCK WO KIKANAI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「KIMIWA ROCK WO KIKANAI」",
+ "chineseTFontType":1,
+ "koreanText":"「KIMIWA ROCK WO KIKANAI」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_glyzmb",
+ "japaneseText":"「シン・ゾンビ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SHIN ZOMBIE」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「SHIN ZOMBIE」",
+ "chineseTFontType":1,
+ "koreanText":"「SHIN ZOMBIE」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_clsn",
+ "japaneseText":"「新世界より」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「From the New World」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「來自新世界」",
+ "chineseTFontType":1,
+ "koreanText":"「신세계로부터」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_vfshrr",
+ "japaneseText":"「シャルル」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Charles」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「查爾斯」",
+ "chineseTFontType":1,
+ "koreanText":"「샤를」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_kahim",
+ "japaneseText":"「ラ・モレーナ・クモナイ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「La MORENA KUMONAI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「La MORENA KUMONAI」",
+ "chineseTFontType":1,
+ "koreanText":"「La MORENA KUMONAI」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_alexan",
+ "japaneseText":"「アレキサンダーのテーマ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Theme of Alexander」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「亞歷山大 主題曲」",
+ "chineseTFontType":1,
+ "koreanText":"「알렉산더・테마 곡」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_koi907",
+ "japaneseText":"「濃紅」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Koikurenai」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「濃紅」",
+ "chineseTFontType":1,
+ "koreanText":"「코이쿠레나이」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_insidm",
+ "japaneseText":"「1/2 ~inside me」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「1/2 ~inside me」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「1/2 ~inside me」",
+ "chineseTFontType":1,
+ "koreanText":"「1/2 ~inside me」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_ynzums",
+ "japaneseText":"「馬と鹿」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「UMA TO SHIKA」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「UMA TO SHIKA」",
+ "chineseTFontType":1,
+ "koreanText":"「UMA TO SHIKA」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_kim69",
+ "japaneseText":"「君はロックを聴かない」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「KIMIWA ROCK WO KIKANAI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「KIMIWA ROCK WO KIKANAI」",
+ "chineseTFontType":1,
+ "koreanText":"「KIMIWA ROCK WO KIKANAI」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_glyzmb",
+ "japaneseText":"「シン・ゾンビ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SHIN ZOMBIE」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「SHIN ZOMBIE」",
+ "chineseTFontType":1,
+ "koreanText":"「SHIN ZOMBIE」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_donkatsu2020",
+ "japaneseText":"2020年もよろしくだドン",
+ "japaneseFontType":0,
+ "englishUsText":"Ta-DON! Welcome to 2020!",
+ "englishUsFontType":0,
+ "chineseTText":"2020年也請多指教咚",
+ "chineseTFontType":1,
+ "koreanText":"2020년도 잘 부탁한다쿵",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_donkatsu2020",
+ "japaneseText":"DONKATSU2020",
+ "japaneseFontType":0,
+ "englishUsText":"DONKATSU 2020",
+ "englishUsFontType":0,
+ "chineseTText":"DONKATSU2020",
+ "chineseTFontType":1,
+ "koreanText":"DONKATSU2020",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_donkatsu2020ex",
+ "japaneseText":"TAIKO2020",
+ "japaneseFontType":0,
+ "englishUsText":"TAIKO 2020",
+ "englishUsFontType":0,
+ "chineseTText":"TAIKO2020",
+ "chineseTFontType":1,
+ "koreanText":"TAIKO2020",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_kadomatsu",
+ "japaneseText":"門松",
+ "japaneseFontType":0,
+ "englishUsText":"New Year's Pine",
+ "englishUsFontType":0,
+ "chineseTText":"門松",
+ "chineseTFontType":1,
+ "koreanText":"카도마츠",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_kagamimochi",
+ "japaneseText":"鏡餅",
+ "japaneseFontType":0,
+ "englishUsText":"New Year's Mochi",
+ "englishUsFontType":0,
+ "chineseTText":"鏡餅",
+ "chineseTFontType":1,
+ "koreanText":"카가미모치",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_kamaboko",
+ "japaneseText":"かまぼこ",
+ "japaneseFontType":0,
+ "englishUsText":"Kamaboko",
+ "englishUsFontType":0,
+ "chineseTText":"魚板",
+ "chineseTFontType":1,
+ "koreanText":"어묵",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_donkatsu2020",
+ "japaneseText":"DONKATSU祭り2020",
+ "japaneseFontType":0,
+ "englishUsText":"DONKATSU Fest 2020",
+ "englishUsFontType":0,
+ "chineseTText":"DONKATSU祭典2020",
+ "chineseTFontType":1,
+ "koreanText":"DONKATSU축제2020",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_enenop",
+ "japaneseText":"インフェルノ",
+ "japaneseFontType":0,
+ "englishUsText":"インフェルノ",
+ "englishUsFontType":0,
+ "chineseTText":"インフェルノ",
+ "chineseTFontType":0,
+ "koreanText":"インフェルノ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_clsika",
+ "japaneseText":"レクイエム 怒りの日より",
+ "japaneseFontType":0,
+ "englishUsText":"レクイエム 怒りの日より",
+ "englishUsFontType":0,
+ "chineseTText":"レクイエム 怒りの日より",
+ "chineseTFontType":0,
+ "koreanText":"レクイエム 怒りの日より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_armage",
+ "japaneseText":"ARMAGEΔDON",
+ "japaneseFontType":0,
+ "englishUsText":"ARMAGEΔDON",
+ "englishUsFontType":0,
+ "chineseTText":"ARMAGEΔDON",
+ "chineseTFontType":0,
+ "koreanText":"ARMAGEΔDON",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_nmsurv",
+ "japaneseText":"ナイトメア・サバイバー",
+ "japaneseFontType":0,
+ "englishUsText":"ナイトメア・サバイバー",
+ "englishUsFontType":0,
+ "chineseTText":"ナイトメア・サバイバー",
+ "chineseTFontType":0,
+ "koreanText":"ナイトメア・サバイバー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_3d3b2x",
+ "japaneseText":"龍脈の王",
+ "japaneseFontType":0,
+ "englishUsText":"龍脈の王",
+ "englishUsFontType":0,
+ "chineseTText":"龍脈の王",
+ "chineseTFontType":0,
+ "koreanText":"龍脈の王",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_enenop",
+ "japaneseText":"「炎炎ノ消防隊」より",
+ "japaneseFontType":0,
+ "englishUsText":"「炎炎ノ消防隊」より",
+ "englishUsFontType":0,
+ "chineseTText":"「炎炎ノ消防隊」より",
+ "chineseTFontType":0,
+ "koreanText":"「炎炎ノ消防隊」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_clsika",
+ "japaneseText":"ヴェルディ",
+ "japaneseFontType":0,
+ "englishUsText":"ヴェルディ",
+ "englishUsFontType":0,
+ "chineseTText":"ヴェルディ",
+ "chineseTFontType":0,
+ "koreanText":"ヴェルディ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_armage",
+ "japaneseText":"BlackY",
+ "japaneseFontType":0,
+ "englishUsText":"BlackY",
+ "englishUsFontType":0,
+ "chineseTText":"BlackY",
+ "chineseTFontType":0,
+ "koreanText":"BlackY",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_nmsurv",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_3d3b2x",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_enenop",
+ "japaneseText":"インフェルノ",
+ "japaneseFontType":0,
+ "englishUsText":"インフェルノ",
+ "englishUsFontType":0,
+ "chineseTText":"インフェルノ",
+ "chineseTFontType":0,
+ "koreanText":"インフェルノ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_clsika",
+ "japaneseText":"レクイエム 怒りの日より",
+ "japaneseFontType":0,
+ "englishUsText":"レクイエム 怒りの日より",
+ "englishUsFontType":0,
+ "chineseTText":"レクイエム 怒りの日より",
+ "chineseTFontType":0,
+ "koreanText":"レクイエム 怒りの日より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_armage",
+ "japaneseText":"ARMAGEΔDON",
+ "japaneseFontType":0,
+ "englishUsText":"ARMAGEΔDON",
+ "englishUsFontType":0,
+ "chineseTText":"ARMAGEΔDON",
+ "chineseTFontType":0,
+ "koreanText":"ARMAGEΔDON",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_nmsurv",
+ "japaneseText":"ナイトメア・サバイバー",
+ "japaneseFontType":0,
+ "englishUsText":"ナイトメア・サバイバー",
+ "englishUsFontType":0,
+ "chineseTText":"ナイトメア・サバイバー",
+ "chineseTFontType":0,
+ "koreanText":"ナイトメア・サバイバー",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_3d3b2x",
+ "japaneseText":"龍脈の王",
+ "japaneseFontType":0,
+ "englishUsText":"龍脈の王",
+ "englishUsFontType":0,
+ "chineseTText":"龍脈の王",
+ "chineseTFontType":0,
+ "koreanText":"龍脈の王",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_enenop",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"INFERNO",
+ "englishUsFontType":0,
+ "chineseTText":"INFERNO",
+ "chineseTFontType":1,
+ "koreanText":"INFERNO",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_clsika",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Requiem - Day of Wrath",
+ "englishUsFontType":0,
+ "chineseTText":"安魂曲 憤怒之日節選",
+ "chineseTFontType":1,
+ "koreanText":"레퀴엠 중 \"진노의 날\"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_armage",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_nmsurv",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Nightmare Survivor",
+ "englishUsFontType":0,
+ "chineseTText":"Nightmare Survivor",
+ "chineseTFontType":1,
+ "koreanText":"Nightmare Survivor",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_3d3b2x",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"RYUMYAKU NO OU",
+ "englishUsFontType":0,
+ "chineseTText":"龍脈之王",
+ "chineseTFontType":1,
+ "koreanText":"류우먀쿠노 오우",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_enenop",
+ "japaneseText":"「インフェルノ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「INFERNO」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「INFERNO」",
+ "chineseTFontType":1,
+ "koreanText":"「INFERNO」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_clsika",
+ "japaneseText":"「レクイエム 怒りの日より」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Requiem - Day of Wrath」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「安魂曲 憤怒之日節選」",
+ "chineseTFontType":1,
+ "koreanText":"「레퀴엠 중 \"진노의 날\"」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_armage",
+ "japaneseText":"「ARMAGEΔDON」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「ARMAGEΔDON」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「ARMAGEΔDON」",
+ "chineseTFontType":1,
+ "koreanText":"「ARMAGEΔDON」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_nmsurv",
+ "japaneseText":"「ナイトメア・サバイバー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Nightmare Survivor」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Nightmare Survivor」",
+ "chineseTFontType":1,
+ "koreanText":"「Nightmare Survivor」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_3d3b2x",
+ "japaneseText":"「龍脈の王」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「RYUMYAKU NO OU」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「龍脈之王」",
+ "chineseTFontType":1,
+ "koreanText":"「류우먀쿠노 오우」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_enenop",
+ "japaneseText":"「インフェルノ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「INFERNO」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「INFERNO」",
+ "chineseTFontType":1,
+ "koreanText":"「INFERNO」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_clsika",
+ "japaneseText":"「レクイエム 怒りの日より」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Requiem - Day of Wrath」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「安魂曲 憤怒之日節選」",
+ "chineseTFontType":1,
+ "koreanText":"「레퀴엠 중 \"진노의 날\"」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_armage",
+ "japaneseText":"「ARMAGEΔDON」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「ARMAGEΔDON」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「ARMAGEΔDON」",
+ "chineseTFontType":1,
+ "koreanText":"「ARMAGEΔDON」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_nmsurv",
+ "japaneseText":"「ナイトメア・サバイバー」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Nightmare Survivor」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Nightmare Survivor」",
+ "chineseTFontType":1,
+ "koreanText":"「Nightmare Survivor」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_3d3b2x",
+ "japaneseText":"「龍脈の王」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「RYUMYAKU NO OU」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「龍脈之王」",
+ "chineseTFontType":1,
+ "koreanText":"「류우먀쿠노 오우」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_mega10",
+ "japaneseText":"ドドンガド~ン",
+ "japaneseFontType":0,
+ "englishUsText":"ドドンガド~ン",
+ "englishUsFontType":0,
+ "chineseTText":"ドドンガド~ン",
+ "chineseTFontType":0,
+ "koreanText":"ドドンガド~ン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_dumbop",
+ "japaneseText":"お願いマッスル",
+ "japaneseFontType":0,
+ "englishUsText":"お願いマッスル",
+ "englishUsFontType":0,
+ "chineseTText":"お願いマッスル",
+ "chineseTFontType":0,
+ "koreanText":"お願いマッスル",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_pixelg",
+ "japaneseText":"Pixel Galaxy",
+ "japaneseFontType":0,
+ "englishUsText":"Pixel Galaxy",
+ "englishUsFontType":0,
+ "chineseTText":"Pixel Galaxy",
+ "chineseTFontType":0,
+ "koreanText":"Pixel Galaxy",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mscl5",
+ "japaneseText":"筋肉のような僕ら ~マッスル愛のテーマ~",
+ "japaneseFontType":0,
+ "englishUsText":"筋肉のような僕ら ~マッスル愛のテーマ~",
+ "englishUsFontType":0,
+ "chineseTText":"筋肉のような僕ら ~マッスル愛のテーマ~",
+ "chineseTFontType":0,
+ "koreanText":"筋肉のような僕ら ~マッスル愛のテーマ~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sei10r",
+ "japaneseText":"青天の黎明",
+ "japaneseFontType":0,
+ "englishUsText":"青天の黎明",
+ "englishUsFontType":0,
+ "chineseTText":"青天の黎明",
+ "chineseTFontType":0,
+ "koreanText":"青天の黎明",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_senval",
+ "japaneseText":"閃光ヴァルキュリア",
+ "japaneseFontType":0,
+ "englishUsText":"閃光ヴァルキュリア",
+ "englishUsFontType":0,
+ "chineseTText":"閃光ヴァルキュリア",
+ "chineseTFontType":0,
+ "koreanText":"閃光ヴァルキュリア",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_mega10",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_dumbop",
+ "japaneseText":"「ダンベル何キロ持てる?」より",
+ "japaneseFontType":0,
+ "englishUsText":"「ダンベル何キロ持てる?」より",
+ "englishUsFontType":0,
+ "chineseTText":"「ダンベル何キロ持てる?」より",
+ "chineseTFontType":0,
+ "koreanText":"「ダンベル何キロ持てる?」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_pixelg",
+ "japaneseText":"Snail’s House",
+ "japaneseFontType":0,
+ "englishUsText":"Snail’s House",
+ "englishUsFontType":0,
+ "chineseTText":"Snail’s House",
+ "chineseTFontType":0,
+ "koreanText":"Snail’s House",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_mscl5",
+ "japaneseText":"「マッスル行進曲」より",
+ "japaneseFontType":0,
+ "englishUsText":"「マッスル行進曲」より",
+ "englishUsFontType":0,
+ "chineseTText":"「マッスル行進曲」より",
+ "chineseTFontType":0,
+ "koreanText":"「マッスル行進曲」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_sei10r",
+ "japaneseText":"steμ feat.siroa",
+ "japaneseFontType":0,
+ "englishUsText":"steμ feat.siroa",
+ "englishUsFontType":0,
+ "chineseTText":"steμ feat.siroa",
+ "chineseTFontType":0,
+ "koreanText":"steμ feat.siroa",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_senval",
+ "japaneseText":"清風明月(Drop×葉月ゆら)",
+ "japaneseFontType":0,
+ "englishUsText":"清風明月(Drop×葉月ゆら)",
+ "englishUsFontType":0,
+ "chineseTText":"清風明月(Drop×葉月ゆら)",
+ "chineseTFontType":0,
+ "koreanText":"清風明月(Drop×葉月ゆら)",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_mega10",
+ "japaneseText":"ドドンガド~ン",
+ "japaneseFontType":0,
+ "englishUsText":"ドドンガド~ン",
+ "englishUsFontType":0,
+ "chineseTText":"ドドンガド~ン",
+ "chineseTFontType":0,
+ "koreanText":"ドドンガド~ン",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_dumbop",
+ "japaneseText":"お願いマッスル",
+ "japaneseFontType":0,
+ "englishUsText":"お願いマッスル",
+ "englishUsFontType":0,
+ "chineseTText":"お願いマッスル",
+ "chineseTFontType":0,
+ "koreanText":"お願いマッスル",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_pixelg",
+ "japaneseText":"Pixel Galaxy",
+ "japaneseFontType":0,
+ "englishUsText":"Pixel Galaxy",
+ "englishUsFontType":0,
+ "chineseTText":"Pixel Galaxy",
+ "chineseTFontType":0,
+ "koreanText":"Pixel Galaxy",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_mscl5",
+ "japaneseText":"筋肉のような僕ら\n~マッスル愛のテーマ~",
+ "japaneseFontType":0,
+ "englishUsText":"筋肉のような僕ら\n~マッスル愛のテーマ~",
+ "englishUsFontType":0,
+ "chineseTText":"筋肉のような僕ら\n~マッスル愛のテーマ~",
+ "chineseTFontType":0,
+ "koreanText":"筋肉のような僕ら\n~マッスル愛のテーマ~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_sei10r",
+ "japaneseText":"青天の黎明",
+ "japaneseFontType":0,
+ "englishUsText":"青天の黎明",
+ "englishUsFontType":0,
+ "chineseTText":"青天の黎明",
+ "chineseTFontType":0,
+ "koreanText":"青天の黎明",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_senval",
+ "japaneseText":"閃光ヴァルキュリア",
+ "japaneseFontType":0,
+ "englishUsText":"閃光ヴァルキュリア",
+ "englishUsFontType":0,
+ "chineseTText":"閃光ヴァルキュリア",
+ "chineseTFontType":0,
+ "koreanText":"閃光ヴァルキュリア",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_mega10",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"DODONGADO-N",
+ "englishUsFontType":0,
+ "chineseTText":"咚咚咔咚~",
+ "chineseTFontType":1,
+ "koreanText":"도돈가돈~",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_dumbop",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"ONEGAI MUSCLE",
+ "englishUsFontType":0,
+ "chineseTText":"ONEGAI MUSCLE",
+ "chineseTFontType":1,
+ "koreanText":"ONEGAI MUSCLE",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_pixelg",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mscl5",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~",
+ "englishUsFontType":0,
+ "chineseTText":"KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~",
+ "chineseTFontType":1,
+ "koreanText":"킨니쿠노 요우나 보쿠라 ~맛스루 아이노 테마~",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_sei10r",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"SEITEN NO REIMEI",
+ "englishUsFontType":0,
+ "chineseTText":"青天之黎明",
+ "chineseTFontType":1,
+ "koreanText":"세이텐노 레이메이",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_senval",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"SENKO VALKYRJA",
+ "englishUsFontType":0,
+ "chineseTText":"閃光VALKYRJA",
+ "chineseTFontType":1,
+ "koreanText":"SENKO VALKYRJA",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_mega10",
+ "japaneseText":"「ドドンガド~ン」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「DODONGADO-N」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「咚咚咔咚~」",
+ "chineseTFontType":1,
+ "koreanText":"「도돈가돈~」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_dumbop",
+ "japaneseText":"「お願いマッスル」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「ONEGAI MUSCLE」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「ONEGAI MUSCLE」",
+ "chineseTFontType":1,
+ "koreanText":"「ONEGAI MUSCLE」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_pixelg",
+ "japaneseText":"「Pixel Galaxy」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Pixel Galaxy」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Pixel Galaxy」",
+ "chineseTFontType":1,
+ "koreanText":"「Pixel Galaxy」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_mscl5",
+ "japaneseText":"「筋肉のような僕ら ~マッスル愛のテーマ~」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~」",
+ "chineseTFontType":1,
+ "koreanText":"「킨니쿠노 요우나 보쿠라 ~맛스루 아이노 테마~」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_sei10r",
+ "japaneseText":"「青天の黎明」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SEITEN NO REIMEI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「青天之黎明」",
+ "chineseTFontType":1,
+ "koreanText":"「세이텐노 레이메이」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_senval",
+ "japaneseText":"「閃光ヴァルキュリア」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SENKO VALKYRJA」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「閃光VALKYRJA」",
+ "chineseTFontType":1,
+ "koreanText":"「SENKO VALKYRJA」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_mega10",
+ "japaneseText":"「ドドンガド~ン」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「DODONGADO-N」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「咚咚咔咚~」",
+ "chineseTFontType":1,
+ "koreanText":"「도돈가돈~」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_dumbop",
+ "japaneseText":"「お願いマッスル」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「ONEGAI MUSCLE」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「ONEGAI MUSCLE」",
+ "chineseTFontType":1,
+ "koreanText":"「ONEGAI MUSCLE」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_pixelg",
+ "japaneseText":"「Pixel Galaxy」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Pixel Galaxy」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Pixel Galaxy」",
+ "chineseTFontType":1,
+ "koreanText":"「Pixel Galaxy」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_mscl5",
+ "japaneseText":"「筋肉のような僕ら ~マッスル愛のテーマ~」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「KINNIKU NO YOUNA BOKURA ~MUSCLE AI NO Theme~」",
+ "chineseTFontType":1,
+ "koreanText":"「킨니쿠노 요우나 보쿠라 ~맛스루 아이노 테마~」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_sei10r",
+ "japaneseText":"「青天の黎明」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SEITEN NO REIMEI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「青天之黎明」",
+ "chineseTFontType":1,
+ "koreanText":"「세이텐노 레이메이」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_senval",
+ "japaneseText":"「閃光ヴァルキュリア」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「SENKO VALKYRJA」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「閃光VALKYRJA」",
+ "chineseTFontType":1,
+ "koreanText":"「SENKO VALKYRJA」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_dodon01",
+ "japaneseText":"みんなでドドンがドン!",
+ "japaneseFontType":0,
+ "englishUsText":"I want to drum with everyone!",
+ "englishUsFontType":0,
+ "chineseTText":"大家一起咚咚咚!",
+ "chineseTFontType":1,
+ "koreanText":"다 함께 쿵딱쿵!",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_dodon02",
+ "japaneseText":"僕が一番上手くたたけるのに",
+ "japaneseFontType":0,
+ "englishUsText":"I'm gonna be the number one at drums!",
+ "englishUsFontType":0,
+ "chineseTText":"虧我打最好的說",
+ "chineseTFontType":1,
+ "koreanText":"내가 제일 잘 칠 수 있는데",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_dodon03",
+ "japaneseText":"もう一回、遊べるドン",
+ "japaneseFontType":0,
+ "englishUsText":"Let's go one more round!",
+ "englishUsFontType":0,
+ "chineseTText":"再遊玩一次咚",
+ "chineseTFontType":1,
+ "koreanText":"한 번 더, 놀 수 있다쿵",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_dodon04",
+ "japaneseText":"俺たちの戦いはこれからだ",
+ "japaneseFontType":0,
+ "englishUsText":"Our battle begins now!",
+ "englishUsFontType":0,
+ "chineseTText":"我們的戰鬥現在才要開始",
+ "chineseTFontType":1,
+ "koreanText":"우리의 싸움은 이제부터다",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_dodon01",
+ "japaneseText":"自称 太鼓の達人",
+ "japaneseFontType":0,
+ "englishUsText":"Self-Proclaimed Taiko Master",
+ "englishUsFontType":0,
+ "chineseTText":"自稱 太鼓之達人",
+ "chineseTFontType":1,
+ "koreanText":"자칭 태고의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_dodon02",
+ "japaneseText":"俺が太鼓だ!",
+ "japaneseFontType":0,
+ "englishUsText":"I AM Taiko!",
+ "englishUsFontType":0,
+ "chineseTText":"我是太鼓!",
+ "chineseTFontType":1,
+ "koreanText":"내가 태고다!",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_dodon03",
+ "japaneseText":"太鼓に愛されし者",
+ "japaneseFontType":0,
+ "englishUsText":"I Love Taiko, Taiko Loves Me",
+ "englishUsFontType":0,
+ "chineseTText":"受太鼓寵愛之人",
+ "chineseTFontType":1,
+ "koreanText":"태고에게 사랑받는 자",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_dodon04",
+ "japaneseText":"セッションでドドンがドンの達人",
+ "japaneseFontType":0,
+ "englishUsText":"Session Play Master",
+ "englishUsFontType":0,
+ "chineseTText":"合奏咚咚咚達人",
+ "chineseTFontType":1,
+ "koreanText":"모두 함께 쿵딱쿵의 달인",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_oshiro",
+ "japaneseText":"おしろ",
+ "japaneseFontType":0,
+ "englishUsText":"Castle",
+ "englishUsFontType":0,
+ "chineseTText":"城堡",
+ "chineseTFontType":1,
+ "koreanText":"성",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_katsudon",
+ "japaneseText":"カツ丼",
+ "japaneseFontType":0,
+ "englishUsText":"KATSU-don",
+ "englishUsFontType":0,
+ "chineseTText":"豬排丼",
+ "chineseTFontType":1,
+ "koreanText":"카츠동",
+ "koreanFontType":2
+ },
+ {
+ "key":"costume_fujisan",
+ "japaneseText":"富士山",
+ "japaneseFontType":0,
+ "englishUsText":"Mt. Fuji",
+ "englishUsFontType":0,
+ "chineseTText":"富士山",
+ "chineseTFontType":1,
+ "koreanText":"후지산",
+ "koreanFontType":2
+ },
+ {
+ "key":"maturi_dodon",
+ "japaneseText":"セッションでドドンがドン祭り",
+ "japaneseFontType":0,
+ "englishUsText":"Session Play Festival",
+ "englishUsFontType":0,
+ "chineseTText":"合奏咚咚咚祭典",
+ "chineseTFontType":1,
+ "koreanText":"모두 함께 쿵딱쿵 축제",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_thclmt",
+ "japaneseText":"Calamity Fortune",
+ "japaneseFontType":0,
+ "englishUsText":"Calamity Fortune",
+ "englishUsFontType":0,
+ "chineseTText":"Calamity Fortune",
+ "chineseTFontType":0,
+ "koreanText":"Calamity Fortune",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_aino",
+ "japaneseText":"太鼓の達人・愛のテーマ",
+ "japaneseFontType":0,
+ "englishUsText":"太鼓の達人・愛のテーマ",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓の達人・愛のテーマ",
+ "chineseTFontType":0,
+ "koreanText":"太鼓の達人・愛のテーマ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_jazz2",
+ "japaneseText":"Taiko Session",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Session",
+ "englishUsFontType":0,
+ "chineseTText":"Taiko Session",
+ "chineseTFontType":0,
+ "koreanText":"Taiko Session",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_nao",
+ "japaneseText":"風雲!バチお先生",
+ "japaneseFontType":0,
+ "englishUsText":"風雲!バチお先生",
+ "englishUsFontType":0,
+ "chineseTText":"風雲!バチお先生",
+ "chineseTFontType":0,
+ "koreanText":"風雲!バチお先生",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_exnao",
+ "japaneseText":"風雲!バチお先生 -Long Ver.-",
+ "japaneseFontType":0,
+ "englishUsText":"風雲!バチお先生 -Long Ver.-",
+ "englishUsFontType":0,
+ "chineseTText":"風雲!バチお先生 -Long Ver.-",
+ "chineseTFontType":0,
+ "koreanText":"風雲!バチお先生 -Long Ver.-",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_medl22",
+ "japaneseText":"続・〆ドレー2000",
+ "japaneseFontType":0,
+ "englishUsText":"続・〆ドレー2000",
+ "englishUsFontType":0,
+ "chineseTText":"続・〆ドレー2000",
+ "chineseTFontType":0,
+ "koreanText":"続・〆ドレー2000",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_kykamb",
+ "japaneseText":"アンビバレント",
+ "japaneseFontType":0,
+ "englishUsText":"アンビバレント",
+ "englishUsFontType":0,
+ "chineseTText":"アンビバレント",
+ "chineseTFontType":0,
+ "koreanText":"アンビバレント",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_mnkesk",
+ "japaneseText":"見たこともない景色",
+ "japaneseFontType":0,
+ "englishUsText":"見たこともない景色",
+ "englishUsFontType":0,
+ "chineseTText":"見たこともない景色",
+ "chineseTFontType":0,
+ "koreanText":"見たこともない景色",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_tnkgrd",
+ "japaneseText":"グランドエスケープ",
+ "japaneseFontType":0,
+ "englishUsText":"グランドエスケープ",
+ "englishUsFontType":0,
+ "chineseTText":"グランドエスケープ",
+ "chineseTFontType":0,
+ "koreanText":"グランドエスケープ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_thclmt",
+ "japaneseText":"東方Projectアレンジ LeaF",
+ "japaneseFontType":0,
+ "englishUsText":"東方Projectアレンジ LeaF",
+ "englishUsFontType":0,
+ "chineseTText":"東方Projectアレンジ LeaF",
+ "chineseTFontType":0,
+ "koreanText":"東方Projectアレンジ LeaF",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_aino",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_jazz2",
+ "japaneseText":"~Live Version~",
+ "japaneseFontType":0,
+ "englishUsText":"~Live Version~",
+ "englishUsFontType":0,
+ "chineseTText":"~Live Version~",
+ "chineseTFontType":0,
+ "koreanText":"~Live Version~",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_nao",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_exnao",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_medl22",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_kykamb",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":" ",
+ "englishUsFontType":0,
+ "chineseTText":" ",
+ "chineseTFontType":0,
+ "koreanText":" ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_mnkesk",
+ "japaneseText":"au 三太郎サッカー応援 CMソング",
+ "japaneseFontType":0,
+ "englishUsText":"au 三太郎サッカー応援 CMソング",
+ "englishUsFontType":0,
+ "chineseTText":"au 三太郎サッカー応援 CMソング",
+ "chineseTFontType":0,
+ "koreanText":"au 三太郎サッカー応援 CMソング",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_sub_tnkgrd",
+ "japaneseText":"「天気の子」より",
+ "japaneseFontType":0,
+ "englishUsText":"「天気の子」より",
+ "englishUsFontType":0,
+ "chineseTText":"「天気の子」より",
+ "chineseTFontType":0,
+ "koreanText":"「天気の子」より",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_thclmt",
+ "japaneseText":"Calamity Fortune",
+ "japaneseFontType":0,
+ "englishUsText":"Calamity Fortune",
+ "englishUsFontType":0,
+ "chineseTText":"Calamity Fortune",
+ "chineseTFontType":0,
+ "koreanText":"Calamity Fortune",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_aino",
+ "japaneseText":"太鼓の達人・愛のテーマ",
+ "japaneseFontType":0,
+ "englishUsText":"太鼓の達人・愛のテーマ",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓の達人・愛のテーマ",
+ "chineseTFontType":0,
+ "koreanText":"太鼓の達人・愛のテーマ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_jazz2",
+ "japaneseText":"Taiko Session",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko Session",
+ "englishUsFontType":0,
+ "chineseTText":"Taiko Session",
+ "chineseTFontType":0,
+ "koreanText":"Taiko Session",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_nao",
+ "japaneseText":"風雲!バチお先生",
+ "japaneseFontType":0,
+ "englishUsText":"風雲!バチお先生",
+ "englishUsFontType":0,
+ "chineseTText":"風雲!バチお先生",
+ "chineseTFontType":0,
+ "koreanText":"風雲!バチお先生",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_exnao",
+ "japaneseText":"風雲!バチお先生\n-Long Ver.-",
+ "japaneseFontType":0,
+ "englishUsText":"風雲!バチお先生\n-Long Ver.-",
+ "englishUsFontType":0,
+ "chineseTText":"風雲!バチお先生\n-Long Ver.-",
+ "chineseTFontType":0,
+ "koreanText":"風雲!バチお先生\n-Long Ver.-",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_medl22",
+ "japaneseText":"続・〆ドレー2000",
+ "japaneseFontType":0,
+ "englishUsText":"続・〆ドレー2000",
+ "englishUsFontType":0,
+ "chineseTText":"続・〆ドレー2000",
+ "chineseTFontType":0,
+ "koreanText":"続・〆ドレー2000",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_kykamb",
+ "japaneseText":"アンビバレント",
+ "japaneseFontType":0,
+ "englishUsText":"アンビバレント",
+ "englishUsFontType":0,
+ "chineseTText":"アンビバレント",
+ "chineseTFontType":0,
+ "koreanText":"アンビバレント",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_mnkesk",
+ "japaneseText":"見たこともない景色",
+ "japaneseFontType":0,
+ "englishUsText":"見たこともない景色",
+ "englishUsFontType":0,
+ "chineseTText":"見たこともない景色",
+ "chineseTFontType":0,
+ "koreanText":"見たこともない景色",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_small_tnkgrd",
+ "japaneseText":"グランドエスケープ",
+ "japaneseFontType":0,
+ "englishUsText":"グランドエスケープ",
+ "englishUsFontType":0,
+ "chineseTText":"グランドエスケープ",
+ "chineseTFontType":0,
+ "koreanText":"グランドエスケープ",
+ "koreanFontType":0
+ },
+ {
+ "key":"song_detail_thclmt",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_aino",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Taiko no Tatsujin Love Theme",
+ "englishUsFontType":0,
+ "chineseTText":"太鼓之達人・愛的主題曲",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인・사랑의 테마",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_jazz2",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_nao",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"HU-UN! BACHIO SENSEI",
+ "englishUsFontType":0,
+ "chineseTText":"風雲!鼓棒老師",
+ "chineseTFontType":1,
+ "koreanText":"후우운! 바치오 센세",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_exnao",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"HU-UN! BACHIO SENSEI -Long Ver.-",
+ "englishUsFontType":0,
+ "chineseTText":"風雲!鼓棒老師 -Long Ver.-",
+ "chineseTFontType":1,
+ "koreanText":"후우운! 바치오 센세 -Long Ver.-",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_medl22",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"ZOKU SHIMEdley 2000",
+ "englishUsFontType":0,
+ "chineseTText":"後續・〆dley2000",
+ "chineseTFontType":1,
+ "koreanText":"조쿠・시메도레2000",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_kykamb",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"AMBIVALENT",
+ "englishUsFontType":0,
+ "chineseTText":"AMBIVALENT",
+ "chineseTFontType":1,
+ "koreanText":"AMBIVALENT",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_mnkesk",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Mita Koto mo Nai Keshiki",
+ "englishUsFontType":0,
+ "chineseTText":"從未見過的景色",
+ "chineseTFontType":1,
+ "koreanText":"한 번도 본 적 없는 풍경",
+ "koreanFontType":2
+ },
+ {
+ "key":"song_detail_tnkgrd",
+ "japaneseText":" ",
+ "japaneseFontType":0,
+ "englishUsText":"Grand Escape",
+ "englishUsFontType":0,
+ "chineseTText":"Grand Escape",
+ "chineseTFontType":1,
+ "koreanText":"Grand Escape",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_thclmt",
+ "japaneseText":"「Calamity Fortune」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Calamity Fortune」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Calamity Fortune」",
+ "chineseTFontType":1,
+ "koreanText":"「Calamity Fortune」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_aino",
+ "japaneseText":"「太鼓の達人・愛のテーマ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Taiko no Tatsujin Love Theme」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「太鼓之達人・愛的主題曲」",
+ "chineseTFontType":1,
+ "koreanText":"「태고의 달인・사랑의 테마」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_jazz2",
+ "japaneseText":"「Taiko Session」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Taiko Session」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Taiko Session」",
+ "chineseTFontType":1,
+ "koreanText":"「Taiko Session」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_nao",
+ "japaneseText":"「風雲!バチお先生」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HU-UN! BACHIO SENSEI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「風雲!鼓棒老師」",
+ "chineseTFontType":1,
+ "koreanText":"「후우운! 바치오 센세」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_exnao",
+ "japaneseText":"「風雲!バチお先生 -Long Ver.-」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HU-UN! BACHIO SENSEI -Long Ver.-」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「風雲!鼓棒老師 -Long Ver.-」",
+ "chineseTFontType":1,
+ "koreanText":"「후우운! 바치오 센세 -Long Ver.-」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_medl22",
+ "japaneseText":"「続・〆ドレー2000」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「ZOKU SHIMEdley 2000」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「後續・〆dley2000」",
+ "chineseTFontType":1,
+ "koreanText":"「조쿠・시메도레2000」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_kykamb",
+ "japaneseText":"「アンビバレント」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「AMBIVALENT」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「AMBIVALENT」",
+ "chineseTFontType":1,
+ "koreanText":"「AMBIVALENT」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_mnkesk",
+ "japaneseText":"「見たこともない景色」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Mita Koto mo Nai Keshiki」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「從未見過的景色」",
+ "chineseTFontType":1,
+ "koreanText":"「한 번도 본 적 없는 풍경」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"greeting_tnkgrd",
+ "japaneseText":"「グランドエスケープ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Grand Escape」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Grand Escape」",
+ "chineseTFontType":1,
+ "koreanText":"「Grand Escape」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_thclmt",
+ "japaneseText":"「Calamity Fortune」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Calamity Fortune」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Calamity Fortune」",
+ "chineseTFontType":1,
+ "koreanText":"「Calamity Fortune」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_aino",
+ "japaneseText":"「太鼓の達人・愛のテーマ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Taiko no Tatsujin Love Theme」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「太鼓之達人・愛的主題曲」",
+ "chineseTFontType":1,
+ "koreanText":"「태고의 달인・사랑의 테마」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_jazz2",
+ "japaneseText":"「Taiko Session」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Taiko Session」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Taiko Session」",
+ "chineseTFontType":1,
+ "koreanText":"「Taiko Session」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_nao",
+ "japaneseText":"「風雲!バチお先生」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HU-UN! BACHIO SENSEI」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「風雲!鼓棒老師」",
+ "chineseTFontType":1,
+ "koreanText":"「후우운! 바치오 센세」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_exnao",
+ "japaneseText":"「風雲!バチお先生 -Long Ver.-」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「HU-UN! BACHIO SENSEI -Long Ver.-」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「風雲!鼓棒老師 -Long Ver.-」",
+ "chineseTFontType":1,
+ "koreanText":"「후우운! 바치오 센세 -Long Ver.-」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_medl22",
+ "japaneseText":"「続・〆ドレー2000」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「ZOKU SHIMEdley 2000」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「後續・〆dley2000」",
+ "chineseTFontType":1,
+ "koreanText":"「조쿠・시메도레2000」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_kykamb",
+ "japaneseText":"「アンビバレント」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「AMBIVALENT」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「AMBIVALENT」",
+ "chineseTFontType":1,
+ "koreanText":"「AMBIVALENT」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_mnkesk",
+ "japaneseText":"「見たこともない景色」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Mita Koto mo Nai Keshiki」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「從未見過的景色」",
+ "chineseTFontType":1,
+ "koreanText":"「한 번도 본 적 없는 풍경」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"syougou_tnkgrd",
+ "japaneseText":"「グランドエスケープ」大好き",
+ "japaneseFontType":0,
+ "englishUsText":"I ♥ 「Grand Escape」",
+ "englishUsFontType":0,
+ "chineseTText":"最喜歡「Grand Escape」",
+ "chineseTFontType":1,
+ "koreanText":"「Grand Escape」최고",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4200",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4201",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4202",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4203",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4204",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4205",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4206",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4207",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4208",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4209",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4210",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4211",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4212",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4213",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4214",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4215",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4216",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4217",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4218",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4219",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4220",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4221",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4222",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4223",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4224",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4225",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4226",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4227",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4228",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4229",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4230",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4231",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4232",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4233",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4234",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4235",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4236",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4237",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4238",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4239",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4240",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4241",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4242",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4243",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4244",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4245",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4246",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4247",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4248",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4249",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4250",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4251",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4252",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4253",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4254",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4255",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4256",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4257",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4258",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4259",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4260",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4261",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4262",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4263",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4264",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4265",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4266",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4267",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4268",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4269",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4270",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4271",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4272",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4273",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4274",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4275",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4276",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4277",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4278",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4279",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4280",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4281",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4282",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4283",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4284",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4285",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4286",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4287",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4288",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4289",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4290",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4291",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4292",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4293",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4294",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4295",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4296",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4297",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4298",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4299",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4300",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4301",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4302",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4303",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4304",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4305",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4306",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4307",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4308",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4309",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4310",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4311",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4312",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4313",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4314",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4315",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4316",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4317",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4318",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4319",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4320",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4321",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4322",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4323",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4324",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4325",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4326",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4327",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4328",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4329",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4330",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4331",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4332",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4333",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4334",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4335",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4336",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4337",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4338",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4339",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4340",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4341",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4342",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4343",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4344",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4345",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4346",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4347",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4348",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4349",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4350",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4351",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4352",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4353",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4354",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4355",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4356",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4357",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4358",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4359",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4360",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4361",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4362",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4363",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4364",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4365",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4366",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4367",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4368",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4369",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4370",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4371",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4372",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4373",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4374",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4375",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4376",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4377",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4378",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4379",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4380",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4381",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4382",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4383",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4384",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4385",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4386",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4387",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4388",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4389",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4390",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4391",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4392",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4393",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4394",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4395",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4396",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4397",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4398",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4399",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4400",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4401",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4402",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4403",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4404",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4405",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4406",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4407",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4408",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4409",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4410",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4411",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4412",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4413",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4414",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4415",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4416",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4417",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4418",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4419",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4420",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4421",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4422",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4423",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4424",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4425",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4426",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4427",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4428",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4429",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4430",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4431",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4432",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4433",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4434",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4435",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4436",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4437",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4438",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4439",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4440",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4441",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4442",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4443",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4444",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4445",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4446",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4447",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4448",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4449",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4450",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4451",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4452",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4453",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4454",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4455",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4456",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4457",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4458",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4459",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4460",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4461",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4462",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4463",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4464",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4465",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4466",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4467",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4468",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4469",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4470",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4471",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4472",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4473",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4474",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4475",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4476",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4477",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4478",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4479",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4480",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4481",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4482",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4483",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4484",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4485",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4486",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4487",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4488",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4489",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4490",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4491",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4492",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4493",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4494",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4495",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4496",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4497",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4498",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4499",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4500",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4501",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4502",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4503",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4504",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4505",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4506",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4507",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4508",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4509",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4510",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4511",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4512",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4513",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4514",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4515",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4516",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4517",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4518",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4519",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4520",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4521",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4522",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4523",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4524",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4525",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4526",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4527",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4528",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4529",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4530",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4531",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4532",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4533",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4534",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4535",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4536",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4537",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4538",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4539",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4540",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4541",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4542",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4543",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4544",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4545",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4546",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4547",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4548",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4549",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4550",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4551",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4552",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4553",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4554",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4555",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4556",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4557",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4558",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4559",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4560",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4561",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4562",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4563",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4564",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4565",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4566",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4567",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4568",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4569",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4570",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4571",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ },
+ {
+ "key":"__test4572",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "japaneseFontType":0,
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2
+ }
+]}
diff --git a/TaikoSongConversionTool/data/_console/Raw/ReadAssets/wordlist.json b/TaikoSongConversionTool/data/_console/Raw/ReadAssets/wordlist.json
new file mode 100644
index 0000000..9f55dff
--- /dev/null
+++ b/TaikoSongConversionTool/data/_console/Raw/ReadAssets/wordlist.json
@@ -0,0 +1,52082 @@
+{"items":[
+ {
+ "key":"appleid_changed_dialog",
+ "japaneseText":"別のAppleIDでサインインされましたので、\nタイトル画面に戻ります。",
+ "englishUsText":"There's been a sign in with a different Apple ID.\nReturning to title screen.",
+ "englishUsFontType":3,
+ "frenchText":"Vous vous êtes connecté avec un autre identifiant Apple.\nRetour à l'écran-titre.",
+ "frenchFontType":3,
+ "italianText":"Hai effettuato l'accesso con un altro ID Apple.\nTornerai alla schermata del titolo.",
+ "italianFontType":3,
+ "germanText":"Da eine Anmeldung mit einer anderen Apple ID durchgeführt wurde,\nkehren Sie zum Titelbildschirm zurück.",
+ "germanFontType":3,
+ "spanishText":"Has iniciado sesión con una cuenta de AppleID distinta.\nVas a volver a la pantalla de inicio.",
+ "spanishFontType":3,
+ "chineseTText":"已使用其他AppleID登入,\n將返回標題畫面。",
+ "chineseTFontType":1,
+ "koreanText":"다른 Apple ID로 Sign In하여\n타이틀 화면으로 돌아갑니다.",
+ "koreanFontType":2,
+ "portugueseText":"Houve um acesso com uma Apple ID diferente.\nVoltando à tela inicial.",
+ "portugueseFontType":2,
+ "russianText":"Вход в систему осуществлен под другим Apple ID.\nВозврат на главный экран.",
+ "russianFontType":2,
+ "turkishText":"Farklı bir Apple ID ile giriş yapıldı.\nBaşlangıç ekranına geri dönülüyor.",
+ "turkishFontType":2,
+ "arabicText":"كان هناك تسجيل دخول باستخدام AppleID مختلف.\nجاري الرجوع إلى شاشة العنوان.",
+ "arabicFontType":2,
+ "dutchText":"Er is ingelogd met een andere Apple ID.\nTerug naar het beginscherm.",
+ "dutchFontType":2,
+ "chineseSText":"已使用其他AppleID登入,\n将返回标题画面。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"com_name_p1",
+ "japaneseText":"COM 1",
+ "englishUsText":"COM1",
+ "englishUsFontType":3,
+ "frenchText":"ORDI 1",
+ "frenchFontType":3,
+ "italianText":"COM1",
+ "italianFontType":3,
+ "germanText":"COM1",
+ "germanFontType":3,
+ "spanishText":"ORD1",
+ "spanishFontType":3,
+ "chineseTText":"COM 1",
+ "chineseTFontType":1,
+ "koreanText":"COM1",
+ "koreanFontType":2,
+ "portugueseText":"COM1",
+ "portugueseFontType":2,
+ "russianText":"COM1",
+ "russianFontType":2,
+ "turkishText":"COM1",
+ "turkishFontType":2,
+ "arabicText":"COM1",
+ "arabicFontType":2,
+ "dutchText":"COM1",
+ "dutchFontType":2,
+ "chineseSText":"COM1",
+ "chineseSFontType":4
+ },
+ {
+ "key":"com_name_p2",
+ "japaneseText":"COM 2",
+ "englishUsText":"COM2",
+ "englishUsFontType":3,
+ "frenchText":"ORDI 2",
+ "frenchFontType":3,
+ "italianText":"COM2",
+ "italianFontType":3,
+ "germanText":"COM2",
+ "germanFontType":3,
+ "spanishText":"ORD2",
+ "spanishFontType":3,
+ "chineseTText":"COM 2",
+ "chineseTFontType":1,
+ "koreanText":"COM2",
+ "koreanFontType":2,
+ "portugueseText":"COM2",
+ "portugueseFontType":2,
+ "russianText":"COM2",
+ "russianFontType":2,
+ "turkishText":"COM2",
+ "turkishFontType":2,
+ "arabicText":"COM2",
+ "arabicFontType":2,
+ "dutchText":"COM2",
+ "dutchFontType":2,
+ "chineseSText":"COM2",
+ "chineseSFontType":4
+ },
+ {
+ "key":"com_name_p3",
+ "japaneseText":"COM 3",
+ "englishUsText":"COM3",
+ "englishUsFontType":3,
+ "frenchText":"ORDI 3",
+ "frenchFontType":3,
+ "italianText":"COM3",
+ "italianFontType":3,
+ "germanText":"COM3",
+ "germanFontType":3,
+ "spanishText":"ORD3",
+ "spanishFontType":3,
+ "chineseTText":"COM 3",
+ "chineseTFontType":1,
+ "koreanText":"COM3",
+ "koreanFontType":2,
+ "portugueseText":"COM3",
+ "portugueseFontType":2,
+ "russianText":"COM3",
+ "russianFontType":2,
+ "turkishText":"COM3",
+ "turkishFontType":2,
+ "arabicText":"COM3",
+ "arabicFontType":2,
+ "dutchText":"COM3",
+ "dutchFontType":2,
+ "chineseSText":"COM3",
+ "chineseSFontType":4
+ },
+ {
+ "key":"com_name_p4",
+ "japaneseText":"COM 4",
+ "englishUsText":"COM4",
+ "englishUsFontType":3,
+ "frenchText":"ORDI 4",
+ "frenchFontType":3,
+ "italianText":"COM4",
+ "italianFontType":3,
+ "germanText":"COM4",
+ "germanFontType":3,
+ "spanishText":"ORD4",
+ "spanishFontType":3,
+ "chineseTText":"COM 4",
+ "chineseTFontType":1,
+ "koreanText":"COM4",
+ "koreanFontType":2,
+ "portugueseText":"COM4",
+ "portugueseFontType":2,
+ "russianText":"COM4",
+ "russianFontType":2,
+ "turkishText":"COM4",
+ "turkishFontType":2,
+ "arabicText":"COM4",
+ "arabicFontType":2,
+ "dutchText":"COM4",
+ "dutchFontType":2,
+ "chineseSText":"COM4",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_lang_en_us",
+ "japaneseText":"英語",
+ "englishUsText":"English",
+ "englishUsFontType":3,
+ "frenchText":"English",
+ "frenchFontType":3,
+ "italianText":"English",
+ "italianFontType":3,
+ "germanText":"English",
+ "germanFontType":3,
+ "spanishText":"English",
+ "spanishFontType":3,
+ "chineseTText":"英文",
+ "chineseTFontType":1,
+ "koreanText":"영어",
+ "koreanFontType":2,
+ "portugueseText":"English",
+ "portugueseFontType":2,
+ "russianText":"English",
+ "russianFontType":2,
+ "turkishText":"English",
+ "turkishFontType":2,
+ "arabicText":"English",
+ "arabicFontType":2,
+ "dutchText":"English",
+ "dutchFontType":2,
+ "chineseSText":"英语",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_lang_fra",
+ "japaneseText":"フランス語",
+ "englishUsText":"Français",
+ "englishUsFontType":3,
+ "frenchText":"Français",
+ "frenchFontType":3,
+ "italianText":"Français",
+ "italianFontType":3,
+ "germanText":"Français",
+ "germanFontType":3,
+ "spanishText":"Français",
+ "spanishFontType":3,
+ "chineseTText":"法文",
+ "chineseTFontType":1,
+ "koreanText":"프랑스어",
+ "koreanFontType":2,
+ "portugueseText":"Français",
+ "portugueseFontType":2,
+ "russianText":"Français",
+ "russianFontType":2,
+ "turkishText":"Français",
+ "turkishFontType":2,
+ "arabicText":"Français",
+ "arabicFontType":2,
+ "dutchText":"Français",
+ "dutchFontType":2,
+ "chineseSText":"法语",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_lang_ita",
+ "japaneseText":"イタリア語",
+ "englishUsText":"Italiano",
+ "englishUsFontType":3,
+ "frenchText":"Italiano",
+ "frenchFontType":3,
+ "italianText":"Italiano",
+ "italianFontType":3,
+ "germanText":"Italiano",
+ "germanFontType":3,
+ "spanishText":"Italiano",
+ "spanishFontType":3,
+ "chineseTText":"義大利文",
+ "chineseTFontType":1,
+ "koreanText":"이탈리아어",
+ "koreanFontType":2,
+ "portugueseText":"Italiano",
+ "portugueseFontType":2,
+ "russianText":"Italiano",
+ "russianFontType":2,
+ "turkishText":"Italiano",
+ "turkishFontType":2,
+ "arabicText":"Italiano",
+ "arabicFontType":2,
+ "dutchText":"Italiano",
+ "dutchFontType":2,
+ "chineseSText":"意大利语",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_lang_ger",
+ "japaneseText":"ドイツ語",
+ "englishUsText":"Deutsch",
+ "englishUsFontType":3,
+ "frenchText":"Deutsch",
+ "frenchFontType":3,
+ "italianText":"Deutsch",
+ "italianFontType":3,
+ "germanText":"Deutsch",
+ "germanFontType":3,
+ "spanishText":"Deutsch",
+ "spanishFontType":3,
+ "chineseTText":"德文",
+ "chineseTFontType":1,
+ "koreanText":"독일어",
+ "koreanFontType":2,
+ "portugueseText":"Deutsch",
+ "portugueseFontType":2,
+ "russianText":"Deutsch",
+ "russianFontType":2,
+ "turkishText":"Deutsch",
+ "turkishFontType":2,
+ "arabicText":"Deutsch",
+ "arabicFontType":2,
+ "dutchText":"Deutsch",
+ "dutchFontType":2,
+ "chineseSText":"德语",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_lang_spa",
+ "japaneseText":"スペイン語",
+ "englishUsText":"Español",
+ "englishUsFontType":3,
+ "frenchText":"Español",
+ "frenchFontType":3,
+ "italianText":"Español",
+ "italianFontType":3,
+ "germanText":"Español",
+ "germanFontType":3,
+ "spanishText":"Español",
+ "spanishFontType":3,
+ "chineseTText":"西班牙文",
+ "chineseTFontType":1,
+ "koreanText":"스페인어",
+ "koreanFontType":2,
+ "portugueseText":"Español",
+ "portugueseFontType":2,
+ "russianText":"Español",
+ "russianFontType":2,
+ "turkishText":"Español",
+ "turkishFontType":2,
+ "arabicText":"Español",
+ "arabicFontType":2,
+ "dutchText":"Español",
+ "dutchFontType":2,
+ "chineseSText":"西班牙语",
+ "chineseSFontType":4
+ },
+ {
+ "key":"language",
+ "japaneseText":"Language",
+ "englishUsText":"Language",
+ "englishUsFontType":3,
+ "frenchText":"Langue",
+ "frenchFontType":3,
+ "italianText":"Lingua",
+ "italianFontType":3,
+ "germanText":"Sprache",
+ "germanFontType":3,
+ "spanishText":"Idioma",
+ "spanishFontType":3,
+ "chineseTText":"語言",
+ "chineseTFontType":1,
+ "koreanText":"Language",
+ "koreanFontType":2,
+ "portugueseText":"Idioma",
+ "portugueseFontType":2,
+ "russianText":"Язык",
+ "russianFontType":2,
+ "turkishText":"Dil",
+ "turkishFontType":2,
+ "arabicText":"Language",
+ "arabicFontType":2,
+ "dutchText":"Taal",
+ "dutchFontType":2,
+ "chineseSText":"语言",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_easy_clear_songs",
+ "japaneseText":"かんたんで%1曲クリア",
+ "englishUsText":"Clear %1 song(s) on Easy",
+ "englishUsFontType":3,
+ "frenchText":"Réussir %1 chanson(s) en facile.",
+ "frenchFontType":3,
+ "italianText":"Completa %1 canzone/i a difficoltà Facile",
+ "italianFontType":3,
+ "germanText":"Im leichten Modus %1 Song(s) meistern!",
+ "germanFontType":3,
+ "spanishText":"Supera %1 canción/es (Fácil)",
+ "spanishFontType":3,
+ "chineseTText":"以簡單難度通關%1首樂曲",
+ "chineseTFontType":1,
+ "koreanText":"쉬움으로 %1곡 클리어",
+ "koreanFontType":2,
+ "portugueseText":"%1 música(s) concluída(s) no Fácil",
+ "portugueseFontType":2,
+ "russianText":"Пройти %1 песен на \"Просто\"",
+ "russianFontType":2,
+ "turkishText":"Kolay modda %1 şarkı bitir",
+ "turkishFontType":2,
+ "arabicText":"نجاح في %1 من الأغاني السهلة",
+ "arabicFontType":2,
+ "dutchText":"%1 liedje(s) halen op Makkelijk",
+ "dutchFontType":2,
+ "chineseSText":"以简单难度通关%1首乐曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_normal_clear_songs",
+ "japaneseText":"ふつうで%1曲クリア",
+ "englishUsText":"Clear %1 song(s) on Normal",
+ "englishUsFontType":3,
+ "frenchText":"Réussir %1 chanson(s) en normal.",
+ "frenchFontType":3,
+ "italianText":"Completa %1 canzone/i a difficoltà Normale",
+ "italianFontType":3,
+ "germanText":"Im normalen Modus %1 Song(s) meistern!",
+ "germanFontType":3,
+ "spanishText":"Supera %1 canción/es (Normal)",
+ "spanishFontType":3,
+ "chineseTText":"以普通難度通關%1首樂曲",
+ "chineseTFontType":1,
+ "koreanText":"보통으로 %1곡 클리어",
+ "koreanFontType":2,
+ "portugueseText":"%1 música(s) concluída(s) no Normal",
+ "portugueseFontType":2,
+ "russianText":"Пройти %1 песен на \"Нормально\"",
+ "russianFontType":2,
+ "turkishText":"Normal modda %1 şarkı bitir",
+ "turkishFontType":2,
+ "arabicText":"نجاح في %1 من الأغاني العادية",
+ "arabicFontType":2,
+ "dutchText":"%1 liedje(s) halen op Normaal",
+ "dutchFontType":2,
+ "chineseSText":"以普通难度通关%1首乐曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_hard_clear_songs",
+ "japaneseText":"むずかしいで%1曲クリア",
+ "englishUsText":"Clear %1 song(s) on Hard",
+ "englishUsFontType":3,
+ "frenchText":"Réussir %1 chanson(s) en difficile.",
+ "frenchFontType":3,
+ "italianText":"Completa %1 canzone/i a difficoltà Difficile",
+ "italianFontType":3,
+ "germanText":"Im schweren Modus %1 Song(s) meistern!",
+ "germanFontType":3,
+ "spanishText":"Supera %1 canción/es (Difícil)",
+ "spanishFontType":3,
+ "chineseTText":"以困難難度通關%1首樂曲",
+ "chineseTFontType":1,
+ "koreanText":"어려움으로 %1곡 클리어",
+ "koreanFontType":2,
+ "portugueseText":"%1 música(s) concluída(s) no Difícil",
+ "portugueseFontType":2,
+ "russianText":"Пройти %1 песен на \"Сложно\"",
+ "russianFontType":2,
+ "turkishText":"Zor modda %1 şarkı bitir",
+ "turkishFontType":2,
+ "arabicText":"نجاح في %1 من أغاني المستوى الصعب",
+ "arabicFontType":2,
+ "dutchText":"%1 liedje(s) halen op Moeilijk",
+ "dutchFontType":2,
+ "chineseSText":"以困难难度通关%1首乐曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_oni_clear_songs",
+ "japaneseText":"おにで%1曲クリア",
+ "englishUsText":"Clear %1 song(s) on Extreme",
+ "englishUsFontType":3,
+ "frenchText":"Réussir %1 chanson(s) en extrême.",
+ "frenchFontType":3,
+ "italianText":"Completa %1 canzone/i a difficoltà Estrema",
+ "italianFontType":3,
+ "germanText":"Im extremen Modus %1 Song(s) meistern!",
+ "germanFontType":3,
+ "spanishText":"Supera %1 canción/es (Extremo)",
+ "spanishFontType":3,
+ "chineseTText":"以魔王難度通關%1首樂曲",
+ "chineseTFontType":1,
+ "koreanText":"귀신으로 %1곡 클리어",
+ "koreanFontType":2,
+ "portugueseText":"%1 música(s) concluída(s) no Extremo",
+ "portugueseFontType":2,
+ "russianText":"Пройти %1 песен на \"Предел\"",
+ "russianFontType":2,
+ "turkishText":"Aşırı zor modda %1 şarkı bitir",
+ "turkishFontType":2,
+ "arabicText":"نجاح في %1 من الأغاني القصوى",
+ "arabicFontType":2,
+ "dutchText":"%1 liedje(s) halen op Extreem",
+ "dutchFontType":2,
+ "chineseSText":"以魔王难度通关%1首乐曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_ura_clear_songs",
+ "japaneseText":"おにで%1曲クリア",
+ "englishUsText":"Cleared %1 song(s) on Ultra-Extreme",
+ "englishUsFontType":3,
+ "frenchText":"Réussir %1 chanson(s) en extrême.",
+ "frenchFontType":3,
+ "italianText":"Completa %1 canzone/i a difficoltà Estrema",
+ "italianFontType":3,
+ "germanText":"Im -Extrem-Modus %1 Song(s) meistern!",
+ "germanFontType":3,
+ "spanishText":"Supera %1 canción/es (Ultra Extremo)",
+ "spanishFontType":3,
+ "chineseTText":"以魔王難度通關%1首樂曲",
+ "chineseTFontType":1,
+ "koreanText":"귀신으로 %1곡 클리어",
+ "koreanFontType":2,
+ "portugueseText":"%1 música(s) concluída(s) no modo Super-Extremo",
+ "portugueseFontType":2,
+ "russianText":"Пройдено песен на \"Предел\": %1",
+ "russianFontType":2,
+ "turkishText":"Aşırı Ekstrem %1 şarkıyı bitir",
+ "turkishFontType":2,
+ "arabicText":"نجاح في %1 من الأغاني القصوى الفائقة",
+ "arabicFontType":2,
+ "dutchText":"%1 liedje(s) gehaald op Superextreem",
+ "dutchFontType":2,
+ "chineseSText":"以魔王难度通关%1首乐曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_easy_fullcombo_songs",
+ "japaneseText":"かんたんで%1曲フルコンボ",
+ "englishUsText":"Full Combo on %1 Easy song(s)",
+ "englishUsFontType":3,
+ "frenchText":"Combo MAX sur %1 chanson(s) en facile.",
+ "frenchFontType":3,
+ "italianText":"Completa %1 canzone/i con un Perfetto a difficoltà Facile",
+ "italianFontType":3,
+ "germanText":"Im leichten Modus %1 Song(s) volle Kombo!",
+ "germanFontType":3,
+ "spanishText":"Combo completo en %1 canción/es (Fácil)",
+ "spanishFontType":3,
+ "chineseTText":"以簡單難度達成%1首樂曲全連段",
+ "chineseTFontType":1,
+ "koreanText":"쉬움으로 %1곡 풀 콤보",
+ "koreanFontType":2,
+ "portugueseText":"%1 música(s) com um Combo completo no Fácil",
+ "portugueseFontType":2,
+ "russianText":"Полное комбо %1 песен на \"Просто\"",
+ "russianFontType":2,
+ "turkishText":"Kolay şarkıların %1'inde Tam Kombo",
+ "turkishFontType":2,
+ "arabicText":"كومبو كامل على %1 أغنية (أغاني) م. السهل",
+ "arabicFontType":2,
+ "dutchText":"Full combo voor %1 liedje(s) op Makkelijk",
+ "dutchFontType":2,
+ "chineseSText":"以简单难度达成%1首乐曲全连段",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_normal_fullcombo_songs",
+ "japaneseText":"ふつうで%1曲フルコンボ",
+ "englishUsText":"Full Combo on %1 Normal song(s)",
+ "englishUsFontType":3,
+ "frenchText":"Combo MAX sur %1 chanson(s) en normal.",
+ "frenchFontType":3,
+ "italianText":"Completa %1 canzone/i con un Perfetto a difficoltà Normale",
+ "italianFontType":3,
+ "germanText":"Im normalen Modus %1 Song(s) volle Kombo!",
+ "germanFontType":3,
+ "spanishText":"Combo completo en %1 canción/es (Normal)",
+ "spanishFontType":3,
+ "chineseTText":"以普通難度達成%1首樂曲全連段",
+ "chineseTFontType":1,
+ "koreanText":"보통으로 %1곡 풀 콤보",
+ "koreanFontType":2,
+ "portugueseText":"%1 música(s) com um Combo completo no Normal",
+ "portugueseFontType":2,
+ "russianText":"Полное комбо %1 песен на \"Нормально\"",
+ "russianFontType":2,
+ "turkishText":"Normal şarkıların %1'inde Tam Kombo",
+ "turkishFontType":2,
+ "arabicText":"كومبو كامل على %1 من الأغاني العادية",
+ "arabicFontType":2,
+ "dutchText":"Full combo voor %1 liedje(s) op Normaal",
+ "dutchFontType":2,
+ "chineseSText":"以普通难度达成%1首乐曲全连段",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_hard_fullcombo_songs",
+ "japaneseText":"むずかしいで%1曲フルコンボ",
+ "englishUsText":"Full Combo on %1 Hard song(s)",
+ "englishUsFontType":3,
+ "frenchText":"Combo MAX sur %1 chanson(s) en difficile.",
+ "frenchFontType":3,
+ "italianText":"Completa %1 canzone/i con un Perfetto a difficoltà Difficile",
+ "italianFontType":3,
+ "germanText":"Im schweren Modus %1 Song(s) volle Kombo!",
+ "germanFontType":3,
+ "spanishText":"Combo completo en %1 canción/es (Difícil)",
+ "spanishFontType":3,
+ "chineseTText":"以困難難度達成%1首樂曲全連段",
+ "chineseTFontType":1,
+ "koreanText":"어려움으로 %1곡 풀 콤보",
+ "koreanFontType":2,
+ "portugueseText":"%1 música(s) com um Combo completo no Difícil",
+ "portugueseFontType":2,
+ "russianText":"Полное комбо %1 песен на \"Сложно\"",
+ "russianFontType":2,
+ "turkishText":"Zor şarkıların %1'inde Tam Kombo",
+ "turkishFontType":2,
+ "arabicText":"كومبو كامل على %1 أغنية (أغاني) م. الصعب",
+ "arabicFontType":2,
+ "dutchText":"Full combo voor %1 liedje(s) op Moeilijk",
+ "dutchFontType":2,
+ "chineseSText":"以困难难度达成%1首乐曲全连段",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_oni_fullcombo_songs",
+ "japaneseText":"おにで%1曲フルコンボ",
+ "englishUsText":"Full Combo on %1 Extreme song(s)",
+ "englishUsFontType":3,
+ "frenchText":"Combo MAX sur %1 chanson(s) en extrême.",
+ "frenchFontType":3,
+ "italianText":"Completa %1 canzone/i con un Perfetto a difficoltà Estrema",
+ "italianFontType":3,
+ "germanText":"Im extremen Modus %1 Song(s) volle Kombo!",
+ "germanFontType":3,
+ "spanishText":"Combo completo en %1 canción/es (Extremo)",
+ "spanishFontType":3,
+ "chineseTText":"以魔王難度達成%1首樂曲全連段",
+ "chineseTFontType":1,
+ "koreanText":"귀신으로 %1곡 풀 콤보",
+ "koreanFontType":2,
+ "portugueseText":"%1 música(s) com um Combo completo no Extremo",
+ "portugueseFontType":2,
+ "russianText":"Полное комбо %1 песен на \"Предел\"",
+ "russianFontType":2,
+ "turkishText":"Aşırı zor şarkıların %1'inde Tam Kombo",
+ "turkishFontType":2,
+ "arabicText":"كومبو كامل على %1 من الأغاني القصوى",
+ "arabicFontType":2,
+ "dutchText":"Full combo voor %1 liedje(s) op Extreem",
+ "dutchFontType":2,
+ "chineseSText":"以魔王难度达成%1首乐曲全连段",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_ura_fullcombo_songs",
+ "japaneseText":"おにで%1曲フルコンボ",
+ "englishUsText":"Full Combo on %1 Ultra-Extreme song(s)",
+ "englishUsFontType":3,
+ "frenchText":"Combo MAX sur %1 chanson(s) en extrême.",
+ "frenchFontType":3,
+ "italianText":"Completa %1 canzone/i con un Perfetto a difficoltà Estrema",
+ "italianFontType":3,
+ "germanText":"Im Extrem-Modus %1 Song(s) volle Kombo!",
+ "germanFontType":3,
+ "spanishText":"Combo completo en %1 canción/es (Ultra Extremo)",
+ "spanishFontType":3,
+ "chineseTText":"以魔王難度達成%1首樂曲全連段",
+ "chineseTFontType":1,
+ "koreanText":"귀신으로 %1곡 풀 콤보",
+ "koreanFontType":2,
+ "portugueseText":"%1 música(s) concluída(s) no modo Super-Extremo",
+ "portugueseFontType":2,
+ "russianText":"Полное комбо песен на \"Предел\": %1",
+ "russianFontType":2,
+ "turkishText":"%1 Aşırı Ekstrem şarkıda Tam Kombo",
+ "turkishFontType":2,
+ "arabicText":"كومبو كامل على %1 من الأغاني المستوى القصوى الفائقة",
+ "arabicFontType":2,
+ "dutchText":"Full combo voor %1 liedje(s) op Superextreem",
+ "dutchFontType":2,
+ "chineseSText":"以魔王难度达成%1首乐曲全连段",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_easy_allryo_songs",
+ "japaneseText":"かんたんで%1曲全良",
+ "englishUsText":"Perfect on %1 Easy song(s)",
+ "englishUsFontType":3,
+ "frenchText":"%1 chanson(s) avec que des BONS en facile.",
+ "frenchFontType":3,
+ "italianText":"Completa %1 canzone/i a difficoltà Facile con tutti BENE",
+ "italianFontType":3,
+ "germanText":"Im leichten Modus %1 Song(s) alles GUT!",
+ "germanFontType":3,
+ "spanishText":"Perfecto en %1 canción/es (Fácil)",
+ "spanishFontType":3,
+ "chineseTText":"以簡單難度達成%1首樂曲全良",
+ "chineseTFontType":1,
+ "koreanText":"쉬움으로 %1곡 얼쑤로만 클리어",
+ "koreanFontType":2,
+ "portugueseText":"%1 música(s) com Perfeito no Fácil",
+ "portugueseFontType":2,
+ "russianText":"Идеально: %1 песен на \"Просто\"",
+ "russianFontType":2,
+ "turkishText":"Kolay şarkıların %1'inde Mükemmel",
+ "turkishFontType":2,
+ "arabicText":"مثالي على %1 أغنية (أغاني) المستوى السهل",
+ "arabicFontType":2,
+ "dutchText":"Perfect voor %1 liedje(s) op Makkelijk",
+ "dutchFontType":2,
+ "chineseSText":"以简单难度达成%1首乐曲全良",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_normal_allryo_songs",
+ "japaneseText":"ふつうで%1曲全良",
+ "englishUsText":"Perfect on %1 Normal song(s)",
+ "englishUsFontType":3,
+ "frenchText":"%1 chanson(s) avec que des BONS en normal.",
+ "frenchFontType":3,
+ "italianText":"Completa %1 canzone/i a difficoltà Normale con tutti BENE",
+ "italianFontType":3,
+ "germanText":"Im normalen Modus %1 Song(s) alles GUT!",
+ "germanFontType":3,
+ "spanishText":"Perfecto en %1 canción/es (Normal)",
+ "spanishFontType":3,
+ "chineseTText":"以普通難度達成%1首樂曲全良",
+ "chineseTFontType":1,
+ "koreanText":"보통으로 %1곡 얼쑤로만 클리어",
+ "koreanFontType":2,
+ "portugueseText":"%1 música(s) com Perfeito no Normal",
+ "portugueseFontType":2,
+ "russianText":"Идеально: %1 песен на \"Нормально\"",
+ "russianFontType":2,
+ "turkishText":"Normal şarkıların %1'inde Mükemmel",
+ "turkishFontType":2,
+ "arabicText":"مثالي على %1 من الأغاني العادية",
+ "arabicFontType":2,
+ "dutchText":"Perfect voor %1 liedje(s) op Normaal",
+ "dutchFontType":2,
+ "chineseSText":"以普通难度达成%1首乐曲全良",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_hard_allryo_songs",
+ "japaneseText":"むずかしいで%1曲全良",
+ "englishUsText":"Perfect on %1 Hard song(s)",
+ "englishUsFontType":3,
+ "frenchText":"%1 chanson(s) avec que des BONS en difficile.",
+ "frenchFontType":3,
+ "italianText":"Completa %1 canzone/i a difficoltà Difficile con tutti BENE",
+ "italianFontType":3,
+ "germanText":"Im schweren Modus %1 Song(s) alles GUT!",
+ "germanFontType":3,
+ "spanishText":"Perfecto en %1 canción/es (Difícil)",
+ "spanishFontType":3,
+ "chineseTText":"以困難難度達成%1首樂曲全良",
+ "chineseTFontType":1,
+ "koreanText":"어려움으로 %1곡 얼쑤로만 클리어",
+ "koreanFontType":2,
+ "portugueseText":"%1 música(s) com Perfeito no Difícil",
+ "portugueseFontType":2,
+ "russianText":"Идеально: %1 песен на \"Сложно\"",
+ "russianFontType":2,
+ "turkishText":"Zor şarkıların %1'inde Mükemmel",
+ "turkishFontType":2,
+ "arabicText":"مثالي على %1 أغنية (أغاني) المستوى الصعب",
+ "arabicFontType":2,
+ "dutchText":"Perfect voor %1 liedje(s) op Moeilijk",
+ "dutchFontType":2,
+ "chineseSText":"以困难难度达成%1首乐曲全良",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_oni_allryo_songs",
+ "japaneseText":"おにで%1曲全良",
+ "englishUsText":"Perfect on %1 Extreme song(s)",
+ "englishUsFontType":3,
+ "frenchText":"%1 chanson(s) avec que des BONS en extrême.",
+ "frenchFontType":3,
+ "italianText":"Completa %1 canzone/i a difficoltà Estrema con tutti BENE",
+ "italianFontType":3,
+ "germanText":"Im extremen Modus %1 Song(s) alles GUT!",
+ "germanFontType":3,
+ "spanishText":"Perfecto en %1 canción/es (Extremo)",
+ "spanishFontType":3,
+ "chineseTText":"以魔王難度達成%1首樂曲全良",
+ "chineseTFontType":1,
+ "koreanText":"귀신으로 %1곡 얼쑤로만 클리어",
+ "koreanFontType":2,
+ "portugueseText":"%1 música(s) com Perfeito no Extremo",
+ "portugueseFontType":2,
+ "russianText":"Идеально: %1 песен на \"Предел\"",
+ "russianFontType":2,
+ "turkishText":"Aşırı zor şarkıların %1'inde Mükemmel",
+ "turkishFontType":2,
+ "arabicText":"مثالي على %1 من الأغاني القصوى",
+ "arabicFontType":2,
+ "dutchText":"Perfect voor %1 liedje(s) op Extreem",
+ "dutchFontType":2,
+ "chineseSText":"以魔王难度达成%1首乐曲全良",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_ura_allryo_songs",
+ "japaneseText":"おにで%1曲全良",
+ "englishUsText":"Perfect on %1 Ultra-Extreme song(s)",
+ "englishUsFontType":3,
+ "frenchText":"%1 chanson(s) avec que des BONS en extrême.",
+ "frenchFontType":3,
+ "italianText":"Completa %1 canzone/i a difficoltà Estrema con tutti BENE",
+ "italianFontType":3,
+ "germanText":"Im Extrem-Modus %1 Song(s) alles GUT!",
+ "germanFontType":3,
+ "spanishText":"Perfecto en %1 canción/es (Ultra Extremo)",
+ "spanishFontType":3,
+ "chineseTText":"以魔王難度達成%1首樂曲全良",
+ "chineseTFontType":1,
+ "koreanText":"귀신으로 %1곡 얼쑤로만 클리어",
+ "koreanFontType":2,
+ "portugueseText":"%1 música(s) com Perfeito no modo Super-Extremo",
+ "portugueseFontType":2,
+ "russianText":"Идеально — песен на \"Предел\": %1",
+ "russianFontType":2,
+ "turkishText":"%1 Aşırı Ekstrem şarkıda Mükemmel",
+ "turkishFontType":2,
+ "arabicText":"مثالي على %1 من أغاني المستوى الأقصى الفائق",
+ "arabicFontType":2,
+ "dutchText":"Perfect voor %1 liedje(s) op Superextreem",
+ "dutchFontType":2,
+ "chineseSText":"以魔王难度达成%1首乐曲全良",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_enso_play_counts",
+ "japaneseText":"演奏ゲームを%1回プレイした!",
+ "englishUsText":"Played Taiko Mode %1x",
+ "englishUsFontType":3,
+ "frenchText":"%1 partie(s) jouée(s) en mode Taiko.",
+ "frenchFontType":3,
+ "italianText":"Gioca in Modalità Taiko %1 volta/e",
+ "italianFontType":3,
+ "germanText":"Taiko-Modus %1-mal gespielt!",
+ "germanFontType":3,
+ "spanishText":"Juega al modo Taiko %1 veces",
+ "spanishFontType":3,
+ "chineseTText":"已遊玩演奏遊戲%1次",
+ "chineseTFontType":1,
+ "koreanText":"연주 모드를 %1회 플레이했다",
+ "koreanFontType":2,
+ "portugueseText":"Jogou no Modo Taiko %1 vezes",
+ "portugueseFontType":2,
+ "russianText":"Сыграно в режиме Taiko %1 раз(а)",
+ "russianFontType":2,
+ "turkishText":"Taiko Modu %1x kez oynandı",
+ "turkishFontType":2,
+ "arabicText":"لعبت نمط تايكو %1x",
+ "arabicFontType":2,
+ "dutchText":"%1 keer in Taiko-modus gespeeld",
+ "dutchFontType":2,
+ "chineseSText":"已游玩演奏游戏%1次",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_enso_clear_counts",
+ "japaneseText":"演奏ゲームを%1回クリアした!",
+ "englishUsText":"Cleared Taiko Mode %1x",
+ "englishUsFontType":3,
+ "frenchText":"Réussir le Mode Taiko %1 fois.",
+ "frenchFontType":3,
+ "italianText":"Completa la Modalità Taiko %1 volta/e",
+ "italianFontType":3,
+ "germanText":"Taiko-Modus %1-mal gemeistert!",
+ "germanFontType":3,
+ "spanishText":"Supera el modo Taiko %1 veces",
+ "spanishFontType":3,
+ "chineseTText":"已通關演奏遊戲%1次",
+ "chineseTFontType":1,
+ "koreanText":"연주 모드를 %1회 클리어했다",
+ "koreanFontType":2,
+ "portugueseText":"Concluiu o Modo Taiko %1 vezes",
+ "portugueseFontType":2,
+ "russianText":"Пройдено в режиме Taiko %1 раз(а)",
+ "russianFontType":2,
+ "turkishText":"Taiko Modu %1x kez bitirildi",
+ "turkishFontType":2,
+ "arabicText":"نجحت في نمط تايكو %1x",
+ "arabicFontType":2,
+ "dutchText":"%1 keer Taiko-modus gehaald",
+ "dutchFontType":2,
+ "chineseSText":"已通关演奏游戏%1次",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_open_box_counts",
+ "japaneseText":"たまてばこを合計%1個あけた!",
+ "englishUsText":"Opened %1 Treasure Box(es)!",
+ "englishUsFontType":3,
+ "frenchText":"%1 coffre(s) aux trésors ouvert(s)",
+ "frenchFontType":3,
+ "italianText":"Hai aperto un totale di %1 scrigni!",
+ "italianFontType":3,
+ "germanText":"Insgesamt %1 Schatztruhe(n) geöffnet!",
+ "germanFontType":3,
+ "spanishText":"Abre %1 caja(s) sorpresa",
+ "spanishFontType":3,
+ "chineseTText":"合計已開啟%1個玉手箱",
+ "chineseTFontType":1,
+ "koreanText":"보물 상자를 총 %1개 열었다!",
+ "koreanFontType":2,
+ "portugueseText":"Abriu %1 Caixa(s) do Tesouro!",
+ "portugueseFontType":2,
+ "russianText":"Открыто сундуков с сокровищами: %1",
+ "russianFontType":2,
+ "turkishText":"Hazine Kutuları %1 kez açıldı!",
+ "turkishFontType":2,
+ "arabicText":"تحت %1 من صندوق (صناديق) الكنز!",
+ "arabicFontType":2,
+ "dutchText":"%1 schatkist(en) geopend!",
+ "dutchFontType":2,
+ "chineseSText":"合计已开启%1个玉手箱",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_localplay_counts",
+ "japaneseText":"通信プレイの各モードを%1回プレイ!",
+ "englishUsText":"Play online %1x",
+ "englishUsFontType":3,
+ "frenchText":"Chaque mode en ligne joué %1 fois.",
+ "frenchFontType":3,
+ "italianText":"Gioca ogni modalità online %1 volta/e",
+ "italianFontType":3,
+ "germanText":"Jeden Modus im Online-Spiel %1-mal gespielt!",
+ "germanFontType":3,
+ "spanishText":"Juega en línea %1 veces",
+ "spanishFontType":3,
+ "chineseTText":"在通訊遊玩的各模式中遊玩%1次",
+ "chineseTFontType":1,
+ "koreanText":"통신 플레이의 각 모드를 %1회 플레이",
+ "koreanFontType":2,
+ "portugueseText":"Jogar %1 vezes no modo online",
+ "portugueseFontType":2,
+ "russianText":"Сыграть онлайн %1 раз(а)",
+ "russianFontType":2,
+ "turkishText":"%1x kez online oynandı",
+ "turkishFontType":2,
+ "arabicText":"لعبت أونلاين %1x",
+ "arabicFontType":2,
+ "dutchText":"%1 keer online gespeeld",
+ "dutchFontType":2,
+ "chineseSText":"在通信游玩的各模式中游玩%1次",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_localplay_vswin_counts",
+ "japaneseText":"通信プレイの対戦モードで%1回勝利!",
+ "englishUsText":"Win Battle Mode %1x",
+ "englishUsFontType":3,
+ "frenchText":"1% victoire(s) en ligne en mode défi.",
+ "frenchFontType":3,
+ "italianText":"Vinci in Modalità sfida online %1 volta/e",
+ "italianFontType":3,
+ "germanText":"Duell-Modus Online %1-mal gewonnen!",
+ "germanFontType":3,
+ "spanishText":"Gana %1 veces en modo competitivo",
+ "spanishFontType":3,
+ "chineseTText":"在通訊遊玩的對戰模式勝利%1次",
+ "chineseTFontType":1,
+ "koreanText":"통신 플레이의 대전 모드에서 %1회 승리",
+ "koreanFontType":2,
+ "portugueseText":"Vencer %1 vezes no Modo Combate",
+ "portugueseFontType":2,
+ "russianText":"Выиграть в режиме дуэли %1 раз(а)",
+ "russianFontType":2,
+ "turkishText":"%1x kez savaş modu",
+ "turkishFontType":2,
+ "arabicText":"ربحت نمط القتال %1x",
+ "arabicFontType":2,
+ "dutchText":"Haal %1 keer Strijdmodus",
+ "dutchFontType":2,
+ "chineseSText":"在通信游玩的对战模式胜利%1次",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_localplay_clear_counts",
+ "japaneseText":"通信プレイの協力モードで%1曲クリア!",
+ "englishUsText":"Clear %1 song(s) in Co-op Mode",
+ "englishUsFontType":3,
+ "frenchText":"Réussir %1 chanson(s) en coopération.",
+ "frenchFontType":3,
+ "italianText":"Completa %1 canzone/i in Modalità cooperativa online",
+ "italianFontType":3,
+ "germanText":"Koop-Modus Online %1-mal gemeistert!",
+ "germanFontType":3,
+ "spanishText":"Supera %1 canción/es en modo cooperativo",
+ "spanishFontType":3,
+ "chineseTText":"在通訊遊玩的合作模式通關%1首樂曲",
+ "chineseTFontType":1,
+ "koreanText":"통신 플레이의 협력 모드에서 %1곡 클리어",
+ "koreanFontType":2,
+ "portugueseText":"Concluir %1 música(s) no Modo Colaborativo",
+ "portugueseFontType":2,
+ "russianText":"Пройдено песен в кооп. режиме: %1",
+ "russianFontType":2,
+ "turkishText":"Yardımcı Modda şarkıların %1'ini bitir",
+ "turkishFontType":2,
+ "arabicText":"نجاح في %1 من الأغاني في النمط التعاوني",
+ "arabicFontType":2,
+ "dutchText":"%1 liedje(s) gehaald in Multiplayermodus",
+ "dutchFontType":2,
+ "chineseSText":"在通信游玩的合作模式通关%1首乐曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_alllevel_clear",
+ "japaneseText":"この曲の全難易度をクリア!",
+ "englishUsText":"Clear all songs at all difficulty levels",
+ "englishUsFontType":3,
+ "frenchText":"Réussir la chanson dans toutes les difficultés.",
+ "frenchFontType":3,
+ "italianText":"Completa la canzone a tutti i livelli di difficoltà",
+ "italianFontType":3,
+ "germanText":"Alle Schwierigkeitsgrade dieses Songs meistern!",
+ "germanFontType":3,
+ "spanishText":"Supera todas las canciones/dificultades",
+ "spanishFontType":3,
+ "chineseTText":"通關該曲所有難度",
+ "chineseTFontType":1,
+ "koreanText":"해당 곡의 전체 난이도 클리어",
+ "koreanFontType":2,
+ "portugueseText":"Concluir todas as músicas em todos os níveis",
+ "portugueseFontType":2,
+ "russianText":"Пройти все песни на всех сложностях",
+ "russianFontType":2,
+ "turkishText":"Tüm zorluklardaki tüm şarkıları bitir",
+ "turkishFontType":2,
+ "arabicText":"نجاح كل الأغاني على كل مستويات الصعوبة",
+ "arabicFontType":2,
+ "dutchText":"Haal alle liedjes op alle moeilijkheidsgraden",
+ "dutchFontType":2,
+ "chineseSText":"通关该曲所有难度",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_hard_1st_clear",
+ "japaneseText":"初めてむずかしいをクリア!",
+ "englishUsText":"Cleared Hard for the first time!",
+ "englishUsFontType":3,
+ "frenchText":"Réussir en difficile pour la 1re fois !",
+ "frenchFontType":3,
+ "italianText":"Primo completamento a difficoltà Difficile",
+ "italianFontType":3,
+ "germanText":"Erstmals schweren Modus meistern!",
+ "germanFontType":3,
+ "spanishText":"¡Difícil superado por primera vez!",
+ "spanishFontType":3,
+ "chineseTText":"初次通關困難難度!",
+ "chineseTFontType":1,
+ "koreanText":"첫 어려움 난이도 클리어!",
+ "koreanFontType":2,
+ "portugueseText":"Concluído pela primeira vez no Difícil!",
+ "portugueseFontType":2,
+ "russianText":"Впервые пройдено на уровне \"Сложно\"!",
+ "russianFontType":2,
+ "turkishText":"İlk kez Zor seviye bitti!",
+ "turkishFontType":2,
+ "arabicText":"تم تخطي المستوى الصعب لأول مرة!",
+ "arabicFontType":2,
+ "dutchText":"Voor het eerst Moeilijk gehaald!",
+ "dutchFontType":2,
+ "chineseSText":"初次通关困难难度!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_oni_1st_clear",
+ "japaneseText":"初めておにをクリア!",
+ "englishUsText":"Cleared Extreme for the first time!",
+ "englishUsFontType":3,
+ "frenchText":"Réussir en extrême pour la 1re fois !",
+ "frenchFontType":3,
+ "italianText":"Primo completamento a difficoltà Estrema",
+ "italianFontType":3,
+ "germanText":"Erstmals extremen Modus meistern!",
+ "germanFontType":3,
+ "spanishText":"¡Extremo superado por primera vez!",
+ "spanishFontType":3,
+ "chineseTText":"初次通關魔王難度!",
+ "chineseTFontType":1,
+ "koreanText":"첫 귀신 난이도 클리어!",
+ "koreanFontType":2,
+ "portugueseText":"Concluído pela primeira vez no Extremo!",
+ "portugueseFontType":2,
+ "russianText":"Впервые пройдено на уровне \"Предел\"!",
+ "russianFontType":2,
+ "turkishText":"İlk kez Ekstrem seviye bitti!",
+ "turkishFontType":2,
+ "arabicText":"تم تخطي المستوى الأقصى لأول مرة!",
+ "arabicFontType":2,
+ "dutchText":"Voor het eerst Extreem gehaald!",
+ "dutchFontType":2,
+ "chineseSText":"初次通关魔王难度!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_ura_1st_clear",
+ "japaneseText":"初めておにをクリア!",
+ "englishUsText":"Cleared Ultra-Extreme for the first time!",
+ "englishUsFontType":3,
+ "frenchText":"Réussi en extrême pour la 1re fois !",
+ "frenchFontType":3,
+ "italianText":"Primo completamento a difficoltà Estrema",
+ "italianFontType":3,
+ "germanText":"Erstmals Extrem-Modus gemeistert!",
+ "germanFontType":3,
+ "spanishText":"¡Ultra Extremo superado por primera vez!",
+ "spanishFontType":3,
+ "chineseTText":"初次通關魔王難度!",
+ "chineseTFontType":1,
+ "koreanText":"첫 귀신 난이도 클리어!",
+ "koreanFontType":2,
+ "portugueseText":"Concluído pela primeira vez no modo Super-Extremo!",
+ "portugueseFontType":2,
+ "russianText":"Впервые пройдено на \"Предел\"!",
+ "russianFontType":2,
+ "turkishText":"İlk kez Aşırı Ekstrem seviye bitti!",
+ "turkishFontType":2,
+ "arabicText":"تم تخطي المستوى الأقصى الفائق لأول مرة!",
+ "arabicFontType":2,
+ "dutchText":"Voor het eerst Superextreem gehaald!",
+ "dutchFontType":2,
+ "chineseSText":"初次通关魔王难度!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_1st_fullcombo",
+ "japaneseText":"初めてフルコンボ!",
+ "englishUsText":"First Full Combo",
+ "englishUsFontType":3,
+ "frenchText":"Premier combo MAX.",
+ "frenchFontType":3,
+ "italianText":"Ottieni il primo Perfetto",
+ "italianFontType":3,
+ "germanText":"Erstmals „volle Kombo“!",
+ "germanFontType":3,
+ "spanishText":"1.er combo completo",
+ "spanishFontType":3,
+ "chineseTText":"初次達成全連段",
+ "chineseTFontType":1,
+ "koreanText":"첫 풀 콤보",
+ "koreanFontType":2,
+ "portugueseText":"Primeiro Combo completo",
+ "portugueseFontType":2,
+ "russianText":"Первое полное комбо",
+ "russianFontType":2,
+ "turkishText":"İlk Tam Kombo",
+ "turkishFontType":2,
+ "arabicText":"أول كومبو كامل",
+ "arabicFontType":2,
+ "dutchText":"Eerste Full Combo!",
+ "dutchFontType":2,
+ "chineseSText":"初次达成全连段",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_1st_allryo",
+ "japaneseText":"初めて全良!",
+ "englishUsText":"First Perfect",
+ "englishUsFontType":3,
+ "frenchText":"Première fois avec que des BONS.",
+ "frenchFontType":3,
+ "italianText":"Ottieni tutti BENE per la prima volta",
+ "italianFontType":3,
+ "germanText":"Erstmals „alles GUT“!",
+ "germanFontType":3,
+ "spanishText":"Primer perfecto",
+ "spanishFontType":3,
+ "chineseTText":"初次達成全良",
+ "chineseTFontType":1,
+ "koreanText":"첫 얼쑤로만 클리어",
+ "koreanFontType":2,
+ "portugueseText":"Primeiro Perfeito",
+ "portugueseFontType":2,
+ "russianText":"Первое \"Идеально\"",
+ "russianFontType":2,
+ "turkishText":"İlk Mükemmel",
+ "turkishFontType":2,
+ "arabicText":"أول مثالي",
+ "arabicFontType":2,
+ "dutchText":"Eerste Perfect",
+ "dutchFontType":2,
+ "chineseSText":"初次达成全良",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_cos_double",
+ "japaneseText":"きせかえアイテムかぶっちゃった",
+ "englishUsText":"Costume Item in use",
+ "englishUsFontType":3,
+ "frenchText":"Il est costumé",
+ "frenchFontType":3,
+ "italianText":"Indossa un costume",
+ "italianFontType":3,
+ "germanText":"Doppeltes Kostüm!",
+ "germanFontType":3,
+ "spanishText":"Traje en uso",
+ "spanishFontType":3,
+ "chineseTText":"已穿戴換裝道具",
+ "chineseTFontType":1,
+ "koreanText":"꾸미기 아이템을 장착했다",
+ "koreanFontType":2,
+ "portugueseText":"Fantasia atual",
+ "portugueseFontType":2,
+ "russianText":"Предмет одежды используется",
+ "russianFontType":2,
+ "turkishText":"Kostüm kullanımda",
+ "turkishFontType":2,
+ "arabicText":"أداة الزي مستخدمة بالفعل",
+ "arabicFontType":2,
+ "dutchText":"Huidig kostuum",
+ "dutchFontType":2,
+ "chineseSText":"已穿戴换装道具",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_continue_clear",
+ "japaneseText":"%1回連続でクリア",
+ "englishUsText":"Clear songs %1x in a row",
+ "englishUsFontType":3,
+ "frenchText":"Réussir %1 fois à la suite.",
+ "frenchFontType":3,
+ "italianText":"Completa %1 volte di seguito",
+ "italianFontType":3,
+ "germanText":"%1-mal in Serie meistern!",
+ "germanFontType":3,
+ "spanishText":"Supera %1 canciones seguidas",
+ "spanishFontType":3,
+ "chineseTText":"連續通關%1次",
+ "chineseTFontType":1,
+ "koreanText":"%1회 연속 클리어",
+ "koreanFontType":2,
+ "portugueseText":"Conclua a música %1 vezes consecutivas",
+ "portugueseFontType":2,
+ "russianText":"Пройти %1 песен подряд",
+ "russianFontType":2,
+ "turkishText":"%1x şarkıyı art arda bitir",
+ "turkishFontType":2,
+ "arabicText":"نجاح في %1x أغاني على التوالي",
+ "arabicFontType":2,
+ "dutchText":"Haal %1 keer liedjes achter elkaar",
+ "dutchFontType":2,
+ "chineseSText":"连续通关%1次",
+ "chineseSFontType":4
+ },
+ {
+ "key":"unlock_continue_goldcrown",
+ "japaneseText":"%1回連続で金王冠を獲得",
+ "englishUsText":"Get %1 golden crowns in a row",
+ "englishUsFontType":3,
+ "frenchText":"Couronne dorée %1 fois à la suite.",
+ "frenchFontType":3,
+ "italianText":"Ottieni una corona %1 volte di seguito",
+ "italianFontType":3,
+ "germanText":"%1-mal in Serie goldene Krone!",
+ "germanFontType":3,
+ "spanishText":"Consigue %1 coronas de oro seguidas",
+ "spanishFontType":3,
+ "chineseTText":"連續獲得金王冠%1次",
+ "chineseTFontType":1,
+ "koreanText":"%1회 연속 금관",
+ "koreanFontType":2,
+ "portugueseText":"Conseguir %1 Coroas Douradas consecutivas",
+ "portugueseFontType":2,
+ "russianText":"Получить %1 золотых корон подряд",
+ "russianFontType":2,
+ "turkishText":"Art arda %1 altın taç al",
+ "turkishFontType":2,
+ "arabicText":"احصل على %1 تيجان ذهبية على التوالي",
+ "arabicFontType":2,
+ "dutchText":"Haal %1 gouden kroontjes achter elkaar",
+ "dutchFontType":2,
+ "chineseSText":"连续获得金王冠%1次",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_title_enso",
+ "japaneseText":"演奏オプション",
+ "englishUsText":"Customize Gameplay",
+ "englishUsFontType":3,
+ "frenchText":"Options de partie",
+ "frenchFontType":3,
+ "italianText":"Opzioni della sessione",
+ "italianFontType":3,
+ "germanText":"Musik-Optionen",
+ "germanFontType":3,
+ "spanishText":"Personalización",
+ "spanishFontType":3,
+ "chineseTText":"演奏選項",
+ "chineseTFontType":1,
+ "koreanText":"연주 옵션",
+ "koreanFontType":2,
+ "portugueseText":"Personalizar",
+ "portugueseFontType":2,
+ "russianText":"Настройки исполнения",
+ "russianFontType":2,
+ "turkishText":"Özel Parametreler",
+ "turkishFontType":2,
+ "arabicText":"معلمات مخصصة",
+ "arabicFontType":2,
+ "dutchText":"Speelopties",
+ "dutchFontType":2,
+ "chineseSText":"演奏选项",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_neiro",
+ "japaneseText":"音色",
+ "englishUsText":"Hit Sounds",
+ "englishUsFontType":3,
+ "frenchText":"Instrument",
+ "frenchFontType":3,
+ "italianText":"Strumento",
+ "italianFontType":3,
+ "germanText":"Klangfarbe",
+ "germanFontType":3,
+ "spanishText":"Timbre",
+ "spanishFontType":3,
+ "chineseTText":"音色",
+ "chineseTFontType":1,
+ "koreanText":"음색",
+ "koreanFontType":2,
+ "portugueseText":"Tons de batida",
+ "portugueseFontType":2,
+ "russianText":"Звук удара",
+ "russianFontType":2,
+ "turkishText":"Vuruş Sesleri",
+ "turkishFontType":2,
+ "arabicText":"أصوات النقر",
+ "arabicFontType":2,
+ "dutchText":"Drumgeluiden",
+ "dutchFontType":2,
+ "chineseSText":"音色",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_desc_null",
+ "japaneseText":"演奏ゲームの設定をするよ!",
+ "englishUsText":"Set Game Mode!",
+ "englishUsFontType":3,
+ "frenchText":"Réglons le mode Taiko !",
+ "frenchFontType":3,
+ "italianText":"Scegli la modalità di gioco!",
+ "italianFontType":3,
+ "germanText":"Taiko-Modus wird eingerichtet!",
+ "germanFontType":3,
+ "spanishText":"¡Elige los ajustes de juego!",
+ "spanishFontType":3,
+ "chineseTText":"進行演奏遊戲的設定吧!",
+ "chineseTFontType":1,
+ "koreanText":"연주 모드를 설정하자!",
+ "koreanFontType":2,
+ "portugueseText":"Escolher modo de jogo!",
+ "portugueseFontType":2,
+ "russianText":"Установите режим игры!",
+ "russianFontType":2,
+ "turkishText":"Oyun Modunu Ayarla!",
+ "turkishFontType":2,
+ "arabicText":"ضبط وضع اللعبة!",
+ "arabicFontType":2,
+ "dutchText":"Spelmodus instellen",
+ "dutchFontType":2,
+ "chineseSText":"进行演奏游戏的设定吧!",
+ "chineseSFontType":10
+ },
+ {
+ "key":"help_abekobe_off",
+ "japaneseText":"音符の「ドン」「カッ」を\n入れかえるオプション",
+ "englishUsText":"Options for swapping\nDon and Ka music notes.",
+ "englishUsFontType":3,
+ "frenchText":"Une option pour inverser\nles notes de musique\nDon et Ka.",
+ "frenchFontType":3,
+ "italianText":"Scambia le note Don e Ka.",
+ "italianFontType":3,
+ "germanText":"Option zum Tausch von\nDon- und Ka-Noten.",
+ "germanFontType":3,
+ "spanishText":"Opciones para intercambiar\nlas notas Don y Ka.",
+ "spanishFontType":3,
+ "chineseTText":"替換音符「咚」「咔」的選項",
+ "chineseTFontType":1,
+ "koreanText":"음표 '쿵', '딱'을\n바꾸는 옵션",
+ "koreanFontType":2,
+ "portugueseText":"Opções para alternar entre\nas notas de DON e KA.",
+ "portugueseFontType":2,
+ "russianText":"Опция замены ноты\nДОН <-> КА.",
+ "russianFontType":2,
+ "turkishText":"Don ve Ka müzik\nnotaları arasında\ndeğiştirme seçeneği.",
+ "turkishFontType":2,
+ "arabicText":"خيارات لتبديل\nنوتات كا ودون الموسيقية.",
+ "arabicFontType":2,
+ "dutchText":"Optie om tussen\nDon- en Ka-muzieknoten te wisselen.",
+ "dutchFontType":2,
+ "chineseSText":"替换音符“咚”“咔”的选项",
+ "chineseSFontType":4
+ },
+ {
+ "key":"kisekae_genre_0",
+ "japaneseText":"あたま",
+ "englishUsText":"Head",
+ "englishUsFontType":3,
+ "frenchText":"Tête",
+ "frenchFontType":3,
+ "italianText":"Testa",
+ "italianFontType":3,
+ "germanText":"Kopf",
+ "germanFontType":3,
+ "spanishText":"Cabezas",
+ "spanishFontType":3,
+ "chineseTText":"頭",
+ "chineseTFontType":1,
+ "koreanText":"머리",
+ "koreanFontType":2,
+ "portugueseText":"Cabeça",
+ "portugueseFontType":2,
+ "russianText":"Голова",
+ "russianFontType":2,
+ "turkishText":"Kafa",
+ "turkishFontType":2,
+ "arabicText":"الرأس",
+ "arabicFontType":2,
+ "dutchText":"Hoofd",
+ "dutchFontType":2,
+ "chineseSText":"头",
+ "chineseSFontType":4
+ },
+ {
+ "key":"kisekae_genre_1",
+ "japaneseText":"からだ",
+ "englishUsText":"Body",
+ "englishUsFontType":3,
+ "frenchText":"Corps",
+ "frenchFontType":3,
+ "italianText":"Corpo",
+ "italianFontType":3,
+ "germanText":"Körper",
+ "germanFontType":3,
+ "spanishText":"Cuerpos",
+ "spanishFontType":3,
+ "chineseTText":"身體",
+ "chineseTFontType":1,
+ "koreanText":"몸",
+ "koreanFontType":2,
+ "portugueseText":"Corpo",
+ "portugueseFontType":2,
+ "russianText":"Тело",
+ "russianFontType":2,
+ "turkishText":"Vücut",
+ "turkishFontType":2,
+ "arabicText":"الجسم",
+ "arabicFontType":2,
+ "dutchText":"Lichaam",
+ "dutchFontType":2,
+ "chineseSText":"身体",
+ "chineseSFontType":4
+ },
+ {
+ "key":"kisekae_genre_2",
+ "japaneseText":"きぐるみ",
+ "englishUsText":"Mascot",
+ "englishUsFontType":3,
+ "frenchText":"Déguisement",
+ "frenchFontType":3,
+ "italianText":"Costume",
+ "italianFontType":3,
+ "germanText":"Kostüm",
+ "germanFontType":3,
+ "spanishText":"Disfraces",
+ "spanishFontType":3,
+ "chineseTText":"布偶裝",
+ "chineseTFontType":1,
+ "koreanText":"인형탈",
+ "koreanFontType":2,
+ "portugueseText":"Mascote",
+ "portugueseFontType":2,
+ "russianText":"Кигуруми",
+ "russianFontType":2,
+ "turkishText":"Maskot",
+ "turkishFontType":2,
+ "arabicText":"التميمة",
+ "arabicFontType":2,
+ "dutchText":"Mascotte",
+ "dutchFontType":2,
+ "chineseSText":"布偶装",
+ "chineseSFontType":4
+ },
+ {
+ "key":"kisekae_genre_3",
+ "japaneseText":"いろ",
+ "englishUsText":"Color",
+ "englishUsFontType":3,
+ "frenchText":"Couleur",
+ "frenchFontType":3,
+ "italianText":"Colore",
+ "italianFontType":3,
+ "germanText":"Farbe",
+ "germanFontType":3,
+ "spanishText":"Colores",
+ "spanishFontType":3,
+ "chineseTText":"顏色",
+ "chineseTFontType":1,
+ "koreanText":"색상",
+ "koreanFontType":2,
+ "portugueseText":"Cor",
+ "portugueseFontType":2,
+ "russianText":"Цвет",
+ "russianFontType":2,
+ "turkishText":"Renk",
+ "turkishFontType":2,
+ "arabicText":"اللون",
+ "arabicFontType":2,
+ "dutchText":"Kleur",
+ "dutchFontType":2,
+ "chineseSText":"颜色",
+ "chineseSFontType":4
+ },
+ {
+ "key":"kisekae_genre_4",
+ "japaneseText":"ぷちキャラ",
+ "englishUsText":"SD-Character",
+ "englishUsFontType":3,
+ "frenchText":"Petit personnage",
+ "frenchFontType":3,
+ "italianText":"Mini personaggi",
+ "italianFontType":3,
+ "germanText":"Mini-Chara",
+ "germanFontType":3,
+ "spanishText":"Minicoleguis",
+ "spanishFontType":3,
+ "chineseTText":"Q版角色",
+ "chineseTFontType":1,
+ "koreanText":"쁘띠 캐릭터",
+ "koreanFontType":2,
+ "portugueseText":"Personagem Chibi",
+ "portugueseFontType":2,
+ "russianText":"SD-персонаж",
+ "russianFontType":2,
+ "turkishText":"SD-Karakteri",
+ "turkishFontType":2,
+ "arabicText":"الشخصية المصغرة",
+ "arabicFontType":2,
+ "dutchText":"Mini-personage",
+ "dutchFontType":2,
+ "chineseSText":"Q版角色",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_none",
+ "japaneseText":"なし!",
+ "englishUsText":"Nothing!",
+ "englishUsFontType":3,
+ "frenchText":"Aucun !",
+ "frenchFontType":3,
+ "italianText":"Nessuno!",
+ "italianFontType":3,
+ "germanText":"Nichts!",
+ "germanFontType":3,
+ "spanishText":"¡Nada!",
+ "spanishFontType":3,
+ "chineseTText":"無!",
+ "chineseTFontType":1,
+ "koreanText":"없음",
+ "koreanFontType":2,
+ "portugueseText":"Nada!",
+ "portugueseFontType":2,
+ "russianText":"Ничего!",
+ "russianFontType":2,
+ "turkishText":"Hiçbir şey!",
+ "turkishFontType":2,
+ "arabicText":"لا شيء!",
+ "arabicFontType":2,
+ "dutchText":"Niets!",
+ "dutchFontType":2,
+ "chineseSText":"无!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_none",
+ "japaneseText":"なし!",
+ "englishUsText":"Nothing!",
+ "englishUsFontType":3,
+ "frenchText":"Aucun !",
+ "frenchFontType":3,
+ "italianText":"Nessuno!",
+ "italianFontType":3,
+ "germanText":"Nichts!",
+ "germanFontType":3,
+ "spanishText":"¡Nada!",
+ "spanishFontType":3,
+ "chineseTText":"無!",
+ "chineseTFontType":1,
+ "koreanText":"없음",
+ "koreanFontType":2,
+ "portugueseText":"Nada!",
+ "portugueseFontType":2,
+ "russianText":"Ничего!",
+ "russianFontType":2,
+ "turkishText":"Hiçbir şey!",
+ "turkishFontType":2,
+ "arabicText":"لا شيء!",
+ "arabicFontType":2,
+ "dutchText":"Niets!",
+ "dutchFontType":2,
+ "chineseSText":"无!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_don",
+ "japaneseText":"なにもつけていません",
+ "englishUsText":"No costumes attached",
+ "englishUsFontType":3,
+ "frenchText":"Il ne porte rien.",
+ "frenchFontType":3,
+ "italianText":"Nessun costume",
+ "italianFontType":3,
+ "germanText":"Es ist nichts angelegt.",
+ "germanFontType":3,
+ "spanishText":"No llevas nada puesto",
+ "spanishFontType":3,
+ "chineseTText":"沒穿上任何裝扮",
+ "chineseTFontType":1,
+ "koreanText":"아무것도 장착하지 않았습니다",
+ "koreanFontType":2,
+ "portugueseText":"Nenhum traje designado",
+ "portugueseFontType":2,
+ "russianText":"Без костюма",
+ "russianFontType":2,
+ "turkishText":"Ekli kostüm yok",
+ "turkishFontType":2,
+ "arabicText":"لا توجد أزياء مرفقة",
+ "arabicFontType":2,
+ "dutchText":"Draagt niets",
+ "dutchFontType":2,
+ "chineseSText":"没穿上任何装扮",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_kaminari",
+ "japaneseText":"太鼓をたたいてかみなりをおこします",
+ "englishUsText":"Bang the drum and cause thunder",
+ "englishUsFontType":3,
+ "frenchText":"Provoque des éclairs en tambourinant.",
+ "frenchFontType":3,
+ "italianText":"Genera saette quando batti sul tamburo",
+ "italianFontType":3,
+ "germanText":"Schlag die Trommel und erzeuge Donner.",
+ "germanFontType":3,
+ "spanishText":"Dale al tambor, ¡que oigan los truenos!",
+ "spanishFontType":3,
+ "chineseTText":"敲打太鼓便會引發閃電",
+ "chineseTFontType":1,
+ "koreanText":"북을 쳐서 천둥을 불러요",
+ "koreanFontType":2,
+ "portugueseText":"Bata no taiko para provocar um trovão",
+ "portugueseFontType":2,
+ "russianText":"Вызови гром ударом в барабан",
+ "russianFontType":2,
+ "turkishText":"Davula vur ve gök gürültüsü oluştur",
+ "turkishFontType":2,
+ "arabicText":"اطرق الطبلة واصنع رعدًا",
+ "arabicFontType":2,
+ "dutchText":"Sla op de drum om donder te maken!",
+ "dutchFontType":2,
+ "chineseSText":"敲打太鼓便会引发闪电",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_nekoshaku",
+ "japaneseText":"ネコと杓子の説明文",
+ "englishUsText":"Description of Cat and Shaxy",
+ "englishUsFontType":3,
+ "frenchText":"Explication de Chat et Shaxy.",
+ "frenchFontType":3,
+ "italianText":"Spiegazione per Neko e Shaxy",
+ "italianFontType":3,
+ "germanText":"Über Katze und Shaxy",
+ "germanFontType":3,
+ "spanishText":"Descripción de Gato y Shaxy",
+ "spanishFontType":3,
+ "chineseTText":"貓與飯匙的說明文",
+ "chineseTFontType":1,
+ "koreanText":"고양이와 주걱의 설명문",
+ "koreanFontType":2,
+ "portugueseText":"Descrição de Cat e Shaxy",
+ "portugueseFontType":2,
+ "russianText":"Описание Кота и Шакси",
+ "russianFontType":2,
+ "turkishText":"Kedi ve Fıçı'nın Tanımı",
+ "turkishFontType":2,
+ "arabicText":"وصف القطّ والمغرفة",
+ "arabicFontType":2,
+ "dutchText":"Beschrijving van Kat en Shaxy",
+ "dutchFontType":2,
+ "chineseSText":"猫与饭匙的说明文",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_mikoshi",
+ "japaneseText":"わっしょい!わっしょい!",
+ "englishUsText":"Heave-ho! Heave-ho!",
+ "englishUsFontType":3,
+ "frenchText":"Oh hisse !",
+ "frenchFontType":3,
+ "italianText":"Oh, issa! Oh, issa!",
+ "italianFontType":3,
+ "germanText":"Hau ruck! Hau ruck!",
+ "germanFontType":3,
+ "spanishText":"¡Adelante! ¡Empujen!",
+ "spanishFontType":3,
+ "chineseTText":"嘿咻!嘿咻!",
+ "chineseTFontType":1,
+ "koreanText":"영차! 영차!",
+ "koreanFontType":2,
+ "portugueseText":"Viva! Viva!",
+ "portugueseFontType":2,
+ "russianText":"Вассёй! Вассёй!",
+ "russianFontType":2,
+ "turkishText":"Heyamola! Heyamola!",
+ "turkishFontType":2,
+ "arabicText":" ثقيل-أووف! أووف!",
+ "arabicFontType":2,
+ "dutchText":"1, 2, 3... tillen maar!",
+ "dutchFontType":2,
+ "chineseSText":"嘿咻!嘿咻!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_shishimai",
+ "japaneseText":"かまれるとイイことあるそうです",
+ "englishUsText":"Being bitten is good luck, I hear",
+ "englishUsFontType":3,
+ "frenchText":"Être mordu par ce lion porterait chance.",
+ "frenchFontType":3,
+ "italianText":"Una creatura mitica che porta fortuna!",
+ "italianFontType":3,
+ "germanText":"Man sagt, sein Biss bringe Glück.",
+ "germanFontType":3,
+ "spanishText":"Si te muerde, tendrás buena suerte",
+ "spanishFontType":3,
+ "chineseTText":"被咬後似乎會有好事發生",
+ "chineseTFontType":1,
+ "koreanText":"물리면 행운이 찾아온대요",
+ "koreanFontType":2,
+ "portugueseText":"Já me disseram que ser mordido dá sorte",
+ "portugueseFontType":2,
+ "russianText":"Его укус приносит удачу",
+ "russianFontType":2,
+ "turkishText":"Isırılmak iyi şanstır, duyduğuma göre",
+ "turkishFontType":2,
+ "arabicText":"التعرض للعض يجلب الحظ الجيد، كما سمعت",
+ "arabicFontType":2,
+ "dutchText":"Gebeten worden brengt geluk",
+ "dutchFontType":2,
+ "chineseSText":"被咬后似乎会有好事发生",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_samurai",
+ "japaneseText":"よろいかぶとでいざ合戦",
+ "englishUsText":"Helmet and armor on! I'm battle-ready!",
+ "englishUsFontType":3,
+ "frenchText":"Pour combattre en armure.",
+ "frenchFontType":3,
+ "italianText":"Un valoroso e onorevole guerriero",
+ "italianFontType":3,
+ "germanText":"Mit Rüstungshelm in die Schlacht",
+ "germanFontType":3,
+ "spanishText":"¡Con armadura y casco! ¡A luchar!",
+ "spanishFontType":3,
+ "chineseTText":"穿上盔甲去打仗",
+ "chineseTFontType":1,
+ "koreanText":"갑옷투구로 무장하고 출전",
+ "koreanFontType":2,
+ "portugueseText":"Capacete e armadura a postos! Pronto para a batalha!",
+ "portugueseFontType":2,
+ "russianText":"Воин в шлеме и доспехах! Я готов к бою!",
+ "russianFontType":2,
+ "turkishText":"Miğfer ve silah kuşan! Savaşa hazırım!",
+ "turkishFontType":2,
+ "arabicText":"أرتدي الخوذة والدرع! أنا جاهز للمعركة!",
+ "arabicFontType":2,
+ "dutchText":"Trek je harnas aan, ik ben er klaar voor",
+ "dutchFontType":2,
+ "chineseSText":"穿上盔甲去打仗",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_ninja",
+ "japaneseText":"抜き足差し足忍び足",
+ "englishUsText":"Sneaky-feet are Ninja-feet",
+ "englishUsFontType":3,
+ "frenchText":"Pour agir dans l'ombre.",
+ "frenchFontType":3,
+ "italianText":"Famoso per la sua furtività!",
+ "italianFontType":3,
+ "germanText":"Auf leisen Sohlen …",
+ "germanFontType":3,
+ "spanishText":"Sigilo nivel Dios",
+ "spanishFontType":3,
+ "chineseTText":"躡手躡腳",
+ "chineseTFontType":1,
+ "koreanText":"살금살금 걷기",
+ "koreanFontType":2,
+ "portugueseText":"Pés leves são pés de Ninja",
+ "portugueseFontType":2,
+ "russianText":"На цыпочках крадущийся",
+ "russianFontType":2,
+ "turkishText":"Gizli adımlar ninja adımlarıdır",
+ "turkishFontType":2,
+ "arabicText":"أقدام النينجا المتسللة",
+ "arabicFontType":2,
+ "dutchText":"Stilletjes, zo beweegt een Ninja",
+ "dutchFontType":2,
+ "chineseSText":"蹑手蹑脚",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_soldier",
+ "japaneseText":"たてとかぶとでがっちりガード!",
+ "englishUsText":"Helmet and shield on! Ready to guard!",
+ "englishUsFontType":3,
+ "frenchText":"Bien équipé, bien protégé !",
+ "frenchFontType":3,
+ "italianText":"Elmo e scudo per una difesa perfetta!",
+ "italianFontType":3,
+ "germanText":"Geschützt mit Schild und Helm!",
+ "germanFontType":3,
+ "spanishText":"Escudo y casco, ¡defensa férrea!",
+ "spanishFontType":3,
+ "chineseTText":"用盾與頭盔徹底防禦!",
+ "chineseTFontType":1,
+ "koreanText":"방패와 투구로 완벽 방어!",
+ "koreanFontType":2,
+ "portugueseText":"Capacete e escudo a postos! Pronto para defender!",
+ "portugueseFontType":2,
+ "russianText":"На страже в шлеме и со щитом!",
+ "russianFontType":2,
+ "turkishText":"Miğfer ve kalkan kuşan! Savunma yap!",
+ "turkishFontType":2,
+ "arabicText":"أرتدي الخوذة والدرع! جاهز للحراسة!",
+ "arabicFontType":2,
+ "dutchText":"Klaar om te beschermen met mijn schild!",
+ "dutchFontType":2,
+ "chineseSText":"用盾与头盔彻底防御!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_rocket",
+ "japaneseText":"3 2 1 発射!",
+ "englishUsText":"3...2...1... Blast-off!",
+ "englishUsFontType":3,
+ "frenchText":"3, 2, 1... Mise à feu !",
+ "frenchFontType":3,
+ "italianText":"3, 2, 1... lancio!",
+ "italianFontType":3,
+ "germanText":"3-2-1, Start!",
+ "germanFontType":3,
+ "spanishText":"3, 2, 1... ¡lanzamiento!",
+ "spanishFontType":3,
+ "chineseTText":"3、2、1,發射!",
+ "chineseTFontType":1,
+ "koreanText":"3, 2, 1, 발사!",
+ "koreanFontType":2,
+ "portugueseText":"3, 2, 1... Lançar!",
+ "portugueseFontType":2,
+ "russianText":"3, 2, 1... Пуск!",
+ "russianFontType":2,
+ "turkishText":"3...2...1... Fırlat!",
+ "turkishFontType":2,
+ "arabicText":"3..2..1.. إنطلاق!",
+ "arabicFontType":2,
+ "dutchText":"3, 2, 1... daar gaan we!",
+ "dutchFontType":2,
+ "chineseSText":"3、2、1,发射!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_pirate",
+ "japaneseText":"ヨーホー!ヨーホー!七つの海を冒険だ!",
+ "englishUsText":"Yo-ho! Yo-ho! Let's sail the seven seas!",
+ "englishUsFontType":3,
+ "frenchText":"À la conquête des 7 mers, moussaillon !",
+ "frenchFontType":3,
+ "italianText":"Corpo di mille balene, all'arrembaggio!",
+ "italianFontType":3,
+ "germanText":"Ahoy! Die sieben Weltmeere gehören uns!",
+ "germanFontType":3,
+ "spanishText":"¡Jo, jo! ¡A navegar por los siete mares!",
+ "spanishFontType":3,
+ "chineseTText":"喲~呵~!喲~呵~!在七大洋冒險!",
+ "chineseTFontType":1,
+ "koreanText":"요호! 요호! 일곱 바다를 모험하자!",
+ "koreanFontType":2,
+ "portugueseText":"Uhu! Uhu! Vamos navegar pelos Sete Mares!",
+ "portugueseFontType":2,
+ "russianText":"Йо-хо-хо! Поплыли за тридевять земель!",
+ "russianFontType":2,
+ "turkishText":"Yihu! Yihu! Hadi yedi denize yol alalım!",
+ "turkishFontType":2,
+ "arabicText":"يو-هو! يو-هو! لنبحر في البحار السبعة!",
+ "arabicFontType":2,
+ "dutchText":"Joho, joho! Avonturen op de zeven zeeën!",
+ "dutchFontType":2,
+ "chineseSText":"哟~呵~!哟~呵~!在七大洋冒险!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_metal",
+ "japaneseText":"激しいビートでしびれさせろ!",
+ "englishUsText":"Gonna blow you away with my beats!",
+ "englishUsFontType":3,
+ "frenchText":"Un beat très puissant !",
+ "frenchFontType":3,
+ "italianText":"Mai visto un ritmo così furioso!",
+ "italianFontType":3,
+ "germanText":"Lass dich von den harten Klängen hinreißen!",
+ "germanFontType":3,
+ "spanishText":"¡Te explotará la cabeza con mi música!",
+ "spanishFontType":3,
+ "chineseTText":"讓人沉醉在猛烈的節奏裡吧!",
+ "chineseTFontType":1,
+ "koreanText":"거친 비트에 취하게 해줘!",
+ "koreanFontType":2,
+ "portugueseText":"Minha batida vai pirar seu cabeção!",
+ "portugueseFontType":2,
+ "russianText":"Почувствуй жесткий бит!",
+ "russianFontType":2,
+ "turkishText":"Notalarımla seni yeneceğim!",
+ "turkishFontType":2,
+ "arabicText":"سأجعلك تطير بعيدا بألحاني!",
+ "arabicFontType":2,
+ "dutchText":"Ik blaas je omver met mijn solo's!",
+ "dutchFontType":2,
+ "chineseSText":"让人沉醉在猛烈的节奏里吧!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_sumo",
+ "japaneseText":"はっけよい!のこったのこった!",
+ "englishUsText":"Ready! Fight!",
+ "englishUsFontType":3,
+ "frenchText":"Lourd et difficile à bousculer !",
+ "frenchFontType":3,
+ "italianText":"Dosukoi! Dosukoi!",
+ "italianFontType":3,
+ "germanText":"Auf die Plätze! Los!",
+ "germanFontType":3,
+ "spanishText":"¡Listos! ¡A luchar!",
+ "spanishFontType":3,
+ "chineseTText":"拿出鬥志!勝負未定!",
+ "chineseTFontType":1,
+ "koreanText":"자! 좀 더, 조금 더!",
+ "koreanFontType":2,
+ "portugueseText":"Preparar! Valendo!",
+ "portugueseFontType":2,
+ "russianText":"Готовься! Начали!",
+ "russianFontType":2,
+ "turkishText":"Hazır ol! Başla!",
+ "turkishFontType":2,
+ "arabicText":"استعداد! قتال!",
+ "arabicFontType":2,
+ "dutchText":"Klaar voor de strijd!",
+ "dutchFontType":2,
+ "chineseSText":"拿出斗志!胜负未定!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_king",
+ "japaneseText":"キング オブ タイコ!",
+ "englishUsText":"King of the Drums!",
+ "englishUsFontType":3,
+ "frenchText":"King of Taiko !",
+ "frenchFontType":3,
+ "italianText":"Il re dei tamburi!",
+ "italianFontType":3,
+ "germanText":"King of Taiko!",
+ "germanFontType":3,
+ "spanishText":"¡El rey del tambor!",
+ "spanishFontType":3,
+ "chineseTText":"King of Taiko!",
+ "chineseTFontType":1,
+ "koreanText":"킹 오브 태고!",
+ "koreanFontType":2,
+ "portugueseText":"Rei do batuque!",
+ "portugueseFontType":2,
+ "russianText":"Король барабанов!",
+ "russianFontType":2,
+ "turkishText":"Davulun Kralı!",
+ "turkishFontType":2,
+ "arabicText":"ملك الطبول!",
+ "arabicFontType":2,
+ "dutchText":"Koning van de drums!",
+ "dutchFontType":2,
+ "chineseSText":"King of Taiko!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_kame",
+ "japaneseText":"すごくかたいです",
+ "englishUsText":"It's very hard",
+ "englishUsFontType":3,
+ "frenchText":"C'est très très dur.",
+ "frenchFontType":3,
+ "italianText":"Ha un guscio durissimo!",
+ "italianFontType":3,
+ "germanText":"Es ist sehr hart.",
+ "germanFontType":3,
+ "spanishText":"Esto es durísimo",
+ "spanishFontType":3,
+ "chineseTText":"非常硬",
+ "chineseTFontType":1,
+ "koreanText":"매우 딱딱해요",
+ "koreanFontType":2,
+ "portugueseText":"É super duro!",
+ "portugueseFontType":2,
+ "russianText":"Очень твердая",
+ "russianFontType":2,
+ "turkishText":"Bu çok zor",
+ "turkishFontType":2,
+ "arabicText":"صعبة للغاية",
+ "arabicFontType":2,
+ "dutchText":"Het is erg moeilijk",
+ "dutchFontType":2,
+ "chineseSText":"非常硬",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_jewel",
+ "japaneseText":"キラキラキラキラ キラッキラ",
+ "englishUsText":"Sparkle, sparkle, sparkle, sparkle",
+ "englishUsFontType":3,
+ "frenchText":"Ça brille !",
+ "frenchFontType":3,
+ "italianText":"Guarda come brilla!",
+ "italianFontType":3,
+ "germanText":"Glitzer, glitzer, glitzer …",
+ "germanFontType":3,
+ "spanishText":"Brilla, brilla, brilla",
+ "spanishFontType":3,
+ "chineseTText":"閃閃亮亮閃閃亮亮閃閃~亮亮",
+ "chineseTFontType":1,
+ "koreanText":"반짝반짝반짝 반~짝 반짝",
+ "koreanFontType":2,
+ "portugueseText":"Brilha! brilha!",
+ "portugueseFontType":2,
+ "russianText":"Блестяшки, блестяшки, блестяшки",
+ "russianFontType":2,
+ "turkishText":"Kıvılcım, kıvılcım, kıvılcım, kıvılcım",
+ "turkishFontType":2,
+ "arabicText":"بريق، لمعان، بريق، لمعان",
+ "arabicFontType":2,
+ "dutchText":"Schitterend",
+ "dutchFontType":2,
+ "chineseSText":"闪闪亮亮闪闪亮亮闪闪~亮亮",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_ribbon_dot",
+ "japaneseText":"かわいい水玉つき",
+ "englishUsText":"Comes with cute polka dots",
+ "englishUsFontType":3,
+ "frenchText":"À pois et très beau.",
+ "frenchFontType":3,
+ "italianText":"Un fiocco con una fantasia carina",
+ "italianFontType":3,
+ "germanText":"Mit niedlichem Punktemuster",
+ "germanFontType":3,
+ "spanishText":"Incluye unos lunares supermonos",
+ "spanishFontType":3,
+ "chineseTText":"有可愛的圓點",
+ "chineseTFontType":1,
+ "koreanText":"귀여운 도트 무늬가 그려진",
+ "koreanFontType":2,
+ "portugueseText":"Vem com bolinhas",
+ "portugueseFontType":2,
+ "russianText":"С прелестным горошком",
+ "russianFontType":2,
+ "turkishText":"Sevimli benekli kumaşla gelir",
+ "turkishFontType":2,
+ "arabicText":"تأتي بالنقاط المرقطة اللطيفة",
+ "arabicFontType":2,
+ "dutchText":"Met schattige stippen",
+ "dutchFontType":2,
+ "chineseSText":"有可爱的圆点",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_cinderella",
+ "japaneseText":"午前0時を過ぎないように!",
+ "englishUsText":"Be back before midnight!",
+ "englishUsFontType":3,
+ "frenchText":"Pour ne pas rester après minuit !",
+ "frenchFontType":3,
+ "italianText":"Torna a casa prima di mezzanotte!",
+ "italianFontType":3,
+ "germanText":"Komm bis Mitternacht zurück!",
+ "germanFontType":3,
+ "spanishText":"¡Vuelve a casa antes de medianoche!",
+ "spanishFontType":3,
+ "chineseTText":"注意不要超過午夜12點!",
+ "chineseTFontType":1,
+ "koreanText":"12시를 넘기면 안 돼!",
+ "koreanFontType":2,
+ "portugueseText":"Não passe da meia noite!",
+ "portugueseFontType":2,
+ "russianText":"Вернись до полуночи!",
+ "russianFontType":2,
+ "turkishText":"Geri yarısından önce gelmiş ol!",
+ "turkishFontType":2,
+ "arabicText":"عودي قبل منتصف الليل!",
+ "arabicFontType":2,
+ "dutchText":"Zorg dat je voor middernacht terug bent!",
+ "dutchFontType":2,
+ "chineseSText":"注意不要超过午夜12点!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_princess",
+ "japaneseText":"そこの庶民ん~ 写真とりなさーい",
+ "englishUsText":"You there, commoner! Take my picture!",
+ "englishUsFontType":3,
+ "frenchText":"Gens du peuple, prenez-moi en photo !",
+ "frenchFontType":3,
+ "italianText":"Ehi tu, plebeo. Scattami una foto!",
+ "italianFontType":3,
+ "germanText":"Hey, Untertan! Schieß ein Foto von mir!",
+ "germanFontType":3,
+ "spanishText":"¡Eh, plebeyo, échame una foto!",
+ "spanishFontType":3,
+ "chineseTText":"那邊的庶民~給我拍張照~",
+ "chineseTFontType":1,
+ "koreanText":"이봐 서민~ 사진 좀 찍어 봐",
+ "koreanFontType":2,
+ "portugueseText":"Ei, você! Tira uma foto minha!",
+ "portugueseFontType":2,
+ "russianText":"Эй, простолюдин! Сфоткай меня!",
+ "russianFontType":2,
+ "turkishText":"Hey sen! Fotoğrafımı çek!",
+ "turkishFontType":2,
+ "arabicText":"أنت أيها العاميّ! التقط لي صورة!",
+ "arabicFontType":2,
+ "dutchText":"Hé jij daar, gepeupel. Maak een foto!",
+ "dutchFontType":2,
+ "chineseSText":"那边的庶民~给我拍张照~",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_kojika",
+ "japaneseText":"かわいいシカの子供です",
+ "englishUsText":"It's a cute baby deer",
+ "englishUsFontType":3,
+ "frenchText":"Un bébé cerf tout mignon.",
+ "frenchFontType":3,
+ "italianText":"Un tenerissimo cucciolo di cervo",
+ "italianFontType":3,
+ "germanText":"Es ist ein süßes Rehkitz.",
+ "germanFontType":3,
+ "spanishText":"Un bebé ciervo monísimo",
+ "spanishFontType":3,
+ "chineseTText":"可愛的小鹿",
+ "chineseTFontType":1,
+ "koreanText":"귀여운 아기 사슴이에요",
+ "koreanFontType":2,
+ "portugueseText":"É um lindo veado bebê",
+ "portugueseFontType":2,
+ "russianText":"Милый маленький олененок",
+ "russianFontType":2,
+ "turkishText":"Bu sevimli bir yavru geyik",
+ "turkishFontType":2,
+ "arabicText":"إنها غزال صغير لطيف",
+ "arabicFontType":2,
+ "dutchText":"Het is een lief klein hertje",
+ "dutchFontType":2,
+ "chineseSText":"可爱的小鹿",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_ribbon_big",
+ "japaneseText":"とってもおっきなリボン",
+ "englishUsText":"It's a very big ribbon",
+ "englishUsFontType":3,
+ "frenchText":"C'est vraiment un très grand ruban.",
+ "frenchFontType":3,
+ "italianText":"Così grande non passerà inosservato!",
+ "italianFontType":3,
+ "germanText":"Eine ziemlich große Schleife",
+ "germanFontType":3,
+ "spanishText":"Es un lazo gigantesco",
+ "spanishFontType":3,
+ "chineseTText":"非常大的蝴蝶結",
+ "chineseTFontType":1,
+ "koreanText":"엄청나게 큰 리본",
+ "koreanFontType":2,
+ "portugueseText":"É uma fita muito grande",
+ "portugueseFontType":2,
+ "russianText":"Очень большая лента",
+ "russianFontType":2,
+ "turkishText":"Bu çok büyük bir kurdele",
+ "turkishFontType":2,
+ "arabicText":"إنه شريط كبير جدًا",
+ "arabicFontType":2,
+ "dutchText":"Het is een hele grote strik",
+ "dutchFontType":2,
+ "chineseSText":"非常大的蝴蝶结",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_yatai",
+ "japaneseText":"移動式のお店です",
+ "englishUsText":"It's like a portable shop.",
+ "englishUsFontType":3,
+ "frenchText":"C'est une boutique ambulante.",
+ "frenchFontType":3,
+ "italianText":"Un negozio su ruote",
+ "italianFontType":3,
+ "germanText":"Es ist eine Art mobiles Restaurant.",
+ "germanFontType":3,
+ "spanishText":"Básicamente, una tienda portátil",
+ "spanishFontType":3,
+ "chineseTText":"移動式的店鋪",
+ "chineseTFontType":1,
+ "koreanText":"이동식 점포예요",
+ "koreanFontType":2,
+ "portugueseText":"É como uma loja itinerante.",
+ "portugueseFontType":2,
+ "russianText":"Передвижная лавка",
+ "russianFontType":2,
+ "turkishText":"Bu taşınabilir bir mağaza gibi.",
+ "turkishFontType":2,
+ "arabicText":"إنه مثل المتجر المحمول.",
+ "arabicFontType":2,
+ "dutchText":"Het is net een verplaatsbare winkel.",
+ "dutchFontType":2,
+ "chineseSText":"移动式的店铺",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_cat_dipper",
+ "japaneseText":"ネコと杓子はいつも一緒!",
+ "englishUsText":"Cat and Shaxy are inseparable!",
+ "englishUsFontType":3,
+ "frenchText":"Chat et Shaxy ensemble pour toujours !",
+ "frenchFontType":3,
+ "italianText":"Neko e Shaxy sono sempre insieme!",
+ "italianFontType":3,
+ "germanText":"Katze und Shaxy sind unzertrennlich!",
+ "germanFontType":3,
+ "spanishText":"¡Gato y Shaxy siempre juntos!",
+ "spanishFontType":3,
+ "chineseTText":"貓與飯匙總是在一起!",
+ "chineseTFontType":1,
+ "koreanText":"고양이와 주걱은 항상 함께!",
+ "koreanFontType":2,
+ "portugueseText":"Cat e Shaxy são inseparáveis!",
+ "portugueseFontType":2,
+ "russianText":"Кот и Шакси неразлучны!",
+ "russianFontType":2,
+ "turkishText":"Kedi ve Fıçı ayrılamazlar!",
+ "turkishFontType":2,
+ "arabicText":"القطّ والمغرفة لا ينفصلان!",
+ "arabicFontType":2,
+ "dutchText":"Kat en Shaxy zijn onafscheidelijk!",
+ "dutchFontType":2,
+ "chineseSText":"猫与饭匙总是在一起!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_snowman",
+ "japaneseText":"ホットな演奏でもとけない",
+ "englishUsText":"Not even a hot performance will melt him",
+ "englishUsFontType":3,
+ "frenchText":"Il ne fond pas si facilement.",
+ "frenchFontType":3,
+ "italianText":"Neppure suonare il tamburo lo scioglie!",
+ "italianFontType":3,
+ "germanText":"Auch bei heißer Musik bleibt er cool.",
+ "germanFontType":3,
+ "spanishText":"Ni la actuación más intensa lo derrite",
+ "spanishFontType":3,
+ "chineseTText":"熾熱的演奏也不會讓它融化",
+ "chineseTFontType":1,
+ "koreanText":"뜨거운 연주에도 녹지 않아요",
+ "koreanFontType":2,
+ "portugueseText":"Nem uma performance muito quente vai derretê-lo",
+ "portugueseFontType":2,
+ "russianText":"Не растает даже от горячего выступления",
+ "russianFontType":2,
+ "turkishText":"İyi bir performans bile onu eritecektir",
+ "turkishFontType":2,
+ "arabicText":"ولا حتى استعراض ساخن سيتمكن من إذابته",
+ "arabicFontType":2,
+ "dutchText":"Smelt niet tijdens zinderende optredens",
+ "dutchFontType":2,
+ "chineseSText":"炽热的演奏也不会让它融化",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_hanakazari",
+ "japaneseText":"きれいなお花でかざろうね",
+ "englishUsText":"Spruce up with beautiful flowers!",
+ "englishUsFontType":3,
+ "frenchText":"De belles fleurs à porter sur la tête.",
+ "frenchFontType":3,
+ "italianText":"Che bei fiori colorati!",
+ "italianFontType":3,
+ "germanText":"Schmücken wir uns mit Blumen.",
+ "germanFontType":3,
+ "spanishText":"¡Adórnate con bonitas flores!",
+ "spanishFontType":3,
+ "chineseTText":"戴上漂亮的花朵吧",
+ "chineseTFontType":1,
+ "koreanText":"예쁜 꽃으로 장식해요",
+ "koreanFontType":2,
+ "portugueseText":"Enfeite com flores bonitas!",
+ "portugueseFontType":2,
+ "russianText":"Украсим все цветами!",
+ "russianFontType":2,
+ "turkishText":"Güzel çiçeklerle süsle!",
+ "turkishFontType":2,
+ "arabicText":"تزيين بالزهور الجميلة!",
+ "arabicFontType":2,
+ "dutchText":"Versier het met mooie bloemen!",
+ "dutchFontType":2,
+ "chineseSText":"戴上漂亮的花朵吧",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_usamimi",
+ "japaneseText":"天敵の接近を音で察知できる",
+ "englishUsText":"They can detect enemy ambushes by sound",
+ "englishUsFontType":3,
+ "frenchText":"Pour entendre arriver les ennemis.",
+ "frenchFontType":3,
+ "italianText":"Donano un udito eccezionale",
+ "italianFontType":3,
+ "germanText":"Mit ihnen hört man den Feind nahen.",
+ "germanFontType":3,
+ "spanishText":"Detectan a sus depredadores por el ruido",
+ "spanishFontType":3,
+ "chineseTText":"可以察覺天敵接近的聲音",
+ "chineseTFontType":1,
+ "koreanText":"천적이 접근하는 소리를 들을 수 있어요",
+ "koreanFontType":2,
+ "portugueseText":"Eles percebem o inimigo pelo som",
+ "portugueseFontType":2,
+ "russianText":"Они услышат приближение врага",
+ "russianFontType":2,
+ "turkishText":"Sesle düşman pusularını belirlerler",
+ "turkishFontType":2,
+ "arabicText":"يمكنهما اكتشاف كمائن العدو من الصوت",
+ "arabicFontType":2,
+ "dutchText":"Ze horen de vijand naderen",
+ "dutchFontType":2,
+ "chineseSText":"可以察觉天敌接近的声音",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_sweets",
+ "japaneseText":"全身あまいもの",
+ "englishUsText":"It's sweet all over",
+ "englishUsFontType":3,
+ "frenchText":"Du sucre, encore du sucre !",
+ "frenchFontType":3,
+ "italianText":"Una montagna di zucchero!",
+ "italianFontType":3,
+ "germanText":"Hmm, lauter süße Sachen.",
+ "germanFontType":3,
+ "spanishText":"Todo dulces, todo alegría",
+ "spanishFontType":3,
+ "chineseTText":"全身都是甜食",
+ "chineseTFontType":1,
+ "koreanText":"온몸이 달콤한",
+ "koreanFontType":2,
+ "portugueseText":"Só doces",
+ "portugueseFontType":2,
+ "russianText":"Сладкий сверху донизу",
+ "russianFontType":2,
+ "turkishText":"Her yerde şekerleme",
+ "turkishFontType":2,
+ "arabicText":"شهية في كل قضمة",
+ "arabicFontType":2,
+ "dutchText":"Hartstikke zoet",
+ "dutchFontType":2,
+ "chineseSText":"全身都是甜食",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_wedding",
+ "japaneseText":"おめでとうございます",
+ "englishUsText":"Congrats!",
+ "englishUsFontType":3,
+ "frenchText":"Félicitations !",
+ "frenchFontType":3,
+ "italianText":"Tanti auguri!",
+ "italianFontType":3,
+ "germanText":"Glückwunsch!",
+ "germanFontType":3,
+ "spanishText":"¡Vivan los novios!",
+ "spanishFontType":3,
+ "chineseTText":"恭喜你",
+ "chineseTFontType":1,
+ "koreanText":"축하합니다",
+ "koreanFontType":2,
+ "portugueseText":"Parabéns!",
+ "portugueseFontType":2,
+ "russianText":"Поздравляем!",
+ "russianFontType":2,
+ "turkishText":"Tebrikler!",
+ "turkishFontType":2,
+ "arabicText":"تهانينا!",
+ "arabicFontType":2,
+ "dutchText":"Gefeliciteerd!",
+ "dutchFontType":2,
+ "chineseSText":"恭喜你",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_kajiki",
+ "japaneseText":"するどくて大きいおさかな",
+ "englishUsText":"It's a big, pointy fish",
+ "englishUsFontType":3,
+ "frenchText":"Un gros poisson pointu.",
+ "frenchFontType":3,
+ "italianText":"Il suo naso è una lama affilatissima!",
+ "italianFontType":3,
+ "germanText":"Ein spitzer, großer Fisch",
+ "germanFontType":3,
+ "spanishText":"Pez grandote y puntiagudo",
+ "spanishFontType":3,
+ "chineseTText":"尖銳的大魚",
+ "chineseTFontType":1,
+ "koreanText":"날카롭고 큰 생선",
+ "koreanFontType":2,
+ "portugueseText":"É um peixe grande e pontudo",
+ "portugueseFontType":2,
+ "russianText":"Большая остроносая рыбина",
+ "russianFontType":2,
+ "turkishText":"Bu büyük iri bir balık",
+ "turkishFontType":2,
+ "arabicText":"إنها سمكة كبيرة وسمينة",
+ "arabicFontType":2,
+ "dutchText":"Het is een grote, spitse vis",
+ "dutchFontType":2,
+ "chineseSText":"尖锐的大鱼",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_headphone",
+ "japaneseText":"音もれ注意",
+ "englishUsText":"Keep your volume down!",
+ "englishUsFontType":3,
+ "frenchText":"Attention aux fuites sonores !",
+ "frenchFontType":3,
+ "italianText":"Non alzare troppo il volume!",
+ "italianFontType":3,
+ "germanText":"Achte auf die Lautstärke!",
+ "germanFontType":3,
+ "spanishText":"¡La música está muy alta!",
+ "spanishFontType":3,
+ "chineseTText":"小心漏音",
+ "chineseTFontType":1,
+ "koreanText":"새어 나오는 소리에 주의",
+ "koreanFontType":2,
+ "portugueseText":"Mantenha o volume baixo!",
+ "portugueseFontType":2,
+ "russianText":"Убавь громкость!",
+ "russianFontType":2,
+ "turkishText":"Sessiz ol!",
+ "turkishFontType":2,
+ "arabicText":"حافظ على الصوت منخفضًا!",
+ "arabicFontType":2,
+ "dutchText":"Je muziek staat te hard!",
+ "dutchFontType":2,
+ "chineseSText":"小心漏音",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_zipper",
+ "japaneseText":"開けたり閉めたり",
+ "englishUsText":"It opens and closes",
+ "englishUsFontType":3,
+ "frenchText":"On peut l'ouvrir et la fermer.",
+ "frenchFontType":3,
+ "italianText":"Apri e chiudi, apri e chiudi",
+ "italianFontType":3,
+ "germanText":"Hoch und runter.",
+ "germanFontType":3,
+ "spanishText":"Se abre y se cierra",
+ "spanishFontType":3,
+ "chineseTText":"拉上拉下",
+ "chineseTFontType":1,
+ "koreanText":"열었다 닫았다 할 수 있는",
+ "koreanFontType":2,
+ "portugueseText":"Abrir e fechar",
+ "portugueseFontType":2,
+ "russianText":"Расстегивается и застегивается",
+ "russianFontType":2,
+ "turkishText":"Açılıp kapanır",
+ "turkishFontType":2,
+ "arabicText":"يفتح ويغلق",
+ "arabicFontType":2,
+ "dutchText":"Het gaat open en dicht",
+ "dutchFontType":2,
+ "chineseSText":"拉上拉下",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_wing",
+ "japaneseText":"あの大空を自由に飛びまわれます",
+ "englishUsText":"You're as free as a bird",
+ "englishUsFontType":3,
+ "frenchText":"Permet de fendre les cieux.",
+ "frenchFontType":3,
+ "italianText":"Per volare liberi nel cielo",
+ "italianFontType":3,
+ "germanText":"Fliege hoch empor zum Himmel.",
+ "germanFontType":3,
+ "spanishText":"Libre como un pájaro",
+ "spanishFontType":3,
+ "chineseTText":"能在那片晴空裡自由飛翔",
+ "chineseTFontType":1,
+ "koreanText":"넓은 하늘을 자유롭게 날 수 있어요",
+ "koreanFontType":2,
+ "portugueseText":"Você é livre como um pássaro",
+ "portugueseFontType":2,
+ "russianText":"Ты свободен, как птица",
+ "russianFontType":2,
+ "turkishText":"Bir kuş kadar özgürsün",
+ "turkishFontType":2,
+ "arabicText":"أنت حر كطائر",
+ "arabicFontType":2,
+ "dutchText":"Als een vogel in de lucht",
+ "dutchFontType":2,
+ "chineseSText":"能在那片晴空里自由飞翔",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_miko",
+ "japaneseText":"おはらいとかおみくじとか",
+ "englishUsText":"She performs rites and reads fortunes",
+ "englishUsFontType":3,
+ "frenchText":"Une purification ou une divination ?",
+ "frenchFontType":3,
+ "italianText":"La sacerdotessa di un tempio shintoista",
+ "italianFontType":3,
+ "germanText":"Heute schon Geister vertrieben?",
+ "germanFontType":3,
+ "spanishText":"Hace rituales y lee el futuro",
+ "spanishFontType":3,
+ "chineseTText":"驅邪或抽籤等等",
+ "chineseTFontType":1,
+ "koreanText":"액막이부터 운세 뽑기까지 ",
+ "koreanFontType":2,
+ "portugueseText":"Ela faz rituais e lê a sorte",
+ "portugueseFontType":2,
+ "russianText":"Предсказывает будущее и проводит обряды",
+ "russianFontType":2,
+ "turkishText":"Şeytan çıkarma yapar ve fal bakar",
+ "turkishFontType":2,
+ "arabicText":"تطرد الأرواح وتقرأ الطالع",
+ "arabicFontType":2,
+ "dutchText":"Voorspelt de toekomst en voert riten uit",
+ "dutchFontType":2,
+ "chineseSText":"驱邪或抽签等等",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_uchan",
+ "japaneseText":"かっちゃんとなかよしのうぐいす",
+ "englishUsText":"A warbler who's friends with KATSU-chan",
+ "englishUsFontType":3,
+ "frenchText":"Un rossignol ami avec KATSU-chan.",
+ "frenchFontType":3,
+ "italianText":"Un usignolo amico di KATSU-chan",
+ "italianFontType":3,
+ "germanText":"Mit KATSU-chan befreundete Nachtigall.",
+ "germanFontType":3,
+ "spanishText":"Un pajarillo amigo de KATSU-chan",
+ "spanishFontType":3,
+ "chineseTText":"與小咔很要好的樹鶯",
+ "chineseTFontType":1,
+ "koreanText":"딱이와 사이가 좋은 휘파람새",
+ "koreanFontType":2,
+ "portugueseText":"Rouxinol amigo de KATSU-chan.",
+ "portugueseFontType":2,
+ "russianText":"Соловей - друг Ка-тян",
+ "russianFontType":2,
+ "turkishText":"KATSU-chan ile arkadaş olan bir bülbül",
+ "turkishFontType":2,
+ "arabicText":"العصفور المغرد صديق كاتسو-تشان",
+ "arabicFontType":2,
+ "dutchText":"Dit vogeltje is bevriend met KATSU-chan",
+ "dutchFontType":2,
+ "chineseSText":"与小咔很要好的树莺",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_tetsuo",
+ "japaneseText":"子供が乗ってます",
+ "englishUsText":"Children on board!",
+ "englishUsFontType":3,
+ "frenchText":"Des enfants montent dessus.",
+ "frenchFontType":3,
+ "italianText":"Bimbo a bordo!",
+ "italianFontType":3,
+ "germanText":"Ein Kind sitzt auf ihm.",
+ "germanFontType":3,
+ "spanishText":"¡Todos los niños a bordo!",
+ "spanishFontType":3,
+ "chineseTText":"有小朋友騎在上面",
+ "chineseTFontType":1,
+ "koreanText":"아이가 타고 있어요",
+ "koreanFontType":2,
+ "portugueseText":"Criança a bordo!",
+ "portugueseFontType":2,
+ "russianText":"Осторожно, дети!",
+ "russianFontType":2,
+ "turkishText":"Sahne çocukların!",
+ "turkishFontType":2,
+ "arabicText":"الأطفال على متن المَرْكبة!",
+ "arabicFontType":2,
+ "dutchText":"Kinderen aan boord!",
+ "dutchFontType":2,
+ "chineseSText":"有小朋友骑在上面",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_sailor",
+ "japaneseText":"カモメとともだちになれます",
+ "englishUsText":"You can become friends with a seagull",
+ "englishUsFontType":3,
+ "frenchText":"Tu peux devenir ami avec les mouettes.",
+ "frenchFontType":3,
+ "italianText":"Così farai amicizia con i gabbiani!",
+ "italianFontType":3,
+ "germanText":"Die Möwen sind seine Freunde.",
+ "germanFontType":3,
+ "spanishText":"Te harás amigo de las gaviotas",
+ "spanishFontType":3,
+ "chineseTText":"可以和海鷗當好朋友",
+ "chineseTFontType":1,
+ "koreanText":"갈매기와 친구가 될 수 있어요",
+ "koreanFontType":2,
+ "portugueseText":"Faça amizade com a gaivota",
+ "portugueseFontType":2,
+ "russianText":"Ты можешь подружиться с чайкой",
+ "russianFontType":2,
+ "turkishText":"Martılarla arkadaş olabilirsin",
+ "turkishFontType":2,
+ "arabicText":"يمكنك أن تصبح صديقًا للنورس",
+ "arabicFontType":2,
+ "dutchText":"Je kan vrienden worden met een zeemeeuw",
+ "dutchFontType":2,
+ "chineseSText":"可以和海鸥成为好朋友",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_drill",
+ "japaneseText":"穴をほって突き進む!",
+ "englishUsText":"Drill a hole and burst through!",
+ "englishUsFontType":3,
+ "frenchText":"Perce un trou et fonce dedans !",
+ "frenchFontType":3,
+ "italianText":"Scava cunicoli nel terreno!",
+ "italianFontType":3,
+ "germanText":"Auf, durch das Erdreich!",
+ "germanFontType":3,
+ "spanishText":"Haz un agujero hasta el centro del mundo",
+ "spanishFontType":3,
+ "chineseTText":"鑽洞向前邁進!",
+ "chineseTFontType":1,
+ "koreanText":"땅을 파며 전진!",
+ "koreanFontType":2,
+ "portugueseText":"Cave um buraco e avance!",
+ "portugueseFontType":2,
+ "russianText":"Ямы рой и прорывайся!",
+ "russianFontType":2,
+ "turkishText":"Bir delik kaz ve kaçıp git!",
+ "turkishFontType":2,
+ "arabicText":"احفر حفرة وانفجر عبرها!",
+ "arabicFontType":2,
+ "dutchText":"Boor en breek erdoor!",
+ "dutchFontType":2,
+ "chineseSText":"钻洞向前迈进!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_omen_kitsune",
+ "japaneseText":"お面小僧がかぶってます",
+ "englishUsText":"A masked kid is wearing it",
+ "englishUsFontType":3,
+ "frenchText":"Porté par l'enfant masqué.",
+ "frenchFontType":3,
+ "italianText":"Indossata dal ragazzo mascherato",
+ "italianFontType":3,
+ "germanText":"Der Masken-Bär trägt das.",
+ "germanFontType":3,
+ "spanishText":"La lleva un chico enmascarado",
+ "spanishFontType":3,
+ "chineseTText":"面具小僧戴著的",
+ "chineseTFontType":1,
+ "koreanText":"가면 도령이 쓰고 있어요",
+ "koreanFontType":2,
+ "portugueseText":"Menino com máscara de raposa.",
+ "portugueseFontType":2,
+ "russianText":"Мальчик носит маску",
+ "russianFontType":2,
+ "turkishText":"Maskeli bir çocuk onu takar",
+ "turkishFontType":2,
+ "arabicText":"يرتديه طفل مقنْع",
+ "arabicFontType":2,
+ "dutchText":"Wordt gedragen door een kind",
+ "dutchFontType":2,
+ "chineseSText":"面具小僧戴着的",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_chibidon",
+ "japaneseText":"ちいさいどんちゃんといっしょ",
+ "englishUsText":"With the little DON-chan",
+ "englishUsFontType":3,
+ "frenchText":"Avec un petit DON-chan.",
+ "frenchFontType":3,
+ "italianText":"Un piccolo DON-chan da compagnia!",
+ "italianFontType":3,
+ "germanText":"Kleiner DON-chan auf dem Rücken.",
+ "germanFontType":3,
+ "spanishText":"Juntitos con el pequeño DON-chan",
+ "spanishFontType":3,
+ "chineseTText":"與迷你小咚一起",
+ "chineseTFontType":1,
+ "koreanText":"작은 동이와 함께",
+ "koreanFontType":2,
+ "portugueseText":"Junto com o pequeno DON-chan",
+ "portugueseFontType":2,
+ "russianText":"Вместе с маленькой Дон-тян",
+ "russianFontType":2,
+ "turkishText":"Küçük DON-chan ile birlikte",
+ "turkishFontType":2,
+ "arabicText":"بصحبة دون-تشان الصغير",
+ "arabicFontType":2,
+ "dutchText":"Samen met een kleine DON-chan",
+ "dutchFontType":2,
+ "chineseSText":"与迷你小咚一起",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_great_taiko",
+ "japaneseText":"ゴージャス!ワンダフル!",
+ "englishUsText":"Gorgeous! Wonderful!",
+ "englishUsFontType":3,
+ "frenchText":"Magnifique !",
+ "frenchFontType":3,
+ "italianText":"Quanto lusso!",
+ "italianFontType":3,
+ "germanText":"Prächtig! Wunderbar!",
+ "germanFontType":3,
+ "spanishText":"¡Precioso! ¡Hermoso!",
+ "spanishFontType":3,
+ "chineseTText":"太華麗了!太美妙了!",
+ "chineseTFontType":1,
+ "koreanText":"고져스! 원더풀!",
+ "koreanFontType":2,
+ "portugueseText":"Excelente! Maravilhoso!",
+ "portugueseFontType":2,
+ "russianText":"Прекрасный! Удивительный!",
+ "russianFontType":2,
+ "turkishText":"Muhteşem! Harika!",
+ "turkishFontType":2,
+ "arabicText":"بديعة! رائعة!",
+ "arabicFontType":2,
+ "dutchText":"Prachtig! Schitterend!",
+ "dutchFontType":2,
+ "chineseSText":"太华丽了!太美妙了!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_kabuki",
+ "japaneseText":"日本の伝統芸能",
+ "englishUsText":"A traditional Japanese art",
+ "englishUsFontType":3,
+ "frenchText":"Un art traditionnel japonais.",
+ "frenchFontType":3,
+ "italianText":"Un'arte tradizionale giapponese",
+ "italianFontType":3,
+ "germanText":"Traditionelles japanisches Schauspiel",
+ "germanFontType":3,
+ "spanishText":"¿Conoces este arte tradicional japonés?",
+ "spanishFontType":3,
+ "chineseTText":"日本傳統技藝",
+ "chineseTFontType":1,
+ "koreanText":"일본의 전통예능",
+ "koreanFontType":2,
+ "portugueseText":"Arte tradicional japonesa",
+ "portugueseFontType":2,
+ "russianText":"Традиционное японское искусство",
+ "russianFontType":2,
+ "turkishText":"Geleneksel bir Japon sanatı",
+ "turkishFontType":2,
+ "arabicText":"فن ياباني تقليدي",
+ "arabicFontType":2,
+ "dutchText":"Een traditionele Japanse kunstvorm",
+ "dutchFontType":2,
+ "chineseSText":"日本传统技艺",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_lucky",
+ "japaneseText":"みんなラッキーになります",
+ "englishUsText":"Everyone will have good luck",
+ "englishUsFontType":3,
+ "frenchText":"Portera chance à tout le monde.",
+ "frenchFontType":3,
+ "italianText":"Per regalare a tutti tanta fortuna!",
+ "italianFontType":3,
+ "germanText":"Bringt allen Glück!",
+ "germanFontType":3,
+ "spanishText":"Buena suerte para todos",
+ "spanishFontType":3,
+ "chineseTText":"大家都會變得很好運",
+ "chineseTFontType":1,
+ "koreanText":"모두에게 행운이 찾아와요",
+ "koreanFontType":2,
+ "portugueseText":"Dá sorte a todos",
+ "portugueseFontType":2,
+ "russianText":"Он принесет всем удачу",
+ "russianFontType":2,
+ "turkishText":"Herkes iyi şansa sahip olacak",
+ "turkishFontType":2,
+ "arabicText":"سيحصل الجميع على الحظ الجيد",
+ "arabicFontType":2,
+ "dutchText":"Brengt iedereen geluk",
+ "dutchFontType":2,
+ "chineseSText":"大家都会变得走运",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_kujyaku",
+ "japaneseText":"豪華な羽根で惑わします",
+ "englishUsText":"Attracts his mate with luxurious plumage",
+ "englishUsFontType":3,
+ "frenchText":"Fais du charme avec ces jolies plumes.",
+ "frenchFontType":3,
+ "italianText":"Mette in mostra le sue piume variopinte",
+ "italianFontType":3,
+ "germanText":"Seine Federn sind prächtig.",
+ "germanFontType":3,
+ "spanishText":"Atrae a su pareja con su exótico plumaje",
+ "spanishFontType":3,
+ "chineseTText":"用絢麗的羽毛迷惑人",
+ "chineseTFontType":1,
+ "koreanText":"화려한 날개로 유혹해요",
+ "koreanFontType":2,
+ "portugueseText":"Atrai o parceiro com uma bela plumagem!",
+ "portugueseFontType":2,
+ "russianText":"Привлекает самочек, распушив хвост",
+ "russianFontType":2,
+ "turkishText":"Lüks tüylü elbise ile milleti cezbeder",
+ "turkishFontType":2,
+ "arabicText":"يجتذب رفيقته باستخدام الريش الفاخر",
+ "arabicFontType":2,
+ "dutchText":"Maakt indruk met zijn prachtige veren",
+ "dutchFontType":2,
+ "chineseSText":"用绚丽的羽毛迷惑人",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_mage",
+ "japaneseText":"エド・トラディショナル・ヘアーカット",
+ "englishUsText":"It's a traditional Edo haircut",
+ "englishUsFontType":3,
+ "frenchText":"Coiffure traditionnelle de l'ère Edo.",
+ "frenchFontType":3,
+ "italianText":"Acconciatura tipica del periodo Edo",
+ "italianFontType":3,
+ "germanText":"Traditionelle Edo-Style-Frisur.",
+ "germanFontType":3,
+ "spanishText":"Corte de pelo tradicional japonés",
+ "spanishFontType":3,
+ "chineseTText":"江戶傳統髮型",
+ "chineseTFontType":1,
+ "koreanText":"에도・트래디셔널・헤어컷",
+ "koreanFontType":2,
+ "portugueseText":"Corte de cabelo tradicional de Edo",
+ "portugueseFontType":2,
+ "russianText":"Прическа эпохи Эдо",
+ "russianFontType":2,
+ "turkishText":"Geleneksel bir Edo saç kesimidir",
+ "turkishFontType":2,
+ "arabicText":"إنها حلاقة إيدو تقليدية",
+ "arabicFontType":2,
+ "dutchText":"Traditioneel kapsel uit de Edo-periode",
+ "dutchFontType":2,
+ "chineseSText":"江户传统发型",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_champion",
+ "japaneseText":"腰に巻いとけば最強の証",
+ "englishUsText":"This belt is the sign of a true champion!",
+ "englishUsFontType":3,
+ "frenchText":"Seul un champion porte cette ceinture.",
+ "frenchFontType":3,
+ "italianText":"Indossala come prova della tua forza",
+ "italianFontType":3,
+ "germanText":"Damit wirkst du richtig stark.",
+ "germanFontType":3,
+ "spanishText":"El cinturón que lleva un campeón",
+ "spanishFontType":3,
+ "chineseTText":"綁在腰上就是最強的證明",
+ "chineseTFontType":1,
+ "koreanText":"허리에 두르면 최강자",
+ "koreanFontType":2,
+ "portugueseText":"Esse cinto é o sinal de um campeão de verdade!",
+ "portugueseFontType":2,
+ "russianText":"Этот пояс — знак настоящего чемпиона!",
+ "russianFontType":2,
+ "turkishText":"Bu kemer gerçek bir şampiyonun işareti!",
+ "turkishFontType":2,
+ "arabicText":"هذا الحزام علامة البطل الحقيقي!",
+ "arabicFontType":2,
+ "dutchText":"Dit is het teken van een echte kampioen!",
+ "dutchFontType":2,
+ "chineseSText":"绑在腰上就是最强的证明",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_guardian",
+ "japaneseText":"てっぺきガード",
+ "englishUsText":"Their guard is impregnable",
+ "englishUsFontType":3,
+ "frenchText":"Un garde à la défense impénétrable.",
+ "frenchFontType":3,
+ "italianText":"Una difesa impenetrabile",
+ "italianFontType":3,
+ "germanText":"Rundum geschützt.",
+ "germanFontType":3,
+ "spanishText":"No hay quien atraviese esa defensa",
+ "spanishFontType":3,
+ "chineseTText":"銅牆鐵壁",
+ "chineseTFontType":1,
+ "koreanText":"철벽 방어",
+ "koreanFontType":2,
+ "portugueseText":"Defesa impenetrável",
+ "portugueseFontType":2,
+ "russianText":"Непоколебимый охранник",
+ "russianFontType":2,
+ "turkishText":"Savunmaları adeta aşılamaz",
+ "turkishFontType":2,
+ "arabicText":"حارسهم المنيع",
+ "arabicFontType":2,
+ "dutchText":"IJzerharde verdediging!",
+ "dutchFontType":2,
+ "chineseSText":"铜墙铁壁",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_devil",
+ "japaneseText":"みんなから絶対悪っていわれます",
+ "englishUsText":"Everyone says I'm as evil as they come",
+ "englishUsFontType":3,
+ "frenchText":"Tout le monde dit qu'il est mauvais.",
+ "frenchFontType":3,
+ "italianText":"Ti dà un'aria mefistofelica!",
+ "italianFontType":3,
+ "germanText":"Ich werde von allen gehasst.",
+ "germanFontType":3,
+ "spanishText":"Todos piensan que soy el más malo",
+ "spanishFontType":3,
+ "chineseTText":"大家都說我是純粹的壞蛋",
+ "chineseTFontType":1,
+ "koreanText":"모두가 절대악이라고 일컬어요",
+ "koreanFontType":2,
+ "portugueseText":"Todos dizem que sou malvado",
+ "portugueseFontType":2,
+ "russianText":"Все считают, что я - воплощение зла",
+ "russianFontType":2,
+ "turkishText":"Herkes şeytan olduğumu söylüyor",
+ "turkishFontType":2,
+ "arabicText":"إن أردت أن تكون شريرًا",
+ "arabicFontType":2,
+ "dutchText":"Ik ben door en door slecht",
+ "dutchFontType":2,
+ "chineseSText":"大家都说我是纯粹的坏蛋",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_himawari",
+ "japaneseText":"夏のお花",
+ "englishUsText":"Summer flower",
+ "englishUsFontType":3,
+ "frenchText":"Une fleur d'été.",
+ "frenchFontType":3,
+ "italianText":"Bellissimo fiore estivo",
+ "italianFontType":3,
+ "germanText":"Eine Sommerblume",
+ "germanFontType":3,
+ "spanishText":"Flor de verano",
+ "spanishFontType":3,
+ "chineseTText":"夏天的花",
+ "chineseTFontType":1,
+ "koreanText":"여름을 대표하는 꽃",
+ "koreanFontType":2,
+ "portugueseText":"Flor do Verão",
+ "portugueseFontType":2,
+ "russianText":"Летний цветок",
+ "russianFontType":2,
+ "turkishText":"Yaz çiçeği",
+ "turkishFontType":2,
+ "arabicText":"زهرة الصيف",
+ "arabicFontType":2,
+ "dutchText":"Zomerbloem",
+ "dutchFontType":2,
+ "chineseSText":"夏天的花",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_morinonakama",
+ "japaneseText":"みんななかよし",
+ "englishUsText":"We're all friends",
+ "englishUsFontType":3,
+ "frenchText":"Tout le monde est ami.",
+ "frenchFontType":3,
+ "italianText":"Simpatici animaletti dei boschi!",
+ "italianFontType":3,
+ "germanText":"Alles Freunde.",
+ "germanFontType":3,
+ "spanishText":"Aquí todos somos buenos amigos",
+ "spanishFontType":3,
+ "chineseTText":"大家都是好朋友",
+ "chineseTFontType":1,
+ "koreanText":"모두 사이가 좋아요",
+ "koreanFontType":2,
+ "portugueseText":"Somos todos amigos",
+ "portugueseFontType":2,
+ "russianText":"Мы все друзья",
+ "russianFontType":2,
+ "turkishText":"Hepimiz arkadaşız",
+ "turkishFontType":2,
+ "arabicText":"كلنا أصدقاء",
+ "arabicFontType":2,
+ "dutchText":"We zijn allemaal vrienden",
+ "dutchFontType":2,
+ "chineseSText":"大家都是好朋友",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_lion",
+ "japaneseText":"百獣の王は我が子を千尋の谷に",
+ "englishUsText":"He's very strict with his cubs",
+ "englishUsFontType":3,
+ "frenchText":"Le roi de la savane et des animaux.",
+ "frenchFontType":3,
+ "italianText":"Una criniera da re della giungla",
+ "italianFontType":3,
+ "germanText":"Der König der Tiere!",
+ "germanFontType":3,
+ "spanishText":"No le pasa una a sus cachorros",
+ "spanishFontType":3,
+ "chineseTText":"萬獸之王會將孩子推下山谷",
+ "chineseTFontType":1,
+ "koreanText":"백수의 왕은 자기 자식을 벼랑으로 내몬다",
+ "koreanFontType":2,
+ "portugueseText":"Ele cuida muito de seus filhotes",
+ "portugueseFontType":2,
+ "russianText":"Он строг к своим детенышам",
+ "russianFontType":2,
+ "turkishText":"Yavrularına karşı çok katı",
+ "turkishFontType":2,
+ "arabicText":"حازم للغاية مع أشباله",
+ "arabicFontType":2,
+ "dutchText":"Hij is erg streng voor zijn welpjes",
+ "dutchFontType":2,
+ "chineseSText":"万兽之王会将孩子推下山谷",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_ikemen",
+ "japaneseText":"声もイケボなので大丈夫です",
+ "englishUsText":"Don't worry, his voice is also sexy",
+ "englishUsFontType":3,
+ "frenchText":"Tout baigne, ta voix est cool aussi.",
+ "frenchFontType":3,
+ "italianText":"Per trasformarti in un bel ragazzo!",
+ "italianFontType":3,
+ "germanText":"Seine Stimme ist auch cool, keine Sorge!",
+ "germanFontType":3,
+ "spanishText":"Y su vozarrón también es despampanante",
+ "spanishFontType":3,
+ "chineseTText":"不用擔心,聲音也富有磁性",
+ "chineseTFontType":1,
+ "koreanText":"목소리도 멋지니 안심하세요",
+ "koreanFontType":2,
+ "portugueseText":"Não se preocupe, a voz dele também é sexy",
+ "portugueseFontType":2,
+ "russianText":"Не волнуйся, голос у него тоже ничего",
+ "russianFontType":2,
+ "turkishText":"Endişelenme, sesi ayrıca seksi de",
+ "turkishFontType":2,
+ "arabicText":"لا تقلق، صوته جذاب جدًا أيضًا",
+ "arabicFontType":2,
+ "dutchText":"Geen zorgen, zijn stem is ook sexy",
+ "dutchFontType":2,
+ "chineseSText":"不用担心,声音也富有磁性",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_bowling",
+ "japaneseText":"ゴロゴロゴロ、ストライク!",
+ "englishUsText":"Roll, roll, roll...strike!",
+ "englishUsFontType":3,
+ "frenchText":"BAM ! Strike !",
+ "frenchFontType":3,
+ "italianText":"Rotola, rotola... strike!",
+ "italianFontType":3,
+ "germanText":"Alle neune!",
+ "germanFontType":3,
+ "spanishText":"Venga, venga... ¡Pleno!",
+ "spanishFontType":3,
+ "chineseTText":"咕嚕咕嚕咕嚕,全倒!",
+ "chineseTFontType":1,
+ "koreanText":"데굴데굴데굴, 스트라이크!",
+ "koreanFontType":2,
+ "portugueseText":"Roda, roda... Strike!",
+ "portugueseFontType":2,
+ "russianText":"Катится-катится... страйк!",
+ "russianFontType":2,
+ "turkishText":"İlerle, ilerle, ilerle...tam isabet!",
+ "turkishFontType":2,
+ "arabicText":"دحرجة، دحرجة.. ضربة ممتازة!",
+ "arabicFontType":2,
+ "dutchText":"Strike!",
+ "dutchFontType":2,
+ "chineseSText":"咕噜咕噜咕噜,全倒!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_camera",
+ "japaneseText":"レンズの向こうから見ています",
+ "englishUsText":"Looking through the lens",
+ "englishUsFontType":3,
+ "frenchText":"J'observe de l'autre côté de l'objectif.",
+ "frenchFontType":3,
+ "italianText":"Il mondo visto attraverso una lente",
+ "italianFontType":3,
+ "germanText":"Das muss ich unbedingt fotografieren!",
+ "germanFontType":3,
+ "spanishText":"Míralo a través de la lente",
+ "spanishFontType":3,
+ "chineseTText":"從鏡頭的另一邊看世界",
+ "chineseTFontType":1,
+ "koreanText":"렌즈 너머에서 보고 있어요",
+ "koreanFontType":2,
+ "portugueseText":"Vendo através da lente",
+ "portugueseFontType":2,
+ "russianText":"Взгляд сквозь объектив",
+ "russianFontType":2,
+ "turkishText":"Lensten bakar",
+ "turkishFontType":2,
+ "arabicText":"النظر من خلال العدسة",
+ "arabicFontType":2,
+ "dutchText":"Door de lens kijken",
+ "dutchFontType":2,
+ "chineseSText":"从镜头的另一边看世界",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_student_girl",
+ "japaneseText":"たのしい学校生活",
+ "englishUsText":"Enjoying school life",
+ "englishUsFontType":3,
+ "frenchText":"La vie amusante d'étudiante.",
+ "frenchFontType":3,
+ "italianText":"Che bella la vita scolastica!",
+ "italianFontType":3,
+ "germanText":"Schule macht Spaß!",
+ "germanFontType":3,
+ "spanishText":"Disfruta de la vida en el colegio",
+ "spanishFontType":3,
+ "chineseTText":"快樂的校園生活",
+ "chineseTFontType":1,
+ "koreanText":"즐거운 학교생활",
+ "koreanFontType":2,
+ "portugueseText":"Aproveitando a vida escolar",
+ "portugueseFontType":2,
+ "russianText":"Любит школу",
+ "russianFontType":2,
+ "turkishText":"Okul hayatının tadını çıkartır",
+ "turkishFontType":2,
+ "arabicText":"استمتعي بحياة المدرسة",
+ "arabicFontType":2,
+ "dutchText":"Geniet van het studentenleven",
+ "dutchFontType":2,
+ "chineseSText":"快乐的校园生活",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_student_boy",
+ "japaneseText":"たのしい学校生活",
+ "englishUsText":"Enjoying school life",
+ "englishUsFontType":3,
+ "frenchText":"La vie amusante d'étudiant.",
+ "frenchFontType":3,
+ "italianText":"Che bella la vita scolastica!",
+ "italianFontType":3,
+ "germanText":"Schule macht Spaß!",
+ "germanFontType":3,
+ "spanishText":"Disfruta de la vida en el colegio",
+ "spanishFontType":3,
+ "chineseTText":"快樂的校園生活",
+ "chineseTFontType":1,
+ "koreanText":"즐거운 학교생활",
+ "koreanFontType":2,
+ "portugueseText":"Aproveitando a vida escolar",
+ "portugueseFontType":2,
+ "russianText":"Любит школу",
+ "russianFontType":2,
+ "turkishText":"Okul hayatının tadını çıkartır",
+ "turkishFontType":2,
+ "arabicText":"استمتع بحياة المدرسة",
+ "arabicFontType":2,
+ "dutchText":"Geniet van het studentenleven",
+ "dutchFontType":2,
+ "chineseSText":"快乐的校园生活",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_omatsuri",
+ "japaneseText":"ハチマキハッピはお祭りの正装",
+ "englishUsText":"Got your headband and happi coat?!",
+ "englishUsFontType":3,
+ "frenchText":"La tenue officielle des festivals.",
+ "frenchFontType":3,
+ "italianText":"Fascia e happi: pronti per il festival!",
+ "italianFontType":3,
+ "germanText":"Festkleidung mit Festjacke und Kopfband",
+ "germanFontType":3,
+ "spanishText":"¿Ya te has puesto tu cinta y abriguito?",
+ "spanishFontType":3,
+ "chineseTText":"頭巾與法被是祭典的正式服裝",
+ "chineseTFontType":1,
+ "koreanText":"머리띠와 핫피는 축제의 상징",
+ "koreanFontType":2,
+ "portugueseText":"Trouxe sua bandana e casaco happi?!",
+ "portugueseFontType":2,
+ "russianText":"Вооружись повязкой и халатом хаппи!",
+ "russianFontType":2,
+ "turkishText":"Kafa bandını ve happi ceketini aldın mı?!",
+ "turkishFontType":2,
+ "arabicText":"هل أحضرت معطف الهابي خاصتك؟!",
+ "arabicFontType":2,
+ "dutchText":"Heb je je hoofdband en Happi-jasje bij?",
+ "dutchFontType":2,
+ "chineseSText":"头巾与法被是祭典的正式服装",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_kadomatsu",
+ "japaneseText":"お正月のお飾り",
+ "englishUsText":"New Year's decorations",
+ "englishUsFontType":3,
+ "frenchText":"Décoration du Nouvel An.",
+ "frenchFontType":3,
+ "italianText":"Addobbo per festeggiare il nuovo anno",
+ "italianFontType":3,
+ "germanText":"Guten Rutsch!",
+ "germanFontType":3,
+ "spanishText":"Decoración de Año Nuevo",
+ "spanishFontType":3,
+ "chineseTText":"新年的裝飾品",
+ "chineseTFontType":1,
+ "koreanText":"설날 장식",
+ "koreanFontType":2,
+ "portugueseText":"Enfeites de Ano Novo",
+ "portugueseFontType":2,
+ "russianText":"Новогодние украшения",
+ "russianFontType":2,
+ "turkishText":"Yeni Yıl süsleri",
+ "turkishFontType":2,
+ "arabicText":"ديكورات السنة الجديدة",
+ "arabicFontType":2,
+ "dutchText":"Nieuwjaarsversieringen",
+ "dutchFontType":2,
+ "chineseSText":"新年的装饰品",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_kingyo",
+ "japaneseText":"金魚のぼうしです",
+ "englishUsText":"It's a goldfish hat",
+ "englishUsFontType":3,
+ "frenchText":"Un chapeau en forme de poisson rouge.",
+ "frenchFontType":3,
+ "italianText":"Un cappello a forma di pesce rosso",
+ "italianFontType":3,
+ "germanText":"Mütze im Goldfisch-Design",
+ "germanFontType":3,
+ "spanishText":"Un gorro de pez dorado",
+ "spanishFontType":3,
+ "chineseTText":"金魚帽子",
+ "chineseTFontType":1,
+ "koreanText":"금붕어 등불이에요",
+ "koreanFontType":2,
+ "portugueseText":"Chapéu de peixe dourado",
+ "portugueseFontType":2,
+ "russianText":"Шапка золотой рыбки",
+ "russianFontType":2,
+ "turkishText":"Bu bir japon balığı şapkası",
+ "turkishFontType":2,
+ "arabicText":"إنها قبعة السمكة الذهبية",
+ "arabicFontType":2,
+ "dutchText":"Een hoed in de vorm van een goudvis",
+ "dutchFontType":2,
+ "chineseSText":"金鱼帽子",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_ohinasama",
+ "japaneseText":"桃の節句",
+ "englishUsText":"These are dolls to celebrate Girl's Day",
+ "englishUsFontType":3,
+ "frenchText":"Pour la fête des filles.",
+ "frenchFontType":3,
+ "italianText":"Bambole per la giornata delle bambine",
+ "italianFontType":3,
+ "germanText":"Mädchenfest im Frühjahr",
+ "germanFontType":3,
+ "spanishText":"Celebra el festival de las Muñecas",
+ "spanishFontType":3,
+ "chineseTText":"桃花節",
+ "chineseTFontType":1,
+ "koreanText":"여자아이의 날",
+ "koreanFontType":2,
+ "portugueseText":"Essas Bonecas são para celebrar o Dia da Menina",
+ "portugueseFontType":2,
+ "russianText":"Куклы в честь праздника девочек",
+ "russianFontType":2,
+ "turkishText":"Kızların gününü kutlamak için bebekler",
+ "turkishFontType":2,
+ "arabicText":"هذه الدمى من أجل احتفال يوم البنت",
+ "arabicFontType":2,
+ "dutchText":"Deze poppen zijn er voor Meisjesdag",
+ "dutchFontType":2,
+ "chineseSText":"桃花节",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_kanabo",
+ "japaneseText":"鬼に持たせると最強",
+ "englishUsText":"Any ogre who wields it is indestructible",
+ "englishUsFontType":3,
+ "frenchText":"Confère aux démons la puissance ultime.",
+ "frenchFontType":3,
+ "italianText":"Un'arma usata dagli oni",
+ "italianFontType":3,
+ "germanText":"Macht Dämonen extrem stark.",
+ "germanFontType":3,
+ "spanishText":"Con esto, un ogro será indestructible",
+ "spanishFontType":3,
+ "chineseTText":"給鬼拿著便是最強的",
+ "chineseTFontType":1,
+ "koreanText":"도깨비가 들면 최강",
+ "koreanFontType":2,
+ "portugueseText":"Qualquer ogro que o possua é indestrutível",
+ "portugueseFontType":2,
+ "russianText":"С ней любой огр непобедим",
+ "russianFontType":2,
+ "turkishText":"Onu kullanan öcüler yok edilemezdir",
+ "turkishFontType":2,
+ "arabicText":"أي غول يستطيع صنعها فهو لا يقهر",
+ "arabicFontType":2,
+ "dutchText":"Hiermee is elke oger onoverwinnelijk",
+ "dutchFontType":2,
+ "chineseSText":"给鬼拿着便是最强的",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_compus",
+ "japaneseText":"北がどっちかわかります",
+ "englishUsText":"I know which way north is",
+ "englishUsFontType":3,
+ "frenchText":"Je sais où se trouve le nord.",
+ "frenchFontType":3,
+ "italianText":"Per sapere sempre dov'è il nord",
+ "italianFontType":3,
+ "germanText":"Wo geht's nach Norden?",
+ "germanFontType":3,
+ "spanishText":"Así sí encontrarás el norte",
+ "spanishFontType":3,
+ "chineseTText":"可以知道哪邊是北方",
+ "chineseTFontType":1,
+ "koreanText":"어디가 북쪽인지 알 수 있어요",
+ "koreanFontType":2,
+ "portugueseText":"Eu sei onde é que fica o norte",
+ "portugueseFontType":2,
+ "russianText":"Я знаю, где север",
+ "russianFontType":2,
+ "turkishText":"Kuzey hangi taraf bilir",
+ "turkishFontType":2,
+ "arabicText":"أعرف أين هو الشمال",
+ "arabicFontType":2,
+ "dutchText":"Ik weet waar het noorden is",
+ "dutchFontType":2,
+ "chineseSText":"可以知道哪边是北方",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_santa",
+ "japaneseText":"メリークリスマス!",
+ "englishUsText":"Merry Christmas!",
+ "englishUsFontType":3,
+ "frenchText":"Joyeux Noël !",
+ "frenchFontType":3,
+ "italianText":"Buon Natale!",
+ "italianFontType":3,
+ "germanText":"Frohe Weihnachten!",
+ "germanFontType":3,
+ "spanishText":"¡Feliz Navidad!",
+ "spanishFontType":3,
+ "chineseTText":"聖誕快樂!",
+ "chineseTFontType":1,
+ "koreanText":"메리 크리스마스!",
+ "koreanFontType":2,
+ "portugueseText":"Feliz Natal!",
+ "portugueseFontType":2,
+ "russianText":"С Рождеством!",
+ "russianFontType":2,
+ "turkishText":"Mutlu Noeller!",
+ "turkishFontType":2,
+ "arabicText":"كريسماس سعيد!",
+ "arabicFontType":2,
+ "dutchText":"Vrolijk Kerstfeest!",
+ "dutchFontType":2,
+ "chineseSText":"圣诞快乐!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_mugiwara",
+ "japaneseText":"夏!かき氷!むぎわら帽子!昆虫!",
+ "englishUsText":"Summer! Shaved ice! Straw hats! Bugs!",
+ "englishUsFontType":3,
+ "frenchText":"Qui dit été dit chapeau, glace et mer !",
+ "frenchFontType":3,
+ "italianText":"Ah, l'estate! Sole, mare, caldo!",
+ "italianFontType":3,
+ "germanText":"Sommer! Sonne! Strand! Meer! ",
+ "germanFontType":3,
+ "spanishText":"¡Verano! ¡Helado! ¡Playa! ¡Bichos!",
+ "spanishFontType":3,
+ "chineseTText":"夏天!刨冰!草帽!昆蟲!",
+ "chineseTFontType":1,
+ "koreanText":"여름! 빙수! 밀짚모자! 곤충!",
+ "koreanFontType":2,
+ "portugueseText":"Verão! Raspadinha! Chapéu de palha! Insetos!",
+ "portugueseFontType":2,
+ "russianText":"Лето! Мороженое! Соломенные шляпы! Жуки!",
+ "russianFontType":2,
+ "turkishText":"Yaz! Kar helvası! Hasır şapka! Böcekler!",
+ "turkishFontType":2,
+ "arabicText":"قبعات القش! الثلج المجروش! الحشرات!",
+ "arabicFontType":2,
+ "dutchText":"Zomer! IJs! Strohoeden! Insecten!",
+ "dutchFontType":2,
+ "chineseSText":"夏天!刨冰!草帽!昆虫!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_tennis",
+ "japaneseText":"スマッシュ!",
+ "englishUsText":"Smash!",
+ "englishUsFontType":3,
+ "frenchText":"Smash !",
+ "frenchFontType":3,
+ "italianText":"Pronti per il match!",
+ "italianFontType":3,
+ "germanText":"Schmetterball!",
+ "germanFontType":3,
+ "spanishText":"¡La pista es mía!",
+ "spanishFontType":3,
+ "chineseTText":"殺球!",
+ "chineseTFontType":1,
+ "koreanText":"스매시!",
+ "koreanFontType":2,
+ "portugueseText":"Smash!",
+ "portugueseFontType":2,
+ "russianText":"Удар!",
+ "russianFontType":2,
+ "turkishText":"Bozguna uğrat!",
+ "turkishFontType":2,
+ "arabicText":"اضرب الكرة!",
+ "arabicFontType":2,
+ "dutchText":"Smash!",
+ "dutchFontType":2,
+ "chineseSText":"杀球!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_painter",
+ "japaneseText":"絵の具のにおいが好きです",
+ "englishUsText":"I love the smell of paint",
+ "englishUsFontType":3,
+ "frenchText":"J'aime l'odeur de la peinture.",
+ "frenchFontType":3,
+ "italianText":"Che buon odore di colori a olio!",
+ "italianFontType":3,
+ "germanText":"Ah, diese prachtvollen Farben …",
+ "germanFontType":3,
+ "spanishText":"Me encanta el olor de la pintura",
+ "spanishFontType":3,
+ "chineseTText":"喜歡顏料的味道",
+ "chineseTFontType":1,
+ "koreanText":"물감 냄새를 좋아해요",
+ "koreanFontType":2,
+ "portugueseText":"Adoro o cheiro de tintas",
+ "portugueseFontType":2,
+ "russianText":"Обожаю запах краски",
+ "russianFontType":2,
+ "turkishText":"Boya kokusunu sever",
+ "turkishFontType":2,
+ "arabicText":"أحب رائحة الألوان",
+ "arabicFontType":2,
+ "dutchText":"Ik hou van verflucht",
+ "dutchFontType":2,
+ "chineseSText":"喜欢颜料的味道",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_soccer",
+ "japaneseText":"ゴオオーール!",
+ "englishUsText":"Gooooooal!!!",
+ "englishUsFontType":3,
+ "frenchText":"Buuuuuuuuut !",
+ "frenchFontType":3,
+ "italianText":"Goool!!!",
+ "italianFontType":3,
+ "germanText":"Toooooor!",
+ "germanFontType":3,
+ "spanishText":"¡Goooolazo por la escuadra!",
+ "spanishFontType":3,
+ "chineseTText":"進~~~~球!",
+ "chineseTFontType":1,
+ "koreanText":"골~~인!",
+ "koreanFontType":2,
+ "portugueseText":"Gooool!",
+ "portugueseFontType":2,
+ "russianText":"Го-о-ол!",
+ "russianFontType":2,
+ "turkishText":"Goooool!!!",
+ "turkishFontType":2,
+ "arabicText":"هدف!!!",
+ "arabicFontType":2,
+ "dutchText":"Gooooooal!",
+ "dutchFontType":2,
+ "chineseSText":"进~~~~球!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_black_taiko",
+ "japaneseText":"黒くてツヤツヤです",
+ "englishUsText":"It's black and shiny",
+ "englishUsFontType":3,
+ "frenchText":"Noir et brillant.",
+ "frenchFontType":3,
+ "italianText":"Così tirato a lucido è bellissimo!",
+ "italianFontType":3,
+ "germanText":"Schwarz und glänzend.",
+ "germanFontType":3,
+ "spanishText":"Un tambor negro y brillante",
+ "spanishFontType":3,
+ "chineseTText":"黑得發光",
+ "chineseTFontType":1,
+ "koreanText":"검고 윤기 나요",
+ "koreanFontType":2,
+ "portugueseText":"É preto e brilhante",
+ "portugueseFontType":2,
+ "russianText":"Черный и блестящий",
+ "russianFontType":2,
+ "turkishText":"Bu siyah ve parlak",
+ "turkishFontType":2,
+ "arabicText":"إنها سوداء ولامعة",
+ "arabicFontType":2,
+ "dutchText":"Het is glanzend zwart",
+ "dutchFontType":2,
+ "chineseSText":"黑得发光",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_earth",
+ "japaneseText":"ここです",
+ "englishUsText":"Home Sweet Home",
+ "englishUsFontType":3,
+ "frenchText":"On est là.",
+ "frenchFontType":3,
+ "italianText":"Ci siamo sopra in questo momento!",
+ "italianFontType":3,
+ "germanText":"Hier sind wir.",
+ "germanFontType":3,
+ "spanishText":"Hogar, dulce hogar",
+ "spanishFontType":3,
+ "chineseTText":"就是這裡",
+ "chineseTFontType":1,
+ "koreanText":"바로 여기예요",
+ "koreanFontType":2,
+ "portugueseText":"Lar doce lar",
+ "portugueseFontType":2,
+ "russianText":"Дом, милый дом",
+ "russianFontType":2,
+ "turkishText":"Evim Evim Güzel Evim",
+ "turkishFontType":2,
+ "arabicText":"منزلنا السعيد",
+ "arabicFontType":2,
+ "dutchText":"Oost West, thuis best",
+ "dutchFontType":2,
+ "chineseSText":"就是这里",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_takoyaki",
+ "japaneseText":"外はカリカリ中はトロトロ",
+ "englishUsText":"Crispy on t'outside, melty on t'inside!",
+ "englishUsFontType":3,
+ "frenchText":"Croustillant dehors et fondant dedans.",
+ "frenchFontType":3,
+ "italianText":"Croccante fuori, cremoso dentro!",
+ "italianFontType":3,
+ "germanText":"Außen knusprig, innen weich.",
+ "germanFontType":3,
+ "spanishText":"Crujiente por fuera, cremoso por dentro",
+ "spanishFontType":3,
+ "chineseTText":"外酥內軟",
+ "chineseTFontType":1,
+ "koreanText":"겉은 바삭 속은 촉촉",
+ "koreanFontType":2,
+ "portugueseText":"Crocante por fora, cremoso por dentro",
+ "portugueseFontType":2,
+ "russianText":"Хрустящие снаружи, мягкие внутри!",
+ "russianFontType":2,
+ "turkishText":"Dışı çıtır çıtır, içi eriyip gidiyor!",
+ "turkishFontType":2,
+ "arabicText":"مقرمشة من الخارج، طرية من الداخل!",
+ "arabicFontType":2,
+ "dutchText":"Krokant van buiten, zacht van binnen",
+ "dutchFontType":2,
+ "chineseSText":"外酥内软",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_moon",
+ "japaneseText":"うさぎが住んでることになっています",
+ "englishUsText":"According to legend, rabbits live there",
+ "englishUsFontType":3,
+ "frenchText":"La légende dit qu'un lapin y vit.",
+ "frenchFontType":3,
+ "italianText":"Si dice che sia abitata dai conigli",
+ "italianFontType":3,
+ "germanText":"Laut Sage lebt dort ein Hase.",
+ "germanFontType":3,
+ "spanishText":"La leyenda dice que allí hay conejos",
+ "spanishFontType":3,
+ "chineseTText":"傳說是兔子住的地方",
+ "chineseTFontType":1,
+ "koreanText":"토끼가 살고 있다고 해요",
+ "koreanFontType":2,
+ "portugueseText":"Diz a lenda que os coelhos vivem aqui",
+ "portugueseFontType":2,
+ "russianText":"Говорят, там живут кролики",
+ "russianFontType":2,
+ "turkishText":"Efsaneye göre, orada tavşanlar yaşar",
+ "turkishFontType":2,
+ "arabicText":"وفقًا للأسطورة فإن الأرانب تعيش هناك.",
+ "arabicFontType":2,
+ "dutchText":"Er schijnen konijnen te wonen",
+ "dutchFontType":2,
+ "chineseSText":"传说是兔子住的地方",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_fall",
+ "japaneseText":"どんぐりを集めたりするやつらです",
+ "englishUsText":"They collect acorns and such",
+ "englishUsFontType":3,
+ "frenchText":"Ils collectent des glands.",
+ "frenchFontType":3,
+ "italianText":"Raccolgono ghiande e tanto altro",
+ "italianFontType":3,
+ "germanText":"Laub und Nüsse, wohin man auch sieht.",
+ "germanFontType":3,
+ "spanishText":"¡A recoger bellotas se ha dicho!",
+ "spanishFontType":3,
+ "chineseTText":"一群會蒐集橡實的傢伙",
+ "chineseTFontType":1,
+ "koreanText":"도토리를 모으는 녀석들입니다",
+ "koreanFontType":2,
+ "portugueseText":"Eles juntam nozes e coisas assim",
+ "portugueseFontType":2,
+ "russianText":"Они собирают желуди",
+ "russianFontType":2,
+ "turkishText":"Meşe palamudu gibi şeyleri toplarlar",
+ "turkishFontType":2,
+ "arabicText":"إنهم يجمعون الجوز وما شابه",
+ "arabicFontType":2,
+ "dutchText":"Ze zijn op zoek naar eikeltjes",
+ "dutchFontType":2,
+ "chineseSText":"一群会搜集橡实的家伙",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_octopus",
+ "japaneseText":"タウリンが豊富です",
+ "englishUsText":"Rich in taurine",
+ "englishUsFontType":3,
+ "frenchText":"Riche en taurine.",
+ "frenchFontType":3,
+ "italianText":"Ha braccia in abbondanza!",
+ "italianFontType":3,
+ "germanText":"Taurinreich.",
+ "germanFontType":3,
+ "spanishText":"Rico en taurina",
+ "spanishFontType":3,
+ "chineseTText":"富含牛磺酸",
+ "chineseTFontType":1,
+ "koreanText":"타우린이 풍부합니다",
+ "koreanFontType":2,
+ "portugueseText":"Rico em taurina",
+ "portugueseFontType":2,
+ "russianText":"Богатый таурином",
+ "russianFontType":2,
+ "turkishText":"Boğa burcu olanlar zengin",
+ "turkishFontType":2,
+ "arabicText":"صاحب الأزرع",
+ "arabicFontType":2,
+ "dutchText":"Bevat veel taurine",
+ "dutchFontType":2,
+ "chineseSText":"富含牛磺酸",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_hatake",
+ "japaneseText":"たがやして収穫して",
+ "englishUsText":"Plowing and harvesting",
+ "englishUsFontType":3,
+ "frenchText":"Moissonner et récolter.",
+ "frenchFontType":3,
+ "italianText":"Andiamo a zappare la terra!",
+ "italianFontType":3,
+ "germanText":"Ackern, säen und ernten.",
+ "germanFontType":3,
+ "spanishText":"Arando y cosechando todo el año",
+ "spanishFontType":3,
+ "chineseTText":"一分耕耘一分收穫",
+ "chineseTFontType":1,
+ "koreanText":"땅을 갈고 수확합니다",
+ "koreanFontType":2,
+ "portugueseText":"Cultivar e colher",
+ "portugueseFontType":2,
+ "russianText":"Пашем, сеем, жнем",
+ "russianFontType":2,
+ "turkishText":"Kazıma ve toplama",
+ "turkishFontType":2,
+ "arabicText":"الحرث والحصاد",
+ "arabicFontType":2,
+ "dutchText":"Tijd voor de oogst!",
+ "dutchFontType":2,
+ "chineseSText":"一分耕耘一分收获",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_icarus",
+ "japaneseText":"太陽を目指して飛び立って…",
+ "englishUsText":"Flying towards the sun...",
+ "englishUsFontType":3,
+ "frenchText":"Envole-toi vers le soleil...",
+ "frenchFontType":3,
+ "italianText":"Non ti avvicinare troppo al sole!",
+ "italianFontType":3,
+ "germanText":"Da will jemand hoch hinaus ...",
+ "germanFontType":3,
+ "spanishText":"Si vuelas hacia el sol...",
+ "spanishFontType":3,
+ "chineseTText":"朝著太陽起飛……",
+ "chineseTFontType":1,
+ "koreanText":"태양을 향해 날아가다…",
+ "koreanFontType":2,
+ "portugueseText":"Voar seguindo o sol...",
+ "portugueseFontType":2,
+ "russianText":"Летит навстречу солнцу",
+ "russianFontType":2,
+ "turkishText":"Güneşe doğru uçuyorum...",
+ "turkishFontType":2,
+ "arabicText":"يطير باتجاه الشمس...",
+ "arabicFontType":2,
+ "dutchText":"Vliegt naar de zon...",
+ "dutchFontType":2,
+ "chineseSText":"朝着太阳起飞……",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_wood",
+ "japaneseText":"この木なんの木?",
+ "englishUsText":"What kind of tree is this?",
+ "englishUsFontType":3,
+ "frenchText":"Qu'est-ce que c'est comme arbre ?",
+ "frenchFontType":3,
+ "italianText":"Che albero è questo?",
+ "italianFontType":3,
+ "germanText":"Was ist das für ein Baum?",
+ "germanFontType":3,
+ "spanishText":"¿Qué tipo de árbol es este?",
+ "spanishFontType":3,
+ "chineseTText":"這棵樹是什麼樹?",
+ "chineseTFontType":1,
+ "koreanText":"이 나무는 무슨 나무?",
+ "koreanFontType":2,
+ "portugueseText":"Que tipo de árvore é essa?",
+ "portugueseFontType":2,
+ "russianText":"Что это за дерево?",
+ "russianFontType":2,
+ "turkishText":"Bu ne tür bir ağaç?",
+ "turkishFontType":2,
+ "arabicText":"ما نوع هذه الشجرة؟",
+ "arabicFontType":2,
+ "dutchText":"Wat is dit voor boom?",
+ "dutchFontType":2,
+ "chineseSText":"这棵树是什么树?",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_wild",
+ "japaneseText":"野趣あふれる風貌",
+ "englishUsText":"Looks wild and free",
+ "englishUsFontType":3,
+ "frenchText":"Pour une allure sauvage.",
+ "frenchFontType":3,
+ "italianText":"Sembra un vero selvaggio",
+ "italianFontType":3,
+ "germanText":"Ganz schön wild ... ",
+ "germanFontType":3,
+ "spanishText":"Parece un salvaje, pero muy libre",
+ "spanishFontType":3,
+ "chineseTText":"充滿野性的風貌",
+ "chineseTFontType":1,
+ "koreanText":"야성미 넘치는 외모",
+ "koreanFontType":2,
+ "portugueseText":"Aparência rústica e livre",
+ "portugueseFontType":2,
+ "russianText":"Дикий и свободный",
+ "russianFontType":2,
+ "turkishText":"Yabani görünüyor",
+ "turkishFontType":2,
+ "arabicText":"يبدو برّيًّا",
+ "arabicFontType":2,
+ "dutchText":"Ziet er wild en vrij uit",
+ "dutchFontType":2,
+ "chineseSText":"充满野性的风貌",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_butterfly",
+ "japaneseText":"日陰と日向の境界を飛びます(豆ちしき)",
+ "englishUsText":"They flitter here and there",
+ "englishUsFontType":3,
+ "frenchText":"Il vole çà et là.",
+ "frenchFontType":3,
+ "italianText":"Svolazza qua e là tra mille colori!",
+ "italianFontType":3,
+ "germanText":"Seine bunten Flügel sind so schön …",
+ "germanFontType":3,
+ "spanishText":"Revolotean de aquí a allá",
+ "spanishFontType":3,
+ "chineseTText":"飛行在陰影與日光的交界處(小知識)",
+ "chineseTFontType":1,
+ "koreanText":"그늘과 양지를 날아다녀요(토막 상식)",
+ "koreanFontType":2,
+ "portugueseText":"Movendo-se para todos os lados.",
+ "portugueseFontType":2,
+ "russianText":"Из тени в свет перелетая",
+ "russianFontType":2,
+ "turkishText":"Çırpınırlar",
+ "turkishFontType":2,
+ "arabicText":"يطيرون هنا وهناك",
+ "arabicFontType":2,
+ "dutchText":"Ze fladderen hier en daar rond",
+ "dutchFontType":2,
+ "chineseSText":"飞行在阴影与日光的交界处(小知识)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_tyrannosaurus",
+ "japaneseText":"おれ地上最強って言われてたしー",
+ "englishUsText":"They say I was the king!",
+ "englishUsFontType":3,
+ "frenchText":"J'étais le plus fort, paraît-il.",
+ "frenchFontType":3,
+ "italianText":"Dicono che io sia il dinosauro più forte",
+ "italianFontType":3,
+ "germanText":"Einst galt ich mal als der Stärkste.",
+ "germanFontType":3,
+ "spanishText":"¡Dicen que yo era el rey!",
+ "spanishFontType":3,
+ "chineseTText":"人家說我是地表最強生物~",
+ "chineseTFontType":1,
+ "koreanText":"나 지상에서 최강이라 불렸었는데~",
+ "koreanFontType":2,
+ "portugueseText":"Dizem que eu era o rei!",
+ "portugueseFontType":2,
+ "russianText":"Говорят, когда-то я был королем!",
+ "russianFontType":2,
+ "turkishText":"En güçlü olduğumu görürler",
+ "turkishFontType":2,
+ "arabicText":"يقولون إنني كنت الملك!",
+ "arabicFontType":2,
+ "dutchText":"Men zegt dat ik koning was!",
+ "dutchFontType":2,
+ "chineseSText":"人家说我是地表最强生物~",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_fossil",
+ "japaneseText":"骨になっちゃったしー",
+ "englishUsText":"Now I'm just bones",
+ "englishUsFontType":3,
+ "frenchText":"C'est devenu des os.",
+ "frenchFontType":3,
+ "italianText":"Sono diventato un mucchio di ossa",
+ "italianFontType":3,
+ "germanText":"Viel ist nicht übrig geblieben.",
+ "germanFontType":3,
+ "spanishText":"Me quedé en los huesos",
+ "spanishFontType":3,
+ "chineseTText":"變成白骨了~",
+ "chineseTFontType":1,
+ "koreanText":"뼈가 돼버렸어~",
+ "koreanFontType":2,
+ "portugueseText":"Estou só o osso",
+ "portugueseFontType":2,
+ "russianText":"Остались только кости",
+ "russianFontType":2,
+ "turkishText":"Artık sadece kemikten ibaretim",
+ "turkishFontType":2,
+ "arabicText":"أنا مجرد عظام الآن",
+ "arabicFontType":2,
+ "dutchText":"Nu ben ik enkel een hoop beenderen",
+ "dutchFontType":2,
+ "chineseSText":"变成白骨了~",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_camel",
+ "japaneseText":"暑くて乾燥した場所もへっちゃら",
+ "englishUsText":"They go where it's hot and dry",
+ "englishUsFontType":3,
+ "frenchText":"Il peut aller dans les lieux arides.",
+ "frenchFontType":3,
+ "italianText":"Vivono in luoghi molto caldi e secchi",
+ "italianFontType":3,
+ "germanText":"Mir ist es nie zu heiß! ",
+ "germanFontType":3,
+ "spanishText":"Allí voy, haga el calor que haga",
+ "spanishFontType":3,
+ "chineseTText":"又熱又乾燥的地方也沒問題",
+ "chineseTFontType":1,
+ "koreanText":"덥고 건조한 곳도 문제없어",
+ "koreanFontType":2,
+ "portugueseText":"Eles vão onde está quente e seco",
+ "portugueseFontType":2,
+ "russianText":"Спокоен и в жару, и в засуху",
+ "russianFontType":2,
+ "turkishText":"Sıcak ve kuru yerlere giderler",
+ "turkishFontType":2,
+ "arabicText":"يتحمل الحرارة والجفاف",
+ "arabicFontType":2,
+ "dutchText":"Ze zijn waar het heet en droog is",
+ "dutchFontType":2,
+ "chineseSText":"又热又干燥的地方也没问题",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_mummy",
+ "japaneseText":"包帯が欲しいときはぼくを呼んでね",
+ "englishUsText":"Call me if you need a bandage!",
+ "englishUsFontType":3,
+ "frenchText":"Appelle-moi si tu as besoin de bandages.",
+ "frenchFontType":3,
+ "italianText":"Ti serve qualche benda? Io ne ho tante!",
+ "italianFontType":3,
+ "germanText":"Falls du Verbandszeug brauchst …",
+ "germanFontType":3,
+ "spanishText":"Avisa si te hace falta una venda",
+ "spanishFontType":3,
+ "chineseTText":"想要繃帶的時候就找我吧",
+ "chineseTFontType":1,
+ "koreanText":"붕대가 필요할 땐 나를 불러",
+ "koreanFontType":2,
+ "portugueseText":"Me chame se precisar de um curativo!",
+ "portugueseFontType":2,
+ "russianText":"Зови, если нужны бинты!",
+ "russianFontType":2,
+ "turkishText":"Bandaja ihtiyacın olursa beni çağır!",
+ "turkishFontType":2,
+ "arabicText":"اتصل بي إذا كنت بحاجة إلى ضمادة!",
+ "arabicFontType":2,
+ "dutchText":"Laat het weten als je verband nodig hebt",
+ "dutchFontType":2,
+ "chineseSText":"想要绷带的时候就找我吧",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_pharaoh",
+ "japaneseText":"神秘的な仮面です",
+ "englishUsText":"It's a sacred mask",
+ "englishUsFontType":3,
+ "frenchText":"Un masque mystérieux.",
+ "frenchFontType":3,
+ "italianText":"Una maschera sacra",
+ "italianFontType":3,
+ "germanText":"Geheimnisvolle Maske",
+ "germanFontType":3,
+ "spanishText":"Una máscara sagrada",
+ "spanishFontType":3,
+ "chineseTText":"神祕的面具",
+ "chineseTFontType":1,
+ "koreanText":"신비한 가면이에요",
+ "koreanFontType":2,
+ "portugueseText":"É uma máscara misteriosa",
+ "portugueseFontType":2,
+ "russianText":"Священная маска",
+ "russianFontType":2,
+ "turkishText":"Korkutucu bir maskedir",
+ "turkishFontType":2,
+ "arabicText":"إنه قناع ثمين",
+ "arabicFontType":2,
+ "dutchText":"Het is een heilig masker",
+ "dutchFontType":2,
+ "chineseSText":"神秘的面具",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_plane",
+ "japaneseText":"大空駆け巡っちゃうもんねー",
+ "englishUsText":"It can fly across continents!",
+ "englishUsFontType":3,
+ "frenchText":"Je vais voler dans le ciel.",
+ "frenchFontType":3,
+ "italianText":"Vola nel cielo a grande velocità!",
+ "italianFontType":3,
+ "germanText":"Fliegen? Nichts leichter als das.",
+ "germanFontType":3,
+ "spanishText":"Volando voy, volando vengo",
+ "spanishFontType":3,
+ "chineseTText":"會在天空四處翱翔呢~",
+ "chineseTFontType":1,
+ "koreanText":"하늘을 날아다녀요~",
+ "koreanFontType":2,
+ "portugueseText":"Pode cruzar continentes!",
+ "portugueseFontType":2,
+ "russianText":"Летает меж континентов!",
+ "russianFontType":2,
+ "turkishText":"Kıtalar arasında uçabilir!",
+ "turkishFontType":2,
+ "arabicText":"يمكنها الطيران عبر القارات!",
+ "arabicFontType":2,
+ "dutchText":"Het vliegt over alle continenten!",
+ "dutchFontType":2,
+ "chineseSText":"会在天空四处翱翔呢~",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_robot",
+ "japaneseText":"ガキーン!ガオー!ゴゴゴゴゴ",
+ "englishUsText":"Go Mecha Go!",
+ "englishUsFontType":3,
+ "frenchText":"*Bip* *bip* *bip*",
+ "frenchFontType":3,
+ "italianText":"Clang! Kaching! Bip bip!",
+ "italianFontType":3,
+ "germanText":"Krrrr... Zang! Kawosch! Rumms!",
+ "germanFontType":3,
+ "spanishText":"Creo que me falta un tornillo",
+ "spanishFontType":3,
+ "chineseTText":"鏗鏘~!嘎喔~!轟轟轟轟轟",
+ "chineseTFontType":1,
+ "koreanText":"철컹! 철컥! 기이이잉",
+ "koreanFontType":2,
+ "portugueseText":"Vai, Mecha!",
+ "portugueseFontType":2,
+ "russianText":"Гррр! Го-го-го!",
+ "russianFontType":2,
+ "turkishText":"Git Meka Git!",
+ "turkishFontType":2,
+ "arabicText":"هيا أيها الخارق هيا!",
+ "arabicFontType":2,
+ "dutchText":"Kom op, Mecha!",
+ "dutchFontType":2,
+ "chineseSText":"铿锵~!嘎喔~!轰轰轰轰轰",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_science",
+ "japaneseText":"すごい頭脳と引き換えに頭髪が",
+ "englishUsText":"Smart brains, crazy hair",
+ "englishUsFontType":3,
+ "frenchText":"Des cheveux contre un grand cerveau.",
+ "frenchFontType":3,
+ "italianText":"Cervello fino e capelli pazzi",
+ "italianFontType":3,
+ "germanText":"Superhirn mit verrücktem Haar!",
+ "germanFontType":3,
+ "spanishText":"Estos pelos a cambio de un gran cerebro",
+ "spanishFontType":3,
+ "chineseTText":"腦袋非常聰明,代價是頭髮……",
+ "chineseTFontType":1,
+ "koreanText":"엄청난 지능과 맞바꾼 머리카락",
+ "koreanFontType":2,
+ "portugueseText":"Cérebro esperto, cabelo louco",
+ "portugueseFontType":2,
+ "russianText":"На голове бардак, внутри — ума палата",
+ "russianFontType":2,
+ "turkishText":"Zeki bir beyin, çılgın saçlar",
+ "turkishFontType":2,
+ "arabicText":"عقل ذكي، وشعر مجنون",
+ "arabicFontType":2,
+ "dutchText":"Groot brein, gek haar",
+ "dutchFontType":2,
+ "chineseSText":"脑袋非常聪明,代价是头发……",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_halloween",
+ "japaneseText":"トリックオアトリート!",
+ "englishUsText":"Trick or treat!",
+ "englishUsFontType":3,
+ "frenchText":"Farce ou friandise ?",
+ "frenchFontType":3,
+ "italianText":"Dolcetto o scherzetto?",
+ "italianFontType":3,
+ "germanText":"Süßes oder Saures!",
+ "germanFontType":3,
+ "spanishText":"¡Truco o trato!",
+ "spanishFontType":3,
+ "chineseTText":"不給糖就搗蛋!",
+ "chineseTFontType":1,
+ "koreanText":"트릭 오어 트릿!",
+ "koreanFontType":2,
+ "portugueseText":"Doce ou travessura!",
+ "portugueseFontType":2,
+ "russianText":"Откупись или заколдую!",
+ "russianFontType":2,
+ "turkishText":"Şeker mi şaka mı!",
+ "turkishFontType":2,
+ "arabicText":"حلوى أم خدعة",
+ "arabicFontType":2,
+ "dutchText":"Snoep of je leven!",
+ "dutchFontType":2,
+ "chineseSText":"不给糖就捣蛋!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_watermelon",
+ "japaneseText":"キレイに割れたらおいしくいただけます",
+ "englishUsText":"Go for a clean split!",
+ "englishUsFontType":3,
+ "frenchText":"Brise-la joliment pour y goûter.",
+ "frenchFontType":3,
+ "italianText":"Spacca il cocomero a metà!",
+ "italianFontType":3,
+ "germanText":"Traditionelle Strandaktivität in Japan.",
+ "germanFontType":3,
+ "spanishText":"Intenta cortarla en dos limpiamente",
+ "spanishFontType":3,
+ "chineseTText":"成功敲開就能吃到美味西瓜",
+ "chineseTFontType":1,
+ "koreanText":"깔끔하게 쪼개서 맛있게 먹어요",
+ "koreanFontType":2,
+ "portugueseText":"Vamos partir direitinho!",
+ "portugueseFontType":2,
+ "russianText":"Разбей его!",
+ "russianFontType":2,
+ "turkishText":"Temiz bir şekilde parçalara ayır!",
+ "turkishFontType":2,
+ "arabicText":"حاول قطعها بسلاسة!",
+ "arabicFontType":2,
+ "dutchText":"Breek hem in één keer doormidden!",
+ "dutchFontType":2,
+ "chineseSText":"成功敲开就能吃到美味西瓜",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_archangel",
+ "japaneseText":"地上へ降臨!",
+ "englishUsText":"Descending from the Heavens!",
+ "englishUsFontType":3,
+ "frenchText":"Descendu des cieux !",
+ "frenchFontType":3,
+ "italianText":"Discende dai cieli",
+ "italianFontType":3,
+ "germanText":"Ankunft auf der Erde!",
+ "germanFontType":3,
+ "spanishText":"¡Desciende a la tierra!",
+ "spanishFontType":3,
+ "chineseTText":"降臨人間!",
+ "chineseTFontType":1,
+ "koreanText":"지상에 강림!",
+ "koreanFontType":2,
+ "portugueseText":"Descendo dos Céus!",
+ "portugueseFontType":2,
+ "russianText":"Спустился на землю с небес!",
+ "russianFontType":2,
+ "turkishText":"Cennetlerden iniyor!",
+ "turkishFontType":2,
+ "arabicText":"يطير في السماء",
+ "arabicFontType":2,
+ "dutchText":"Komt uit de hemel",
+ "dutchFontType":2,
+ "chineseSText":"降临人间!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_beetle",
+ "japaneseText":"力持ちです",
+ "englishUsText":"They're strong",
+ "englishUsFontType":3,
+ "frenchText":"Il est fort.",
+ "frenchFontType":3,
+ "italianText":"Un insetto fortissimo",
+ "italianFontType":3,
+ "germanText":"Echt stark.",
+ "germanFontType":3,
+ "spanishText":"De fuerza inimaginable",
+ "spanishFontType":3,
+ "chineseTText":"力大無窮",
+ "chineseTFontType":1,
+ "koreanText":"힘이 세요",
+ "koreanFontType":2,
+ "portugueseText":"Eles são poderosos",
+ "portugueseFontType":2,
+ "russianText":"Очень сильный",
+ "russianFontType":2,
+ "turkishText":"Onlar oldukça güçlüdür",
+ "turkishFontType":2,
+ "arabicText":"إنهم أقوياء للغاية",
+ "arabicFontType":2,
+ "dutchText":"Ze zijn erg sterk",
+ "dutchFontType":2,
+ "chineseSText":"力大无穷",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_sakuramochi",
+ "japaneseText":"ほんのりさくら風味です",
+ "englishUsText":"Has a slight cherry blossom flavor",
+ "englishUsFontType":3,
+ "frenchText":"Avec un goût de feuille de cerisier.",
+ "frenchFontType":3,
+ "italianText":"Dolcetto dal tenue sapore di ciliegia",
+ "italianFontType":3,
+ "germanText":"Der Duft der Kirschblüte ...",
+ "germanFontType":3,
+ "spanishText":"Con ligero sabor a cereza",
+ "spanishFontType":3,
+ "chineseTText":"微微的櫻花風味",
+ "chineseTFontType":1,
+ "koreanText":"은은한 벚꽃 맛이 나요",
+ "koreanFontType":2,
+ "portugueseText":"Tem um leve sabor de flor de cereja",
+ "portugueseFontType":2,
+ "russianText":"Немного пахнет сакурой",
+ "russianFontType":2,
+ "turkishText":"Hafif bir vişne çiçeği tadı var",
+ "turkishFontType":2,
+ "arabicText":"بنكهة أزهار الكرز الخفيفة",
+ "arabicFontType":2,
+ "dutchText":"Smaakt lichtjes naar kersenbloesem",
+ "dutchFontType":2,
+ "chineseSText":"微微的樱花风味",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_gunman",
+ "japaneseText":"早撃ちなら負けないね",
+ "englishUsText":"The quickest to the draw wins",
+ "englishUsFontType":3,
+ "frenchText":"Le plus rapide gagne toujours.",
+ "frenchFontType":3,
+ "italianText":"Vittoria assicurata se hai la mano lesta",
+ "italianFontType":3,
+ "germanText":"Ich kann schneller ziehen.",
+ "germanFontType":3,
+ "spanishText":"¡Quien desenfunda primero gana!",
+ "spanishFontType":3,
+ "chineseTText":"開槍速度絕不輸人喔",
+ "chineseTFontType":1,
+ "koreanText":"빨리 쏘는 건 자신 있어",
+ "koreanFontType":2,
+ "portugueseText":"Quem saca primeiro vence",
+ "portugueseFontType":2,
+ "russianText":"Первый выстрел — победный",
+ "russianFontType":2,
+ "turkishText":"Kim ilk vurursa, kazanır",
+ "turkishFontType":2,
+ "arabicText":"من يطلق أوّلاً يفوز",
+ "arabicFontType":2,
+ "dutchText":"Wie het eerst zijn pistool trekt, wint",
+ "dutchFontType":2,
+ "chineseSText":"开枪速度绝不输人哦",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_boarder",
+ "japaneseText":"ゴーッ!ガッ!ゴーッ!",
+ "englishUsText":"Roll! Spike! Roll!",
+ "englishUsFontType":3,
+ "frenchText":"Je fais des tricks avec mon skate !",
+ "frenchFontType":3,
+ "italianText":"Veloce come il vento sul tuo skateboard!",
+ "italianFontType":3,
+ "germanText":"Je spektakulärer, desto cooler.",
+ "germanFontType":3,
+ "spanishText":"Rodando por la ciudad",
+ "spanishFontType":3,
+ "chineseTText":"咻~!喀!咻~!",
+ "chineseTFontType":1,
+ "koreanText":"드르륵! 탁! 촤악!",
+ "koreanFontType":2,
+ "portugueseText":"Role! Ataque! Role!",
+ "portugueseFontType":2,
+ "russianText":"Перекат! Переворот!",
+ "russianFontType":2,
+ "turkishText":"Kay! Sıçra! Kay!",
+ "turkishFontType":2,
+ "arabicText":"تزلج! اقفز! تزحلق!",
+ "arabicFontType":2,
+ "dutchText":"Het gaat op rolletjes!",
+ "dutchFontType":2,
+ "chineseSText":"咻~!喀!咻~!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_harajuku",
+ "japaneseText":"カワイイコーデ",
+ "englishUsText":"Cute outfits",
+ "englishUsFontType":3,
+ "frenchText":"Trop mignonne !",
+ "frenchFontType":3,
+ "italianText":"Che completo carino!",
+ "italianFontType":3,
+ "germanText":"Zuckersüß, nicht?",
+ "germanFontType":3,
+ "spanishText":"Vestiditos monos",
+ "spanishFontType":3,
+ "chineseTText":"可愛的穿搭",
+ "chineseTFontType":1,
+ "koreanText":"귀여운 코디",
+ "koreanFontType":2,
+ "portugueseText":"Roupas legais",
+ "portugueseFontType":2,
+ "russianText":"Модные шмотки",
+ "russianFontType":2,
+ "turkishText":"Sevimli kıyafetler",
+ "turkishFontType":2,
+ "arabicText":"أزياء لطيفة",
+ "arabicFontType":2,
+ "dutchText":"Schattige outfits",
+ "dutchFontType":2,
+ "chineseSText":"可爱的穿搭",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_racing",
+ "japaneseText":"アクセルゆるめたら負けです",
+ "englishUsText":"Those without lead feet lose",
+ "englishUsFontType":3,
+ "frenchText":"Si tu lâches l'accélérateur, tu perds.",
+ "frenchFontType":3,
+ "italianText":"Premi l'acceleratore a tavoletta!",
+ "italianFontType":3,
+ "germanText":"Fuß nicht vom Gas nehmen!",
+ "germanFontType":3,
+ "spanishText":"Los que no aceleran a fondo pierden",
+ "spanishFontType":3,
+ "chineseTText":"鬆開油門就輸了",
+ "chineseTFontType":1,
+ "koreanText":"액셀을 제대로 밟지 않으면 져요",
+ "koreanFontType":2,
+ "portugueseText":"Quem não pisar fundo, perde",
+ "portugueseFontType":2,
+ "russianText":"Снизишь скорость - проиграешь",
+ "russianFontType":2,
+ "turkishText":"Kılavuzu olmayanlar kaybeder",
+ "turkishFontType":2,
+ "arabicText":"سابق بسرعة، هيا!",
+ "arabicFontType":2,
+ "dutchText":"Je wint niet zonder ijzeren discipline",
+ "dutchFontType":2,
+ "chineseSText":"松开油门就输了",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_snail",
+ "japaneseText":"つのだせやりだせめだま出てます",
+ "englishUsText":"Carries his house on his back",
+ "englishUsFontType":3,
+ "frenchText":"Il porte sa maison sur son dos.",
+ "frenchFontType":3,
+ "italianText":"Può farsi spuntare gli occhi dalle corna",
+ "italianFontType":3,
+ "germanText":"Wer guckt denn da aus dem Häuschen?",
+ "germanFontType":3,
+ "spanishText":"Ventajas: siempre estoy en casa",
+ "spanishFontType":3,
+ "chineseTText":"已經伸出觸角,伸出長槍,伸出眼珠",
+ "chineseTFontType":1,
+ "koreanText":"뿔도 나오고 눈도 나와요",
+ "koreanFontType":2,
+ "portugueseText":"Carrega a casa nas costas",
+ "portugueseFontType":2,
+ "russianText":"Носит свой дом на спине",
+ "russianFontType":2,
+ "turkishText":"Sırtında evini taşır",
+ "turkishFontType":2,
+ "arabicText":"يحمل منزله على ظهره",
+ "arabicFontType":2,
+ "dutchText":"Draagt zijn huisje op zijn rug",
+ "dutchFontType":2,
+ "chineseSText":"已经伸出触角,伸出长枪,伸出眼珠",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_pajamas",
+ "japaneseText":"心地よい夢をお約束します",
+ "englishUsText":"Will bring you sweet dreams",
+ "englishUsFontType":3,
+ "frenchText":"Il te garantit de beaux rêves.",
+ "frenchFontType":3,
+ "italianText":"Con questo farai sogni d'oro!",
+ "italianFontType":3,
+ "germanText":"Zeit fürs Bettchen …",
+ "germanFontType":3,
+ "spanishText":"Dulces sueños garantizados",
+ "spanishFontType":3,
+ "chineseTText":"保證會做一個美夢",
+ "chineseTFontType":1,
+ "koreanText":"기분 좋은 꿈을 약속해요",
+ "koreanFontType":2,
+ "portugueseText":"Trará lindos sonhos",
+ "portugueseFontType":2,
+ "russianText":"Обещает приятные сны",
+ "russianFontType":2,
+ "turkishText":"Sana tatlı rüyalar getirir",
+ "turkishFontType":2,
+ "arabicText":"أحلامًا سعيدة",
+ "arabicFontType":2,
+ "dutchText":"Slaap lekker!",
+ "dutchFontType":2,
+ "chineseSText":"保证会做一个美梦",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_unicorn",
+ "japaneseText":"ゆめかわのどうぶつ",
+ "englishUsText":"A cutesy, mystical creature",
+ "englishUsFontType":3,
+ "frenchText":"Un animal mignon comme dans un rêve.",
+ "frenchFontType":3,
+ "italianText":"Un grazioso animale fantastico",
+ "italianFontType":3,
+ "germanText":"Ein Wesen wie aus den Märchen.",
+ "germanFontType":3,
+ "spanishText":"Una monada de criatura mística",
+ "spanishFontType":3,
+ "chineseTText":"夢幻可愛的動物",
+ "chineseTFontType":1,
+ "koreanText":"꿈속의 귀여운 동물",
+ "koreanFontType":2,
+ "portugueseText":"Uma criatura mística e bonitinha",
+ "portugueseFontType":2,
+ "russianText":"Мифическое существо",
+ "russianFontType":2,
+ "turkishText":"Sevimli, mistik bir karakter",
+ "turkishFontType":2,
+ "arabicText":"مخلوق أسطوري لطيف",
+ "arabicFontType":2,
+ "dutchText":"Een lief, mysterieus wezen",
+ "dutchFontType":2,
+ "chineseSText":"梦幻可爱的动物",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_ghost",
+ "japaneseText":"日本の夏はうらめしや~",
+ "englishUsText":"Haunting you this summer. Booo!",
+ "englishUsFontType":3,
+ "frenchText":"L'été japonais va vous hanter…",
+ "frenchFontType":3,
+ "italianText":"Un classico spettro giapponese!",
+ "italianFontType":3,
+ "germanText":"Im Sommer spukt's in Japan.",
+ "germanFontType":3,
+ "spanishText":"Te perseguiré durante todo el verano",
+ "spanishFontType":3,
+ "chineseTText":"日本的夏天就是我好恨啊~",
+ "chineseTFontType":1,
+ "koreanText":"여름을 오싹하게, 원통하다~",
+ "koreanFontType":2,
+ "portugueseText":"Assombrando neste verão. Buh!",
+ "portugueseFontType":2,
+ "russianText":"Придет за тобой этим летом. Бу!",
+ "russianFontType":2,
+ "turkishText":"Bu yaz sana dadanıyor. Bööö!",
+ "turkishFontType":2,
+ "arabicText":"سأطاردك هذا الصيف. بووو!",
+ "arabicFontType":2,
+ "dutchText":"Komt deze zomer rondspoken. Boe!",
+ "dutchFontType":2,
+ "chineseSText":"日本的夏天就是我好恨啊~",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_jet",
+ "japaneseText":"音速を超えて飛び立つ!",
+ "englishUsText":"Breaking the sound barrier!",
+ "englishUsFontType":3,
+ "frenchText":"Il va plus vite que le son !",
+ "frenchFontType":3,
+ "italianText":"Sfonda la barriera del suono!",
+ "italianFontType":3,
+ "germanText":"Durchbrich die Schallmauer!",
+ "germanFontType":3,
+ "spanishText":"¡Rompiendo la barrera del sonido!",
+ "spanishFontType":3,
+ "chineseTText":"用超越音速的速度起飛!",
+ "chineseTFontType":1,
+ "koreanText":"음속을 넘어서 날아오른다!",
+ "koreanFontType":2,
+ "portugueseText":"Quebrando a barreira do som!",
+ "portugueseFontType":2,
+ "russianText":"Преодолевает звуковой барьер!",
+ "russianFontType":2,
+ "turkishText":"Ses limitini aşıyor!",
+ "turkishFontType":2,
+ "arabicText":"تكسر حاجز الصوت!",
+ "arabicFontType":2,
+ "dutchText":"Sneller dan het geluid!",
+ "dutchFontType":2,
+ "chineseSText":"用超越音速的速度起飞!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_vacation",
+ "japaneseText":"暑い日差しでリゾート気分",
+ "englishUsText":"I'm in the mood for sunbathing!",
+ "englishUsFontType":3,
+ "frenchText":"En mode bronzette à la plage.",
+ "frenchFontType":3,
+ "italianText":"Ho voglia di prendere un po' di sole!",
+ "italianFontType":3,
+ "germanText":"Zeit, etwas zu entspannen.",
+ "germanFontType":3,
+ "spanishText":"Me parece a mí que me voy a tomar el sol",
+ "spanishFontType":3,
+ "chineseTText":"炎熱的陽光帶來度假村氛圍",
+ "chineseTFontType":1,
+ "koreanText":"뜨거운 햇살 아래 리조트 기분",
+ "koreanFontType":2,
+ "portugueseText":"Estou a fim de um bronze!",
+ "portugueseFontType":2,
+ "russianText":"Как приятно позагорать!",
+ "russianFontType":2,
+ "turkishText":"Güneşlenme modundayım!",
+ "turkishFontType":2,
+ "arabicText":"أنا في مزاج جيد لحمامات الشمس!",
+ "arabicFontType":2,
+ "dutchText":"Ik heb zin om te zonnebaden!",
+ "dutchFontType":2,
+ "chineseSText":"炎热的阳光带来度假村氛围",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_holstein",
+ "japaneseText":"年間5000kgのお乳がでます",
+ "englishUsText":"Makes over 2,500 bottles of milk a year",
+ "englishUsFontType":3,
+ "frenchText":"Elle produit beaucoup de lait.",
+ "frenchFontType":3,
+ "italianText":"Produce 5000 litri di latte in un anno",
+ "italianFontType":3,
+ "germanText":"Produziert jährlich 5 Tonnen Milch.",
+ "germanFontType":3,
+ "spanishText":"Más de 2500 botellas de leche en un año",
+ "spanishFontType":3,
+ "chineseTText":"一年能擠出5000kg的牛奶",
+ "chineseTFontType":1,
+ "koreanText":"연간 5000kg의 젖이 나와요",
+ "koreanFontType":2,
+ "portugueseText":"Dá mais de 2.500 garrafas de leite por ano",
+ "portugueseFontType":2,
+ "russianText":"В год дает 5000 литров молока",
+ "russianFontType":2,
+ "turkishText":"Senede 2.500 şişe süt verir",
+ "turkishFontType":2,
+ "arabicText":"تنتج أكثر من 2500 زجاجة حليب سنويًأ",
+ "arabicFontType":2,
+ "dutchText":"Maakt jaarlijks 2500 flessen melk",
+ "dutchFontType":2,
+ "chineseSText":"一年能挤出5000kg的牛奶",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_cottoncandy",
+ "japaneseText":"フワッフワッ アマッアマッ",
+ "englishUsText":"So fluffy! So sweet!",
+ "englishUsFontType":3,
+ "frenchText":"Moelleux et sucré.",
+ "frenchFontType":3,
+ "italianText":"Soffice e dolcissimo",
+ "italianFontType":3,
+ "germanText":"So flockig und so süß!",
+ "germanFontType":3,
+ "spanishText":"¡Tan suave y tan dulce!",
+ "spanishFontType":3,
+ "chineseTText":"鬆鬆軟軟,甜甜蜜蜜",
+ "chineseTFontType":1,
+ "koreanText":"몽글몽글 달콤달콤",
+ "koreanFontType":2,
+ "portugueseText":"Tão fofinho! Tão doce!",
+ "portugueseFontType":2,
+ "russianText":"Пушистая и сладкая",
+ "russianFontType":2,
+ "turkishText":"Çok pofuduk! Çok sevimli!",
+ "turkishFontType":2,
+ "arabicText":"منفوشة للغاية! حلوة للغاية!",
+ "arabicFontType":2,
+ "dutchText":"Zo zacht en zoet!",
+ "dutchFontType":2,
+ "chineseSText":"松松软软,甜甜蜜蜜",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_alpaca",
+ "japaneseText":"フラッフィーないい奴です",
+ "englishUsText":"They're really fluffy",
+ "englishUsFontType":3,
+ "frenchText":"Un bon copain tout doux.",
+ "frenchFontType":3,
+ "italianText":"Una nuvola di pelo!",
+ "italianFontType":3,
+ "germanText":"Wuschelig und gutmütig.",
+ "germanFontType":3,
+ "spanishText":"Ay, qué suavecito...",
+ "spanishFontType":3,
+ "chineseTText":"毛茸茸的好傢伙",
+ "chineseTFontType":1,
+ "koreanText":"폭신하고 좋은 녀석이에요",
+ "koreanFontType":2,
+ "portugueseText":"Elas são muito fofas",
+ "portugueseFontType":2,
+ "russianText":"Добрая и пушистая",
+ "russianFontType":2,
+ "turkishText":"Oldukça pofuduklar",
+ "turkishFontType":2,
+ "arabicText":"يتمتعون بالكثير من الزغب",
+ "arabicFontType":2,
+ "dutchText":"Ze zijn zo zacht en wollig",
+ "dutchFontType":2,
+ "chineseSText":"毛茸茸的好家伙",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_ochimusha",
+ "japaneseText":"まだ…まだ戦える",
+ "englishUsText":"I've still got some fight left in me...",
+ "englishUsFontType":3,
+ "frenchText":"Je... je peux encore me battre.",
+ "frenchFontType":3,
+ "italianText":"Posso... ancora combattere!",
+ "italianFontType":3,
+ "germanText":"Ich... kann noch kämpfen!",
+ "germanFontType":3,
+ "spanishText":"Aún podría luchar...",
+ "spanishFontType":3,
+ "chineseTText":"我還能……還能戰鬥",
+ "chineseTFontType":1,
+ "koreanText":"아직… 아직 더 싸울 수 있어",
+ "koreanFontType":2,
+ "portugueseText":"Ainda posso lutar...",
+ "portugueseFontType":2,
+ "russianText":"Еще... могу... сражаться...",
+ "russianFontType":2,
+ "turkishText":"Hala içimde dövüşme hissi var...",
+ "turkishFontType":2,
+ "arabicText":"لا يزال بداخلي روح مقاتلة..",
+ "arabicFontType":2,
+ "dutchText":"Ik ben nog steeds wat strijdlust over...",
+ "dutchFontType":2,
+ "chineseSText":"我还能……还能战斗",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_ice",
+ "japaneseText":"トッピングしすぎて食べづらいです",
+ "englishUsText":"Hard to eat if there's too many toppings",
+ "englishUsFontType":3,
+ "frenchText":"Difficile à manger car trop garnie.",
+ "frenchFontType":3,
+ "italianText":"Troppe guarnizioni. Come lo mangio?",
+ "italianFontType":3,
+ "germanText":"Schnell, bevor es schmilzt!",
+ "germanFontType":3,
+ "spanishText":"No me lo puedo comer con tantas cosas",
+ "spanishFontType":3,
+ "chineseTText":"配料放太多了,吃起來很不方便",
+ "chineseTFontType":1,
+ "koreanText":"토핑이 너무 많아서 먹기 힘들어요",
+ "koreanFontType":2,
+ "portugueseText":"Difícil comer com tanta cobertura",
+ "portugueseFontType":2,
+ "russianText":"Сложно осилить ведерко целиком",
+ "russianFontType":2,
+ "turkishText":"Üzerince çok sos varsa yemesi zordur",
+ "turkishFontType":2,
+ "arabicText":"من الصعب أكلها مع الكثير من الإضافات",
+ "arabicFontType":2,
+ "dutchText":"Moeilijk te eten met te veel toppings.",
+ "dutchFontType":2,
+ "chineseSText":"配料放太多了,吃起来很不方便",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_marchen",
+ "japaneseText":"カワイイものに囲まれたい",
+ "englishUsText":"I wanna be surrounded by cuteness!",
+ "englishUsFontType":3,
+ "frenchText":"J'aime les choses mignonnes.",
+ "frenchFontType":3,
+ "italianText":"Circondati di cose adorabili!",
+ "italianFontType":3,
+ "germanText":"Umgeben von schönen Dingen.",
+ "germanFontType":3,
+ "spanishText":"Quiero rodearme de cosas monas",
+ "spanishFontType":3,
+ "chineseTText":"想要被可愛物品圍繞",
+ "chineseTFontType":1,
+ "koreanText":"온통 귀여운 것에 둘러싸이고 싶어",
+ "koreanFontType":2,
+ "portugueseText":"Quero ser cercado de coisas fofas!",
+ "portugueseFontType":2,
+ "russianText":"Красота, лепота, просто сказка!",
+ "russianFontType":2,
+ "turkishText":"Sevimlilik etrafımı sarsın istiyorum!",
+ "turkishFontType":2,
+ "arabicText":"أريد حولي الكثير من الخيال!",
+ "arabicFontType":2,
+ "dutchText":"Ik wil me omringen met schattige dingen",
+ "dutchFontType":2,
+ "chineseSText":"想要被可爱物品围绕",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_oiran",
+ "japaneseText":"おいらんにありんす",
+ "englishUsText":"Nice to meet you, good sir",
+ "englishUsFontType":3,
+ "frenchText":"Les arts traditionnels à la perfection.",
+ "frenchFontType":3,
+ "italianText":"Piacere di conoscerla, signore",
+ "italianFontType":3,
+ "germanText":"Ihre Schönheit ist atemberaubend.",
+ "germanFontType":3,
+ "spanishText":"A su servicio, mi señor",
+ "spanishFontType":3,
+ "chineseTText":"奴家是花魁",
+ "chineseTFontType":1,
+ "koreanText":"오이란이라고 하옵니다",
+ "koreanFontType":2,
+ "portugueseText":"A su servicio, mi señor",
+ "portugueseFontType":2,
+ "russianText":"Рада знакомству, господин",
+ "russianFontType":2,
+ "turkishText":"Memnun oldum, bayım",
+ "turkishFontType":2,
+ "arabicText":"سعدت بلقائك يا سيدي",
+ "arabicFontType":2,
+ "dutchText":"Aangenaam, beste heer",
+ "dutchFontType":2,
+ "chineseSText":"奴家是花魁",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_crab",
+ "japaneseText":"バチがないとカニの爪をもがれたようだ",
+ "englishUsText":"No sticks?! You’re like a crab without claws!",
+ "englishUsFontType":3,
+ "frenchText":"Les baguettes sont comme des pinces.",
+ "frenchFontType":3,
+ "italianText":"Aiuto, un granchio sulla faccia!",
+ "italianFontType":3,
+ "germanText":"Ein Krebs ohne Scheren ist kein Krebs.",
+ "germanFontType":3,
+ "spanishText":"¿Quieres usar mis tenazas para tocar?",
+ "spanishFontType":3,
+ "chineseTText":"沒有鼓棒就像螃蟹失去蟹爪一樣",
+ "chineseTFontType":1,
+ "koreanText":"북채가 없으면 게의 집게발을 떼어 사용했다고 한다",
+ "koreanFontType":2,
+ "portugueseText":"Sem baqueta?! Você é como um caranguejo sem patas!",
+ "portugueseFontType":2,
+ "russianText":"Большой, вкусный, с клешнями",
+ "russianFontType":2,
+ "turkishText":"Baget yok mu?! Pençesiz bir yengeçsin!",
+ "turkishFontType":2,
+ "arabicText":"أين العصيّ؟! أنت كسلطعون دون مخالب!",
+ "arabicFontType":2,
+ "dutchText":"Geen stokken?! Als krab zonder schaar!",
+ "dutchFontType":2,
+ "chineseSText":"没有鼓棒就像螃蟹失去蟹爪一样",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_brave",
+ "japaneseText":"世界の平和を守るのだ!",
+ "englishUsText":"Defender of the world!",
+ "englishUsFontType":3,
+ "frenchText":"Afin de protéger la paix dans le monde.",
+ "frenchFontType":3,
+ "italianText":"Proteggi la pace nel mondo!",
+ "italianFontType":3,
+ "germanText":"Für den Weltfrieden!",
+ "germanFontType":3,
+ "spanishText":"¡Defenderé al mundo entero!",
+ "spanishFontType":3,
+ "chineseTText":"我要守護世界和平!",
+ "chineseTFontType":1,
+ "koreanText":"세계 평화를 지켜야 해!",
+ "koreanFontType":2,
+ "portugueseText":"Protetor da paz mundial!",
+ "portugueseFontType":2,
+ "russianText":"Защитник мира!",
+ "russianFontType":2,
+ "turkishText":"Dünyanın savunucusu!",
+ "turkishFontType":2,
+ "arabicText":"المدافع عن العالم!",
+ "arabicFontType":2,
+ "dutchText":"Beschermer van de wereldvrede",
+ "dutchFontType":2,
+ "chineseSText":"我要守护世界和平!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_Lieutenant",
+ "japaneseText":"きよーつけ!前へー!すすめ!",
+ "englishUsText":"Attennnntion! Forwarrrd march!",
+ "englishUsFontType":3,
+ "frenchText":"En avant, marche !",
+ "frenchFontType":3,
+ "italianText":"Sempre avanti, senza esitare!",
+ "italianFontType":3,
+ "germanText":"Achtung! Feind voraus!",
+ "germanFontType":3,
+ "spanishText":"¡Atención! ¡Al frente! ¡Vaaaamos!",
+ "spanishFontType":3,
+ "chineseTText":"立~正!向前看~!起步走!",
+ "chineseTFontType":1,
+ "koreanText":"차렷! 앞으로! 전진!",
+ "koreanFontType":2,
+ "portugueseText":"Atenção! Adiante! Marche!",
+ "portugueseFontType":2,
+ "russianText":"Шагом марш!",
+ "russianFontType":2,
+ "turkishText":"Dikkkkkat! İleriiii marş!",
+ "turkishFontType":2,
+ "arabicText":"انتباه! تحرك للأمام!",
+ "arabicFontType":2,
+ "dutchText":"Aandacht! Voorwaarts, mars!",
+ "dutchFontType":2,
+ "chineseSText":"立~正!向前看~!起步走!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_maid",
+ "japaneseText":"おかえりなさいご主人様",
+ "englishUsText":"Welcome home, Master",
+ "englishUsFontType":3,
+ "frenchText":"Bonjour, mon maître.",
+ "frenchFontType":3,
+ "italianText":"In divisa, con tanto di crestina!",
+ "italianFontType":3,
+ "germanText":"Willkommen zu Hause, Herr.",
+ "germanFontType":3,
+ "spanishText":"Bienvenido a casa, señor",
+ "spanishFontType":3,
+ "chineseTText":"歡迎回家,主人",
+ "chineseTFontType":1,
+ "koreanText":"다녀오셨어요 주인님",
+ "koreanFontType":2,
+ "portugueseText":"Bem-vindo a casa, Mestre",
+ "portugueseFontType":2,
+ "russianText":"С возвращением, хозяин!",
+ "russianFontType":2,
+ "turkishText":"Eve hoş geldin, usta",
+ "turkishFontType":2,
+ "arabicText":"مرحبًا بعودتك، سيدي",
+ "arabicFontType":2,
+ "dutchText":"Welkom thuis, meester!",
+ "dutchFontType":2,
+ "chineseSText":"欢迎回家,主人",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_doctor",
+ "japaneseText":"チクっとしますよー",
+ "englishUsText":"That stings!",
+ "englishUsFontType":3,
+ "frenchText":"Ça va un peu piquer...",
+ "frenchFontType":3,
+ "italianText":"Ora ti faccio la puntura!",
+ "italianFontType":3,
+ "germanText":"So, dann sagen Sie mal \"Aaaah\".",
+ "germanFontType":3,
+ "spanishText":"¡No me pinches!",
+ "spanishFontType":3,
+ "chineseTText":"會有點刺痛喔~",
+ "chineseTFontType":1,
+ "koreanText":"따끔합니다~",
+ "koreanFontType":2,
+ "portugueseText":"É só uma picadinha!",
+ "portugueseFontType":2,
+ "russianText":"Укольчик — будет немножко больно!",
+ "russianFontType":2,
+ "turkishText":"Bu şey kokuyor!",
+ "turkishFontType":2,
+ "arabicText":"هذا يحرق!",
+ "arabicFontType":2,
+ "dutchText":"Dat doet pijn!",
+ "dutchFontType":2,
+ "chineseSText":"会有点刺痛哦~",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_bee",
+ "japaneseText":"お花をまわってミツをあつめます",
+ "englishUsText":"We buzz around, gathering nectar",
+ "englishUsFontType":3,
+ "frenchText":"Va de fleur en fleur pour faire du miel.",
+ "frenchFontType":3,
+ "italianText":"Raccoglie il miele da un fiore all'altro",
+ "italianFontType":3,
+ "germanText":"Sammelt fleißig Nektar.",
+ "germanFontType":3,
+ "spanishText":"De flor en flor buscando néctar",
+ "spanishFontType":3,
+ "chineseTText":"圍繞著花朵採蜜",
+ "chineseTFontType":1,
+ "koreanText":"꽃을 돌며 꿀을 모아요",
+ "koreanFontType":2,
+ "portugueseText":"Nós zumbimos por aí, colhendo néctar",
+ "portugueseFontType":2,
+ "russianText":"Собирает мед с цветов",
+ "russianFontType":2,
+ "turkishText":"Etrafta vızıldayıp meyve özü topluyoruz",
+ "turkishFontType":2,
+ "arabicText":"نصدر طنينًا في الأجواء، ونجمع الرحيق",
+ "arabicFontType":2,
+ "dutchText":"We zoemen wat rond en verzamelen nectar",
+ "dutchFontType":2,
+ "chineseSText":"围绕着花朵采蜜",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_bulldog",
+ "japaneseText":"こわそうだけどいいヤツです",
+ "englishUsText":"I may look scary, but I'm really nice",
+ "englishUsFontType":3,
+ "frenchText":"Un peu effrayant, mais sympa.",
+ "frenchFontType":3,
+ "italianText":"Sembra minaccioso, ma è buono",
+ "italianFontType":3,
+ "germanText":"Sieht bissig aus, ist aber friedfertig.",
+ "germanFontType":3,
+ "spanishText":"Puedo dar miedo, pero soy un bombón",
+ "spanishFontType":3,
+ "chineseTText":"外表很可怕,其實很善良",
+ "chineseTFontType":1,
+ "koreanText":"무서워 보이지만 좋은 녀석이에요",
+ "koreanFontType":2,
+ "portugueseText":"Pareço bravo, mas sou muito legal",
+ "portugueseFontType":2,
+ "russianText":"Страшноватый, но добрый",
+ "russianFontType":2,
+ "turkishText":"Ürkütücü görünebilirim ama çok iyiyimdir",
+ "turkishFontType":2,
+ "arabicText":"قد أبدو مخيفًا، لكني لطيف للغاية",
+ "arabicFontType":2,
+ "dutchText":"Ik zie er eng uit, maar ik ben erg lief",
+ "dutchFontType":2,
+ "chineseSText":"外表很可怕,其实很善良",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_cat",
+ "japaneseText":"ごろにゃん",
+ "englishUsText":"Meow!",
+ "englishUsFontType":3,
+ "frenchText":"Miaou.",
+ "frenchFontType":3,
+ "italianText":"Miao-DON!",
+ "italianFontType":3,
+ "germanText":"Miaaaau!",
+ "germanFontType":3,
+ "spanishText":"¡Miau!",
+ "spanishFontType":3,
+ "chineseTText":"咕嚕喵",
+ "chineseTFontType":1,
+ "koreanText":"데굴데굴, 야옹",
+ "koreanFontType":2,
+ "portugueseText":"Miau!",
+ "portugueseFontType":2,
+ "russianText":"Мяу!",
+ "russianFontType":2,
+ "turkishText":"Miyav!",
+ "turkishFontType":2,
+ "arabicText":"ميااو!",
+ "arabicFontType":2,
+ "dutchText":"Miauw!",
+ "dutchFontType":2,
+ "chineseSText":"咕噜喵",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_treasure",
+ "japaneseText":"岩ごろごろーみたいなところにいます",
+ "englishUsText":"Boulders chase me wherever I go",
+ "englishUsFontType":3,
+ "frenchText":"Dans un endroit rocailleux.",
+ "frenchFontType":3,
+ "italianText":"Gira il mondo in cerca di tesori",
+ "italianFontType":3,
+ "germanText":"Hält sich in der Wildnis auf.",
+ "germanFontType":3,
+ "spanishText":"Allá donde voy, está todo lleno de rocas",
+ "spanishFontType":3,
+ "chineseTText":"待在好像滿地都是石頭的地方",
+ "chineseTFontType":1,
+ "koreanText":"바위가 굴러다니는 곳에 있어요",
+ "koreanFontType":2,
+ "portugueseText":"As pedras me perseguem onde quer que eu vá",
+ "portugueseFontType":2,
+ "russianText":"Камни сопровождают меня повсюду",
+ "russianFontType":2,
+ "turkishText":"Kayaların havaya uçtuğu yerde bul beni.",
+ "turkishFontType":2,
+ "arabicText":"ستجدني عند انهيار الصخور",
+ "arabicFontType":2,
+ "dutchText":"Waar ik ook ga, rotsen rollen op me af",
+ "dutchFontType":2,
+ "chineseSText":"待在好像满地都是石头的地方",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_harmonica",
+ "japaneseText":"俺のブルースを聞いてくれ",
+ "englishUsText":"Let me play you the blues",
+ "englishUsFontType":3,
+ "frenchText":"Écoutez mon blues.",
+ "frenchFontType":3,
+ "italianText":"Senti qua che melodia!",
+ "italianFontType":3,
+ "germanText":"Ich glaub, ich hab den Blues.",
+ "germanFontType":3,
+ "spanishText":"Deja que te toque mi blues",
+ "spanishFontType":3,
+ "chineseTText":"聽聽我的藍調曲子吧",
+ "chineseTFontType":1,
+ "koreanText":"내 블루스를 들어줘",
+ "koreanFontType":2,
+ "portugueseText":"Deixa eu tocar um blues",
+ "portugueseFontType":2,
+ "russianText":"Я спою тебе блюз",
+ "russianFontType":2,
+ "turkishText":"Sana biraz caz çalayım",
+ "turkishFontType":2,
+ "arabicText":"دعني أعزف لك موسيقى البلوز",
+ "arabicFontType":2,
+ "dutchText":"Luister naar mijn blues",
+ "dutchFontType":2,
+ "chineseSText":"听听我的蓝调曲子吧",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_weld",
+ "japaneseText":"何でもバチっと直しちまうぜ",
+ "englishUsText":"I can fix anything for ya!",
+ "englishUsFontType":3,
+ "frenchText":"Je peux réparer n'importe quoi.",
+ "frenchFontType":3,
+ "italianText":"Una saldatina qui, una là e riparo tutto",
+ "italianFontType":3,
+ "germanText":"Ich repariere alles!",
+ "germanFontType":3,
+ "spanishText":"¿Algo roto? Solo dilo y te lo arreglo",
+ "spanishFontType":3,
+ "chineseTText":"不管是什麼都能在火花四濺下修好喔",
+ "chineseTFontType":1,
+ "koreanText":"뭐든 뚝딱 고쳐버리지",
+ "koreanFontType":2,
+ "portugueseText":"Posso consertar tudo pra você!",
+ "portugueseFontType":2,
+ "russianText":"Сейчас все починим!",
+ "russianFontType":2,
+ "turkishText":"Senin için her şeyi tamir edebilirim!",
+ "turkishFontType":2,
+ "arabicText":"يمكنني إصلاح أي شيء من أجلك!",
+ "arabicFontType":2,
+ "dutchText":"Ik kan alles voor je maken!",
+ "dutchFontType":2,
+ "chineseSText":"不管是什么都能在火花四溅下修好哦",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_hippo",
+ "japaneseText":"走ると意外と早いんです",
+ "englishUsText":"They're actually fast runners",
+ "englishUsFontType":3,
+ "frenchText":"Il court étonnamment vite.",
+ "frenchFontType":3,
+ "italianText":"Se si mette a correre è velocissimo!",
+ "italianFontType":3,
+ "germanText":"Sieht behäbig aus, ist aber flink.",
+ "germanFontType":3,
+ "spanishText":"Pueden correr muy rápido, avisado estás",
+ "spanishFontType":3,
+ "chineseTText":"跑起來出乎意料地快",
+ "chineseTFontType":1,
+ "koreanText":"달리면 의외로 빨라요",
+ "koreanFontType":2,
+ "portugueseText":"Eles são corredores bem rápidos",
+ "portugueseFontType":2,
+ "russianText":"На удивление быстрый зверь",
+ "russianFontType":2,
+ "turkishText":"Esasen hızlı koşuculardır",
+ "turkishFontType":2,
+ "arabicText":"يستطيعون الجري سريعًا حقًا",
+ "arabicFontType":2,
+ "dutchText":"Ze rennen sneller dan je denkt",
+ "dutchFontType":2,
+ "chineseSText":"跑起来出乎意料地快",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_pizza",
+ "japaneseText":"とろーりチーズがおいしいよ",
+ "englishUsText":"The melty cheese is so tasty",
+ "englishUsFontType":3,
+ "frenchText":"C'est bon le fromage fondu.",
+ "frenchFontType":3,
+ "italianText":"Mozzarella, pomodoro e basilico! Gnam!",
+ "italianFontType":3,
+ "germanText":"Hmmm... Schmelzkäse …",
+ "germanFontType":3,
+ "spanishText":"El queso fundido está de muerte",
+ "spanishFontType":3,
+ "chineseTText":"融化的起司很好吃喔",
+ "chineseTFontType":1,
+ "koreanText":"쭈욱 늘어나는 치즈가 맛있어요",
+ "koreanFontType":2,
+ "portugueseText":"O queijo derretido é ótimo",
+ "portugueseFontType":2,
+ "russianText":"Растопленный сыр очень вкусный",
+ "russianFontType":2,
+ "turkishText":"Eriyen peynir çok lezzetli",
+ "turkishFontType":2,
+ "arabicText":"الجبنة الذائبة شهية للغاية",
+ "arabicFontType":2,
+ "dutchText":"Gesmolten kaas is zo lekker",
+ "dutchFontType":2,
+ "chineseSText":"融化的芝士很好吃哦",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_bowl",
+ "japaneseText":"鍋といったら鍋です。かぶっても鍋です。",
+ "englishUsText":"A pot is a pot. A hat, it is not!",
+ "englishUsFontType":3,
+ "frenchText":"C'est une casserole, pas un chapeau.",
+ "frenchFontType":3,
+ "italianText":"Per cucinare tanti deliziosi manicaretti",
+ "italianFontType":3,
+ "germanText":"Ein ganz normaler Kochtopf.",
+ "germanFontType":3,
+ "spanishText":"Una olla es una olla, ¡y no un sombrero!",
+ "spanishFontType":3,
+ "chineseTText":"說是鍋子就是鍋子,戴在頭上還是鍋子。",
+ "chineseTFontType":1,
+ "koreanText":"냄비라고 하면 냄비입니다 머리에 써도 냄비죠",
+ "koreanFontType":2,
+ "portugueseText":"Uma panela é uma panela. Não é um chapéu!",
+ "portugueseFontType":2,
+ "russianText":"Кастрюля не шляпа, даже если вам идет!",
+ "russianFontType":2,
+ "turkishText":"Demlik bir demliktir. Şapka değildir!",
+ "turkishFontType":2,
+ "arabicText":"الوعاء هو الوعاء، وليس قبعة!",
+ "arabicFontType":2,
+ "dutchText":"Een pan is een pan, geen hoed!",
+ "dutchFontType":2,
+ "chineseSText":"说是锅子就是锅子,戴在头上还是锅子。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_william",
+ "japaneseText":"1発で射止めるよ!",
+ "englishUsText":"One shot is all I need!",
+ "englishUsFontType":3,
+ "frenchText":"Il peut toucher en un coup !",
+ "frenchFontType":3,
+ "italianText":"Farò centro con una singola freccia!",
+ "italianFontType":3,
+ "germanText":"Ein Schuss genügt!",
+ "germanFontType":3,
+ "spanishText":"¡Solo necesito un tiro!",
+ "spanishFontType":3,
+ "chineseTText":"要一箭射中喔!",
+ "chineseTFontType":1,
+ "koreanText":"한 발로 해결하지!",
+ "koreanFontType":2,
+ "portugueseText":"Só preciso de uma chance!",
+ "portugueseFontType":2,
+ "russianText":"С одного выстрела в яблочко!",
+ "russianFontType":2,
+ "turkishText":"Tek istediğim bir shot!",
+ "turkishFontType":2,
+ "arabicText":"ضربة واحدة هي كل ما أحتاجه!",
+ "arabicFontType":2,
+ "dutchText":"In één keer raak!",
+ "dutchFontType":2,
+ "chineseSText":"要一箭射中哦!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_jungle",
+ "japaneseText":"ジャングルへようこそ",
+ "englishUsText":"Welcome to the jungle",
+ "englishUsFontType":3,
+ "frenchText":"Bienvenue dans la jungle.",
+ "frenchFontType":3,
+ "italianText":"Che vegetazione fitta!",
+ "italianFontType":3,
+ "germanText":"Willkommen in der Wildnis!",
+ "germanFontType":3,
+ "spanishText":"Bienvenidos a la jungla",
+ "spanishFontType":3,
+ "chineseTText":"歡迎來到叢林",
+ "chineseTFontType":1,
+ "koreanText":"정글에 어서 오세요",
+ "koreanFontType":2,
+ "portugueseText":"Bem-vindo à selva",
+ "portugueseFontType":2,
+ "russianText":"Добро пожаловать в джунгли",
+ "russianFontType":2,
+ "turkishText":"Ormana hoş geldin",
+ "turkishFontType":2,
+ "arabicText":"مرحبًا بك في الأدغال",
+ "arabicFontType":2,
+ "dutchText":"Welkom in de jungle",
+ "dutchFontType":2,
+ "chineseSText":"欢迎来到丛林",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_block",
+ "japaneseText":"四角四面の世の中に最適化",
+ "englishUsText":"Optimized for a cube-shaped world!",
+ "englishUsFontType":3,
+ "frenchText":"Optimisées pour un monde carré.",
+ "frenchFontType":3,
+ "italianText":"Una versione squadrata!",
+ "italianFontType":3,
+ "germanText":"Mit ihnen kann man alles bauen.",
+ "germanFontType":3,
+ "spanishText":"Hechos para un mundo en forma de cubo",
+ "spanishFontType":3,
+ "chineseTText":"順應四四方方的世界",
+ "chineseTFontType":1,
+ "koreanText":"온통 네모난 세상에 딱 맞아요",
+ "koreanFontType":2,
+ "portugueseText":"Otimizado para um mundo cúbico!",
+ "portugueseFontType":2,
+ "russianText":"Заточен под прямоугольный мир!",
+ "russianFontType":2,
+ "turkishText":"Küp şekilli dünyaya uyarlandı!",
+ "turkishFontType":2,
+ "arabicText":"مخصصة من أجل عالم على شكل المكعب!",
+ "arabicFontType":2,
+ "dutchText":"Gemaakt voor een vierkante wereld!",
+ "dutchFontType":2,
+ "chineseSText":"顺应四四方方的世界",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_goku",
+ "japaneseText":"私、先日まで五行山におりまして",
+ "englishUsText":"I was held in the Five Finger Mountains",
+ "englishUsFontType":3,
+ "frenchText":"J'étais dans les Montagnes de Marbre.",
+ "frenchFontType":3,
+ "italianText":"Vola sulla sua nuvola dorata!",
+ "italianFontType":3,
+ "germanText":"Die Reise führt zu den Marmorbergen.",
+ "germanFontType":3,
+ "spanishText":"Me tenían retenido en una montaña",
+ "spanishFontType":3,
+ "chineseTText":"幾天前我還在五行山",
+ "chineseTFontType":1,
+ "koreanText":"저 어제까지 오행산에 있었어요",
+ "koreanFontType":2,
+ "portugueseText":"Eu estava preso na Montanha dos Cinco Dedos",
+ "portugueseFontType":2,
+ "russianText":"Был заточен под горой Пяти Стихий",
+ "russianFontType":2,
+ "turkishText":"Beş Parmak Dağlarında tutuldum",
+ "turkishFontType":2,
+ "arabicText":"كنت محتجزًا في جبال الأصابع الخمسة",
+ "arabicFontType":2,
+ "dutchText":"Ik zat vast in het Vijfvingergebergte",
+ "dutchFontType":2,
+ "chineseSText":"几天前我还在五行山",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_animalhood",
+ "japaneseText":"かぶると暖かいです",
+ "englishUsText":"It's very warm",
+ "englishUsFontType":3,
+ "frenchText":"C'est bien chaud.",
+ "frenchFontType":3,
+ "italianText":"Un simpatico cappellino!",
+ "italianFontType":3,
+ "germanText":"Das wärmt den Kopf.",
+ "germanFontType":3,
+ "spanishText":"Da calorcito al ponértela",
+ "spanishFontType":3,
+ "chineseTText":"戴上就很暖和",
+ "chineseTFontType":1,
+ "koreanText":"머리에 쓰면 따듯해요",
+ "koreanFontType":2,
+ "portugueseText":"É quentinho",
+ "portugueseFontType":2,
+ "russianText":"Если надеть, будет тепло",
+ "russianFontType":2,
+ "turkishText":"Oldukça cana yakın",
+ "turkishFontType":2,
+ "arabicText":"إنها دافئة للغاية",
+ "arabicFontType":2,
+ "dutchText":"Heerlijk warm",
+ "dutchFontType":2,
+ "chineseSText":"戴上就很暖和",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_idea",
+ "japaneseText":"ひらめいた!ヘウレーカ!",
+ "englishUsText":"It's come to me! Eureka!",
+ "englishUsFontType":3,
+ "frenchText":"Eurêka !",
+ "frenchFontType":3,
+ "italianText":"Eureka! Ho trovato!",
+ "italianFontType":3,
+ "germanText":"Ich hab's! Heureka!",
+ "germanFontType":3,
+ "spanishText":"Ya lo tengo... ¡Eureka!",
+ "spanishFontType":3,
+ "chineseTText":"靈光一閃!我找到了!",
+ "chineseTFontType":1,
+ "koreanText":"떠올랐다! 유레카!",
+ "koreanFontType":2,
+ "portugueseText":"Saquei! Eureca!",
+ "portugueseFontType":2,
+ "russianText":"Дошло! Эврика!",
+ "russianFontType":2,
+ "turkishText":"Bana gel! Evreka!",
+ "turkishFontType":2,
+ "arabicText":"لقد أتت الفكرة أخيرًا! وجدتها!",
+ "arabicFontType":2,
+ "dutchText":"Eureka! Ik weet het!",
+ "dutchFontType":2,
+ "chineseSText":"灵光一闪!我找到了!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_pole",
+ "japaneseText":"こっそり見ましょう",
+ "englishUsText":"Let's sneak a peek",
+ "englishUsFontType":3,
+ "frenchText":"Observons discrètement.",
+ "frenchFontType":3,
+ "italianText":"Non nascondiamoci dietro un palo!",
+ "italianFontType":3,
+ "germanText":"Perfekt für heimliche Beschattungen.",
+ "germanFontType":3,
+ "spanishText":"Escuchemos a escondidas",
+ "spanishFontType":3,
+ "chineseTText":"躲起來偷看吧",
+ "chineseTFontType":1,
+ "koreanText":"몰래 보도록 해요",
+ "koreanFontType":2,
+ "portugueseText":"Vamos ver em primeira mão",
+ "portugueseFontType":2,
+ "russianText":"Взглянем украдкой",
+ "russianFontType":2,
+ "turkishText":"Hadi bir göz atalım",
+ "turkishFontType":2,
+ "arabicText":"دعنا نتسلل ونلقي نظرة خاطفة",
+ "arabicFontType":2,
+ "dutchText":"Laten we een kijkje nemen",
+ "dutchFontType":2,
+ "chineseSText":"躲起来偷看吧",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_jii",
+ "japaneseText":"オドロキを隠せません",
+ "englishUsText":"Can't hide your surprise",
+ "englishUsFontType":3,
+ "frenchText":"Je ne peux pas contenir ma surprise.",
+ "frenchFontType":3,
+ "italianText":"Per chi non sa nascondere lo stupore!",
+ "italianFontType":3,
+ "germanText":"Das haut mich vom Hocker!",
+ "germanFontType":3,
+ "spanishText":"No puedes disimular tu sorpresa",
+ "spanishFontType":3,
+ "chineseTText":"藏不住的驚訝",
+ "chineseTFontType":1,
+ "koreanText":"놀라움을 감출 수 없어요",
+ "koreanFontType":2,
+ "portugueseText":"Não dá pra esconder",
+ "portugueseFontType":2,
+ "russianText":"Не скрыть удивления",
+ "russianFontType":2,
+ "turkishText":"Sürprizini saklayamam",
+ "turkishFontType":2,
+ "arabicText":"لا يمكنك إخفاء اندهاشك",
+ "arabicFontType":2,
+ "dutchText":"Je kunt je verbazing niet verbergen",
+ "dutchFontType":2,
+ "chineseSText":"藏不住的惊讶",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_kiss",
+ "japaneseText":"キッス",
+ "englishUsText":"It's a kiss",
+ "englishUsFontType":3,
+ "frenchText":"Un bisou.",
+ "frenchFontType":3,
+ "italianText":"Smack!",
+ "italianFontType":3,
+ "germanText":"Einen Kuss gefällig?",
+ "germanFontType":3,
+ "spanishText":"Un beso es un beso",
+ "spanishFontType":3,
+ "chineseTText":"親吻",
+ "chineseTFontType":1,
+ "koreanText":"키스",
+ "koreanFontType":2,
+ "portugueseText":"É um beijo",
+ "portugueseFontType":2,
+ "russianText":"Поцелуй",
+ "russianFontType":2,
+ "turkishText":"Bu bir öpücük",
+ "turkishFontType":2,
+ "arabicText":"إنها قبلة",
+ "arabicFontType":2,
+ "dutchText":"Het is een kus",
+ "dutchFontType":2,
+ "chineseSText":"亲吻",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_greece",
+ "japaneseText":"チャリオットでレースしようね!",
+ "englishUsText":"Let's have a chariot race!",
+ "englishUsFontType":3,
+ "frenchText":"Faisons une course de chariots !",
+ "frenchFontType":3,
+ "italianText":"Quell'elmo si riconosce tra migliaia!",
+ "italianFontType":3,
+ "germanText":"Wer ist mit dem Streitwagen schneller?",
+ "germanFontType":3,
+ "spanishText":"¡Saca el carro y echemos una carrera!",
+ "spanishFontType":3,
+ "chineseTText":"駕駛雙輪戰車來比賽吧!",
+ "chineseTFontType":1,
+ "koreanText":"이륜 마차로 레이스!",
+ "koreanFontType":2,
+ "portugueseText":"Vamos apostar uma corrida de carruagens!",
+ "portugueseFontType":2,
+ "russianText":"Устроим забег на колесницах!",
+ "russianFontType":2,
+ "turkishText":"İki tekerlekli araba yarışı yapalım!",
+ "turkishFontType":2,
+ "arabicText":"دعنا نتسابق بالعربات الحربية!",
+ "arabicFontType":2,
+ "dutchText":"Zin om te wagenrennen?",
+ "dutchFontType":2,
+ "chineseSText":"驾驶双轮战车来比赛吧!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_bath",
+ "japaneseText":"お先におふろいただきます",
+ "englishUsText":"Nice and relaxing",
+ "englishUsFontType":3,
+ "frenchText":"Je prends le bain en premier.",
+ "frenchFontType":3,
+ "italianText":"Per un bel bagno rilassante!",
+ "italianFontType":3,
+ "germanText":"Ah, jetzt ein entspanntes Bad.",
+ "germanFontType":3,
+ "spanishText":"Tranquilo y relajante",
+ "spanishFontType":3,
+ "chineseTText":"我先去洗澡了",
+ "chineseTFontType":1,
+ "koreanText":"먼저 목욕할게요",
+ "koreanFontType":2,
+ "portugueseText":"Legal e relaxante",
+ "portugueseFontType":2,
+ "russianText":"Горячая и расслабляющая",
+ "russianFontType":2,
+ "turkishText":"Güzel ve rahatlatıcı",
+ "turkishFontType":2,
+ "arabicText":"لطيف ويساعد على الاسترخاء",
+ "arabicFontType":2,
+ "dutchText":"Lekker ontspannen",
+ "dutchFontType":2,
+ "chineseSText":"我先去洗澡了",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_moai",
+ "japaneseText":"見るからにモアイ",
+ "englishUsText":"I spy with my little Mo-eye...",
+ "englishUsFontType":3,
+ "frenchText":"Ça se voit que c'est un Moaï.",
+ "frenchFontType":3,
+ "italianText":"Mi trovi sull'Isola di Pasqua",
+ "italianFontType":3,
+ "germanText":"Ganz schön groß …",
+ "germanFontType":3,
+ "spanishText":"¿Có-Moai que decirlo?",
+ "spanishFontType":3,
+ "chineseTText":"怎麼看都是摩艾石像",
+ "chineseTFontType":1,
+ "koreanText":"아무리 봐도 모아이",
+ "koreanFontType":2,
+ "portugueseText":"Eu espio com meu Mo-eye...",
+ "portugueseFontType":2,
+ "russianText":"Посмотрите на Моаи",
+ "russianFontType":2,
+ "turkishText":"Gizli gözümle gözetlerim...",
+ "turkishFontType":2,
+ "arabicText":"سأتجسس عليك بعيني مواي..",
+ "arabicFontType":2,
+ "dutchText":"Wat is het moai",
+ "dutchFontType":2,
+ "chineseSText":"怎么看都是摩艾石像",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_mexico",
+ "japaneseText":"オラー!ブエノス・タルデス!",
+ "englishUsText":"Hola! Buenas tardes!",
+ "englishUsFontType":3,
+ "frenchText":"Hola ! Buenas tardes !",
+ "frenchFontType":3,
+ "italianText":"Hola, chico!",
+ "italianFontType":3,
+ "germanText":"Hola! Buenos tardes!",
+ "germanFontType":3,
+ "spanishText":"¡Viva México lindo!",
+ "spanishFontType":3,
+ "chineseTText":"你好!午安!",
+ "chineseTFontType":1,
+ "koreanText":"올라! 부에노스 따르데스!",
+ "koreanFontType":2,
+ "portugueseText":"Hola! Buenas tardes!",
+ "portugueseFontType":2,
+ "russianText":"Ола! Буэнос Тардес!",
+ "russianFontType":2,
+ "turkishText":"Merhaba! İyi güler!",
+ "turkishFontType":2,
+ "arabicText":"أولا، بوينس تارديس",
+ "arabicFontType":2,
+ "dutchText":"¡Hola! ¡Buenas tardes!",
+ "dutchFontType":2,
+ "chineseSText":"你好!午安!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_dogu",
+ "japaneseText":"縄文時代",
+ "englishUsText":"From the Jomon Period",
+ "englishUsFontType":3,
+ "frenchText":"De la période Jômon.",
+ "frenchFontType":3,
+ "italianText":"È stata creata nella Preistoria!",
+ "italianFontType":3,
+ "germanText":"Aus der Jomon-Zeit …",
+ "germanFontType":3,
+ "spanishText":"Del periodo Jomon",
+ "spanishFontType":3,
+ "chineseTText":"繩文時代",
+ "chineseTFontType":1,
+ "koreanText":"조몬시대",
+ "koreanFontType":2,
+ "portugueseText":"Da Era Jomon",
+ "portugueseFontType":2,
+ "russianText":"Период Дзёмон",
+ "russianFontType":2,
+ "turkishText":"Jomon Döneminden",
+ "turkishFontType":2,
+ "arabicText":"من حقبة الچومون",
+ "arabicFontType":2,
+ "dutchText":"Uit de Jomonperiode",
+ "dutchFontType":2,
+ "chineseSText":"绳文时代",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_bushyo",
+ "japaneseText":"時は群雄割拠の戦国時代",
+ "englishUsText":"In this era, the warlords were at war...",
+ "englishUsFontType":3,
+ "frenchText":"De l'époque des provinces en guerre.",
+ "frenchFontType":3,
+ "italianText":"Feudatario dell'epoca Sengoku",
+ "italianFontType":3,
+ "germanText":"Zur Zeit der streitenden Reiche …",
+ "germanFontType":3,
+ "spanishText":"Señores de la guerra en estado de guerra",
+ "spanishFontType":3,
+ "chineseTText":"時值群雄割據的戰國時代",
+ "chineseTFontType":1,
+ "koreanText":"시대는 군웅할거의 전국시대",
+ "koreanFontType":2,
+ "portugueseText":"Nesta era, os lordes estavam em guerra...",
+ "portugueseFontType":2,
+ "russianText":"Эпоха феодальных войн…",
+ "russianFontType":2,
+ "turkishText":"Bu çağda, savaş liderleri savaşıyorlardı",
+ "turkishFontType":2,
+ "arabicText":"في هذه الحقبة، كان أمراء الحرب في الحرب",
+ "arabicFontType":2,
+ "dutchText":"Toen waren de krijgsheren in oorlog",
+ "dutchFontType":2,
+ "chineseSText":"时值群雄割据的战国时代",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_mask",
+ "japaneseText":"敵か味方かナゾの太鼓",
+ "englishUsText":"Friend or foe? It's a mystery-drum!",
+ "englishUsFontType":3,
+ "frenchText":"Ami ou ennemi ? Un tambour mystérieux.",
+ "frenchFontType":3,
+ "italianText":"Chissà chi sarà questo tamburo!",
+ "italianFontType":3,
+ "germanText":"Mysteriöse Taiko-Trommel",
+ "germanFontType":3,
+ "spanishText":"¿Amigo o enemigo...? ¡Tachán!",
+ "spanishFontType":3,
+ "chineseTText":"不知是敵是友的神祕太鼓",
+ "chineseTFontType":1,
+ "koreanText":"적인지 아군인지 알 수 없는 북",
+ "koreanFontType":2,
+ "portugueseText":"Amigo ou inimigo? É um taiko misterioso!",
+ "portugueseFontType":2,
+ "russianText":"Друг или враг? Загадка!",
+ "russianFontType":2,
+ "turkishText":"Arkadaş ya da düşman? Gizemli bir davul!",
+ "turkishFontType":2,
+ "arabicText":"صديق أم عدو؟ إنها طبلة غامضة!",
+ "arabicFontType":2,
+ "dutchText":"Vriend of vijand? Een mysterieuze drum!",
+ "dutchFontType":2,
+ "chineseSText":"不知是敌是友的神秘太鼓",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_penguin",
+ "japaneseText":"足のあいだでヒナがぬくぬく",
+ "englishUsText":"The chicks keep snug under those feet",
+ "englishUsFontType":3,
+ "frenchText":"Le petit est entre les pattes.",
+ "frenchFontType":3,
+ "italianText":"Covano i pulcini al caldo tra le zampe",
+ "italianFontType":3,
+ "germanText":"Die Küken hocken zwischen den Füßen.",
+ "germanFontType":3,
+ "spanishText":"Las crías se acurrucan entre los pies",
+ "spanishFontType":3,
+ "chineseTText":"小企鵝在雙腳間怡然自得",
+ "chineseTFontType":1,
+ "koreanText":"다리 사이에서 아기 새가 쑥쑥",
+ "koreanFontType":2,
+ "portugueseText":"Os filhotes continuam descansando entre os pés",
+ "portugueseFontType":2,
+ "russianText":"Защищают птенцов от холода",
+ "russianFontType":2,
+ "turkishText":"Yavrular ayaklarının dibinde duruyorlar",
+ "turkishFontType":2,
+ "arabicText":"تبقى الفراخ دافئة تحت هذه الأقدام",
+ "arabicFontType":2,
+ "dutchText":"De kuikens zijn warm tussen de voeten",
+ "dutchFontType":2,
+ "chineseSText":"小企鹅在双脚间怡然自得",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_cook",
+ "japaneseText":"おいしい料理つくっちゃいますね",
+ "englishUsText":"I'll cook ya something good!",
+ "englishUsFontType":3,
+ "frenchText":"Je prépare des plats délicieux.",
+ "frenchFontType":3,
+ "italianText":"Prepara piatti raffinati e deliziosi!",
+ "italianFontType":3,
+ "germanText":"Ich werde Ihnen ein Gericht zaubern!",
+ "germanFontType":3,
+ "spanishText":"Te cocinaré algo bueno",
+ "spanishFontType":3,
+ "chineseTText":"會做出美味料理呢",
+ "chineseTFontType":1,
+ "koreanText":"맛있는 요리를 만들게요",
+ "koreanFontType":2,
+ "portugueseText":"Vou fazer uma comida gostosa!",
+ "portugueseFontType":2,
+ "russianText":"Приготовлю что-нибудь вкусненькое!",
+ "russianFontType":2,
+ "turkishText":"Sana iyi bir şey pişireceğim!",
+ "turkishFontType":2,
+ "arabicText":"سأطهو وجبة جيدة من أجلك!",
+ "arabicFontType":2,
+ "dutchText":"Ik zorg voor lekker eten!",
+ "dutchFontType":2,
+ "chineseSText":"会做出美味料理呢",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_magician",
+ "japaneseText":"太鼓がうまくな~れ",
+ "englishUsText":"Abracadabra, become better at drumming!",
+ "englishUsFontType":3,
+ "frenchText":"Abracadabra, deviens doué au Taiko !",
+ "frenchFontType":3,
+ "italianText":"AbracaDONbra!",
+ "italianFontType":3,
+ "germanText":"Abrakadabra!",
+ "germanFontType":3,
+ "spanishText":"¡Abracadabra! ¡Maestro del tambor!",
+ "spanishFontType":3,
+ "chineseTText":"變得很會打太鼓吧~",
+ "chineseTFontType":1,
+ "koreanText":"태고 실력아 늘어라~",
+ "koreanFontType":2,
+ "portugueseText":"Abra Cadabra, que você se torne um baterista melhor!",
+ "portugueseFontType":2,
+ "russianText":"Абракадабра, стань крутым барабанщиком!",
+ "russianFontType":2,
+ "turkishText":"Abra kadabra, davulda daha iyi ol!",
+ "turkishFontType":2,
+ "arabicText":"أبرا كادبرا، ستكون الأفضل في الطبل!",
+ "arabicFontType":2,
+ "dutchText":"Hocus pocus, word een betere drummer!",
+ "dutchFontType":2,
+ "chineseSText":"变得很会打太鼓吧~",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_elephant",
+ "japaneseText":"おはなが長いのね",
+ "englishUsText":"What a long nose!",
+ "englishUsFontType":3,
+ "frenchText":"Il a un long nez.",
+ "frenchFontType":3,
+ "italianText":"Usa il suo lungo naso come un braccio!",
+ "italianFontType":3,
+ "germanText":"Er hat einen langen Rüssel.",
+ "germanFontType":3,
+ "spanishText":"¡Vaya narizota!",
+ "spanishFontType":3,
+ "chineseTText":"鼻子很長呢",
+ "chineseTFontType":1,
+ "koreanText":"코가 길군요",
+ "koreanFontType":2,
+ "portugueseText":"Que nariz grande!",
+ "portugueseFontType":2,
+ "russianText":"Какой длинный нос!",
+ "russianFontType":2,
+ "turkishText":"Ne uzun bir burun!",
+ "turkishFontType":2,
+ "arabicText":"يالها من أنف طويلة!",
+ "arabicFontType":2,
+ "dutchText":"Wat een lange neus!",
+ "dutchFontType":2,
+ "chineseSText":"鼻子很长呢",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_katori",
+ "japaneseText":"蚊が寄りつきませんね",
+ "englishUsText":"Burn incense in me and keep bugs away!",
+ "englishUsFontType":3,
+ "frenchText":"Les moustiques le fuient.",
+ "frenchFontType":3,
+ "italianText":"Scaccia le zanzare",
+ "italianFontType":3,
+ "germanText":"Wirkt gegen Mücken.",
+ "germanFontType":3,
+ "spanishText":"Los bichos ni se acercarán",
+ "spanishFontType":3,
+ "chineseTText":"蚊子不會飛過來了呢",
+ "chineseTFontType":1,
+ "koreanText":"모기가 다가오지 못해요",
+ "koreanFontType":2,
+ "portugueseText":"Queime incenso em mim e afaste os mosquitos!",
+ "portugueseFontType":2,
+ "russianText":"Зажги дымилку, и комары не пройдут!",
+ "russianFontType":2,
+ "turkishText":"İçimde tütsü yak ve böcekleri uzak tut!",
+ "turkishFontType":2,
+ "arabicText":"أحرق البخور بداخلي وأبقي البعوض بعيدًا",
+ "arabicFontType":2,
+ "dutchText":"Brand wierook in mij tegen de insecten!",
+ "dutchFontType":2,
+ "chineseSText":"蚊子不会飞过来了呢",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_doll",
+ "japaneseText":"ふわふわふわふわ",
+ "englishUsText":"So soft and fluffy!",
+ "englishUsFontType":3,
+ "frenchText":"C'est tout mou.",
+ "frenchFontType":3,
+ "italianText":"Com'è morbido!",
+ "italianFontType":3,
+ "germanText":"So flauschig!",
+ "germanFontType":3,
+ "spanishText":"¡Tan suave y blandito!",
+ "spanishFontType":3,
+ "chineseTText":"軟綿綿呀軟綿綿",
+ "chineseTFontType":1,
+ "koreanText":"폭신폭신 폭신폭신",
+ "koreanFontType":2,
+ "portugueseText":"Fofinhooooo!",
+ "portugueseFontType":2,
+ "russianText":"Такая мягкая и пушистая!",
+ "russianFontType":2,
+ "turkishText":"Çok yumuşa ve podufuk!",
+ "turkishFontType":2,
+ "arabicText":"ناعمة ومزغبة للغاية!",
+ "arabicFontType":2,
+ "dutchText":"Heerlijk zacht!",
+ "dutchFontType":2,
+ "chineseSText":"软绵绵呀软绵绵",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_kamaboko",
+ "japaneseText":"板にすり身をのせて蒸した",
+ "englishUsText":"It's a steamed cake of minced fish!",
+ "englishUsFontType":3,
+ "frenchText":"Du surimi à la vapeur sur une planche.",
+ "frenchFontType":3,
+ "italianText":"Un surimi di pesce bianco e rosa",
+ "italianFontType":3,
+ "germanText":"Eine Art Surimi.",
+ "germanFontType":3,
+ "spanishText":"Hecho al vapor, ¡está riquísimo!",
+ "spanishFontType":3,
+ "chineseTText":"把魚漿放在木板上蒸",
+ "chineseTFontType":1,
+ "koreanText":"판자에 생선 살을 올려서 찐 음식",
+ "koreanFontType":2,
+ "portugueseText":"Bolinho de peixe feito no vapor!",
+ "portugueseFontType":2,
+ "russianText":"Рыбный пирог на пару",
+ "russianFontType":2,
+ "turkishText":"Kıyılmış balıktan yapma bir kek!",
+ "turkishFontType":2,
+ "arabicText":"إنها كعكة على البخار من السمك المفروم!",
+ "arabicFontType":2,
+ "dutchText":"Het is een gestoomd viskoekje!",
+ "dutchFontType":2,
+ "chineseSText":"把鱼浆放在木板上蒸",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_summerfest",
+ "japaneseText":"野外で音楽聴いちゃうもんね",
+ "englishUsText":"I love live, outdoor music!",
+ "englishUsFontType":3,
+ "frenchText":"J'écoute de la musique en plein air.",
+ "frenchFontType":3,
+ "italianText":"Goditi un po' di musica all'aperto!",
+ "italianFontType":3,
+ "germanText":"Im Sommer muss man Musik draußen hören.",
+ "germanFontType":3,
+ "spanishText":"¡Me encanta la música al aire libre!",
+ "spanishFontType":3,
+ "chineseTText":"就是要在野外聽音樂呢",
+ "chineseTFontType":1,
+ "koreanText":"야외에서 음악을 듣자",
+ "koreanFontType":2,
+ "portugueseText":"Adoro música ao ar livre!",
+ "portugueseFontType":2,
+ "russianText":"Люблю музыку на открытом воздухе!",
+ "russianFontType":2,
+ "turkishText":"Canlı, açık ortam müziğini sevdim!",
+ "turkishFontType":2,
+ "arabicText":"أحب الموسيقى الحية في الهواء الطلق!",
+ "arabicFontType":2,
+ "dutchText":"Ik hou van livemuziek in de openlucht!",
+ "dutchFontType":2,
+ "chineseSText":"就是要在野外听音乐呢",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_skelton",
+ "japaneseText":"機械じかけの和太鼓",
+ "englishUsText":"See how it works inside!",
+ "englishUsFontType":3,
+ "frenchText":"Une machine Taiko.",
+ "frenchFontType":3,
+ "italianText":"Si vedono gli ingranaggi",
+ "italianFontType":3,
+ "germanText":"Mechanische Taiko-Trommel",
+ "germanFontType":3,
+ "spanishText":"Mira cómo funciona por dentro",
+ "spanishFontType":3,
+ "chineseTText":"機械構造的和太鼓",
+ "chineseTFontType":1,
+ "koreanText":"기계 장치의 일본 북",
+ "koreanFontType":2,
+ "portugueseText":"Veja como funciona por dentro!",
+ "portugueseFontType":2,
+ "russianText":"Видно все, что внутри!",
+ "russianFontType":2,
+ "turkishText":"İçeride nasıl işlediğini gör!",
+ "turkishFontType":2,
+ "arabicText":"شاهد كيف تعمل من الداخل!",
+ "arabicFontType":2,
+ "dutchText":"Ontdek hoe het van binnen werkt!",
+ "dutchFontType":2,
+ "chineseSText":"机械构造的和太鼓",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_knit",
+ "japaneseText":"あったかもこもこ",
+ "englishUsText":"So warm and fuzzy",
+ "englishUsFontType":3,
+ "frenchText":"Doux et chaud.",
+ "frenchFontType":3,
+ "italianText":"Morbido e caldo!",
+ "italianFontType":3,
+ "germanText":"Wohlig warm.",
+ "germanFontType":3,
+ "spanishText":"Calentito y peludito",
+ "spanishFontType":3,
+ "chineseTText":"溫暖的厚度",
+ "chineseTFontType":1,
+ "koreanText":"따끈따끈 폭신폭신",
+ "koreanFontType":2,
+ "portugueseText":"Tão quente e nebuloso",
+ "portugueseFontType":2,
+ "russianText":"Теплая и мягкая",
+ "russianFontType":2,
+ "turkishText":"Oldukça samimi ve tüylü",
+ "turkishFontType":2,
+ "arabicText":"دافئة ومريحة للغاية",
+ "arabicFontType":2,
+ "dutchText":"Zo zacht en warm",
+ "dutchFontType":2,
+ "chineseSText":"温暖的厚度",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_fluffydog",
+ "japaneseText":"ふっさふっさワンワン",
+ "englishUsText":"What a fluffy puppy!",
+ "englishUsFontType":3,
+ "frenchText":"Ouaf ouaf !",
+ "frenchFontType":3,
+ "italianText":"Sembra uno spazzolone!",
+ "italianFontType":3,
+ "germanText":"Schüttel, schüttel. Wuff, wuff.",
+ "germanFontType":3,
+ "spanishText":"¡Pero que perrito más peludito!",
+ "spanishFontType":3,
+ "chineseTText":"長毛的汪汪",
+ "chineseTFontType":1,
+ "koreanText":"복실복실 멍멍",
+ "koreanFontType":2,
+ "portugueseText":"Que cachorrinho fofo!",
+ "portugueseFontType":2,
+ "russianText":"Какой меховой песик!",
+ "russianFontType":2,
+ "turkishText":"Ne pofuduk bir şey!",
+ "turkishFontType":2,
+ "arabicText":"يا له من كلب كثيف الشعر!",
+ "arabicFontType":2,
+ "dutchText":"Wat een zachte puppy!",
+ "dutchFontType":2,
+ "chineseSText":"长毛的汪汪",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_hedgehog",
+ "japaneseText":"抱きしめると痛いです",
+ "englishUsText":"Painful to hug",
+ "englishUsFontType":3,
+ "frenchText":"Qui s'y frotte s'y pique.",
+ "frenchFontType":3,
+ "italianText":"Che voglia di abbracciarlo, ma punge!",
+ "italianFontType":3,
+ "germanText":"Vorsicht, stachelig!",
+ "germanFontType":3,
+ "spanishText":"Duele un poquito cuando se abraza",
+ "spanishFontType":3,
+ "chineseTText":"抱緊會很痛",
+ "chineseTFontType":1,
+ "koreanText":"껴안으면 따가워요",
+ "koreanFontType":2,
+ "portugueseText":"Se abraçar, machuca",
+ "portugueseFontType":2,
+ "russianText":"Не трогай, уколю!",
+ "russianFontType":2,
+ "turkishText":"Sarılmak oldukça acı verici",
+ "turkishFontType":2,
+ "arabicText":"مؤلم عند العناق",
+ "arabicFontType":2,
+ "dutchText":"Doet pijn als je hem knuffelt",
+ "dutchFontType":2,
+ "chineseSText":"抱紧会很痛",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_partypeople",
+ "japaneseText":"レッツパーリー!",
+ "englishUsText":"Let's party!",
+ "englishUsFontType":3,
+ "frenchText":"Let's party !",
+ "frenchFontType":3,
+ "italianText":"Divertiamoci!",
+ "italianFontType":3,
+ "germanText":"Let's party!",
+ "germanFontType":3,
+ "spanishText":"¡Vámonos de fiesta!",
+ "spanishFontType":3,
+ "chineseTText":"來開派對!",
+ "chineseTFontType":1,
+ "koreanText":"렛츠 파티!",
+ "koreanFontType":2,
+ "portugueseText":"Hora da festa!",
+ "portugueseFontType":2,
+ "russianText":"Давайте веселиться!",
+ "russianFontType":2,
+ "turkishText":"Hadi partileyelim!",
+ "turkishFontType":2,
+ "arabicText":"دعونا نحتفل!",
+ "arabicFontType":2,
+ "dutchText":"Klaar voor een feestje!",
+ "dutchFontType":2,
+ "chineseSText":"来开派对!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_chibi_rainbow",
+ "japaneseText":"七色のカラフルちびどん",
+ "englishUsText":"A multicolored mini-drum",
+ "englishUsFontType":3,
+ "frenchText":"Mini DON multicolore.",
+ "frenchFontType":3,
+ "italianText":"Tanti Mini-DON dei colori dell'iride",
+ "italianFontType":3,
+ "germanText":"Mini-DON-chan in Regenbogenfarben.",
+ "germanFontType":3,
+ "spanishText":"Un Mini DON de múltiples colores",
+ "spanishFontType":3,
+ "chineseTText":"七色的多彩迷你咚",
+ "chineseTFontType":1,
+ "koreanText":"일곱 색깔 컬러풀한 미니동",
+ "koreanFontType":2,
+ "portugueseText":"Um mini-tambor multicolorido",
+ "portugueseFontType":2,
+ "russianText":"Чибидон семи цветов",
+ "russianFontType":2,
+ "turkishText":"Çok renkli bir mini davul",
+ "turkishFontType":2,
+ "arabicText":"طبلة صغيرة متعددة الألوان",
+ "arabicFontType":2,
+ "dutchText":"Minidrums in allerlei kleuren",
+ "dutchFontType":2,
+ "chineseSText":"七色的多彩迷你咚",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_spaceman",
+ "japaneseText":"宇宙でお祭り!",
+ "englishUsText":"Rock out in space!",
+ "englishUsFontType":3,
+ "frenchText":"Un festival dans l'espace !",
+ "frenchFontType":3,
+ "italianText":"Sfoggiala nello spazio!",
+ "italianFontType":3,
+ "germanText":"Auf, ins All!",
+ "germanFontType":3,
+ "spanishText":"¡Dale caña en el espacio!",
+ "spanishFontType":3,
+ "chineseTText":"在太空舉辦祭典!",
+ "chineseTFontType":1,
+ "koreanText":"우주에서 축제!",
+ "koreanFontType":2,
+ "portugueseText":"Rock no espaço!",
+ "portugueseFontType":2,
+ "russianText":"Праздник в космосе!",
+ "russianFontType":2,
+ "turkishText":"Uzayda oldukça göz alır!",
+ "turkishFontType":2,
+ "arabicText":"تألق في الفضاء!",
+ "arabicFontType":2,
+ "dutchText":"Lekker rocken in de ruimte!",
+ "dutchFontType":2,
+ "chineseSText":"在太空举办祭典!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_kannon",
+ "japaneseText":"腕がいっぱいで太鼓もうまくなる?",
+ "englishUsText":"Do many arms make for a better drummer?",
+ "englishUsFontType":3,
+ "frenchText":"Il joue mieux, avec tant de bras ?",
+ "frenchFontType":3,
+ "italianText":"Con tante braccia è facile suonare?",
+ "italianFontType":3,
+ "germanText":"Ob man mit den vielen Armen besser trommelt?",
+ "germanFontType":3,
+ "spanishText":"¿Con tantos brazos toca mejor?",
+ "spanishFontType":3,
+ "chineseTText":"手變多了,也變得很會打太鼓?",
+ "chineseTFontType":1,
+ "koreanText":"팔이 많아서 북도 잘 치나?",
+ "koreanFontType":2,
+ "portugueseText":"Muitos braços ajudam a ser um melhor baterista?",
+ "portugueseFontType":2,
+ "russianText":"Много рук помогут сыграть лучше?",
+ "russianFontType":2,
+ "turkishText":"Çok fazla kol iyi bir davulcu yapar mı?",
+ "turkishFontType":2,
+ "arabicText":"هل أذرعه المتعددة تجعله الطبال الأفضل؟",
+ "arabicFontType":2,
+ "dutchText":"Kun je beter drummen met zo veel armen?",
+ "dutchFontType":2,
+ "chineseSText":"手变多了,也变得很会打太鼓?",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_alice",
+ "japaneseText":"不思議の国",
+ "englishUsText":"Adventures in Wonderland",
+ "englishUsFontType":3,
+ "frenchText":"Du pays des merveilles.",
+ "frenchFontType":3,
+ "italianText":"Avventure nel Paese delle meraviglie!",
+ "italianFontType":3,
+ "germanText":"Aus dem Wunderland",
+ "germanFontType":3,
+ "spanishText":"Desde el país de las maravillas",
+ "spanishFontType":3,
+ "chineseTText":"夢遊仙境",
+ "chineseTFontType":1,
+ "koreanText":"이상한 나라",
+ "koreanFontType":2,
+ "portugueseText":"País das Maravilhas",
+ "portugueseFontType":2,
+ "russianText":"Приключения в Стране чудес",
+ "russianFontType":2,
+ "turkishText":"Harikalar Diyarında Maceralar",
+ "turkishFontType":2,
+ "arabicText":"للمغامرات في بلاد العجائب",
+ "arabicFontType":2,
+ "dutchText":"Avonturen in Wonderland",
+ "dutchFontType":2,
+ "chineseSText":"梦游仙境",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_ufo",
+ "japaneseText":"遠い宇宙からやってきました",
+ "englishUsText":"From a galaxy far, far away",
+ "englishUsFontType":3,
+ "frenchText":"Il est venu d'une galaxie lointaine.",
+ "frenchFontType":3,
+ "italianText":"Arriva dallo spazio profondo",
+ "italianFontType":3,
+ "germanText":"Aus den Weiten des Alls...",
+ "germanFontType":3,
+ "spanishText":"De una galaxia muy muy lejana",
+ "spanishFontType":3,
+ "chineseTText":"從遙遠的太空來造訪了",
+ "chineseTFontType":1,
+ "koreanText":"멀리 우주에서 왔어요",
+ "koreanFontType":2,
+ "portugueseText":"Vindo de uma galáxia distante",
+ "portugueseFontType":2,
+ "russianText":"Из далекой, далекой галактики",
+ "russianFontType":2,
+ "turkishText":"Uzak, çok uzak bir galaksiden",
+ "turkishFontType":2,
+ "arabicText":"من مجرة بعيدة، بعيدة جدًا",
+ "arabicFontType":2,
+ "dutchText":"Uit een sterrenstelsel ver, ver weg",
+ "dutchFontType":2,
+ "chineseSText":"从遥远的太空来造访了",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_seafriend",
+ "japaneseText":"イソギンチャクにかくれてます",
+ "englishUsText":"Hiding behind a sea anemone",
+ "englishUsFontType":3,
+ "frenchText":"Il se cache dans une anémone des mers.",
+ "frenchFontType":3,
+ "italianText":"Si nasconde tra gli anemoni di mare",
+ "italianFontType":3,
+ "germanText":"Versteckt sich gerne in Seeanemonen.",
+ "germanFontType":3,
+ "spanishText":"Se esconde tras una anémona de mar",
+ "spanishFontType":3,
+ "chineseTText":"躲在海葵裡",
+ "chineseTFontType":1,
+ "koreanText":"말미잘 사이에 숨어있어요",
+ "koreanFontType":2,
+ "portugueseText":"Escondendo nas anêmonas do mar",
+ "portugueseFontType":2,
+ "russianText":"Прячется за морским анемоном",
+ "russianFontType":2,
+ "turkishText":"Deniz anemonunun arkasında saklanır",
+ "turkishFontType":2,
+ "arabicText":"تختبئ خلف شقائق النعمان",
+ "arabicFontType":2,
+ "dutchText":"Verstopt achter een zeeanemoon",
+ "dutchFontType":2,
+ "chineseSText":"躲在海葵里",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_ribbon_big_2",
+ "japaneseText":"ビッグでカワイイリボン",
+ "englishUsText":"It's a cute, big ribbon",
+ "englishUsFontType":3,
+ "frenchText":"Un ruban grand et mignon.",
+ "frenchFontType":3,
+ "italianText":"Un fiocco grande e carinissimo",
+ "italianFontType":3,
+ "germanText":"Eine große und niedliche Schleife.",
+ "germanFontType":3,
+ "spanishText":"Es un lazo grande y mono",
+ "spanishFontType":3,
+ "chineseTText":"又大又可愛的蝴蝶結",
+ "chineseTFontType":1,
+ "koreanText":"크고 귀여운 리본",
+ "koreanFontType":2,
+ "portugueseText":"Fita grande bonitinha",
+ "portugueseFontType":2,
+ "russianText":"Большая и милая лента",
+ "russianFontType":2,
+ "turkishText":"Sevimli, büyük bir kurdele",
+ "turkishFontType":2,
+ "arabicText":"إنه شريط كبير جدًا",
+ "arabicFontType":2,
+ "dutchText":"Het is een grote, schattige strik",
+ "dutchFontType":2,
+ "chineseSText":"又大又可爱的蝴蝶结",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_wing_gorgeous",
+ "japaneseText":"ゴールドなどんちゃんです",
+ "englishUsText":"It's a gold DON-chan",
+ "englishUsFontType":3,
+ "frenchText":"Un DON-chan doré.",
+ "frenchFontType":3,
+ "italianText":"Un DON-chan tutto d'oro",
+ "italianFontType":3,
+ "germanText":"Der goldene DON-chan.",
+ "germanFontType":3,
+ "spanishText":"Un DON-chan hecho de oro",
+ "spanishFontType":3,
+ "chineseTText":"黃金做的小咚",
+ "chineseTFontType":1,
+ "koreanText":"골드 동이입니다",
+ "koreanFontType":2,
+ "portugueseText":"DON-chan dourado",
+ "portugueseFontType":2,
+ "russianText":"Золотая Дон-тян",
+ "russianFontType":2,
+ "turkishText":"Bu bir altın DON-chan",
+ "turkishFontType":2,
+ "arabicText":"إنها دون-تشان ذهبية",
+ "arabicFontType":2,
+ "dutchText":"Het is een gouden DON-chan",
+ "dutchFontType":2,
+ "chineseSText":"黄金做的小咚",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_taiko_gorgeous",
+ "japaneseText":"そりゃもうすごく豪華",
+ "englishUsText":"Oh, you bet it's deluxe!",
+ "englishUsFontType":3,
+ "frenchText":"C'est vraiment sublime.",
+ "frenchFontType":3,
+ "italianText":"Accidenti che lusso!",
+ "italianFontType":3,
+ "germanText":"Noch prächtiger geht's nicht.",
+ "germanFontType":3,
+ "spanishText":"Oh sí, ¡esto es lujo!",
+ "spanishFontType":3,
+ "chineseTText":"實在是太豪華了",
+ "chineseTFontType":1,
+ "koreanText":"굉장히 호화로워요",
+ "koreanFontType":2,
+ "portugueseText":"Ah, isso é um luxo!",
+ "portugueseFontType":2,
+ "russianText":"Просто шикарная вещь!",
+ "russianFontType":2,
+ "turkishText":"Üst sınıf olduğuna eminsin demek!",
+ "turkishFontType":2,
+ "arabicText":"أووه، بالتأكيد فاخرة!",
+ "arabicFontType":2,
+ "dutchText":"Oh, reken maar dat het luxe is!",
+ "dutchFontType":2,
+ "chineseSText":"实在是太豪华了",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_luckydragon",
+ "japaneseText":"ラッキー!",
+ "englishUsText":"Lucky!",
+ "englishUsFontType":3,
+ "frenchText":"Chanceux !",
+ "frenchFontType":3,
+ "italianText":"Un animale propiziatorio!",
+ "italianFontType":3,
+ "germanText":"Das nenn ich Glück!",
+ "germanFontType":3,
+ "spanishText":"¡Suertudo!",
+ "spanishFontType":3,
+ "chineseTText":"太好運了!",
+ "chineseTFontType":1,
+ "koreanText":"럭키!",
+ "koreanFontType":2,
+ "portugueseText":"Sortudo!",
+ "portugueseFontType":2,
+ "russianText":"Повезло!",
+ "russianFontType":2,
+ "turkishText":"Şanslı!",
+ "turkishFontType":2,
+ "arabicText":"محظوظ!",
+ "arabicFontType":2,
+ "dutchText":"Dat is boffen!",
+ "dutchFontType":2,
+ "chineseSText":"太好运了!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_bluebird",
+ "japaneseText":"見つければしあわせに",
+ "englishUsText":"Finding it brings you happiness.",
+ "englishUsFontType":3,
+ "frenchText":"Porte bonheur si tu le trouves.",
+ "frenchFontType":3,
+ "italianText":"Se lo trovi, ti dà la felicità!",
+ "italianFontType":3,
+ "germanText":"Wer ihn findet, wird glücklich.",
+ "germanFontType":3,
+ "spanishText":"Encontrarás la felicidad si lo ves",
+ "spanishFontType":3,
+ "chineseTText":"找到牠就能變幸福",
+ "chineseTFontType":1,
+ "koreanText":"찾으면 행복해져요",
+ "koreanFontType":2,
+ "portugueseText":"Encontrá-lo traz felicidade.",
+ "portugueseFontType":2,
+ "russianText":"Если найдешь, будет тебе счастье.",
+ "russianFontType":2,
+ "turkishText":"Onu bulmak sana şans getirir.",
+ "turkishFontType":2,
+ "arabicText":"العثور عليه يجلب لك السعادة.",
+ "arabicFontType":2,
+ "dutchText":"Brengt geluk als je hem vindt.",
+ "dutchFontType":2,
+ "chineseSText":"找到它就能变幸福",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_rock",
+ "japaneseText":"ロックだぜ!",
+ "englishUsText":"Rock on, man!",
+ "englishUsFontType":3,
+ "frenchText":"C'est un roc !",
+ "frenchFontType":3,
+ "italianText":"Un sasso... e nient'altro!",
+ "italianFontType":3,
+ "germanText":"Steinhart!",
+ "germanFontType":3,
+ "spanishText":"¡Viva el rock!",
+ "spanishFontType":3,
+ "chineseTText":"太Rock了!",
+ "chineseTFontType":1,
+ "koreanText":"바위야!",
+ "koreanFontType":2,
+ "portugueseText":"Isso é rock, cara!",
+ "portugueseFontType":2,
+ "russianText":"Потряси костями!",
+ "russianFontType":2,
+ "turkishText":"Yaylan, dostum!",
+ "turkishFontType":2,
+ "arabicText":"كن صلبًا يا رجل",
+ "arabicFontType":2,
+ "dutchText":"Rock on!",
+ "dutchFontType":2,
+ "chineseSText":"太Rock了!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_candyhouse",
+ "japaneseText":"クリスマスにかざりましょう",
+ "englishUsText":"Let's decorate it this Christmas!",
+ "englishUsFontType":3,
+ "frenchText":"Une décoration pour Noël.",
+ "frenchFontType":3,
+ "italianText":"Una decorazione natalizia!",
+ "italianFontType":3,
+ "germanText":"In der Adventszeit bauen wir eins.",
+ "germanFontType":3,
+ "spanishText":"Lo adornaremos en Navidad",
+ "spanishFontType":3,
+ "chineseTText":"在聖誕節拿來裝飾吧",
+ "chineseTFontType":1,
+ "koreanText":"크리스마스에 장식해요",
+ "koreanFontType":2,
+ "portugueseText":"Vamos decorar no Natal!",
+ "portugueseFontType":2,
+ "russianText":"Украсим на Рождество!",
+ "russianFontType":2,
+ "turkishText":"Hadi Noel gibi süsleyelim!",
+ "turkishFontType":2,
+ "arabicText":"دعنا نزينه في الكريسماس!",
+ "arabicFontType":2,
+ "dutchText":"Laten we het deze kerst versieren!",
+ "dutchFontType":2,
+ "chineseSText":"在圣诞节拿来装饰吧",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_ranch",
+ "japaneseText":"モー!メー!ピー!",
+ "englishUsText":"Moo! Baa! Oink!",
+ "englishUsFontType":3,
+ "frenchText":"Meuh ! Bê ! Cocorico !",
+ "frenchFontType":3,
+ "italianText":"Bèèè! Muuu!",
+ "italianFontType":3,
+ "germanText":"Muuuh! Määääh!",
+ "germanFontType":3,
+ "spanishText":"¡Muu! ¡Bee! ¡Oink, oink!",
+ "spanishFontType":3,
+ "chineseTText":"哞~!咩~!嗶~!",
+ "chineseTFontType":1,
+ "koreanText":"음머! 메에에! 꿀꿀!",
+ "koreanFontType":2,
+ "portugueseText":"Muu! Méé! Oinc!",
+ "portugueseFontType":2,
+ "russianText":"Мее! Бее! Хрю!",
+ "russianFontType":2,
+ "turkishText":"Mööö! Beee! Ovkk!",
+ "turkishFontType":2,
+ "arabicText":"مووو! بااا! أوينك!",
+ "arabicFontType":2,
+ "dutchText":"Moe! Beh! Knor!",
+ "dutchFontType":2,
+ "chineseSText":"哞~!咩~!哔~!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_cardboard",
+ "japaneseText":"入ってると落ち着きます",
+ "englishUsText":"Relaxing to sit in",
+ "englishUsFontType":3,
+ "frenchText":"Ça me calme quand j'entre dedans.",
+ "frenchFontType":3,
+ "italianText":"Per nascondersi dai pericoli!",
+ "italianFontType":3,
+ "germanText":"Entspannend drin zu sitzen.",
+ "germanFontType":3,
+ "spanishText":"Dentro uno se relaja",
+ "spanishFontType":3,
+ "chineseTText":"待在裡面就能會靜下心來",
+ "chineseTFontType":1,
+ "koreanText":"들어가면 편안해져요",
+ "koreanFontType":2,
+ "portugueseText":"Relaxante para sentar",
+ "portugueseFontType":2,
+ "russianText":"Залезь и расслабься",
+ "russianFontType":2,
+ "turkishText":"Oturmak rahatlatır",
+ "turkishFontType":2,
+ "arabicText":"مريح عند الجلوس فيه",
+ "arabicFontType":2,
+ "dutchText":"Ik kom tot rust als ik erin zit",
+ "dutchFontType":2,
+ "chineseSText":"待在里面就能会静下心来",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_rainbow",
+ "japaneseText":"きれいな七色のアーチ",
+ "englishUsText":"It's a pretty, multicolored arch",
+ "englishUsFontType":3,
+ "frenchText":"Un très bel arc de sept couleurs.",
+ "frenchFontType":3,
+ "italianText":"Un bellissimo arco dai sette colori",
+ "italianFontType":3,
+ "germanText":"Atemberaubende Farben ...",
+ "germanFontType":3,
+ "spanishText":"Hermoso arco de siete colores",
+ "spanishFontType":3,
+ "chineseTText":"漂亮的七色拱橋",
+ "chineseTFontType":1,
+ "koreanText":"예쁜 일곱 빛깔 다리",
+ "koreanFontType":2,
+ "portugueseText":"É um arco belo e multicolorido",
+ "portugueseFontType":2,
+ "russianText":"Красивая семицветная дуга",
+ "russianFontType":2,
+ "turkishText":"Güzel, çok renkli bir yaydır",
+ "turkishFontType":2,
+ "arabicText":"إنه قوس جميل متعدد الألوان",
+ "arabicFontType":2,
+ "dutchText":"Mooie boog met zeven kleuren",
+ "dutchFontType":2,
+ "chineseSText":"漂亮的七色拱桥",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_harvest",
+ "japaneseText":"いっぱいとれたどー!!",
+ "englishUsText":"I got a bumper crop!",
+ "englishUsFontType":3,
+ "frenchText":"J'ai beaucoup récolté !!!",
+ "frenchFontType":3,
+ "italianText":"Guarda che abbondanza!",
+ "italianFontType":3,
+ "germanText":"Ein gutes Jahr!!",
+ "germanFontType":3,
+ "spanishText":"¡La cosecha de este año es de locos!",
+ "spanishFontType":3,
+ "chineseTText":"採收到好多~!!",
+ "chineseTFontType":1,
+ "koreanText":"잔뜩 수확했다~!!",
+ "koreanFontType":2,
+ "portugueseText":"Tenho uma grande colheita!",
+ "portugueseFontType":2,
+ "russianText":"Урожай удался на славу!",
+ "russianFontType":2,
+ "turkishText":"Bereketli mahsulüm var!",
+ "turkishFontType":2,
+ "arabicText":"لقد حصلت على محصول وفير!",
+ "arabicFontType":2,
+ "dutchText":"Ik heb zoveel geoogst!",
+ "dutchFontType":2,
+ "chineseSText":"采收到好多~!!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_heart",
+ "japaneseText":"ラブにあふれています",
+ "englishUsText":"Full of love",
+ "englishUsFontType":3,
+ "frenchText":"Plein d'amour.",
+ "frenchFontType":3,
+ "italianText":"Esprimono amore!",
+ "italianFontType":3,
+ "germanText":"Liebe liegt in der Luft.",
+ "germanFontType":3,
+ "spanishText":"Lleno de amor",
+ "spanishFontType":3,
+ "chineseTText":"愛意滿溢出來了",
+ "chineseTFontType":1,
+ "koreanText":"사랑이 넘쳐요",
+ "koreanFontType":2,
+ "portugueseText":"Cheio de amor",
+ "portugueseFontType":2,
+ "russianText":"Полные любви",
+ "russianFontType":2,
+ "turkishText":"Aşk Dolu",
+ "turkishFontType":2,
+ "arabicText":"مليئة بالحب",
+ "arabicFontType":2,
+ "dutchText":"Vol van liefde",
+ "dutchFontType":2,
+ "chineseSText":"爱意满溢出来了",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_jk",
+ "japaneseText":"キャッキャッキャッキャ",
+ "englishUsText":"Like, omigosh!",
+ "englishUsFontType":3,
+ "frenchText":"Irrésistible auprès des filles.",
+ "frenchFontType":3,
+ "italianText":"Aaaah, com'è carino!",
+ "italianFontType":3,
+ "germanText":"Hihi, kicher!",
+ "germanFontType":3,
+ "spanishText":"Ya sabes, lo más, ¿o no?",
+ "spanishFontType":3,
+ "chineseTText":"嘻呀嘻呀嘻呀嘻呀",
+ "chineseTFontType":1,
+ "koreanText":"꺅 꺅 꺅 꺅",
+ "koreanFontType":2,
+ "portugueseText":"Tipo, oh meu deus!",
+ "portugueseFontType":2,
+ "russianText":"Ой, какая милота! Ми-ми-ми!",
+ "russianFontType":2,
+ "turkishText":"Aman tanrım!",
+ "turkishFontType":2,
+ "arabicText":"أووووه، جميل!",
+ "arabicFontType":2,
+ "dutchText":"Echt, oh mijn god!",
+ "dutchFontType":2,
+ "chineseSText":"嘻呀嘻呀嘻呀嘻呀",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_solarsystem",
+ "japaneseText":"宇宙が広がります",
+ "englishUsText":"Space: the very last frontier",
+ "englishUsFontType":3,
+ "frenchText":"L'univers est vaste.",
+ "frenchFontType":3,
+ "italianText":"Sperduti nell'immensità dello spazio",
+ "italianFontType":3,
+ "germanText":"Faszinierend, das Weltall.",
+ "germanFontType":3,
+ "spanishText":"El espacio: la última frontera",
+ "spanishFontType":3,
+ "chineseTText":"太空廣闊無垠",
+ "chineseTFontType":1,
+ "koreanText":"우주가 펼쳐져요",
+ "koreanFontType":2,
+ "portugueseText":"Espaço: a última fronteira",
+ "portugueseFontType":2,
+ "russianText":"Космос: последний рубеж",
+ "russianFontType":2,
+ "turkishText":"Uzay: son sınır",
+ "turkishFontType":2,
+ "arabicText":"الفضاء: الحدود اللانهائية",
+ "arabicFontType":2,
+ "dutchText":"De ruimte: er valt nog veel te ontdekken",
+ "dutchFontType":2,
+ "chineseSText":"太空广阔无垠",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_cat_meeting",
+ "japaneseText":"哲学論議がさかんです",
+ "englishUsText":"Philosophy-wise, we're the cat's meow",
+ "englishUsFontType":3,
+ "frenchText":"Ils parlent de sujets philosophiques.",
+ "frenchFontType":3,
+ "italianText":"Parleranno di filosofia?",
+ "italianFontType":3,
+ "germanText":"Philosophische Diskussionen",
+ "germanFontType":3,
+ "spanishText":"Diálogos gatunos",
+ "spanishFontType":3,
+ "chineseTText":"熱烈討論著哲學",
+ "chineseTFontType":1,
+ "koreanText":"철학적인 토론이 벌어지고 있어요",
+ "koreanFontType":2,
+ "portugueseText":"Filosoficamente, somos o miado do gato",
+ "portugueseFontType":2,
+ "russianText":"Мудрость тебе кот намяучит",
+ "russianFontType":2,
+ "turkishText":"Felsefik olarak, miyavlayan kedileriz",
+ "turkishFontType":2,
+ "arabicText":"فلسفيًا، نحن مواء القطط",
+ "arabicFontType":2,
+ "dutchText":"Ze voeren diepe filosofische gesprekken",
+ "dutchFontType":2,
+ "chineseSText":"热烈讨论着哲学",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_rich",
+ "japaneseText":"余っちゃってもうー",
+ "englishUsText":"Swimming in cash",
+ "englishUsFontType":3,
+ "frenchText":"Il nage dans le luxe !",
+ "frenchFontType":3,
+ "italianText":"Quanti soldi!",
+ "italianFontType":3,
+ "germanText":"Wohin mit diesen Scheinchen?!",
+ "germanFontType":3,
+ "spanishText":"El dinero me sale por las orejas",
+ "spanishFontType":3,
+ "chineseTText":"錢太多啦,真是的~",
+ "chineseTFontType":1,
+ "koreanText":"써도 써도 남네요~",
+ "koreanFontType":2,
+ "portugueseText":"Nadando em dinheiro",
+ "portugueseFontType":2,
+ "russianText":"Купается в деньгах",
+ "russianFontType":2,
+ "turkishText":"Para içinde yüzer",
+ "turkishFontType":2,
+ "arabicText":"أسبح في النقود",
+ "arabicFontType":2,
+ "dutchText":"Zwemmen in het geld",
+ "dutchFontType":2,
+ "chineseSText":"钱太多啦,真是的~",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_fireman",
+ "japaneseText":"お江戸のヒーロー",
+ "englishUsText":"Heroes of the Edo Era",
+ "englishUsFontType":3,
+ "frenchText":"Le héros de l'ère Edo.",
+ "frenchFontType":3,
+ "italianText":"Un eroe della vecchia Edo!",
+ "italianFontType":3,
+ "germanText":"Der Held im alten Edo.",
+ "germanFontType":3,
+ "spanishText":"Héroes de la era Edo",
+ "spanishFontType":3,
+ "chineseTText":"江戶的英雄",
+ "chineseTFontType":1,
+ "koreanText":"에도시대의 히어로",
+ "koreanFontType":2,
+ "portugueseText":"Herói da era de Edo",
+ "portugueseFontType":2,
+ "russianText":"Герои эпохи Эдо",
+ "russianFontType":2,
+ "turkishText":"Edo Çağının Kahramanları",
+ "turkishFontType":2,
+ "arabicText":"أبطال حقبة الإدو",
+ "arabicFontType":2,
+ "dutchText":"Helden de Edoperiode",
+ "dutchFontType":2,
+ "chineseSText":"江户的英雄",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_dk",
+ "japaneseText":"ウッスウッスウッスウッス",
+ "englishUsText":"Duuuuude!",
+ "englishUsFontType":3,
+ "frenchText":"Irrésistible auprès des garçons.",
+ "frenchFontType":3,
+ "italianText":"Ehilà, come ti butta?",
+ "italianFontType":3,
+ "germanText":"Ey, Alter, alles klar?",
+ "germanFontType":3,
+ "spanishText":"¡La cañaaaa!",
+ "spanishFontType":3,
+ "chineseTText":"你好你好你好你好",
+ "chineseTFontType":1,
+ "koreanText":"이얍 이얍 이얍 이얍",
+ "koreanFontType":2,
+ "portugueseText":"Caaaaaara!",
+ "portugueseFontType":2,
+ "russianText":"Чува-а-а-ак!",
+ "russianFontType":2,
+ "turkishText":"İşte bu adamım!",
+ "turkishFontType":2,
+ "arabicText":"دووودي!",
+ "arabicFontType":2,
+ "dutchText":"Duuuuude!",
+ "dutchFontType":2,
+ "chineseSText":"你好你好你好你好",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_mushroom",
+ "japaneseText":"鍋に入れるとおいしいやつです",
+ "englishUsText":"These are tasty in stews",
+ "englishUsFontType":3,
+ "frenchText":"Ils sont très bons avec du beurre.",
+ "frenchFontType":3,
+ "italianText":"Ci si prepara una zuppa favolosa!",
+ "italianFontType":3,
+ "germanText":"Sie machen sich gut im Topfgericht.",
+ "germanFontType":3,
+ "spanishText":"Deliciosas en un guiso",
+ "spanishFontType":3,
+ "chineseTText":"放進火鍋會很好吃",
+ "chineseTFontType":1,
+ "koreanText":"전골에 넣으면 맛있어요",
+ "koreanFontType":2,
+ "portugueseText":"Cozidos são uma delícia",
+ "portugueseFontType":2,
+ "russianText":"Отлично сочетаются с мясом",
+ "russianFontType":2,
+ "turkishText":"Yahnide güzel olurlar",
+ "turkishFontType":2,
+ "arabicText":"لذيذ في الطبخ",
+ "arabicFontType":2,
+ "dutchText":"Deze zijn heerlijk in stoofpotjes",
+ "dutchFontType":2,
+ "chineseSText":"放进火锅会很好吃",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_yakisoba",
+ "japaneseText":"やきそば一丁あがり!",
+ "englishUsText":"Yakisoba, order up!",
+ "englishUsFontType":3,
+ "frenchText":"Un yakisoba est prêt !",
+ "frenchFontType":3,
+ "italianText":"Gli yakisoba sono pronti!",
+ "italianFontType":3,
+ "germanText":"Ihre Bratnudeln sind fertig!",
+ "germanFontType":3,
+ "spanishText":"¡Ya están listos!",
+ "spanishFontType":3,
+ "chineseTText":"炒麵一份好了!",
+ "chineseTFontType":1,
+ "koreanText":"야키소바 나왔습니다!",
+ "koreanFontType":2,
+ "portugueseText":"Yakisoba, pode pedir!",
+ "portugueseFontType":2,
+ "russianText":"Порция якисобы готова!",
+ "russianFontType":2,
+ "turkishText":"Yakisoba, siparişleri takip et!",
+ "turkishFontType":2,
+ "arabicText":"أطلبوا الياكيسوبا!",
+ "arabicFontType":2,
+ "dutchText":"Één yakisoba graag!",
+ "dutchFontType":2,
+ "chineseSText":"炒面一份好了!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_carp",
+ "japaneseText":"5月5日はこいのぼり",
+ "englishUsText":"We fly carp streamers on Children's Day",
+ "englishUsFontType":3,
+ "frenchText":"Pour la journée des enfants.",
+ "frenchFontType":3,
+ "italianText":"Decorazioni giapponesi di inizio maggio",
+ "italianFontType":3,
+ "germanText":"Das gehört zum Kinderfest am 5. Mai.",
+ "germanFontType":3,
+ "spanishText":"Perfectas para el día del niño",
+ "spanishFontType":3,
+ "chineseTText":"5月5日要拿出鯉魚旗",
+ "chineseTFontType":1,
+ "koreanText":"일본은 5월 5일 하면 잉어 깃발",
+ "koreanFontType":2,
+ "portugueseText":"Jogamos koinobori no Dia das Crianças",
+ "portugueseFontType":2,
+ "russianText":"Флаги-карпы в честь Дня Детей",
+ "russianFontType":2,
+ "turkishText":"Çocuklar Günü'nde sazan balığı uçururuz",
+ "turkishFontType":2,
+ "arabicText":"نجعل رايات الشبوط تطير في يوم الطفل",
+ "arabicFontType":2,
+ "dutchText":"We hangen karpervlaggen uit op Kinderdag",
+ "dutchFontType":2,
+ "chineseSText":"5月5日要拿出鲤鱼旗",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_aquarium",
+ "japaneseText":"小さな水族館",
+ "englishUsText":"A tiny aquarium",
+ "englishUsFontType":3,
+ "frenchText":"Un petit aquarium.",
+ "frenchFontType":3,
+ "italianText":"Contiene mille pesci colorati",
+ "italianFontType":3,
+ "germanText":"Ein kleines Fischmuseum.",
+ "germanFontType":3,
+ "spanishText":"Un pequeño acuario",
+ "spanishFontType":3,
+ "chineseTText":"小小水族館",
+ "chineseTFontType":1,
+ "koreanText":"작은 수족관",
+ "koreanFontType":2,
+ "portugueseText":"Aquário pequeno",
+ "portugueseFontType":2,
+ "russianText":"Мини-океанариум",
+ "russianFontType":2,
+ "turkishText":"Küçük bir akvaryum",
+ "turkishFontType":2,
+ "arabicText":"حوض سمك صغير",
+ "arabicFontType":2,
+ "dutchText":"Een klein aquarium",
+ "dutchFontType":2,
+ "chineseSText":"小小水族馆",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_bread",
+ "japaneseText":"こんがり焼き立て!",
+ "englishUsText":"Hot out of the oven!",
+ "englishUsFontType":3,
+ "frenchText":"Fraîchement cuit !",
+ "frenchFontType":3,
+ "italianText":"Ben dorato!",
+ "italianFontType":3,
+ "germanText":"Frisch aus dem Toaster!",
+ "germanFontType":3,
+ "spanishText":"¡Recién salido del horno!",
+ "spanishFontType":3,
+ "chineseTText":"烤成金黃色!",
+ "chineseTFontType":1,
+ "koreanText":"갓 구웠어요!",
+ "koreanFontType":2,
+ "portugueseText":"Acabou de sair do forno!",
+ "portugueseFontType":2,
+ "russianText":"Румяный и ароматный, с пылу с жару!",
+ "russianFontType":2,
+ "turkishText":"Fırından yeni çıkmış!",
+ "turkishFontType":2,
+ "arabicText":"بني وساخن من الفرن مباشرة!",
+ "arabicFontType":2,
+ "dutchText":"Vers uit de oven!",
+ "dutchFontType":2,
+ "chineseSText":"烤成金黄色!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_rickshaw",
+ "japaneseText":"お客さん!どこまで行きましょう",
+ "englishUsText":"Where to, buddy?",
+ "englishUsFontType":3,
+ "frenchText":"Où souhaitez-vous aller ?",
+ "frenchFontType":3,
+ "italianText":"Dove ti porto?",
+ "italianFontType":3,
+ "germanText":"Wohin soll es gehen?",
+ "germanFontType":3,
+ "spanishText":"¿A dónde quiere ir, amigo?",
+ "spanishFontType":3,
+ "chineseTText":"客人!您要去哪裡",
+ "chineseTFontType":1,
+ "koreanText":"손님! 어디까지 갈까요?",
+ "koreanFontType":2,
+ "portugueseText":"Aonde vamos?",
+ "portugueseFontType":2,
+ "russianText":"Куда везти?",
+ "russianFontType":2,
+ "turkishText":"Nereye?",
+ "turkishFontType":2,
+ "arabicText":"إلى أين يا صديقي؟",
+ "arabicFontType":2,
+ "dutchText":"Waar wil je heen, maat?",
+ "dutchFontType":2,
+ "chineseSText":"客人!您要去哪里",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_natto",
+ "japaneseText":"ねばねばがうまいです",
+ "englishUsText":"It's slimy, but delicious",
+ "englishUsFontType":3,
+ "frenchText":"Collant et délicieux.",
+ "frenchFontType":3,
+ "italianText":"Fagioli di soia fermentati",
+ "italianFontType":3,
+ "germanText":"Das klebt so herrlich.",
+ "germanFontType":3,
+ "spanishText":"Viscoso, ¡pero delicioso!",
+ "spanishFontType":3,
+ "chineseTText":"黏糊糊才好吃",
+ "chineseTFontType":1,
+ "koreanText":"끈적끈적 맛있어요",
+ "koreanFontType":2,
+ "portugueseText":"Pegajoso, mas gostoso",
+ "portugueseFontType":2,
+ "russianText":"Склизкие, но вкусные",
+ "russianFontType":2,
+ "turkishText":"Yapışkan ama lezzetli",
+ "turkishFontType":2,
+ "arabicText":"لزجة لكنها لذيذة",
+ "arabicFontType":2,
+ "dutchText":"Het is wat slijmerig, maar wel lekker",
+ "dutchFontType":2,
+ "chineseSText":"黏糊糊才好吃",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_shachihoko",
+ "japaneseText":"日本のお城の守り神",
+ "englishUsText":"The guardian deity of a Japanese castle",
+ "englishUsFontType":3,
+ "frenchText":"Le gardien des châteaux japonais.",
+ "frenchFontType":3,
+ "italianText":"Protettore dei castelli giapponesi",
+ "italianFontType":3,
+ "germanText":"Schutzpatrone japanischer Schlösser.",
+ "germanFontType":3,
+ "spanishText":"Dios guardián de un castillo japonés",
+ "spanishFontType":3,
+ "chineseTText":"日本城堡的守護神",
+ "chineseTFontType":1,
+ "koreanText":"일본 성의 수호신",
+ "koreanFontType":2,
+ "portugueseText":"Deus guardião de um castelo japonês",
+ "portugueseFontType":2,
+ "russianText":"Бог-защитник крепостей",
+ "russianFontType":2,
+ "turkishText":"Bir Japon kalesinin muhafızı",
+ "turkishFontType":2,
+ "arabicText":"الحامي الوصي للقلعة اليابانية",
+ "arabicFontType":2,
+ "dutchText":"De beschermgod van een Japans kasteel",
+ "dutchFontType":2,
+ "chineseSText":"日本城堡的守护神",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_helicopter",
+ "japaneseText":"とんでいきたい気分です",
+ "englishUsText":"I'm in the mood for flying",
+ "englishUsFontType":3,
+ "frenchText":"J'ai envie de m'envoler.",
+ "frenchFontType":3,
+ "italianText":"Così sembra di volare!",
+ "italianFontType":3,
+ "germanText":"Ich möchte gleich losfliegen.",
+ "germanFontType":3,
+ "spanishText":"Estoy por irme volando",
+ "spanishFontType":3,
+ "chineseTText":"想要飛走的感覺",
+ "chineseTFontType":1,
+ "koreanText":"날아가고 싶어요",
+ "koreanFontType":2,
+ "portugueseText":"Tô afim de sair voando",
+ "portugueseFontType":2,
+ "russianText":"Хочу полетать!",
+ "russianFontType":2,
+ "turkishText":"Uçma modundayım",
+ "turkishFontType":2,
+ "arabicText":" أنا في مزاج الطيران",
+ "arabicFontType":2,
+ "dutchText":"Ik wil vliegen",
+ "dutchFontType":2,
+ "chineseSText":"想要飞走的感觉",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_submarine",
+ "japaneseText":"深い海を潜れます",
+ "englishUsText":"I can go deep under water",
+ "englishUsFontType":3,
+ "frenchText":"L'expert des abysses.",
+ "frenchFontType":3,
+ "italianText":"Si immerge negli abissi",
+ "italianFontType":3,
+ "germanText":"Abtauchen bis zum Meeresgrund.",
+ "germanFontType":3,
+ "spanishText":"Sumerjámonos en el mar",
+ "spanishFontType":3,
+ "chineseTText":"可以潛入深海",
+ "chineseTFontType":1,
+ "koreanText":"깊은 바다에 잠수할 수 있어요",
+ "koreanFontType":2,
+ "portugueseText":"Eu posso mergulhar fundo",
+ "portugueseFontType":2,
+ "russianText":"Нырну в глубокое море",
+ "russianFontType":2,
+ "turkishText":"Su altında derine gidebilirim",
+ "turkishFontType":2,
+ "arabicText":" يمكنني الغوص بعمق تحت الماء",
+ "arabicFontType":2,
+ "dutchText":"Ik ga diep onderwater",
+ "dutchFontType":2,
+ "chineseSText":"可以潜入深海",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_ichigo_kigurumi",
+ "japaneseText":"甘くておおきいイチゴです",
+ "englishUsText":"I'm a big, sweet strawberry",
+ "englishUsFontType":3,
+ "frenchText":"Une grosse fraise sucrée.",
+ "frenchFontType":3,
+ "italianText":"Una fragola gigante!",
+ "italianFontType":3,
+ "germanText":"Eine große, süße Erdbeere.",
+ "germanFontType":3,
+ "spanishText":"Enorme fresa dulzona",
+ "spanishFontType":3,
+ "chineseTText":"又甜又大顆的草莓",
+ "chineseTFontType":1,
+ "koreanText":"달콤하고 큰 딸기예요",
+ "koreanFontType":2,
+ "portugueseText":"Sou um morango grande e doce",
+ "portugueseFontType":2,
+ "russianText":"Сладкая и большая клубника",
+ "russianFontType":2,
+ "turkishText":"Büyük ve leziz bir çileğim",
+ "turkishFontType":2,
+ "arabicText":" أنا فراولة كبيرة وشهية",
+ "arabicFontType":2,
+ "dutchText":"Ik ben een zoete aardbei",
+ "dutchFontType":2,
+ "chineseSText":"又甜又大颗的草莓",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_castle",
+ "japaneseText":"日本のお城です",
+ "englishUsText":"I'm a Japanese castle",
+ "englishUsFontType":3,
+ "frenchText":"Un château japonais.",
+ "frenchFontType":3,
+ "italianText":"Un castello giapponese",
+ "italianFontType":3,
+ "germanText":"Ein japanisches Schloss.",
+ "germanFontType":3,
+ "spanishText":"Castillo japonés",
+ "spanishFontType":3,
+ "chineseTText":"日本的城堡",
+ "chineseTFontType":1,
+ "koreanText":"일본의 성입니다",
+ "koreanFontType":2,
+ "portugueseText":"Sou um castelo japonês",
+ "portugueseFontType":2,
+ "russianText":"Японский замок",
+ "russianFontType":2,
+ "turkishText":"Japon bir kaleyim",
+ "turkishFontType":2,
+ "arabicText":" أنا قلعة يابانية",
+ "arabicFontType":2,
+ "dutchText":"Ik ben een Japans kasteel",
+ "dutchFontType":2,
+ "chineseSText":"日本的城堡",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_shark",
+ "japaneseText":"海の王者",
+ "englishUsText":"King of the Ocean",
+ "englishUsFontType":3,
+ "frenchText":"Le roi des océans.",
+ "frenchFontType":3,
+ "italianText":"Il re del mare",
+ "italianFontType":3,
+ "germanText":"Der König der Meere.",
+ "germanFontType":3,
+ "spanishText":"El rey de la mar",
+ "spanishFontType":3,
+ "chineseTText":"海中王者",
+ "chineseTFontType":1,
+ "koreanText":"바다의 왕",
+ "koreanFontType":2,
+ "portugueseText":"Rei dos mares",
+ "portugueseFontType":2,
+ "russianText":"Королева морей",
+ "russianFontType":2,
+ "turkishText":"Okyanusun Kralı",
+ "turkishFontType":2,
+ "arabicText":" أنا ملك المحيط",
+ "arabicFontType":2,
+ "dutchText":"Koning van de oceaan",
+ "dutchFontType":2,
+ "chineseSText":"海中王者",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_sushi",
+ "japaneseText":"新鮮なネタがのってます",
+ "englishUsText":"I've got fresh goodies on top",
+ "englishUsFontType":3,
+ "frenchText":"Fait de produits frais.",
+ "frenchFontType":3,
+ "italianText":"Solo ingredienti freschi",
+ "italianFontType":3,
+ "germanText":"Mit frischem Fisch belegt.",
+ "germanFontType":3,
+ "spanishText":"Género fresco, fresco",
+ "spanishFontType":3,
+ "chineseTText":"上面放了新鮮的食材",
+ "chineseTFontType":1,
+ "koreanText":"신선한 재료가 올라가 있어요",
+ "koreanFontType":2,
+ "portugueseText":"Tenho peixe fresco",
+ "portugueseFontType":2,
+ "russianText":"Только свежатинка",
+ "russianFontType":2,
+ "turkishText":"Üstte taze malzemem var",
+ "turkishFontType":2,
+ "arabicText":" فوقي مكونات طازجة",
+ "arabicFontType":2,
+ "dutchText":"Verse lekkernijen erbovenop",
+ "dutchFontType":2,
+ "chineseSText":"上面放了新鲜的食材",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_burger",
+ "japaneseText":"ジューシーなパティととろけるチーズ!",
+ "englishUsText":"A juicy patty and melty cheese!",
+ "englishUsFontType":3,
+ "frenchText":"Viande et fromage !",
+ "frenchFontType":3,
+ "italianText":"Con tanto formaggio filante!",
+ "italianFontType":3,
+ "germanText":"Saftiges Fleisch und viel Käse!",
+ "germanFontType":3,
+ "spanishText":"Jugosa carne y queso fundido",
+ "spanishFontType":3,
+ "chineseTText":"多汁的肉排與融化的起司!",
+ "chineseTFontType":1,
+ "koreanText":"육즙 가득한 패티와 치즈!",
+ "koreanFontType":2,
+ "portugueseText":"Queijo derretido e suculento!",
+ "portugueseFontType":2,
+ "russianText":"Сочная котлета и ароматный сыр!",
+ "russianFontType":2,
+ "turkishText":"Enfes köfte ve erimiş peynir!",
+ "turkishFontType":2,
+ "arabicText":" شريحة لحم لذيذة وجبن ذائبة!",
+ "arabicFontType":2,
+ "dutchText":"Malse burgers en zachte kaas!",
+ "dutchFontType":2,
+ "chineseSText":"多汁的肉排与融化的芝士!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_apple",
+ "japaneseText":"まっかなりんご",
+ "englishUsText":"A bright red apple",
+ "englishUsFontType":3,
+ "frenchText":"Une belle pomme.",
+ "frenchFontType":3,
+ "italianText":"Rossa e tonda!",
+ "italianFontType":3,
+ "germanText":"Knallrot und gesund.",
+ "germanFontType":3,
+ "spanishText":"Una manzana roja y brillante",
+ "spanishFontType":3,
+ "chineseTText":"鮮紅的蘋果",
+ "chineseTFontType":1,
+ "koreanText":"새빨간 사과",
+ "koreanFontType":2,
+ "portugueseText":"Uma maçã vermelhinha",
+ "portugueseFontType":2,
+ "russianText":"Красное яблоко",
+ "russianFontType":2,
+ "turkishText":"Parlak kırmızı bir elma",
+ "turkishFontType":2,
+ "arabicText":" تفاحة حمراء لامعة",
+ "arabicFontType":2,
+ "dutchText":"Een knalrode appel",
+ "dutchFontType":2,
+ "chineseSText":"鲜红的苹果",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_drum",
+ "japaneseText":"ビートをきざめます",
+ "englishUsText":"Become one with the beat",
+ "englishUsFontType":3,
+ "frenchText":"Pour donner le rythme.",
+ "frenchFontType":3,
+ "italianText":"Per tenere il ritmo!",
+ "italianFontType":3,
+ "germanText":"Her mit den Beats!",
+ "germanFontType":3,
+ "spanishText":"Fúndete con el ritmo",
+ "spanishFontType":3,
+ "chineseTText":"打出節奏",
+ "chineseTFontType":1,
+ "koreanText":"비트를 만들어요",
+ "koreanFontType":2,
+ "portugueseText":"Marca o compasso",
+ "portugueseFontType":2,
+ "russianText":"Бейте в такт",
+ "russianFontType":2,
+ "turkishText":"Notayla bir olur",
+ "turkishFontType":2,
+ "arabicText":" توحدوا مع الإيقاع",
+ "arabicFontType":2,
+ "dutchText":"Word één met de beat",
+ "dutchFontType":2,
+ "chineseSText":"打出节奏",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_meat",
+ "japaneseText":"あの肉です",
+ "englishUsText":"Just like the cartoons",
+ "englishUsFontType":3,
+ "frenchText":"C'est de la viande.",
+ "frenchFontType":3,
+ "italianText":"Non si mangia però!",
+ "italianFontType":3,
+ "germanText":"Dieses Fleisch.",
+ "germanFontType":3,
+ "spanishText":"Como la de los cómics",
+ "spanishFontType":3,
+ "chineseTText":"就是那個肉",
+ "chineseTFontType":1,
+ "koreanText":"만화 고기예요",
+ "koreanFontType":2,
+ "portugueseText":"Igual nos quadrinhos",
+ "portugueseFontType":2,
+ "russianText":"Вкусное мясо",
+ "russianFontType":2,
+ "turkishText":"Çizgi filmdeki but gibi",
+ "turkishFontType":2,
+ "arabicText":" مثل قطعة اللحم في الكارتون",
+ "arabicFontType":2,
+ "dutchText":"Net als de tekenfilms",
+ "dutchFontType":2,
+ "chineseSText":"就是那个肉",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_treasureboat",
+ "japaneseText":"お宝まんさい",
+ "englishUsText":"It's packed with treasure",
+ "englishUsFontType":3,
+ "frenchText":"Plein de trésors.",
+ "frenchFontType":3,
+ "italianText":"Contiene tesori a non finire!",
+ "italianFontType":3,
+ "germanText":"Überall Schatzkisten.",
+ "germanFontType":3,
+ "spanishText":"Está lleno de tesoros",
+ "spanishFontType":3,
+ "chineseTText":"滿載而歸",
+ "chineseTFontType":1,
+ "koreanText":"보물이 한가득",
+ "koreanFontType":2,
+ "portugueseText":"Está cheio de tesouros",
+ "portugueseFontType":2,
+ "russianText":"Забит сокровищами",
+ "russianFontType":2,
+ "turkishText":"Hazineyle doludur",
+ "turkishFontType":2,
+ "arabicText":" أنا محملة بالكنوز",
+ "arabicFontType":2,
+ "dutchText":"Het zit bomvol schatten",
+ "dutchFontType":2,
+ "chineseSText":"满载而归",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_ghost_kigurumi",
+ "japaneseText":"オバケだぞー",
+ "englishUsText":"I'm a ghost! Booo!",
+ "englishUsFontType":3,
+ "frenchText":"Bouh, je suis un fantôme…",
+ "frenchFontType":3,
+ "italianText":"Aiuto, un fantasma!",
+ "italianFontType":3,
+ "germanText":"Huibuuuh!",
+ "germanFontType":3,
+ "spanishText":"¡Buuu! ¡Fuera de esta casa!",
+ "spanishFontType":3,
+ "chineseTText":"是鬼怪喔~",
+ "chineseTFontType":1,
+ "koreanText":"유령이다~",
+ "koreanFontType":2,
+ "portugueseText":"Sou um fantasma! Booo!",
+ "portugueseFontType":2,
+ "russianText":"Я призрак, бу!",
+ "russianFontType":2,
+ "turkishText":"Ben bir hayaletim! Bööö!",
+ "turkishFontType":2,
+ "arabicText":" أنا شبح! بوووو!",
+ "arabicFontType":2,
+ "dutchText":"Boe, ik ben een spook!",
+ "dutchFontType":2,
+ "chineseSText":"是鬼怪哦~",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_don",
+ "japaneseText":"どんちゃんカラー",
+ "englishUsText":"DON-chan in his usual colors",
+ "englishUsFontType":3,
+ "frenchText":"La couleur de DON-chan.",
+ "frenchFontType":3,
+ "italianText":"Il colore di DON-chan",
+ "italianFontType":3,
+ "germanText":"DON-chan-Farbe",
+ "germanFontType":3,
+ "spanishText":"DON-DON-chan de color normal",
+ "spanishFontType":3,
+ "chineseTText":"小咚色",
+ "chineseTFontType":1,
+ "koreanText":"동이 컬러",
+ "koreanFontType":2,
+ "portugueseText":"Cores tradicionais do DON-chan",
+ "portugueseFontType":2,
+ "russianText":"Обычный Дон-тян",
+ "russianFontType":2,
+ "turkishText":"DON-chan bilinen renklerinde",
+ "turkishFontType":2,
+ "arabicText":" دون-تشان بألوانه المعتادة",
+ "arabicFontType":2,
+ "dutchText":"DON-chan in zijn normale kleuren",
+ "dutchFontType":2,
+ "chineseSText":"小咚色",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_katsu",
+ "japaneseText":"かっちゃんカラー",
+ "englishUsText":"KATSU-chan in his usual colors",
+ "englishUsFontType":3,
+ "frenchText":"La couleur de KATSU-chan.",
+ "frenchFontType":3,
+ "italianText":"Il colore di KATSU-chan",
+ "italianFontType":3,
+ "germanText":"KATSU-chan-Farbe",
+ "germanFontType":3,
+ "spanishText":"KATSU-chan de color normal",
+ "spanishFontType":3,
+ "chineseTText":"小咔色",
+ "chineseTFontType":1,
+ "koreanText":"딱이 컬러",
+ "koreanFontType":2,
+ "portugueseText":"Cores tradicionais do KATSU-chan",
+ "portugueseFontType":2,
+ "russianText":"Обычный Ка-тян",
+ "russianFontType":2,
+ "turkishText":"KATSU-chan bilinen renklerinde",
+ "turkishFontType":2,
+ "arabicText":" كاتسو-تشان بألوانه المعتادة",
+ "arabicFontType":2,
+ "dutchText":"KATSU-chan in normale kleuren",
+ "dutchFontType":2,
+ "chineseSText":"小咔色",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_yellow_1",
+ "japaneseText":"きいろシリーズ 1/5",
+ "englishUsText":"Yellow Series 1/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de jaunes 1/5.",
+ "frenchFontType":3,
+ "italianText":"Serie giallo 1/5",
+ "italianFontType":3,
+ "germanText":"Gelb-Serie 1/5",
+ "germanFontType":3,
+ "spanishText":"Serie amarilla 1/5",
+ "spanishFontType":3,
+ "chineseTText":"黃色系列 1/5",
+ "chineseTFontType":1,
+ "koreanText":"노란색 시리즈 1/5",
+ "koreanFontType":2,
+ "portugueseText":"Série amarela 1/5",
+ "portugueseFontType":2,
+ "russianText":"Желтая серия 1/5",
+ "russianFontType":2,
+ "turkishText":"Sarı Seriler 1/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأصفر 1/5",
+ "arabicFontType":2,
+ "dutchText":"Geel reeks 1/5",
+ "dutchFontType":2,
+ "chineseSText":"黄色系列 1/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_yellow_2",
+ "japaneseText":"きいろシリーズ 2/5",
+ "englishUsText":"Yellow Series 2/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de jaunes 2/5.",
+ "frenchFontType":3,
+ "italianText":"Serie giallo 2/5",
+ "italianFontType":3,
+ "germanText":"Gelb-Serie 2/5",
+ "germanFontType":3,
+ "spanishText":"Serie amarilla 2/5",
+ "spanishFontType":3,
+ "chineseTText":"黃色系列 2/5",
+ "chineseTFontType":1,
+ "koreanText":"노란색 시리즈 2/5",
+ "koreanFontType":2,
+ "portugueseText":"Série amarela 2/5",
+ "portugueseFontType":2,
+ "russianText":"Желтая серия 2/5",
+ "russianFontType":2,
+ "turkishText":"Sarı Seriler 2/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأصفر 2/5",
+ "arabicFontType":2,
+ "dutchText":"Geel reeks 2/5",
+ "dutchFontType":2,
+ "chineseSText":"黄色系列 2/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_yellow_3",
+ "japaneseText":"きいろシリーズ 3/5",
+ "englishUsText":"Yellow Series 3/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de jaunes 3/5.",
+ "frenchFontType":3,
+ "italianText":"Serie giallo 3/5",
+ "italianFontType":3,
+ "germanText":"Gelb-Serie 3/5",
+ "germanFontType":3,
+ "spanishText":"Serie amarilla 3/5",
+ "spanishFontType":3,
+ "chineseTText":"黃色系列 3/5",
+ "chineseTFontType":1,
+ "koreanText":"노란색 시리즈 3/5",
+ "koreanFontType":2,
+ "portugueseText":"Série amarela 3/5",
+ "portugueseFontType":2,
+ "russianText":"Желтая серия 3/5",
+ "russianFontType":2,
+ "turkishText":"Sarı Seriler 3/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأصفر 3/5",
+ "arabicFontType":2,
+ "dutchText":"Geel reeks 3/5",
+ "dutchFontType":2,
+ "chineseSText":"黄色系列 3/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_yellow_4",
+ "japaneseText":"きいろシリーズ 4/5",
+ "englishUsText":"Yellow Series 4/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de jaunes 4/5.",
+ "frenchFontType":3,
+ "italianText":"Serie giallo 4/5",
+ "italianFontType":3,
+ "germanText":"Gelb-Serie 4/5",
+ "germanFontType":3,
+ "spanishText":"Serie amarilla 4/5",
+ "spanishFontType":3,
+ "chineseTText":"黃色系列 4/5",
+ "chineseTFontType":1,
+ "koreanText":"노란색 시리즈 4/5",
+ "koreanFontType":2,
+ "portugueseText":"Série amarela 4/5",
+ "portugueseFontType":2,
+ "russianText":"Желтая серия 4/5",
+ "russianFontType":2,
+ "turkishText":"Sarı Seriler 4/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأصفر 4/5",
+ "arabicFontType":2,
+ "dutchText":"Geel reeks 4/5",
+ "dutchFontType":2,
+ "chineseSText":"黄色系列 4/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_yellow_5",
+ "japaneseText":"きいろシリーズ 5/5",
+ "englishUsText":"Yellow Series 5/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de jaunes 5/5.",
+ "frenchFontType":3,
+ "italianText":"Serie giallo 5/5",
+ "italianFontType":3,
+ "germanText":"Gelb-Serie 5/5",
+ "germanFontType":3,
+ "spanishText":"Serie amarilla 5/5",
+ "spanishFontType":3,
+ "chineseTText":"黃色系列 5/5",
+ "chineseTFontType":1,
+ "koreanText":"노란색 시리즈 5/5",
+ "koreanFontType":2,
+ "portugueseText":"Série amarela 5/5",
+ "portugueseFontType":2,
+ "russianText":"Желтая серия 5/5",
+ "russianFontType":2,
+ "turkishText":"Sarı Seriler 5/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأصفر 5/5",
+ "arabicFontType":2,
+ "dutchText":"Geel reeks 5/5",
+ "dutchFontType":2,
+ "chineseSText":"黄色系列 5/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_l_green_1",
+ "japaneseText":"きみどりシリーズ 1/5",
+ "englishUsText":"Greenish-Yellow Series 1/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de vert-jaune 1/5.",
+ "frenchFontType":3,
+ "italianText":"Serie giallo verde 1/5",
+ "italianFontType":3,
+ "germanText":"Erbsengrün-Serie 1/5",
+ "germanFontType":3,
+ "spanishText":"Serie amarilla verdosa 1/5",
+ "spanishFontType":3,
+ "chineseTText":"黃綠色系列 1/5",
+ "chineseTFontType":1,
+ "koreanText":"연두색 시리즈 1/5",
+ "koreanFontType":2,
+ "portugueseText":"Série verde-limão 1/5",
+ "portugueseFontType":2,
+ "russianText":"Желто-зеленая серия 1/5",
+ "russianFontType":2,
+ "turkishText":"Yeşilimsi Sarı Seriler 1/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأصفر المائل للخضرة 1/5",
+ "arabicFontType":2,
+ "dutchText":"Groengeel reeks 1/5",
+ "dutchFontType":2,
+ "chineseSText":"黄绿色系列 1/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_l_green_2",
+ "japaneseText":"きみどりシリーズ 2/5",
+ "englishUsText":"Greenish-Yellow Series 2/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de vert-jaune 2/5.",
+ "frenchFontType":3,
+ "italianText":"Serie giallo verde 2/5",
+ "italianFontType":3,
+ "germanText":"Erbsengrün-Serie 2/5",
+ "germanFontType":3,
+ "spanishText":"Serie amarilla verdosa 2/5",
+ "spanishFontType":3,
+ "chineseTText":"黃綠色系列 2/5",
+ "chineseTFontType":1,
+ "koreanText":"연두색 시리즈 2/5",
+ "koreanFontType":2,
+ "portugueseText":"Série verde-limão 2/5",
+ "portugueseFontType":2,
+ "russianText":"Желто-зеленая серия 2/5",
+ "russianFontType":2,
+ "turkishText":"Yeşilimsi Sarı Seriler 2/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأصفر المائل للخضرة 2/5",
+ "arabicFontType":2,
+ "dutchText":"Groengeel reeks 2/5",
+ "dutchFontType":2,
+ "chineseSText":"黄绿色系列 2/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_l_green_3",
+ "japaneseText":"きみどりシリーズ 3/5",
+ "englishUsText":"Greenish-Yellow Series 3/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de vert-jaune 3/5.",
+ "frenchFontType":3,
+ "italianText":"Serie giallo verde 3/5",
+ "italianFontType":3,
+ "germanText":"Erbsengrün-Serie 3/5",
+ "germanFontType":3,
+ "spanishText":"Serie amarilla verdosa 3/5",
+ "spanishFontType":3,
+ "chineseTText":"黃綠色系列 3/5",
+ "chineseTFontType":1,
+ "koreanText":"연두색 시리즈 3/5",
+ "koreanFontType":2,
+ "portugueseText":"Série verde-limão 3/5",
+ "portugueseFontType":2,
+ "russianText":"Желто-зеленая серия 3/5",
+ "russianFontType":2,
+ "turkishText":"Yeşilimsi Sarı Seriler 3/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأصفر المائل للخضرة 3/5",
+ "arabicFontType":2,
+ "dutchText":"Groengeel reeks 3/5",
+ "dutchFontType":2,
+ "chineseSText":"黄绿色系列 3/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_l_green_4",
+ "japaneseText":"きみどりシリーズ 4/5",
+ "englishUsText":"Greenish-Yellow Series 4/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de vert-jaune 4/5.",
+ "frenchFontType":3,
+ "italianText":"Serie giallo verde 4/5",
+ "italianFontType":3,
+ "germanText":"Erbsengrün-Serie 4/5",
+ "germanFontType":3,
+ "spanishText":"Serie amarilla verdosa 4/5",
+ "spanishFontType":3,
+ "chineseTText":"黃綠色系列 4/5",
+ "chineseTFontType":1,
+ "koreanText":"연두색 시리즈 4/5",
+ "koreanFontType":2,
+ "portugueseText":"Série verde-limão 4/5",
+ "portugueseFontType":2,
+ "russianText":"Желто-зеленая серия 4/5",
+ "russianFontType":2,
+ "turkishText":"Yeşilimsi Sarı Seriler 4/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأصفر المائل للخضرة 4/5",
+ "arabicFontType":2,
+ "dutchText":"Groengeel reeks 4/5",
+ "dutchFontType":2,
+ "chineseSText":"黄绿色系列 4/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_l_green_5",
+ "japaneseText":"きみどりシリーズ 5/5",
+ "englishUsText":"Greenish-Yellow Series 5/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de vert-jaune 5/5.",
+ "frenchFontType":3,
+ "italianText":"Serie giallo verde 5/5",
+ "italianFontType":3,
+ "germanText":"Erbsengrün-Serie 5/5",
+ "germanFontType":3,
+ "spanishText":"Serie amarilla verdosa 5/5",
+ "spanishFontType":3,
+ "chineseTText":"黃綠色系列 5/5",
+ "chineseTFontType":1,
+ "koreanText":"연두색 시리즈 5/5",
+ "koreanFontType":2,
+ "portugueseText":"Série verde-limão 5/5",
+ "portugueseFontType":2,
+ "russianText":"Желто-зеленая серия 5/5",
+ "russianFontType":2,
+ "turkishText":"Yeşilimsi Sarı Seriler 5/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأصفر المائل للخضرة 5/5",
+ "arabicFontType":2,
+ "dutchText":"Groengeel reeks 5/5",
+ "dutchFontType":2,
+ "chineseSText":"黄绿色系列 5/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_green_1",
+ "japaneseText":"みどりシリーズ 1/5",
+ "englishUsText":"Green Series 1/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de verts 1/5.",
+ "frenchFontType":3,
+ "italianText":"Serie verde 1/5",
+ "italianFontType":3,
+ "germanText":"Grün-Serie 1/5",
+ "germanFontType":3,
+ "spanishText":"Serie verde 1/5",
+ "spanishFontType":3,
+ "chineseTText":"綠色系列 1/5",
+ "chineseTFontType":1,
+ "koreanText":"초록색 시리즈 1/5",
+ "koreanFontType":2,
+ "portugueseText":"Série verde 1/5",
+ "portugueseFontType":2,
+ "russianText":"Зеленая серия 5/5",
+ "russianFontType":2,
+ "turkishText":"Yeşil Seriler 1/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأخضر 1/5",
+ "arabicFontType":2,
+ "dutchText":"Groen reeks 1/5",
+ "dutchFontType":2,
+ "chineseSText":"绿色系列 1/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_green_2",
+ "japaneseText":"みどりシリーズ 2/5",
+ "englishUsText":"Green Series 2/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de verts 2/5.",
+ "frenchFontType":3,
+ "italianText":"Serie verde 2/5",
+ "italianFontType":3,
+ "germanText":"Grün-Serie 2/5",
+ "germanFontType":3,
+ "spanishText":"Serie verde 2/5",
+ "spanishFontType":3,
+ "chineseTText":"綠色系列 2/5",
+ "chineseTFontType":1,
+ "koreanText":"초록색 시리즈 2/5",
+ "koreanFontType":2,
+ "portugueseText":"Série verde 2/5",
+ "portugueseFontType":2,
+ "russianText":"Зеленая серия 2/5",
+ "russianFontType":2,
+ "turkishText":"Yeşil Seriler 2/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأخضر 2/5",
+ "arabicFontType":2,
+ "dutchText":"Groen reeks 2/5",
+ "dutchFontType":2,
+ "chineseSText":"绿色系列 2/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_green_3",
+ "japaneseText":"みどりシリーズ 3/5",
+ "englishUsText":"Green Series 3/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de verts 3/5.",
+ "frenchFontType":3,
+ "italianText":"Serie verde 3/5",
+ "italianFontType":3,
+ "germanText":"Grün-Serie 3/5",
+ "germanFontType":3,
+ "spanishText":"Serie verde 3/5",
+ "spanishFontType":3,
+ "chineseTText":"綠色系列 3/5",
+ "chineseTFontType":1,
+ "koreanText":"초록색 시리즈 3/5",
+ "koreanFontType":2,
+ "portugueseText":"Série verde 3/5",
+ "portugueseFontType":2,
+ "russianText":"Зеленая серия 3/5",
+ "russianFontType":2,
+ "turkishText":"Yeşil Seriler 3/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأخضر 3/5",
+ "arabicFontType":2,
+ "dutchText":"Groen reeks 3/5",
+ "dutchFontType":2,
+ "chineseSText":"绿色系列 3/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_green_4",
+ "japaneseText":"みどりシリーズ 4/5",
+ "englishUsText":"Green Series 4/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de verts 4/5.",
+ "frenchFontType":3,
+ "italianText":"Serie verde 4/5",
+ "italianFontType":3,
+ "germanText":"Grün-Serie 4/5",
+ "germanFontType":3,
+ "spanishText":"Serie verde 4/5",
+ "spanishFontType":3,
+ "chineseTText":"綠色系列 4/5",
+ "chineseTFontType":1,
+ "koreanText":"초록색 시리즈 4/5",
+ "koreanFontType":2,
+ "portugueseText":"Série verde 4/5",
+ "portugueseFontType":2,
+ "russianText":"Зеленая серия 4/5",
+ "russianFontType":2,
+ "turkishText":"Yeşil Seriler 4/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأخضر 4/5",
+ "arabicFontType":2,
+ "dutchText":"Groen reeks 4/5",
+ "dutchFontType":2,
+ "chineseSText":"绿色系列 4/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_green_5",
+ "japaneseText":"みどりシリーズ 5/5",
+ "englishUsText":"Green Series 5/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de verts 5/5.",
+ "frenchFontType":3,
+ "italianText":"Serie verde 5/5",
+ "italianFontType":3,
+ "germanText":"Grün-Serie 5/5",
+ "germanFontType":3,
+ "spanishText":"Serie verde 5/5",
+ "spanishFontType":3,
+ "chineseTText":"綠色系列 5/5",
+ "chineseTFontType":1,
+ "koreanText":"초록색 시리즈 5/5",
+ "koreanFontType":2,
+ "portugueseText":"Série verde 5/5",
+ "portugueseFontType":2,
+ "russianText":"Зеленая серия 5/5",
+ "russianFontType":2,
+ "turkishText":"Yeşil Seriler 5/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأخضر 5/5",
+ "arabicFontType":2,
+ "dutchText":"Groen reeks 5/5",
+ "dutchFontType":2,
+ "chineseSText":"绿色系列 5/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_sky_1",
+ "japaneseText":"みずいろシリーズ 1/5",
+ "englishUsText":"Aquamarine Series 1/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de bleu clair 1/5.",
+ "frenchFontType":3,
+ "italianText":"Serie azzurro 1/5",
+ "italianFontType":3,
+ "germanText":"Hellblau-Serie 1/5",
+ "germanFontType":3,
+ "spanishText":"Serie azul clara 1/5",
+ "spanishFontType":3,
+ "chineseTText":"水藍色系列 1/5",
+ "chineseTFontType":1,
+ "koreanText":"하늘색 시리즈 1/5",
+ "koreanFontType":2,
+ "portugueseText":"Série azul celeste 1/5",
+ "portugueseFontType":2,
+ "russianText":"Голубая серия 1/5",
+ "russianFontType":2,
+ "turkishText":"Mavimsi Yeşil 1/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأزرق المائل للخضرة 1/5",
+ "arabicFontType":2,
+ "dutchText":"Aquamarijn reeks 1/5",
+ "dutchFontType":2,
+ "chineseSText":"水蓝色系列 1/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_sky_2",
+ "japaneseText":"みずいろシリーズ 2/5",
+ "englishUsText":"Aquamarine Series 2/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de bleu clair 2/5.",
+ "frenchFontType":3,
+ "italianText":"Serie azzurro 2/5",
+ "italianFontType":3,
+ "germanText":"Hellblau-Serie 2/5",
+ "germanFontType":3,
+ "spanishText":"Serie azul clara 2/5",
+ "spanishFontType":3,
+ "chineseTText":"水藍色系列 2/5",
+ "chineseTFontType":1,
+ "koreanText":"하늘색 시리즈 2/5",
+ "koreanFontType":2,
+ "portugueseText":"Série azul celeste 2/5",
+ "portugueseFontType":2,
+ "russianText":"Голубая серия 2/5",
+ "russianFontType":2,
+ "turkishText":"Mavimsi Yeşil 2/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأزرق المائل للخضرة 2/5",
+ "arabicFontType":2,
+ "dutchText":"Aquamarijn reeks 2/5",
+ "dutchFontType":2,
+ "chineseSText":"水蓝色系列 2/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_sky_3",
+ "japaneseText":"みずいろシリーズ 3/5",
+ "englishUsText":"Aquamarine Series 3/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de bleu clair 3/5.",
+ "frenchFontType":3,
+ "italianText":"Serie azzurro 3/5",
+ "italianFontType":3,
+ "germanText":"Hellblau-Serie 3/5",
+ "germanFontType":3,
+ "spanishText":"Serie azul clara 3/5",
+ "spanishFontType":3,
+ "chineseTText":"水藍色系列 3/5",
+ "chineseTFontType":1,
+ "koreanText":"하늘색 시리즈 3/5",
+ "koreanFontType":2,
+ "portugueseText":"Série azul celeste 3/5",
+ "portugueseFontType":2,
+ "russianText":"Голубая серия 3/5",
+ "russianFontType":2,
+ "turkishText":"Mavimsi Yeşil 3/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأزرق المائل للخضرة 3/5",
+ "arabicFontType":2,
+ "dutchText":"Aquamarijn reeks 3/5",
+ "dutchFontType":2,
+ "chineseSText":"水蓝色系列 3/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_sky_4",
+ "japaneseText":"みずいろシリーズ 4/5",
+ "englishUsText":"Aquamarine Series 4/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de bleu clair 4/5.",
+ "frenchFontType":3,
+ "italianText":"Serie azzurro 4/5",
+ "italianFontType":3,
+ "germanText":"Hellblau-Serie 4/5",
+ "germanFontType":3,
+ "spanishText":"Serie azul clara 4/5",
+ "spanishFontType":3,
+ "chineseTText":"水藍色系列 4/5",
+ "chineseTFontType":1,
+ "koreanText":"하늘색 시리즈 4/5",
+ "koreanFontType":2,
+ "portugueseText":"Série azul celeste 4/5",
+ "portugueseFontType":2,
+ "russianText":"Голубая серия 4/5",
+ "russianFontType":2,
+ "turkishText":"Mavimsi Yeşil 4/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأزرق المائل للخضرة 4/5",
+ "arabicFontType":2,
+ "dutchText":"Aquamarijn reeks 4/5",
+ "dutchFontType":2,
+ "chineseSText":"水蓝色系列 4/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_sky_5",
+ "japaneseText":"みずいろシリーズ 5/5",
+ "englishUsText":"Aquamarine Series 5/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de bleu clair 5/5.",
+ "frenchFontType":3,
+ "italianText":"Serie azzurro 5/5",
+ "italianFontType":3,
+ "germanText":"Hellblau-Serie 5/5",
+ "germanFontType":3,
+ "spanishText":"Serie azul clara 5/5",
+ "spanishFontType":3,
+ "chineseTText":"水藍色系列 5/5",
+ "chineseTFontType":1,
+ "koreanText":"하늘색 시리즈 5/5",
+ "koreanFontType":2,
+ "portugueseText":"Série azul celeste 5/5",
+ "portugueseFontType":2,
+ "russianText":"Голубая серия 5/5",
+ "russianFontType":2,
+ "turkishText":"Mavimsi Yeşil 5/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأزرق المائل للخضرة 5/5",
+ "arabicFontType":2,
+ "dutchText":"Aquamarijn reeks 5/5",
+ "dutchFontType":2,
+ "chineseSText":"水蓝色系列 5/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_blue_1",
+ "japaneseText":"あおシリーズ 1/5",
+ "englishUsText":"Blue Series 1/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de bleus 1/5.",
+ "frenchFontType":3,
+ "italianText":"Serie blu 1/5",
+ "italianFontType":3,
+ "germanText":"Blau-Serie 1/5",
+ "germanFontType":3,
+ "spanishText":"Serie azul 1/5",
+ "spanishFontType":3,
+ "chineseTText":"藍色系列 1/5",
+ "chineseTFontType":1,
+ "koreanText":"파란색 시리즈 1/5",
+ "koreanFontType":2,
+ "portugueseText":"Série azul 1/5",
+ "portugueseFontType":2,
+ "russianText":"Синяя серия 1/5",
+ "russianFontType":2,
+ "turkishText":"Mavi Seriler 1/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأزرق 1/5",
+ "arabicFontType":2,
+ "dutchText":"Blauw reeks 1/5",
+ "dutchFontType":2,
+ "chineseSText":"蓝色系列 1/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_blue_2",
+ "japaneseText":"あおシリーズ 2/5",
+ "englishUsText":"Blue Series 2/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de bleus 2/5.",
+ "frenchFontType":3,
+ "italianText":"Serie blu 2/5",
+ "italianFontType":3,
+ "germanText":"Blau-Serie 2/5",
+ "germanFontType":3,
+ "spanishText":"Serie azul 2/5",
+ "spanishFontType":3,
+ "chineseTText":"藍色系列 2/5",
+ "chineseTFontType":1,
+ "koreanText":"파란색 시리즈 2/5",
+ "koreanFontType":2,
+ "portugueseText":"Série azul 2/5",
+ "portugueseFontType":2,
+ "russianText":"Синяя серия 2/5",
+ "russianFontType":2,
+ "turkishText":"Mavi Seriler 2/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأزرق 2/5",
+ "arabicFontType":2,
+ "dutchText":"Blauw reeks 2/5",
+ "dutchFontType":2,
+ "chineseSText":"蓝色系列 2/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_blue_3",
+ "japaneseText":"あおシリーズ 3/5",
+ "englishUsText":"Blue Series 3/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de bleus 3/5.",
+ "frenchFontType":3,
+ "italianText":"Serie blu 3/5",
+ "italianFontType":3,
+ "germanText":"Blau-Serie 3/5",
+ "germanFontType":3,
+ "spanishText":"Serie azul 3/5",
+ "spanishFontType":3,
+ "chineseTText":"藍色系列 3/5",
+ "chineseTFontType":1,
+ "koreanText":"파란색 시리즈 3/5",
+ "koreanFontType":2,
+ "portugueseText":"Série azul 3/5",
+ "portugueseFontType":2,
+ "russianText":"Синяя серия 3/5",
+ "russianFontType":2,
+ "turkishText":"Mavi Seriler 3/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأزرق 3/5",
+ "arabicFontType":2,
+ "dutchText":"Blauw reeks 3/5",
+ "dutchFontType":2,
+ "chineseSText":"蓝色系列 3/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_blue_4",
+ "japaneseText":"あおシリーズ 4/5",
+ "englishUsText":"Blue Series 4/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de bleus 4/5.",
+ "frenchFontType":3,
+ "italianText":"Serie blu 4/5",
+ "italianFontType":3,
+ "germanText":"Blau-Serie 4/5",
+ "germanFontType":3,
+ "spanishText":"Serie azul 4/5",
+ "spanishFontType":3,
+ "chineseTText":"藍色系列 4/5",
+ "chineseTFontType":1,
+ "koreanText":"파란색 시리즈 4/5",
+ "koreanFontType":2,
+ "portugueseText":"Série azul 4/5",
+ "portugueseFontType":2,
+ "russianText":"Синяя серия 4/5",
+ "russianFontType":2,
+ "turkishText":"Mavi Seriler 4/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأزرق 4/5",
+ "arabicFontType":2,
+ "dutchText":"Blauw reeks 4/5",
+ "dutchFontType":2,
+ "chineseSText":"蓝色系列 4/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_blue_5",
+ "japaneseText":"あおシリーズ 5/5",
+ "englishUsText":"Blue Series 5/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de bleus 5/5.",
+ "frenchFontType":3,
+ "italianText":"Serie blu 5/5",
+ "italianFontType":3,
+ "germanText":"Blau-Serie 5/5",
+ "germanFontType":3,
+ "spanishText":"Serie azul 5/5",
+ "spanishFontType":3,
+ "chineseTText":"藍色系列 5/5",
+ "chineseTFontType":1,
+ "koreanText":"파란색 시리즈 5/5",
+ "koreanFontType":2,
+ "portugueseText":"Série azul 5/5",
+ "portugueseFontType":2,
+ "russianText":"Синяя серия 5/5",
+ "russianFontType":2,
+ "turkishText":"Mavi Seriler 5/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأزرق 5/5",
+ "arabicFontType":2,
+ "dutchText":"Blauw reeks 5/5",
+ "dutchFontType":2,
+ "chineseSText":"蓝色系列 5/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_purple_1",
+ "japaneseText":"むらさきシリーズ 1/5",
+ "englishUsText":"Purple Series 1/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de violets 1/5.",
+ "frenchFontType":3,
+ "italianText":"Serie viola 1/5",
+ "italianFontType":3,
+ "germanText":"Lila-Serie 1/5",
+ "germanFontType":3,
+ "spanishText":"Serie púrpura 1/5",
+ "spanishFontType":3,
+ "chineseTText":"紫色系列 1/5",
+ "chineseTFontType":1,
+ "koreanText":"보라색 시리즈 1/5",
+ "koreanFontType":2,
+ "portugueseText":"Série lilás 1/5",
+ "portugueseFontType":2,
+ "russianText":"Фиолетовая серия 1/5",
+ "russianFontType":2,
+ "turkishText":"Mor Seriler 1/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأرجواني 1/5",
+ "arabicFontType":2,
+ "dutchText":"Paars reeks 1/5",
+ "dutchFontType":2,
+ "chineseSText":"紫色系列 1/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_purple_2",
+ "japaneseText":"むらさきシリーズ 2/5",
+ "englishUsText":"Purple Series 2/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de violets 2/5.",
+ "frenchFontType":3,
+ "italianText":"Serie viola 2/5",
+ "italianFontType":3,
+ "germanText":"Lila-Serie 2/5",
+ "germanFontType":3,
+ "spanishText":"Serie púrpura 2/5",
+ "spanishFontType":3,
+ "chineseTText":"紫色系列 2/5",
+ "chineseTFontType":1,
+ "koreanText":"보라색 시리즈 2/5",
+ "koreanFontType":2,
+ "portugueseText":"Série lilás 2/5",
+ "portugueseFontType":2,
+ "russianText":"Фиолетовая серия 2/5",
+ "russianFontType":2,
+ "turkishText":"Mor Seriler 2/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأرجواني 2/5",
+ "arabicFontType":2,
+ "dutchText":"Paars reeks 2/5",
+ "dutchFontType":2,
+ "chineseSText":"紫色系列 2/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_purple_3",
+ "japaneseText":"むらさきシリーズ 3/5",
+ "englishUsText":"Purple Series 3/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de violets 3/5.",
+ "frenchFontType":3,
+ "italianText":"Serie viola 3/5",
+ "italianFontType":3,
+ "germanText":"Lila-Serie 3/5",
+ "germanFontType":3,
+ "spanishText":"Serie púrpura 3/5",
+ "spanishFontType":3,
+ "chineseTText":"紫色系列 3/5",
+ "chineseTFontType":1,
+ "koreanText":"보라색 시리즈 3/5",
+ "koreanFontType":2,
+ "portugueseText":"Série lilás 3/5",
+ "portugueseFontType":2,
+ "russianText":"Фиолетовая серия 3/5",
+ "russianFontType":2,
+ "turkishText":"Mor Seriler 3/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأرجواني 3/5",
+ "arabicFontType":2,
+ "dutchText":"Paars reeks 3/5",
+ "dutchFontType":2,
+ "chineseSText":"紫色系列 3/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_purple_4",
+ "japaneseText":"むらさきシリーズ 4/5",
+ "englishUsText":"Purple Series 4/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de violets 4/5.",
+ "frenchFontType":3,
+ "italianText":"Serie viola 4/5",
+ "italianFontType":3,
+ "germanText":"Lila-Serie 4/5",
+ "germanFontType":3,
+ "spanishText":"Serie púrpura 4/5",
+ "spanishFontType":3,
+ "chineseTText":"紫色系列 4/5",
+ "chineseTFontType":1,
+ "koreanText":"보라색 시리즈 4/5",
+ "koreanFontType":2,
+ "portugueseText":"Série lilás 4/5",
+ "portugueseFontType":2,
+ "russianText":"Фиолетовая серия 4/5",
+ "russianFontType":2,
+ "turkishText":"Mor Seriler 4/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأرجواني 4/5",
+ "arabicFontType":2,
+ "dutchText":"Paars reeks 4/5",
+ "dutchFontType":2,
+ "chineseSText":"紫色系列 4/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_purple_5",
+ "japaneseText":"むらさきシリーズ 5/5",
+ "englishUsText":"Purple Series 5/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de violets 5/5.",
+ "frenchFontType":3,
+ "italianText":"Serie viola 5/5",
+ "italianFontType":3,
+ "germanText":"Lila-Serie 5/5",
+ "germanFontType":3,
+ "spanishText":"Serie púrpura 5/5",
+ "spanishFontType":3,
+ "chineseTText":"紫色系列 5/5",
+ "chineseTFontType":1,
+ "koreanText":"보라색 시리즈 5/5",
+ "koreanFontType":2,
+ "portugueseText":"Série lilás 5/5",
+ "portugueseFontType":2,
+ "russianText":"Фиолетовая серия 5/5",
+ "russianFontType":2,
+ "turkishText":"Mor Seriler 5/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأرجواني 5/5",
+ "arabicFontType":2,
+ "dutchText":"Paars reeks 5/5",
+ "dutchFontType":2,
+ "chineseSText":"紫色系列 5/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_r_purple_1",
+ "japaneseText":"あかむらさきシリーズ 1/5",
+ "englishUsText":"Burgundy Series 1/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de rouge-violet 1/5.",
+ "frenchFontType":3,
+ "italianText":"Serie magenta 1/5",
+ "italianFontType":3,
+ "germanText":"Tiefpurpur-Serie 1/5",
+ "germanFontType":3,
+ "spanishText":"Serie bermellón 1/5",
+ "spanishFontType":3,
+ "chineseTText":"紫紅色系列 1/5",
+ "chineseTFontType":1,
+ "koreanText":"자홍색 시리즈 1/5",
+ "koreanFontType":2,
+ "portugueseText":"Série vinho 1/5",
+ "portugueseFontType":2,
+ "russianText":"Бордовая серия 1/5",
+ "russianFontType":2,
+ "turkishText":"Bordo Seriler 1/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الخمري 1/5",
+ "arabicFontType":2,
+ "dutchText":"Bordeauxrood reeks 1/5",
+ "dutchFontType":2,
+ "chineseSText":"紫红色系列 1/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_r_purple_2",
+ "japaneseText":"あかむらさきシリーズ 2/5",
+ "englishUsText":"Burgundy Series 2/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de rouge-violet 2/5.",
+ "frenchFontType":3,
+ "italianText":"Serie magenta 2/5",
+ "italianFontType":3,
+ "germanText":"Tiefpurpur-Serie 2/5",
+ "germanFontType":3,
+ "spanishText":"Serie bermellón 2/5",
+ "spanishFontType":3,
+ "chineseTText":"紫紅色系列 2/5",
+ "chineseTFontType":1,
+ "koreanText":"자홍색 시리즈 2/5",
+ "koreanFontType":2,
+ "portugueseText":"Série vinho 2/5",
+ "portugueseFontType":2,
+ "russianText":"Бордовая серия 2/5",
+ "russianFontType":2,
+ "turkishText":"Bordo Seriler 2/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الخمري 2/5",
+ "arabicFontType":2,
+ "dutchText":"Bordeauxrood reeks 2/5",
+ "dutchFontType":2,
+ "chineseSText":"紫红色系列 2/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_r_purple_3",
+ "japaneseText":"あかむらさきシリーズ 3/5",
+ "englishUsText":"Burgundy Series 3/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de rouge-violet 3/5.",
+ "frenchFontType":3,
+ "italianText":"Serie magenta 3/5",
+ "italianFontType":3,
+ "germanText":"Tiefpurpur-Serie 3/5",
+ "germanFontType":3,
+ "spanishText":"Serie bermellón 3/5",
+ "spanishFontType":3,
+ "chineseTText":"紫紅色系列 3/5",
+ "chineseTFontType":1,
+ "koreanText":"자홍색 시리즈 3/5",
+ "koreanFontType":2,
+ "portugueseText":"Série vinho 3/5",
+ "portugueseFontType":2,
+ "russianText":"Бордовая серия 3/5",
+ "russianFontType":2,
+ "turkishText":"Bordo Seriler 3/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الخمري 3/5",
+ "arabicFontType":2,
+ "dutchText":"Bordeauxrood reeks 3/5",
+ "dutchFontType":2,
+ "chineseSText":"紫红色系列 3/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_r_purple_4",
+ "japaneseText":"あかむらさきシリーズ 4/5",
+ "englishUsText":"Burgundy Series 4/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de rouge-violet 4/5.",
+ "frenchFontType":3,
+ "italianText":"Serie magenta 4/5",
+ "italianFontType":3,
+ "germanText":"Tiefpurpur-Serie 4/5",
+ "germanFontType":3,
+ "spanishText":"Serie bermellón 4/5",
+ "spanishFontType":3,
+ "chineseTText":"紫紅色系列 4/5",
+ "chineseTFontType":1,
+ "koreanText":"자홍색 시리즈 4/5",
+ "koreanFontType":2,
+ "portugueseText":"Série vinho 4/5",
+ "portugueseFontType":2,
+ "russianText":"Бордовая серия 4/5",
+ "russianFontType":2,
+ "turkishText":"Bordo Seriler 4/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الخمري 4/5",
+ "arabicFontType":2,
+ "dutchText":"Bordeauxrood reeks 4/5",
+ "dutchFontType":2,
+ "chineseSText":"紫红色系列 4/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_r_purple_5",
+ "japaneseText":"あかむらさきシリーズ 5/5",
+ "englishUsText":"Burgundy Series 5/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de rouge-violet 5/5.",
+ "frenchFontType":3,
+ "italianText":"Serie magenta 5/5",
+ "italianFontType":3,
+ "germanText":"Tiefpurpur-Serie 5/5",
+ "germanFontType":3,
+ "spanishText":"Serie bermellón 5/5",
+ "spanishFontType":3,
+ "chineseTText":"紫紅色系列 5/5",
+ "chineseTFontType":1,
+ "koreanText":"자홍색 시리즈 5/5",
+ "koreanFontType":2,
+ "portugueseText":"Série vinho 5/5",
+ "portugueseFontType":2,
+ "russianText":"Бордовая серия 5/5",
+ "russianFontType":2,
+ "turkishText":"Bordo Seriler 5/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الخمري 5/5",
+ "arabicFontType":2,
+ "dutchText":"Bordeauxrood reeks 5/5",
+ "dutchFontType":2,
+ "chineseSText":"紫红色系列 5/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_pink_1",
+ "japaneseText":"ももいろシリーズ 1/5",
+ "englishUsText":"Pink Series 1/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de roses 1/5.",
+ "frenchFontType":3,
+ "italianText":"Serie rosa 1/5",
+ "italianFontType":3,
+ "germanText":"Rosa-Serie 1/5",
+ "germanFontType":3,
+ "spanishText":"Serie rosita 1/5",
+ "spanishFontType":3,
+ "chineseTText":"桃色系列 1/5",
+ "chineseTFontType":1,
+ "koreanText":"분홍색 시리즈 1/5",
+ "koreanFontType":2,
+ "portugueseText":"Série rosa 1/5",
+ "portugueseFontType":2,
+ "russianText":"Розовая серия 1/5",
+ "russianFontType":2,
+ "turkishText":"Pembe Seriler 1/5",
+ "turkishFontType":2,
+ "arabicText":" سلسة الوردي 1/5",
+ "arabicFontType":2,
+ "dutchText":"Roze reeks 1/5",
+ "dutchFontType":2,
+ "chineseSText":"桃色系列 1/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_pink_2",
+ "japaneseText":"ももいろシリーズ 2/5",
+ "englishUsText":"Pink Series 2/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de roses 2/5.",
+ "frenchFontType":3,
+ "italianText":"Serie rosa 2/5",
+ "italianFontType":3,
+ "germanText":"Rosa-Serie 2/5",
+ "germanFontType":3,
+ "spanishText":"Serie rosita 2/5",
+ "spanishFontType":3,
+ "chineseTText":"桃色系列 2/5",
+ "chineseTFontType":1,
+ "koreanText":"분홍색 시리즈 2/5",
+ "koreanFontType":2,
+ "portugueseText":"Série rosa 2/5",
+ "portugueseFontType":2,
+ "russianText":"Розовая серия 2/5",
+ "russianFontType":2,
+ "turkishText":"Pembe Seriler 2/5",
+ "turkishFontType":2,
+ "arabicText":" سلسة الوردي 2/5",
+ "arabicFontType":2,
+ "dutchText":"Roze reeks 2/5",
+ "dutchFontType":2,
+ "chineseSText":"桃色系列 2/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_pink_3",
+ "japaneseText":"ももいろシリーズ 3/5",
+ "englishUsText":"Pink Series 3/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de roses 3/5.",
+ "frenchFontType":3,
+ "italianText":"Serie rosa 3/5",
+ "italianFontType":3,
+ "germanText":"Rosa-Serie 3/5",
+ "germanFontType":3,
+ "spanishText":"Serie rosita 3/5",
+ "spanishFontType":3,
+ "chineseTText":"桃色系列 3/5",
+ "chineseTFontType":1,
+ "koreanText":"분홍색 시리즈 3/5",
+ "koreanFontType":2,
+ "portugueseText":"Série rosa 3/5",
+ "portugueseFontType":2,
+ "russianText":"Розовая серия 3/5",
+ "russianFontType":2,
+ "turkishText":"Pembe Seriler 3/5",
+ "turkishFontType":2,
+ "arabicText":" سلسة الوردي 3/5",
+ "arabicFontType":2,
+ "dutchText":"Roze reeks 3/5",
+ "dutchFontType":2,
+ "chineseSText":"桃色系列 3/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_pink_4",
+ "japaneseText":"ももいろシリーズ 4/5",
+ "englishUsText":"Pink Series 4/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de roses 4/5.",
+ "frenchFontType":3,
+ "italianText":"Serie rosa 4/5",
+ "italianFontType":3,
+ "germanText":"Rosa-Serie 4/5",
+ "germanFontType":3,
+ "spanishText":"Serie rosita 4/5",
+ "spanishFontType":3,
+ "chineseTText":"桃色系列 4/5",
+ "chineseTFontType":1,
+ "koreanText":"분홍색 시리즈 4/5",
+ "koreanFontType":2,
+ "portugueseText":"Série rosa 4/5",
+ "portugueseFontType":2,
+ "russianText":"Розовая серия 4/5",
+ "russianFontType":2,
+ "turkishText":"Pembe Seriler 4/5",
+ "turkishFontType":2,
+ "arabicText":" سلسة الوردي 4/5",
+ "arabicFontType":2,
+ "dutchText":"Roze reeks 4/5",
+ "dutchFontType":2,
+ "chineseSText":"桃色系列 4/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_pink_5",
+ "japaneseText":"ももいろシリーズ 5/5",
+ "englishUsText":"Pink Series 5/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de roses 5/5.",
+ "frenchFontType":3,
+ "italianText":"Serie rosa 5/5",
+ "italianFontType":3,
+ "germanText":"Rosa-Serie 5/5",
+ "germanFontType":3,
+ "spanishText":"Serie rosita 5/5",
+ "spanishFontType":3,
+ "chineseTText":"桃色系列 5/5",
+ "chineseTFontType":1,
+ "koreanText":"분홍색 시리즈 5/5",
+ "koreanFontType":2,
+ "portugueseText":"Série rosa 5/5",
+ "portugueseFontType":2,
+ "russianText":"Розовая серия 5/5",
+ "russianFontType":2,
+ "turkishText":"Pembe Seriler 5/5",
+ "turkishFontType":2,
+ "arabicText":" سلسة الوردي 5/5",
+ "arabicFontType":2,
+ "dutchText":"Roze reeks 5/5",
+ "dutchFontType":2,
+ "chineseSText":"桃色系列 5/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_red_1",
+ "japaneseText":"あかシリーズ 1/5",
+ "englishUsText":"Red Series 1/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de rouges 1/5.",
+ "frenchFontType":3,
+ "italianText":"Serie rosso 1/5",
+ "italianFontType":3,
+ "germanText":"Rot-Serie 1/5",
+ "germanFontType":3,
+ "spanishText":"Serie roja 1/5",
+ "spanishFontType":3,
+ "chineseTText":"紅色系列 1/5",
+ "chineseTFontType":1,
+ "koreanText":"빨간색 시리즈 1/5",
+ "koreanFontType":2,
+ "portugueseText":"Série vermelha 1/5",
+ "portugueseFontType":2,
+ "russianText":"Красная серия 1/5",
+ "russianFontType":2,
+ "turkishText":"Kırmızı Seriler 1/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأحمر 1/5",
+ "arabicFontType":2,
+ "dutchText":"Rood reeks 1/5",
+ "dutchFontType":2,
+ "chineseSText":"红色系列 1/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_red_2",
+ "japaneseText":"あかシリーズ 2/5",
+ "englishUsText":"Red Series 2/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de rouges 2/5.",
+ "frenchFontType":3,
+ "italianText":"Serie rosso 2/5",
+ "italianFontType":3,
+ "germanText":"Rot-Serie 2/5",
+ "germanFontType":3,
+ "spanishText":"Serie roja 2/5",
+ "spanishFontType":3,
+ "chineseTText":"紅色系列 2/5",
+ "chineseTFontType":1,
+ "koreanText":"빨간색 시리즈 2/5",
+ "koreanFontType":2,
+ "portugueseText":"Série vermelha 2/5",
+ "portugueseFontType":2,
+ "russianText":"Красная серия 2/5",
+ "russianFontType":2,
+ "turkishText":"Kırmızı Seriler 2/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأحمر 2/5",
+ "arabicFontType":2,
+ "dutchText":"Rood reeks 2/5",
+ "dutchFontType":2,
+ "chineseSText":"红色系列 2/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_red_3",
+ "japaneseText":"あかシリーズ 3/5",
+ "englishUsText":"Red Series 3/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de rouges 3/5.",
+ "frenchFontType":3,
+ "italianText":"Serie rosso 3/5",
+ "italianFontType":3,
+ "germanText":"Rot-Serie 3/5",
+ "germanFontType":3,
+ "spanishText":"Serie roja 3/5",
+ "spanishFontType":3,
+ "chineseTText":"紅色系列 3/5",
+ "chineseTFontType":1,
+ "koreanText":"빨간색 시리즈 3/5",
+ "koreanFontType":2,
+ "portugueseText":"Série vermelha 3/5",
+ "portugueseFontType":2,
+ "russianText":"Красная серия 3/5",
+ "russianFontType":2,
+ "turkishText":"Kırmızı Seriler 3/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأحمر 3/5",
+ "arabicFontType":2,
+ "dutchText":"Rood reeks 3/5",
+ "dutchFontType":2,
+ "chineseSText":"红色系列 3/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_red_4",
+ "japaneseText":"あかシリーズ 4/5",
+ "englishUsText":"Red Series 4/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de rouges 4/5.",
+ "frenchFontType":3,
+ "italianText":"Serie rosso 4/5",
+ "italianFontType":3,
+ "germanText":"Rot-Serie 4/5",
+ "germanFontType":3,
+ "spanishText":"Serie roja 4/5",
+ "spanishFontType":3,
+ "chineseTText":"紅色系列 4/5",
+ "chineseTFontType":1,
+ "koreanText":"빨간색 시리즈 4/5",
+ "koreanFontType":2,
+ "portugueseText":"Série vermelha 4/5",
+ "portugueseFontType":2,
+ "russianText":"Красная серия 4/5",
+ "russianFontType":2,
+ "turkishText":"Kırmızı Seriler 4/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأحمر 4/5",
+ "arabicFontType":2,
+ "dutchText":"Rood reeks 4/5",
+ "dutchFontType":2,
+ "chineseSText":"红色系列 4/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_red_5",
+ "japaneseText":"あかシリーズ 5/5",
+ "englishUsText":"Red Series 5/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de rouges 5/5.",
+ "frenchFontType":3,
+ "italianText":"Serie rosso 5/5",
+ "italianFontType":3,
+ "germanText":"Rot-Serie 5/5",
+ "germanFontType":3,
+ "spanishText":"Serie roja 5/5",
+ "spanishFontType":3,
+ "chineseTText":"紅色系列 5/5",
+ "chineseTFontType":1,
+ "koreanText":"빨간색 시리즈 5/5",
+ "koreanFontType":2,
+ "portugueseText":"Série vermelha 5/5",
+ "portugueseFontType":2,
+ "russianText":"Красная серия 5/5",
+ "russianFontType":2,
+ "turkishText":"Kırmızı Seriler 5/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأحمر 5/5",
+ "arabicFontType":2,
+ "dutchText":"Rood reeks 5/5",
+ "dutchFontType":2,
+ "chineseSText":"红色系列 5/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_orange_1",
+ "japaneseText":"だいだいシリーズ 1/5",
+ "englishUsText":"Orange Series 1/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme d'orange 1/5.",
+ "frenchFontType":3,
+ "italianText":"Serie arancione 1/5",
+ "italianFontType":3,
+ "germanText":"Orange-Serie 1/5",
+ "germanFontType":3,
+ "spanishText":"Serie naranja 1/5",
+ "spanishFontType":3,
+ "chineseTText":"橙色系列 1/5",
+ "chineseTFontType":1,
+ "koreanText":"주황색 시리즈 1/5",
+ "koreanFontType":2,
+ "portugueseText":"Série laranja 1/5",
+ "portugueseFontType":2,
+ "russianText":"Оранжевая серия 1/5",
+ "russianFontType":2,
+ "turkishText":"Turuncu Seriler 1/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة البرتقالي 1/5",
+ "arabicFontType":2,
+ "dutchText":"Oranje reeks 1/5",
+ "dutchFontType":2,
+ "chineseSText":"橙色系列 1/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_orange_2",
+ "japaneseText":"だいだいシリーズ 2/5",
+ "englishUsText":"Orange Series 2/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme d'orange 2/5.",
+ "frenchFontType":3,
+ "italianText":"Serie arancione 2/5",
+ "italianFontType":3,
+ "germanText":"Orange-Serie 2/5",
+ "germanFontType":3,
+ "spanishText":"Serie naranja 2/5",
+ "spanishFontType":3,
+ "chineseTText":"橙色系列 2/5",
+ "chineseTFontType":1,
+ "koreanText":"주황색 시리즈 2/5",
+ "koreanFontType":2,
+ "portugueseText":"Série laranja 2/5",
+ "portugueseFontType":2,
+ "russianText":"Оранжевая серия 2/5",
+ "russianFontType":2,
+ "turkishText":"Turuncu Seriler 2/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة البرتقالي 2/5",
+ "arabicFontType":2,
+ "dutchText":"Oranje reeks 2/5",
+ "dutchFontType":2,
+ "chineseSText":"橙色系列 2/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_orange_3",
+ "japaneseText":"だいだいシリーズ 3/5",
+ "englishUsText":"Orange Series 3/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme d'orange 3/5.",
+ "frenchFontType":3,
+ "italianText":"Serie arancione 3/5",
+ "italianFontType":3,
+ "germanText":"Orange-Serie 3/5",
+ "germanFontType":3,
+ "spanishText":"Serie naranja 3/5",
+ "spanishFontType":3,
+ "chineseTText":"橙色系列 3/5",
+ "chineseTFontType":1,
+ "koreanText":"주황색 시리즈 3/5",
+ "koreanFontType":2,
+ "portugueseText":"Série laranja 3/5",
+ "portugueseFontType":2,
+ "russianText":"Оранжевая серия 3/5",
+ "russianFontType":2,
+ "turkishText":"Turuncu Seriler 3/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة البرتقالي 3/5",
+ "arabicFontType":2,
+ "dutchText":"Oranje reeks 3/5",
+ "dutchFontType":2,
+ "chineseSText":"橙色系列 3/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_orange_4",
+ "japaneseText":"だいだいシリーズ 4/5",
+ "englishUsText":"Orange Series 4/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme d'orange 4/5.",
+ "frenchFontType":3,
+ "italianText":"Serie arancione 4/5",
+ "italianFontType":3,
+ "germanText":"Orange-Serie 4/5",
+ "germanFontType":3,
+ "spanishText":"Serie naranja 4/5",
+ "spanishFontType":3,
+ "chineseTText":"橙色系列 4/5",
+ "chineseTFontType":1,
+ "koreanText":"주황색 시리즈 4/5",
+ "koreanFontType":2,
+ "portugueseText":"Série laranja 4/5",
+ "portugueseFontType":2,
+ "russianText":"Оранжевая серия 4/5",
+ "russianFontType":2,
+ "turkishText":"Turuncu Seriler 4/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة البرتقالي 4/5",
+ "arabicFontType":2,
+ "dutchText":"Oranje reeks 4/5",
+ "dutchFontType":2,
+ "chineseSText":"橙色系列 4/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_orange_5",
+ "japaneseText":"だいだいシリーズ 5/5",
+ "englishUsText":"Orange Series 5/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme d'orange 5/5.",
+ "frenchFontType":3,
+ "italianText":"Serie arancione 5/5",
+ "italianFontType":3,
+ "germanText":"Orange-Serie 5/5",
+ "germanFontType":3,
+ "spanishText":"Serie naranja 5/5",
+ "spanishFontType":3,
+ "chineseTText":"橙色系列 5/5",
+ "chineseTFontType":1,
+ "koreanText":"주황색 시리즈 5/5",
+ "koreanFontType":2,
+ "portugueseText":"Série laranja 5/5",
+ "portugueseFontType":2,
+ "russianText":"Оранжевая серия 5/5",
+ "russianFontType":2,
+ "turkishText":"Turuncu Seriler 5/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة البرتقالي 5/5",
+ "arabicFontType":2,
+ "dutchText":"Oranje reeks 5/5",
+ "dutchFontType":2,
+ "chineseSText":"橙色系列 5/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_milky_1",
+ "japaneseText":"ミルキーシリーズ 1/5",
+ "englishUsText":"Cream Series 1/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de blancs 1/5.",
+ "frenchFontType":3,
+ "italianText":"Serie bianco 1/5",
+ "italianFontType":3,
+ "germanText":"Milchig-Serie 1/5",
+ "germanFontType":3,
+ "spanishText":"Serie crema 1/5",
+ "spanishFontType":3,
+ "chineseTText":"乳白色系列 1/5",
+ "chineseTFontType":1,
+ "koreanText":"밀키 시리즈 1/5",
+ "koreanFontType":2,
+ "portugueseText":"Série creme 1/5",
+ "portugueseFontType":2,
+ "russianText":"Кремовая серия 1/5",
+ "russianFontType":2,
+ "turkishText":"Krem Rengi Seriler 1/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الكريمي 1/5",
+ "arabicFontType":2,
+ "dutchText":"Crème reeks 1/5",
+ "dutchFontType":2,
+ "chineseSText":"乳白色系列 1/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_milky_2",
+ "japaneseText":"ミルキーシリーズ 2/5",
+ "englishUsText":"Cream Series 2/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de blancs 2/5.",
+ "frenchFontType":3,
+ "italianText":"Serie bianco 2/5",
+ "italianFontType":3,
+ "germanText":"Milchig-Serie 2/5",
+ "germanFontType":3,
+ "spanishText":"Serie crema 2/5",
+ "spanishFontType":3,
+ "chineseTText":"乳白色系列 2/5",
+ "chineseTFontType":1,
+ "koreanText":"밀키 시리즈 2/5",
+ "koreanFontType":2,
+ "portugueseText":"Série creme 2/5",
+ "portugueseFontType":2,
+ "russianText":"Кремовая серия 2/5",
+ "russianFontType":2,
+ "turkishText":"Krem Rengi Seriler 2/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الكريمي 2/5",
+ "arabicFontType":2,
+ "dutchText":"Crème reeks 2/5",
+ "dutchFontType":2,
+ "chineseSText":"乳白色系列 2/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_milky_3",
+ "japaneseText":"ミルキーシリーズ 3/5",
+ "englishUsText":"Cream Series 3/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de blancs 3/5.",
+ "frenchFontType":3,
+ "italianText":"Serie bianco 3/5",
+ "italianFontType":3,
+ "germanText":"Milchig-Serie 3/5",
+ "germanFontType":3,
+ "spanishText":"Serie crema 3/5",
+ "spanishFontType":3,
+ "chineseTText":"乳白色系列 3/5",
+ "chineseTFontType":1,
+ "koreanText":"밀키 시리즈 3/5",
+ "koreanFontType":2,
+ "portugueseText":"Série creme 3/5",
+ "portugueseFontType":2,
+ "russianText":"Кремовая серия 3/5",
+ "russianFontType":2,
+ "turkishText":"Krem Rengi Seriler 3/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الكريمي 3/5",
+ "arabicFontType":2,
+ "dutchText":"Crème reeks 3/5",
+ "dutchFontType":2,
+ "chineseSText":"乳白色系列 3/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_milky_4",
+ "japaneseText":"ミルキーシリーズ 4/5",
+ "englishUsText":"Cream Series 4/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de blancs 4/5.",
+ "frenchFontType":3,
+ "italianText":"Serie bianco 4/5",
+ "italianFontType":3,
+ "germanText":"Milchig-Serie 4/5",
+ "germanFontType":3,
+ "spanishText":"Serie crema 4/5",
+ "spanishFontType":3,
+ "chineseTText":"乳白色系列 4/5",
+ "chineseTFontType":1,
+ "koreanText":"밀키 시리즈 4/5",
+ "koreanFontType":2,
+ "portugueseText":"Série creme 4/5",
+ "portugueseFontType":2,
+ "russianText":"Кремовая серия 4/5",
+ "russianFontType":2,
+ "turkishText":"Krem Rengi Seriler 4/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الكريمي 4/5",
+ "arabicFontType":2,
+ "dutchText":"Crème reeks 4/5",
+ "dutchFontType":2,
+ "chineseSText":"乳白色系列 4/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_milky_5",
+ "japaneseText":"ミルキーシリーズ 5/5",
+ "englishUsText":"Cream Series 5/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de blancs 5/5.",
+ "frenchFontType":3,
+ "italianText":"Serie bianco 5/5",
+ "italianFontType":3,
+ "germanText":"Milchig-Serie 5/5",
+ "germanFontType":3,
+ "spanishText":"Serie crema 5/5",
+ "spanishFontType":3,
+ "chineseTText":"乳白色系列 5/5",
+ "chineseTFontType":1,
+ "koreanText":"밀키 시리즈 5/5",
+ "koreanFontType":2,
+ "portugueseText":"Série creme 5/5",
+ "portugueseFontType":2,
+ "russianText":"Кремовая серия 5/5",
+ "russianFontType":2,
+ "turkishText":"Krem Rengi Seriler 5/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الكريمي 5/5",
+ "arabicFontType":2,
+ "dutchText":"Crème reeks 5/5",
+ "dutchFontType":2,
+ "chineseSText":"乳白色系列 5/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_chic_1",
+ "japaneseText":"シックシリーズ 1/5",
+ "englishUsText":"Chic Series 1/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme chic 1/5.",
+ "frenchFontType":3,
+ "italianText":"Serie chic 1/5",
+ "italianFontType":3,
+ "germanText":"Schick-Serie 1/5",
+ "germanFontType":3,
+ "spanishText":"Serie elegante 1/5",
+ "spanishFontType":3,
+ "chineseTText":"優雅系列 1/5",
+ "chineseTFontType":1,
+ "koreanText":"시크 시리즈 1/5",
+ "koreanFontType":2,
+ "portugueseText":"Série chique 1/5",
+ "portugueseFontType":2,
+ "russianText":"Роскошная серия 1/5",
+ "russianFontType":2,
+ "turkishText":"Şık Renk Seriler 1/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأنيق 1/5",
+ "arabicFontType":2,
+ "dutchText":"Chique reeks 1/5",
+ "dutchFontType":2,
+ "chineseSText":"优雅系列 1/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_chic_2",
+ "japaneseText":"シックシリーズ 2/5",
+ "englishUsText":"Chic Series 2/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme chic 2/5",
+ "frenchFontType":3,
+ "italianText":"Serie chic 2/5",
+ "italianFontType":3,
+ "germanText":"Schick-Serie 2/5",
+ "germanFontType":3,
+ "spanishText":"Serie elegante 2/5",
+ "spanishFontType":3,
+ "chineseTText":"優雅系列 2/5",
+ "chineseTFontType":1,
+ "koreanText":"시크 시리즈 2/5",
+ "koreanFontType":2,
+ "portugueseText":"Série chique 2/5",
+ "portugueseFontType":2,
+ "russianText":"Роскошная серия 2/5",
+ "russianFontType":2,
+ "turkishText":"Şık Renk Seriler 2/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأنيق 2/5",
+ "arabicFontType":2,
+ "dutchText":"Chique reeks 2/5",
+ "dutchFontType":2,
+ "chineseSText":"优雅系列 2/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_chic_3",
+ "japaneseText":"シックシリーズ 3/5",
+ "englishUsText":"Chic Series 3/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme chic 3/5",
+ "frenchFontType":3,
+ "italianText":"Serie chic 3/5",
+ "italianFontType":3,
+ "germanText":"Schick-Serie 3/5",
+ "germanFontType":3,
+ "spanishText":"Serie elegante 3/5",
+ "spanishFontType":3,
+ "chineseTText":"優雅系列 3/5",
+ "chineseTFontType":1,
+ "koreanText":"시크 시리즈 3/5",
+ "koreanFontType":2,
+ "portugueseText":"Série chique 3/5",
+ "portugueseFontType":2,
+ "russianText":"Роскошная серия 3/5",
+ "russianFontType":2,
+ "turkishText":"Şık Renk Seriler 3/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأنيق 3/5",
+ "arabicFontType":2,
+ "dutchText":"Chique reeks 3/5",
+ "dutchFontType":2,
+ "chineseSText":"优雅系列 3/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_chic_4",
+ "japaneseText":"シックシリーズ 4/5",
+ "englishUsText":"Chic Series 4/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme chic 4/5",
+ "frenchFontType":3,
+ "italianText":"Serie chic 4/5",
+ "italianFontType":3,
+ "germanText":"Schick-Serie 4/5",
+ "germanFontType":3,
+ "spanishText":"Serie elegante 4/5",
+ "spanishFontType":3,
+ "chineseTText":"優雅系列 4/5",
+ "chineseTFontType":1,
+ "koreanText":"시크 시리즈 4/5",
+ "koreanFontType":2,
+ "portugueseText":"Série chique 4/5",
+ "portugueseFontType":2,
+ "russianText":"Роскошная серия 4/5",
+ "russianFontType":2,
+ "turkishText":"Şık Renk Seriler 4/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأنيق 4/5",
+ "arabicFontType":2,
+ "dutchText":"Chique reeks 4/5",
+ "dutchFontType":2,
+ "chineseSText":"优雅系列 4/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_chic_5",
+ "japaneseText":"シックシリーズ 5/5",
+ "englishUsText":"Chic Series 5/5",
+ "englishUsFontType":3,
+ "frenchText":"Gamme chic 5/5",
+ "frenchFontType":3,
+ "italianText":"Serie chic 5/5",
+ "italianFontType":3,
+ "germanText":"Schick-Serie 5/5",
+ "germanFontType":3,
+ "spanishText":"Serie elegante 5/5",
+ "spanishFontType":3,
+ "chineseTText":"優雅系列 5/5",
+ "chineseTFontType":1,
+ "koreanText":"시크 시리즈 5/5",
+ "koreanFontType":2,
+ "portugueseText":"Série chique 5/5",
+ "portugueseFontType":2,
+ "russianText":"Роскошная серия 5/5",
+ "russianFontType":2,
+ "turkishText":"Şık Renk Seriler 5/5",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الأنيق 5/5",
+ "arabicFontType":2,
+ "dutchText":"Chique reeks 5/5",
+ "dutchFontType":2,
+ "chineseSText":"优雅系列 5/5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_pastel_1",
+ "japaneseText":"パステルシリーズ 1/6",
+ "englishUsText":"Pastel Series 1/6",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de couleurs pastel 1/6",
+ "frenchFontType":3,
+ "italianText":"Serie pastello 1/6",
+ "italianFontType":3,
+ "germanText":"Pastell-Serie 1/6",
+ "germanFontType":3,
+ "spanishText":"Serie pastel 1/6",
+ "spanishFontType":3,
+ "chineseTText":"粉彩系列 1/6",
+ "chineseTFontType":1,
+ "koreanText":"파스텔 시리즈 1/6",
+ "koreanFontType":2,
+ "portugueseText":"Série pastel 1/6",
+ "portugueseFontType":2,
+ "russianText":"Пастельная серия 1/6",
+ "russianFontType":2,
+ "turkishText":"Pastel Renk Seriler 1/6",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الباستيل 1/6",
+ "arabicFontType":2,
+ "dutchText":"Pastel reeks 1/6",
+ "dutchFontType":2,
+ "chineseSText":"粉彩系列 1/6",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_pastel_2",
+ "japaneseText":"パステルシリーズ 2/6",
+ "englishUsText":"Pastel Series 2/6",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de couleurs pastel 2/6",
+ "frenchFontType":3,
+ "italianText":"Serie pastello 2/6",
+ "italianFontType":3,
+ "germanText":"Pastell-Serie 2/6",
+ "germanFontType":3,
+ "spanishText":"Serie pastel 2/6",
+ "spanishFontType":3,
+ "chineseTText":"粉彩系列 2/6",
+ "chineseTFontType":1,
+ "koreanText":"파스텔 시리즈 2/6",
+ "koreanFontType":2,
+ "portugueseText":"Série pastel 2/6",
+ "portugueseFontType":2,
+ "russianText":"Пастельная серия 2/6",
+ "russianFontType":2,
+ "turkishText":"Pastel Renk Seriler 2/6",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الباستيل 2/6",
+ "arabicFontType":2,
+ "dutchText":"Pastel reeks 2/6",
+ "dutchFontType":2,
+ "chineseSText":"粉彩系列 2/6",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_pastel_3",
+ "japaneseText":"パステルシリーズ 3/6",
+ "englishUsText":"Pastel Series 3/6",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de couleurs pastel 3/6",
+ "frenchFontType":3,
+ "italianText":"Serie pastello 3/6",
+ "italianFontType":3,
+ "germanText":"Pastell-Serie 3/6",
+ "germanFontType":3,
+ "spanishText":"Serie pastel 3/6",
+ "spanishFontType":3,
+ "chineseTText":"粉彩系列 3/6",
+ "chineseTFontType":1,
+ "koreanText":"파스텔 시리즈 3/6",
+ "koreanFontType":2,
+ "portugueseText":"Série pastel 3/6",
+ "portugueseFontType":2,
+ "russianText":"Пастельная серия 3/6",
+ "russianFontType":2,
+ "turkishText":"Pastel Renk Seriler 3/6",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الباستيل 3/6",
+ "arabicFontType":2,
+ "dutchText":"Pastel reeks 3/6",
+ "dutchFontType":2,
+ "chineseSText":"粉彩系列 3/6",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_pastel_4",
+ "japaneseText":"パステルシリーズ 4/6",
+ "englishUsText":"Pastel Series 4/6",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de couleurs pastel 4/6",
+ "frenchFontType":3,
+ "italianText":"Serie pastello 4/6",
+ "italianFontType":3,
+ "germanText":"Pastell-Serie 4/6",
+ "germanFontType":3,
+ "spanishText":"Serie pastel 4/6",
+ "spanishFontType":3,
+ "chineseTText":"粉彩系列 4/6",
+ "chineseTFontType":1,
+ "koreanText":"파스텔 시리즈 4/6",
+ "koreanFontType":2,
+ "portugueseText":"Série pastel 4/6",
+ "portugueseFontType":2,
+ "russianText":"Пастельная серия 4/6",
+ "russianFontType":2,
+ "turkishText":"Pastel Renk Seriler 4/6",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الباستيل 4/6",
+ "arabicFontType":2,
+ "dutchText":"Pastel reeks 4/6",
+ "dutchFontType":2,
+ "chineseSText":"粉彩系列 4/6",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_pastel_5",
+ "japaneseText":"パステルシリーズ 5/6",
+ "englishUsText":"Pastel Series 5/6",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de couleurs pastel 5/6",
+ "frenchFontType":3,
+ "italianText":"Serie pastello 5/6",
+ "italianFontType":3,
+ "germanText":"Pastell-Serie 5/6",
+ "germanFontType":3,
+ "spanishText":"Serie pastel 5/6",
+ "spanishFontType":3,
+ "chineseTText":"粉彩系列 5/6",
+ "chineseTFontType":1,
+ "koreanText":"파스텔 시리즈 5/6",
+ "koreanFontType":2,
+ "portugueseText":"Série pastel 5/6",
+ "portugueseFontType":2,
+ "russianText":"Пастельная серия 5/6",
+ "russianFontType":2,
+ "turkishText":"Pastel Renk Seriler 5/6",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الباستيل 5/6",
+ "arabicFontType":2,
+ "dutchText":"Pastel reeks 5/6",
+ "dutchFontType":2,
+ "chineseSText":"粉彩系列 5/6",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_pastel_6",
+ "japaneseText":"パステルシリーズ 6/6",
+ "englishUsText":"Pastel Series 6/6",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de couleurs pastel 6/6",
+ "frenchFontType":3,
+ "italianText":"Serie pastello 6/6",
+ "italianFontType":3,
+ "germanText":"Pastell-Serie 6/6",
+ "germanFontType":3,
+ "spanishText":"Serie pastel 6/6",
+ "spanishFontType":3,
+ "chineseTText":"粉彩系列 6/6",
+ "chineseTFontType":1,
+ "koreanText":"파스텔 시리즈 6/6",
+ "koreanFontType":2,
+ "portugueseText":"Série pastel 6/6",
+ "portugueseFontType":2,
+ "russianText":"Пастельная серия 6/6",
+ "russianFontType":2,
+ "turkishText":"Pastel Renk Seriler 6/6",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الباستيل 6/6",
+ "arabicFontType":2,
+ "dutchText":"Pastel reeks 6/6",
+ "dutchFontType":2,
+ "chineseSText":"粉彩系列 6/6",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_vivid_1",
+ "japaneseText":"ビビッドシリーズ 1/6",
+ "englishUsText":"Vivid Series 1/6",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de couleurs vives 1/6",
+ "frenchFontType":3,
+ "italianText":"Serie vivace 1/6",
+ "italianFontType":3,
+ "germanText":"Lebhaft-Serie 1/6",
+ "germanFontType":3,
+ "spanishText":"Serie intensa 1/6",
+ "spanishFontType":3,
+ "chineseTText":"鮮豔系列 1/6",
+ "chineseTFontType":1,
+ "koreanText":"비비드 시리즈 1/6",
+ "koreanFontType":2,
+ "portugueseText":"Série vívida 1/6",
+ "portugueseFontType":2,
+ "russianText":"Яркая серия 1/6",
+ "russianFontType":2,
+ "turkishText":"Canlı Renk Seriler 1/6",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الزاهية 1/6",
+ "arabicFontType":2,
+ "dutchText":"Levendig reeks 1/6",
+ "dutchFontType":2,
+ "chineseSText":"鲜艳系列 1/6",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_vivid_2",
+ "japaneseText":"ビビッドシリーズ 2/6",
+ "englishUsText":"Vivid Series 2/6",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de couleurs vives 2/6",
+ "frenchFontType":3,
+ "italianText":"Serie vivace 2/6",
+ "italianFontType":3,
+ "germanText":"Lebhaft-Serie 2/6",
+ "germanFontType":3,
+ "spanishText":"Serie intensa 2/6",
+ "spanishFontType":3,
+ "chineseTText":"鮮豔系列 2/6",
+ "chineseTFontType":1,
+ "koreanText":"비비드 시리즈 2/6",
+ "koreanFontType":2,
+ "portugueseText":"Série vívida 2/6",
+ "portugueseFontType":2,
+ "russianText":"Яркая серия 2/6",
+ "russianFontType":2,
+ "turkishText":"Canlı Renk Seriler 2/6",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الزاهية 2/6",
+ "arabicFontType":2,
+ "dutchText":"Levendig reeks 2/6",
+ "dutchFontType":2,
+ "chineseSText":"鲜艳系列 2/6",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_vivid_3",
+ "japaneseText":"ビビッドシリーズ 3/6",
+ "englishUsText":"Vivid Series 3/6",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de couleurs vives 3/6",
+ "frenchFontType":3,
+ "italianText":"Serie vivace 3/6",
+ "italianFontType":3,
+ "germanText":"Lebhaft-Serie 3/6",
+ "germanFontType":3,
+ "spanishText":"Serie intensa 3/6",
+ "spanishFontType":3,
+ "chineseTText":"鮮豔系列 3/6",
+ "chineseTFontType":1,
+ "koreanText":"비비드 시리즈 3/6",
+ "koreanFontType":2,
+ "portugueseText":"Série vívida 3/6",
+ "portugueseFontType":2,
+ "russianText":"Яркая серия 3/6",
+ "russianFontType":2,
+ "turkishText":"Canlı Renk Seriler 3/6",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الزاهية 3/6",
+ "arabicFontType":2,
+ "dutchText":"Levendig reeks 3/6",
+ "dutchFontType":2,
+ "chineseSText":"鲜艳系列 3/6",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_vivid_4",
+ "japaneseText":"ビビッドシリーズ 4/6",
+ "englishUsText":"Vivid Series 4/6",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de couleurs vives 4/6",
+ "frenchFontType":3,
+ "italianText":"Serie vivace 4/6",
+ "italianFontType":3,
+ "germanText":"Lebhaft-Serie 4/6",
+ "germanFontType":3,
+ "spanishText":"Serie intensa 4/6",
+ "spanishFontType":3,
+ "chineseTText":"鮮豔系列 4/6",
+ "chineseTFontType":1,
+ "koreanText":"비비드 시리즈 4/6",
+ "koreanFontType":2,
+ "portugueseText":"Série vívida 4/6",
+ "portugueseFontType":2,
+ "russianText":"Яркая серия 4/6",
+ "russianFontType":2,
+ "turkishText":"Canlı Renk Seriler 4/6",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الزاهية 4/6",
+ "arabicFontType":2,
+ "dutchText":"Levendig reeks 4/6",
+ "dutchFontType":2,
+ "chineseSText":"鲜艳系列 4/6",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_vivid_5",
+ "japaneseText":"ビビッドシリーズ 5/6",
+ "englishUsText":"Vivid Series 5/6",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de couleurs vives 5/6",
+ "frenchFontType":3,
+ "italianText":"Serie vivace 5/6",
+ "italianFontType":3,
+ "germanText":"Lebhaft-Serie 5/6",
+ "germanFontType":3,
+ "spanishText":"Serie intensa 5/6",
+ "spanishFontType":3,
+ "chineseTText":"鮮豔系列 5/6",
+ "chineseTFontType":1,
+ "koreanText":"비비드 시리즈 5/6",
+ "koreanFontType":2,
+ "portugueseText":"Série vívida 5/6",
+ "portugueseFontType":2,
+ "russianText":"Яркая серия 5/6",
+ "russianFontType":2,
+ "turkishText":"Canlı Renk Seriler 5/6",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الزاهية 5/6",
+ "arabicFontType":2,
+ "dutchText":"Levendig reeks 5/6",
+ "dutchFontType":2,
+ "chineseSText":"鲜艳系列 5/6",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_vivid_6",
+ "japaneseText":"ビビッドシリーズ 6/6",
+ "englishUsText":"Vivid Series 6/6",
+ "englishUsFontType":3,
+ "frenchText":"Gamme de couleurs vives 6/6",
+ "frenchFontType":3,
+ "italianText":"Serie vivace 6/6",
+ "italianFontType":3,
+ "germanText":"Lebhaft-Serie 6/6",
+ "germanFontType":3,
+ "spanishText":"Serie intensa 6/6",
+ "spanishFontType":3,
+ "chineseTText":"鮮豔系列 6/6",
+ "chineseTFontType":1,
+ "koreanText":"비비드 시리즈 6/6",
+ "koreanFontType":2,
+ "portugueseText":"Série vívida 6/6",
+ "portugueseFontType":2,
+ "russianText":"Яркая серия 6/6",
+ "russianFontType":2,
+ "turkishText":"Canlı Renk Seriler 6/6",
+ "turkishFontType":2,
+ "arabicText":" سلسلة الزاهية 6/6",
+ "arabicFontType":2,
+ "dutchText":"Levendig reeks 6/6",
+ "dutchFontType":2,
+ "chineseSText":"鲜艳系列 6/6",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_full_ylw",
+ "japaneseText":"すごくきいろいです",
+ "englishUsText":"It's very yellow",
+ "englishUsFontType":3,
+ "frenchText":"C'est très jaune.",
+ "frenchFontType":3,
+ "italianText":"Molto giallo",
+ "italianFontType":3,
+ "germanText":"Das ist extrem gelb.",
+ "germanFontType":3,
+ "spanishText":"Muy amarillo",
+ "spanishFontType":3,
+ "chineseTText":"黃到極點",
+ "chineseTFontType":1,
+ "koreanText":"진한 노란색입니다",
+ "koreanFontType":2,
+ "portugueseText":"É muito amarelo",
+ "portugueseFontType":2,
+ "russianText":"Очень желтый",
+ "russianFontType":2,
+ "turkishText":"Sapsarı",
+ "turkishFontType":2,
+ "arabicText":" إنه أصفر جدًا",
+ "arabicFontType":2,
+ "dutchText":"Diepgeel",
+ "dutchFontType":2,
+ "chineseSText":"黄到极点",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_full_grn",
+ "japaneseText":"すごくみどりです",
+ "englishUsText":"It's very green",
+ "englishUsFontType":3,
+ "frenchText":"C'est très vert.",
+ "frenchFontType":3,
+ "italianText":"Molto verde",
+ "italianFontType":3,
+ "germanText":"Das ist extrem grün.",
+ "germanFontType":3,
+ "spanishText":"Muy verde",
+ "spanishFontType":3,
+ "chineseTText":"綠到極點",
+ "chineseTFontType":1,
+ "koreanText":"진한 초록색입니다",
+ "koreanFontType":2,
+ "portugueseText":"É muito verde",
+ "portugueseFontType":2,
+ "russianText":"Очень зеленый",
+ "russianFontType":2,
+ "turkishText":"Yemyeşil",
+ "turkishFontType":2,
+ "arabicText":" إنه أخضر جدًا",
+ "arabicFontType":2,
+ "dutchText":"Diepgroen",
+ "dutchFontType":2,
+ "chineseSText":"绿到极点",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_full_ble",
+ "japaneseText":"すごくあおいです",
+ "englishUsText":"It's very blue",
+ "englishUsFontType":3,
+ "frenchText":"C'est très bleu.",
+ "frenchFontType":3,
+ "italianText":"Molto blu",
+ "italianFontType":3,
+ "germanText":"Das ist extrem blau.",
+ "germanFontType":3,
+ "spanishText":"Muy azul",
+ "spanishFontType":3,
+ "chineseTText":"藍到極點",
+ "chineseTFontType":1,
+ "koreanText":"진한 파란색입니다",
+ "koreanFontType":2,
+ "portugueseText":"É muito azul",
+ "portugueseFontType":2,
+ "russianText":"Очень синий",
+ "russianFontType":2,
+ "turkishText":"Masmavi",
+ "turkishFontType":2,
+ "arabicText":" إنه أزرق جدًا",
+ "arabicFontType":2,
+ "dutchText":"Diepblauw",
+ "dutchFontType":2,
+ "chineseSText":"蓝到极点",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_full_pur",
+ "japaneseText":"すごくむらさきです",
+ "englishUsText":"It's very purple",
+ "englishUsFontType":3,
+ "frenchText":"C'est très violet.",
+ "frenchFontType":3,
+ "italianText":"Molto viola",
+ "italianFontType":3,
+ "germanText":"Das ist extrem lila.",
+ "germanFontType":3,
+ "spanishText":"Muy púrpura",
+ "spanishFontType":3,
+ "chineseTText":"紫到極點",
+ "chineseTFontType":1,
+ "koreanText":"진한 보라색입니다",
+ "koreanFontType":2,
+ "portugueseText":"É muito lilás",
+ "portugueseFontType":2,
+ "russianText":"Очень фиолетовый",
+ "russianFontType":2,
+ "turkishText":"Mosmor",
+ "turkishFontType":2,
+ "arabicText":" إنه أرجواني جدًا",
+ "arabicFontType":2,
+ "dutchText":"Dieppaars",
+ "dutchFontType":2,
+ "chineseSText":"紫到极点",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_full_pnk",
+ "japaneseText":"すっごくピンクです",
+ "englishUsText":"It's very pink",
+ "englishUsFontType":3,
+ "frenchText":"C'est très rose.",
+ "frenchFontType":3,
+ "italianText":"Molto rosa",
+ "italianFontType":3,
+ "germanText":"Das ist extrem rosa.",
+ "germanFontType":3,
+ "spanishText":"Muy rosa",
+ "spanishFontType":3,
+ "chineseTText":"粉紅到極點",
+ "chineseTFontType":1,
+ "koreanText":"진한 분홍색입니다",
+ "koreanFontType":2,
+ "portugueseText":"Muito rosa",
+ "portugueseFontType":2,
+ "russianText":"Очень розовый",
+ "russianFontType":2,
+ "turkishText":"Pespembe",
+ "turkishFontType":2,
+ "arabicText":" إنه وردي جدًا",
+ "arabicFontType":2,
+ "dutchText":"Dieproze",
+ "dutchFontType":2,
+ "chineseSText":"粉红到极点",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_full_red",
+ "japaneseText":"すっごくあかいです",
+ "englishUsText":"It's very red",
+ "englishUsFontType":3,
+ "frenchText":"C'est très rouge.",
+ "frenchFontType":3,
+ "italianText":"Molto rosso",
+ "italianFontType":3,
+ "germanText":"Das ist extrem rot.",
+ "germanFontType":3,
+ "spanishText":"Muy rojo",
+ "spanishFontType":3,
+ "chineseTText":"紅到極點",
+ "chineseTFontType":1,
+ "koreanText":"진한 빨간색입니다",
+ "koreanFontType":2,
+ "portugueseText":"Muito vermelho",
+ "portugueseFontType":2,
+ "russianText":"Очень красный",
+ "russianFontType":2,
+ "turkishText":"Kıpkırmızı",
+ "turkishFontType":2,
+ "arabicText":" إنه أحمر جدًا",
+ "arabicFontType":2,
+ "dutchText":"Dieprood",
+ "dutchFontType":2,
+ "chineseSText":"红到极点",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_full_brn",
+ "japaneseText":"すっごくちゃいろいです",
+ "englishUsText":"It's very brown",
+ "englishUsFontType":3,
+ "frenchText":"C'est très brun.",
+ "frenchFontType":3,
+ "italianText":"Molto marrone",
+ "italianFontType":3,
+ "germanText":"Das ist extrem braun.",
+ "germanFontType":3,
+ "spanishText":"Muy marrón",
+ "spanishFontType":3,
+ "chineseTText":"茶褐到極點",
+ "chineseTFontType":1,
+ "koreanText":"진한 갈색입니다",
+ "koreanFontType":2,
+ "portugueseText":"Muito marrom",
+ "portugueseFontType":2,
+ "russianText":"Очень коричневый",
+ "russianFontType":2,
+ "turkishText":"Koyu kahverengi",
+ "turkishFontType":2,
+ "arabicText":" إنه بني جدًا",
+ "arabicFontType":2,
+ "dutchText":"Diepbruin",
+ "dutchFontType":2,
+ "chineseSText":"茶褐到极点",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_full_blk",
+ "japaneseText":"すっごくくろいです",
+ "englishUsText":"It's very black",
+ "englishUsFontType":3,
+ "frenchText":"C'est très noir.",
+ "frenchFontType":3,
+ "italianText":"Molto nero",
+ "italianFontType":3,
+ "germanText":"Das ist extrem schwarz.",
+ "germanFontType":3,
+ "spanishText":"Muy negro",
+ "spanishFontType":3,
+ "chineseTText":"黑到極點",
+ "chineseTFontType":1,
+ "koreanText":"진한 검은색입니다",
+ "koreanFontType":2,
+ "portugueseText":"Muito preto",
+ "portugueseFontType":2,
+ "russianText":"Очень черный",
+ "russianFontType":2,
+ "turkishText":"Kapkara",
+ "turkishFontType":2,
+ "arabicText":" إنه أسود جدًا",
+ "arabicFontType":2,
+ "dutchText":"Diepzwart",
+ "dutchFontType":2,
+ "chineseSText":"黑到极点",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_full_gry",
+ "japaneseText":"すごーくグレーです",
+ "englishUsText":"It's very grey",
+ "englishUsFontType":3,
+ "frenchText":"C'est très gris.",
+ "frenchFontType":3,
+ "italianText":"Molto grigio",
+ "italianFontType":3,
+ "germanText":"Das ist extrem grau.",
+ "germanFontType":3,
+ "spanishText":"Muy gris",
+ "spanishFontType":3,
+ "chineseTText":"灰到極點",
+ "chineseTFontType":1,
+ "koreanText":"진한 회색입니다",
+ "koreanFontType":2,
+ "portugueseText":"Muito cinza",
+ "portugueseFontType":2,
+ "russianText":"Очень серый",
+ "russianFontType":2,
+ "turkishText":"Gıpgri",
+ "turkishFontType":2,
+ "arabicText":" إنه رمادي جدًا",
+ "arabicFontType":2,
+ "dutchText":"Diepgrijs",
+ "dutchFontType":2,
+ "chineseSText":"灰到极点",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_full_wht",
+ "japaneseText":"すっごくしろいです",
+ "englishUsText":"It's very white",
+ "englishUsFontType":3,
+ "frenchText":"C'est très blanc.",
+ "frenchFontType":3,
+ "italianText":"Molto bianco",
+ "italianFontType":3,
+ "germanText":"Das ist extrem weiß.",
+ "germanFontType":3,
+ "spanishText":"Muy blanco",
+ "spanishFontType":3,
+ "chineseTText":"白到極點",
+ "chineseTFontType":1,
+ "koreanText":"순백색입니다",
+ "koreanFontType":2,
+ "portugueseText":"Muito branco",
+ "portugueseFontType":2,
+ "russianText":"Очень белый",
+ "russianFontType":2,
+ "turkishText":"Bembeyaz",
+ "turkishFontType":2,
+ "arabicText":" إنه أبيض جدًا",
+ "arabicFontType":2,
+ "dutchText":"Superwit",
+ "dutchFontType":2,
+ "chineseSText":"白到极点",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_gray",
+ "japaneseText":"黒っぽくもあり白っぽくもあります",
+ "englishUsText":"It's neither black nor white",
+ "englishUsFontType":3,
+ "frenchText":"Ni tout noir ni tout blanc.",
+ "frenchFontType":3,
+ "italianText":"Non è nero né bianco",
+ "italianFontType":3,
+ "germanText":"Das ist schwarz, aber auch weiß.",
+ "germanFontType":3,
+ "spanishText":"Ni blanco ni negro",
+ "spanishFontType":3,
+ "chineseTText":"有黑有白",
+ "chineseTFontType":1,
+ "koreanText":"검기도 하고 하얗기도 합니다",
+ "koreanFontType":2,
+ "portugueseText":"Nem preto, nem branco",
+ "portugueseFontType":2,
+ "russianText":"И не черный, и не белый",
+ "russianFontType":2,
+ "turkishText":"Ne siyah ne beyaz",
+ "turkishFontType":2,
+ "arabicText":" ليس بالأبيض أو الأسود",
+ "arabicFontType":2,
+ "dutchText":"Het is zwart noch wit",
+ "dutchFontType":2,
+ "chineseSText":"有黑有白",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_white",
+ "japaneseText":"はっきりしてます",
+ "englishUsText":"It's very distinct",
+ "englishUsFontType":3,
+ "frenchText":"C'est clair.",
+ "frenchFontType":3,
+ "italianText":"Un forte contrasto",
+ "italianFontType":3,
+ "germanText":"Der Kontrast ist deutlich.",
+ "germanFontType":3,
+ "spanishText":"Muy resultón",
+ "spanishFontType":3,
+ "chineseTText":"黑白分明",
+ "chineseTFontType":1,
+ "koreanText":"명료합니다",
+ "koreanFontType":2,
+ "portugueseText":"É muito diferente",
+ "portugueseFontType":2,
+ "russianText":"Очень отчетливый",
+ "russianFontType":2,
+ "turkishText":"Apaçık",
+ "turkishFontType":2,
+ "arabicText":" إنه متميز جدًا",
+ "arabicFontType":2,
+ "dutchText":"Ze verschillen erg",
+ "dutchFontType":2,
+ "chineseSText":"黑白分明",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_forgotten",
+ "japaneseText":"ちょっと黄ばんでます",
+ "englishUsText":"It's a little bit yellowish",
+ "englishUsFontType":3,
+ "frenchText":"C'est un peu jaunâtre.",
+ "frenchFontType":3,
+ "italianText":"Un bianco che vira al giallo",
+ "italianFontType":3,
+ "germanText":"Etwas Gelbstich ist dabei.",
+ "germanFontType":3,
+ "spanishText":"Algo amarillento",
+ "spanishFontType":3,
+ "chineseTText":"有點偏黃",
+ "chineseTFontType":1,
+ "koreanText":"약간 노랗습니다",
+ "koreanFontType":2,
+ "portugueseText":"É um pouco amarelado",
+ "portugueseFontType":2,
+ "russianText":"Немного желтый",
+ "russianFontType":2,
+ "turkishText":"Biraz sarımsı",
+ "turkishFontType":2,
+ "arabicText":" إنه مائل للأصفر قليلًا",
+ "arabicFontType":2,
+ "dutchText":"Het is wat gelig",
+ "dutchFontType":2,
+ "chineseSText":"有点偏黄",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_naked",
+ "japaneseText":"ちょっとオレンジです",
+ "englishUsText":"It's slightly orange",
+ "englishUsFontType":3,
+ "frenchText":"C'est un peu orange.",
+ "frenchFontType":3,
+ "italianText":"Un arancione leggero",
+ "italianFontType":3,
+ "germanText":"Etwas orangefarben.",
+ "germanFontType":3,
+ "spanishText":"Algo anaranjado",
+ "spanishFontType":3,
+ "chineseTText":"有點偏橘",
+ "chineseTFontType":1,
+ "koreanText":"약간 주황색입니다",
+ "koreanFontType":2,
+ "portugueseText":"É levemente laranja",
+ "portugueseFontType":2,
+ "russianText":"Немного оранжевый",
+ "russianFontType":2,
+ "turkishText":"Hafif turuncu",
+ "turkishFontType":2,
+ "arabicText":" إنه برتقالي قليلًا",
+ "arabicFontType":2,
+ "dutchText":"Het is een beetje oranje",
+ "dutchFontType":2,
+ "chineseSText":"有点偏橘",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_hole_don",
+ "japaneseText":"顔にアナがあいちゃったドン!",
+ "englishUsText":"It's DON, with a hole in his face!",
+ "englishUsFontType":3,
+ "frenchText":"DON avec un trou.",
+ "frenchFontType":3,
+ "italianText":"DON con la faccia bucata!",
+ "italianFontType":3,
+ "germanText":"DON mit Loch im Gesicht!",
+ "germanFontType":3,
+ "spanishText":"¡DON con un agujero en la cara!",
+ "spanishFontType":3,
+ "chineseTText":"臉上開了一個洞咚!",
+ "chineseTFontType":1,
+ "koreanText":"얼굴에 구멍이 뚫렸다쿵!",
+ "koreanFontType":2,
+ "portugueseText":"É o DON, com um buraco no rosto!",
+ "portugueseFontType":2,
+ "russianText":"В лице ДОНА появилась дырка!",
+ "russianFontType":2,
+ "turkishText":"Bu DON, yüzünde bir delik ile!",
+ "turkishFontType":2,
+ "arabicText":" إنها دون، مع فتحة في الوجه!",
+ "arabicFontType":2,
+ "dutchText":"DON met een gat in het gezicht",
+ "dutchFontType":2,
+ "chineseSText":"脸上开了一个洞咚!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_description_color_hole_katsu",
+ "japaneseText":"顔にアナがあいたのカッ?!",
+ "englishUsText":"It's KATSU, with a hole in his face!",
+ "englishUsFontType":3,
+ "frenchText":"KATSU avec un trou.",
+ "frenchFontType":3,
+ "italianText":"KATSU con la faccia bucata!",
+ "italianFontType":3,
+ "germanText":"KATSU mit Loch im Gesicht!",
+ "germanFontType":3,
+ "spanishText":"¡KATSU con un agujero en la cara!",
+ "spanishFontType":3,
+ "chineseTText":"臉上開了個洞咔!?",
+ "chineseTFontType":1,
+ "koreanText":"얼굴에 구멍이 뚫렸딱?!",
+ "koreanFontType":2,
+ "portugueseText":"É o KATSU, com um buraco no rosto!",
+ "portugueseFontType":2,
+ "russianText":"В лице появилась дырКа?",
+ "russianFontType":2,
+ "turkishText":"Bu KATSU, yüzünde bir delik ile!",
+ "turkishFontType":2,
+ "arabicText":" إنها كاتسو، مع فتحة في الوجه!",
+ "arabicFontType":2,
+ "dutchText":"KATSU met een gat in het gezicht",
+ "dutchFontType":2,
+ "chineseSText":"脸上开了个洞咔!?",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_don",
+ "japaneseText":"どんちゃん",
+ "englishUsText":"DON-chan",
+ "englishUsFontType":3,
+ "frenchText":"DON-chan",
+ "frenchFontType":3,
+ "italianText":"DON-chan",
+ "italianFontType":3,
+ "germanText":"DON-chan",
+ "germanFontType":3,
+ "spanishText":"DON-chan",
+ "spanishFontType":3,
+ "chineseTText":"小咚",
+ "chineseTFontType":1,
+ "koreanText":"동이",
+ "koreanFontType":2,
+ "portugueseText":"DON-chan",
+ "portugueseFontType":2,
+ "russianText":"Дон-тян",
+ "russianFontType":2,
+ "turkishText":"DON-chan",
+ "turkishFontType":2,
+ "arabicText":"دون-تشان",
+ "arabicFontType":2,
+ "dutchText":"DON-chan",
+ "dutchFontType":2,
+ "chineseSText":"小咚",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_testAdon",
+ "japaneseText":"テストAどんちゃん",
+ "englishUsText":"Test A DON-chan",
+ "englishUsFontType":3,
+ "frenchText":"Test A DON-chan",
+ "frenchFontType":3,
+ "italianText":"DON-chan Test A",
+ "italianFontType":3,
+ "germanText":"Test A: DON-chan",
+ "germanFontType":3,
+ "spanishText":"Prueba A de DON-chan",
+ "spanishFontType":3,
+ "chineseTText":"測試A小咚",
+ "chineseTFontType":1,
+ "koreanText":"테스트A 동이",
+ "koreanFontType":2,
+ "portugueseText":"Teste um DON-chan",
+ "portugueseFontType":2,
+ "russianText":"Дон-тян (тест А)",
+ "russianFontType":2,
+ "turkishText":"Bir DON-chan'ı dene",
+ "turkishFontType":2,
+ "arabicText":"اختبار دون-تشان",
+ "arabicFontType":2,
+ "dutchText":"Test A Don-chan",
+ "dutchFontType":2,
+ "chineseSText":"测试A小咚",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_kaminari",
+ "japaneseText":"かみなりさま",
+ "englishUsText":"God of Thunder",
+ "englishUsFontType":3,
+ "frenchText":"Dieu du tonnerre",
+ "frenchFontType":3,
+ "italianText":"Demone del fulmine",
+ "italianFontType":3,
+ "germanText":"Donnergott",
+ "germanFontType":3,
+ "spanishText":"Dios del Trueno",
+ "spanishFontType":3,
+ "chineseTText":"雷神",
+ "chineseTFontType":1,
+ "koreanText":"천둥신",
+ "koreanFontType":2,
+ "portugueseText":"Deus do Trovão",
+ "portugueseFontType":2,
+ "russianText":"Бог грома",
+ "russianFontType":2,
+ "turkishText":"Yıldırım Tanrısı",
+ "turkishFontType":2,
+ "arabicText":"سيّد الرعد",
+ "arabicFontType":2,
+ "dutchText":"Dondergod",
+ "dutchFontType":2,
+ "chineseSText":"雷神",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_kintaro",
+ "japaneseText":"金太郎あめ",
+ "englishUsText":"Kintaro Candy",
+ "englishUsFontType":3,
+ "frenchText":"Bonbon Kintarô",
+ "frenchFontType":3,
+ "italianText":"Caramella Kintaro",
+ "italianFontType":3,
+ "germanText":"Kintaro-Bonbon",
+ "germanFontType":3,
+ "spanishText":"Dulcecillo",
+ "spanishFontType":3,
+ "chineseTText":"金太郎糖",
+ "chineseTFontType":1,
+ "koreanText":"사탕",
+ "koreanFontType":2,
+ "portugueseText":"Doce Kintaro",
+ "portugueseFontType":2,
+ "russianText":"Леденец Кинтаро",
+ "russianFontType":2,
+ "turkishText":"Kintaro Candy",
+ "turkishFontType":2,
+ "arabicText":"حلوى كنتارو",
+ "arabicFontType":2,
+ "dutchText":"Kintaro-snoepje",
+ "dutchFontType":2,
+ "chineseSText":"金太郎糖",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_suwaru",
+ "japaneseText":"すわるどん",
+ "englishUsText":"Seated DON",
+ "englishUsFontType":3,
+ "frenchText":"DON assis",
+ "frenchFontType":3,
+ "italianText":"DON-seduto",
+ "italianFontType":3,
+ "germanText":"Sitz-DON",
+ "germanFontType":3,
+ "spanishText":"SentaDÓN",
+ "spanishFontType":3,
+ "chineseTText":"坐下咚",
+ "chineseTFontType":1,
+ "koreanText":"앉은 동",
+ "koreanFontType":2,
+ "portugueseText":"DON sentado",
+ "portugueseFontType":2,
+ "russianText":"Сидячий Дон",
+ "russianFontType":2,
+ "turkishText":"Oturmuş DON",
+ "turkishFontType":2,
+ "arabicText":"دون جالسة",
+ "arabicFontType":2,
+ "dutchText":"Zittende DON",
+ "dutchFontType":2,
+ "chineseSText":"坐下咚",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_nekoshaku",
+ "japaneseText":"ネコと杓子",
+ "englishUsText":"Cat and Shaxy",
+ "englishUsFontType":3,
+ "frenchText":"Chat et Shaxy",
+ "frenchFontType":3,
+ "italianText":"Neko e Shaxy",
+ "italianFontType":3,
+ "germanText":"Katze und Shaxy",
+ "germanFontType":3,
+ "spanishText":"Gato y Shaxy",
+ "spanishFontType":3,
+ "chineseTText":"貓與飯匙",
+ "chineseTFontType":1,
+ "koreanText":"고양이와 주걱",
+ "koreanFontType":2,
+ "portugueseText":"Cat e Shaxy",
+ "portugueseFontType":2,
+ "russianText":"Кот и Шакси",
+ "russianFontType":2,
+ "turkishText":"Kedi ve Fıçı",
+ "turkishFontType":2,
+ "arabicText":"القطّ والمغرفة",
+ "arabicFontType":2,
+ "dutchText":"Kat en Shaxy",
+ "dutchFontType":2,
+ "chineseSText":"猫与饭匙",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_happi",
+ "japaneseText":"ハッピ",
+ "englishUsText":"Happi Coat",
+ "englishUsFontType":3,
+ "frenchText":"Happi",
+ "frenchFontType":3,
+ "italianText":"Giacca kimono",
+ "italianFontType":3,
+ "germanText":"Festjacke",
+ "germanFontType":3,
+ "spanishText":"Kimono ligero happi",
+ "spanishFontType":3,
+ "chineseTText":"法被",
+ "chineseTFontType":1,
+ "koreanText":"핫피",
+ "koreanFontType":2,
+ "portugueseText":"Casaco Happi",
+ "portugueseFontType":2,
+ "russianText":"Халат Хаппи",
+ "russianFontType":2,
+ "turkishText":"Happi Ceketi",
+ "turkishFontType":2,
+ "arabicText":"معطف هابي",
+ "arabicFontType":2,
+ "dutchText":"Happi-jasje",
+ "dutchFontType":2,
+ "chineseSText":"法被",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_mikoshi",
+ "japaneseText":"おみこし",
+ "englishUsText":"Portable Shrine",
+ "englishUsFontType":3,
+ "frenchText":"Temple",
+ "frenchFontType":3,
+ "italianText":"Tempio portatile",
+ "italianFontType":3,
+ "germanText":"Mikoshi-Sänfte",
+ "germanFontType":3,
+ "spanishText":"Altar portátil",
+ "spanishFontType":3,
+ "chineseTText":"神轎",
+ "chineseTFontType":1,
+ "koreanText":"가마",
+ "koreanFontType":2,
+ "portugueseText":"Templo portátil",
+ "portugueseFontType":2,
+ "russianText":"Переносной алтарь",
+ "russianFontType":2,
+ "turkishText":"Portatif Tapınak",
+ "turkishFontType":2,
+ "arabicText":"معبد محمول",
+ "arabicFontType":2,
+ "dutchText":"Draagbare tempel",
+ "dutchFontType":2,
+ "chineseSText":"神轿",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_shishimai",
+ "japaneseText":"ししまい",
+ "englishUsText":"Lion Dance",
+ "englishUsFontType":3,
+ "frenchText":"Danse du lion",
+ "frenchFontType":3,
+ "italianText":"Leone danzante",
+ "italianFontType":3,
+ "germanText":"Löwentanz",
+ "germanFontType":3,
+ "spanishText":"León danzante",
+ "spanishFontType":3,
+ "chineseTText":"舞獅",
+ "chineseTFontType":1,
+ "koreanText":"사자 탈춤",
+ "koreanFontType":2,
+ "portugueseText":"Dança do Leão",
+ "portugueseFontType":2,
+ "russianText":"Танец льва",
+ "russianFontType":2,
+ "turkishText":"Aslan Dansı",
+ "turkishFontType":2,
+ "arabicText":"رقصة الأسد",
+ "arabicFontType":2,
+ "dutchText":"Leeuwendans",
+ "dutchFontType":2,
+ "chineseSText":"舞狮",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_samurai",
+ "japaneseText":"さむらい",
+ "englishUsText":"Samurai",
+ "englishUsFontType":3,
+ "frenchText":"Samouraï",
+ "frenchFontType":3,
+ "italianText":"Samurai",
+ "italianFontType":3,
+ "germanText":"Samurai",
+ "germanFontType":3,
+ "spanishText":"Samurái",
+ "spanishFontType":3,
+ "chineseTText":"武士",
+ "chineseTFontType":1,
+ "koreanText":"사무라이",
+ "koreanFontType":2,
+ "portugueseText":"Samurai",
+ "portugueseFontType":2,
+ "russianText":"Самурай",
+ "russianFontType":2,
+ "turkishText":"Samuray",
+ "turkishFontType":2,
+ "arabicText":"الساموراي",
+ "arabicFontType":2,
+ "dutchText":"Samurai",
+ "dutchFontType":2,
+ "chineseSText":"武士",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_ninja",
+ "japaneseText":"にんじゃ",
+ "englishUsText":"Ninja",
+ "englishUsFontType":3,
+ "frenchText":"Ninja",
+ "frenchFontType":3,
+ "italianText":"Ninja",
+ "italianFontType":3,
+ "germanText":"Ninja",
+ "germanFontType":3,
+ "spanishText":"Ninja",
+ "spanishFontType":3,
+ "chineseTText":"忍者",
+ "chineseTFontType":1,
+ "koreanText":"닌자",
+ "koreanFontType":2,
+ "portugueseText":"Ninja",
+ "portugueseFontType":2,
+ "russianText":"Ниндзя",
+ "russianFontType":2,
+ "turkishText":"Ninja",
+ "turkishFontType":2,
+ "arabicText":"النينجا",
+ "arabicFontType":2,
+ "dutchText":"Ninja",
+ "dutchFontType":2,
+ "chineseSText":"忍者",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_soldier",
+ "japaneseText":"ソルジャー",
+ "englishUsText":"Soldier",
+ "englishUsFontType":3,
+ "frenchText":"Soldat",
+ "frenchFontType":3,
+ "italianText":"Soldato",
+ "italianFontType":3,
+ "germanText":"Soldat",
+ "germanFontType":3,
+ "spanishText":"Soldado",
+ "spanishFontType":3,
+ "chineseTText":"戰士",
+ "chineseTFontType":1,
+ "koreanText":"솔저",
+ "koreanFontType":2,
+ "portugueseText":"Soldado",
+ "portugueseFontType":2,
+ "russianText":"Солдат",
+ "russianFontType":2,
+ "turkishText":"Asker",
+ "turkishFontType":2,
+ "arabicText":"الجندي",
+ "arabicFontType":2,
+ "dutchText":"Soldaat",
+ "dutchFontType":2,
+ "chineseSText":"战士",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_rocket",
+ "japaneseText":"ロケット",
+ "englishUsText":"Rocket",
+ "englishUsFontType":3,
+ "frenchText":"Fusée",
+ "frenchFontType":3,
+ "italianText":"Razzo",
+ "italianFontType":3,
+ "germanText":"Rakete",
+ "germanFontType":3,
+ "spanishText":"Cohete",
+ "spanishFontType":3,
+ "chineseTText":"火箭",
+ "chineseTFontType":1,
+ "koreanText":"로켓",
+ "koreanFontType":2,
+ "portugueseText":"Foguete",
+ "portugueseFontType":2,
+ "russianText":"Ракета",
+ "russianFontType":2,
+ "turkishText":"Roket",
+ "turkishFontType":2,
+ "arabicText":"الصاروخ",
+ "arabicFontType":2,
+ "dutchText":"Raket",
+ "dutchFontType":2,
+ "chineseSText":"火箭",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_pirate",
+ "japaneseText":"かいぞく",
+ "englishUsText":"Pirate",
+ "englishUsFontType":3,
+ "frenchText":"Pirate",
+ "frenchFontType":3,
+ "italianText":"Pirata",
+ "italianFontType":3,
+ "germanText":"Pirat",
+ "germanFontType":3,
+ "spanishText":"Pirata",
+ "spanishFontType":3,
+ "chineseTText":"海盜",
+ "chineseTFontType":1,
+ "koreanText":"해적",
+ "koreanFontType":2,
+ "portugueseText":"Pirata",
+ "portugueseFontType":2,
+ "russianText":"Пират",
+ "russianFontType":2,
+ "turkishText":"Korsan",
+ "turkishFontType":2,
+ "arabicText":"القرصان",
+ "arabicFontType":2,
+ "dutchText":"Piraat",
+ "dutchFontType":2,
+ "chineseSText":"海盗",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_metal",
+ "japaneseText":"ヘビメタ",
+ "englishUsText":"Heavy Metal",
+ "englishUsFontType":3,
+ "frenchText":"Heavy metal",
+ "frenchFontType":3,
+ "italianText":"Metallaro",
+ "italianFontType":3,
+ "germanText":"Heavy Metal",
+ "germanFontType":3,
+ "spanishText":"Heavy Metal",
+ "spanishFontType":3,
+ "chineseTText":"金屬樂",
+ "chineseTFontType":1,
+ "koreanText":"헤비메탈",
+ "koreanFontType":2,
+ "portugueseText":"Heavy Metal",
+ "portugueseFontType":2,
+ "russianText":"Хэви метал",
+ "russianFontType":2,
+ "turkishText":"Heavy Metal Müzik",
+ "turkishFontType":2,
+ "arabicText":"الهيفي ميتال",
+ "arabicFontType":2,
+ "dutchText":"Heavy metal",
+ "dutchFontType":2,
+ "chineseSText":"金属乐",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_sumo",
+ "japaneseText":"おすもうさん",
+ "englishUsText":"Sumo Wrestler",
+ "englishUsFontType":3,
+ "frenchText":"Sumo",
+ "frenchFontType":3,
+ "italianText":"Lottatore di sumo",
+ "italianFontType":3,
+ "germanText":"Sumo-Ringer",
+ "germanFontType":3,
+ "spanishText":"Luchador de sumo",
+ "spanishFontType":3,
+ "chineseTText":"相撲力士",
+ "chineseTFontType":1,
+ "koreanText":"스모선수",
+ "koreanFontType":2,
+ "portugueseText":"Lutador de Sumô",
+ "portugueseFontType":2,
+ "russianText":"Сумоист",
+ "russianFontType":2,
+ "turkishText":"Sumo Güreşçisi",
+ "turkishFontType":2,
+ "arabicText":"مصارع السومو",
+ "arabicFontType":2,
+ "dutchText":"Sumoworstelaar",
+ "dutchFontType":2,
+ "chineseSText":"相扑力士",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_king",
+ "japaneseText":"王様",
+ "englishUsText":"King",
+ "englishUsFontType":3,
+ "frenchText":"Roi",
+ "frenchFontType":3,
+ "italianText":"Re",
+ "italianFontType":3,
+ "germanText":"König",
+ "germanFontType":3,
+ "spanishText":"Rey",
+ "spanishFontType":3,
+ "chineseTText":"國王",
+ "chineseTFontType":1,
+ "koreanText":"왕",
+ "koreanFontType":2,
+ "portugueseText":"Rei",
+ "portugueseFontType":2,
+ "russianText":"Король",
+ "russianFontType":2,
+ "turkishText":"Kral",
+ "turkishFontType":2,
+ "arabicText":"الملك",
+ "arabicFontType":2,
+ "dutchText":"Koning",
+ "dutchFontType":2,
+ "chineseSText":"国王",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_kame",
+ "japaneseText":"カメ",
+ "englishUsText":"Turtle",
+ "englishUsFontType":3,
+ "frenchText":"Tortue",
+ "frenchFontType":3,
+ "italianText":"Tartaruga",
+ "italianFontType":3,
+ "germanText":"Schildkröte",
+ "germanFontType":3,
+ "spanishText":"Tortuga",
+ "spanishFontType":3,
+ "chineseTText":"烏龜",
+ "chineseTFontType":1,
+ "koreanText":"거북",
+ "koreanFontType":2,
+ "portugueseText":"Tartaruga",
+ "portugueseFontType":2,
+ "russianText":"Черепаха",
+ "russianFontType":2,
+ "turkishText":"Kaplumbağa",
+ "turkishFontType":2,
+ "arabicText":"السلحفاة",
+ "arabicFontType":2,
+ "dutchText":"Schildpad",
+ "dutchFontType":2,
+ "chineseSText":"乌龟",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_jewel",
+ "japaneseText":"宝石",
+ "englishUsText":"Jewel",
+ "englishUsFontType":3,
+ "frenchText":"Bijou",
+ "frenchFontType":3,
+ "italianText":"Gemma",
+ "italianFontType":3,
+ "germanText":"Edelstein",
+ "germanFontType":3,
+ "spanishText":"Piedra preciosa",
+ "spanishFontType":3,
+ "chineseTText":"寶石",
+ "chineseTFontType":1,
+ "koreanText":"보석",
+ "koreanFontType":2,
+ "portugueseText":"Jóia",
+ "portugueseFontType":2,
+ "russianText":"Самоцвет",
+ "russianFontType":2,
+ "turkishText":"Mücevher",
+ "turkishFontType":2,
+ "arabicText":"الجوهرة",
+ "arabicFontType":2,
+ "dutchText":"Juweel",
+ "dutchFontType":2,
+ "chineseSText":"宝石",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_ribbon_dot",
+ "japaneseText":"水玉りぼん",
+ "englishUsText":"Polka Dot Ribbon",
+ "englishUsFontType":3,
+ "frenchText":"Ruban à pois",
+ "frenchFontType":3,
+ "italianText":"Fiocco a pois",
+ "italianFontType":3,
+ "germanText":"Gepunktete Schleife",
+ "germanFontType":3,
+ "spanishText":"Lazo de lunares",
+ "spanishFontType":3,
+ "chineseTText":"圓點蝴蝶結",
+ "chineseTFontType":1,
+ "koreanText":"도트 무늬 리본",
+ "koreanFontType":2,
+ "portugueseText":"Fita de bolinhas",
+ "portugueseFontType":2,
+ "russianText":"Лента в горошек",
+ "russianFontType":2,
+ "turkishText":"Benekli kurdele",
+ "turkishFontType":2,
+ "arabicText":"الشريط المرقط",
+ "arabicFontType":2,
+ "dutchText":"Strik met stippen",
+ "dutchFontType":2,
+ "chineseSText":"圆点蝴蝶结",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_cinderella",
+ "japaneseText":"お城と馬車",
+ "englishUsText":"Castle and Carriage",
+ "englishUsFontType":3,
+ "frenchText":"Château et calèche",
+ "frenchFontType":3,
+ "italianText":"Castello e carrozza",
+ "italianFontType":3,
+ "germanText":"Schloss und Kutsche",
+ "germanFontType":3,
+ "spanishText":"Castillo y carruaje",
+ "spanishFontType":3,
+ "chineseTText":"城堡與馬車",
+ "chineseTFontType":1,
+ "koreanText":"궁전과 마차",
+ "koreanFontType":2,
+ "portugueseText":"Cinderela",
+ "portugueseFontType":2,
+ "russianText":"Замок и карета",
+ "russianFontType":2,
+ "turkishText":"Kale ve Taşıma",
+ "turkishFontType":2,
+ "arabicText":"القلعة والعربة",
+ "arabicFontType":2,
+ "dutchText":"Kasteel en Koets",
+ "dutchFontType":2,
+ "chineseSText":"城堡与马车",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_princess",
+ "japaneseText":"お姫さま",
+ "englishUsText":"Princess",
+ "englishUsFontType":3,
+ "frenchText":"Princesse",
+ "frenchFontType":3,
+ "italianText":"Principessa",
+ "italianFontType":3,
+ "germanText":"Prinzessin",
+ "germanFontType":3,
+ "spanishText":"Princesa",
+ "spanishFontType":3,
+ "chineseTText":"公主",
+ "chineseTFontType":1,
+ "koreanText":"공주님",
+ "koreanFontType":2,
+ "portugueseText":"Princesa",
+ "portugueseFontType":2,
+ "russianText":"Принцесса",
+ "russianFontType":2,
+ "turkishText":"Prenses",
+ "turkishFontType":2,
+ "arabicText":"الأميرة",
+ "arabicFontType":2,
+ "dutchText":"Prinses",
+ "dutchFontType":2,
+ "chineseSText":"公主",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_kojika",
+ "japaneseText":"こじか",
+ "englishUsText":"Fawn",
+ "englishUsFontType":3,
+ "frenchText":"Faon",
+ "frenchFontType":3,
+ "italianText":"Cerbiatto",
+ "italianFontType":3,
+ "germanText":"Rehkitz",
+ "germanFontType":3,
+ "spanishText":"Cervatillo",
+ "spanishFontType":3,
+ "chineseTText":"小鹿",
+ "chineseTFontType":1,
+ "koreanText":"아기 사슴",
+ "koreanFontType":2,
+ "portugueseText":"Veadinho",
+ "portugueseFontType":2,
+ "russianText":"Олененок",
+ "russianFontType":2,
+ "turkishText":"Yavru geyik",
+ "turkishFontType":2,
+ "arabicText":"الغزال الصغير",
+ "arabicFontType":2,
+ "dutchText":"Hertje",
+ "dutchFontType":2,
+ "chineseSText":"小鹿",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_ribbon_big",
+ "japaneseText":"おっきなリボン",
+ "englishUsText":"Huge Ribbon",
+ "englishUsFontType":3,
+ "frenchText":"Grand ruban",
+ "frenchFontType":3,
+ "italianText":"Fiocco grande",
+ "italianFontType":3,
+ "germanText":"Riesenschleife",
+ "germanFontType":3,
+ "spanishText":"Gran lazo",
+ "spanishFontType":3,
+ "chineseTText":"巨大蝴蝶結",
+ "chineseTFontType":1,
+ "koreanText":"큰 리본",
+ "koreanFontType":2,
+ "portugueseText":"Fita grande",
+ "portugueseFontType":2,
+ "russianText":"Огромная лента",
+ "russianFontType":2,
+ "turkishText":"Büyük Kurdele",
+ "turkishFontType":2,
+ "arabicText":"الشريط الكبير",
+ "arabicFontType":2,
+ "dutchText":"Grote strik",
+ "dutchFontType":2,
+ "chineseSText":"巨大蝴蝶结",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_yatai",
+ "japaneseText":"やたい",
+ "englishUsText":"Stall",
+ "englishUsFontType":3,
+ "frenchText":"Stand",
+ "frenchFontType":3,
+ "italianText":"Bancarella",
+ "italianFontType":3,
+ "germanText":"Imbissstand",
+ "germanFontType":3,
+ "spanishText":"Puesto ambulante",
+ "spanishFontType":3,
+ "chineseTText":"攤車",
+ "chineseTFontType":1,
+ "koreanText":"포장마차",
+ "koreanFontType":2,
+ "portugueseText":"Barraquinha",
+ "portugueseFontType":2,
+ "russianText":"Тележка",
+ "russianFontType":2,
+ "turkishText":"Seyyar mağaza",
+ "turkishFontType":2,
+ "arabicText":"الكُشك",
+ "arabicFontType":2,
+ "dutchText":"Kraam",
+ "dutchFontType":2,
+ "chineseSText":"摊车",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_cat_dipper",
+ "japaneseText":"ネコと杓子",
+ "englishUsText":"Cat and Shaxy",
+ "englishUsFontType":3,
+ "frenchText":"Chat et Shaxy",
+ "frenchFontType":3,
+ "italianText":"Neko e Shaxy",
+ "italianFontType":3,
+ "germanText":"Katze und Shaxy",
+ "germanFontType":3,
+ "spanishText":"Gato y Shaxy",
+ "spanishFontType":3,
+ "chineseTText":"貓與飯匙",
+ "chineseTFontType":1,
+ "koreanText":"고양이와 주걱",
+ "koreanFontType":2,
+ "portugueseText":"Cat e Shaxy",
+ "portugueseFontType":2,
+ "russianText":"Кот и Шакси",
+ "russianFontType":2,
+ "turkishText":"Kedi ve Fıçı",
+ "turkishFontType":2,
+ "arabicText":"القطّ والمغرفة",
+ "arabicFontType":2,
+ "dutchText":"Kat en Shaxy",
+ "dutchFontType":2,
+ "chineseSText":"猫与饭匙",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_snowman",
+ "japaneseText":"ゆきだるま",
+ "englishUsText":"Snowman",
+ "englishUsFontType":3,
+ "frenchText":"Bonhomme de neige",
+ "frenchFontType":3,
+ "italianText":"Pupazzo di neve",
+ "italianFontType":3,
+ "germanText":"Schneemann",
+ "germanFontType":3,
+ "spanishText":"MuñecoDÓN de nieve",
+ "spanishFontType":3,
+ "chineseTText":"雪人",
+ "chineseTFontType":1,
+ "koreanText":"눈사람",
+ "koreanFontType":2,
+ "portugueseText":"Boneco de neve",
+ "portugueseFontType":2,
+ "russianText":"Снеговик",
+ "russianFontType":2,
+ "turkishText":"Kardan adam",
+ "turkishFontType":2,
+ "arabicText":"رجل الثلج",
+ "arabicFontType":2,
+ "dutchText":"Sneeuwman",
+ "dutchFontType":2,
+ "chineseSText":"雪人",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_hanakazari",
+ "japaneseText":"はなかざり",
+ "englishUsText":"Floral Decorations",
+ "englishUsFontType":3,
+ "frenchText":"Couronne de fleurs",
+ "frenchFontType":3,
+ "italianText":"Fiori",
+ "italianFontType":3,
+ "germanText":"Blumenstrauß",
+ "germanFontType":3,
+ "spanishText":"Decoración floral",
+ "spanishFontType":3,
+ "chineseTText":"花飾",
+ "chineseTFontType":1,
+ "koreanText":"꽃장식",
+ "koreanFontType":2,
+ "portugueseText":"Decoração de flor",
+ "portugueseFontType":2,
+ "russianText":"Цветочные украшения",
+ "russianFontType":2,
+ "turkishText":"Çiçek dekorasyonları",
+ "turkishFontType":2,
+ "arabicText":"ديكورات الأزهار",
+ "arabicFontType":2,
+ "dutchText":"Bloemdecoraties",
+ "dutchFontType":2,
+ "chineseSText":"花饰",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_usamimi",
+ "japaneseText":"うさみみ",
+ "englishUsText":"Bunny Ears",
+ "englishUsFontType":3,
+ "frenchText":"Oreilles de lapin",
+ "frenchFontType":3,
+ "italianText":"Orecchie da coniglio",
+ "italianFontType":3,
+ "germanText":"Hasenohren",
+ "germanFontType":3,
+ "spanishText":"Orejitas de conejo",
+ "spanishFontType":3,
+ "chineseTText":"兔耳朵",
+ "chineseTFontType":1,
+ "koreanText":"토끼 귀",
+ "koreanFontType":2,
+ "portugueseText":"Orelhas de coelho",
+ "portugueseFontType":2,
+ "russianText":"Заячьи ушки",
+ "russianFontType":2,
+ "turkishText":"Tavşan Kulakları",
+ "turkishFontType":2,
+ "arabicText":"أذن الأرنب",
+ "arabicFontType":2,
+ "dutchText":"Konijnenoren",
+ "dutchFontType":2,
+ "chineseSText":"兔耳朵",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_sweets",
+ "japaneseText":"スイーツ",
+ "englishUsText":"Cake",
+ "englishUsFontType":3,
+ "frenchText":"Gâteau",
+ "frenchFontType":3,
+ "italianText":"Dolci",
+ "italianFontType":3,
+ "germanText":"Süßigkeiten",
+ "germanFontType":3,
+ "spanishText":"Pastel",
+ "spanishFontType":3,
+ "chineseTText":"甜點",
+ "chineseTFontType":1,
+ "koreanText":"디저트",
+ "koreanFontType":2,
+ "portugueseText":"Doces",
+ "portugueseFontType":2,
+ "russianText":"Торт",
+ "russianFontType":2,
+ "turkishText":"Kek",
+ "turkishFontType":2,
+ "arabicText":"الكعكة",
+ "arabicFontType":2,
+ "dutchText":"Taart",
+ "dutchFontType":2,
+ "chineseSText":"甜点",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_wedding",
+ "japaneseText":"ウェディングドレス",
+ "englishUsText":"Wedding Dress",
+ "englishUsFontType":3,
+ "frenchText":"Robe de mariée",
+ "frenchFontType":3,
+ "italianText":"Abito da sposa",
+ "italianFontType":3,
+ "germanText":"Hochzeitskleid",
+ "germanFontType":3,
+ "spanishText":"Vestido de novia",
+ "spanishFontType":3,
+ "chineseTText":"婚紗",
+ "chineseTFontType":1,
+ "koreanText":"웨딩드레스",
+ "koreanFontType":2,
+ "portugueseText":"Vestido de casamento",
+ "portugueseFontType":2,
+ "russianText":"Свадебное платье",
+ "russianFontType":2,
+ "turkishText":"Bordo 4",
+ "turkishFontType":2,
+ "arabicText":"فستان الزفاف",
+ "arabicFontType":2,
+ "dutchText":"Bruidsjurk",
+ "dutchFontType":2,
+ "chineseSText":"婚纱",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_kajiki",
+ "japaneseText":"かじきまぐろ",
+ "englishUsText":"Marlin",
+ "englishUsFontType":3,
+ "frenchText":"Marlin",
+ "frenchFontType":3,
+ "italianText":"Pesce spada",
+ "italianFontType":3,
+ "germanText":"Speerfisch",
+ "germanFontType":3,
+ "spanishText":"Pez aguja",
+ "spanishFontType":3,
+ "chineseTText":"旗魚",
+ "chineseTFontType":1,
+ "koreanText":"청새치",
+ "koreanFontType":2,
+ "portugueseText":"Marlin",
+ "portugueseFontType":2,
+ "russianText":"Марлин",
+ "russianFontType":2,
+ "turkishText":"Kılıçbalığı",
+ "turkishFontType":2,
+ "arabicText":"مارلين",
+ "arabicFontType":2,
+ "dutchText":"Marlijn",
+ "dutchFontType":2,
+ "chineseSText":"旗鱼",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_headphone",
+ "japaneseText":"ヘッドフォン",
+ "englishUsText":"Headphones",
+ "englishUsFontType":3,
+ "frenchText":"Casque audio",
+ "frenchFontType":3,
+ "italianText":"Cuffie",
+ "italianFontType":3,
+ "germanText":"Kopfhörer",
+ "germanFontType":3,
+ "spanishText":"Auriculares",
+ "spanishFontType":3,
+ "chineseTText":"耳機",
+ "chineseTFontType":1,
+ "koreanText":"헤드폰",
+ "koreanFontType":2,
+ "portugueseText":"Fone de ouvido",
+ "portugueseFontType":2,
+ "russianText":"Наушники",
+ "russianFontType":2,
+ "turkishText":"Kulaklıklar",
+ "turkishFontType":2,
+ "arabicText":"سماعات الرأس",
+ "arabicFontType":2,
+ "dutchText":"Koptelefoon",
+ "dutchFontType":2,
+ "chineseSText":"耳机",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_zipper",
+ "japaneseText":"ジッパー",
+ "englishUsText":"Zipper",
+ "englishUsFontType":3,
+ "frenchText":"Fermeture éclair",
+ "frenchFontType":3,
+ "italianText":"Cerniera",
+ "italianFontType":3,
+ "germanText":"Reißverschluss",
+ "germanFontType":3,
+ "spanishText":"Cremallera",
+ "spanishFontType":3,
+ "chineseTText":"拉鍊",
+ "chineseTFontType":1,
+ "koreanText":"지퍼",
+ "koreanFontType":2,
+ "portugueseText":"Zíper",
+ "portugueseFontType":2,
+ "russianText":"Молния",
+ "russianFontType":2,
+ "turkishText":"Fermuar",
+ "turkishFontType":2,
+ "arabicText":"السحّاب",
+ "arabicFontType":2,
+ "dutchText":"Rits",
+ "dutchFontType":2,
+ "chineseSText":"拉链",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_wing",
+ "japaneseText":"はね",
+ "englishUsText":"Wings",
+ "englishUsFontType":3,
+ "frenchText":"Ailes",
+ "frenchFontType":3,
+ "italianText":"Ali",
+ "italianFontType":3,
+ "germanText":"Flügel",
+ "germanFontType":3,
+ "spanishText":"Alitas",
+ "spanishFontType":3,
+ "chineseTText":"翅膀",
+ "chineseTFontType":1,
+ "koreanText":"날개",
+ "koreanFontType":2,
+ "portugueseText":"Asas",
+ "portugueseFontType":2,
+ "russianText":"Крылья",
+ "russianFontType":2,
+ "turkishText":"Kanatlar",
+ "turkishFontType":2,
+ "arabicText":"الأجنحة",
+ "arabicFontType":2,
+ "dutchText":"Vleugels",
+ "dutchFontType":2,
+ "chineseSText":"翅膀",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_miko",
+ "japaneseText":"巫女さん",
+ "englishUsText":"Shrine Maiden",
+ "englishUsFontType":3,
+ "frenchText":"Miko",
+ "frenchFontType":3,
+ "italianText":"Miko",
+ "italianFontType":3,
+ "germanText":"Schreinmädchen",
+ "germanFontType":3,
+ "spanishText":"Doncella de templo",
+ "spanishFontType":3,
+ "chineseTText":"巫女",
+ "chineseTFontType":1,
+ "koreanText":"무녀",
+ "koreanFontType":2,
+ "portugueseText":"Miko",
+ "portugueseFontType":2,
+ "russianText":"Мико",
+ "russianFontType":2,
+ "turkishText":"Tapınak Görevlisi",
+ "turkishFontType":2,
+ "arabicText":"العذراء",
+ "arabicFontType":2,
+ "dutchText":"Tempelmaagd",
+ "dutchFontType":2,
+ "chineseSText":"巫女",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_uchan",
+ "japaneseText":"うーちゃん",
+ "englishUsText":"U-chan",
+ "englishUsFontType":3,
+ "frenchText":"U-chan",
+ "frenchFontType":3,
+ "italianText":"U-chan",
+ "italianFontType":3,
+ "germanText":"UH-chan",
+ "germanFontType":3,
+ "spanishText":"U-chan",
+ "spanishFontType":3,
+ "chineseTText":"小鶯",
+ "chineseTFontType":1,
+ "koreanText":"파람이",
+ "koreanFontType":2,
+ "portugueseText":"U-chan",
+ "portugueseFontType":2,
+ "russianText":"Соло-тян",
+ "russianFontType":2,
+ "turkishText":"U-chan",
+ "turkishFontType":2,
+ "arabicText":"يو-تشان",
+ "arabicFontType":2,
+ "dutchText":"U-chan",
+ "dutchFontType":2,
+ "chineseSText":"小莺",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_tetsuo",
+ "japaneseText":"どんちゃんライド",
+ "englishUsText":"DON-chan Ride",
+ "englishUsFontType":3,
+ "frenchText":"À bord de DON-chan",
+ "frenchFontType":3,
+ "italianText":"DON-chan cavalluccio",
+ "italianFontType":3,
+ "germanText":"DON-chan-Gefährt",
+ "germanFontType":3,
+ "spanishText":"Vehículo de DON-chan",
+ "spanishFontType":3,
+ "chineseTText":"騎乘小咚",
+ "chineseTFontType":1,
+ "koreanText":"동이 라이드",
+ "koreanFontType":2,
+ "portugueseText":"DON-chan Ride",
+ "portugueseFontType":2,
+ "russianText":"Аттракцион \"Дон-тян\"",
+ "russianFontType":2,
+ "turkishText":"DON-chan Turu",
+ "turkishFontType":2,
+ "arabicText":"مَرْكبة دون-تشان",
+ "arabicFontType":2,
+ "dutchText":"Don-chan-wagen",
+ "dutchFontType":2,
+ "chineseSText":"骑乘小咚",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_sailor",
+ "japaneseText":"水兵さん",
+ "englishUsText":"Sailor",
+ "englishUsFontType":3,
+ "frenchText":"Marin",
+ "frenchFontType":3,
+ "italianText":"Marinaio",
+ "italianFontType":3,
+ "germanText":"Matrose",
+ "germanFontType":3,
+ "spanishText":"Marinero",
+ "spanishFontType":3,
+ "chineseTText":"海軍",
+ "chineseTFontType":1,
+ "koreanText":"해군",
+ "koreanFontType":2,
+ "portugueseText":"Marinheiro",
+ "portugueseFontType":2,
+ "russianText":"Матрос",
+ "russianFontType":2,
+ "turkishText":"Denizci",
+ "turkishFontType":2,
+ "arabicText":"البحَّار",
+ "arabicFontType":2,
+ "dutchText":"Zeeman",
+ "dutchFontType":2,
+ "chineseSText":"海军",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_drill",
+ "japaneseText":"ドリル",
+ "englishUsText":"Drill",
+ "englishUsFontType":3,
+ "frenchText":"Perceuse",
+ "frenchFontType":3,
+ "italianText":"Trivella",
+ "italianFontType":3,
+ "germanText":"Bohrer",
+ "germanFontType":3,
+ "spanishText":"Perforadora",
+ "spanishFontType":3,
+ "chineseTText":"鑽頭",
+ "chineseTFontType":1,
+ "koreanText":"드릴",
+ "koreanFontType":2,
+ "portugueseText":"Furadeira",
+ "portugueseFontType":2,
+ "russianText":"Бур",
+ "russianFontType":2,
+ "turkishText":"Kazma",
+ "turkishFontType":2,
+ "arabicText":"الحفّار",
+ "arabicFontType":2,
+ "dutchText":"Boor",
+ "dutchFontType":2,
+ "chineseSText":"钻头",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_omen_kitsune",
+ "japaneseText":"きつねのおめん",
+ "englishUsText":"Fox Mask",
+ "englishUsFontType":3,
+ "frenchText":"Masque de renard",
+ "frenchFontType":3,
+ "italianText":"Maschera da volpe",
+ "italianFontType":3,
+ "germanText":"Fuchs-Maske",
+ "germanFontType":3,
+ "spanishText":"Máscara de zorro",
+ "spanishFontType":3,
+ "chineseTText":"狐狸面具",
+ "chineseTFontType":1,
+ "koreanText":"여우 가면",
+ "koreanFontType":2,
+ "portugueseText":"Máscara de raposa",
+ "portugueseFontType":2,
+ "russianText":"Маска лисы",
+ "russianFontType":2,
+ "turkishText":"Tilki Maskesi",
+ "turkishFontType":2,
+ "arabicText":"قناع الثعلب",
+ "arabicFontType":2,
+ "dutchText":"Vossenmasker",
+ "dutchFontType":2,
+ "chineseSText":"狐狸面具",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_chibidon",
+ "japaneseText":"ちびどん",
+ "englishUsText":"Mini-DON",
+ "englishUsFontType":3,
+ "frenchText":"Petit DON",
+ "frenchFontType":3,
+ "italianText":"Mini-DON",
+ "italianFontType":3,
+ "germanText":"Mini-DON-chan",
+ "germanFontType":3,
+ "spanishText":"Mini DON",
+ "spanishFontType":3,
+ "chineseTText":"迷你咚",
+ "chineseTFontType":1,
+ "koreanText":"미니동",
+ "koreanFontType":2,
+ "portugueseText":"Mini DON",
+ "portugueseFontType":2,
+ "russianText":"Чибидон",
+ "russianFontType":2,
+ "turkishText":"Mini-DON",
+ "turkishFontType":2,
+ "arabicText":"دون صغير",
+ "arabicFontType":2,
+ "dutchText":"Mini-DON",
+ "dutchFontType":2,
+ "chineseSText":"迷你咚",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_great_taiko",
+ "japaneseText":"豪華な太鼓",
+ "englishUsText":"Deluxe Drum",
+ "englishUsFontType":3,
+ "frenchText":"Taiko de luxe",
+ "frenchFontType":3,
+ "italianText":"Tamburo deluxe",
+ "italianFontType":3,
+ "germanText":"Deluxe-Trommel",
+ "germanFontType":3,
+ "spanishText":"Tambor de lujo",
+ "spanishFontType":3,
+ "chineseTText":"豪華太鼓",
+ "chineseTFontType":1,
+ "koreanText":"화려한 북",
+ "koreanFontType":2,
+ "portugueseText":"Taiko deluxe",
+ "portugueseFontType":2,
+ "russianText":"Шикарный барабан",
+ "russianFontType":2,
+ "turkishText":"Üst sınıf davul",
+ "turkishFontType":2,
+ "arabicText":"طبلة فاخرة",
+ "arabicFontType":2,
+ "dutchText":"Deluxe drum",
+ "dutchFontType":2,
+ "chineseSText":"豪华太鼓",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_kabuki",
+ "japaneseText":"歌舞伎",
+ "englishUsText":"Kabuki",
+ "englishUsFontType":3,
+ "frenchText":"Kabuki",
+ "frenchFontType":3,
+ "italianText":"Kabuki",
+ "italianFontType":3,
+ "germanText":"Kabuki",
+ "germanFontType":3,
+ "spanishText":"Kabuki",
+ "spanishFontType":3,
+ "chineseTText":"歌舞伎",
+ "chineseTFontType":1,
+ "koreanText":"가부키",
+ "koreanFontType":2,
+ "portugueseText":"Kabuki",
+ "portugueseFontType":2,
+ "russianText":"Кабуки",
+ "russianFontType":2,
+ "turkishText":"Kabuki",
+ "turkishFontType":2,
+ "arabicText":"كابوكي",
+ "arabicFontType":2,
+ "dutchText":"Kabuki",
+ "dutchFontType":2,
+ "chineseSText":"歌舞伎",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_lucky",
+ "japaneseText":"えんぎもの",
+ "englishUsText":"Lucky Charm",
+ "englishUsFontType":3,
+ "frenchText":"Porte-bonheur",
+ "frenchFontType":3,
+ "italianText":"Portafortuna",
+ "italianFontType":3,
+ "germanText":"Glücksbringer",
+ "germanFontType":3,
+ "spanishText":"Amuleto de la suerte",
+ "spanishFontType":3,
+ "chineseTText":"幸運物",
+ "chineseTFontType":1,
+ "koreanText":"럭키 아이템",
+ "koreanFontType":2,
+ "portugueseText":"Feitiço da sorte",
+ "portugueseFontType":2,
+ "russianText":"Талисман",
+ "russianFontType":2,
+ "turkishText":"Nazarlık",
+ "turkishFontType":2,
+ "arabicText":"التميمة المحظوظة",
+ "arabicFontType":2,
+ "dutchText":"Talisman",
+ "dutchFontType":2,
+ "chineseSText":"幸运物",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_kujyaku",
+ "japaneseText":"くじゃく",
+ "englishUsText":"Peacock",
+ "englishUsFontType":3,
+ "frenchText":"Paon",
+ "frenchFontType":3,
+ "italianText":"Pavone",
+ "italianFontType":3,
+ "germanText":"Pfau",
+ "germanFontType":3,
+ "spanishText":"Pavo",
+ "spanishFontType":3,
+ "chineseTText":"孔雀",
+ "chineseTFontType":1,
+ "koreanText":"공작새",
+ "koreanFontType":2,
+ "portugueseText":"Pavão",
+ "portugueseFontType":2,
+ "russianText":"Павлин",
+ "russianFontType":2,
+ "turkishText":"Tavuskuşu",
+ "turkishFontType":2,
+ "arabicText":"الطاووس",
+ "arabicFontType":2,
+ "dutchText":"Pauw",
+ "dutchFontType":2,
+ "chineseSText":"孔雀",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_mage",
+ "japaneseText":"ちょんまげ",
+ "englishUsText":"Topknot",
+ "englishUsFontType":3,
+ "frenchText":"Chonmage",
+ "frenchFontType":3,
+ "italianText":"Chonmage",
+ "italianFontType":3,
+ "germanText":"Chonmage",
+ "germanFontType":3,
+ "spanishText":"Pelo a la antigua",
+ "spanishFontType":3,
+ "chineseTText":"丁髻",
+ "chineseTFontType":1,
+ "koreanText":"촌마게",
+ "koreanFontType":2,
+ "portugueseText":"Coque",
+ "portugueseFontType":2,
+ "russianText":"Тёнмагэ",
+ "russianFontType":2,
+ "turkishText":"Topuz",
+ "turkishFontType":2,
+ "arabicText":"التوب نوت",
+ "arabicFontType":2,
+ "dutchText":"Knotje",
+ "dutchFontType":2,
+ "chineseSText":"丁髻",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_champion",
+ "japaneseText":"チャンピオン",
+ "englishUsText":"Champion",
+ "englishUsFontType":3,
+ "frenchText":"Champion",
+ "frenchFontType":3,
+ "italianText":"Campione",
+ "italianFontType":3,
+ "germanText":"Champion",
+ "germanFontType":3,
+ "spanishText":"Campeón",
+ "spanishFontType":3,
+ "chineseTText":"冠軍",
+ "chineseTFontType":1,
+ "koreanText":"챔피언",
+ "koreanFontType":2,
+ "portugueseText":"Campeão",
+ "portugueseFontType":2,
+ "russianText":"Чемпион",
+ "russianFontType":2,
+ "turkishText":"Şampiyon",
+ "turkishFontType":2,
+ "arabicText":"البطل",
+ "arabicFontType":2,
+ "dutchText":"Kampioen",
+ "dutchFontType":2,
+ "chineseSText":"冠军",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_guardian",
+ "japaneseText":"ガーディアン",
+ "englishUsText":"Guardian",
+ "englishUsFontType":3,
+ "frenchText":"Gardien",
+ "frenchFontType":3,
+ "italianText":"Guardiano",
+ "italianFontType":3,
+ "germanText":"Ritterrüstung",
+ "germanFontType":3,
+ "spanishText":"Guardián",
+ "spanishFontType":3,
+ "chineseTText":"守衛",
+ "chineseTFontType":1,
+ "koreanText":"가디언",
+ "koreanFontType":2,
+ "portugueseText":"Guardião",
+ "portugueseFontType":2,
+ "russianText":"Страж",
+ "russianFontType":2,
+ "turkishText":"Muhafız",
+ "turkishFontType":2,
+ "arabicText":"الحارس",
+ "arabicFontType":2,
+ "dutchText":"Beschermer",
+ "dutchFontType":2,
+ "chineseSText":"守卫",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_devil",
+ "japaneseText":"デビル",
+ "englishUsText":"Devil",
+ "englishUsFontType":3,
+ "frenchText":"Démon",
+ "frenchFontType":3,
+ "italianText":"Diavolo",
+ "italianFontType":3,
+ "germanText":"Teufel",
+ "germanFontType":3,
+ "spanishText":"Diablo",
+ "spanishFontType":3,
+ "chineseTText":"惡魔",
+ "chineseTFontType":1,
+ "koreanText":"데빌",
+ "koreanFontType":2,
+ "portugueseText":"Demônio",
+ "portugueseFontType":2,
+ "russianText":"Дьявол",
+ "russianFontType":2,
+ "turkishText":"Şeytan",
+ "turkishFontType":2,
+ "arabicText":"الشر",
+ "arabicFontType":2,
+ "dutchText":"Duivel",
+ "dutchFontType":2,
+ "chineseSText":"恶魔",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_himawari",
+ "japaneseText":"ひまわり",
+ "englishUsText":"Sunflower",
+ "englishUsFontType":3,
+ "frenchText":"Tournesol",
+ "frenchFontType":3,
+ "italianText":"Girasole",
+ "italianFontType":3,
+ "germanText":"Sonnenblume",
+ "germanFontType":3,
+ "spanishText":"Girasol",
+ "spanishFontType":3,
+ "chineseTText":"向日葵",
+ "chineseTFontType":1,
+ "koreanText":"해바라기",
+ "koreanFontType":2,
+ "portugueseText":"Girassol",
+ "portugueseFontType":2,
+ "russianText":"Подсолнух",
+ "russianFontType":2,
+ "turkishText":"Ay çiçeği",
+ "turkishFontType":2,
+ "arabicText":"دوّار الشمس",
+ "arabicFontType":2,
+ "dutchText":"Zonnebloem",
+ "dutchFontType":2,
+ "chineseSText":"向日葵",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_morinonakama",
+ "japaneseText":"もりのなかま",
+ "englishUsText":"Woodland Friends",
+ "englishUsFontType":3,
+ "frenchText":"Amis de la forêt",
+ "frenchFontType":3,
+ "italianText":"Amici della foresta",
+ "italianFontType":3,
+ "germanText":"Waldkameraden",
+ "germanFontType":3,
+ "spanishText":"Amigos del bosque",
+ "spanishFontType":3,
+ "chineseTText":"森林的夥伴",
+ "chineseTFontType":1,
+ "koreanText":"숲속 친구들",
+ "koreanFontType":2,
+ "portugueseText":"Amigos da floresta",
+ "portugueseFontType":2,
+ "russianText":"Лесные обитатели",
+ "russianFontType":2,
+ "turkishText":"Orman Arkadaşları",
+ "turkishFontType":2,
+ "arabicText":"أصدقاء الغابة",
+ "arabicFontType":2,
+ "dutchText":"Vrienden uit het bos",
+ "dutchFontType":2,
+ "chineseSText":"森林的伙伴",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_lion",
+ "japaneseText":"らいおん",
+ "englishUsText":"Lion",
+ "englishUsFontType":3,
+ "frenchText":"Lion",
+ "frenchFontType":3,
+ "italianText":"Leone",
+ "italianFontType":3,
+ "germanText":"Löwe",
+ "germanFontType":3,
+ "spanishText":"León",
+ "spanishFontType":3,
+ "chineseTText":"獅子",
+ "chineseTFontType":1,
+ "koreanText":"사자",
+ "koreanFontType":2,
+ "portugueseText":"Leão",
+ "portugueseFontType":2,
+ "russianText":"Лев",
+ "russianFontType":2,
+ "turkishText":"Aslan",
+ "turkishFontType":2,
+ "arabicText":"الأسد",
+ "arabicFontType":2,
+ "dutchText":"Leeuw",
+ "dutchFontType":2,
+ "chineseSText":"狮子",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_ikemen",
+ "japaneseText":"イケメンヘアー",
+ "englishUsText":"Boy Band Idol",
+ "englishUsFontType":3,
+ "frenchText":"Beaux cheveux",
+ "frenchFontType":3,
+ "italianText":"Capelli fashion",
+ "italianFontType":3,
+ "germanText":"Rocker-Mähne",
+ "germanFontType":3,
+ "spanishText":"Ídolo juvenil",
+ "spanishFontType":3,
+ "chineseTText":"帥哥髮型",
+ "chineseTFontType":1,
+ "koreanText":"멋진 남자 헤어",
+ "koreanFontType":2,
+ "portugueseText":"Ídolo de Boy Band",
+ "portugueseFontType":2,
+ "russianText":"Певец бойз бенда",
+ "russianFontType":2,
+ "turkishText":"Grubun Yıldızı",
+ "turkishFontType":2,
+ "arabicText":"محبوب الفرقة",
+ "arabicFontType":2,
+ "dutchText":"Ster uit een boyband",
+ "dutchFontType":2,
+ "chineseSText":"帅哥发型",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_bowling",
+ "japaneseText":"ボウリング",
+ "englishUsText":"Bowling",
+ "englishUsFontType":3,
+ "frenchText":"Bowling",
+ "frenchFontType":3,
+ "italianText":"Palla da bowling",
+ "italianFontType":3,
+ "germanText":"Bowling-Kugel",
+ "germanFontType":3,
+ "spanishText":"Bolos",
+ "spanishFontType":3,
+ "chineseTText":"保齡球",
+ "chineseTFontType":1,
+ "koreanText":"볼링",
+ "koreanFontType":2,
+ "portugueseText":"Boliche",
+ "portugueseFontType":2,
+ "russianText":"Боулинг",
+ "russianFontType":2,
+ "turkishText":"Bowling",
+ "turkishFontType":2,
+ "arabicText":"البولينج",
+ "arabicFontType":2,
+ "dutchText":"Bowling",
+ "dutchFontType":2,
+ "chineseSText":"保龄球",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_camera",
+ "japaneseText":"カメラ",
+ "englishUsText":"Camera",
+ "englishUsFontType":3,
+ "frenchText":"Appareil photo",
+ "frenchFontType":3,
+ "italianText":"Macchina fotografica",
+ "italianFontType":3,
+ "germanText":"Kamera",
+ "germanFontType":3,
+ "spanishText":"Cámara",
+ "spanishFontType":3,
+ "chineseTText":"相機",
+ "chineseTFontType":1,
+ "koreanText":"카메라",
+ "koreanFontType":2,
+ "portugueseText":"Câmera",
+ "portugueseFontType":2,
+ "russianText":"Камера",
+ "russianFontType":2,
+ "turkishText":"Kamera",
+ "turkishFontType":2,
+ "arabicText":"الكاميرا",
+ "arabicFontType":2,
+ "dutchText":"Camera",
+ "dutchFontType":2,
+ "chineseSText":"相机",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_student_girl",
+ "japaneseText":"女子学生",
+ "englishUsText":"Schoolgirl",
+ "englishUsFontType":3,
+ "frenchText":"Étudiante",
+ "frenchFontType":3,
+ "italianText":"Studentessa",
+ "italianFontType":3,
+ "germanText":"Schulmädchen",
+ "germanFontType":3,
+ "spanishText":"Colegiala",
+ "spanishFontType":3,
+ "chineseTText":"女學生",
+ "chineseTFontType":1,
+ "koreanText":"여학생",
+ "koreanFontType":2,
+ "portugueseText":"Menina estudante",
+ "portugueseFontType":2,
+ "russianText":"Школьница",
+ "russianFontType":2,
+ "turkishText":"Kız öğrenci",
+ "turkishFontType":2,
+ "arabicText":"فتاة المدرسة",
+ "arabicFontType":2,
+ "dutchText":"Schoolmeisje",
+ "dutchFontType":2,
+ "chineseSText":"女学生",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_student_boy",
+ "japaneseText":"男子学生",
+ "englishUsText":"Schoolboy",
+ "englishUsFontType":3,
+ "frenchText":"Étudiant",
+ "frenchFontType":3,
+ "italianText":"Studente",
+ "italianFontType":3,
+ "germanText":"Schuljunge",
+ "germanFontType":3,
+ "spanishText":"Estudiante",
+ "spanishFontType":3,
+ "chineseTText":"男學生",
+ "chineseTFontType":1,
+ "koreanText":"남학생",
+ "koreanFontType":2,
+ "portugueseText":"Menino estudante",
+ "portugueseFontType":2,
+ "russianText":"Школьник",
+ "russianFontType":2,
+ "turkishText":"Erkek öğrenci",
+ "turkishFontType":2,
+ "arabicText":"فتى المدرسة",
+ "arabicFontType":2,
+ "dutchText":"Schooljongen",
+ "dutchFontType":2,
+ "chineseSText":"男学生",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_omatsuri",
+ "japaneseText":"おまつり",
+ "englishUsText":"Festival",
+ "englishUsFontType":3,
+ "frenchText":"Festival",
+ "frenchFontType":3,
+ "italianText":"Festival",
+ "italianFontType":3,
+ "germanText":"Fest",
+ "germanFontType":3,
+ "spanishText":"Festival",
+ "spanishFontType":3,
+ "chineseTText":"祭典",
+ "chineseTFontType":1,
+ "koreanText":"축제",
+ "koreanFontType":2,
+ "portugueseText":"Festival",
+ "portugueseFontType":2,
+ "russianText":"Фестиваль",
+ "russianFontType":2,
+ "turkishText":"Festival",
+ "turkishFontType":2,
+ "arabicText":"الاحتفال",
+ "arabicFontType":2,
+ "dutchText":"Festival",
+ "dutchFontType":2,
+ "chineseSText":"祭典",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_kadomatsu",
+ "japaneseText":"お正月",
+ "englishUsText":"Happy New Year!",
+ "englishUsFontType":3,
+ "frenchText":"Nouvel An",
+ "frenchFontType":3,
+ "italianText":"Capodanno",
+ "italianFontType":3,
+ "germanText":"Neujahr",
+ "germanFontType":3,
+ "spanishText":"¡Feliz Año Nuevo!",
+ "spanishFontType":3,
+ "chineseTText":"新年",
+ "chineseTFontType":1,
+ "koreanText":"설날",
+ "koreanFontType":2,
+ "portugueseText":"Feliz Ano Novo!",
+ "portugueseFontType":2,
+ "russianText":"С Новым Годом!",
+ "russianFontType":2,
+ "turkishText":"Mutlu Yıllar!",
+ "turkishFontType":2,
+ "arabicText":"سنة جديدة سعيدة!",
+ "arabicFontType":2,
+ "dutchText":"Gelukkig nieuwjaar!",
+ "dutchFontType":2,
+ "chineseSText":"新年",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_kingyo",
+ "japaneseText":"金魚ねぶた",
+ "englishUsText":"Goldfish Float",
+ "englishUsFontType":3,
+ "frenchText":"Nebuta poisson rouge",
+ "frenchFontType":3,
+ "italianText":"Pesce rosso",
+ "italianFontType":3,
+ "germanText":"Goldfisch-Mütze",
+ "germanFontType":3,
+ "spanishText":"Máscara de pececillo",
+ "spanishFontType":3,
+ "chineseTText":"金魚燈籠",
+ "chineseTFontType":1,
+ "koreanText":"금붕어 등불",
+ "koreanFontType":2,
+ "portugueseText":"Flutuador de quínguio",
+ "portugueseFontType":2,
+ "russianText":"Золотая рыбка Нэбута",
+ "russianFontType":2,
+ "turkishText":"Japon balığı şapkası",
+ "turkishFontType":2,
+ "arabicText":"قبعة السمكة الذهبية",
+ "arabicFontType":2,
+ "dutchText":"Goudvis-wagen",
+ "dutchFontType":2,
+ "chineseSText":"金鱼灯笼",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_ohinasama",
+ "japaneseText":"おひなさま",
+ "englishUsText":"Hina Dolls",
+ "englishUsFontType":3,
+ "frenchText":"Poupée",
+ "frenchFontType":3,
+ "italianText":"Bambole hina",
+ "italianFontType":3,
+ "germanText":"Puppenfest",
+ "germanFontType":3,
+ "spanishText":"Muñeca Hina",
+ "spanishFontType":3,
+ "chineseTText":"女兒節人偶",
+ "chineseTFontType":1,
+ "koreanText":"히나 인형",
+ "koreanFontType":2,
+ "portugueseText":"Bonecas Hina",
+ "portugueseFontType":2,
+ "russianText":"Куклы праздника Хина",
+ "russianFontType":2,
+ "turkishText":"Hina bebekleri",
+ "turkishFontType":2,
+ "arabicText":"دمى هينا",
+ "arabicFontType":2,
+ "dutchText":"Hina-pop",
+ "dutchFontType":2,
+ "chineseSText":"女儿节人偶",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_kanabo",
+ "japaneseText":"金棒",
+ "englishUsText":"Ogre Club",
+ "englishUsFontType":3,
+ "frenchText":"Gourdin",
+ "frenchFontType":3,
+ "italianText":"Bastone gigante",
+ "italianFontType":3,
+ "germanText":"Goldknüppel",
+ "germanFontType":3,
+ "spanishText":"Maza de ogro",
+ "spanishFontType":3,
+ "chineseTText":"狼牙棒",
+ "chineseTFontType":1,
+ "koreanText":"쇠 방망이",
+ "koreanFontType":2,
+ "portugueseText":"Clava do Ogro",
+ "portugueseFontType":2,
+ "russianText":"Дубина огра",
+ "russianFontType":2,
+ "turkishText":"Öcü Kulübü",
+ "turkishFontType":2,
+ "arabicText":"هراوة الغول",
+ "arabicFontType":2,
+ "dutchText":"Ogerknots",
+ "dutchFontType":2,
+ "chineseSText":"狼牙棒",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_compus",
+ "japaneseText":"コンパス",
+ "englishUsText":"Compass",
+ "englishUsFontType":3,
+ "frenchText":"Boussole",
+ "frenchFontType":3,
+ "italianText":"Bussola",
+ "italianFontType":3,
+ "germanText":"Kompass",
+ "germanFontType":3,
+ "spanishText":"Brújula",
+ "spanishFontType":3,
+ "chineseTText":"指南針",
+ "chineseTFontType":1,
+ "koreanText":"나침반",
+ "koreanFontType":2,
+ "portugueseText":"Bússola",
+ "portugueseFontType":2,
+ "russianText":"Компас",
+ "russianFontType":2,
+ "turkishText":"Pusula",
+ "turkishFontType":2,
+ "arabicText":"البوصلة",
+ "arabicFontType":2,
+ "dutchText":"Kompas",
+ "dutchFontType":2,
+ "chineseSText":"指南针",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_santa",
+ "japaneseText":"サンタクロース",
+ "englishUsText":"Santa Claus",
+ "englishUsFontType":3,
+ "frenchText":"Père Noël",
+ "frenchFontType":3,
+ "italianText":"Babbo Natale",
+ "italianFontType":3,
+ "germanText":"Weihnachtsmann",
+ "germanFontType":3,
+ "spanishText":"Papá Noel",
+ "spanishFontType":3,
+ "chineseTText":"聖誕老人",
+ "chineseTFontType":1,
+ "koreanText":"산타클로스",
+ "koreanFontType":2,
+ "portugueseText":"Papai Noel",
+ "portugueseFontType":2,
+ "russianText":"Санта-Клаус",
+ "russianFontType":2,
+ "turkishText":"Noel Baba",
+ "turkishFontType":2,
+ "arabicText":"سانتا كلوز",
+ "arabicFontType":2,
+ "dutchText":"Kerstman",
+ "dutchFontType":2,
+ "chineseSText":"圣诞老人",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_mugiwara",
+ "japaneseText":"夏休み",
+ "englishUsText":"Summer Vacation",
+ "englishUsFontType":3,
+ "frenchText":"Vacances d'été",
+ "frenchFontType":3,
+ "italianText":"Vacanze estive",
+ "italianFontType":3,
+ "germanText":"Sommerferien",
+ "germanFontType":3,
+ "spanishText":"Vacaciones de verano",
+ "spanishFontType":3,
+ "chineseTText":"暑假",
+ "chineseTFontType":1,
+ "koreanText":"여름방학",
+ "koreanFontType":2,
+ "portugueseText":"Férias de Verão",
+ "portugueseFontType":2,
+ "russianText":"Летние каникулы",
+ "russianFontType":2,
+ "turkishText":"Yaz Tatili",
+ "turkishFontType":2,
+ "arabicText":"إجازة الصيف",
+ "arabicFontType":2,
+ "dutchText":"Zomervakantie",
+ "dutchFontType":2,
+ "chineseSText":"暑假",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_tennis",
+ "japaneseText":"テニス",
+ "englishUsText":"Tennis",
+ "englishUsFontType":3,
+ "frenchText":"Tennis",
+ "frenchFontType":3,
+ "italianText":"Tennis",
+ "italianFontType":3,
+ "germanText":"Tennis",
+ "germanFontType":3,
+ "spanishText":"Tenis",
+ "spanishFontType":3,
+ "chineseTText":"網球",
+ "chineseTFontType":1,
+ "koreanText":"테니스",
+ "koreanFontType":2,
+ "portugueseText":"Tênis",
+ "portugueseFontType":2,
+ "russianText":"Теннис",
+ "russianFontType":2,
+ "turkishText":"Tenis",
+ "turkishFontType":2,
+ "arabicText":"التنس",
+ "arabicFontType":2,
+ "dutchText":"Tennis",
+ "dutchFontType":2,
+ "chineseSText":"网球",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_painter",
+ "japaneseText":"絵描きさん",
+ "englishUsText":"Painter",
+ "englishUsFontType":3,
+ "frenchText":"Peintre",
+ "frenchFontType":3,
+ "italianText":"Pittore",
+ "italianFontType":3,
+ "germanText":"Maler",
+ "germanFontType":3,
+ "spanishText":"Pintor",
+ "spanishFontType":3,
+ "chineseTText":"畫家",
+ "chineseTFontType":1,
+ "koreanText":"화가",
+ "koreanFontType":2,
+ "portugueseText":"Pintor",
+ "portugueseFontType":2,
+ "russianText":"Художник",
+ "russianFontType":2,
+ "turkishText":"Boyacı",
+ "turkishFontType":2,
+ "arabicText":"الرسام",
+ "arabicFontType":2,
+ "dutchText":"Schilder",
+ "dutchFontType":2,
+ "chineseSText":"画家",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_soccer",
+ "japaneseText":"サッカーボール",
+ "englishUsText":"Soccer Ball",
+ "englishUsFontType":3,
+ "frenchText":"Ballon de foot",
+ "frenchFontType":3,
+ "italianText":"Pallone da calcio",
+ "italianFontType":3,
+ "germanText":"Fußball",
+ "germanFontType":3,
+ "spanishText":"Pelota de fútbol",
+ "spanishFontType":3,
+ "chineseTText":"足球",
+ "chineseTFontType":1,
+ "koreanText":"축구공",
+ "koreanFontType":2,
+ "portugueseText":"Bola de futebol",
+ "portugueseFontType":2,
+ "russianText":"Футбольный мяч",
+ "russianFontType":2,
+ "turkishText":"Futbol topu",
+ "turkishFontType":2,
+ "arabicText":"كرة القدم",
+ "arabicFontType":2,
+ "dutchText":"Voetbal",
+ "dutchFontType":2,
+ "chineseSText":"足球",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_black_taiko",
+ "japaneseText":"黒太鼓",
+ "englishUsText":"Black Drum",
+ "englishUsFontType":3,
+ "frenchText":"Taiko noir",
+ "frenchFontType":3,
+ "italianText":"Tamburo nero",
+ "italianFontType":3,
+ "germanText":"Schwarze Trommel",
+ "germanFontType":3,
+ "spanishText":"Tambor negro",
+ "spanishFontType":3,
+ "chineseTText":"黑太鼓",
+ "chineseTFontType":1,
+ "koreanText":"검은 북",
+ "koreanFontType":2,
+ "portugueseText":"Taiko preto",
+ "portugueseFontType":2,
+ "russianText":"Черный тайко",
+ "russianFontType":2,
+ "turkishText":"Siyah davul",
+ "turkishFontType":2,
+ "arabicText":"طبلة سوداء",
+ "arabicFontType":2,
+ "dutchText":"Zwarte Taiko-drum",
+ "dutchFontType":2,
+ "chineseSText":"黑太鼓",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_earth",
+ "japaneseText":"ちきゅう",
+ "englishUsText":"Earth",
+ "englishUsFontType":3,
+ "frenchText":"Terre",
+ "frenchFontType":3,
+ "italianText":"Pianeta Terra",
+ "italianFontType":3,
+ "germanText":"Globus",
+ "germanFontType":3,
+ "spanishText":"Tierra",
+ "spanishFontType":3,
+ "chineseTText":"地球",
+ "chineseTFontType":1,
+ "koreanText":"지구",
+ "koreanFontType":2,
+ "portugueseText":"Terra",
+ "portugueseFontType":2,
+ "russianText":"Земля",
+ "russianFontType":2,
+ "turkishText":"Dünya",
+ "turkishFontType":2,
+ "arabicText":"الأرض",
+ "arabicFontType":2,
+ "dutchText":"De aarde",
+ "dutchFontType":2,
+ "chineseSText":"地球",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_takoyaki",
+ "japaneseText":"たこやき",
+ "englishUsText":"Takoyaki",
+ "englishUsFontType":3,
+ "frenchText":"Takoyaki",
+ "frenchFontType":3,
+ "italianText":"Takoyaki",
+ "italianFontType":3,
+ "germanText":"Takoyaki",
+ "germanFontType":3,
+ "spanishText":"Takoyaki",
+ "spanishFontType":3,
+ "chineseTText":"章魚燒",
+ "chineseTFontType":1,
+ "koreanText":"타코야키",
+ "koreanFontType":2,
+ "portugueseText":"Takoyaki",
+ "portugueseFontType":2,
+ "russianText":"Такояки",
+ "russianFontType":2,
+ "turkishText":"Takoyaki",
+ "turkishFontType":2,
+ "arabicText":"التاكوياكي",
+ "arabicFontType":2,
+ "dutchText":"Takoyaki",
+ "dutchFontType":2,
+ "chineseSText":"章鱼烧",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_moon",
+ "japaneseText":"おつきさま",
+ "englishUsText":"The Moon",
+ "englishUsFontType":3,
+ "frenchText":"Lune",
+ "frenchFontType":3,
+ "italianText":"Luna",
+ "italianFontType":3,
+ "germanText":"Mond",
+ "germanFontType":3,
+ "spanishText":"Luna",
+ "spanishFontType":3,
+ "chineseTText":"月亮",
+ "chineseTFontType":1,
+ "koreanText":"달나라",
+ "koreanFontType":2,
+ "portugueseText":"A Lua",
+ "portugueseFontType":2,
+ "russianText":"Луна",
+ "russianFontType":2,
+ "turkishText":"Ay",
+ "turkishFontType":2,
+ "arabicText":"القمر",
+ "arabicFontType":2,
+ "dutchText":"De maan",
+ "dutchFontType":2,
+ "chineseSText":"月亮",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_fall",
+ "japaneseText":"秋のなかま",
+ "englishUsText":"Autumn Friends",
+ "englishUsFontType":3,
+ "frenchText":"Amis de l'automne",
+ "frenchFontType":3,
+ "italianText":"Amici dell'autunno",
+ "italianFontType":3,
+ "germanText":"Herbstfreunde",
+ "germanFontType":3,
+ "spanishText":"Amigos de otoño",
+ "spanishFontType":3,
+ "chineseTText":"秋天的夥伴",
+ "chineseTFontType":1,
+ "koreanText":"가을 친구들",
+ "koreanFontType":2,
+ "portugueseText":"Amigos de outono",
+ "portugueseFontType":2,
+ "russianText":"Осенние друзья",
+ "russianFontType":2,
+ "turkishText":"Sonbahar Arkadaşları",
+ "turkishFontType":2,
+ "arabicText":"أصدقاء الخريف",
+ "arabicFontType":2,
+ "dutchText":"Herfstvrienden",
+ "dutchFontType":2,
+ "chineseSText":"秋天的伙伴",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_octopus",
+ "japaneseText":"たこ",
+ "englishUsText":"Octopus",
+ "englishUsFontType":3,
+ "frenchText":"Poulpe",
+ "frenchFontType":3,
+ "italianText":"Polpo",
+ "italianFontType":3,
+ "germanText":"Tintenfisch",
+ "germanFontType":3,
+ "spanishText":"Pulpo",
+ "spanishFontType":3,
+ "chineseTText":"章魚",
+ "chineseTFontType":1,
+ "koreanText":"문어",
+ "koreanFontType":2,
+ "portugueseText":"Polvo",
+ "portugueseFontType":2,
+ "russianText":"Осьминог",
+ "russianFontType":2,
+ "turkishText":"Ahtapot",
+ "turkishFontType":2,
+ "arabicText":"الإخطبوط",
+ "arabicFontType":2,
+ "dutchText":"Octopus",
+ "dutchFontType":2,
+ "chineseSText":"章鱼",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_hatake",
+ "japaneseText":"はたけしごと",
+ "englishUsText":"Farm Work",
+ "englishUsFontType":3,
+ "frenchText":"Fermier",
+ "frenchFontType":3,
+ "italianText":"Contadino",
+ "italianFontType":3,
+ "germanText":"Feldarbeit",
+ "germanFontType":3,
+ "spanishText":"Granjero",
+ "spanishFontType":3,
+ "chineseTText":"農務",
+ "chineseTFontType":1,
+ "koreanText":"밭농사",
+ "koreanFontType":2,
+ "portugueseText":"Fazendeiro",
+ "portugueseFontType":2,
+ "russianText":"Работа в поле",
+ "russianFontType":2,
+ "turkishText":"Çiftlik İşleri",
+ "turkishFontType":2,
+ "arabicText":"عمل المزرعة",
+ "arabicFontType":2,
+ "dutchText":"Boerenwerk",
+ "dutchFontType":2,
+ "chineseSText":"农务",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_icarus",
+ "japaneseText":"イカロス",
+ "englishUsText":"Icarus",
+ "englishUsFontType":3,
+ "frenchText":"Icare",
+ "frenchFontType":3,
+ "italianText":"Icaro",
+ "italianFontType":3,
+ "germanText":"Ikarus",
+ "germanFontType":3,
+ "spanishText":"Ícaro",
+ "spanishFontType":3,
+ "chineseTText":"伊卡洛斯",
+ "chineseTFontType":1,
+ "koreanText":"이카로스",
+ "koreanFontType":2,
+ "portugueseText":"Ícaro",
+ "portugueseFontType":2,
+ "russianText":"Икар",
+ "russianFontType":2,
+ "turkishText":"İkarus",
+ "turkishFontType":2,
+ "arabicText":"إيكاروس",
+ "arabicFontType":2,
+ "dutchText":"Icarus",
+ "dutchFontType":2,
+ "chineseSText":"伊卡洛斯",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_wood",
+ "japaneseText":"木",
+ "englishUsText":"Tree",
+ "englishUsFontType":3,
+ "frenchText":"Arbre",
+ "frenchFontType":3,
+ "italianText":"Albero",
+ "italianFontType":3,
+ "germanText":"Baum",
+ "germanFontType":3,
+ "spanishText":"Árbol",
+ "spanishFontType":3,
+ "chineseTText":"樹",
+ "chineseTFontType":1,
+ "koreanText":"나무",
+ "koreanFontType":2,
+ "portugueseText":"Árvore",
+ "portugueseFontType":2,
+ "russianText":"Дерево",
+ "russianFontType":2,
+ "turkishText":"Ağaç",
+ "turkishFontType":2,
+ "arabicText":"الشجرة",
+ "arabicFontType":2,
+ "dutchText":"Boom",
+ "dutchFontType":2,
+ "chineseSText":"树",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_wild",
+ "japaneseText":"ワイルド",
+ "englishUsText":"Caveman",
+ "englishUsFontType":3,
+ "frenchText":"Sauvage",
+ "frenchFontType":3,
+ "italianText":"Cavernicolo",
+ "italianFontType":3,
+ "germanText":"Bestie",
+ "germanFontType":3,
+ "spanishText":"Cavernícola",
+ "spanishFontType":3,
+ "chineseTText":"野生",
+ "chineseTFontType":1,
+ "koreanText":"와일드",
+ "koreanFontType":2,
+ "portugueseText":"Homem das cavernas",
+ "portugueseFontType":2,
+ "russianText":"Пещерный человек",
+ "russianFontType":2,
+ "turkishText":"Mağara adamı",
+ "turkishFontType":2,
+ "arabicText":"رجل الكهف",
+ "arabicFontType":2,
+ "dutchText":"Holbewoner",
+ "dutchFontType":2,
+ "chineseSText":"野生",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_butterfly",
+ "japaneseText":"ちょうちょ",
+ "englishUsText":"Butterfly",
+ "englishUsFontType":3,
+ "frenchText":"Papillon",
+ "frenchFontType":3,
+ "italianText":"Farfalla",
+ "italianFontType":3,
+ "germanText":"Schmetterling",
+ "germanFontType":3,
+ "spanishText":"Mariposa",
+ "spanishFontType":3,
+ "chineseTText":"蝴蝶",
+ "chineseTFontType":1,
+ "koreanText":"나비",
+ "koreanFontType":2,
+ "portugueseText":"Borboleta",
+ "portugueseFontType":2,
+ "russianText":"Бабочка",
+ "russianFontType":2,
+ "turkishText":"Kelebek",
+ "turkishFontType":2,
+ "arabicText":"الفراشة",
+ "arabicFontType":2,
+ "dutchText":"Vlinder",
+ "dutchFontType":2,
+ "chineseSText":"蝴蝶",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_tyrannosaurus",
+ "japaneseText":"ティラノサウルス",
+ "englishUsText":"Tyrannosaurus",
+ "englishUsFontType":3,
+ "frenchText":"Tyrannosaure",
+ "frenchFontType":3,
+ "italianText":"Tirannosauro",
+ "italianFontType":3,
+ "germanText":"Tyrannosaurus",
+ "germanFontType":3,
+ "spanishText":"Tiranosaurio",
+ "spanishFontType":3,
+ "chineseTText":"暴龍",
+ "chineseTFontType":1,
+ "koreanText":"티라노사우루스",
+ "koreanFontType":2,
+ "portugueseText":"Tiranossauro",
+ "portugueseFontType":2,
+ "russianText":"Тиранозавр",
+ "russianFontType":2,
+ "turkishText":"Tiranozor",
+ "turkishFontType":2,
+ "arabicText":"الديناصور",
+ "arabicFontType":2,
+ "dutchText":"Tyrannosaurus",
+ "dutchFontType":2,
+ "chineseSText":"暴龙",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_fossil",
+ "japaneseText":"かせき",
+ "englishUsText":"Fossil",
+ "englishUsFontType":3,
+ "frenchText":"Fossile",
+ "frenchFontType":3,
+ "italianText":"Fossile",
+ "italianFontType":3,
+ "germanText":"Fossil",
+ "germanFontType":3,
+ "spanishText":"Fósil",
+ "spanishFontType":3,
+ "chineseTText":"化石",
+ "chineseTFontType":1,
+ "koreanText":"화석",
+ "koreanFontType":2,
+ "portugueseText":"Fóssil",
+ "portugueseFontType":2,
+ "russianText":"Ископаемое",
+ "russianFontType":2,
+ "turkishText":"Fosil",
+ "turkishFontType":2,
+ "arabicText":"الأحفوري",
+ "arabicFontType":2,
+ "dutchText":"Fossiel",
+ "dutchFontType":2,
+ "chineseSText":"化石",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_camel",
+ "japaneseText":"らくだ",
+ "englishUsText":"Camel",
+ "englishUsFontType":3,
+ "frenchText":"Chameau",
+ "frenchFontType":3,
+ "italianText":"Cammello",
+ "italianFontType":3,
+ "germanText":"Kamel",
+ "germanFontType":3,
+ "spanishText":"Camello",
+ "spanishFontType":3,
+ "chineseTText":"駱駝",
+ "chineseTFontType":1,
+ "koreanText":"낙타",
+ "koreanFontType":2,
+ "portugueseText":"Camelo",
+ "portugueseFontType":2,
+ "russianText":"Верблюд",
+ "russianFontType":2,
+ "turkishText":"Deve",
+ "turkishFontType":2,
+ "arabicText":"الجمل",
+ "arabicFontType":2,
+ "dutchText":"Kameel",
+ "dutchFontType":2,
+ "chineseSText":"骆驼",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_mummy",
+ "japaneseText":"ミイラ",
+ "englishUsText":"Mummy",
+ "englishUsFontType":3,
+ "frenchText":"Momie",
+ "frenchFontType":3,
+ "italianText":"Mummia",
+ "italianFontType":3,
+ "germanText":"Mumie",
+ "germanFontType":3,
+ "spanishText":"Momia",
+ "spanishFontType":3,
+ "chineseTText":"木乃伊",
+ "chineseTFontType":1,
+ "koreanText":"미라",
+ "koreanFontType":2,
+ "portugueseText":"Múmia",
+ "portugueseFontType":2,
+ "russianText":"Мумия",
+ "russianFontType":2,
+ "turkishText":"Mumya",
+ "turkishFontType":2,
+ "arabicText":"المومياء",
+ "arabicFontType":2,
+ "dutchText":"Mummie",
+ "dutchFontType":2,
+ "chineseSText":"木乃伊",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_pharaoh",
+ "japaneseText":"ファラオ",
+ "englishUsText":"Pharaoh",
+ "englishUsFontType":3,
+ "frenchText":"Pharaon",
+ "frenchFontType":3,
+ "italianText":"Faraone",
+ "italianFontType":3,
+ "germanText":"Pharao",
+ "germanFontType":3,
+ "spanishText":"Faraón",
+ "spanishFontType":3,
+ "chineseTText":"法老",
+ "chineseTFontType":1,
+ "koreanText":"파라오",
+ "koreanFontType":2,
+ "portugueseText":"Faraó",
+ "portugueseFontType":2,
+ "russianText":"Фараон",
+ "russianFontType":2,
+ "turkishText":"Firavun",
+ "turkishFontType":2,
+ "arabicText":"الفرعون",
+ "arabicFontType":2,
+ "dutchText":"Farao",
+ "dutchFontType":2,
+ "chineseSText":"法老",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_plane",
+ "japaneseText":"ひこうき",
+ "englishUsText":"Airplane",
+ "englishUsFontType":3,
+ "frenchText":"Avion",
+ "frenchFontType":3,
+ "italianText":"Aeroplano",
+ "italianFontType":3,
+ "germanText":"Flugzeug",
+ "germanFontType":3,
+ "spanishText":"Avión",
+ "spanishFontType":3,
+ "chineseTText":"飛機",
+ "chineseTFontType":1,
+ "koreanText":"비행기",
+ "koreanFontType":2,
+ "portugueseText":"Avião",
+ "portugueseFontType":2,
+ "russianText":"Самолет",
+ "russianFontType":2,
+ "turkishText":"Uçak",
+ "turkishFontType":2,
+ "arabicText":"الطائرة",
+ "arabicFontType":2,
+ "dutchText":"Vliegtuig",
+ "dutchFontType":2,
+ "chineseSText":"飞机",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_robot",
+ "japaneseText":"ロボ",
+ "englishUsText":"Mecha Robot",
+ "englishUsFontType":3,
+ "frenchText":"Robot",
+ "frenchFontType":3,
+ "italianText":"Robot",
+ "italianFontType":3,
+ "germanText":"Roboter",
+ "germanFontType":3,
+ "spanishText":"Robot mecánico",
+ "spanishFontType":3,
+ "chineseTText":"機器人",
+ "chineseTFontType":1,
+ "koreanText":"로봇",
+ "koreanFontType":2,
+ "portugueseText":"Robô Mecha",
+ "portugueseFontType":2,
+ "russianText":"Робот",
+ "russianFontType":2,
+ "turkishText":"Mekanik Robot",
+ "turkishFontType":2,
+ "arabicText":"الروبوت الخارق",
+ "arabicFontType":2,
+ "dutchText":"Mecha-robot",
+ "dutchFontType":2,
+ "chineseSText":"机器人",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_science",
+ "japaneseText":"はかせ",
+ "englishUsText":"Professor",
+ "englishUsFontType":3,
+ "frenchText":"Professeur",
+ "frenchFontType":3,
+ "italianText":"Professore",
+ "italianFontType":3,
+ "germanText":"Professor",
+ "germanFontType":3,
+ "spanishText":"Profesor",
+ "spanishFontType":3,
+ "chineseTText":"博士",
+ "chineseTFontType":1,
+ "koreanText":"박사님",
+ "koreanFontType":2,
+ "portugueseText":"Professor",
+ "portugueseFontType":2,
+ "russianText":"Ученый",
+ "russianFontType":2,
+ "turkishText":"Profesör",
+ "turkishFontType":2,
+ "arabicText":"البروفيسور",
+ "arabicFontType":2,
+ "dutchText":"Professor",
+ "dutchFontType":2,
+ "chineseSText":"博士",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_halloween",
+ "japaneseText":"ハロウィン",
+ "englishUsText":"Halloween",
+ "englishUsFontType":3,
+ "frenchText":"Halloween",
+ "frenchFontType":3,
+ "italianText":"Halloween",
+ "italianFontType":3,
+ "germanText":"Halloween",
+ "germanFontType":3,
+ "spanishText":"Halloween",
+ "spanishFontType":3,
+ "chineseTText":"萬聖節",
+ "chineseTFontType":1,
+ "koreanText":"할로윈",
+ "koreanFontType":2,
+ "portugueseText":"Halloween",
+ "portugueseFontType":2,
+ "russianText":"Хеллоуин",
+ "russianFontType":2,
+ "turkishText":"Cadılar bayramı",
+ "turkishFontType":2,
+ "arabicText":"الهالوين",
+ "arabicFontType":2,
+ "dutchText":"Halloween",
+ "dutchFontType":2,
+ "chineseSText":"万圣节",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_watermelon",
+ "japaneseText":"すいかわり",
+ "englishUsText":"Split the Watermelon",
+ "englishUsFontType":3,
+ "frenchText":"Pastèque à briser",
+ "frenchFontType":3,
+ "italianText":"Spacca-cocomero",
+ "italianFontType":3,
+ "germanText":"Melonen-Schlagen",
+ "germanFontType":3,
+ "spanishText":"Media sandía",
+ "spanishFontType":3,
+ "chineseTText":"打西瓜",
+ "chineseTFontType":1,
+ "koreanText":"수박 깨기",
+ "koreanFontType":2,
+ "portugueseText":"Partir a melancia",
+ "portugueseFontType":2,
+ "russianText":"Битый арбуз",
+ "russianFontType":2,
+ "turkishText":"Karpuzu parçala",
+ "turkishFontType":2,
+ "arabicText":"شق البطيخ",
+ "arabicFontType":2,
+ "dutchText":"Watermeloenspel",
+ "dutchFontType":2,
+ "chineseSText":"打西瓜",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_archangel",
+ "japaneseText":"大天使",
+ "englishUsText":"Archangel",
+ "englishUsFontType":3,
+ "frenchText":"Archange",
+ "frenchFontType":3,
+ "italianText":"Arcangelo",
+ "italianFontType":3,
+ "germanText":"Erzengel",
+ "germanFontType":3,
+ "spanishText":"Arcángel",
+ "spanishFontType":3,
+ "chineseTText":"大天使",
+ "chineseTFontType":1,
+ "koreanText":"대천사",
+ "koreanFontType":2,
+ "portugueseText":"Arcanjo",
+ "portugueseFontType":2,
+ "russianText":"Архангел",
+ "russianFontType":2,
+ "turkishText":"Baş melek",
+ "turkishFontType":2,
+ "arabicText":"المجنح",
+ "arabicFontType":2,
+ "dutchText":"Aartsengel",
+ "dutchFontType":2,
+ "chineseSText":"大天使",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_beetle",
+ "japaneseText":"かぶとむし",
+ "englishUsText":"Rhinoceros Beetle",
+ "englishUsFontType":3,
+ "frenchText":"Scarabée rhinocéros",
+ "frenchFontType":3,
+ "italianText":"Scarabeo rinoceronte",
+ "italianFontType":3,
+ "germanText":"Nashornkäfer",
+ "germanFontType":3,
+ "spanishText":"Escarabajo",
+ "spanishFontType":3,
+ "chineseTText":"獨角仙",
+ "chineseTFontType":1,
+ "koreanText":"투구벌레",
+ "koreanFontType":2,
+ "portugueseText":"Besouro-rinoceronte",
+ "portugueseFontType":2,
+ "russianText":"Жук-носорог",
+ "russianFontType":2,
+ "turkishText":"Gergedan böceği",
+ "turkishFontType":2,
+ "arabicText":"خنفساء وحيد القرن",
+ "arabicFontType":2,
+ "dutchText":"Reuzenkever",
+ "dutchFontType":2,
+ "chineseSText":"独角仙",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_sakuramochi",
+ "japaneseText":"さくらもち",
+ "englishUsText":"Sakura Mochi",
+ "englishUsFontType":3,
+ "frenchText":"Sakuramochi",
+ "frenchFontType":3,
+ "italianText":"Sakura mochi",
+ "italianFontType":3,
+ "germanText":"Kirschblüten-Mochi",
+ "germanFontType":3,
+ "spanishText":"Pastel de arroz",
+ "spanishFontType":3,
+ "chineseTText":"櫻花麻糬",
+ "chineseTFontType":1,
+ "koreanText":"벚꽃 떡",
+ "koreanFontType":2,
+ "portugueseText":"Mochi de Sakura",
+ "portugueseFontType":2,
+ "russianText":"Сакура моти",
+ "russianFontType":2,
+ "turkishText":"Sakura Mochi",
+ "turkishFontType":2,
+ "arabicText":"ساكورا موتشي",
+ "arabicFontType":2,
+ "dutchText":"Kersenbloesem-mochi",
+ "dutchFontType":2,
+ "chineseSText":"樱花麻糬",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_gunman",
+ "japaneseText":"ガンマン",
+ "englishUsText":"Gunslinger",
+ "englishUsFontType":3,
+ "frenchText":"As de la gâchette",
+ "frenchFontType":3,
+ "italianText":"Pistolero",
+ "italianFontType":3,
+ "germanText":"Revolverheld",
+ "germanFontType":3,
+ "spanishText":"Pistolero",
+ "spanishFontType":3,
+ "chineseTText":"槍手",
+ "chineseTFontType":1,
+ "koreanText":"건 맨",
+ "koreanFontType":2,
+ "portugueseText":"Pistoleiro",
+ "portugueseFontType":2,
+ "russianText":"Стрелок",
+ "russianFontType":2,
+ "turkishText":"Silahşör",
+ "turkishFontType":2,
+ "arabicText":"حامل السلاح",
+ "arabicFontType":2,
+ "dutchText":"Revolverheld",
+ "dutchFontType":2,
+ "chineseSText":"枪手",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_boarder",
+ "japaneseText":"ボーダー",
+ "englishUsText":"Skateboarder",
+ "englishUsFontType":3,
+ "frenchText":"Skateur",
+ "frenchFontType":3,
+ "italianText":"Skater",
+ "italianFontType":3,
+ "germanText":"Skater",
+ "germanFontType":3,
+ "spanishText":"Patinador",
+ "spanishFontType":3,
+ "chineseTText":"滑板手",
+ "chineseTFontType":1,
+ "koreanText":"스케이트 보더",
+ "koreanFontType":2,
+ "portugueseText":"Skatista",
+ "portugueseFontType":2,
+ "russianText":"Скейтбордист",
+ "russianFontType":2,
+ "turkishText":"Kaykaycı",
+ "turkishFontType":2,
+ "arabicText":"المتزلج",
+ "arabicFontType":2,
+ "dutchText":"Skateboarder",
+ "dutchFontType":2,
+ "chineseSText":"滑板手",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_harajuku",
+ "japaneseText":"ハラジュク",
+ "englishUsText":"Harajuku Style",
+ "englishUsFontType":3,
+ "frenchText":"Kawaii",
+ "frenchFontType":3,
+ "italianText":"Stile Harajuku",
+ "italianFontType":3,
+ "germanText":"Harajuku-Style",
+ "germanFontType":3,
+ "spanishText":"Estilo Harajuku",
+ "spanishFontType":3,
+ "chineseTText":"原宿",
+ "chineseTFontType":1,
+ "koreanText":"하라주쿠",
+ "koreanFontType":2,
+ "portugueseText":"Estilo Harajuku",
+ "portugueseFontType":2,
+ "russianText":"Харадзюку",
+ "russianFontType":2,
+ "turkishText":"Harajuku Stili",
+ "turkishFontType":2,
+ "arabicText":"موضة هاراچوكو",
+ "arabicFontType":2,
+ "dutchText":"Harajuku-stijl",
+ "dutchFontType":2,
+ "chineseSText":"原宿",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_racing",
+ "japaneseText":"レースカー",
+ "englishUsText":"Race Car",
+ "englishUsFontType":3,
+ "frenchText":"Voiture de course",
+ "frenchFontType":3,
+ "italianText":"Auto da corsa",
+ "italianFontType":3,
+ "germanText":"Rennwagen",
+ "germanFontType":3,
+ "spanishText":"Coche de carreras",
+ "spanishFontType":3,
+ "chineseTText":"賽車",
+ "chineseTFontType":1,
+ "koreanText":"레이싱 카",
+ "koreanFontType":2,
+ "portugueseText":"Carro de corrida",
+ "portugueseFontType":2,
+ "russianText":"Гоночная машина",
+ "russianFontType":2,
+ "turkishText":"Yarış Arabası",
+ "turkishFontType":2,
+ "arabicText":"سيارة السباق",
+ "arabicFontType":2,
+ "dutchText":"Raceauto",
+ "dutchFontType":2,
+ "chineseSText":"赛车",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_snail",
+ "japaneseText":"かたつむり",
+ "englishUsText":"Snail",
+ "englishUsFontType":3,
+ "frenchText":"Escargot",
+ "frenchFontType":3,
+ "italianText":"Chiocciola",
+ "italianFontType":3,
+ "germanText":"Schnecke",
+ "germanFontType":3,
+ "spanishText":"Caracol",
+ "spanishFontType":3,
+ "chineseTText":"蝸牛",
+ "chineseTFontType":1,
+ "koreanText":"달팽이",
+ "koreanFontType":2,
+ "portugueseText":"Lesma",
+ "portugueseFontType":2,
+ "russianText":"Улитка",
+ "russianFontType":2,
+ "turkishText":"Salyangoz",
+ "turkishFontType":2,
+ "arabicText":"الحلزون",
+ "arabicFontType":2,
+ "dutchText":"Slak",
+ "dutchFontType":2,
+ "chineseSText":"蜗牛",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_pajamas",
+ "japaneseText":"パジャマ",
+ "englishUsText":"Pajamas",
+ "englishUsFontType":3,
+ "frenchText":"Pyjama",
+ "frenchFontType":3,
+ "italianText":"Pigiama",
+ "italianFontType":3,
+ "germanText":"Pyjama",
+ "germanFontType":3,
+ "spanishText":"Pijama",
+ "spanishFontType":3,
+ "chineseTText":"睡衣",
+ "chineseTFontType":1,
+ "koreanText":"파자마",
+ "koreanFontType":2,
+ "portugueseText":"Pijama",
+ "portugueseFontType":2,
+ "russianText":"Пижама",
+ "russianFontType":2,
+ "turkishText":"Pijama",
+ "turkishFontType":2,
+ "arabicText":"لباس النوم",
+ "arabicFontType":2,
+ "dutchText":"Pyjama",
+ "dutchFontType":2,
+ "chineseSText":"睡衣",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_unicorn",
+ "japaneseText":"ユニコーン",
+ "englishUsText":"Unicorn",
+ "englishUsFontType":3,
+ "frenchText":"Licorne",
+ "frenchFontType":3,
+ "italianText":"Unicorno",
+ "italianFontType":3,
+ "germanText":"Einhorn",
+ "germanFontType":3,
+ "spanishText":"Unicornio",
+ "spanishFontType":3,
+ "chineseTText":"獨角獸",
+ "chineseTFontType":1,
+ "koreanText":"유니콘",
+ "koreanFontType":2,
+ "portugueseText":"Unicórnio",
+ "portugueseFontType":2,
+ "russianText":"Единорог",
+ "russianFontType":2,
+ "turkishText":"Tek boynuzlu at",
+ "turkishFontType":2,
+ "arabicText":"آحادي القرن الأسطوري",
+ "arabicFontType":2,
+ "dutchText":"Eenhoorn",
+ "dutchFontType":2,
+ "chineseSText":"独角兽",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_ghost",
+ "japaneseText":"ユーレイ",
+ "englishUsText":"Ghost",
+ "englishUsFontType":3,
+ "frenchText":"Revenant",
+ "frenchFontType":3,
+ "italianText":"Spettro",
+ "italianFontType":3,
+ "germanText":"Gespenst",
+ "germanFontType":3,
+ "spanishText":"Fantasma",
+ "spanishFontType":3,
+ "chineseTText":"幽靈",
+ "chineseTFontType":1,
+ "koreanText":"유령",
+ "koreanFontType":2,
+ "portugueseText":"Fantasma",
+ "portugueseFontType":2,
+ "russianText":"Призрак",
+ "russianFontType":2,
+ "turkishText":"Hayalet",
+ "turkishFontType":2,
+ "arabicText":"الشبح",
+ "arabicFontType":2,
+ "dutchText":"Spook",
+ "dutchFontType":2,
+ "chineseSText":"幽灵",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_jet",
+ "japaneseText":"ジェット",
+ "englishUsText":"Fighter Jet",
+ "englishUsFontType":3,
+ "frenchText":"Jet",
+ "frenchFontType":3,
+ "italianText":"Pilota di jet",
+ "italianFontType":3,
+ "germanText":"Düsenflugzeug",
+ "germanFontType":3,
+ "spanishText":"Caza a reacción",
+ "spanishFontType":3,
+ "chineseTText":"噴射機",
+ "chineseTFontType":1,
+ "koreanText":"제트기",
+ "koreanFontType":2,
+ "portugueseText":"Jato de guerra",
+ "portugueseFontType":2,
+ "russianText":"Реактивный самолет",
+ "russianFontType":2,
+ "turkishText":"Savaş Uçağı",
+ "turkishFontType":2,
+ "arabicText":"الطائرة المقاتلة",
+ "arabicFontType":2,
+ "dutchText":"Straaljager",
+ "dutchFontType":2,
+ "chineseSText":"喷气机",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_vacation",
+ "japaneseText":"バカンス",
+ "englishUsText":"Vacation",
+ "englishUsFontType":3,
+ "frenchText":"Vacances",
+ "frenchFontType":3,
+ "italianText":"Vacanze",
+ "italianFontType":3,
+ "germanText":"Urlaub",
+ "germanFontType":3,
+ "spanishText":"Vacaciones",
+ "spanishFontType":3,
+ "chineseTText":"度假",
+ "chineseTFontType":1,
+ "koreanText":"바캉스",
+ "koreanFontType":2,
+ "portugueseText":"Férias",
+ "portugueseFontType":2,
+ "russianText":"Отпуск",
+ "russianFontType":2,
+ "turkishText":"Tatil",
+ "turkishFontType":2,
+ "arabicText":"العطلة",
+ "arabicFontType":2,
+ "dutchText":"Vakantie",
+ "dutchFontType":2,
+ "chineseSText":"度假",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_holstein",
+ "japaneseText":"うし",
+ "englishUsText":"Cow",
+ "englishUsFontType":3,
+ "frenchText":"Vache",
+ "frenchFontType":3,
+ "italianText":"Mucca",
+ "italianFontType":3,
+ "germanText":"Kuh",
+ "germanFontType":3,
+ "spanishText":"Vaca",
+ "spanishFontType":3,
+ "chineseTText":"牛",
+ "chineseTFontType":1,
+ "koreanText":"젖소",
+ "koreanFontType":2,
+ "portugueseText":"Vaca",
+ "portugueseFontType":2,
+ "russianText":"Корова",
+ "russianFontType":2,
+ "turkishText":"İnek",
+ "turkishFontType":2,
+ "arabicText":"البقرة",
+ "arabicFontType":2,
+ "dutchText":"Koe",
+ "dutchFontType":2,
+ "chineseSText":"牛",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_cottoncandy",
+ "japaneseText":"わたがし",
+ "englishUsText":"Cotton Candy",
+ "englishUsFontType":3,
+ "frenchText":"Barbe à papa",
+ "frenchFontType":3,
+ "italianText":"Zucchero filato",
+ "italianFontType":3,
+ "germanText":"Zuckerwatte",
+ "germanFontType":3,
+ "spanishText":"Algodón de azúcar",
+ "spanishFontType":3,
+ "chineseTText":"棉花糖",
+ "chineseTFontType":1,
+ "koreanText":"솜사탕",
+ "koreanFontType":2,
+ "portugueseText":"Algodão-doce",
+ "portugueseFontType":2,
+ "russianText":"Сахарная вата",
+ "russianFontType":2,
+ "turkishText":"Pamuk Şeker",
+ "turkishFontType":2,
+ "arabicText":"حلوى القطن",
+ "arabicFontType":2,
+ "dutchText":"Suikerspin",
+ "dutchFontType":2,
+ "chineseSText":"棉花糖",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_alpaca",
+ "japaneseText":"アルパカ",
+ "englishUsText":"Alpaca",
+ "englishUsFontType":3,
+ "frenchText":"Alpaga",
+ "frenchFontType":3,
+ "italianText":"Alpaca",
+ "italianFontType":3,
+ "germanText":"Alpaka",
+ "germanFontType":3,
+ "spanishText":"Alpaca",
+ "spanishFontType":3,
+ "chineseTText":"羊駝",
+ "chineseTFontType":1,
+ "koreanText":"알파카",
+ "koreanFontType":2,
+ "portugueseText":"Alpaca",
+ "portugueseFontType":2,
+ "russianText":"Альпака",
+ "russianFontType":2,
+ "turkishText":"Türlü lama",
+ "turkishFontType":2,
+ "arabicText":"الألباكا",
+ "arabicFontType":2,
+ "dutchText":"Alpaca",
+ "dutchFontType":2,
+ "chineseSText":"羊驼",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_ochimusha",
+ "japaneseText":"落武者",
+ "englishUsText":"Defeated Samurai",
+ "englishUsFontType":3,
+ "frenchText":"Guerrier vaincu",
+ "frenchFontType":3,
+ "italianText":"Samurai sconfitto",
+ "italianFontType":3,
+ "germanText":"Geschlagener Samurai",
+ "germanFontType":3,
+ "spanishText":"Samurái derrotado",
+ "spanishFontType":3,
+ "chineseTText":"落魄武士",
+ "chineseTFontType":1,
+ "koreanText":"패잔 무사",
+ "koreanFontType":2,
+ "portugueseText":"Samurai derrotado",
+ "portugueseFontType":2,
+ "russianText":"Побежденный самурай",
+ "russianFontType":2,
+ "turkishText":"Yenilen Samuray",
+ "turkishFontType":2,
+ "arabicText":"الساموراي المهزوم",
+ "arabicFontType":2,
+ "dutchText":"Verslagen samurai",
+ "dutchFontType":2,
+ "chineseSText":"落魄武士",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_ice",
+ "japaneseText":"アイス",
+ "englishUsText":"Ice Cream",
+ "englishUsFontType":3,
+ "frenchText":"Crème glacée",
+ "frenchFontType":3,
+ "italianText":"Gelato",
+ "italianFontType":3,
+ "germanText":"Eis",
+ "germanFontType":3,
+ "spanishText":"Helado",
+ "spanishFontType":3,
+ "chineseTText":"冰淇淋",
+ "chineseTFontType":1,
+ "koreanText":"아이스크림",
+ "koreanFontType":2,
+ "portugueseText":"Sorvete",
+ "portugueseFontType":2,
+ "russianText":"Мороженое",
+ "russianFontType":2,
+ "turkishText":"Dondurma",
+ "turkishFontType":2,
+ "arabicText":"المثلجات",
+ "arabicFontType":2,
+ "dutchText":"IJs",
+ "dutchFontType":2,
+ "chineseSText":"冰淇淋",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_marchen",
+ "japaneseText":"メルヘン",
+ "englishUsText":"Fairytale",
+ "englishUsFontType":3,
+ "frenchText":"Conte de fées",
+ "frenchFontType":3,
+ "italianText":"Fiaba",
+ "italianFontType":3,
+ "germanText":"Märchen",
+ "germanFontType":3,
+ "spanishText":"Cuento de hadas",
+ "spanishFontType":3,
+ "chineseTText":"童話",
+ "chineseTFontType":1,
+ "koreanText":"메르헨",
+ "koreanFontType":2,
+ "portugueseText":"Conto de fadas",
+ "portugueseFontType":2,
+ "russianText":"Сказка",
+ "russianFontType":2,
+ "turkishText":"Peri masalı",
+ "turkishFontType":2,
+ "arabicText":"القصة الخيالية",
+ "arabicFontType":2,
+ "dutchText":"Sprookje",
+ "dutchFontType":2,
+ "chineseSText":"童话",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_oiran",
+ "japaneseText":"おいらん",
+ "englishUsText":"Courtesan",
+ "englishUsFontType":3,
+ "frenchText":"Geisha",
+ "frenchFontType":3,
+ "italianText":"Geisha",
+ "italianFontType":3,
+ "germanText":"Kurtisane",
+ "germanFontType":3,
+ "spanishText":"Cortesano",
+ "spanishFontType":3,
+ "chineseTText":"花魁",
+ "chineseTFontType":1,
+ "koreanText":"오이란",
+ "koreanFontType":2,
+ "portugueseText":"Cortesã",
+ "portugueseFontType":2,
+ "russianText":"Гейша",
+ "russianFontType":2,
+ "turkishText":"Eskort",
+ "turkishFontType":2,
+ "arabicText":"المجامِلة",
+ "arabicFontType":2,
+ "dutchText":"Courtisane",
+ "dutchFontType":2,
+ "chineseSText":"花魁",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_crab",
+ "japaneseText":"カニ",
+ "englishUsText":"Crab",
+ "englishUsFontType":3,
+ "frenchText":"Crabe",
+ "frenchFontType":3,
+ "italianText":"Granchio",
+ "italianFontType":3,
+ "germanText":"Krebs",
+ "germanFontType":3,
+ "spanishText":"Cangrejo",
+ "spanishFontType":3,
+ "chineseTText":"螃蟹",
+ "chineseTFontType":1,
+ "koreanText":"게",
+ "koreanFontType":2,
+ "portugueseText":"Caranguejo",
+ "portugueseFontType":2,
+ "russianText":"Краб",
+ "russianFontType":2,
+ "turkishText":"Yengeç",
+ "turkishFontType":2,
+ "arabicText":"السلطعون",
+ "arabicFontType":2,
+ "dutchText":"Krab",
+ "dutchFontType":2,
+ "chineseSText":"螃蟹",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_brave",
+ "japaneseText":"勇者",
+ "englishUsText":"Hero",
+ "englishUsFontType":3,
+ "frenchText":"Héros",
+ "frenchFontType":3,
+ "italianText":"Prode",
+ "italianFontType":3,
+ "germanText":"Held",
+ "germanFontType":3,
+ "spanishText":"Héroe",
+ "spanishFontType":3,
+ "chineseTText":"勇者",
+ "chineseTFontType":1,
+ "koreanText":"용사",
+ "koreanFontType":2,
+ "portugueseText":"Herói",
+ "portugueseFontType":2,
+ "russianText":"Герой",
+ "russianFontType":2,
+ "turkishText":"Kahraman",
+ "turkishFontType":2,
+ "arabicText":"الشجاع",
+ "arabicFontType":2,
+ "dutchText":"Held",
+ "dutchFontType":2,
+ "chineseSText":"勇者",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_Lieutenant",
+ "japaneseText":"兵士",
+ "englishUsText":"Knight",
+ "englishUsFontType":3,
+ "frenchText":"Militaire",
+ "frenchFontType":3,
+ "italianText":"Guerriero",
+ "italianFontType":3,
+ "germanText":"Ritter",
+ "germanFontType":3,
+ "spanishText":"Caballero",
+ "spanishFontType":3,
+ "chineseTText":"士兵",
+ "chineseTFontType":1,
+ "koreanText":"병사",
+ "koreanFontType":2,
+ "portugueseText":"Cavaleiro",
+ "portugueseFontType":2,
+ "russianText":"Рыцарь",
+ "russianFontType":2,
+ "turkishText":"Şovalye",
+ "turkishFontType":2,
+ "arabicText":"الفارس",
+ "arabicFontType":2,
+ "dutchText":"Ridder",
+ "dutchFontType":2,
+ "chineseSText":"士兵",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_maid",
+ "japaneseText":"メイド",
+ "englishUsText":"Maid",
+ "englishUsFontType":3,
+ "frenchText":"Domestique",
+ "frenchFontType":3,
+ "italianText":"Cameriera",
+ "italianFontType":3,
+ "germanText":"Maid",
+ "germanFontType":3,
+ "spanishText":"Doncella",
+ "spanishFontType":3,
+ "chineseTText":"女僕",
+ "chineseTFontType":1,
+ "koreanText":"메이드",
+ "koreanFontType":2,
+ "portugueseText":"Camareira",
+ "portugueseFontType":2,
+ "russianText":"Служанка",
+ "russianFontType":2,
+ "turkishText":"Hizmetçi",
+ "turkishFontType":2,
+ "arabicText":"الخادمة",
+ "arabicFontType":2,
+ "dutchText":"Dienstmeid",
+ "dutchFontType":2,
+ "chineseSText":"女仆",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_doctor",
+ "japaneseText":"ドクター",
+ "englishUsText":"Doctor",
+ "englishUsFontType":3,
+ "frenchText":"Docteur",
+ "frenchFontType":3,
+ "italianText":"Medico",
+ "italianFontType":3,
+ "germanText":"Arzt",
+ "germanFontType":3,
+ "spanishText":"Médico",
+ "spanishFontType":3,
+ "chineseTText":"醫生",
+ "chineseTFontType":1,
+ "koreanText":"의사",
+ "koreanFontType":2,
+ "portugueseText":"Doutor",
+ "portugueseFontType":2,
+ "russianText":"Доктор",
+ "russianFontType":2,
+ "turkishText":"Doktor",
+ "turkishFontType":2,
+ "arabicText":"الدكتور",
+ "arabicFontType":2,
+ "dutchText":"Dokter",
+ "dutchFontType":2,
+ "chineseSText":"医生",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_bee",
+ "japaneseText":"ミツバチ",
+ "englishUsText":"Bee",
+ "englishUsFontType":3,
+ "frenchText":"Abeille",
+ "frenchFontType":3,
+ "italianText":"Ape",
+ "italianFontType":3,
+ "germanText":"Biene",
+ "germanFontType":3,
+ "spanishText":"Abeja",
+ "spanishFontType":3,
+ "chineseTText":"蜜蜂",
+ "chineseTFontType":1,
+ "koreanText":"꿀벌",
+ "koreanFontType":2,
+ "portugueseText":"Abelha",
+ "portugueseFontType":2,
+ "russianText":"Пчела",
+ "russianFontType":2,
+ "turkishText":"Arı",
+ "turkishFontType":2,
+ "arabicText":"النحلة",
+ "arabicFontType":2,
+ "dutchText":"Bij",
+ "dutchFontType":2,
+ "chineseSText":"蜜蜂",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_bulldog",
+ "japaneseText":"ブルドッグ",
+ "englishUsText":"Bulldog",
+ "englishUsFontType":3,
+ "frenchText":"Bulldog",
+ "frenchFontType":3,
+ "italianText":"Bulldog",
+ "italianFontType":3,
+ "germanText":"Bulldogge",
+ "germanFontType":3,
+ "spanishText":"Bulldog",
+ "spanishFontType":3,
+ "chineseTText":"鬥牛犬",
+ "chineseTFontType":1,
+ "koreanText":"불독",
+ "koreanFontType":2,
+ "portugueseText":"Buldogue",
+ "portugueseFontType":2,
+ "russianText":"Бульдог",
+ "russianFontType":2,
+ "turkishText":"Buldog",
+ "turkishFontType":2,
+ "arabicText":"كلب البولدوج",
+ "arabicFontType":2,
+ "dutchText":"Bulldog",
+ "dutchFontType":2,
+ "chineseSText":"斗牛犬",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_cat",
+ "japaneseText":"ネコ",
+ "englishUsText":"Cat",
+ "englishUsFontType":3,
+ "frenchText":"Chat",
+ "frenchFontType":3,
+ "italianText":"Gatto",
+ "italianFontType":3,
+ "germanText":"Katze",
+ "germanFontType":3,
+ "spanishText":"Gato",
+ "spanishFontType":3,
+ "chineseTText":"貓",
+ "chineseTFontType":1,
+ "koreanText":"고양이",
+ "koreanFontType":2,
+ "portugueseText":"Gato",
+ "portugueseFontType":2,
+ "russianText":"Кот",
+ "russianFontType":2,
+ "turkishText":"Kedi",
+ "turkishFontType":2,
+ "arabicText":"القطة",
+ "arabicFontType":2,
+ "dutchText":"Kat",
+ "dutchFontType":2,
+ "chineseSText":"猫",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_treasure",
+ "japaneseText":"トレジャーハンター",
+ "englishUsText":"Treasure Hunter",
+ "englishUsFontType":3,
+ "frenchText":"Aventurier",
+ "frenchFontType":3,
+ "italianText":"Avventuriero",
+ "italianFontType":3,
+ "germanText":"Schatzjäger",
+ "germanFontType":3,
+ "spanishText":"Cazador de tesoros",
+ "spanishFontType":3,
+ "chineseTText":"尋寶獵人",
+ "chineseTFontType":1,
+ "koreanText":"보물 사냥꾼",
+ "koreanFontType":2,
+ "portugueseText":"Caçador de tesouros",
+ "portugueseFontType":2,
+ "russianText":"Искатель сокровищ",
+ "russianFontType":2,
+ "turkishText":"Hazine Avcısı",
+ "turkishFontType":2,
+ "arabicText":"صائد الكنوز",
+ "arabicFontType":2,
+ "dutchText":"Schatzoeker",
+ "dutchFontType":2,
+ "chineseSText":"寻宝猎人",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_harmonica",
+ "japaneseText":"ハーモニカ",
+ "englishUsText":"Harmonica",
+ "englishUsFontType":3,
+ "frenchText":"Harmonica",
+ "frenchFontType":3,
+ "italianText":"Armonica",
+ "italianFontType":3,
+ "germanText":"Mundharmonika",
+ "germanFontType":3,
+ "spanishText":"Armónica",
+ "spanishFontType":3,
+ "chineseTText":"口琴",
+ "chineseTFontType":1,
+ "koreanText":"하모니카",
+ "koreanFontType":2,
+ "portugueseText":"Gaita",
+ "portugueseFontType":2,
+ "russianText":"Гармоника",
+ "russianFontType":2,
+ "turkishText":"Mızıka",
+ "turkishFontType":2,
+ "arabicText":"الهارمونيكا",
+ "arabicFontType":2,
+ "dutchText":"Mondharmonica",
+ "dutchFontType":2,
+ "chineseSText":"口琴",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_weld",
+ "japaneseText":"溶接マスク",
+ "englishUsText":"Welding Mask",
+ "englishUsFontType":3,
+ "frenchText":"Masque de soudure",
+ "frenchFontType":3,
+ "italianText":"Saldatore",
+ "italianFontType":3,
+ "germanText":"Schweißmaske",
+ "germanFontType":3,
+ "spanishText":"Máscara de soldador",
+ "spanishFontType":3,
+ "chineseTText":"焊接面罩",
+ "chineseTFontType":1,
+ "koreanText":"용접 마스크",
+ "koreanFontType":2,
+ "portugueseText":"Máscara de solda",
+ "portugueseFontType":2,
+ "russianText":"Маска сварщика",
+ "russianFontType":2,
+ "turkishText":"Kaynakçı maskesi",
+ "turkishFontType":2,
+ "arabicText":"قناع اللحام",
+ "arabicFontType":2,
+ "dutchText":"Lasmasker",
+ "dutchFontType":2,
+ "chineseSText":"焊接面罩",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_hippo",
+ "japaneseText":"かば",
+ "englishUsText":"Hippo",
+ "englishUsFontType":3,
+ "frenchText":"Hippopotame",
+ "frenchFontType":3,
+ "italianText":"Ippopotamo",
+ "italianFontType":3,
+ "germanText":"Nilpferd",
+ "germanFontType":3,
+ "spanishText":"Hipopótamo",
+ "spanishFontType":3,
+ "chineseTText":"河馬",
+ "chineseTFontType":1,
+ "koreanText":"하마",
+ "koreanFontType":2,
+ "portugueseText":"Hipopótamo",
+ "portugueseFontType":2,
+ "russianText":"Гиппопотам",
+ "russianFontType":2,
+ "turkishText":"Suaygırı",
+ "turkishFontType":2,
+ "arabicText":"فرس النهر",
+ "arabicFontType":2,
+ "dutchText":"Nijlpaard",
+ "dutchFontType":2,
+ "chineseSText":"河马",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_pizza",
+ "japaneseText":"ピザ",
+ "englishUsText":"Pizza",
+ "englishUsFontType":3,
+ "frenchText":"Pizza",
+ "frenchFontType":3,
+ "italianText":"Pizza",
+ "italianFontType":3,
+ "germanText":"Pizza",
+ "germanFontType":3,
+ "spanishText":"Pizza",
+ "spanishFontType":3,
+ "chineseTText":"披薩",
+ "chineseTFontType":1,
+ "koreanText":"피자",
+ "koreanFontType":2,
+ "portugueseText":"Pizza",
+ "portugueseFontType":2,
+ "russianText":"Пицца",
+ "russianFontType":2,
+ "turkishText":"Pizza",
+ "turkishFontType":2,
+ "arabicText":"البيتزا",
+ "arabicFontType":2,
+ "dutchText":"Pizza",
+ "dutchFontType":2,
+ "chineseSText":"披萨",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_bowl",
+ "japaneseText":"鍋",
+ "englishUsText":"Cooking pot",
+ "englishUsFontType":3,
+ "frenchText":"Casserole",
+ "frenchFontType":3,
+ "italianText":"Pentola",
+ "italianFontType":3,
+ "germanText":"Kochtopf",
+ "germanFontType":3,
+ "spanishText":"Olla",
+ "spanishFontType":3,
+ "chineseTText":"鍋子",
+ "chineseTFontType":1,
+ "koreanText":"냄비",
+ "koreanFontType":2,
+ "portugueseText":"Panela",
+ "portugueseFontType":2,
+ "russianText":"Кастрюля",
+ "russianFontType":2,
+ "turkishText":"Demlik",
+ "turkishFontType":2,
+ "arabicText":"وعاء الطهي",
+ "arabicFontType":2,
+ "dutchText":"Kookpot",
+ "dutchFontType":2,
+ "chineseSText":"锅子",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_william",
+ "japaneseText":"ウィリアムテル",
+ "englishUsText":"William Tell",
+ "englishUsFontType":3,
+ "frenchText":"Guillaume Tell",
+ "frenchFontType":3,
+ "italianText":"Guglielmo Tell",
+ "italianFontType":3,
+ "germanText":"Wilhelm Tell",
+ "germanFontType":3,
+ "spanishText":"Guillermo Tell",
+ "spanishFontType":3,
+ "chineseTText":"威廉泰爾",
+ "chineseTFontType":1,
+ "koreanText":"윌리엄 텔",
+ "koreanFontType":2,
+ "portugueseText":"Guilherme Tell",
+ "portugueseFontType":2,
+ "russianText":"Вильгельм Телль",
+ "russianFontType":2,
+ "turkishText":"William Tell",
+ "turkishFontType":2,
+ "arabicText":"وليام تيل",
+ "arabicFontType":2,
+ "dutchText":"Willem Tell",
+ "dutchFontType":2,
+ "chineseSText":"威廉泰尔",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_jungle",
+ "japaneseText":"ジャングル",
+ "englishUsText":"Jungle",
+ "englishUsFontType":3,
+ "frenchText":"Jungle",
+ "frenchFontType":3,
+ "italianText":"Giungla",
+ "italianFontType":3,
+ "germanText":"Dschungel",
+ "germanFontType":3,
+ "spanishText":"Jungla",
+ "spanishFontType":3,
+ "chineseTText":"叢林",
+ "chineseTFontType":1,
+ "koreanText":"정글",
+ "koreanFontType":2,
+ "portugueseText":"Selva",
+ "portugueseFontType":2,
+ "russianText":"Джунгли",
+ "russianFontType":2,
+ "turkishText":"Orman",
+ "turkishFontType":2,
+ "arabicText":"الغابة",
+ "arabicFontType":2,
+ "dutchText":"Jungle",
+ "dutchFontType":2,
+ "chineseSText":"丛林",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_block",
+ "japaneseText":"ブロック",
+ "englishUsText":"Blocks",
+ "englishUsFontType":3,
+ "frenchText":"Briques",
+ "frenchFontType":3,
+ "italianText":"Blocchi",
+ "italianFontType":3,
+ "germanText":"Blöcke",
+ "germanFontType":3,
+ "spanishText":"Bloques",
+ "spanishFontType":3,
+ "chineseTText":"方塊",
+ "chineseTFontType":1,
+ "koreanText":"블록",
+ "koreanFontType":2,
+ "portugueseText":"Blocos",
+ "portugueseFontType":2,
+ "russianText":"Блок",
+ "russianFontType":2,
+ "turkishText":"Bloklar",
+ "turkishFontType":2,
+ "arabicText":"المكعبات",
+ "arabicFontType":2,
+ "dutchText":"Blokken",
+ "dutchFontType":2,
+ "chineseSText":"方块",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_goku",
+ "japaneseText":"そんごくう",
+ "englishUsText":"Sun Wukong",
+ "englishUsFontType":3,
+ "frenchText":"Sun Wukong",
+ "frenchFontType":3,
+ "italianText":"Son Goku",
+ "italianFontType":3,
+ "germanText":"Sun Wukong",
+ "germanFontType":3,
+ "spanishText":"Son Goku",
+ "spanishFontType":3,
+ "chineseTText":"孫悟空",
+ "chineseTFontType":1,
+ "koreanText":"손오공",
+ "koreanFontType":2,
+ "portugueseText":"Rei Macaco",
+ "portugueseFontType":2,
+ "russianText":"Сунь Укун",
+ "russianFontType":2,
+ "turkishText":"Sun Wukong",
+ "turkishFontType":2,
+ "arabicText":"وو كونغ الشمس",
+ "arabicFontType":2,
+ "dutchText":"Sun Wukong",
+ "dutchFontType":2,
+ "chineseSText":"孙悟空",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_animalhood",
+ "japaneseText":"アニマルフード",
+ "englishUsText":"Animal Hood",
+ "englishUsFontType":3,
+ "frenchText":"Capuche animale",
+ "frenchFontType":3,
+ "italianText":"Cappuccio animale",
+ "italianFontType":3,
+ "germanText":"Tierkapuze",
+ "germanFontType":3,
+ "spanishText":"Capucha animal",
+ "spanishFontType":3,
+ "chineseTText":"動物頭套",
+ "chineseTFontType":1,
+ "koreanText":"동물 후드",
+ "koreanFontType":2,
+ "portugueseText":"Capuz de animal",
+ "portugueseFontType":2,
+ "russianText":"Капюшон",
+ "russianFontType":2,
+ "turkishText":"Hayvanlar Alemi",
+ "turkishFontType":2,
+ "arabicText":"قلنسوة الحيوان",
+ "arabicFontType":2,
+ "dutchText":"Dierenmuts",
+ "dutchFontType":2,
+ "chineseSText":"动物头套",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_idea",
+ "japaneseText":"ひらめき",
+ "englishUsText":"Eureka!",
+ "englishUsFontType":3,
+ "frenchText":"Inspiration",
+ "frenchFontType":3,
+ "italianText":"Lampadina",
+ "italianFontType":3,
+ "germanText":"Idee",
+ "germanFontType":3,
+ "spanishText":"Inspiración",
+ "spanishFontType":3,
+ "chineseTText":"靈感",
+ "chineseTFontType":1,
+ "koreanText":"번뜩임",
+ "koreanFontType":2,
+ "portugueseText":"Eureca!",
+ "portugueseFontType":2,
+ "russianText":"Эврика!",
+ "russianFontType":2,
+ "turkishText":"Evreka!",
+ "turkishFontType":2,
+ "arabicText":"وجدتها",
+ "arabicFontType":2,
+ "dutchText":"Eureka",
+ "dutchFontType":2,
+ "chineseSText":"灵感",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_pole",
+ "japaneseText":"電柱",
+ "englishUsText":"Telephone Pole",
+ "englishUsFontType":3,
+ "frenchText":"Poteau électrique",
+ "frenchFontType":3,
+ "italianText":"Palo telefonico",
+ "italianFontType":3,
+ "germanText":"Strommast",
+ "germanFontType":3,
+ "spanishText":"Poste de teléfono",
+ "spanishFontType":3,
+ "chineseTText":"電線桿",
+ "chineseTFontType":1,
+ "koreanText":"전봇대",
+ "koreanFontType":2,
+ "portugueseText":"Poste de telefone",
+ "portugueseFontType":2,
+ "russianText":"Столб",
+ "russianFontType":2,
+ "turkishText":"Telefon direği",
+ "turkishFontType":2,
+ "arabicText":"عمود التليفون",
+ "arabicFontType":2,
+ "dutchText":"Telefoonpaal",
+ "dutchFontType":2,
+ "chineseSText":"电线杆",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_jii",
+ "japaneseText":"びっくり",
+ "englishUsText":"Whaaaaat?!",
+ "englishUsFontType":3,
+ "frenchText":"Surpris",
+ "frenchFontType":3,
+ "italianText":"Sorpresa",
+ "italianFontType":3,
+ "germanText":"Schock",
+ "germanFontType":3,
+ "spanishText":"¡¿Cómoooo?!",
+ "spanishFontType":3,
+ "chineseTText":"大吃一驚",
+ "chineseTFontType":1,
+ "koreanText":"깜짝이야",
+ "koreanFontType":2,
+ "portugueseText":"O quêêê?!",
+ "portugueseFontType":2,
+ "russianText":"Что-о-о-о?!",
+ "russianFontType":2,
+ "turkishText":"Neeee?!",
+ "turkishFontType":2,
+ "arabicText":"ماااااذا؟!",
+ "arabicFontType":2,
+ "dutchText":"Waaaaat!",
+ "dutchFontType":2,
+ "chineseSText":"大吃一惊",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_kiss",
+ "japaneseText":"チュウ",
+ "englishUsText":"Smooch",
+ "englishUsFontType":3,
+ "frenchText":"Smack",
+ "frenchFontType":3,
+ "italianText":"Bacio",
+ "italianFontType":3,
+ "germanText":"Knutsch",
+ "germanFontType":3,
+ "spanishText":"Beso",
+ "spanishFontType":3,
+ "chineseTText":"啾",
+ "chineseTFontType":1,
+ "koreanText":"쪽",
+ "koreanFontType":2,
+ "portugueseText":"SMACK",
+ "portugueseFontType":2,
+ "russianText":"Чмок",
+ "russianFontType":2,
+ "turkishText":"Buse",
+ "turkishFontType":2,
+ "arabicText":"القبلة",
+ "arabicFontType":2,
+ "dutchText":"Zoen",
+ "dutchFontType":2,
+ "chineseSText":"啾",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_greece",
+ "japaneseText":"ギリシャ兵",
+ "englishUsText":"Grecian Soldier",
+ "englishUsFontType":3,
+ "frenchText":"Soldat grec",
+ "frenchFontType":3,
+ "italianText":"Soldato greco",
+ "italianFontType":3,
+ "germanText":"Gladiator",
+ "germanFontType":3,
+ "spanishText":"Soldado griego",
+ "spanishFontType":3,
+ "chineseTText":"希臘兵",
+ "chineseTFontType":1,
+ "koreanText":"그리스 병사",
+ "koreanFontType":2,
+ "portugueseText":"Soldado grego",
+ "portugueseFontType":2,
+ "russianText":"Греческий воин",
+ "russianFontType":2,
+ "turkishText":"Yunan Askeri",
+ "turkishFontType":2,
+ "arabicText":"الجندي الإغريقي",
+ "arabicFontType":2,
+ "dutchText":"Griekse soldaat",
+ "dutchFontType":2,
+ "chineseSText":"希腊兵",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_bath",
+ "japaneseText":"おふろ",
+ "englishUsText":"Bath",
+ "englishUsFontType":3,
+ "frenchText":"Bain",
+ "frenchFontType":3,
+ "italianText":"Set da bagno",
+ "italianFontType":3,
+ "germanText":"Badewanne",
+ "germanFontType":3,
+ "spanishText":"Baño",
+ "spanishFontType":3,
+ "chineseTText":"洗澡",
+ "chineseTFontType":1,
+ "koreanText":"목욕탕",
+ "koreanFontType":2,
+ "portugueseText":"Banho",
+ "portugueseFontType":2,
+ "russianText":"Ванна",
+ "russianFontType":2,
+ "turkishText":"Banyo",
+ "turkishFontType":2,
+ "arabicText":"الاستحمام",
+ "arabicFontType":2,
+ "dutchText":"Bad",
+ "dutchFontType":2,
+ "chineseSText":"洗澡",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_moai",
+ "japaneseText":"モアイ",
+ "englishUsText":"Moai Statue",
+ "englishUsFontType":3,
+ "frenchText":"Moaï",
+ "frenchFontType":3,
+ "italianText":"Moai",
+ "italianFontType":3,
+ "germanText":"Moai-Statue",
+ "germanFontType":3,
+ "spanishText":"Estatua Moai",
+ "spanishFontType":3,
+ "chineseTText":"摩艾石像",
+ "chineseTFontType":1,
+ "koreanText":"모아이",
+ "koreanFontType":2,
+ "portugueseText":"Estátua Moai",
+ "portugueseFontType":2,
+ "russianText":"Статуя Моаи",
+ "russianFontType":2,
+ "turkishText":"Moai Heykeli",
+ "turkishFontType":2,
+ "arabicText":"تمثال مواي",
+ "arabicFontType":2,
+ "dutchText":"Moai",
+ "dutchFontType":2,
+ "chineseSText":"摩艾石像",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_mexico",
+ "japaneseText":"メキシカン",
+ "englishUsText":"Sombrero",
+ "englishUsFontType":3,
+ "frenchText":"Mexicain",
+ "frenchFontType":3,
+ "italianText":"Messicano",
+ "italianFontType":3,
+ "germanText":"Mexikaner",
+ "germanFontType":3,
+ "spanishText":"Sombrero mexicano",
+ "spanishFontType":3,
+ "chineseTText":"墨西哥人",
+ "chineseTFontType":1,
+ "koreanText":"멕시칸",
+ "koreanFontType":2,
+ "portugueseText":"Chapéu mexicano",
+ "portugueseFontType":2,
+ "russianText":"Сомбреро",
+ "russianFontType":2,
+ "turkishText":"Meksikalı",
+ "turkishFontType":2,
+ "arabicText":"سومبريرو",
+ "arabicFontType":2,
+ "dutchText":"Sombrero",
+ "dutchFontType":2,
+ "chineseSText":"墨西哥人",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_dogu",
+ "japaneseText":"どぐう",
+ "englishUsText":"Dogu Clay Figure",
+ "englishUsFontType":3,
+ "frenchText":"Dogû",
+ "frenchFontType":3,
+ "italianText":"Statuetta di argilla",
+ "italianFontType":3,
+ "germanText":"Doguu-Tonpuppe",
+ "germanFontType":3,
+ "spanishText":"Figurilla Dogu",
+ "spanishFontType":3,
+ "chineseTText":"土偶",
+ "chineseTFontType":1,
+ "koreanText":"토우",
+ "koreanFontType":2,
+ "portugueseText":"Boneco Dogu",
+ "portugueseFontType":2,
+ "russianText":"Фигуры из глины",
+ "russianFontType":2,
+ "turkishText":"Dogu Kil Figürü",
+ "turkishFontType":2,
+ "arabicText":"شكل دوجو الطيني",
+ "arabicFontType":2,
+ "dutchText":"Dogu-kleifiguur",
+ "dutchFontType":2,
+ "chineseSText":"土偶",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_bushyo",
+ "japaneseText":"せんごくぶしょう",
+ "englishUsText":"Sengoku Warlord",
+ "englishUsFontType":3,
+ "frenchText":"Seigneur de guerre",
+ "frenchFontType":3,
+ "italianText":"Signore della guerra",
+ "italianFontType":3,
+ "germanText":"Kriegsherr",
+ "germanFontType":3,
+ "spanishText":"General sengoku",
+ "spanishFontType":3,
+ "chineseTText":"戰國武將",
+ "chineseTFontType":1,
+ "koreanText":"전국시대의 무장",
+ "koreanFontType":2,
+ "portugueseText":"Senhor da Guerra Sengoku",
+ "portugueseFontType":2,
+ "russianText":"Командир Сэнгоку",
+ "russianFontType":2,
+ "turkishText":"Sengolu Savaş Lideri",
+ "turkishFontType":2,
+ "arabicText":"سينجوكو أمير الحرب",
+ "arabicFontType":2,
+ "dutchText":"Sengoku-krijgsheer",
+ "dutchFontType":2,
+ "chineseSText":"战国武将",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_mask",
+ "japaneseText":"ふくめん",
+ "englishUsText":"Mask",
+ "englishUsFontType":3,
+ "frenchText":"Masque",
+ "frenchFontType":3,
+ "italianText":"Passamontagna",
+ "italianFontType":3,
+ "germanText":"Maske",
+ "germanFontType":3,
+ "spanishText":"Máscara",
+ "spanishFontType":3,
+ "chineseTText":"蒙面頭套",
+ "chineseTFontType":1,
+ "koreanText":"복면",
+ "koreanFontType":2,
+ "portugueseText":"Máscara",
+ "portugueseFontType":2,
+ "russianText":"Маска",
+ "russianFontType":2,
+ "turkishText":"Maske",
+ "turkishFontType":2,
+ "arabicText":"القناع",
+ "arabicFontType":2,
+ "dutchText":"Masker",
+ "dutchFontType":2,
+ "chineseSText":"蒙面头套",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_penguin",
+ "japaneseText":"ペンギンおやこ",
+ "englishUsText":"Penguin Family",
+ "englishUsFontType":3,
+ "frenchText":"Famille de pingouins",
+ "frenchFontType":3,
+ "italianText":"Pinguini",
+ "italianFontType":3,
+ "germanText":"Pinguinfamilie",
+ "germanFontType":3,
+ "spanishText":"Pingüinos",
+ "spanishFontType":3,
+ "chineseTText":"企鵝親子",
+ "chineseTFontType":1,
+ "koreanText":"펭귄 가족",
+ "koreanFontType":2,
+ "portugueseText":"Família pinguim",
+ "portugueseFontType":2,
+ "russianText":"Пингвинья семья",
+ "russianFontType":2,
+ "turkishText":"Penguen Ailesi",
+ "turkishFontType":2,
+ "arabicText":"عائلة البطريق",
+ "arabicFontType":2,
+ "dutchText":"Pinguïn-familie",
+ "dutchFontType":2,
+ "chineseSText":"企鹅亲子",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_cook",
+ "japaneseText":"コックさん",
+ "englishUsText":"Cook",
+ "englishUsFontType":3,
+ "frenchText":"Cuisinier",
+ "frenchFontType":3,
+ "italianText":"Chef",
+ "italianFontType":3,
+ "germanText":"Koch",
+ "germanFontType":3,
+ "spanishText":"Chef",
+ "spanishFontType":3,
+ "chineseTText":"廚師",
+ "chineseTFontType":1,
+ "koreanText":"요리사",
+ "koreanFontType":2,
+ "portugueseText":"Chef",
+ "portugueseFontType":2,
+ "russianText":"Повар",
+ "russianFontType":2,
+ "turkishText":"Aşçı",
+ "turkishFontType":2,
+ "arabicText":"الطهو",
+ "arabicFontType":2,
+ "dutchText":"Kok",
+ "dutchFontType":2,
+ "chineseSText":"厨师",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_magician",
+ "japaneseText":"まほうつかい",
+ "englishUsText":"Magician",
+ "englishUsFontType":3,
+ "frenchText":"Magicien",
+ "frenchFontType":3,
+ "italianText":"Mago",
+ "italianFontType":3,
+ "germanText":"Zauberer",
+ "germanFontType":3,
+ "spanishText":"Mago",
+ "spanishFontType":3,
+ "chineseTText":"魔法師",
+ "chineseTFontType":1,
+ "koreanText":"마법사",
+ "koreanFontType":2,
+ "portugueseText":"Mago",
+ "portugueseFontType":2,
+ "russianText":"Волшебник",
+ "russianFontType":2,
+ "turkishText":"Sihirbaz",
+ "turkishFontType":2,
+ "arabicText":"الساحر",
+ "arabicFontType":2,
+ "dutchText":"Tovenaar",
+ "dutchFontType":2,
+ "chineseSText":"魔法师",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_emperror",
+ "japaneseText":"皇帝",
+ "englishUsText":"Emperor",
+ "englishUsFontType":3,
+ "frenchText":"Empereur",
+ "frenchFontType":3,
+ "italianText":"Imperatore",
+ "italianFontType":3,
+ "germanText":"Kaiser",
+ "germanFontType":3,
+ "spanishText":"Emperador",
+ "spanishFontType":3,
+ "chineseTText":"皇帝",
+ "chineseTFontType":1,
+ "koreanText":"황제",
+ "koreanFontType":2,
+ "portugueseText":"Imperador",
+ "portugueseFontType":2,
+ "russianText":"Император",
+ "russianFontType":2,
+ "turkishText":"İmparator",
+ "turkishFontType":2,
+ "arabicText":"الإمبراطور",
+ "arabicFontType":2,
+ "dutchText":"Keizer",
+ "dutchFontType":2,
+ "chineseSText":"皇帝",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_elephant",
+ "japaneseText":"ゾウ",
+ "englishUsText":"Elephant",
+ "englishUsFontType":3,
+ "frenchText":"Éléphant",
+ "frenchFontType":3,
+ "italianText":"Elefante",
+ "italianFontType":3,
+ "germanText":"Elefant",
+ "germanFontType":3,
+ "spanishText":"Elefante",
+ "spanishFontType":3,
+ "chineseTText":"大象",
+ "chineseTFontType":1,
+ "koreanText":"코끼리",
+ "koreanFontType":2,
+ "portugueseText":"Elefante",
+ "portugueseFontType":2,
+ "russianText":"Слон",
+ "russianFontType":2,
+ "turkishText":"Fil",
+ "turkishFontType":2,
+ "arabicText":"الفيل",
+ "arabicFontType":2,
+ "dutchText":"Olifant",
+ "dutchFontType":2,
+ "chineseSText":"大象",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_katori",
+ "japaneseText":"蚊取りぶた",
+ "englishUsText":"Mosquito Pig",
+ "englishUsFontType":3,
+ "frenchText":"Cochon antimoustique",
+ "frenchFontType":3,
+ "italianText":"Maialino zampirone",
+ "italianFontType":3,
+ "germanText":"Mückenspirale",
+ "germanFontType":3,
+ "spanishText":"Puerquito",
+ "spanishFontType":3,
+ "chineseTText":"蚊香豬",
+ "chineseTFontType":1,
+ "koreanText":"모기향",
+ "koreanFontType":2,
+ "portugueseText":"Porco pega-mosquito",
+ "portugueseFontType":2,
+ "russianText":"Свинка от комаров",
+ "russianFontType":2,
+ "turkishText":"Sivrisineksavar",
+ "turkishFontType":2,
+ "arabicText":"خنزير البعوض",
+ "arabicFontType":2,
+ "dutchText":"Anti-muggenvarkentje",
+ "dutchFontType":2,
+ "chineseSText":"蚊香猪",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_doll",
+ "japaneseText":"ぬいぐるみ",
+ "englishUsText":"Plushie",
+ "englishUsFontType":3,
+ "frenchText":"Peluche",
+ "frenchFontType":3,
+ "italianText":"Peluche",
+ "italianFontType":3,
+ "germanText":"Plüschtier",
+ "germanFontType":3,
+ "spanishText":"Peluche",
+ "spanishFontType":3,
+ "chineseTText":"布偶",
+ "chineseTFontType":1,
+ "koreanText":"봉제인형",
+ "koreanFontType":2,
+ "portugueseText":"Pelúcia",
+ "portugueseFontType":2,
+ "russianText":"Мягкая игрушка",
+ "russianFontType":2,
+ "turkishText":"Peluş",
+ "turkishFontType":2,
+ "arabicText":"بلوشي",
+ "arabicFontType":2,
+ "dutchText":"Knuffel",
+ "dutchFontType":2,
+ "chineseSText":"布偶",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_kamaboko",
+ "japaneseText":"かまぼこ",
+ "englishUsText":"Kamaboko Fish Cake",
+ "englishUsFontType":3,
+ "frenchText":"Kamaboko",
+ "frenchFontType":3,
+ "italianText":"Kamaboko",
+ "italianFontType":3,
+ "germanText":"Kamaboko",
+ "germanFontType":3,
+ "spanishText":"Pastel de pescado",
+ "spanishFontType":3,
+ "chineseTText":"魚板",
+ "chineseTFontType":1,
+ "koreanText":"어묵",
+ "koreanFontType":2,
+ "portugueseText":"Bolinho de Kamaboko",
+ "portugueseFontType":2,
+ "russianText":"Пирог камабоко",
+ "russianFontType":2,
+ "turkishText":"Kamaboko Balık Keki",
+ "turkishFontType":2,
+ "arabicText":"كعكة السمك كامابوكو",
+ "arabicFontType":2,
+ "dutchText":"Kamaboko-viskoekje",
+ "dutchFontType":2,
+ "chineseSText":"鱼板",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_summerfest",
+ "japaneseText":"夏フェス",
+ "englishUsText":"Summer Music Festival",
+ "englishUsFontType":3,
+ "frenchText":"Festival d'été",
+ "frenchFontType":3,
+ "italianText":"Festival estivo",
+ "italianFontType":3,
+ "germanText":"Open-Air-Festival",
+ "germanFontType":3,
+ "spanishText":"Festival de verano",
+ "spanishFontType":3,
+ "chineseTText":"夏日音樂節",
+ "chineseTFontType":1,
+ "koreanText":"여름 페스티벌",
+ "koreanFontType":2,
+ "portugueseText":"Festival de Verão",
+ "portugueseFontType":2,
+ "russianText":"Летний фестиваль",
+ "russianFontType":2,
+ "turkishText":"Yaz Müzik Festivali",
+ "turkishFontType":2,
+ "arabicText":"احتفال موسيقى الصيف",
+ "arabicFontType":2,
+ "dutchText":"Muziekfestival",
+ "dutchFontType":2,
+ "chineseSText":"夏日音乐节",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_skelton",
+ "japaneseText":"スケルトンメカ",
+ "englishUsText":"Skeletal Drum",
+ "englishUsFontType":3,
+ "frenchText":"Squelette mecha",
+ "frenchFontType":3,
+ "italianText":"Mecha trasparente",
+ "italianFontType":3,
+ "germanText":"E-Taiko",
+ "germanFontType":3,
+ "spanishText":"Tambor esquelético",
+ "spanishFontType":3,
+ "chineseTText":"鏤空機械太鼓",
+ "chineseTFontType":1,
+ "koreanText":"스켈레톤 메카",
+ "koreanFontType":2,
+ "portugueseText":"Taiko esquelético",
+ "portugueseFontType":2,
+ "russianText":"Барабан-скелет",
+ "russianFontType":2,
+ "turkishText":"İskelet Davul",
+ "turkishFontType":2,
+ "arabicText":"طبلة عظميّة",
+ "arabicFontType":2,
+ "dutchText":"Skeletdrum",
+ "dutchFontType":2,
+ "chineseSText":"镂空机械太鼓",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_knit",
+ "japaneseText":"ニット",
+ "englishUsText":"Knitwear",
+ "englishUsFontType":3,
+ "frenchText":"Tricot",
+ "frenchFontType":3,
+ "italianText":"Berretto di lana",
+ "italianFontType":3,
+ "germanText":"Gestricktes",
+ "germanFontType":3,
+ "spanishText":"Prenda de lana",
+ "spanishFontType":3,
+ "chineseTText":"針織",
+ "chineseTFontType":1,
+ "koreanText":"니트",
+ "koreanFontType":2,
+ "portugueseText":"Malha",
+ "portugueseFontType":2,
+ "russianText":"Вязаная одежда",
+ "russianFontType":2,
+ "turkishText":"Örme giysi",
+ "turkishFontType":2,
+ "arabicText":"تريكو",
+ "arabicFontType":2,
+ "dutchText":"Gebreide kleding",
+ "dutchFontType":2,
+ "chineseSText":"针织",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_fluffydog",
+ "japaneseText":"ふさふさイヌ",
+ "englishUsText":"Fluffy Dog",
+ "englishUsFontType":3,
+ "frenchText":"Chien touffu",
+ "frenchFontType":3,
+ "italianText":"Cane peloso",
+ "italianFontType":3,
+ "germanText":"Haariger Hund",
+ "germanFontType":3,
+ "spanishText":"Perro peludo",
+ "spanishFontType":3,
+ "chineseTText":"長毛狗",
+ "chineseTFontType":1,
+ "koreanText":"복실 강아지",
+ "koreanFontType":2,
+ "portugueseText":"Cachorro fofo",
+ "portugueseFontType":2,
+ "russianText":"Пушистая собачка",
+ "russianFontType":2,
+ "turkishText":"Pofuduk Köpek",
+ "turkishFontType":2,
+ "arabicText":"كلب كثيف الشعر",
+ "arabicFontType":2,
+ "dutchText":"Zacht hondje",
+ "dutchFontType":2,
+ "chineseSText":"长毛狗",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_hedgehog",
+ "japaneseText":"はりねずみ",
+ "englishUsText":"Hedgehog",
+ "englishUsFontType":3,
+ "frenchText":"Hérisson",
+ "frenchFontType":3,
+ "italianText":"Porcospino",
+ "italianFontType":3,
+ "germanText":"Igel",
+ "germanFontType":3,
+ "spanishText":"Erizo",
+ "spanishFontType":3,
+ "chineseTText":"刺蝟",
+ "chineseTFontType":1,
+ "koreanText":"고슴도치",
+ "koreanFontType":2,
+ "portugueseText":"Ouriço",
+ "portugueseFontType":2,
+ "russianText":"Ежик",
+ "russianFontType":2,
+ "turkishText":"Kirpi",
+ "turkishFontType":2,
+ "arabicText":"القنفذ",
+ "arabicFontType":2,
+ "dutchText":"Egel",
+ "dutchFontType":2,
+ "chineseSText":"刺猬",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_partypeople",
+ "japaneseText":"パーリーピーポー",
+ "englishUsText":"Party People",
+ "englishUsFontType":3,
+ "frenchText":"Party people",
+ "frenchFontType":3,
+ "italianText":"Cappello da festa",
+ "italianFontType":3,
+ "germanText":"Party People",
+ "germanFontType":3,
+ "spanishText":"Gente fiestera",
+ "spanishFontType":3,
+ "chineseTText":"派對咖",
+ "chineseTFontType":1,
+ "koreanText":"파티 피플",
+ "koreanFontType":2,
+ "portugueseText":"Galera baladeira",
+ "portugueseFontType":2,
+ "russianText":"Вечеринка",
+ "russianFontType":2,
+ "turkishText":"Parti Delileri",
+ "turkishFontType":2,
+ "arabicText":"أصحاب الحفلة",
+ "arabicFontType":2,
+ "dutchText":"Feestvierders",
+ "dutchFontType":2,
+ "chineseSText":"派对咖",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_chibi_rainbow",
+ "japaneseText":"ちびどんレインボー",
+ "englishUsText":"Mini-DON Rainbow",
+ "englishUsFontType":3,
+ "frenchText":"Arc-en-ciel mini DON",
+ "frenchFontType":3,
+ "italianText":"Mini arcobaleno",
+ "italianFontType":3,
+ "germanText":"Mini-DON-Regenbogen",
+ "germanFontType":3,
+ "spanishText":"Mini DON arcoíris",
+ "spanishFontType":3,
+ "chineseTText":"迷你咚彩虹",
+ "chineseTFontType":1,
+ "koreanText":"미니동 레인보우",
+ "koreanFontType":2,
+ "portugueseText":"Mini-DON Arco-íris",
+ "portugueseFontType":2,
+ "russianText":"Радужный Чибидон",
+ "russianFontType":2,
+ "turkishText":"Mini-DON Gökkuşağı",
+ "turkishFontType":2,
+ "arabicText":"قوس قزح الدون",
+ "arabicFontType":2,
+ "dutchText":"Mini-Don-regenboog",
+ "dutchFontType":2,
+ "chineseSText":"迷你咚彩虹",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_spaceman",
+ "japaneseText":"宇宙服",
+ "englishUsText":"Space Suit",
+ "englishUsFontType":3,
+ "frenchText":"Combinaison spatiale",
+ "frenchFontType":3,
+ "italianText":"Tuta spaziale",
+ "italianFontType":3,
+ "germanText":"Weltraumanzug",
+ "germanFontType":3,
+ "spanishText":"Traje espacial",
+ "spanishFontType":3,
+ "chineseTText":"太空衣",
+ "chineseTFontType":1,
+ "koreanText":"우주복",
+ "koreanFontType":2,
+ "portugueseText":"Traje espacial",
+ "portugueseFontType":2,
+ "russianText":"Скафандр",
+ "russianFontType":2,
+ "turkishText":"Uzay Elbisesi",
+ "turkishFontType":2,
+ "arabicText":"بدلة الفضاء",
+ "arabicFontType":2,
+ "dutchText":"Ruimtepak",
+ "dutchFontType":2,
+ "chineseSText":"宇宙飞行服",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_sailorman",
+ "japaneseText":"セーラー",
+ "englishUsText":"Sailor",
+ "englishUsFontType":3,
+ "frenchText":"Moussaillon",
+ "frenchFontType":3,
+ "italianText":"Marinaretto",
+ "italianFontType":3,
+ "germanText":"Seemann",
+ "germanFontType":3,
+ "spanishText":"Marinero",
+ "spanishFontType":3,
+ "chineseTText":"水手",
+ "chineseTFontType":1,
+ "koreanText":"세일러",
+ "koreanFontType":2,
+ "portugueseText":"Marinheiro",
+ "portugueseFontType":2,
+ "russianText":"Матрос",
+ "russianFontType":2,
+ "turkishText":"Denizci",
+ "turkishFontType":2,
+ "arabicText":"البحَّار",
+ "arabicFontType":2,
+ "dutchText":"Zeeman",
+ "dutchFontType":2,
+ "chineseSText":"水手",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_kannon",
+ "japaneseText":"せんじゅかんのん",
+ "englishUsText":"Thousand-Armed Buddha",
+ "englishUsFontType":3,
+ "frenchText":"Bouddha",
+ "frenchFontType":3,
+ "italianText":"Dea Kannon",
+ "italianFontType":3,
+ "germanText":"1000-armiger Buddha",
+ "germanFontType":3,
+ "spanishText":"Buda de mil brazos",
+ "spanishFontType":3,
+ "chineseTText":"千手觀音",
+ "chineseTFontType":1,
+ "koreanText":"천수관음",
+ "koreanFontType":2,
+ "portugueseText":"Buda de mil braços",
+ "portugueseFontType":2,
+ "russianText":"Тысячерукий будда",
+ "russianFontType":2,
+ "turkishText":"Bin-Kollu Buda",
+ "turkishFontType":2,
+ "arabicText":"بوذا متعدد الأزرع",
+ "arabicFontType":2,
+ "dutchText":"Boeddha met 1000 armen",
+ "dutchFontType":2,
+ "chineseSText":"千手观音",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_alice",
+ "japaneseText":"アリスのドレス",
+ "englishUsText":"Alice's Dress",
+ "englishUsFontType":3,
+ "frenchText":"Robe d'Alice",
+ "frenchFontType":3,
+ "italianText":"Vestito di Alice",
+ "italianFontType":3,
+ "germanText":"Alice' Kleid",
+ "germanFontType":3,
+ "spanishText":"Traje de Alicia",
+ "spanishFontType":3,
+ "chineseTText":"愛麗絲的洋裝",
+ "chineseTFontType":1,
+ "koreanText":"앨리스의 드레스",
+ "koreanFontType":2,
+ "portugueseText":"Vestido de Alice",
+ "portugueseFontType":2,
+ "russianText":"Платье Алисы",
+ "russianFontType":2,
+ "turkishText":"Alice'in Elbisesi",
+ "turkishFontType":2,
+ "arabicText":"فستان أليس",
+ "arabicFontType":2,
+ "dutchText":"De jurk van Alice",
+ "dutchFontType":2,
+ "chineseSText":"艾丽丝的洋装",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_summer",
+ "japaneseText":"夏休み",
+ "englishUsText":"Summer Vacation",
+ "englishUsFontType":3,
+ "frenchText":"Vacances d'été",
+ "frenchFontType":3,
+ "italianText":"Vacanze estive",
+ "italianFontType":3,
+ "germanText":"Sommerferien",
+ "germanFontType":3,
+ "spanishText":"Vacaciones de verano",
+ "spanishFontType":3,
+ "chineseTText":"暑假",
+ "chineseTFontType":1,
+ "koreanText":"여름방학",
+ "koreanFontType":2,
+ "portugueseText":"Férias de Verão",
+ "portugueseFontType":2,
+ "russianText":"Летние каникулы",
+ "russianFontType":2,
+ "turkishText":"Yaz Tatili",
+ "turkishFontType":2,
+ "arabicText":"عطلة الصيف",
+ "arabicFontType":2,
+ "dutchText":"Zomervakantie",
+ "dutchFontType":2,
+ "chineseSText":"暑假",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_ufo",
+ "japaneseText":"UFO",
+ "englishUsText":"UFO",
+ "englishUsFontType":3,
+ "frenchText":"OVNI",
+ "frenchFontType":3,
+ "italianText":"UFO",
+ "italianFontType":3,
+ "germanText":"UFO",
+ "germanFontType":3,
+ "spanishText":"OVNI",
+ "spanishFontType":3,
+ "chineseTText":"UFO",
+ "chineseTFontType":1,
+ "koreanText":"UFO",
+ "koreanFontType":2,
+ "portugueseText":"OVNI",
+ "portugueseFontType":2,
+ "russianText":"НЛО",
+ "russianFontType":2,
+ "turkishText":"UFO",
+ "turkishFontType":2,
+ "arabicText":"الطبق الطائر",
+ "arabicFontType":2,
+ "dutchText":"UFO",
+ "dutchFontType":2,
+ "chineseSText":"UFO",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_sansa",
+ "japaneseText":"さんさ踊り",
+ "englishUsText":"The Sansa Dance",
+ "englishUsFontType":3,
+ "frenchText":"Sansa Odori",
+ "frenchFontType":3,
+ "italianText":"Danza sansa",
+ "italianFontType":3,
+ "germanText":"Sansa-Tanz",
+ "germanFontType":3,
+ "spanishText":"Baile Sansa",
+ "spanishFontType":3,
+ "chineseTText":"三颯舞",
+ "chineseTFontType":1,
+ "koreanText":"산사 춤",
+ "koreanFontType":2,
+ "portugueseText":"A Dança Sansa",
+ "portugueseFontType":2,
+ "russianText":"Танец Санса",
+ "russianFontType":2,
+ "turkishText":"Sansa Dansı",
+ "turkishFontType":2,
+ "arabicText":"رقصة سانسا",
+ "arabicFontType":2,
+ "dutchText":"Sansa-dans",
+ "dutchFontType":2,
+ "chineseSText":"三飒舞",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_seafriend",
+ "japaneseText":"カクレクマノミ",
+ "englishUsText":"Clownfish",
+ "englishUsFontType":3,
+ "frenchText":"Poisson-clown",
+ "frenchFontType":3,
+ "italianText":"Pesce pagliaccio",
+ "italianFontType":3,
+ "germanText":"Falscher Clownfisch",
+ "germanFontType":3,
+ "spanishText":"Pez payaso",
+ "spanishFontType":3,
+ "chineseTText":"小丑魚",
+ "chineseTFontType":1,
+ "koreanText":"흰동가리",
+ "koreanFontType":2,
+ "portugueseText":"Peixe-palhaço",
+ "portugueseFontType":2,
+ "russianText":"Рыба-клоун",
+ "russianFontType":2,
+ "turkishText":"Palyaço balığı",
+ "turkishFontType":2,
+ "arabicText":"سمكة المهرج",
+ "arabicFontType":2,
+ "dutchText":"Clownvis",
+ "dutchFontType":2,
+ "chineseSText":"小丑鱼",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_ribbon_big_2",
+ "japaneseText":"ビッグリボン",
+ "englishUsText":"Big Ribbon",
+ "englishUsFontType":3,
+ "frenchText":"Grand ruban",
+ "frenchFontType":3,
+ "italianText":"Gran fiocco",
+ "italianFontType":3,
+ "germanText":"Große Schleife",
+ "germanFontType":3,
+ "spanishText":"Gran Lazo",
+ "spanishFontType":3,
+ "chineseTText":"大蝴蝶結",
+ "chineseTFontType":1,
+ "koreanText":"빅 리본",
+ "koreanFontType":2,
+ "portugueseText":"Fita grande",
+ "portugueseFontType":2,
+ "russianText":"Большая лента",
+ "russianFontType":2,
+ "turkishText":"Büyük Kurdele",
+ "turkishFontType":2,
+ "arabicText":"الشريط الكبير",
+ "arabicFontType":2,
+ "dutchText":"Grote strik",
+ "dutchFontType":2,
+ "chineseSText":"大蝴蝶结",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_wing_gorgeous",
+ "japaneseText":"ゴールドン",
+ "englishUsText":"Gold-DON",
+ "englishUsFontType":3,
+ "frenchText":"DON doré",
+ "frenchFontType":3,
+ "italianText":"DON-chan d'oro",
+ "italianFontType":3,
+ "germanText":"Gold-DON",
+ "germanFontType":3,
+ "spanishText":"DON-chan de oro",
+ "spanishFontType":3,
+ "chineseTText":"黃金咚",
+ "chineseTFontType":1,
+ "koreanText":"골드 동이",
+ "koreanFontType":2,
+ "portugueseText":"DON-dourado",
+ "portugueseFontType":2,
+ "russianText":"Золодон",
+ "russianFontType":2,
+ "turkishText":"Altın-DON",
+ "turkishFontType":2,
+ "arabicText":"دون-ذهبية",
+ "arabicFontType":2,
+ "dutchText":"Gou-DON",
+ "dutchFontType":2,
+ "chineseSText":"黄金咚",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_taiko_gorgeous",
+ "japaneseText":"すごく豪華な太鼓",
+ "englishUsText":"Super Deluxe Drum",
+ "englishUsFontType":3,
+ "frenchText":"Tambour sublime",
+ "frenchFontType":3,
+ "italianText":"Tamburo sfarzoso",
+ "italianFontType":3,
+ "germanText":"Super-Deluxe-Trommel",
+ "germanFontType":3,
+ "spanishText":"Tambor de superlujo",
+ "spanishFontType":3,
+ "chineseTText":"豪華無比的太鼓",
+ "chineseTFontType":1,
+ "koreanText":"무척 화려한 북",
+ "koreanFontType":2,
+ "portugueseText":"Taiko super-deluxe",
+ "portugueseFontType":2,
+ "russianText":"Супершикарный барабан",
+ "russianFontType":2,
+ "turkishText":"Süper üstsınıf davul",
+ "turkishFontType":2,
+ "arabicText":"طبلة فاخرة للغاية",
+ "arabicFontType":2,
+ "dutchText":"Superluxe drum",
+ "dutchFontType":2,
+ "chineseSText":"豪华无比的太鼓",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_prickly",
+ "japaneseText":"くじゃく",
+ "englishUsText":"Peacock",
+ "englishUsFontType":3,
+ "frenchText":"Paon",
+ "frenchFontType":3,
+ "italianText":"Pavone",
+ "italianFontType":3,
+ "germanText":"Pfau",
+ "germanFontType":3,
+ "spanishText":"Pavo real",
+ "spanishFontType":3,
+ "chineseTText":"孔雀",
+ "chineseTFontType":1,
+ "koreanText":"공작새",
+ "koreanFontType":2,
+ "portugueseText":"Pavão",
+ "portugueseFontType":2,
+ "russianText":"Павлин",
+ "russianFontType":2,
+ "turkishText":"Tavuskuşu",
+ "turkishFontType":2,
+ "arabicText":"شائك",
+ "arabicFontType":2,
+ "dutchText":"Pauw",
+ "dutchFontType":2,
+ "chineseSText":"孔雀",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_luckydragon",
+ "japaneseText":"幸運ドラゴン",
+ "englishUsText":"Lucky Dragon",
+ "englishUsFontType":3,
+ "frenchText":"Dragon de la chance",
+ "frenchFontType":3,
+ "italianText":"Drago della fortuna",
+ "italianFontType":3,
+ "germanText":"Glücksdrache",
+ "germanFontType":3,
+ "spanishText":"Dragón de la suerte",
+ "spanishFontType":3,
+ "chineseTText":"好運龍",
+ "chineseTFontType":1,
+ "koreanText":"럭키 드래곤",
+ "koreanFontType":2,
+ "portugueseText":"Dragão da Sorte",
+ "portugueseFontType":2,
+ "russianText":"Дракон удачи",
+ "russianFontType":2,
+ "turkishText":"Şanslı Ejderha",
+ "turkishFontType":2,
+ "arabicText":"التنين المحظوظ",
+ "arabicFontType":2,
+ "dutchText":"Geluksdraak",
+ "dutchFontType":2,
+ "chineseSText":"好运龙",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_bluebird",
+ "japaneseText":"しあわせの青い鳥",
+ "englishUsText":"The Blue Bird",
+ "englishUsFontType":3,
+ "frenchText":"L'Oiseau bleu",
+ "frenchFontType":3,
+ "italianText":"Uccellino azzurro",
+ "italianFontType":3,
+ "germanText":"Blauer Glücksvogel",
+ "germanFontType":3,
+ "spanishText":"El pájaro azul",
+ "spanishFontType":3,
+ "chineseTText":"幸福的青鳥",
+ "chineseTFontType":1,
+ "koreanText":"행복의 파랑새",
+ "koreanFontType":2,
+ "portugueseText":"O Pássaro Azul",
+ "portugueseFontType":2,
+ "russianText":"Птица счастья",
+ "russianFontType":2,
+ "turkishText":"Mavi Kuş",
+ "turkishFontType":2,
+ "arabicText":"العصفور الأزرق",
+ "arabicFontType":2,
+ "dutchText":"Blauwe vogel",
+ "dutchFontType":2,
+ "chineseSText":"幸福的青鸟",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_rock",
+ "japaneseText":"岩",
+ "englishUsText":"Boulder",
+ "englishUsFontType":3,
+ "frenchText":"Rocher",
+ "frenchFontType":3,
+ "italianText":"Roccia",
+ "italianFontType":3,
+ "germanText":"Felsen",
+ "germanFontType":3,
+ "spanishText":"Roca",
+ "spanishFontType":3,
+ "chineseTText":"岩石",
+ "chineseTFontType":1,
+ "koreanText":"바위",
+ "koreanFontType":2,
+ "portugueseText":"Rocha",
+ "portugueseFontType":2,
+ "russianText":"Скалолаз",
+ "russianFontType":2,
+ "turkishText":"Kaya",
+ "turkishFontType":2,
+ "arabicText":"الصخرة",
+ "arabicFontType":2,
+ "dutchText":"Rots",
+ "dutchFontType":2,
+ "chineseSText":"岩石",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_candyhouse",
+ "japaneseText":"おかしの家",
+ "englishUsText":"Gingerbread House",
+ "englishUsFontType":3,
+ "frenchText":"Maison en bonbons",
+ "frenchFontType":3,
+ "italianText":"Casetta dolce",
+ "italianFontType":3,
+ "germanText":"Lebkuchenhaus",
+ "germanFontType":3,
+ "spanishText":"Casa de caramelo",
+ "spanishFontType":3,
+ "chineseTText":"糖果屋",
+ "chineseTFontType":1,
+ "koreanText":"과자 집",
+ "koreanFontType":2,
+ "portugueseText":"Casinha de Gengibre",
+ "portugueseFontType":2,
+ "russianText":"Пряничный домик",
+ "russianFontType":2,
+ "turkishText":"Zencefilli Ev",
+ "turkishFontType":2,
+ "arabicText":"منزل الزنجبيل",
+ "arabicFontType":2,
+ "dutchText":"Peperkoekenhuis",
+ "dutchFontType":2,
+ "chineseSText":"糖果屋",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_ranch",
+ "japaneseText":"まきばのなかま",
+ "englishUsText":"Ranch Friends",
+ "englishUsFontType":3,
+ "frenchText":"Amis de la ferme",
+ "frenchFontType":3,
+ "italianText":"Animali da pascolo",
+ "italianFontType":3,
+ "germanText":"Bauernhofsfreunde",
+ "germanFontType":3,
+ "spanishText":"Amigos del rancho",
+ "spanishFontType":3,
+ "chineseTText":"牧場的夥伴",
+ "chineseTFontType":1,
+ "koreanText":"목장 친구들",
+ "koreanFontType":2,
+ "portugueseText":"Amigos do rancho",
+ "portugueseFontType":2,
+ "russianText":"Друзья на пастбище",
+ "russianFontType":2,
+ "turkishText":"Çiftlik Arkadaşları",
+ "turkishFontType":2,
+ "arabicText":"أصدقاء المزرعة",
+ "arabicFontType":2,
+ "dutchText":"Boerderijvrienden",
+ "dutchFontType":2,
+ "chineseSText":"牧场的伙伴",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_cardboard",
+ "japaneseText":"ダンボール",
+ "englishUsText":"Cardboard Box",
+ "englishUsFontType":3,
+ "frenchText":"Carton",
+ "frenchFontType":3,
+ "italianText":"Scatola di cartone",
+ "italianFontType":3,
+ "germanText":"Pappkarton",
+ "germanFontType":3,
+ "spanishText":"Cartón",
+ "spanishFontType":3,
+ "chineseTText":"紙箱",
+ "chineseTFontType":1,
+ "koreanText":"종이 박스",
+ "koreanFontType":2,
+ "portugueseText":"Caixa de Papelão",
+ "portugueseFontType":2,
+ "russianText":"Картонная коробка",
+ "russianFontType":2,
+ "turkishText":"Karton Kutu",
+ "turkishFontType":2,
+ "arabicText":"صندوق الورق المقوى",
+ "arabicFontType":2,
+ "dutchText":"Kartonnen doos",
+ "dutchFontType":2,
+ "chineseSText":"纸箱",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_rainbow",
+ "japaneseText":"レインボー",
+ "englishUsText":"Rainbow",
+ "englishUsFontType":3,
+ "frenchText":"Arc-en-ciel",
+ "frenchFontType":3,
+ "italianText":"Arcobaleno",
+ "italianFontType":3,
+ "germanText":"Regenbogen",
+ "germanFontType":3,
+ "spanishText":"Arcoíris",
+ "spanishFontType":3,
+ "chineseTText":"彩虹",
+ "chineseTFontType":1,
+ "koreanText":"레인보우",
+ "koreanFontType":2,
+ "portugueseText":"Arco-íris",
+ "portugueseFontType":2,
+ "russianText":"Радуга",
+ "russianFontType":2,
+ "turkishText":"Gökkuşağı",
+ "turkishFontType":2,
+ "arabicText":"قوس قزح",
+ "arabicFontType":2,
+ "dutchText":"Regenboog",
+ "dutchFontType":2,
+ "chineseSText":"彩虹",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_harvest",
+ "japaneseText":"豊作",
+ "englishUsText":"Harvest",
+ "englishUsFontType":3,
+ "frenchText":"Bonne récolte",
+ "frenchFontType":3,
+ "italianText":"Raccolto",
+ "italianFontType":3,
+ "germanText":"Reiche Ernte",
+ "germanFontType":3,
+ "spanishText":"Cosecha",
+ "spanishFontType":3,
+ "chineseTText":"豐收",
+ "chineseTFontType":1,
+ "koreanText":"풍년",
+ "koreanFontType":2,
+ "portugueseText":"Colheita",
+ "portugueseFontType":2,
+ "russianText":"Жатва",
+ "russianFontType":2,
+ "turkishText":"Hasat",
+ "turkishFontType":2,
+ "arabicText":"الحصاد",
+ "arabicFontType":2,
+ "dutchText":"Oogst",
+ "dutchFontType":2,
+ "chineseSText":"丰收",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_heart",
+ "japaneseText":"ハート",
+ "englishUsText":"Hearts",
+ "englishUsFontType":3,
+ "frenchText":"Cœurs",
+ "frenchFontType":3,
+ "italianText":"Cuori",
+ "italianFontType":3,
+ "germanText":"Herzen",
+ "germanFontType":3,
+ "spanishText":"Corazones",
+ "spanishFontType":3,
+ "chineseTText":"愛心",
+ "chineseTFontType":1,
+ "koreanText":"하트",
+ "koreanFontType":2,
+ "portugueseText":"Corações",
+ "portugueseFontType":2,
+ "russianText":"Сердечки",
+ "russianFontType":2,
+ "turkishText":"Kalpler",
+ "turkishFontType":2,
+ "arabicText":"القلوب",
+ "arabicFontType":2,
+ "dutchText":"Hartjes",
+ "dutchFontType":2,
+ "chineseSText":"爱心",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_jk",
+ "japaneseText":"JKに大人気",
+ "englishUsText":"Teen Heartthrob",
+ "englishUsFontType":3,
+ "frenchText":"Idole des lycéennes",
+ "frenchFontType":3,
+ "italianText":"Idolo delle liceali",
+ "italianFontType":3,
+ "germanText":"Bei Mädchen beliebt",
+ "germanFontType":3,
+ "spanishText":"Ídolo de las chicas",
+ "spanishFontType":3,
+ "chineseTText":"大受女高中生歡迎",
+ "chineseTFontType":1,
+ "koreanText":"여고생에게 대인기",
+ "koreanFontType":2,
+ "portugueseText":"Galã adolescente",
+ "portugueseFontType":2,
+ "russianText":"Сердцебиение юности",
+ "russianFontType":2,
+ "turkishText":"Çok tatlııııııııııı!",
+ "turkishFontType":2,
+ "arabicText":"حبيب مراهق",
+ "arabicFontType":2,
+ "dutchText":"Tieneridool",
+ "dutchFontType":2,
+ "chineseSText":"大受女高中生欢迎",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_solarsystem",
+ "japaneseText":"わくせい",
+ "englishUsText":"Planets",
+ "englishUsFontType":3,
+ "frenchText":"Planètes",
+ "frenchFontType":3,
+ "italianText":"Pianeti",
+ "italianFontType":3,
+ "germanText":"Planeten",
+ "germanFontType":3,
+ "spanishText":"Planeta",
+ "spanishFontType":3,
+ "chineseTText":"行星",
+ "chineseTFontType":1,
+ "koreanText":"행성",
+ "koreanFontType":2,
+ "portugueseText":"Planetas",
+ "portugueseFontType":2,
+ "russianText":"Планеты",
+ "russianFontType":2,
+ "turkishText":"Gezegenler",
+ "turkishFontType":2,
+ "arabicText":"الكواكب",
+ "arabicFontType":2,
+ "dutchText":"Planeten",
+ "dutchFontType":2,
+ "chineseSText":"行星",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_cat_meeting",
+ "japaneseText":"ネコの集会",
+ "englishUsText":"Cat Caucus",
+ "englishUsFontType":3,
+ "frenchText":"Réunion de chats",
+ "frenchFontType":3,
+ "italianText":"Raduno di gatti",
+ "italianFontType":3,
+ "germanText":"Katzen-Versammlung",
+ "germanFontType":3,
+ "spanishText":"Reunión de gatos",
+ "spanishFontType":3,
+ "chineseTText":"貓的聚會",
+ "chineseTFontType":1,
+ "koreanText":"고양이 집회",
+ "koreanFontType":2,
+ "portugueseText":"Reunião felina",
+ "portugueseFontType":2,
+ "russianText":"Сборище котов",
+ "russianFontType":2,
+ "turkishText":"Kedi Kurulu",
+ "turkishFontType":2,
+ "arabicText":"تجمع القطط",
+ "arabicFontType":2,
+ "dutchText":"Kattenvergadering",
+ "dutchFontType":2,
+ "chineseSText":"猫的聚会",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_rich",
+ "japaneseText":"おかねもち",
+ "englishUsText":"Millionaire",
+ "englishUsFontType":3,
+ "frenchText":"Riche",
+ "frenchFontType":3,
+ "italianText":"Banconote",
+ "italianFontType":3,
+ "germanText":"Reicher",
+ "germanFontType":3,
+ "spanishText":"Millonario",
+ "spanishFontType":3,
+ "chineseTText":"有錢人",
+ "chineseTFontType":1,
+ "koreanText":"부자",
+ "koreanFontType":2,
+ "portugueseText":"Milionário",
+ "portugueseFontType":2,
+ "russianText":"Миллионер",
+ "russianFontType":2,
+ "turkishText":"Milyoner",
+ "turkishFontType":2,
+ "arabicText":"المليونير",
+ "arabicFontType":2,
+ "dutchText":"Miljonair",
+ "dutchFontType":2,
+ "chineseSText":"有钱人",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_fireman",
+ "japaneseText":"火消し",
+ "englishUsText":"Edo Firefighter",
+ "englishUsFontType":3,
+ "frenchText":"Pompier d'Edo",
+ "frenchFontType":3,
+ "italianText":"Pompiere di Edo",
+ "italianFontType":3,
+ "germanText":"Feuerwehrmann",
+ "germanFontType":3,
+ "spanishText":"Bombero antiguo",
+ "spanishFontType":3,
+ "chineseTText":"消防隊",
+ "chineseTFontType":1,
+ "koreanText":"에도 소방관",
+ "koreanFontType":2,
+ "portugueseText":"Bombeiro de Edo",
+ "portugueseFontType":2,
+ "russianText":"Пожарный Эдо",
+ "russianFontType":2,
+ "turkishText":"Edo İtfaiyecileri",
+ "turkishFontType":2,
+ "arabicText":"رجل إطفاء الإدو",
+ "arabicFontType":2,
+ "dutchText":"Edo-brandweerman",
+ "dutchFontType":2,
+ "chineseSText":"消防队",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_dk",
+ "japaneseText":"DKに大人気",
+ "englishUsText":"Coolest Kid at School",
+ "englishUsFontType":3,
+ "frenchText":"Idole des lycéens",
+ "frenchFontType":3,
+ "italianText":"Idolo dei liceali",
+ "italianFontType":3,
+ "germanText":"Bei Jungen beliebt",
+ "germanFontType":3,
+ "spanishText":"El chico guay",
+ "spanishFontType":3,
+ "chineseTText":"大受男高中生歡迎",
+ "chineseTFontType":1,
+ "koreanText":"남고생에게 대인기",
+ "koreanFontType":2,
+ "portugueseText":"O garoto mais legal da escola",
+ "portugueseFontType":2,
+ "russianText":"Лучший ученик среди ребят",
+ "russianFontType":2,
+ "turkishText":"Dostuuuum!!",
+ "turkishFontType":2,
+ "arabicText":"أروع طفل في المدرسة",
+ "arabicFontType":2,
+ "dutchText":"Coolste van de klas",
+ "dutchFontType":2,
+ "chineseSText":"大受男高中生欢迎",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_mushroom",
+ "japaneseText":"きのこ",
+ "englishUsText":"Mushrooms",
+ "englishUsFontType":3,
+ "frenchText":"Champignon",
+ "frenchFontType":3,
+ "italianText":"Funghi",
+ "italianFontType":3,
+ "germanText":"Pilze",
+ "germanFontType":3,
+ "spanishText":"Setas",
+ "spanishFontType":3,
+ "chineseTText":"蘑菇",
+ "chineseTFontType":1,
+ "koreanText":"버섯",
+ "koreanFontType":2,
+ "portugueseText":"Cogumelos",
+ "portugueseFontType":2,
+ "russianText":"Грибы",
+ "russianFontType":2,
+ "turkishText":"Mantarlar",
+ "turkishFontType":2,
+ "arabicText":"عش الغراب",
+ "arabicFontType":2,
+ "dutchText":"Paddenstoelen",
+ "dutchFontType":2,
+ "chineseSText":"蘑菇",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_yakisoba",
+ "japaneseText":"やきそばやたい",
+ "englishUsText":"Yakisoba Stall",
+ "englishUsFontType":3,
+ "frenchText":"Stand de yakisoba",
+ "frenchFontType":3,
+ "italianText":"Chiosco di yakisoba",
+ "italianFontType":3,
+ "germanText":"Yakisoba-Stand",
+ "germanFontType":3,
+ "spanishText":"Puesto de yakisoba",
+ "spanishFontType":3,
+ "chineseTText":"炒麵攤車",
+ "chineseTFontType":1,
+ "koreanText":"야키소바 포장마차",
+ "koreanFontType":2,
+ "portugueseText":"Barraquinha de yakisoba",
+ "portugueseFontType":2,
+ "russianText":"Стойка якисобы",
+ "russianFontType":2,
+ "turkishText":"Yakisoba mağazası",
+ "turkishFontType":2,
+ "arabicText":"كُشك الياكيسوبا",
+ "arabicFontType":2,
+ "dutchText":"Yakisoba-kraampje",
+ "dutchFontType":2,
+ "chineseSText":"炒面摊车",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_carp",
+ "japaneseText":"こいのぼり",
+ "englishUsText":"Carp Streamers",
+ "englishUsFontType":3,
+ "frenchText":"Banderole de carpe",
+ "frenchFontType":3,
+ "italianText":"Carpe volanti",
+ "italianFontType":3,
+ "germanText":"Karpfenfahne",
+ "germanFontType":3,
+ "spanishText":"Banderas carpa",
+ "spanishFontType":3,
+ "chineseTText":"鯉魚旗",
+ "chineseTFontType":1,
+ "koreanText":"잉어 깃발",
+ "koreanFontType":2,
+ "portugueseText":"Koinobori",
+ "portugueseFontType":2,
+ "russianText":"Коинобори",
+ "russianFontType":2,
+ "turkishText":"Kağıt Sazan Balığı",
+ "turkishFontType":2,
+ "arabicText":"رايات الشبوط",
+ "arabicFontType":2,
+ "dutchText":"Karpervlaggen",
+ "dutchFontType":2,
+ "chineseSText":"鲤鱼旗",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_aquarium",
+ "japaneseText":"アクアリウム",
+ "englishUsText":"Fish Tank",
+ "englishUsFontType":3,
+ "frenchText":"Aquarium",
+ "frenchFontType":3,
+ "italianText":"Acquario",
+ "italianFontType":3,
+ "germanText":"Aquarium",
+ "germanFontType":3,
+ "spanishText":"Acuario",
+ "spanishFontType":3,
+ "chineseTText":"水族箱",
+ "chineseTFontType":1,
+ "koreanText":"아쿠아리움",
+ "koreanFontType":2,
+ "portugueseText":"Aquário",
+ "portugueseFontType":2,
+ "russianText":"Аквариум",
+ "russianFontType":2,
+ "turkishText":"Akvaryum",
+ "turkishFontType":2,
+ "arabicText":"حوض السمك",
+ "arabicFontType":2,
+ "dutchText":"Aquarium",
+ "dutchFontType":2,
+ "chineseSText":"水族箱",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_bread",
+ "japaneseText":"食パンとバター",
+ "englishUsText":"Buttered Bread",
+ "englishUsFontType":3,
+ "frenchText":"Pain au beurre",
+ "frenchFontType":3,
+ "italianText":"Pane e burro",
+ "italianFontType":3,
+ "germanText":"Buttertoast",
+ "germanFontType":3,
+ "spanishText":"Pan con mantequilla",
+ "spanishFontType":3,
+ "chineseTText":"吐司與奶油",
+ "chineseTFontType":1,
+ "koreanText":"식빵과 버터",
+ "koreanFontType":2,
+ "portugueseText":"Pão com manteiga",
+ "portugueseFontType":2,
+ "russianText":"Хлеб с маслом",
+ "russianFontType":2,
+ "turkishText":"Tereyağlı Ekmek",
+ "turkishFontType":2,
+ "arabicText":"خبز بالزبدة",
+ "arabicFontType":2,
+ "dutchText":"Brood met boter",
+ "dutchFontType":2,
+ "chineseSText":"吐司与奶油",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_rickshaw",
+ "japaneseText":"人力車",
+ "englishUsText":"Rickshaw",
+ "englishUsFontType":3,
+ "frenchText":"Pousse-pousse",
+ "frenchFontType":3,
+ "italianText":"Risciò",
+ "italianFontType":3,
+ "germanText":"Rikscha",
+ "germanFontType":3,
+ "spanishText":"Carrito",
+ "spanishFontType":3,
+ "chineseTText":"人力車",
+ "chineseTFontType":1,
+ "koreanText":"인력거",
+ "koreanFontType":2,
+ "portugueseText":"Riquixá",
+ "portugueseFontType":2,
+ "russianText":"Рикша",
+ "russianFontType":2,
+ "turkishText":"Çekçek",
+ "turkishFontType":2,
+ "arabicText":"الريكشا",
+ "arabicFontType":2,
+ "dutchText":"Riksja",
+ "dutchFontType":2,
+ "chineseSText":"人力车",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_natto",
+ "japaneseText":"わら納豆",
+ "englishUsText":"Natto",
+ "englishUsFontType":3,
+ "frenchText":"Waranattô",
+ "frenchFontType":3,
+ "italianText":"Natto",
+ "italianFontType":3,
+ "germanText":"Natto",
+ "germanFontType":3,
+ "spanishText":"Natto",
+ "spanishFontType":3,
+ "chineseTText":"稻草納豆",
+ "chineseTFontType":1,
+ "koreanText":"낫또",
+ "koreanFontType":2,
+ "portugueseText":"Natto",
+ "portugueseFontType":2,
+ "russianText":"Бобы натто",
+ "russianFontType":2,
+ "turkishText":"Natto",
+ "turkishFontType":2,
+ "arabicText":"الناتو",
+ "arabicFontType":2,
+ "dutchText":"Natto",
+ "dutchFontType":2,
+ "chineseSText":"稻草纳豆",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_shachihoko",
+ "japaneseText":"しゃちほこ",
+ "englishUsText":"Shachihoko",
+ "englishUsFontType":3,
+ "frenchText":"Shachihoko",
+ "frenchFontType":3,
+ "italianText":"Shachihoko",
+ "italianFontType":3,
+ "germanText":"Shachihoko",
+ "germanFontType":3,
+ "spanishText":"Pez dorado",
+ "spanishFontType":3,
+ "chineseTText":"鯱鉾",
+ "chineseTFontType":1,
+ "koreanText":"샤치호코",
+ "koreanFontType":2,
+ "portugueseText":"Shachihoko",
+ "portugueseFontType":2,
+ "russianText":"Сятихоко",
+ "russianFontType":2,
+ "turkishText":"Shachihoko",
+ "turkishFontType":2,
+ "arabicText":"شاتشيهوكو",
+ "arabicFontType":2,
+ "dutchText":"Shachihoko",
+ "dutchFontType":2,
+ "chineseSText":"鯱鉾",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_helicopter",
+ "japaneseText":"ヘリコプター",
+ "englishUsText":"Helicopter",
+ "englishUsFontType":3,
+ "frenchText":"Hélicoptère",
+ "frenchFontType":3,
+ "italianText":"Elicottero",
+ "italianFontType":3,
+ "germanText":"Hubschrauber",
+ "germanFontType":3,
+ "spanishText":"Helicóptero",
+ "spanishFontType":3,
+ "chineseTText":"直升機",
+ "chineseTFontType":1,
+ "koreanText":"헬리콥터",
+ "koreanFontType":2,
+ "portugueseText":"Helicóptero",
+ "portugueseFontType":2,
+ "russianText":"Вертолет",
+ "russianFontType":2,
+ "turkishText":"Helikopter",
+ "turkishFontType":2,
+ "arabicText":"الهليكوبتر",
+ "arabicFontType":2,
+ "dutchText":"Helikopter",
+ "dutchFontType":2,
+ "chineseSText":"直升机",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_submarine",
+ "japaneseText":"せんすいかん",
+ "englishUsText":"Submarine",
+ "englishUsFontType":3,
+ "frenchText":"Sous-marin",
+ "frenchFontType":3,
+ "italianText":"Sottomarino",
+ "italianFontType":3,
+ "germanText":"U-Boot",
+ "germanFontType":3,
+ "spanishText":"Submarino",
+ "spanishFontType":3,
+ "chineseTText":"潛水艇",
+ "chineseTFontType":1,
+ "koreanText":"잠수함",
+ "koreanFontType":2,
+ "portugueseText":"Submarino",
+ "portugueseFontType":2,
+ "russianText":"Подводная лодка",
+ "russianFontType":2,
+ "turkishText":"Denizaltı",
+ "turkishFontType":2,
+ "arabicText":"الغواصة",
+ "arabicFontType":2,
+ "dutchText":"Onderzeeër",
+ "dutchFontType":2,
+ "chineseSText":"潜水艇",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_ichigo_kigurumi",
+ "japaneseText":"いちご",
+ "englishUsText":"Strawberry",
+ "englishUsFontType":3,
+ "frenchText":"Fraise",
+ "frenchFontType":3,
+ "italianText":"Fragola",
+ "italianFontType":3,
+ "germanText":"Erdbeere",
+ "germanFontType":3,
+ "spanishText":"Fresa",
+ "spanishFontType":3,
+ "chineseTText":"草莓",
+ "chineseTFontType":1,
+ "koreanText":"딸기",
+ "koreanFontType":2,
+ "portugueseText":"Morango",
+ "portugueseFontType":2,
+ "russianText":"Клубника",
+ "russianFontType":2,
+ "turkishText":"Çilek",
+ "turkishFontType":2,
+ "arabicText":"الفراولة",
+ "arabicFontType":2,
+ "dutchText":"Aardbei",
+ "dutchFontType":2,
+ "chineseSText":"草莓",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_castle",
+ "japaneseText":"おしろ",
+ "englishUsText":"Castle",
+ "englishUsFontType":3,
+ "frenchText":"Château",
+ "frenchFontType":3,
+ "italianText":"Castello",
+ "italianFontType":3,
+ "germanText":"Schloss",
+ "germanFontType":3,
+ "spanishText":"Castillo",
+ "spanishFontType":3,
+ "chineseTText":"城堡",
+ "chineseTFontType":1,
+ "koreanText":"성",
+ "koreanFontType":2,
+ "portugueseText":"Castelo",
+ "portugueseFontType":2,
+ "russianText":"Замок",
+ "russianFontType":2,
+ "turkishText":"Kale",
+ "turkishFontType":2,
+ "arabicText":"القلعة",
+ "arabicFontType":2,
+ "dutchText":"Kasteel",
+ "dutchFontType":2,
+ "chineseSText":"城堡",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_shark",
+ "japaneseText":"さめ",
+ "englishUsText":"Shark",
+ "englishUsFontType":3,
+ "frenchText":"Requin",
+ "frenchFontType":3,
+ "italianText":"Squalo",
+ "italianFontType":3,
+ "germanText":"Hai",
+ "germanFontType":3,
+ "spanishText":"Tiburón",
+ "spanishFontType":3,
+ "chineseTText":"鯊魚",
+ "chineseTFontType":1,
+ "koreanText":"상어",
+ "koreanFontType":2,
+ "portugueseText":"Tubarão",
+ "portugueseFontType":2,
+ "russianText":"Акула",
+ "russianFontType":2,
+ "turkishText":"Köpekbalığı",
+ "turkishFontType":2,
+ "arabicText":"القرش",
+ "arabicFontType":2,
+ "dutchText":"Haai",
+ "dutchFontType":2,
+ "chineseSText":"鲨鱼",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_sushi",
+ "japaneseText":"すし",
+ "englishUsText":"Sushi",
+ "englishUsFontType":3,
+ "frenchText":"Sushi",
+ "frenchFontType":3,
+ "italianText":"Sushi",
+ "italianFontType":3,
+ "germanText":"Sushi",
+ "germanFontType":3,
+ "spanishText":"Sushi",
+ "spanishFontType":3,
+ "chineseTText":"壽司",
+ "chineseTFontType":1,
+ "koreanText":"초밥",
+ "koreanFontType":2,
+ "portugueseText":"Sushi",
+ "portugueseFontType":2,
+ "russianText":"Суши",
+ "russianFontType":2,
+ "turkishText":"Sushi",
+ "turkishFontType":2,
+ "arabicText":"السوشي",
+ "arabicFontType":2,
+ "dutchText":"Sushi",
+ "dutchFontType":2,
+ "chineseSText":"寿司",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_burger",
+ "japaneseText":"チーズバーガー",
+ "englishUsText":"Cheeseburger",
+ "englishUsFontType":3,
+ "frenchText":"Cheeseburger",
+ "frenchFontType":3,
+ "italianText":"Cheeseburger",
+ "italianFontType":3,
+ "germanText":"Cheeseburger",
+ "germanFontType":3,
+ "spanishText":"Hamburguesa con queso",
+ "spanishFontType":3,
+ "chineseTText":"起司漢堡",
+ "chineseTFontType":1,
+ "koreanText":"치즈버거",
+ "koreanFontType":2,
+ "portugueseText":"X-Burguer",
+ "portugueseFontType":2,
+ "russianText":"Чизбургер",
+ "russianFontType":2,
+ "turkishText":"Çizburger",
+ "turkishFontType":2,
+ "arabicText":"التشيز برجر",
+ "arabicFontType":2,
+ "dutchText":"Cheeseburger",
+ "dutchFontType":2,
+ "chineseSText":"芝士汉堡",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_apple",
+ "japaneseText":"りんご",
+ "englishUsText":"Apple",
+ "englishUsFontType":3,
+ "frenchText":"Pomme",
+ "frenchFontType":3,
+ "italianText":"Mela",
+ "italianFontType":3,
+ "germanText":"Apfel",
+ "germanFontType":3,
+ "spanishText":"Manzana",
+ "spanishFontType":3,
+ "chineseTText":"蘋果",
+ "chineseTFontType":1,
+ "koreanText":"사과",
+ "koreanFontType":2,
+ "portugueseText":"Maçã",
+ "portugueseFontType":2,
+ "russianText":"Яблоко",
+ "russianFontType":2,
+ "turkishText":"Elma",
+ "turkishFontType":2,
+ "arabicText":"التفاحة",
+ "arabicFontType":2,
+ "dutchText":"Appel",
+ "dutchFontType":2,
+ "chineseSText":"苹果",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_drum",
+ "japaneseText":"ドラムセット",
+ "englishUsText":"Drum Set",
+ "englishUsFontType":3,
+ "frenchText":"Set de batterie",
+ "frenchFontType":3,
+ "italianText":"Batteria",
+ "italianFontType":3,
+ "germanText":"Schlagzeug",
+ "germanFontType":3,
+ "spanishText":"Batería",
+ "spanishFontType":3,
+ "chineseTText":"爵士鼓組合",
+ "chineseTFontType":1,
+ "koreanText":"드럼 세트",
+ "koreanFontType":2,
+ "portugueseText":"Bateria",
+ "portugueseFontType":2,
+ "russianText":"Ударная установка",
+ "russianFontType":2,
+ "turkishText":"Bateri",
+ "turkishFontType":2,
+ "arabicText":"عدة الطبل",
+ "arabicFontType":2,
+ "dutchText":"Drumstel",
+ "dutchFontType":2,
+ "chineseSText":"爵士鼓组合",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_meat",
+ "japaneseText":"肉",
+ "englishUsText":"Meat",
+ "englishUsFontType":3,
+ "frenchText":"Viande",
+ "frenchFontType":3,
+ "italianText":"Carne",
+ "italianFontType":3,
+ "germanText":"Fleisch",
+ "germanFontType":3,
+ "spanishText":"Carne",
+ "spanishFontType":3,
+ "chineseTText":"肉",
+ "chineseTFontType":1,
+ "koreanText":"고기",
+ "koreanFontType":2,
+ "portugueseText":"Carne",
+ "portugueseFontType":2,
+ "russianText":"Мясо",
+ "russianFontType":2,
+ "turkishText":"Et",
+ "turkishFontType":2,
+ "arabicText":"اللحم",
+ "arabicFontType":2,
+ "dutchText":"Vlees",
+ "dutchFontType":2,
+ "chineseSText":"肉",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_treasureboat",
+ "japaneseText":"たからぶね",
+ "englishUsText":"Treasure Ship",
+ "englishUsFontType":3,
+ "frenchText":"Navire aux trésors",
+ "frenchFontType":3,
+ "italianText":"Nave del tesoro",
+ "italianFontType":3,
+ "germanText":"Schatzschiff",
+ "germanFontType":3,
+ "spanishText":"Barco del tesoro",
+ "spanishFontType":3,
+ "chineseTText":"寶藏船",
+ "chineseTFontType":1,
+ "koreanText":"보물선",
+ "koreanFontType":2,
+ "portugueseText":"Navio do tesouro",
+ "portugueseFontType":2,
+ "russianText":"Корабль сокровищ",
+ "russianFontType":2,
+ "turkishText":"Hazine Gemisi",
+ "turkishFontType":2,
+ "arabicText":"سفينة الكنز",
+ "arabicFontType":2,
+ "dutchText":"Schattenschip",
+ "dutchFontType":2,
+ "chineseSText":"宝藏船",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_ghost_kigurumi",
+ "japaneseText":"ゴースト",
+ "englishUsText":"Ghost",
+ "englishUsFontType":3,
+ "frenchText":"Fantôme",
+ "frenchFontType":3,
+ "italianText":"Fantasma",
+ "italianFontType":3,
+ "germanText":"Geist",
+ "germanFontType":3,
+ "spanishText":"Fantasma",
+ "spanishFontType":3,
+ "chineseTText":"鬼魂",
+ "chineseTFontType":1,
+ "koreanText":"고스트",
+ "koreanFontType":2,
+ "portugueseText":"Fantasma",
+ "portugueseFontType":2,
+ "russianText":"Призрак",
+ "russianFontType":2,
+ "turkishText":"Hayalet",
+ "turkishFontType":2,
+ "arabicText":"الشبح",
+ "arabicFontType":2,
+ "dutchText":"Spook",
+ "dutchFontType":2,
+ "chineseSText":"鬼魂",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_don",
+ "japaneseText":"どんちゃん",
+ "englishUsText":"DON-chan",
+ "englishUsFontType":3,
+ "frenchText":"DON-chan",
+ "frenchFontType":3,
+ "italianText":"DON-chan",
+ "italianFontType":3,
+ "germanText":"DON-chan",
+ "germanFontType":3,
+ "spanishText":"DON-chan",
+ "spanishFontType":3,
+ "chineseTText":"小咚",
+ "chineseTFontType":1,
+ "koreanText":"동이",
+ "koreanFontType":2,
+ "portugueseText":"DON-chan",
+ "portugueseFontType":2,
+ "russianText":"Дон-тян",
+ "russianFontType":2,
+ "turkishText":"DON-chan",
+ "turkishFontType":2,
+ "arabicText":"دون-تشان",
+ "arabicFontType":2,
+ "dutchText":"DON-chan",
+ "dutchFontType":2,
+ "chineseSText":"小咚",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_katsu",
+ "japaneseText":"かっちゃん",
+ "englishUsText":"KATSU-chan",
+ "englishUsFontType":3,
+ "frenchText":"KATSU-chan",
+ "frenchFontType":3,
+ "italianText":"KATSU-chan",
+ "italianFontType":3,
+ "germanText":"KATSU-chan",
+ "germanFontType":3,
+ "spanishText":"KATSU-chan",
+ "spanishFontType":3,
+ "chineseTText":"小咔",
+ "chineseTFontType":1,
+ "koreanText":"딱이",
+ "koreanFontType":2,
+ "portugueseText":"KATSU-chan",
+ "portugueseFontType":2,
+ "russianText":"Ка-тян",
+ "russianFontType":2,
+ "turkishText":"KATSU-chan",
+ "turkishFontType":2,
+ "arabicText":"كاتسو-تشان",
+ "arabicFontType":2,
+ "dutchText":"KATSU-chan",
+ "dutchFontType":2,
+ "chineseSText":"小咔",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_yellow_1",
+ "japaneseText":"きいろ1",
+ "englishUsText":"Yellow 1",
+ "englishUsFontType":3,
+ "frenchText":"Jaune 1",
+ "frenchFontType":3,
+ "italianText":"Giallo 1",
+ "italianFontType":3,
+ "germanText":"Gelb 1",
+ "germanFontType":3,
+ "spanishText":"Amarillo 1",
+ "spanishFontType":3,
+ "chineseTText":"黃色1",
+ "chineseTFontType":1,
+ "koreanText":"노란색 1",
+ "koreanFontType":2,
+ "portugueseText":"Amarelo 1",
+ "portugueseFontType":2,
+ "russianText":"Желтый 1",
+ "russianFontType":2,
+ "turkishText":"Sarı 1",
+ "turkishFontType":2,
+ "arabicText":"أصفر 1",
+ "arabicFontType":2,
+ "dutchText":"Geel 1",
+ "dutchFontType":2,
+ "chineseSText":"黄色1",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_yellow_2",
+ "japaneseText":"きいろ2",
+ "englishUsText":"Yellow 2",
+ "englishUsFontType":3,
+ "frenchText":"Jaune 2",
+ "frenchFontType":3,
+ "italianText":"Giallo 2",
+ "italianFontType":3,
+ "germanText":"Gelb 2",
+ "germanFontType":3,
+ "spanishText":"Amarillo 2",
+ "spanishFontType":3,
+ "chineseTText":"黃色2",
+ "chineseTFontType":1,
+ "koreanText":"노란색 2",
+ "koreanFontType":2,
+ "portugueseText":"Amarelo 2",
+ "portugueseFontType":2,
+ "russianText":"Желтый 2",
+ "russianFontType":2,
+ "turkishText":"Sarı 2",
+ "turkishFontType":2,
+ "arabicText":"أصفر 2",
+ "arabicFontType":2,
+ "dutchText":"Geel 2",
+ "dutchFontType":2,
+ "chineseSText":"黄色2",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_yellow_3",
+ "japaneseText":"きいろ3",
+ "englishUsText":"Yellow 3",
+ "englishUsFontType":3,
+ "frenchText":"Jaune 3",
+ "frenchFontType":3,
+ "italianText":"Giallo 3",
+ "italianFontType":3,
+ "germanText":"Gelb 3",
+ "germanFontType":3,
+ "spanishText":"Amarillo 3",
+ "spanishFontType":3,
+ "chineseTText":"黃色3",
+ "chineseTFontType":1,
+ "koreanText":"노란색 3",
+ "koreanFontType":2,
+ "portugueseText":"Amarelo 3",
+ "portugueseFontType":2,
+ "russianText":"Желтый 3",
+ "russianFontType":2,
+ "turkishText":"Sarı 3",
+ "turkishFontType":2,
+ "arabicText":"أصفر 3",
+ "arabicFontType":2,
+ "dutchText":"Geel 3",
+ "dutchFontType":2,
+ "chineseSText":"黄色3",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_yellow_4",
+ "japaneseText":"きいろ4",
+ "englishUsText":"Yellow 4",
+ "englishUsFontType":3,
+ "frenchText":"Jaune 4",
+ "frenchFontType":3,
+ "italianText":"Giallo 4",
+ "italianFontType":3,
+ "germanText":"Gelb 4",
+ "germanFontType":3,
+ "spanishText":"Amarillo 4",
+ "spanishFontType":3,
+ "chineseTText":"黃色4",
+ "chineseTFontType":1,
+ "koreanText":"노란색 4",
+ "koreanFontType":2,
+ "portugueseText":"Amarelo 4",
+ "portugueseFontType":2,
+ "russianText":"Желтый 4",
+ "russianFontType":2,
+ "turkishText":"Sarı 4",
+ "turkishFontType":2,
+ "arabicText":"أصفر 4",
+ "arabicFontType":2,
+ "dutchText":"Geel 4",
+ "dutchFontType":2,
+ "chineseSText":"黄色4",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_yellow_5",
+ "japaneseText":"きいろ5",
+ "englishUsText":"Yellow 5",
+ "englishUsFontType":3,
+ "frenchText":"Jaune 5",
+ "frenchFontType":3,
+ "italianText":"Giallo 5",
+ "italianFontType":3,
+ "germanText":"Gelb 5",
+ "germanFontType":3,
+ "spanishText":"Amarillo 5",
+ "spanishFontType":3,
+ "chineseTText":"黃色5",
+ "chineseTFontType":1,
+ "koreanText":"노란색 5",
+ "koreanFontType":2,
+ "portugueseText":"Amarelo 5",
+ "portugueseFontType":2,
+ "russianText":"Желтый 5",
+ "russianFontType":2,
+ "turkishText":"Sarı 5",
+ "turkishFontType":2,
+ "arabicText":"أصفر 5",
+ "arabicFontType":2,
+ "dutchText":"Geel 5",
+ "dutchFontType":2,
+ "chineseSText":"黄色5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_l_green_1",
+ "japaneseText":"きみどり1",
+ "englishUsText":"Greenish-Yellow 1",
+ "englishUsFontType":3,
+ "frenchText":"Vert-jaune 1",
+ "frenchFontType":3,
+ "italianText":"Giallo verde 1",
+ "italianFontType":3,
+ "germanText":"Erbsengrün 1",
+ "germanFontType":3,
+ "spanishText":"Amarillo verdoso 1",
+ "spanishFontType":3,
+ "chineseTText":"黃綠色1",
+ "chineseTFontType":1,
+ "koreanText":"연두색 1",
+ "koreanFontType":2,
+ "portugueseText":"Verde-limão 1",
+ "portugueseFontType":2,
+ "russianText":"Желто-зеленый 1",
+ "russianFontType":2,
+ "turkishText":"Yeşilimsi Sarı 1",
+ "turkishFontType":2,
+ "arabicText":"أصفر مائل للأخضر 1",
+ "arabicFontType":2,
+ "dutchText":"Groengeel 1",
+ "dutchFontType":2,
+ "chineseSText":"黄绿色1",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_l_green_2",
+ "japaneseText":"きみどり2",
+ "englishUsText":"Greenish-Yellow 2",
+ "englishUsFontType":3,
+ "frenchText":"Vert-jaune 2",
+ "frenchFontType":3,
+ "italianText":"Giallo verde 2",
+ "italianFontType":3,
+ "germanText":"Erbsengrün 2",
+ "germanFontType":3,
+ "spanishText":"Amarillo verdoso 2",
+ "spanishFontType":3,
+ "chineseTText":"黃綠色2",
+ "chineseTFontType":1,
+ "koreanText":"연두색 2",
+ "koreanFontType":2,
+ "portugueseText":"Verde-limão 2",
+ "portugueseFontType":2,
+ "russianText":"Желто-зеленый 2",
+ "russianFontType":2,
+ "turkishText":"Yeşilimsi Sarı 2",
+ "turkishFontType":2,
+ "arabicText":"أصفر مائل للأخضر 2",
+ "arabicFontType":2,
+ "dutchText":"Groengeel 2",
+ "dutchFontType":2,
+ "chineseSText":"黄绿色2",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_l_green_3",
+ "japaneseText":"きみどり3",
+ "englishUsText":"Greenish-Yellow 3",
+ "englishUsFontType":3,
+ "frenchText":"Vert-jaune 3",
+ "frenchFontType":3,
+ "italianText":"Giallo verde 3",
+ "italianFontType":3,
+ "germanText":"Erbsengrün 3",
+ "germanFontType":3,
+ "spanishText":"Amarillo verdoso 3",
+ "spanishFontType":3,
+ "chineseTText":"黃綠色3",
+ "chineseTFontType":1,
+ "koreanText":"연두색 3",
+ "koreanFontType":2,
+ "portugueseText":"Verde-limão 3",
+ "portugueseFontType":2,
+ "russianText":"Желто-зеленый 3",
+ "russianFontType":2,
+ "turkishText":"Yeşilimsi Sarı 3",
+ "turkishFontType":2,
+ "arabicText":"أصفر مائل للأخضر 3",
+ "arabicFontType":2,
+ "dutchText":"Groengeel 3",
+ "dutchFontType":2,
+ "chineseSText":"黄绿色3",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_l_green_4",
+ "japaneseText":"きみどり4",
+ "englishUsText":"Greenish-Yellow 4",
+ "englishUsFontType":3,
+ "frenchText":"Vert-jaune 4",
+ "frenchFontType":3,
+ "italianText":"Giallo verde 4",
+ "italianFontType":3,
+ "germanText":"Erbsengrün 4",
+ "germanFontType":3,
+ "spanishText":"Amarillo verdoso 4",
+ "spanishFontType":3,
+ "chineseTText":"黃綠色4",
+ "chineseTFontType":1,
+ "koreanText":"연두색 4",
+ "koreanFontType":2,
+ "portugueseText":"Verde-limão 4",
+ "portugueseFontType":2,
+ "russianText":"Желто-зеленый 4",
+ "russianFontType":2,
+ "turkishText":"Yeşilimsi Sarı 4",
+ "turkishFontType":2,
+ "arabicText":"أصفر مائل للأخضر 4",
+ "arabicFontType":2,
+ "dutchText":"Groengeel 4",
+ "dutchFontType":2,
+ "chineseSText":"黄绿色4",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_l_green_5",
+ "japaneseText":"きみどり5",
+ "englishUsText":"Greenish-Yellow 5",
+ "englishUsFontType":3,
+ "frenchText":"Vert-jaune 5",
+ "frenchFontType":3,
+ "italianText":"Giallo verde 5",
+ "italianFontType":3,
+ "germanText":"Erbsengrün 5",
+ "germanFontType":3,
+ "spanishText":"Amarillo verdoso 5",
+ "spanishFontType":3,
+ "chineseTText":"黃綠色5",
+ "chineseTFontType":1,
+ "koreanText":"연두색 5",
+ "koreanFontType":2,
+ "portugueseText":"Verde-limão 5",
+ "portugueseFontType":2,
+ "russianText":"Желто-зеленый 5",
+ "russianFontType":2,
+ "turkishText":"Yeşilimsi Sarı 5",
+ "turkishFontType":2,
+ "arabicText":"أصفر مائل للأخضر 5",
+ "arabicFontType":2,
+ "dutchText":"Groengeel 5",
+ "dutchFontType":2,
+ "chineseSText":"黄绿色5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_green_1",
+ "japaneseText":"みどり1",
+ "englishUsText":"Green 1",
+ "englishUsFontType":3,
+ "frenchText":"Vert 1",
+ "frenchFontType":3,
+ "italianText":"Verde 1",
+ "italianFontType":3,
+ "germanText":"Grün 1",
+ "germanFontType":3,
+ "spanishText":"Verde 1",
+ "spanishFontType":3,
+ "chineseTText":"綠色1",
+ "chineseTFontType":1,
+ "koreanText":"초록색 1",
+ "koreanFontType":2,
+ "portugueseText":"Verde 1",
+ "portugueseFontType":2,
+ "russianText":"Зеленый 1",
+ "russianFontType":2,
+ "turkishText":"Yeşil 1",
+ "turkishFontType":2,
+ "arabicText":"أخضر 1",
+ "arabicFontType":2,
+ "dutchText":"Groen 1",
+ "dutchFontType":2,
+ "chineseSText":"绿色1",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_green_2",
+ "japaneseText":"みどり2",
+ "englishUsText":"Green 2",
+ "englishUsFontType":3,
+ "frenchText":"Vert 2",
+ "frenchFontType":3,
+ "italianText":"Verde 2",
+ "italianFontType":3,
+ "germanText":"Grün 2",
+ "germanFontType":3,
+ "spanishText":"Verde 2",
+ "spanishFontType":3,
+ "chineseTText":"綠色2",
+ "chineseTFontType":1,
+ "koreanText":"초록색 2",
+ "koreanFontType":2,
+ "portugueseText":"Verde 2",
+ "portugueseFontType":2,
+ "russianText":"Зеленый 2",
+ "russianFontType":2,
+ "turkishText":"Yeşil 2",
+ "turkishFontType":2,
+ "arabicText":"أخضر 2",
+ "arabicFontType":2,
+ "dutchText":"Groen 2",
+ "dutchFontType":2,
+ "chineseSText":"绿色2",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_green_3",
+ "japaneseText":"みどり3",
+ "englishUsText":"Green 3",
+ "englishUsFontType":3,
+ "frenchText":"Vert 3",
+ "frenchFontType":3,
+ "italianText":"Verde 3",
+ "italianFontType":3,
+ "germanText":"Grün 3",
+ "germanFontType":3,
+ "spanishText":"Verde 3",
+ "spanishFontType":3,
+ "chineseTText":"綠色3",
+ "chineseTFontType":1,
+ "koreanText":"초록색 3",
+ "koreanFontType":2,
+ "portugueseText":"Verde 3",
+ "portugueseFontType":2,
+ "russianText":"Зеленый 3",
+ "russianFontType":2,
+ "turkishText":"Yeşil 3",
+ "turkishFontType":2,
+ "arabicText":"أخضر 3",
+ "arabicFontType":2,
+ "dutchText":"Groen 3",
+ "dutchFontType":2,
+ "chineseSText":"绿色3",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_green_4",
+ "japaneseText":"みどり4",
+ "englishUsText":"Green 4",
+ "englishUsFontType":3,
+ "frenchText":"Vert 4",
+ "frenchFontType":3,
+ "italianText":"Verde 4",
+ "italianFontType":3,
+ "germanText":"Grün 4",
+ "germanFontType":3,
+ "spanishText":"Verde 4",
+ "spanishFontType":3,
+ "chineseTText":"綠色4",
+ "chineseTFontType":1,
+ "koreanText":"초록색 4",
+ "koreanFontType":2,
+ "portugueseText":"Verde 4",
+ "portugueseFontType":2,
+ "russianText":"Зеленый 4",
+ "russianFontType":2,
+ "turkishText":"Yeşil 4",
+ "turkishFontType":2,
+ "arabicText":"أخضر 4",
+ "arabicFontType":2,
+ "dutchText":"Groen 4",
+ "dutchFontType":2,
+ "chineseSText":"绿色4",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_green_5",
+ "japaneseText":"みどり5",
+ "englishUsText":"Green 5",
+ "englishUsFontType":3,
+ "frenchText":"Vert 5",
+ "frenchFontType":3,
+ "italianText":"Verde 5",
+ "italianFontType":3,
+ "germanText":"Grün 5",
+ "germanFontType":3,
+ "spanishText":"Verde 5",
+ "spanishFontType":3,
+ "chineseTText":"綠色5",
+ "chineseTFontType":1,
+ "koreanText":"초록색 5",
+ "koreanFontType":2,
+ "portugueseText":"Verde 5",
+ "portugueseFontType":2,
+ "russianText":"Зеленый 5",
+ "russianFontType":2,
+ "turkishText":"Yeşil 5",
+ "turkishFontType":2,
+ "arabicText":"أخضر 5",
+ "arabicFontType":2,
+ "dutchText":"Groen 5",
+ "dutchFontType":2,
+ "chineseSText":"绿色5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_sky_1",
+ "japaneseText":"みずいろ1",
+ "englishUsText":"Aquamarine 1",
+ "englishUsFontType":3,
+ "frenchText":"Bleu clair 1",
+ "frenchFontType":3,
+ "italianText":"Azzurro 1",
+ "italianFontType":3,
+ "germanText":"Hellblau 1",
+ "germanFontType":3,
+ "spanishText":"Azul claro 1",
+ "spanishFontType":3,
+ "chineseTText":"水藍色1",
+ "chineseTFontType":1,
+ "koreanText":"하늘색 1",
+ "koreanFontType":2,
+ "portugueseText":"Azul celeste 1",
+ "portugueseFontType":2,
+ "russianText":"Голубой 1",
+ "russianFontType":2,
+ "turkishText":"Mavimsi Yeşil 1",
+ "turkishFontType":2,
+ "arabicText":"أزرق مائل للأخضر 1",
+ "arabicFontType":2,
+ "dutchText":"Aquamarijn 1",
+ "dutchFontType":2,
+ "chineseSText":"水蓝色1",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_sky_2",
+ "japaneseText":"みずいろ2",
+ "englishUsText":"Aquamarine 2",
+ "englishUsFontType":3,
+ "frenchText":"Bleu clair 2",
+ "frenchFontType":3,
+ "italianText":"Azzurro 2",
+ "italianFontType":3,
+ "germanText":"Hellblau 2",
+ "germanFontType":3,
+ "spanishText":"Azul claro 2",
+ "spanishFontType":3,
+ "chineseTText":"水藍色2",
+ "chineseTFontType":1,
+ "koreanText":"하늘색 2",
+ "koreanFontType":2,
+ "portugueseText":"Azul celeste 2",
+ "portugueseFontType":2,
+ "russianText":"Голубой 2",
+ "russianFontType":2,
+ "turkishText":"Mavimsi Yeşil 2",
+ "turkishFontType":2,
+ "arabicText":"أزرق مائل للأخضر 2",
+ "arabicFontType":2,
+ "dutchText":"Aquamarijn 2",
+ "dutchFontType":2,
+ "chineseSText":"水蓝色2",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_sky_3",
+ "japaneseText":"みずいろ3",
+ "englishUsText":"Aquamarine 3",
+ "englishUsFontType":3,
+ "frenchText":"Bleu clair 3",
+ "frenchFontType":3,
+ "italianText":"Azzurro 3",
+ "italianFontType":3,
+ "germanText":"Hellblau 3",
+ "germanFontType":3,
+ "spanishText":"Azul claro 3",
+ "spanishFontType":3,
+ "chineseTText":"水藍色3",
+ "chineseTFontType":1,
+ "koreanText":"하늘색 3",
+ "koreanFontType":2,
+ "portugueseText":"Azul celeste 3",
+ "portugueseFontType":2,
+ "russianText":"Голубой 3",
+ "russianFontType":2,
+ "turkishText":"Mavimsi Yeşil 3",
+ "turkishFontType":2,
+ "arabicText":"أزرق مائل للأخضر 3",
+ "arabicFontType":2,
+ "dutchText":"Aquamarijn 3",
+ "dutchFontType":2,
+ "chineseSText":"水蓝色3",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_sky_4",
+ "japaneseText":"みずいろ4",
+ "englishUsText":"Aquamarine 4",
+ "englishUsFontType":3,
+ "frenchText":"Bleu clair 4",
+ "frenchFontType":3,
+ "italianText":"Azzurro 4",
+ "italianFontType":3,
+ "germanText":"Hellblau 4",
+ "germanFontType":3,
+ "spanishText":"Azul claro 4",
+ "spanishFontType":3,
+ "chineseTText":"水藍色4",
+ "chineseTFontType":1,
+ "koreanText":"하늘색 4",
+ "koreanFontType":2,
+ "portugueseText":"Azul celeste 4",
+ "portugueseFontType":2,
+ "russianText":"Голубой 4",
+ "russianFontType":2,
+ "turkishText":"Mavimsi Yeşil 4",
+ "turkishFontType":2,
+ "arabicText":"أزرق مائل للأخضر 4",
+ "arabicFontType":2,
+ "dutchText":"Aquamarijn 4",
+ "dutchFontType":2,
+ "chineseSText":"水蓝色4",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_sky_5",
+ "japaneseText":"みずいろ5",
+ "englishUsText":"Aquamarine 5",
+ "englishUsFontType":3,
+ "frenchText":"Bleu clair 5",
+ "frenchFontType":3,
+ "italianText":"Azzurro 5",
+ "italianFontType":3,
+ "germanText":"Hellblau 5",
+ "germanFontType":3,
+ "spanishText":"Azul claro 5",
+ "spanishFontType":3,
+ "chineseTText":"水藍色5",
+ "chineseTFontType":1,
+ "koreanText":"하늘색 5",
+ "koreanFontType":2,
+ "portugueseText":"Azul celeste 5",
+ "portugueseFontType":2,
+ "russianText":"Голубой 5",
+ "russianFontType":2,
+ "turkishText":"Mavimsi Yeşil 5",
+ "turkishFontType":2,
+ "arabicText":"أزرق مائل للأخضر 5",
+ "arabicFontType":2,
+ "dutchText":"Aquamarijn 5",
+ "dutchFontType":2,
+ "chineseSText":"水蓝色5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_blue_1",
+ "japaneseText":"あお1",
+ "englishUsText":"Blue 1",
+ "englishUsFontType":3,
+ "frenchText":"Bleu 1",
+ "frenchFontType":3,
+ "italianText":"Blu 1",
+ "italianFontType":3,
+ "germanText":"Blau 1",
+ "germanFontType":3,
+ "spanishText":"Azul 1",
+ "spanishFontType":3,
+ "chineseTText":"藍色1",
+ "chineseTFontType":1,
+ "koreanText":"파란색 1",
+ "koreanFontType":2,
+ "portugueseText":"Azul 1",
+ "portugueseFontType":2,
+ "russianText":"Синий 1",
+ "russianFontType":2,
+ "turkishText":"Mavi 1",
+ "turkishFontType":2,
+ "arabicText":"أزرق 1",
+ "arabicFontType":2,
+ "dutchText":"Blauw 1",
+ "dutchFontType":2,
+ "chineseSText":"蓝色1",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_blue_2",
+ "japaneseText":"あお2",
+ "englishUsText":"Blue 2",
+ "englishUsFontType":3,
+ "frenchText":"Bleu 2",
+ "frenchFontType":3,
+ "italianText":"Blu 2",
+ "italianFontType":3,
+ "germanText":"Blau 2",
+ "germanFontType":3,
+ "spanishText":"Azul 2",
+ "spanishFontType":3,
+ "chineseTText":"藍色2",
+ "chineseTFontType":1,
+ "koreanText":"파란색 2",
+ "koreanFontType":2,
+ "portugueseText":"Azul 2",
+ "portugueseFontType":2,
+ "russianText":"Синий 2",
+ "russianFontType":2,
+ "turkishText":"Mavi 2",
+ "turkishFontType":2,
+ "arabicText":"أزرق 2",
+ "arabicFontType":2,
+ "dutchText":"Blauw 2",
+ "dutchFontType":2,
+ "chineseSText":"蓝色2",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_blue_3",
+ "japaneseText":"あお3",
+ "englishUsText":"Blue 3",
+ "englishUsFontType":3,
+ "frenchText":"Bleu 3",
+ "frenchFontType":3,
+ "italianText":"Blu 3",
+ "italianFontType":3,
+ "germanText":"Blau 3",
+ "germanFontType":3,
+ "spanishText":"Azul 3",
+ "spanishFontType":3,
+ "chineseTText":"藍色3",
+ "chineseTFontType":1,
+ "koreanText":"파란색 3",
+ "koreanFontType":2,
+ "portugueseText":"Azul 3",
+ "portugueseFontType":2,
+ "russianText":"Синий 3",
+ "russianFontType":2,
+ "turkishText":"Mavi 3",
+ "turkishFontType":2,
+ "arabicText":"أزرق 3",
+ "arabicFontType":2,
+ "dutchText":"Blauw 3",
+ "dutchFontType":2,
+ "chineseSText":"蓝色3",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_blue_4",
+ "japaneseText":"あお4",
+ "englishUsText":"Blue 4",
+ "englishUsFontType":3,
+ "frenchText":"Bleu 4",
+ "frenchFontType":3,
+ "italianText":"Blu 4",
+ "italianFontType":3,
+ "germanText":"Blau 4",
+ "germanFontType":3,
+ "spanishText":"Azul 4",
+ "spanishFontType":3,
+ "chineseTText":"藍色4",
+ "chineseTFontType":1,
+ "koreanText":"파란색 4",
+ "koreanFontType":2,
+ "portugueseText":"Azul 4",
+ "portugueseFontType":2,
+ "russianText":"Синий 4",
+ "russianFontType":2,
+ "turkishText":"Mavi 4",
+ "turkishFontType":2,
+ "arabicText":"أزرق 4",
+ "arabicFontType":2,
+ "dutchText":"Blauw 4",
+ "dutchFontType":2,
+ "chineseSText":"蓝色4",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_blue_5",
+ "japaneseText":"あお5",
+ "englishUsText":"Blue 5",
+ "englishUsFontType":3,
+ "frenchText":"Bleu 5",
+ "frenchFontType":3,
+ "italianText":"Blu 5",
+ "italianFontType":3,
+ "germanText":"Blau 5",
+ "germanFontType":3,
+ "spanishText":"Azul 5",
+ "spanishFontType":3,
+ "chineseTText":"藍色5",
+ "chineseTFontType":1,
+ "koreanText":"파란색 5",
+ "koreanFontType":2,
+ "portugueseText":"Azul 5",
+ "portugueseFontType":2,
+ "russianText":"Синий 5",
+ "russianFontType":2,
+ "turkishText":"Mavi 5",
+ "turkishFontType":2,
+ "arabicText":"أزرق 5",
+ "arabicFontType":2,
+ "dutchText":"Blauw 5",
+ "dutchFontType":2,
+ "chineseSText":"蓝色5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_purple_1",
+ "japaneseText":"むらさき1",
+ "englishUsText":"Purple 1",
+ "englishUsFontType":3,
+ "frenchText":"Violet 1",
+ "frenchFontType":3,
+ "italianText":"Viola 1",
+ "italianFontType":3,
+ "germanText":"Lila 1",
+ "germanFontType":3,
+ "spanishText":"Púrpura 1",
+ "spanishFontType":3,
+ "chineseTText":"紫色1",
+ "chineseTFontType":1,
+ "koreanText":"보라색 1",
+ "koreanFontType":2,
+ "portugueseText":"Lilás 1",
+ "portugueseFontType":2,
+ "russianText":"Фиолетовый 1",
+ "russianFontType":2,
+ "turkishText":"Mor 1",
+ "turkishFontType":2,
+ "arabicText":"أرجواني 1",
+ "arabicFontType":2,
+ "dutchText":"Paars 1",
+ "dutchFontType":2,
+ "chineseSText":"紫色1",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_purple_2",
+ "japaneseText":"むらさき2",
+ "englishUsText":"Purple 2",
+ "englishUsFontType":3,
+ "frenchText":"Violet 2",
+ "frenchFontType":3,
+ "italianText":"Viola 2",
+ "italianFontType":3,
+ "germanText":"Lila 2",
+ "germanFontType":3,
+ "spanishText":"Púrpura 2",
+ "spanishFontType":3,
+ "chineseTText":"紫色2",
+ "chineseTFontType":1,
+ "koreanText":"보라색 2",
+ "koreanFontType":2,
+ "portugueseText":"Lilás 2",
+ "portugueseFontType":2,
+ "russianText":"Фиолетовый 2",
+ "russianFontType":2,
+ "turkishText":"Mor 2",
+ "turkishFontType":2,
+ "arabicText":"أرجواني 2",
+ "arabicFontType":2,
+ "dutchText":"Paars 2",
+ "dutchFontType":2,
+ "chineseSText":"紫色2",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_purple_3",
+ "japaneseText":"むらさき3",
+ "englishUsText":"Purple 3",
+ "englishUsFontType":3,
+ "frenchText":"Violet 3",
+ "frenchFontType":3,
+ "italianText":"Viola 3",
+ "italianFontType":3,
+ "germanText":"Lila 3",
+ "germanFontType":3,
+ "spanishText":"Púrpura 3",
+ "spanishFontType":3,
+ "chineseTText":"紫色3",
+ "chineseTFontType":1,
+ "koreanText":"보라색 3",
+ "koreanFontType":2,
+ "portugueseText":"Lilás 3",
+ "portugueseFontType":2,
+ "russianText":"Фиолетовый 3",
+ "russianFontType":2,
+ "turkishText":"Mor 3",
+ "turkishFontType":2,
+ "arabicText":"أرجواني 3",
+ "arabicFontType":2,
+ "dutchText":"Paars 3",
+ "dutchFontType":2,
+ "chineseSText":"紫色3",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_purple_4",
+ "japaneseText":"むらさき4",
+ "englishUsText":"Purple 4",
+ "englishUsFontType":3,
+ "frenchText":"Violet 4",
+ "frenchFontType":3,
+ "italianText":"Viola 4",
+ "italianFontType":3,
+ "germanText":"Lila 4",
+ "germanFontType":3,
+ "spanishText":"Púrpura 4",
+ "spanishFontType":3,
+ "chineseTText":"紫色4",
+ "chineseTFontType":1,
+ "koreanText":"보라색 4",
+ "koreanFontType":2,
+ "portugueseText":"Lilás 4",
+ "portugueseFontType":2,
+ "russianText":"Фиолетовый 4",
+ "russianFontType":2,
+ "turkishText":"Mor 4",
+ "turkishFontType":2,
+ "arabicText":"أرجواني 4",
+ "arabicFontType":2,
+ "dutchText":"Paars 4",
+ "dutchFontType":2,
+ "chineseSText":"紫色4",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_purple_5",
+ "japaneseText":"むらさき5",
+ "englishUsText":"Purple 5",
+ "englishUsFontType":3,
+ "frenchText":"Violet 5",
+ "frenchFontType":3,
+ "italianText":"Viola 5",
+ "italianFontType":3,
+ "germanText":"Lila 5",
+ "germanFontType":3,
+ "spanishText":"Púrpura 5",
+ "spanishFontType":3,
+ "chineseTText":"紫色5",
+ "chineseTFontType":1,
+ "koreanText":"보라색 5",
+ "koreanFontType":2,
+ "portugueseText":"Lilás 5",
+ "portugueseFontType":2,
+ "russianText":"Фиолетовый 5",
+ "russianFontType":2,
+ "turkishText":"Mor 5",
+ "turkishFontType":2,
+ "arabicText":"أرجواني 5",
+ "arabicFontType":2,
+ "dutchText":"Paars 5",
+ "dutchFontType":2,
+ "chineseSText":"紫色5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_r_purple_1",
+ "japaneseText":"あかむらさき1",
+ "englishUsText":"Burgundy 1",
+ "englishUsFontType":3,
+ "frenchText":"Rouge-violet 1",
+ "frenchFontType":3,
+ "italianText":"Magenta 1",
+ "italianFontType":3,
+ "germanText":"Tiefpurpur 1",
+ "germanFontType":3,
+ "spanishText":"Bermellón 1",
+ "spanishFontType":3,
+ "chineseTText":"紫紅色1",
+ "chineseTFontType":1,
+ "koreanText":"자홍색 1",
+ "koreanFontType":2,
+ "portugueseText":"Vinho 1",
+ "portugueseFontType":2,
+ "russianText":"Бордовый 1",
+ "russianFontType":2,
+ "turkishText":"Bordo 1",
+ "turkishFontType":2,
+ "arabicText":"خمري 1",
+ "arabicFontType":2,
+ "dutchText":"Bordeauxrood 1",
+ "dutchFontType":2,
+ "chineseSText":"紫红色1",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_r_purple_2",
+ "japaneseText":"あかむらさき2",
+ "englishUsText":"Burgundy 2",
+ "englishUsFontType":3,
+ "frenchText":"Rouge-violet 2",
+ "frenchFontType":3,
+ "italianText":"Magenta 2",
+ "italianFontType":3,
+ "germanText":"Tiefpurpur 2",
+ "germanFontType":3,
+ "spanishText":"Bermellón 2",
+ "spanishFontType":3,
+ "chineseTText":"紫紅色2",
+ "chineseTFontType":1,
+ "koreanText":"자홍색 2",
+ "koreanFontType":2,
+ "portugueseText":"Vinho 2",
+ "portugueseFontType":2,
+ "russianText":"Бордовый 2",
+ "russianFontType":2,
+ "turkishText":"Bordo 2",
+ "turkishFontType":2,
+ "arabicText":"خمري 2",
+ "arabicFontType":2,
+ "dutchText":"Bordeauxrood 2",
+ "dutchFontType":2,
+ "chineseSText":"紫红色2",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_r_purple_3",
+ "japaneseText":"あかむらさき3",
+ "englishUsText":"Burgundy 3",
+ "englishUsFontType":3,
+ "frenchText":"Rouge-violet 3",
+ "frenchFontType":3,
+ "italianText":"Magenta 3",
+ "italianFontType":3,
+ "germanText":"Tiefpurpur 3",
+ "germanFontType":3,
+ "spanishText":"Bermellón 3",
+ "spanishFontType":3,
+ "chineseTText":"紫紅色3",
+ "chineseTFontType":1,
+ "koreanText":"자홍색 3",
+ "koreanFontType":2,
+ "portugueseText":"Vinho 3",
+ "portugueseFontType":2,
+ "russianText":"Бордовый 3",
+ "russianFontType":2,
+ "turkishText":"Bordo 3",
+ "turkishFontType":2,
+ "arabicText":"خمري 3",
+ "arabicFontType":2,
+ "dutchText":"Bordeauxrood 3",
+ "dutchFontType":2,
+ "chineseSText":"紫红色3",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_r_purple_4",
+ "japaneseText":"あかむらさき4",
+ "englishUsText":"Burgundy 4",
+ "englishUsFontType":3,
+ "frenchText":"Rouge-violet 4",
+ "frenchFontType":3,
+ "italianText":"Magenta 4",
+ "italianFontType":3,
+ "germanText":"Tiefpurpur 4",
+ "germanFontType":3,
+ "spanishText":"Bermellón 4",
+ "spanishFontType":3,
+ "chineseTText":"紫紅色4",
+ "chineseTFontType":1,
+ "koreanText":"자홍색 4",
+ "koreanFontType":2,
+ "portugueseText":"Vinho 4",
+ "portugueseFontType":2,
+ "russianText":"Бордовый 4",
+ "russianFontType":2,
+ "turkishText":"Bordo 4",
+ "turkishFontType":2,
+ "arabicText":"بورغندي 4",
+ "arabicFontType":2,
+ "dutchText":"Bordeauxrood 4",
+ "dutchFontType":2,
+ "chineseSText":"紫红色4",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_r_purple_5",
+ "japaneseText":"あかむらさき5",
+ "englishUsText":"Burgundy 5",
+ "englishUsFontType":3,
+ "frenchText":"Rouge-violet 5",
+ "frenchFontType":3,
+ "italianText":"Magenta 5",
+ "italianFontType":3,
+ "germanText":"Tiefpurpur 5",
+ "germanFontType":3,
+ "spanishText":"Bermellón 5",
+ "spanishFontType":3,
+ "chineseTText":"紫紅色5",
+ "chineseTFontType":1,
+ "koreanText":"자홍색 5",
+ "koreanFontType":2,
+ "portugueseText":"Vinho 5",
+ "portugueseFontType":2,
+ "russianText":"Бордовый 5",
+ "russianFontType":2,
+ "turkishText":"Bordo 5",
+ "turkishFontType":2,
+ "arabicText":"خمري 5",
+ "arabicFontType":2,
+ "dutchText":"Bordeauxrood 5",
+ "dutchFontType":2,
+ "chineseSText":"紫红色5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_pink_1",
+ "japaneseText":"ももいろ1",
+ "englishUsText":"Pink 1",
+ "englishUsFontType":3,
+ "frenchText":"Rose 1",
+ "frenchFontType":3,
+ "italianText":"Rosa 1",
+ "italianFontType":3,
+ "germanText":"Rosa 1",
+ "germanFontType":3,
+ "spanishText":"Rosita 1",
+ "spanishFontType":3,
+ "chineseTText":"桃色1",
+ "chineseTFontType":1,
+ "koreanText":"분홍색 1",
+ "koreanFontType":2,
+ "portugueseText":"Rosa 1",
+ "portugueseFontType":2,
+ "russianText":"Розовый 1",
+ "russianFontType":2,
+ "turkishText":"Pembe 1",
+ "turkishFontType":2,
+ "arabicText":"وردي 1",
+ "arabicFontType":2,
+ "dutchText":"Roze 1",
+ "dutchFontType":2,
+ "chineseSText":"桃色1",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_pink_2",
+ "japaneseText":"ももいろ2",
+ "englishUsText":"Pink 2",
+ "englishUsFontType":3,
+ "frenchText":"Rose 2",
+ "frenchFontType":3,
+ "italianText":"Rosa 2",
+ "italianFontType":3,
+ "germanText":"Rosa 2",
+ "germanFontType":3,
+ "spanishText":"Rosita 2",
+ "spanishFontType":3,
+ "chineseTText":"桃色2",
+ "chineseTFontType":1,
+ "koreanText":"분홍색 2",
+ "koreanFontType":2,
+ "portugueseText":"Rosa 2",
+ "portugueseFontType":2,
+ "russianText":"Розовый 2",
+ "russianFontType":2,
+ "turkishText":"Pembe 2",
+ "turkishFontType":2,
+ "arabicText":"وردي 2",
+ "arabicFontType":2,
+ "dutchText":"Roze 2",
+ "dutchFontType":2,
+ "chineseSText":"桃色2",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_pink_3",
+ "japaneseText":"ももいろ3",
+ "englishUsText":"Pink 3",
+ "englishUsFontType":3,
+ "frenchText":"Rose 3",
+ "frenchFontType":3,
+ "italianText":"Rosa 3",
+ "italianFontType":3,
+ "germanText":"Rosa 3",
+ "germanFontType":3,
+ "spanishText":"Rosita 3",
+ "spanishFontType":3,
+ "chineseTText":"桃色3",
+ "chineseTFontType":1,
+ "koreanText":"분홍색 3",
+ "koreanFontType":2,
+ "portugueseText":"Rosa 3",
+ "portugueseFontType":2,
+ "russianText":"Розовый 3",
+ "russianFontType":2,
+ "turkishText":"Pembe 3",
+ "turkishFontType":2,
+ "arabicText":"وردي 3",
+ "arabicFontType":2,
+ "dutchText":"Roze 3",
+ "dutchFontType":2,
+ "chineseSText":"桃色3",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_pink_4",
+ "japaneseText":"ももいろ4",
+ "englishUsText":"Pink 4",
+ "englishUsFontType":3,
+ "frenchText":"Rose 4",
+ "frenchFontType":3,
+ "italianText":"Rosa 4",
+ "italianFontType":3,
+ "germanText":"Rosa 4",
+ "germanFontType":3,
+ "spanishText":"Rosita 4",
+ "spanishFontType":3,
+ "chineseTText":"桃色4",
+ "chineseTFontType":1,
+ "koreanText":"분홍색 4",
+ "koreanFontType":2,
+ "portugueseText":"Rosa 4",
+ "portugueseFontType":2,
+ "russianText":"Розовый 4",
+ "russianFontType":2,
+ "turkishText":"Pembe 4",
+ "turkishFontType":2,
+ "arabicText":"وردي 4",
+ "arabicFontType":2,
+ "dutchText":"Roze 4",
+ "dutchFontType":2,
+ "chineseSText":"桃色4",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_pink_5",
+ "japaneseText":"ももいろ5",
+ "englishUsText":"Pink 5",
+ "englishUsFontType":3,
+ "frenchText":"Rose 5",
+ "frenchFontType":3,
+ "italianText":"Rosa 5",
+ "italianFontType":3,
+ "germanText":"Rosa 5",
+ "germanFontType":3,
+ "spanishText":"Rosita 5",
+ "spanishFontType":3,
+ "chineseTText":"桃色5",
+ "chineseTFontType":1,
+ "koreanText":"분홍색 5",
+ "koreanFontType":2,
+ "portugueseText":"Rosa 5",
+ "portugueseFontType":2,
+ "russianText":"Розовый 5",
+ "russianFontType":2,
+ "turkishText":"Pembe 5",
+ "turkishFontType":2,
+ "arabicText":"وردي 5",
+ "arabicFontType":2,
+ "dutchText":"Roze 5",
+ "dutchFontType":2,
+ "chineseSText":"桃色5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_red_1",
+ "japaneseText":"あか1",
+ "englishUsText":"Red 1",
+ "englishUsFontType":3,
+ "frenchText":"Rouge 1",
+ "frenchFontType":3,
+ "italianText":"Rosso 1",
+ "italianFontType":3,
+ "germanText":"Rot 1",
+ "germanFontType":3,
+ "spanishText":"Rojo 1",
+ "spanishFontType":3,
+ "chineseTText":"紅色1",
+ "chineseTFontType":1,
+ "koreanText":"빨간색 1",
+ "koreanFontType":2,
+ "portugueseText":"Vermelho 1",
+ "portugueseFontType":2,
+ "russianText":"Красный 1",
+ "russianFontType":2,
+ "turkishText":"Kırmızı 1",
+ "turkishFontType":2,
+ "arabicText":"أحمر 1",
+ "arabicFontType":2,
+ "dutchText":"Rood 1",
+ "dutchFontType":2,
+ "chineseSText":"红色1",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_red_2",
+ "japaneseText":"あか2",
+ "englishUsText":"Red 2",
+ "englishUsFontType":3,
+ "frenchText":"Rouge 2",
+ "frenchFontType":3,
+ "italianText":"Rosso 2",
+ "italianFontType":3,
+ "germanText":"Rot 2",
+ "germanFontType":3,
+ "spanishText":"Rojo 2",
+ "spanishFontType":3,
+ "chineseTText":"紅色2",
+ "chineseTFontType":1,
+ "koreanText":"빨간색 2",
+ "koreanFontType":2,
+ "portugueseText":"Vermelho 2",
+ "portugueseFontType":2,
+ "russianText":"Красный 2",
+ "russianFontType":2,
+ "turkishText":"Kırmızı 2",
+ "turkishFontType":2,
+ "arabicText":"أحمر 2",
+ "arabicFontType":2,
+ "dutchText":"Rood 2",
+ "dutchFontType":2,
+ "chineseSText":"红色2",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_red_3",
+ "japaneseText":"あか3",
+ "englishUsText":"Red 3",
+ "englishUsFontType":3,
+ "frenchText":"Rouge 3",
+ "frenchFontType":3,
+ "italianText":"Rosso 3",
+ "italianFontType":3,
+ "germanText":"Rot 3",
+ "germanFontType":3,
+ "spanishText":"Rojo 3",
+ "spanishFontType":3,
+ "chineseTText":"紅色3",
+ "chineseTFontType":1,
+ "koreanText":"빨간색 3",
+ "koreanFontType":2,
+ "portugueseText":"Vermelho 3",
+ "portugueseFontType":2,
+ "russianText":"Красный 3",
+ "russianFontType":2,
+ "turkishText":"Kırmızı 3",
+ "turkishFontType":2,
+ "arabicText":"أحمر 3",
+ "arabicFontType":2,
+ "dutchText":"Rood 3",
+ "dutchFontType":2,
+ "chineseSText":"红色3",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_red_4",
+ "japaneseText":"あか4",
+ "englishUsText":"Red 4",
+ "englishUsFontType":3,
+ "frenchText":"Rouge 4",
+ "frenchFontType":3,
+ "italianText":"Rosso 4",
+ "italianFontType":3,
+ "germanText":"Rot 4",
+ "germanFontType":3,
+ "spanishText":"Rojo 4",
+ "spanishFontType":3,
+ "chineseTText":"紅色4",
+ "chineseTFontType":1,
+ "koreanText":"빨간색 4",
+ "koreanFontType":2,
+ "portugueseText":"Vermelho 4",
+ "portugueseFontType":2,
+ "russianText":"Красный 4",
+ "russianFontType":2,
+ "turkishText":"Kırmızı 4",
+ "turkishFontType":2,
+ "arabicText":"أحمر 4",
+ "arabicFontType":2,
+ "dutchText":"Rood 4",
+ "dutchFontType":2,
+ "chineseSText":"红色4",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_red_5",
+ "japaneseText":"あか5",
+ "englishUsText":"Red 5",
+ "englishUsFontType":3,
+ "frenchText":"Rouge 5",
+ "frenchFontType":3,
+ "italianText":"Rosso 5",
+ "italianFontType":3,
+ "germanText":"Rot 5",
+ "germanFontType":3,
+ "spanishText":"Rojo 5",
+ "spanishFontType":3,
+ "chineseTText":"紅色5",
+ "chineseTFontType":1,
+ "koreanText":"빨간색 5",
+ "koreanFontType":2,
+ "portugueseText":"Vermelho 5",
+ "portugueseFontType":2,
+ "russianText":"Красный 5",
+ "russianFontType":2,
+ "turkishText":"Kırmızı 5",
+ "turkishFontType":2,
+ "arabicText":"أحمر 5",
+ "arabicFontType":2,
+ "dutchText":"Rood 5",
+ "dutchFontType":2,
+ "chineseSText":"红色5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_orange_1",
+ "japaneseText":"だいだい1",
+ "englishUsText":"Orange 1",
+ "englishUsFontType":3,
+ "frenchText":"Orange 1",
+ "frenchFontType":3,
+ "italianText":"Arancione 1",
+ "italianFontType":3,
+ "germanText":"Orange 1",
+ "germanFontType":3,
+ "spanishText":"Naranja 1",
+ "spanishFontType":3,
+ "chineseTText":"橙色1",
+ "chineseTFontType":1,
+ "koreanText":"주황색 1",
+ "koreanFontType":2,
+ "portugueseText":"Laranja 1",
+ "portugueseFontType":2,
+ "russianText":"Оранжевый 1",
+ "russianFontType":2,
+ "turkishText":"Turuncu 1",
+ "turkishFontType":2,
+ "arabicText":"برتقالي 1",
+ "arabicFontType":2,
+ "dutchText":"Oranje 1",
+ "dutchFontType":2,
+ "chineseSText":"橙色1",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_orange_2",
+ "japaneseText":"だいだい2",
+ "englishUsText":"Orange 2",
+ "englishUsFontType":3,
+ "frenchText":"Orange 2",
+ "frenchFontType":3,
+ "italianText":"Arancione 2",
+ "italianFontType":3,
+ "germanText":"Orange 2",
+ "germanFontType":3,
+ "spanishText":"Naranja 2",
+ "spanishFontType":3,
+ "chineseTText":"橙色2",
+ "chineseTFontType":1,
+ "koreanText":"주황색 2",
+ "koreanFontType":2,
+ "portugueseText":"Laranja 2",
+ "portugueseFontType":2,
+ "russianText":"Оранжевый 2",
+ "russianFontType":2,
+ "turkishText":"Turuncu 2",
+ "turkishFontType":2,
+ "arabicText":"برتقالي 2",
+ "arabicFontType":2,
+ "dutchText":"Oranje 2",
+ "dutchFontType":2,
+ "chineseSText":"橙色2",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_orange_3",
+ "japaneseText":"だいだい3",
+ "englishUsText":"Orange 3",
+ "englishUsFontType":3,
+ "frenchText":"Orange 3",
+ "frenchFontType":3,
+ "italianText":"Arancione 3",
+ "italianFontType":3,
+ "germanText":"Orange 3",
+ "germanFontType":3,
+ "spanishText":"Naranja 3",
+ "spanishFontType":3,
+ "chineseTText":"橙色3",
+ "chineseTFontType":1,
+ "koreanText":"주황색 3",
+ "koreanFontType":2,
+ "portugueseText":"Laranja 3",
+ "portugueseFontType":2,
+ "russianText":"Оранжевый 3",
+ "russianFontType":2,
+ "turkishText":"Turuncu 3",
+ "turkishFontType":2,
+ "arabicText":"برتقالي 3",
+ "arabicFontType":2,
+ "dutchText":"Oranje 3",
+ "dutchFontType":2,
+ "chineseSText":"橙色3",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_orange_4",
+ "japaneseText":"だいだい4",
+ "englishUsText":"Orange 4",
+ "englishUsFontType":3,
+ "frenchText":"Orange 4",
+ "frenchFontType":3,
+ "italianText":"Arancione 4",
+ "italianFontType":3,
+ "germanText":"Orange 4",
+ "germanFontType":3,
+ "spanishText":"Naranja 4",
+ "spanishFontType":3,
+ "chineseTText":"橙色4",
+ "chineseTFontType":1,
+ "koreanText":"주황색 4",
+ "koreanFontType":2,
+ "portugueseText":"Laranja 4",
+ "portugueseFontType":2,
+ "russianText":"Оранжевый 4",
+ "russianFontType":2,
+ "turkishText":"Turuncu 4",
+ "turkishFontType":2,
+ "arabicText":"برتقالي 4",
+ "arabicFontType":2,
+ "dutchText":"Oranje 4",
+ "dutchFontType":2,
+ "chineseSText":"橙色4",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_orange_5",
+ "japaneseText":"だいだい5",
+ "englishUsText":"Orange 5",
+ "englishUsFontType":3,
+ "frenchText":"Orange 5",
+ "frenchFontType":3,
+ "italianText":"Arancione 5",
+ "italianFontType":3,
+ "germanText":"Orange 5",
+ "germanFontType":3,
+ "spanishText":"Naranja 5",
+ "spanishFontType":3,
+ "chineseTText":"橙色5",
+ "chineseTFontType":1,
+ "koreanText":"주황색 5",
+ "koreanFontType":2,
+ "portugueseText":"Laranja 5",
+ "portugueseFontType":2,
+ "russianText":"Оранжевый 5",
+ "russianFontType":2,
+ "turkishText":"Turuncu 5",
+ "turkishFontType":2,
+ "arabicText":"برتقالي 5",
+ "arabicFontType":2,
+ "dutchText":"Oranje 5",
+ "dutchFontType":2,
+ "chineseSText":"橙色5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_milky_1",
+ "japaneseText":"ミルキー1",
+ "englishUsText":"Cream 1",
+ "englishUsFontType":3,
+ "frenchText":"Blanc 1",
+ "frenchFontType":3,
+ "italianText":"Bianco 1",
+ "italianFontType":3,
+ "germanText":"Milchig 1",
+ "germanFontType":3,
+ "spanishText":"Crema 1",
+ "spanishFontType":3,
+ "chineseTText":"乳白色1",
+ "chineseTFontType":1,
+ "koreanText":"밀키 1",
+ "koreanFontType":2,
+ "portugueseText":"Creme 1",
+ "portugueseFontType":2,
+ "russianText":"Кремовый 1",
+ "russianFontType":2,
+ "turkishText":"Krem Rengi 1",
+ "turkishFontType":2,
+ "arabicText":"كريمي 1",
+ "arabicFontType":2,
+ "dutchText":"Crème 1",
+ "dutchFontType":2,
+ "chineseSText":"乳白色1",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_milky_2",
+ "japaneseText":"ミルキー2",
+ "englishUsText":"Cream 2",
+ "englishUsFontType":3,
+ "frenchText":"Blanc 2",
+ "frenchFontType":3,
+ "italianText":"Bianco 2",
+ "italianFontType":3,
+ "germanText":"Milchig 2",
+ "germanFontType":3,
+ "spanishText":"Crema 2",
+ "spanishFontType":3,
+ "chineseTText":"乳白色2",
+ "chineseTFontType":1,
+ "koreanText":"밀키 2",
+ "koreanFontType":2,
+ "portugueseText":"Creme 2",
+ "portugueseFontType":2,
+ "russianText":"Кремовый 2",
+ "russianFontType":2,
+ "turkishText":"Krem Rengi 2",
+ "turkishFontType":2,
+ "arabicText":"كريمي 2",
+ "arabicFontType":2,
+ "dutchText":"Crème 2",
+ "dutchFontType":2,
+ "chineseSText":"乳白色2",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_milky_3",
+ "japaneseText":"ミルキー3",
+ "englishUsText":"Cream 3",
+ "englishUsFontType":3,
+ "frenchText":"Blanc 3",
+ "frenchFontType":3,
+ "italianText":"Bianco 3",
+ "italianFontType":3,
+ "germanText":"Milchig 3",
+ "germanFontType":3,
+ "spanishText":"Crema 3",
+ "spanishFontType":3,
+ "chineseTText":"乳白色3",
+ "chineseTFontType":1,
+ "koreanText":"밀키 3",
+ "koreanFontType":2,
+ "portugueseText":"Creme 3",
+ "portugueseFontType":2,
+ "russianText":"Кремовый 3",
+ "russianFontType":2,
+ "turkishText":"Krem Rengi 3",
+ "turkishFontType":2,
+ "arabicText":"كريمي 3",
+ "arabicFontType":2,
+ "dutchText":"Crème 3",
+ "dutchFontType":2,
+ "chineseSText":"乳白色3",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_milky_4",
+ "japaneseText":"ミルキー4",
+ "englishUsText":"Cream 4",
+ "englishUsFontType":3,
+ "frenchText":"Blanc 4",
+ "frenchFontType":3,
+ "italianText":"Bianco 4",
+ "italianFontType":3,
+ "germanText":"Milchig 4",
+ "germanFontType":3,
+ "spanishText":"Crema 4",
+ "spanishFontType":3,
+ "chineseTText":"乳白色4",
+ "chineseTFontType":1,
+ "koreanText":"밀키 4",
+ "koreanFontType":2,
+ "portugueseText":"Creme 4",
+ "portugueseFontType":2,
+ "russianText":"Кремовый 4",
+ "russianFontType":2,
+ "turkishText":"Krem Rengi 4",
+ "turkishFontType":2,
+ "arabicText":"كريمي 4",
+ "arabicFontType":2,
+ "dutchText":"Crème 4",
+ "dutchFontType":2,
+ "chineseSText":"乳白色4",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_milky_5",
+ "japaneseText":"ミルキー5",
+ "englishUsText":"Cream 5",
+ "englishUsFontType":3,
+ "frenchText":"Blanc 5",
+ "frenchFontType":3,
+ "italianText":"Bianco 5",
+ "italianFontType":3,
+ "germanText":"Milchig 5",
+ "germanFontType":3,
+ "spanishText":"Crema 5",
+ "spanishFontType":3,
+ "chineseTText":"乳白色5",
+ "chineseTFontType":1,
+ "koreanText":"밀키 5",
+ "koreanFontType":2,
+ "portugueseText":"Creme 5",
+ "portugueseFontType":2,
+ "russianText":"Кремовый 5",
+ "russianFontType":2,
+ "turkishText":"Krem Rengi 5",
+ "turkishFontType":2,
+ "arabicText":"كريمي 5",
+ "arabicFontType":2,
+ "dutchText":"Crème 5",
+ "dutchFontType":2,
+ "chineseSText":"乳白色5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_chic_1",
+ "japaneseText":"シック1",
+ "englishUsText":"Chic 1",
+ "englishUsFontType":3,
+ "frenchText":"Chic 1",
+ "frenchFontType":3,
+ "italianText":"Chic 1",
+ "italianFontType":3,
+ "germanText":"Schick 1",
+ "germanFontType":3,
+ "spanishText":"Elegancia 1",
+ "spanishFontType":3,
+ "chineseTText":"優雅1",
+ "chineseTFontType":1,
+ "koreanText":"시크 1",
+ "koreanFontType":2,
+ "portugueseText":"Chique 1",
+ "portugueseFontType":2,
+ "russianText":"Роскошный 1",
+ "russianFontType":2,
+ "turkishText":"Şık Renk 1",
+ "turkishFontType":2,
+ "arabicText":"أنيق 1",
+ "arabicFontType":2,
+ "dutchText":"Chique 1",
+ "dutchFontType":2,
+ "chineseSText":"优雅1",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_chic_2",
+ "japaneseText":"シック2",
+ "englishUsText":"Chic 2",
+ "englishUsFontType":3,
+ "frenchText":"Chic 2",
+ "frenchFontType":3,
+ "italianText":"Chic 2",
+ "italianFontType":3,
+ "germanText":"Schick 2",
+ "germanFontType":3,
+ "spanishText":"Elegancia 2",
+ "spanishFontType":3,
+ "chineseTText":"優雅2",
+ "chineseTFontType":1,
+ "koreanText":"시크 2",
+ "koreanFontType":2,
+ "portugueseText":"Chique 2",
+ "portugueseFontType":2,
+ "russianText":"Роскошный 2",
+ "russianFontType":2,
+ "turkishText":"Şık Renk 2",
+ "turkishFontType":2,
+ "arabicText":"أنيق 2",
+ "arabicFontType":2,
+ "dutchText":"Chique 2",
+ "dutchFontType":2,
+ "chineseSText":"优雅2",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_chic_3",
+ "japaneseText":"シック3",
+ "englishUsText":"Chic 3",
+ "englishUsFontType":3,
+ "frenchText":"Chic 3",
+ "frenchFontType":3,
+ "italianText":"Chic 3",
+ "italianFontType":3,
+ "germanText":"Schick 3",
+ "germanFontType":3,
+ "spanishText":"Elegancia 3",
+ "spanishFontType":3,
+ "chineseTText":"優雅3",
+ "chineseTFontType":1,
+ "koreanText":"시크 3",
+ "koreanFontType":2,
+ "portugueseText":"Chique 3",
+ "portugueseFontType":2,
+ "russianText":"Роскошный 3",
+ "russianFontType":2,
+ "turkishText":"Şık Renk 3",
+ "turkishFontType":2,
+ "arabicText":"أنيق 3",
+ "arabicFontType":2,
+ "dutchText":"Chique 3",
+ "dutchFontType":2,
+ "chineseSText":"优雅3",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_chic_4",
+ "japaneseText":"シック4",
+ "englishUsText":"Chic 4",
+ "englishUsFontType":3,
+ "frenchText":"Chic 4",
+ "frenchFontType":3,
+ "italianText":"Chic 4",
+ "italianFontType":3,
+ "germanText":"Schick 4",
+ "germanFontType":3,
+ "spanishText":"Elegancia 4",
+ "spanishFontType":3,
+ "chineseTText":"優雅4",
+ "chineseTFontType":1,
+ "koreanText":"시크 4",
+ "koreanFontType":2,
+ "portugueseText":"Chique 4",
+ "portugueseFontType":2,
+ "russianText":"Роскошный 4",
+ "russianFontType":2,
+ "turkishText":"Şık Renk 4",
+ "turkishFontType":2,
+ "arabicText":"أنيق 4",
+ "arabicFontType":2,
+ "dutchText":"Chique 4",
+ "dutchFontType":2,
+ "chineseSText":"优雅4",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_chic_5",
+ "japaneseText":"シック5",
+ "englishUsText":"Chic 5",
+ "englishUsFontType":3,
+ "frenchText":"Chic 5",
+ "frenchFontType":3,
+ "italianText":"Chic 5",
+ "italianFontType":3,
+ "germanText":"Schick 5",
+ "germanFontType":3,
+ "spanishText":"Elegancia 5",
+ "spanishFontType":3,
+ "chineseTText":"優雅5",
+ "chineseTFontType":1,
+ "koreanText":"시크 5",
+ "koreanFontType":2,
+ "portugueseText":"Chique 5",
+ "portugueseFontType":2,
+ "russianText":"Роскошный 5",
+ "russianFontType":2,
+ "turkishText":"Şık Renk 5",
+ "turkishFontType":2,
+ "arabicText":"أنيق 5",
+ "arabicFontType":2,
+ "dutchText":"Chique 5",
+ "dutchFontType":2,
+ "chineseSText":"优雅5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_pastel_1",
+ "japaneseText":"パステル1",
+ "englishUsText":"Pastel 1",
+ "englishUsFontType":3,
+ "frenchText":"Pastel 1",
+ "frenchFontType":3,
+ "italianText":"Pastello 1",
+ "italianFontType":3,
+ "germanText":"Pastell 1",
+ "germanFontType":3,
+ "spanishText":"Pastel 1",
+ "spanishFontType":3,
+ "chineseTText":"粉彩1",
+ "chineseTFontType":1,
+ "koreanText":"파스텔 1",
+ "koreanFontType":2,
+ "portugueseText":"Pastel 1",
+ "portugueseFontType":2,
+ "russianText":"Пастельный 1",
+ "russianFontType":2,
+ "turkishText":"Pastel Renk 1",
+ "turkishFontType":2,
+ "arabicText":"الباستيل 1",
+ "arabicFontType":2,
+ "dutchText":"Pastel 1",
+ "dutchFontType":2,
+ "chineseSText":"粉彩1",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_pastel_2",
+ "japaneseText":"パステル2",
+ "englishUsText":"Pastel 2",
+ "englishUsFontType":3,
+ "frenchText":"Pastel 2",
+ "frenchFontType":3,
+ "italianText":"Pastello 2",
+ "italianFontType":3,
+ "germanText":"Pastell 2",
+ "germanFontType":3,
+ "spanishText":"Pastel 2",
+ "spanishFontType":3,
+ "chineseTText":"粉彩2",
+ "chineseTFontType":1,
+ "koreanText":"파스텔 2",
+ "koreanFontType":2,
+ "portugueseText":"Pastel 2",
+ "portugueseFontType":2,
+ "russianText":"Пастельный 2",
+ "russianFontType":2,
+ "turkishText":"Pastel Renk 2",
+ "turkishFontType":2,
+ "arabicText":"الباستيل 2",
+ "arabicFontType":2,
+ "dutchText":"Pastel 2",
+ "dutchFontType":2,
+ "chineseSText":"粉彩2",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_pastel_3",
+ "japaneseText":"パステル3",
+ "englishUsText":"Pastel 3",
+ "englishUsFontType":3,
+ "frenchText":"Pastel 3",
+ "frenchFontType":3,
+ "italianText":"Pastello 3",
+ "italianFontType":3,
+ "germanText":"Pastell 3",
+ "germanFontType":3,
+ "spanishText":"Pastel 3",
+ "spanishFontType":3,
+ "chineseTText":"粉彩3",
+ "chineseTFontType":1,
+ "koreanText":"파스텔 3",
+ "koreanFontType":2,
+ "portugueseText":"Pastel 3",
+ "portugueseFontType":2,
+ "russianText":"Пастельный 3",
+ "russianFontType":2,
+ "turkishText":"Pastel Renk 3",
+ "turkishFontType":2,
+ "arabicText":"الباستيل 3",
+ "arabicFontType":2,
+ "dutchText":"Pastel 3",
+ "dutchFontType":2,
+ "chineseSText":"粉彩3",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_pastel_4",
+ "japaneseText":"パステル4",
+ "englishUsText":"Pastel 4",
+ "englishUsFontType":3,
+ "frenchText":"Pastel 4",
+ "frenchFontType":3,
+ "italianText":"Pastello 4",
+ "italianFontType":3,
+ "germanText":"Pastell 4",
+ "germanFontType":3,
+ "spanishText":"Pastel 4",
+ "spanishFontType":3,
+ "chineseTText":"粉彩4",
+ "chineseTFontType":1,
+ "koreanText":"파스텔 4",
+ "koreanFontType":2,
+ "portugueseText":"Pastel 4",
+ "portugueseFontType":2,
+ "russianText":"Пастельный 4",
+ "russianFontType":2,
+ "turkishText":"Pastel Renk 4",
+ "turkishFontType":2,
+ "arabicText":"الباستيل 4",
+ "arabicFontType":2,
+ "dutchText":"Pastel 4",
+ "dutchFontType":2,
+ "chineseSText":"粉彩4",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_pastel_5",
+ "japaneseText":"パステル5",
+ "englishUsText":"Pastel 5",
+ "englishUsFontType":3,
+ "frenchText":"Pastel 5",
+ "frenchFontType":3,
+ "italianText":"Pastello 5",
+ "italianFontType":3,
+ "germanText":"Pastell 5",
+ "germanFontType":3,
+ "spanishText":"Pastel 5",
+ "spanishFontType":3,
+ "chineseTText":"粉彩5",
+ "chineseTFontType":1,
+ "koreanText":"파스텔 5",
+ "koreanFontType":2,
+ "portugueseText":"Pastel 5",
+ "portugueseFontType":2,
+ "russianText":"Пастельный 5",
+ "russianFontType":2,
+ "turkishText":"Pastel Renk 5",
+ "turkishFontType":2,
+ "arabicText":"الباستيل 5",
+ "arabicFontType":2,
+ "dutchText":"Pastel 5",
+ "dutchFontType":2,
+ "chineseSText":"粉彩5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_pastel_6",
+ "japaneseText":"パステル6",
+ "englishUsText":"Pastel 6",
+ "englishUsFontType":3,
+ "frenchText":"Pastel 6",
+ "frenchFontType":3,
+ "italianText":"Pastello 6",
+ "italianFontType":3,
+ "germanText":"Pastell 6",
+ "germanFontType":3,
+ "spanishText":"Pastel 6",
+ "spanishFontType":3,
+ "chineseTText":"粉彩6",
+ "chineseTFontType":1,
+ "koreanText":"파스텔 6",
+ "koreanFontType":2,
+ "portugueseText":"Pastel 6",
+ "portugueseFontType":2,
+ "russianText":"Пастельный 6",
+ "russianFontType":2,
+ "turkishText":"Pastel Renk 6",
+ "turkishFontType":2,
+ "arabicText":"الباستيل 6",
+ "arabicFontType":2,
+ "dutchText":"Pastel 6",
+ "dutchFontType":2,
+ "chineseSText":"粉彩6",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_vivid_1",
+ "japaneseText":"ビビッド1",
+ "englishUsText":"Vivid 1",
+ "englishUsFontType":3,
+ "frenchText":"Vif 1",
+ "frenchFontType":3,
+ "italianText":"Vivace 1",
+ "italianFontType":3,
+ "germanText":"Lebhaft 1",
+ "germanFontType":3,
+ "spanishText":"Intenso 1",
+ "spanishFontType":3,
+ "chineseTText":"鮮豔1",
+ "chineseTFontType":1,
+ "koreanText":"비비드 1",
+ "koreanFontType":2,
+ "portugueseText":"Vívida 1",
+ "portugueseFontType":2,
+ "russianText":"Яркий 1",
+ "russianFontType":2,
+ "turkishText":"Canlı Renk 1",
+ "turkishFontType":2,
+ "arabicText":"زاهية 1",
+ "arabicFontType":2,
+ "dutchText":"Levendig 1",
+ "dutchFontType":2,
+ "chineseSText":"鲜艳1",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_vivid_2",
+ "japaneseText":"ビビッド2",
+ "englishUsText":"Vivid 2",
+ "englishUsFontType":3,
+ "frenchText":"Vif 2",
+ "frenchFontType":3,
+ "italianText":"Vivace 2",
+ "italianFontType":3,
+ "germanText":"Lebhaft 2",
+ "germanFontType":3,
+ "spanishText":"Intenso 2",
+ "spanishFontType":3,
+ "chineseTText":"鮮豔2",
+ "chineseTFontType":1,
+ "koreanText":"비비드 2",
+ "koreanFontType":2,
+ "portugueseText":"Vívida 2",
+ "portugueseFontType":2,
+ "russianText":"Яркий 2",
+ "russianFontType":2,
+ "turkishText":"Canlı Renk 2",
+ "turkishFontType":2,
+ "arabicText":"زاهية 2",
+ "arabicFontType":2,
+ "dutchText":"Levendig 2",
+ "dutchFontType":2,
+ "chineseSText":"鲜艳2",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_vivid_3",
+ "japaneseText":"ビビッド3",
+ "englishUsText":"Vivid 3",
+ "englishUsFontType":3,
+ "frenchText":"Vif 3",
+ "frenchFontType":3,
+ "italianText":"Vivace 3",
+ "italianFontType":3,
+ "germanText":"Lebhaft 3",
+ "germanFontType":3,
+ "spanishText":"Intenso 3",
+ "spanishFontType":3,
+ "chineseTText":"鮮豔3",
+ "chineseTFontType":1,
+ "koreanText":"비비드 3",
+ "koreanFontType":2,
+ "portugueseText":"Vívida 3",
+ "portugueseFontType":2,
+ "russianText":"Яркий 3",
+ "russianFontType":2,
+ "turkishText":"Canlı Renk 3",
+ "turkishFontType":2,
+ "arabicText":"زاهية 3",
+ "arabicFontType":2,
+ "dutchText":"Levendig 3",
+ "dutchFontType":2,
+ "chineseSText":"鲜艳3",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_vivid_4",
+ "japaneseText":"ビビッド4",
+ "englishUsText":"Vivid 4",
+ "englishUsFontType":3,
+ "frenchText":"Vif 4",
+ "frenchFontType":3,
+ "italianText":"Vivace 4",
+ "italianFontType":3,
+ "germanText":"Lebhaft 4",
+ "germanFontType":3,
+ "spanishText":"Intenso 4",
+ "spanishFontType":3,
+ "chineseTText":"鮮豔4",
+ "chineseTFontType":1,
+ "koreanText":"비비드 4",
+ "koreanFontType":2,
+ "portugueseText":"Vívida 4",
+ "portugueseFontType":2,
+ "russianText":"Яркий 4",
+ "russianFontType":2,
+ "turkishText":"Canlı Renk 4",
+ "turkishFontType":2,
+ "arabicText":"زاهية 4",
+ "arabicFontType":2,
+ "dutchText":"Levendig 4",
+ "dutchFontType":2,
+ "chineseSText":"鲜艳4",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_vivid_5",
+ "japaneseText":"ビビッド5",
+ "englishUsText":"Vivid 5",
+ "englishUsFontType":3,
+ "frenchText":"Vif 5",
+ "frenchFontType":3,
+ "italianText":"Vivace 5",
+ "italianFontType":3,
+ "germanText":"Lebhaft 5",
+ "germanFontType":3,
+ "spanishText":"Intenso 5",
+ "spanishFontType":3,
+ "chineseTText":"鮮豔5",
+ "chineseTFontType":1,
+ "koreanText":"비비드 5",
+ "koreanFontType":2,
+ "portugueseText":"Vívida 5",
+ "portugueseFontType":2,
+ "russianText":"Яркий 5",
+ "russianFontType":2,
+ "turkishText":"Canlı Renk 5",
+ "turkishFontType":2,
+ "arabicText":"زاهية 5",
+ "arabicFontType":2,
+ "dutchText":"Levendig 5",
+ "dutchFontType":2,
+ "chineseSText":"鲜艳5",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_vivid_6",
+ "japaneseText":"ビビッド6",
+ "englishUsText":"Vivid 6",
+ "englishUsFontType":3,
+ "frenchText":"Vif 6",
+ "frenchFontType":3,
+ "italianText":"Vivace 6",
+ "italianFontType":3,
+ "germanText":"Lebhaft 6",
+ "germanFontType":3,
+ "spanishText":"Intenso 6",
+ "spanishFontType":3,
+ "chineseTText":"鮮豔6",
+ "chineseTFontType":1,
+ "koreanText":"비비드 6",
+ "koreanFontType":2,
+ "portugueseText":"Vívida 6",
+ "portugueseFontType":2,
+ "russianText":"Яркий 6",
+ "russianFontType":2,
+ "turkishText":"Canlı Renk 6",
+ "turkishFontType":2,
+ "arabicText":"زاهية 6",
+ "arabicFontType":2,
+ "dutchText":"Levendig 6",
+ "dutchFontType":2,
+ "chineseSText":"鲜艳6",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_full_ylw",
+ "japaneseText":"まっき",
+ "englishUsText":"Ultra-Yellow",
+ "englishUsFontType":3,
+ "frenchText":"Très jaune",
+ "frenchFontType":3,
+ "italianText":"Giallo puro",
+ "italianFontType":3,
+ "germanText":"Total gelb",
+ "germanFontType":3,
+ "spanishText":"Amarillísimo",
+ "spanishFontType":3,
+ "chineseTText":"深黃",
+ "chineseTFontType":1,
+ "koreanText":"진노랑",
+ "koreanFontType":2,
+ "portugueseText":"Ultra-amarelo",
+ "portugueseFontType":2,
+ "russianText":"Ярко-желтый",
+ "russianFontType":2,
+ "turkishText":"Sapsarı",
+ "turkishFontType":2,
+ "arabicText":"أصفر فائق",
+ "arabicFontType":2,
+ "dutchText":"Knalgeel",
+ "dutchFontType":2,
+ "chineseSText":"深黄",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_full_grn",
+ "japaneseText":"まみどり",
+ "englishUsText":"Ultra-Green",
+ "englishUsFontType":3,
+ "frenchText":"Très vert",
+ "frenchFontType":3,
+ "italianText":"Verde puro",
+ "italianFontType":3,
+ "germanText":"Total grün",
+ "germanFontType":3,
+ "spanishText":"Verdísimo",
+ "spanishFontType":3,
+ "chineseTText":"深綠",
+ "chineseTFontType":1,
+ "koreanText":"진초록",
+ "koreanFontType":2,
+ "portugueseText":"Ultra-verde",
+ "portugueseFontType":2,
+ "russianText":"Ярко-зеленый",
+ "russianFontType":2,
+ "turkishText":"Yemyeşil",
+ "turkishFontType":2,
+ "arabicText":"أخضر فائق",
+ "arabicFontType":2,
+ "dutchText":"Knalgroen",
+ "dutchFontType":2,
+ "chineseSText":"深绿",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_full_ble",
+ "japaneseText":"まっさお",
+ "englishUsText":"Ultra-Blue",
+ "englishUsFontType":3,
+ "frenchText":"Très bleu",
+ "frenchFontType":3,
+ "italianText":"Blu puro",
+ "italianFontType":3,
+ "germanText":"Total blau",
+ "germanFontType":3,
+ "spanishText":"Azulísimo",
+ "spanishFontType":3,
+ "chineseTText":"深藍",
+ "chineseTFontType":1,
+ "koreanText":"진파랑",
+ "koreanFontType":2,
+ "portugueseText":"Ultra-azul",
+ "portugueseFontType":2,
+ "russianText":"Ярко-синий",
+ "russianFontType":2,
+ "turkishText":"Masmavi",
+ "turkishFontType":2,
+ "arabicText":"أزرق فائق",
+ "arabicFontType":2,
+ "dutchText":"Knalblauw",
+ "dutchFontType":2,
+ "chineseSText":"深蓝",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_full_pur",
+ "japaneseText":"まむらさき",
+ "englishUsText":"Ultra-Purple",
+ "englishUsFontType":3,
+ "frenchText":"Très violet",
+ "frenchFontType":3,
+ "italianText":"Viola puro",
+ "italianFontType":3,
+ "germanText":"Total lila",
+ "germanFontType":3,
+ "spanishText":"Purpurísimo",
+ "spanishFontType":3,
+ "chineseTText":"深紫",
+ "chineseTFontType":1,
+ "koreanText":"진보라",
+ "koreanFontType":2,
+ "portugueseText":"Ultra-violeta",
+ "portugueseFontType":2,
+ "russianText":"Ярко-фиолетовый",
+ "russianFontType":2,
+ "turkishText":"Mosmor",
+ "turkishFontType":2,
+ "arabicText":"أرجواني فائق",
+ "arabicFontType":2,
+ "dutchText":"Knalpaars",
+ "dutchFontType":2,
+ "chineseSText":"深紫",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_full_pnk",
+ "japaneseText":"まっピンク",
+ "englishUsText":"Ultra-Pink",
+ "englishUsFontType":3,
+ "frenchText":"Très rose",
+ "frenchFontType":3,
+ "italianText":"Rosa puro",
+ "italianFontType":3,
+ "germanText":"Total rosa",
+ "germanFontType":3,
+ "spanishText":"Rosísimo",
+ "spanishFontType":3,
+ "chineseTText":"深粉紅",
+ "chineseTFontType":1,
+ "koreanText":"진분홍",
+ "koreanFontType":2,
+ "portugueseText":"Ultra-rosa",
+ "portugueseFontType":2,
+ "russianText":"Ярко-розовый",
+ "russianFontType":2,
+ "turkishText":"Pespembe",
+ "turkishFontType":2,
+ "arabicText":"وردي فائق",
+ "arabicFontType":2,
+ "dutchText":"Knalroze",
+ "dutchFontType":2,
+ "chineseSText":"深粉红",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_full_red",
+ "japaneseText":"まっか",
+ "englishUsText":"Ultra-Red",
+ "englishUsFontType":3,
+ "frenchText":"Très rouge",
+ "frenchFontType":3,
+ "italianText":"Rosso puro",
+ "italianFontType":3,
+ "germanText":"Total rot",
+ "germanFontType":3,
+ "spanishText":"Rojísimo",
+ "spanishFontType":3,
+ "chineseTText":"深紅",
+ "chineseTFontType":1,
+ "koreanText":"진빨강",
+ "koreanFontType":2,
+ "portugueseText":"Ultra-vermelho",
+ "portugueseFontType":2,
+ "russianText":"Ярко-красный",
+ "russianFontType":2,
+ "turkishText":"Kıpkırmızı",
+ "turkishFontType":2,
+ "arabicText":"أحمر فائق",
+ "arabicFontType":2,
+ "dutchText":"Knalrood",
+ "dutchFontType":2,
+ "chineseSText":"深红",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_full_brn",
+ "japaneseText":"まっちゃ",
+ "englishUsText":"Ultra-Brown",
+ "englishUsFontType":3,
+ "frenchText":"Très brun",
+ "frenchFontType":3,
+ "italianText":"Marrone puro",
+ "italianFontType":3,
+ "germanText":"Total braun",
+ "germanFontType":3,
+ "spanishText":"Marronísimo",
+ "spanishFontType":3,
+ "chineseTText":"深茶褐",
+ "chineseTFontType":1,
+ "koreanText":"진갈색",
+ "koreanFontType":2,
+ "portugueseText":"Ultra-marrom",
+ "portugueseFontType":2,
+ "russianText":"Ярко-коричневый",
+ "russianFontType":2,
+ "turkishText":"Koyu kahverengi",
+ "turkishFontType":2,
+ "arabicText":"بني فائق",
+ "arabicFontType":2,
+ "dutchText":"Knalbruin",
+ "dutchFontType":2,
+ "chineseSText":"深茶褐",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_full_blk",
+ "japaneseText":"まっくろ",
+ "englishUsText":"Ultra-Black",
+ "englishUsFontType":3,
+ "frenchText":"Très noir",
+ "frenchFontType":3,
+ "italianText":"Nero puro",
+ "italianFontType":3,
+ "germanText":"Total schwarz",
+ "germanFontType":3,
+ "spanishText":"Negrísimo",
+ "spanishFontType":3,
+ "chineseTText":"深黑",
+ "chineseTFontType":1,
+ "koreanText":"진검정",
+ "koreanFontType":2,
+ "portugueseText":"Ultra-preto",
+ "portugueseFontType":2,
+ "russianText":"Ярко-черный",
+ "russianFontType":2,
+ "turkishText":"Kapkara",
+ "turkishFontType":2,
+ "arabicText":"أسود فائق",
+ "arabicFontType":2,
+ "dutchText":"Inktzwart",
+ "dutchFontType":2,
+ "chineseSText":"深黑",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_full_gry",
+ "japaneseText":"まグレー",
+ "englishUsText":"Ultra-Grey",
+ "englishUsFontType":3,
+ "frenchText":"Très gris",
+ "frenchFontType":3,
+ "italianText":"Grigio puro",
+ "italianFontType":3,
+ "germanText":"Total grau",
+ "germanFontType":3,
+ "spanishText":"Grisísimo",
+ "spanishFontType":3,
+ "chineseTText":"深灰",
+ "chineseTFontType":1,
+ "koreanText":"진회색",
+ "koreanFontType":2,
+ "portugueseText":"Ultra-cinza",
+ "portugueseFontType":2,
+ "russianText":"Ярко-серый",
+ "russianFontType":2,
+ "turkishText":"Gıpgri",
+ "turkishFontType":2,
+ "arabicText":"رمادي فائق",
+ "arabicFontType":2,
+ "dutchText":"Intens grijs",
+ "dutchFontType":2,
+ "chineseSText":"深灰",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_full_wht",
+ "japaneseText":"まっしろ",
+ "englishUsText":"Ultra-White",
+ "englishUsFontType":3,
+ "frenchText":"Très blanc",
+ "frenchFontType":3,
+ "italianText":"Bianco puro",
+ "italianFontType":3,
+ "germanText":"Total weiß",
+ "germanFontType":3,
+ "spanishText":"Blanquísimo",
+ "spanishFontType":3,
+ "chineseTText":"純白",
+ "chineseTFontType":1,
+ "koreanText":"흰색",
+ "koreanFontType":2,
+ "portugueseText":"Ultra-branco",
+ "portugueseFontType":2,
+ "russianText":"Ярко-белый",
+ "russianFontType":2,
+ "turkishText":"Bembeyaz",
+ "turkishFontType":2,
+ "arabicText":"أبيض فائق",
+ "arabicFontType":2,
+ "dutchText":"Knalwit",
+ "dutchFontType":2,
+ "chineseSText":"纯白",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_gray",
+ "japaneseText":"グレー",
+ "englishUsText":"Grey",
+ "englishUsFontType":3,
+ "frenchText":"Gris",
+ "frenchFontType":3,
+ "italianText":"Grigio",
+ "italianFontType":3,
+ "germanText":"Grau",
+ "germanFontType":3,
+ "spanishText":"Gris",
+ "spanishFontType":3,
+ "chineseTText":"灰色",
+ "chineseTFontType":1,
+ "koreanText":"회색",
+ "koreanFontType":2,
+ "portugueseText":"Cinza",
+ "portugueseFontType":2,
+ "russianText":"Серый",
+ "russianFontType":2,
+ "turkishText":"Gri",
+ "turkishFontType":2,
+ "arabicText":"رمادي",
+ "arabicFontType":2,
+ "dutchText":"Grijs",
+ "dutchFontType":2,
+ "chineseSText":"灰色",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_white",
+ "japaneseText":"しろくろ",
+ "englishUsText":"Monochrome",
+ "englishUsFontType":3,
+ "frenchText":"Blanc-noir",
+ "frenchFontType":3,
+ "italianText":"Bianco e nero",
+ "italianFontType":3,
+ "germanText":"Schwarzweiß",
+ "germanFontType":3,
+ "spanishText":"Monocromático",
+ "spanishFontType":3,
+ "chineseTText":"黑白色",
+ "chineseTFontType":1,
+ "koreanText":"흑백",
+ "koreanFontType":2,
+ "portugueseText":"Monocromático",
+ "portugueseFontType":2,
+ "russianText":"Черно-белый",
+ "russianFontType":2,
+ "turkishText":"Siyah beyaz",
+ "turkishFontType":2,
+ "arabicText":"أحادي اللون",
+ "arabicFontType":2,
+ "dutchText":"Zwart-wit",
+ "dutchFontType":2,
+ "chineseSText":"黑白色",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_forgotten",
+ "japaneseText":"アイボリー",
+ "englishUsText":"Ivory",
+ "englishUsFontType":3,
+ "frenchText":"Ivoire",
+ "frenchFontType":3,
+ "italianText":"Avorio",
+ "italianFontType":3,
+ "germanText":"Elfenbein",
+ "germanFontType":3,
+ "spanishText":"Marfil",
+ "spanishFontType":3,
+ "chineseTText":"象牙色",
+ "chineseTFontType":1,
+ "koreanText":"아이보리",
+ "koreanFontType":2,
+ "portugueseText":"Marfim",
+ "portugueseFontType":2,
+ "russianText":"Цвет слоновой кости",
+ "russianFontType":2,
+ "turkishText":"Fildişi",
+ "turkishFontType":2,
+ "arabicText":"عاجي",
+ "arabicFontType":2,
+ "dutchText":"Ivoor",
+ "dutchFontType":2,
+ "chineseSText":"象牙色",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_naked",
+ "japaneseText":"うすだいだい",
+ "englishUsText":"Light Orange",
+ "englishUsFontType":3,
+ "frenchText":"Orange léger",
+ "frenchFontType":3,
+ "italianText":"Arancione chiaro",
+ "italianFontType":3,
+ "germanText":"Helles Orange",
+ "germanFontType":3,
+ "spanishText":"Naranja claro",
+ "spanishFontType":3,
+ "chineseTText":"淡橙色",
+ "chineseTFontType":1,
+ "koreanText":"연한 주황",
+ "koreanFontType":2,
+ "portugueseText":"Laranja claro",
+ "portugueseFontType":2,
+ "russianText":"Бледно-оранжевый",
+ "russianFontType":2,
+ "turkishText":"Açık Turuncu",
+ "turkishFontType":2,
+ "arabicText":"برتقالي فاتح",
+ "arabicFontType":2,
+ "dutchText":"Lichtoranje",
+ "dutchFontType":2,
+ "chineseSText":"淡橙色",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_hole_don",
+ "japaneseText":"アナどん",
+ "englishUsText":"Holey-DON",
+ "englishUsFontType":3,
+ "frenchText":"DON troué",
+ "frenchFontType":3,
+ "italianText":"DON-chan bucato",
+ "italianFontType":3,
+ "germanText":"Loch-DON",
+ "germanFontType":3,
+ "spanishText":"Agujero DON",
+ "spanishFontType":3,
+ "chineseTText":"洞咚",
+ "chineseTFontType":1,
+ "koreanText":"구멍동",
+ "koreanFontType":2,
+ "portugueseText":"DON-raco",
+ "portugueseFontType":2,
+ "russianText":"Дырка-дон",
+ "russianFontType":2,
+ "turkishText":"Delikli DON",
+ "turkishFontType":2,
+ "arabicText":"دون-بفتحة",
+ "arabicFontType":2,
+ "dutchText":"DON met gaten",
+ "dutchFontType":2,
+ "chineseSText":"洞咚",
+ "chineseSFontType":4
+ },
+ {
+ "key":"costume_color_hole_katsu",
+ "japaneseText":"アナかつ",
+ "englishUsText":"Holey-KATSU",
+ "englishUsFontType":3,
+ "frenchText":"KATSU troué",
+ "frenchFontType":3,
+ "italianText":"KATSU-chan bucato",
+ "italianFontType":3,
+ "germanText":"Loch-KATSU",
+ "germanFontType":3,
+ "spanishText":"Agujero KATSU",
+ "spanishFontType":3,
+ "chineseTText":"洞咔",
+ "chineseTFontType":1,
+ "koreanText":"구멍딱",
+ "koreanFontType":2,
+ "portugueseText":"KATSU-raco",
+ "portugueseFontType":2,
+ "russianText":"ДырКа",
+ "russianFontType":2,
+ "turkishText":"Delikli KATSU",
+ "turkishFontType":2,
+ "arabicText":"كاتسو-بفتحة",
+ "arabicFontType":2,
+ "dutchText":"KATSU met gaten",
+ "dutchFontType":2,
+ "chineseSText":"洞咔",
+ "chineseSFontType":4
+ },
+ {
+ "key":"select_dialog_policy_warning",
+ "japaneseText":"データ送信ポリシーに同意頂いていないため、\nこの曲をプレイすることはできません。\nプレイするには「ゲームの設定」から\n同意ステータスを変更して下さい。",
+ "englishUsText":"As you have not agreed to the Privacy \nPolicy, you cannot play this song.\nChange your settings in Options to play.",
+ "englishUsFontType":3,
+ "frenchText":"Chanson injouable, car vous n'avez pas accepté notre politique de \nconfidentialité. Veuillez modifier le \nréglage dans les options pour jouer.",
+ "frenchFontType":3,
+ "italianText":"Non hai accettato la Politica sulla privacy,\nquindi non puoi giocare questa canzone.\nPer giocare, modifica le impostazioni dal menu delle opzioni.",
+ "italianFontType":3,
+ "germanText":"Den Datenversandsbestimmungen\nwurde nicht zugestimmt. Um diesen \nSong zu spielen, ändere bitte den \nStatus in den Spieleinstellungen.",
+ "germanFontType":3,
+ "spanishText":"No se puede jugar a esta canción porque\nno aceptaste la política de transmisión de datos.\nPara jugar, vuelve al menú de opciones\ny cambia tu elección.",
+ "spanishFontType":3,
+ "chineseTText":"由於未同意資料傳輸政策,無法遊玩此樂曲。\n若要遊玩,請從「遊戲設定」變更同意聲明。",
+ "chineseTFontType":1,
+ "koreanText":"데이터 송신 정책에 동의하지 않으셨으므로 \n이 곡을 플레이할 수 없습니다.\n플레이하시려면 '게임 설정'에서 \n동의 상태를 변경하십시오.",
+ "koreanFontType":2,
+ "portugueseText":"Você não aceitou a Política de Transmissão\nde Dados e não pode tocar essa música.\nMude suas configurações em Opções.",
+ "portugueseFontType":2,
+ "russianText":"Так как вы не приняли Политику передачи данных, \nвы не можете воспроизвести эту песню.\nДля воспроизведения измените настройки в меню опций.",
+ "russianFontType":2,
+ "turkishText":"Gizlilik Politikası'nı kabul\netmediğinden, bu şarkıyı çalamazsın.\nÇalmak için, Seçenekler Menü'sünden\nayarı değiştir.",
+ "turkishFontType":2,
+ "arabicText":"حيث أنك لم توافق على\nسياسة الخصوصية. تعذر تشغيل هذه الأغنية\n للتشغيل، عدّل إعدادات قائمة الخيارات.",
+ "arabicFontType":2,
+ "dutchText":"Dit liedje kan niet afgespeeld worden omdat je ons \nPrivacybeleid niet hebt geaccepteerd.\nPas de instellingen aan in Opties om het toch af te spelen.",
+ "dutchFontType":2,
+ "chineseSText":"由于未同意数据传输政策,无法游玩此乐曲。\n若要游玩,请在“游戏设定”中变更同意声明。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_onpu",
+ "japaneseText":"音符の調整",
+ "englishUsText":"Adjust Music Notes",
+ "englishUsFontType":3,
+ "frenchText":"Ajustement des notes",
+ "frenchFontType":3,
+ "italianText":"Regolazione delle note",
+ "italianFontType":3,
+ "germanText":"Noten anpassen",
+ "germanFontType":3,
+ "spanishText":"Ajustes de notas",
+ "spanishFontType":3,
+ "chineseTText":"調整音符",
+ "chineseTFontType":1,
+ "koreanText":"음표 조정",
+ "koreanFontType":2,
+ "portugueseText":"Ajustar notas musicais",
+ "portugueseFontType":2,
+ "russianText":"Изменение нот",
+ "russianFontType":2,
+ "turkishText":"Müzik Notasını Ayarla",
+ "turkishFontType":2,
+ "arabicText":"ضبط النوتات الموسيقية",
+ "arabicFontType":2,
+ "dutchText":"Muzieknoten aanpassen",
+ "dutchFontType":2,
+ "chineseSText":"调整音符",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_volume",
+ "japaneseText":"音量バランスの設定",
+ "englishUsText":"Volume Balance",
+ "englishUsFontType":3,
+ "frenchText":"Équilibre du volume",
+ "frenchFontType":3,
+ "italianText":"Bilanciamento del volume",
+ "italianFontType":3,
+ "germanText":"Lautstärke-Balance einstellen",
+ "germanFontType":3,
+ "spanishText":"Balance de volumen",
+ "spanishFontType":3,
+ "chineseTText":"音量平衡設定",
+ "chineseTFontType":1,
+ "koreanText":"음량 밸런스 설정",
+ "koreanFontType":2,
+ "portugueseText":"Volume",
+ "portugueseFontType":2,
+ "russianText":"Настройки звука",
+ "russianFontType":2,
+ "turkishText":"Ses Dengesi",
+ "turkishFontType":2,
+ "arabicText":"توازن الصوت",
+ "arabicFontType":2,
+ "dutchText":"Volumebalans",
+ "dutchFontType":2,
+ "chineseSText":"音量平衡设定",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_taiko",
+ "japaneseText":"タッチ太鼓の設定",
+ "englishUsText":"Touch Drum",
+ "englishUsFontType":3,
+ "frenchText":"Tambour tactile",
+ "frenchFontType":3,
+ "italianText":"Impostazioni touch",
+ "italianFontType":3,
+ "germanText":"Touch-Trommel einstellen",
+ "germanFontType":3,
+ "spanishText":"Tambor táctil",
+ "spanishFontType":3,
+ "chineseTText":"觸控太鼓設定",
+ "chineseTFontType":1,
+ "koreanText":"터치 북 설정",
+ "koreanFontType":2,
+ "portugueseText":"Tambor Touch",
+ "portugueseFontType":2,
+ "russianText":"Настройки барабана",
+ "russianFontType":2,
+ "turkishText":"Davula Dokun",
+ "turkishFontType":2,
+ "arabicText":"طبلة اللمس",
+ "arabicFontType":2,
+ "dutchText":"Drum aanraken",
+ "dutchFontType":2,
+ "chineseSText":"触控太鼓设定",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_performance",
+ "japaneseText":"画面演出の調整",
+ "englishUsText":"Graphics",
+ "englishUsFontType":3,
+ "frenchText":"Affichage",
+ "frenchFontType":3,
+ "italianText":"Impostazioni grafiche",
+ "italianFontType":3,
+ "germanText":"Bildschirminszenierung einstellen",
+ "germanFontType":3,
+ "spanishText":"Calidad de los gráficos",
+ "spanishFontType":3,
+ "chineseTText":"調整畫面演出",
+ "chineseTFontType":1,
+ "koreanText":"화면 연출 조정",
+ "koreanFontType":2,
+ "portugueseText":"Gráficos",
+ "portugueseFontType":2,
+ "russianText":"Настройки экрана выступления",
+ "russianFontType":2,
+ "turkishText":"Grafikler",
+ "turkishFontType":2,
+ "arabicText":"الرسومات",
+ "arabicFontType":2,
+ "dutchText":"Graphics",
+ "dutchFontType":2,
+ "chineseSText":"调整画面演出",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_credit",
+ "japaneseText":"クレジット",
+ "englishUsText":"Credits",
+ "englishUsFontType":3,
+ "frenchText":"Crédits",
+ "frenchFontType":3,
+ "italianText":"Riconoscimenti",
+ "italianFontType":3,
+ "germanText":"Mitwirkende",
+ "germanFontType":3,
+ "spanishText":"Créditos",
+ "spanishFontType":3,
+ "chineseTText":"製作人員名單",
+ "chineseTFontType":1,
+ "koreanText":"크레딧",
+ "koreanFontType":2,
+ "portugueseText":"Créditos",
+ "portugueseFontType":2,
+ "russianText":"Создатели",
+ "russianFontType":2,
+ "turkishText":"Jenerik",
+ "turkishFontType":2,
+ "arabicText":"فريق العمل",
+ "arabicFontType":2,
+ "dutchText":"Credits",
+ "dutchFontType":2,
+ "chineseSText":"制作人员名单",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_policy",
+ "japaneseText":"利用規約・プライバシーポリシー",
+ "englishUsText":"Terms of Service and Privacy Policy",
+ "englishUsFontType":3,
+ "frenchText":"Conditions d'utilisation / Politique de confidentialité",
+ "frenchFontType":3,
+ "italianText":"Condizioni d'uso e politica sulla privacy",
+ "italianFontType":3,
+ "germanText":"Nutzungs-/Datenschutzbestimmungen",
+ "germanFontType":3,
+ "spanishText":"Términos de uso y política de privacidad",
+ "spanishFontType":3,
+ "chineseTText":"服務條款/私隱政策",
+ "chineseTFontType":1,
+ "koreanText":"이용규약・개인정보 정책",
+ "koreanFontType":2,
+ "portugueseText":"Termos de Serviço e Política de Privacidade",
+ "portugueseFontType":2,
+ "russianText":"Условия использования и политика конфиденциальности",
+ "russianFontType":2,
+ "turkishText":"Hizmet Şartları ve Gizlilik Politikası",
+ "turkishFontType":2,
+ "arabicText":"بنود الخدمة وسياسة الخصوصية",
+ "arabicFontType":2,
+ "dutchText":"Servicevoorwaarden en privacybeleid",
+ "dutchFontType":2,
+ "chineseSText":"服务条款/隐私政策",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_title",
+ "japaneseText":"ゲームの設定",
+ "englishUsText":"Game Settings",
+ "englishUsFontType":3,
+ "frenchText":"Réglages du jeu",
+ "frenchFontType":3,
+ "italianText":"Impostazioni di sistema",
+ "italianFontType":3,
+ "germanText":"Spieleinstellungen",
+ "germanFontType":3,
+ "spanishText":"Ajustes",
+ "spanishFontType":3,
+ "chineseTText":"遊戲設定",
+ "chineseTFontType":1,
+ "koreanText":"게임 설정",
+ "koreanFontType":2,
+ "portugueseText":"Configurações de jogo",
+ "portugueseFontType":2,
+ "russianText":"Настройки игры",
+ "russianFontType":2,
+ "turkishText":"Oyun Ayarları",
+ "turkishFontType":2,
+ "arabicText":"إعدادات اللعبة",
+ "arabicFontType":2,
+ "dutchText":"Game-instellingen",
+ "dutchFontType":2,
+ "chineseSText":"游戏设定",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_onpu_desc",
+ "japaneseText":"音符の表示位置を調整します\n+の数値が大きいほど音符の表示位置が右側に動きます\n-の数値が大きいほど音符の表示位置が左側に動きます",
+ "englishUsText":"Adjusts where music notes appear on the screen.\n+ values move notes to the right\n- values move notes to the left.",
+ "englishUsFontType":3,
+ "frenchText":"Ajuste l'endroit où les notes de musique apparaissent\nà l'écran. Les valeurs + déplacent les notes\nà droite, les valeurs - à gauche.",
+ "frenchFontType":3,
+ "italianText":"Regola la posizione delle note sullo schermo.\nValori positivi spostano le note a destra,\nvalori negativi le spostano a sinistra.",
+ "italianFontType":3,
+ "germanText":"Position der Noten auf dem Bildschirm einstellen.\nPlus-Werte verschieben die Noten nach rechts,\nMinus-Werte nach links.",
+ "germanFontType":3,
+ "spanishText":"Ajuste de la posición de las notas.\nA mayor valor de +, estas se desplazarán más hacia la derecha.\nA mayor valor de -, estas se desplazarán más a la izquierda.",
+ "spanishFontType":3,
+ "chineseTText":"調整音符的顯示位置\n+的數值越大,音符的顯示位置就越向右側移動\n-的數值越大,音符的顯示位置就越向左側移動",
+ "chineseTFontType":1,
+ "koreanText":"음표가 표시되는 위치를 조정합니다\n+수치가 클수록 음표 표시 위치가 우측으로 이동합니다\n-수치가 클수록 음표 표시 위치가 좌측으로 이동합니다",
+ "koreanFontType":2,
+ "portugueseText":"Ajusta onde as notas musicais aparecem na tela. \n+ move para a direita\n- move para a esquerda.",
+ "portugueseFontType":2,
+ "russianText":"Изменение расположения нот\nЧем больше значение \"+\", тем ноты правее.\nЧем больше значение \"-\", тем ноты левее.",
+ "russianFontType":2,
+ "turkishText":"Müzik notalarının ekranda göründüğü yerleri ayarla.\n+ değerler notayı sağa hareket ettirir\n- değerler ise notayı sola hareket ettirir.",
+ "turkishFontType":2,
+ "arabicText":"ضبط مكان ظهور النوتات الموسيقية على الشاشة. تحرك قيم \n+ النوتات إلى جهة اليمين، بينما تحرك قيم \n- النوتات إلى جهة اليسار.",
+ "arabicFontType":2,
+ "dutchText":"Past aan waar de muzieknoten op het scherm verschijnen.\n+ verplaatst de noten naar rechts,\n- verplaatst de noten naar links.",
+ "dutchFontType":2,
+ "chineseSText":"调整音符的显示位置\n+的数值越大,音符的显示位置就越向右侧移动\n-的数值越大,音符的显示位置就越向左侧移动",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_volume_bgm",
+ "japaneseText":"BGM",
+ "englishUsText":"BGM",
+ "englishUsFontType":3,
+ "frenchText":"Musique",
+ "frenchFontType":3,
+ "italianText":"Musica",
+ "italianFontType":3,
+ "germanText":"Hintergrundmusik",
+ "germanFontType":3,
+ "spanishText":"Música",
+ "spanishFontType":3,
+ "chineseTText":"背景音樂",
+ "chineseTFontType":1,
+ "koreanText":"BGM",
+ "koreanFontType":2,
+ "portugueseText":"Música de fundo",
+ "portugueseFontType":2,
+ "russianText":"Музыка",
+ "russianFontType":2,
+ "turkishText":"Müzik",
+ "turkishFontType":2,
+ "arabicText":"موسيقى الخلفية",
+ "arabicFontType":2,
+ "dutchText":"BGM",
+ "dutchFontType":2,
+ "chineseSText":"背景音乐",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_volume_se",
+ "japaneseText":"効果音",
+ "englishUsText":"Sound Effects",
+ "englishUsFontType":3,
+ "frenchText":"Effets",
+ "frenchFontType":3,
+ "italianText":"Effetti sonori",
+ "italianFontType":3,
+ "germanText":"Soundeffekte",
+ "germanFontType":3,
+ "spanishText":"Efectos",
+ "spanishFontType":3,
+ "chineseTText":"效果音",
+ "chineseTFontType":1,
+ "koreanText":"효과음",
+ "koreanFontType":2,
+ "portugueseText":"Efeitos sonoros",
+ "portugueseFontType":2,
+ "russianText":"Эффекты",
+ "russianFontType":2,
+ "turkishText":"Ses Efektleri",
+ "turkishFontType":2,
+ "arabicText":"المؤثرات الصوتية",
+ "arabicFontType":2,
+ "dutchText":"Geluidseffecten",
+ "dutchFontType":2,
+ "chineseSText":"效果音",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_volume_voice",
+ "japaneseText":"ボイス",
+ "englishUsText":"Voices",
+ "englishUsFontType":3,
+ "frenchText":"Voix",
+ "frenchFontType":3,
+ "italianText":"Dialoghi",
+ "italianFontType":3,
+ "germanText":"Stimme",
+ "germanFontType":3,
+ "spanishText":"Voces",
+ "spanishFontType":3,
+ "chineseTText":"語音",
+ "chineseTFontType":1,
+ "koreanText":"목소리",
+ "koreanFontType":2,
+ "portugueseText":"Vozes",
+ "portugueseFontType":2,
+ "russianText":"Голос",
+ "russianFontType":2,
+ "turkishText":"Sesler",
+ "turkishFontType":2,
+ "arabicText":"الأصوات",
+ "arabicFontType":2,
+ "dutchText":"Stemmen",
+ "dutchFontType":2,
+ "chineseSText":"语音",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_taiko_0",
+ "japaneseText":"まんなか① しっかり表示",
+ "englishUsText":"Center ① - solid",
+ "englishUsFontType":3,
+ "frenchText":"Au centre ①, opaque",
+ "frenchFontType":3,
+ "italianText":"Centro ① - Opaco",
+ "italianFontType":3,
+ "germanText":"Mitte①- Klar anzeigen",
+ "germanFontType":3,
+ "spanishText":"Centro nítido①",
+ "spanishFontType":3,
+ "chineseTText":"中央① 清晰顯示",
+ "chineseTFontType":1,
+ "koreanText":"가운데① 진하게 표시",
+ "koreanFontType":2,
+ "portugueseText":"Centro ① - Nítido",
+ "portugueseFontType":2,
+ "russianText":"Четко в центре ①",
+ "russianFontType":2,
+ "turkishText":"Merkezde ① - opak",
+ "turkishFontType":2,
+ "arabicText":"① في المنتصف - غَيْر شَفّافٍ",
+ "arabicFontType":2,
+ "dutchText":"Midden ① - ondoorschijnend",
+ "dutchFontType":2,
+ "chineseSText":"中央① 清晰显示",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_taiko_1",
+ "japaneseText":"まんなか① うっすら表示",
+ "englishUsText":"Center ① - semitransparent",
+ "englishUsFontType":3,
+ "frenchText":"Au centre ①, transparent",
+ "frenchFontType":3,
+ "italianText":"Centro ① - Semitrasparente",
+ "italianFontType":3,
+ "germanText":"Mitte① - Schwach anzeigen",
+ "germanFontType":3,
+ "spanishText":"Centro semitransparente①",
+ "spanishFontType":3,
+ "chineseTText":"中央① 半透明顯示",
+ "chineseTFontType":1,
+ "koreanText":"가운데① 연하게 표시",
+ "koreanFontType":2,
+ "portugueseText":"Centro ① - Semitransparente",
+ "portugueseFontType":2,
+ "russianText":"Полупрозрачно в центре ①",
+ "russianFontType":2,
+ "turkishText":"Merkezde ① - yarısaydam",
+ "turkishFontType":2,
+ "arabicText":"① في المنتصف - نصف شفّاف",
+ "arabicFontType":2,
+ "dutchText":"Midden ① - doorschijnend",
+ "dutchFontType":2,
+ "chineseSText":"中央① 半透明显示",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_taiko_2",
+ "japaneseText":"左右にわける① しっかり表示",
+ "englishUsText":"Split ① - solid",
+ "englishUsFontType":3,
+ "frenchText":"Partager à gauche et à droite ①, opaque",
+ "frenchFontType":3,
+ "italianText":"Destra/sinistra ① - Opaco",
+ "italianFontType":3,
+ "germanText":"Links & rechts trennen① - Klar anzeigen",
+ "germanFontType":3,
+ "spanishText":"Separado nítido①",
+ "spanishFontType":3,
+ "chineseTText":"左右兩側① 清晰顯示",
+ "chineseTFontType":1,
+ "koreanText":"좌우로 나눔① 진하게 표시",
+ "koreanFontType":2,
+ "portugueseText":"Direita/Esquerda ① - Nítido",
+ "portugueseFontType":2,
+ "russianText":"Четко слева и справа ①",
+ "russianFontType":2,
+ "turkishText":"Ayrı ① - opak",
+ "turkishFontType":2,
+ "arabicText":"① منقسم - غَيْر شَفّافٍ",
+ "arabicFontType":2,
+ "dutchText":"Split screen ① - ondoorschijnend",
+ "dutchFontType":2,
+ "chineseSText":"左右两侧① 清晰显示",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_taiko_3",
+ "japaneseText":"左右にわける① うっすら表示",
+ "englishUsText":"Split ① - semitransparent",
+ "englishUsFontType":3,
+ "frenchText":"Partager à gauche et à droite ①, transparent",
+ "frenchFontType":3,
+ "italianText":"Destra/sinistra ① - Semitrasparente",
+ "italianFontType":3,
+ "germanText":"Links & rechts trennen① - Schwach anzeigen",
+ "germanFontType":3,
+ "spanishText":"Separado semitransparente①",
+ "spanishFontType":3,
+ "chineseTText":"左右兩側① 半透明顯示",
+ "chineseTFontType":1,
+ "koreanText":"좌우로 나눔① 연하게 표시",
+ "koreanFontType":2,
+ "portugueseText":"Direita/Esquerda ① - Semitransparente",
+ "portugueseFontType":2,
+ "russianText":"Полупрозрачно слева и справа ①",
+ "russianFontType":2,
+ "turkishText":"Ayrı ① - yarısaydam",
+ "turkishFontType":2,
+ "arabicText":"① منقسم - نصف شفّاف",
+ "arabicFontType":2,
+ "dutchText":"Split screen ① - halfdoorschijnend",
+ "dutchFontType":2,
+ "chineseSText":"左右两侧① 半透明显示",
+ "chineseSFontType":4
+ },
+ {
+ "key":"policy_datatrans_change_0",
+ "japaneseText":"「許可しない」に変更",
+ "englishUsText":"Change to \"Reject\"",
+ "englishUsFontType":3,
+ "frenchText":"Choisir « Ne pas autoriser »",
+ "frenchFontType":3,
+ "italianText":"Modifica in \"Non autorizzo\"",
+ "italianFontType":3,
+ "germanText":"Ändern zu \"Nicht erlauben\"",
+ "germanFontType":3,
+ "spanishText":"Cambiar a \"No permitir\"",
+ "spanishFontType":3,
+ "chineseTText":"變更為「不允許」",
+ "chineseTFontType":1,
+ "koreanText":"허가하지 않음'으로 변경",
+ "koreanFontType":2,
+ "portugueseText":"Alterar para \"Não autorizar\"",
+ "portugueseFontType":2,
+ "russianText":"Изменить на \"Отклонить\"",
+ "russianFontType":2,
+ "turkishText":"\"Reddet\"e değiştir",
+ "turkishFontType":2,
+ "arabicText":"تغيير إلى \"رفض\"",
+ "arabicFontType":2,
+ "dutchText":"Wijzigen naar Niet toestaan",
+ "dutchFontType":2,
+ "chineseSText":"变更为“不允许”",
+ "chineseSFontType":4
+ },
+ {
+ "key":"policy_datatrans_change_1",
+ "japaneseText":"「許可する」に変更",
+ "englishUsText":"Change to \"Allow\"",
+ "englishUsFontType":3,
+ "frenchText":"Choisir « Autoriser »",
+ "frenchFontType":3,
+ "italianText":"Modifica in \"Autorizzo\"",
+ "italianFontType":3,
+ "germanText":"Ändern zu \"Erlauben\"",
+ "germanFontType":3,
+ "spanishText":"Cambiar a \"Permitir\"",
+ "spanishFontType":3,
+ "chineseTText":"變更為「允許」",
+ "chineseTFontType":1,
+ "koreanText":"허가'로 변경",
+ "koreanFontType":2,
+ "portugueseText":"Alterar para \"Autorizar\"",
+ "portugueseFontType":2,
+ "russianText":"Изменить на \"Разрешить\"",
+ "russianFontType":2,
+ "turkishText":"\"İzin ver\"e değiştir",
+ "turkishFontType":2,
+ "arabicText":"تغيير إلى \"السماح\"",
+ "arabicFontType":2,
+ "dutchText":"Wijzigen naar Toestaan",
+ "dutchFontType":2,
+ "chineseSText":"变更为“允许”",
+ "chineseSFontType":4
+ },
+ {
+ "key":"policy_datatrans_dialog_2decline",
+ "japaneseText":"データ送信を「許可しない」に変更しました",
+ "englishUsText":"You have chosen to \"Reject\" data transmission.",
+ "englishUsFontType":3,
+ "frenchText":"Vous avez choisi « Ne pas autoriser » la transmission des données.",
+ "frenchFontType":3,
+ "italianText":"Invio dei dati modificato in \"Non autorizzo\"",
+ "italianFontType":3,
+ "germanText":"Datenversand zu \"Nicht erlauben\" geändert.",
+ "germanFontType":3,
+ "spanishText":"Has elegido \"No permitir\" la transmisión de datos.",
+ "spanishFontType":3,
+ "chineseTText":"資料傳輸已變更為「不允許」。",
+ "chineseTFontType":1,
+ "koreanText":"데이터 송신을 '허가하지 않음'으로 변경했습니다",
+ "koreanFontType":2,
+ "portugueseText":"Alterado para \"Não autorizar\" transmissão de dados.",
+ "portugueseFontType":2,
+ "russianText":"Вы решили \"Отклонить\" передачу данных.",
+ "russianFontType":2,
+ "turkishText":"Veri iletimini \"reddet\" olarak seçtin.",
+ "turkishFontType":2,
+ "arabicText":"لقد اخترت \"رفض\" نقل البيانات.",
+ "arabicFontType":2,
+ "dutchText":"Instelling voor dataoverdracht is gewijzigd naar Niet toestaan.",
+ "dutchFontType":2,
+ "chineseSText":"数据传输已变更为“不允许”。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"policy_datatrans_dialog_2agree",
+ "japaneseText":"データ送信を「許可する」に変更しました",
+ "englishUsText":"You have chosen to \"Allow\" data transmission.",
+ "englishUsFontType":3,
+ "frenchText":"Vous avez choisi « Autoriser » la transmission des données.",
+ "frenchFontType":3,
+ "italianText":"Invio dei dati modificato in \"Autorizzo\"",
+ "italianFontType":3,
+ "germanText":"Datenversand zu \"Erlauben\" geändert.",
+ "germanFontType":3,
+ "spanishText":"Has elegido \"Permitir\" la transmisión de datos.",
+ "spanishFontType":3,
+ "chineseTText":"資料傳輸已變更為「允許」。",
+ "chineseTFontType":1,
+ "koreanText":"데이터 송신을 '허가'로 변경했습니다",
+ "koreanFontType":2,
+ "portugueseText":"Alterado para \"Autorizar\" transmissão de dados",
+ "portugueseFontType":2,
+ "russianText":"Вы решили \"Разрешить\" передачу данных.",
+ "russianFontType":2,
+ "turkishText":"Veri iletimini \"kabul et\" olarak seçtin.",
+ "turkishFontType":2,
+ "arabicText":"لقد اخترت \"السماح\" بنقل البيانات.",
+ "arabicFontType":2,
+ "dutchText":"Instelling voor dataoverdracht is gewijzigd naar Toestaan. ",
+ "dutchFontType":2,
+ "chineseSText":"数据传输已变更为“允许”。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_onpu_desc_common_ca",
+ "japaneseText":"「キャンセル」変更しないでもどる",
+ "englishUsText":"Cancel and go Back without saving changes",
+ "englishUsFontType":3,
+ "frenchText":"« Annuler » : annule et retour.",
+ "frenchFontType":3,
+ "italianText":"Annulla: torna indietro senza modificare",
+ "italianFontType":3,
+ "germanText":"Abbrechen: Zurück ohne Änderung",
+ "germanFontType":3,
+ "spanishText":"Cancelar: Volver sin hacer cambios",
+ "spanishFontType":3,
+ "chineseTText":"「取消」不進行變更並返回",
+ "chineseTFontType":1,
+ "koreanText":"취소' 변경하지 않고 돌아가기",
+ "koreanFontType":2,
+ "portugueseText":"\"Cancelar\" e voltar sem salvar as mudanças.",
+ "portugueseFontType":2,
+ "russianText":"Отменить и вернуться, не сохраняя изменения",
+ "russianFontType":2,
+ "turkishText":"Değişiklikleri kaydetmeden iptal et ve geri git",
+ "turkishFontType":2,
+ "arabicText":"إلغاء والعودة للخلف بدون حفظ التغييرات",
+ "arabicFontType":2,
+ "dutchText":"Annuleren en teruggaan zonder wijzigingen op te slaan",
+ "dutchFontType":2,
+ "chineseSText":"“取消”不进行变更并返回",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_onpu_desc_common_ok",
+ "japaneseText":"「けってい」変更を保存してもどる",
+ "englishUsText":"Confirm and go Back, saving changes",
+ "englishUsFontType":3,
+ "frenchText":"« Confirmer » : sauvegarde et retour.",
+ "frenchFontType":3,
+ "italianText":"OK: salva le modifiche e torna indietro",
+ "italianFontType":3,
+ "germanText":"Bestätigen: Änderungen speichern und zurück",
+ "germanFontType":3,
+ "spanishText":"Confirmar: Volver guardando los cambios",
+ "spanishFontType":3,
+ "chineseTText":"「確定」儲存變更並返回",
+ "chineseTFontType":1,
+ "koreanText":"결정' 변경사항을 저장하고 돌아가기",
+ "koreanFontType":2,
+ "portugueseText":"\"Confirmar\" E salvar as mudanças, começar a música de novo.",
+ "portugueseFontType":2,
+ "russianText":"Подтвердить и вернуться, сохранив изменения",
+ "russianFontType":2,
+ "turkishText":"Değişiklikleri kaydederek onayla ve geri git",
+ "turkishFontType":2,
+ "arabicText":"تأكيد والعودة مع حفظ التغييرات",
+ "arabicFontType":2,
+ "dutchText":"Bevestigen en teruggaan, wijzigingen worden opgeslagen",
+ "dutchFontType":2,
+ "chineseSText":"“确定”保存变更并返回",
+ "chineseSFontType":4
+ },
+ {
+ "key":"savedata_corrupt_title_0",
+ "japaneseText":"複数のセーブデータがあります。どちらかを選んでください。\n次のセーブ時に、選んだセーブデータで上書きされます。",
+ "englishUsText":"There are multiple save data files. Choose any you'd like.\nThe next time you save, your chosen save data will overwrite it.",
+ "englishUsFontType":3,
+ "frenchText":"Plusieurs données de sauvegarde sont présentes. Veuillez sélectionner les données de sauvegarde.Lors de la prochaine sauvegarde, les données de sauvegarde sélectionnées écraseront les autres.",
+ "frenchFontType":3,
+ "italianText":"Sono stati rilevati più salvataggi. Scegline uno.\nAl prossimo salvataggio, i dati che hai scelto saranno sovrascritti.",
+ "italianFontType":3,
+ "germanText":"Mehrere Speicherdateien liegen vor. Bitte eine auswählen.\nBeim nächsten Speichern wird die gewählte Datei überschrieben.",
+ "germanFontType":3,
+ "spanishText":"Ya existen datos guardados. Elige cuáles quieres usar.\nLos datos se sobrescribirán con los datos que elijas la próxima vez que guardes.",
+ "spanishFontType":3,
+ "chineseTText":"有複數存檔紀錄,請選擇其中之一。\n下次儲存時將會覆蓋所選擇的存檔紀錄。",
+ "chineseTFontType":1,
+ "koreanText":"여러 개의 세이브 데이터가 있습니다. 한 가지를 선택하십시오.\n다음 세이브 시에는 선택된 세이브 데이터로 덮어씁니다.",
+ "koreanFontType":2,
+ "portugueseText":"Há muitos dados salvos. Escolha um deles. \nNa próxima vez que salvar, você atualizará os dados que escolheu.",
+ "portugueseFontType":2,
+ "russianText":"Есть несколько сохранений. Выберите одно из них.\nПри следующем сохранении данные будут перезаписаны.",
+ "russianFontType":2,
+ "turkishText":"Çoklu kaydedilecek veriler var. Dilediğini seç.\nBir sonraki sefere, seçtiğin kaydedilecek olan veri güncellenecektir.",
+ "turkishFontType":2,
+ "arabicText":"هناك العديد من البيانات المحفوظة، اختر التي تريدها.\nيُرجى ملاحظة إنه عند الحفظ في المرة القادمة ستحل بيانات الحفظ الجديدة مكان البيانات المحفوظة.",
+ "arabicFontType":2,
+ "dutchText":"Er zijn meerdere bestanden met opslagdata. Kies degene die je wilt behouden.De volgende keer dat opslaat, zal je geselecteerde opslagdata dit overschrijven.",
+ "dutchFontType":2,
+ "chineseSText":"有复数存档记录,请选择其中之一。\n下次保存时将会覆盖所选择的存档记录。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"savedata_corrupt_title_1",
+ "japaneseText":"セーブデータが見つかりましたので、こちらを使用します。",
+ "englishUsText":"Save data found. This will be used.",
+ "englishUsFontType":3,
+ "frenchText":"Des données de sauvegarde ont été trouvées et seront utilisées.",
+ "frenchFontType":3,
+ "italianText":"È stato rilevato un salvataggio. Il gioco userà questi dati.",
+ "italianFontType":3,
+ "germanText":"Da eine Speicherdatei gefunden wurde, wird diese verwendet.",
+ "germanFontType":3,
+ "spanishText":"Se utilizarán los datos guardados encontrados.",
+ "spanishFontType":3,
+ "chineseTText":"已找到存檔紀錄,將使用此紀錄。",
+ "chineseTFontType":1,
+ "koreanText":"세이브 데이터를 찾았습니다. 해당 데이터를 사용합니다.",
+ "koreanFontType":2,
+ "portugueseText":"Usar estes dados salvos encontrados.",
+ "portugueseFontType":2,
+ "russianText":"Были найдены сохраненные данные. Используем их.",
+ "russianFontType":2,
+ "turkishText":"Kaydedilmiş veri bulundu. Bu veri kullanılacaktır.",
+ "turkishFontType":2,
+ "arabicText":"تم العثور على بيانات حفظ، سيتم استخدام هذه البيانات.",
+ "arabicFontType":2,
+ "dutchText":"Opslagdata gevonden. Dit wordt gebruikt.",
+ "dutchFontType":2,
+ "chineseSText":"已找到存档记录,将使用此记录。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"savedata_corrupt_panel_0",
+ "japaneseText":"%1に、\n%2から保存(本体に保存)",
+ "englishUsText":"Saved from %2\nto device on %1",
+ "englishUsFontType":3,
+ "frenchText":"Sauvegarde depuis \n%2 sur l'appareil le %1",
+ "frenchFontType":3,
+ "italianText":"Salvato da %2 il giorno \n%1 (salvataggio su dispositivo)",
+ "italianFontType":3,
+ "germanText":"Am %1\n von %2 auf Gerät gespeichert",
+ "germanFontType":3,
+ "spanishText":"Guardado el %1\nel día %2 (guardado en el dispositivo).",
+ "spanishFontType":3,
+ "chineseTText":"於%1\n自%2儲存(儲存至裝置)",
+ "chineseTFontType":1,
+ "koreanText":"%1에\n%2의 내용을 저장(본체에 저장)",
+ "koreanFontType":2,
+ "portugueseText":"Salvo de %2\n para dispositivo em %1",
+ "portugueseFontType":2,
+ "russianText":"Сохранение %2\nв %1 (в память устройства).",
+ "russianFontType":2,
+ "turkishText":"%1 tarihinde %2\n cihazına kaydedildi",
+ "turkishFontType":2,
+ "arabicText":"تم الحفظ من %2\nإلى الجهاز في %1",
+ "arabicFontType":2,
+ "dutchText":"Opgeslagen vanaf %2\nnaar apparaat op %1",
+ "dutchFontType":2,
+ "chineseSText":"于%1\n自%2储存(储存至装置)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"savedata_corrupt_panel_1",
+ "japaneseText":"%1に、\n%2から保存(iCloudに保存)",
+ "englishUsText":"Saved from %2\nto iCloud on %1",
+ "englishUsFontType":3,
+ "frenchText":"Sauvegarde depuis \n%2 sur iCloud le %1",
+ "frenchFontType":3,
+ "italianText":"Salvato da %2 il giorno \n%1 (salvataggio su iCloud)",
+ "italianFontType":3,
+ "germanText":"Am %1\n von %2 auf iCloud gespeichert",
+ "germanFontType":3,
+ "spanishText":"Guardado el %1\nel día %2 (guardado en iCloud).",
+ "spanishFontType":3,
+ "chineseTText":"於%1\n自%2儲存(儲存至iCloud)",
+ "chineseTFontType":1,
+ "koreanText":"%1에\n%2의 내용을 저장(iCloud에 저장)",
+ "koreanFontType":2,
+ "portugueseText":"Salvo de %2\n para iCloud em %1",
+ "portugueseFontType":2,
+ "russianText":"Сохранение %2\nв %1 (в iCloud).",
+ "russianFontType":2,
+ "turkishText":"%1 tarihinde %2\n iCloud hesabına kaydedildi",
+ "turkishFontType":2,
+ "arabicText":"تم الحفظ من %2\nإلى iCloud في %1",
+ "arabicFontType":2,
+ "dutchText":"Opgeslagen vanaf %2\nnaar iCloud op %1",
+ "dutchFontType":2,
+ "chineseSText":"于%1\n自%2储存(储存至iCloud)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tamatebako_badge_new",
+ "japaneseText":"NEW!",
+ "englishUsText":"NEW!",
+ "englishUsFontType":3,
+ "frenchText":"NOUVEAU !",
+ "frenchFontType":3,
+ "italianText":"NUOVO!",
+ "italianFontType":3,
+ "germanText":"NEU!",
+ "germanFontType":3,
+ "spanishText":"¡NUEVO!",
+ "spanishFontType":3,
+ "chineseTText":"NEW!",
+ "chineseTFontType":1,
+ "koreanText":"NEW!",
+ "koreanFontType":2,
+ "portugueseText":"NOVO!",
+ "portugueseFontType":2,
+ "russianText":"НОВИНКА!",
+ "russianFontType":2,
+ "turkishText":"YENİ!",
+ "turkishFontType":2,
+ "arabicText":"جديد!",
+ "arabicFontType":2,
+ "dutchText":"NIEUW!",
+ "dutchFontType":2,
+ "chineseSText":"NEW!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tamatebako_desc_neiro",
+ "japaneseText":"「演奏オプション」で変更できるよ!",
+ "englishUsText":"Set this up in \"Customize Gameplay\"!",
+ "englishUsFontType":3,
+ "frenchText":"À changer dans « Options de partie » !",
+ "frenchFontType":3,
+ "italianText":"Cambialo nelle Opzioni della sessione!",
+ "italianFontType":3,
+ "germanText":"Unter \"Musik-Optionen\" einstellen!",
+ "germanFontType":3,
+ "spanishText":"¡Cámbialo en el menú Personalización!",
+ "spanishFontType":3,
+ "chineseTText":"可以在「演奏選項」變更喔!",
+ "chineseTFontType":1,
+ "koreanText":"연주 옵션'에서 변경할 수 있어!",
+ "koreanFontType":2,
+ "portugueseText":"Altere em \"Personalizar\"!",
+ "portugueseFontType":2,
+ "russianText":"Изменить \"Настройки исполнения\"!",
+ "russianFontType":2,
+ "turkishText":"\"Özel Parametreler\"den ayarla!",
+ "turkishFontType":2,
+ "arabicText":"قم بإعدادها في \"المعلمات المخصصة\"!",
+ "arabicFontType":2,
+ "dutchText":"Pas het aan bij Speelopties!",
+ "dutchFontType":2,
+ "chineseSText":"可以在“演奏选项”变更哦!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tamatebako_desc_others",
+ "japaneseText":"「きせかえ画面」で変更できるよ!",
+ "englishUsText":"Set this up in \"Costumes\"!",
+ "englishUsFontType":3,
+ "frenchText":"À changer dans « Costumes » !",
+ "frenchFontType":3,
+ "italianText":"Cambialo nella schermata Costumi",
+ "italianFontType":3,
+ "germanText":"Unter \"Kostüm-Optionen\" einstellen!",
+ "germanFontType":3,
+ "spanishText":"¡Cámbialo en el menú Trajes!",
+ "spanishFontType":3,
+ "chineseTText":"可以在「換裝畫面」變更喔!",
+ "chineseTFontType":1,
+ "koreanText":"꾸미기 화면'에서 변경할 수 있어!",
+ "koreanFontType":2,
+ "portugueseText":"Altere em \"Fantasias\"!",
+ "portugueseFontType":2,
+ "russianText":"Изменить \"Костюмы\"!",
+ "russianFontType":2,
+ "turkishText":"\"Kostümler\"den ayarla!",
+ "turkishFontType":2,
+ "arabicText":"قم بإعدادها في \"الأزياء\"!",
+ "arabicFontType":2,
+ "dutchText":"Wijzig het in Kostuums!",
+ "dutchFontType":2,
+ "chineseSText":"可以在“换装画面”变更哦!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tutorial_song_lyrics_0",
+ "japaneseText":"おんぷぷっぷ おんぷりぷっぷ",
+ "englishUsText":"Onpu pupu Onpuripupu",
+ "englishUsFontType":3,
+ "frenchText":"Taraboum boum ! \nTatararaboum !",
+ "frenchFontType":3,
+ "italianText":"Onpappapà! Onparipapà!",
+ "italianFontType":3,
+ "germanText":"Onpu pupu Onpuripupu",
+ "germanFontType":3,
+ "spanishText":"¡Do, don, notas!\n¡Do, don, nota, don!",
+ "spanishFontType":3,
+ "chineseTText":"音符符符,音符哩符符",
+ "chineseTFontType":1,
+ "koreanText":"온푸 푸푸 온푸리푸푸",
+ "koreanFontType":2,
+ "portugueseText":"Onpu pupu Onpuripupu",
+ "portugueseFontType":2,
+ "russianText":"Он-пу пу-пу! Он-пури-пу-пу!",
+ "russianFontType":2,
+ "turkishText":"Onpu pupu Onpuripupu",
+ "turkishFontType":2,
+ "arabicText":"أونبو بوبو\nأونبوريبوبو",
+ "arabicFontType":2,
+ "dutchText":"Onpu pupu Onpuripupu",
+ "dutchFontType":2,
+ "chineseSText":"音符符符!音符音符符!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tutorial_song_lyrics_1",
+ "japaneseText":"太鼓叩いて どどんがどん",
+ "englishUsText":"Let's Tap the Taiko \nDoh don ga don",
+ "englishUsFontType":3,
+ "frenchText":"Tapons sur le taiko ! \nDon tokodon",
+ "frenchFontType":3,
+ "italianText":"Suona il tamburo! Do don ga don!",
+ "italianFontType":3,
+ "germanText":"Tippe auf die Taiko!\nDo don ga don!",
+ "germanFontType":3,
+ "spanishText":"¡Toca el tambor! ¡Do, don, ga, don!",
+ "spanishFontType":3,
+ "chineseTText":"來打太鼓囉,咚咚嘎咚",
+ "chineseTFontType":1,
+ "koreanText":"북을 치자 도 동 가 동",
+ "koreanFontType":2,
+ "portugueseText":"Vamos tocar o Taiko, doh don ga don!",
+ "portugueseFontType":2,
+ "russianText":"Бьем в барабан, до-дон га-дон!",
+ "russianFontType":2,
+ "turkishText":"Hadi Taiko'ya tıklayalım\nDoh don ga don",
+ "turkishFontType":2,
+ "arabicText":"دعنا نطرق طبلة التايكو\nدوه دون جا دون\n",
+ "arabicFontType":2,
+ "dutchText":"Tap op de Taiko Doh don ga don",
+ "dutchFontType":2,
+ "chineseSText":"敲打太鼓,咚咚锵咚",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tutorial_song_lyrics_2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"Boum badaboum",
+ "frenchFontType":3,
+ "italianText":"Dodon ga don!",
+ "italianFontType":3,
+ "germanText":"Do-Don Don",
+ "germanFontType":3,
+ "spanishText":"¡Do-don y más don!",
+ "spanishFontType":3,
+ "chineseTText":"咚咚響咚",
+ "chineseTFontType":1,
+ "koreanText":"쿠쿵 딱쿵",
+ "koreanFontType":2,
+ "portugueseText":"TUM TUM TUM",
+ "portugueseFontType":2,
+ "russianText":"Дон-дон-дон",
+ "russianFontType":2,
+ "turkishText":"Do don ga don",
+ "turkishFontType":2,
+ "arabicText":"دو دون جا دون",
+ "arabicFontType":2,
+ "dutchText":"Boem ba-da-boem",
+ "dutchFontType":2,
+ "chineseSText":"咚咚响咚",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tutorial_song_lyrics_3",
+ "japaneseText":"お祭り騒ぎで どどんがどん",
+ "englishUsText":"Just let all your feelings go! \nDoh don ga don",
+ "englishUsFontType":3,
+ "frenchText":"Laisse-toi aller ! \nDon tokodon",
+ "frenchFontType":3,
+ "italianText":"Lasciati andare! Do don ga don!",
+ "italianFontType":3,
+ "germanText":"Lass deinen Gefühlen einfach \nfreien Lauf! Doh don ga don",
+ "germanFontType":3,
+ "spanishText":"¡Déjate llevar!\n¡Do, don, ga, don!",
+ "spanishFontType":3,
+ "chineseTText":"釋放所有感情!咚咚嘎咚",
+ "chineseTFontType":1,
+ "koreanText":"근심 걱정 내려놓고! 도 동 가 동",
+ "koreanFontType":2,
+ "portugueseText":"Libere seus sentimentos!\nDoh don ga don!",
+ "portugueseFontType":2,
+ "russianText":"Дай волю своим чувствам!\nДо-дон га-дон!",
+ "russianFontType":2,
+ "turkishText":"Tüm duygularını özgür kıl!\nDoh don ga don",
+ "turkishFontType":2,
+ "arabicText":"فقط دع كل مشاعرك تتدفق!\nدوه دون جا دون\n",
+ "arabicFontType":2,
+ "dutchText":"Laat jezelf gaan! Doh don ga don",
+ "dutchFontType":2,
+ "chineseSText":"放飞心情,咚咚锵咚",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tutorial_song_lyrics_4",
+ "japaneseText":"どどんがどん",
+ "englishUsText":"Doh don ga don",
+ "englishUsFontType":3,
+ "frenchText":"Don tokodon",
+ "frenchFontType":3,
+ "italianText":"Do don ga don!",
+ "italianFontType":3,
+ "germanText":"Do don ga don!",
+ "germanFontType":3,
+ "spanishText":"¡Do, don, ga, don!",
+ "spanishFontType":3,
+ "chineseTText":"咚咚嘎咚",
+ "chineseTFontType":1,
+ "koreanText":"도 동 가 동",
+ "koreanFontType":2,
+ "portugueseText":"Doh don ga don!",
+ "portugueseFontType":2,
+ "russianText":"До-дон га-дон!",
+ "russianFontType":2,
+ "turkishText":"Doh don ga don",
+ "turkishFontType":2,
+ "arabicText":"دوه دون جا دون",
+ "arabicFontType":2,
+ "dutchText":"Doh don ga don",
+ "dutchFontType":2,
+ "chineseSText":"咚咚锵咚",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tutorial_song_lyrics_5",
+ "japaneseText":"横から流れる音符が ワクに重なったら",
+ "englishUsText":"When the notes flowing from \nthe right enter the circle,",
+ "englishUsFontType":3,
+ "frenchText":"Tambourine de tout ton cœur,",
+ "frenchFontType":3,
+ "italianText":"Quando le note che scorrono\nda destra entrano nel cerchio,",
+ "italianFontType":3,
+ "germanText":"Wenn die von rechts fließenden\nNoten im Kreis landen,",
+ "germanFontType":3,
+ "spanishText":"Cuando las notas de un lado\nentren en el círculo,",
+ "spanishFontType":3,
+ "chineseTText":"自右向左流動的音符與框框重疊時",
+ "chineseTFontType":1,
+ "koreanText":"오른쪽에서 흘러오는 음표가\n중앙의 원에 들어왔을 때",
+ "koreanFontType":2,
+ "portugueseText":"Quando as notas da direita\nentrarem no círculo,",
+ "portugueseFontType":2,
+ "russianText":"Когда ноты справа\nпопадают в круг,",
+ "russianFontType":2,
+ "turkishText":"Notalar çemberin sağından\nakıp gidiyorken,",
+ "turkishFontType":2,
+ "arabicText":"عندما تتدفق النغمات من \nاليمين وتدخل إلى الدائرة،",
+ "arabicFontType":2,
+ "dutchText":"Wanneer noten die van rechts \nkomen in de cirkel belanden,",
+ "dutchFontType":2,
+ "chineseSText":"当从右方流泻出的音符进入框框时,",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tutorial_song_lyrics_6",
+ "japaneseText":"画面の太鼓やボタンで心をこめてたたくんだドン!",
+ "englishUsText":"give it all you've got \nand tap the Taiko!",
+ "englishUsFontType":3,
+ "frenchText":"quand les notes arrivent \ndans le cercle !",
+ "frenchFontType":3,
+ "italianText":"tocca il tamburo con tutto\nil tuo entusiasmo!",
+ "italianFontType":3,
+ "germanText":"gib alles, was du hast, \nund tippe auf die Taiko!",
+ "germanFontType":3,
+ "spanishText":"¡da un golpe con todas tus fuerzas!",
+ "spanishFontType":3,
+ "chineseTText":"就用盡全力敲打太鼓!",
+ "chineseTFontType":1,
+ "koreanText":"온 힘을 다해 북을 치는 거야!",
+ "koreanFontType":2,
+ "portugueseText":"bata com vontade no Taiko! ",
+ "portugueseFontType":2,
+ "russianText":"ударяй барабан со всей силы!",
+ "russianFontType":2,
+ "turkishText":"hepsini almaya çalış\nve Taiko'ya tıkla!",
+ "turkishFontType":2,
+ "arabicText":"اعطها كل ما لديك\nوانقر طبلة التايكو!\n",
+ "arabicFontType":2,
+ "dutchText":"geef alles en tap op de Taiko!",
+ "dutchFontType":2,
+ "chineseSText":"全身心投入,敲响太鼓!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tutorial_song_lyrics_7",
+ "japaneseText":"赤い音符は面を叩こう",
+ "englishUsText":"When a red note appears, \ntap the surface of the Taiko!",
+ "englishUsFontType":3,
+ "frenchText":"Tape sur la surface du taiko \nlorsque la note rouge apparaît !",
+ "frenchFontType":3,
+ "italianText":"Quando appare una nota rossa,\ntocca la superficie del tamburo!",
+ "italianFontType":3,
+ "germanText":"Wenn eine rote Note erscheint, \ntippe auf die Oberfläche der Taiko!",
+ "germanFontType":3,
+ "spanishText":"Si la nota es roja,\ntoca la superficie del tambor.",
+ "spanishFontType":3,
+ "chineseTText":"看到紅色音符就敲打鼓面!",
+ "chineseTFontType":1,
+ "koreanText":"빨간 음표가 표시되면 북면을 치자!",
+ "koreanFontType":2,
+ "portugueseText":"Quando uma nota vermelha aparecer,\nbata no centro do Taiko!",
+ "portugueseFontType":2,
+ "russianText":"Когда появляется красная нота,\nударяй по лицевой стороне!",
+ "russianFontType":2,
+ "turkishText":"Kırmızı bir nota belirdiğinde,\nTaiko'nun yüzeyine tıkla!",
+ "turkishFontType":2,
+ "arabicText":"عندما تظهر نغمة حمراء، \nانقر على سطح طبلة التايكو!",
+ "arabicFontType":2,
+ "dutchText":"Wanneer een rode noot verschijnt,\ntap dan op het midden van de Taiko!",
+ "dutchFontType":2,
+ "chineseSText":"出现红色音符时,敲击太鼓鼓面!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tutorial_song_lyrics_8",
+ "japaneseText":"どんどんどん それそれそれ",
+ "englishUsText":"Boom Boom Boom You've got it",
+ "englishUsFontType":3,
+ "frenchText":"Boum ! Boum ! Boum ! \nOui, comme ça !",
+ "frenchFontType":3,
+ "italianText":"Bum bum bum! Così!",
+ "italianFontType":3,
+ "germanText":"Bumm Bumm Bumm!\nDu hast es verstanden.",
+ "germanFontType":3,
+ "spanishText":"¡Bum, bum, bum! ¡Así se hace!",
+ "spanishFontType":3,
+ "chineseTText":"咚咚咚打得好啊",
+ "chineseTFontType":1,
+ "koreanText":"쿵 쿵 쿵 얼쑤",
+ "koreanFontType":2,
+ "portugueseText":"Bum, Bum, Bum! Você conseguiu",
+ "portugueseFontType":2,
+ "russianText":"Бум-бум-бум. Вот так!",
+ "russianFontType":2,
+ "turkishText":"Bum Bum Bum Sende iş var",
+ "turkishFontType":2,
+ "arabicText":"بووم بووم بووم لقد فهمتها",
+ "arabicFontType":2,
+ "dutchText":"Boem Boem Boem \nJe hebt het te pakken!",
+ "dutchFontType":2,
+ "chineseSText":"咚咚咚,你做到了",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tutorial_song_lyrics_9",
+ "japaneseText":"どんどんどん あどんどこどん",
+ "englishUsText":"Boom Boom Boom, \nAh Boom Boom Ba Boom",
+ "englishUsFontType":3,
+ "frenchText":"Boum boum boum \net boum badaboum",
+ "frenchFontType":3,
+ "italianText":"Bum bum bum! Bum bum ba bum!",
+ "italianFontType":3,
+ "germanText":"Bumm Bumm Bumm!\nAh, Bumm Bumm Babumm! ",
+ "germanFontType":3,
+ "spanishText":"¡Bum, bum, bum!\n¡Ah, bum, bum, ba, bum!",
+ "spanishFontType":3,
+ "chineseTText":"咚咚咚,啊咚咚叩咚",
+ "chineseTFontType":1,
+ "koreanText":"쿵 쿵 쿵 얍 쿵 쿵 따 쿵",
+ "koreanFontType":2,
+ "portugueseText":"Bum Bum Bum, Ah Bum Bum Ba Bum",
+ "portugueseFontType":2,
+ "russianText":"Бум-бум-бум, и бум-бум-ба-бум!",
+ "russianFontType":2,
+ "turkishText":"Bum Bum Bum, Ah Bum Bum Ba Bum",
+ "turkishFontType":2,
+ "arabicText":"بووم بووم بووم، \nآه بووم بووم بووم با بووم\n",
+ "arabicFontType":2,
+ "dutchText":"Boem Boem Boem, A\nh Boem Boem Ba Boem",
+ "dutchFontType":2,
+ "chineseSText":"咚咚咚,啊咚咚叩咚",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tutorial_song_lyrics_10",
+ "japaneseText":"青い音符はフチを叩くよ",
+ "englishUsText":"When a blue note appears, \ntap the edge of the Taiko!",
+ "englishUsFontType":3,
+ "frenchText":"Tape sur le bord du taiko \nlorsque la note bleue apparaît !",
+ "frenchFontType":3,
+ "italianText":"Quando appare una nota blu,\ncolpisci il bordo del tamburo!",
+ "italianFontType":3,
+ "germanText":"Wenn eine blaue Note erscheint, \ntippe auf den Rand der Taiko!",
+ "germanFontType":3,
+ "spanishText":"¡Si la nota es azul,\ntoca el borde del tambor!",
+ "spanishFontType":3,
+ "chineseTText":"看到藍色音符就敲打鼓邊!",
+ "chineseTFontType":1,
+ "koreanText":"파란 음표가 표시되면 \n북 테두리를 치자!",
+ "koreanFontType":2,
+ "portugueseText":"Quando uma nota azul aparecer,\nbata na borda do Taiko!",
+ "portugueseFontType":2,
+ "russianText":"Когда появляется синяя нота,\nударяй по боковой стороне!",
+ "russianFontType":2,
+ "turkishText":"Mavi bir nota belirdiğinde,\nTaiko'nun kenarına dokun!",
+ "turkishFontType":2,
+ "arabicText":"عندما تظهر نغمة زرقاء،\nانقر على حافة طبلة التايكو!\n",
+ "arabicFontType":2,
+ "dutchText":"Wanneer een blauwe noot verschijnt, \ntap dan op de rand van de Taiko!",
+ "dutchFontType":2,
+ "chineseSText":"出现蓝色音符时,敲击太鼓鼓边!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tutorial_song_lyrics_11",
+ "japaneseText":"カッカッカッ それ カッカッカッ",
+ "englishUsText":"Tap Tap Tap Yeah \nTap Tap Tap Come on!",
+ "englishUsFontType":3,
+ "frenchText":"Bim bim bim, ouais ! \nBim bim bim, allez !",
+ "frenchFontType":3,
+ "italianText":"Tac tac tac! Così!\nTac tac tac! Forza!",
+ "italianFontType":3,
+ "germanText":"Klopf Klopf Klopf! Ja! \nKlopf Klopf Klopf! Genau so! ",
+ "germanFontType":3,
+ "spanishText":"¡Tap, tap, tap! ¡Así!\n¡Tap, tap, tap! ¡Dale!",
+ "spanishFontType":3,
+ "chineseTText":"咔咔敲啊,快咔咔敲啊!",
+ "chineseTFontType":1,
+ "koreanText":"딱 딱 딱 얼쑤 딱 딱 딱 좋다!",
+ "koreanFontType":2,
+ "portugueseText":"Tá Tá Tá, Assim, Tá Tá Tá, Vamos lá!",
+ "portugueseFontType":2,
+ "russianText":"Стук-стук-стук\nи стук-стук-стук! Давай!",
+ "russianFontType":2,
+ "turkishText":"Tıkla tıkla tıkla evet\ntıkla tıkla tıkla hadi!",
+ "turkishFontType":2,
+ "arabicText":"انقر انقر انقر ياااه \nانقر انقر انقر هيا!\n\n\n",
+ "arabicFontType":2,
+ "dutchText":"Tap Tap Tap Ja! Tap Tap Tap Kom op!",
+ "dutchFontType":2,
+ "chineseSText":"咔咔敲,耶!咔咔敲,来吧!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tutorial_song_lyrics_12",
+ "japaneseText":"やれ カッカッカッ",
+ "englishUsText":"Tap Tap Tap ",
+ "englishUsFontType":3,
+ "frenchText":"Bim bim bim ",
+ "frenchFontType":3,
+ "italianText":"Tac tac tac!",
+ "italianFontType":3,
+ "germanText":"Klopf Klopf Klopf",
+ "germanFontType":3,
+ "spanishText":"¡Tap, tap, tap!",
+ "spanishFontType":3,
+ "chineseTText":"咔咔敲",
+ "chineseTFontType":1,
+ "koreanText":"딱 딱 딱",
+ "koreanFontType":2,
+ "portugueseText":"Tá Tá Tá!",
+ "portugueseFontType":2,
+ "russianText":"Стук-стук-стук!",
+ "russianFontType":2,
+ "turkishText":"Tıkla tıkla tıkla",
+ "turkishFontType":2,
+ "arabicText":"انقر انقر انقر",
+ "arabicFontType":2,
+ "dutchText":"Tap Tap Tap ",
+ "dutchFontType":2,
+ "chineseSText":"咔咔敲 ",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tutorial_song_lyrics_13",
+ "japaneseText":"黄色い音符は ひたすら連打",
+ "englishUsText":"When you SEE a yellow note, \ndo a big drum roll!",
+ "englishUsFontType":3,
+ "frenchText":"Quand tu vois une note jaune, \nfais un roulement de tambour !",
+ "frenchFontType":3,
+ "italianText":"Quando vedi una nota gialla,\nfai un rullo di tamburo!",
+ "italianFontType":3,
+ "germanText":"Bei einer gelben Note machst du \neinen großen Trommelwirbel!",
+ "germanFontType":3,
+ "spanishText":"Si la nota es amarilla,\n¡es la hora del redoble!",
+ "spanishFontType":3,
+ "chineseTText":"看到黃色音符就拼命連打!",
+ "chineseTFontType":1,
+ "koreanText":"노란 음표가 보이면 \n계속해서 북을 연타!",
+ "koreanFontType":2,
+ "portugueseText":"Quando você vê uma nota amarela,\nrufe o Taiko!",
+ "portugueseFontType":2,
+ "russianText":"Когда ВИДИШЬ желтую ноту,\nвремя для барабанной дроби!",
+ "russianFontType":2,
+ "turkishText":"Sarı bir nota gördüğünde,\ntrampeti etkili bir şekilde çal!",
+ "turkishFontType":2,
+ "arabicText":"عندما ترى نغمة صفراء،\nقم بحركة درم رول كبيرة!\n",
+ "arabicFontType":2,
+ "dutchText":"Wanneer je een gele noot ziet,\ntrommel dan heel snel!",
+ "dutchFontType":2,
+ "chineseSText":"看到黄色音符时,来一场紧锣密鼓吧!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tutorial_song_lyrics_14",
+ "japaneseText":"おっきな音符は両手でたたけば",
+ "englishUsText":"For large notes, \nTap the Taiko with two fingers. ",
+ "englishUsFontType":3,
+ "frenchText":"Pour les grosses notes, tape\nsur le taiko avec deux doigts.",
+ "frenchFontType":3,
+ "italianText":"Per le note grandi, tocca\nil tamburo con due dita.",
+ "italianFontType":3,
+ "germanText":"Bei großen Noten tippst du mit \nzwei Fingern auf die Taiko. ",
+ "germanFontType":3,
+ "spanishText":"Si las notas son grandotas,\nusa los dos dedos y...",
+ "spanishFontType":3,
+ "chineseTText":"看到大型音符就用雙指敲擊太鼓",
+ "chineseTFontType":1,
+ "koreanText":"커다란 음표는 손가락 두 개로 \n북을 치는 거야",
+ "koreanFontType":2,
+ "portugueseText":"Use dois dedos para bater\nnas notas grandes.",
+ "portugueseFontType":2,
+ "russianText":"Большие ноты\nотбивай двумя пальцами.",
+ "russianFontType":2,
+ "turkishText":"Büyük notalar için,\nTaiko'ya iki parmakla tıkla.",
+ "turkishFontType":2,
+ "arabicText":"للنغمات الكبيرة، \nانقر طبلة التايكو بإصبعين.\n",
+ "arabicFontType":2,
+ "dutchText":"Bij grote noten, \ntap met twee vingers op de Taiko.",
+ "dutchFontType":2,
+ "chineseSText":"碰到大音符时,就两手敲打太鼓吧!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tutorial_song_lyrics_15",
+ "japaneseText":"ワッショイ ワッショイ 高得点",
+ "englishUsText":"Boom Tap Boom Boom Boom",
+ "englishUsFontType":3,
+ "frenchText":"Ouah !! Hooo !! \nQuel super score !",
+ "frenchFontType":3,
+ "italianText":"Bum tac bum bum bum!",
+ "italianFontType":3,
+ "germanText":"Hurra, Hurra! High Score!",
+ "germanFontType":3,
+ "spanishText":"¡Bum, tap, bum, bum, bum!",
+ "spanishFontType":3,
+ "chineseTText":"咚咔敲咚咚",
+ "chineseTFontType":1,
+ "koreanText":"쿵 딱 쿵 쿵",
+ "koreanFontType":2,
+ "portugueseText":"Bum Tá Bum Bum",
+ "portugueseFontType":2,
+ "russianText":"Бум-стук, бум-бум!",
+ "russianFontType":2,
+ "turkishText":"Bum Tıkla Bum Bum",
+ "turkishFontType":2,
+ "arabicText":"بووم انقر بووم بووم",
+ "arabicFontType":2,
+ "dutchText":"Boem Tap Boem Boem",
+ "dutchFontType":2,
+ "chineseSText":"咚,咔咔咔,咚咚咚",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tutorial_song_lyrics_16",
+ "japaneseText":"風船と小づち音符も",
+ "englishUsText":"When a red ballon or \nMallet note appears…",
+ "englishUsFontType":3,
+ "frenchText":"Quand une note en forme \nde ballon apparaît...",
+ "frenchFontType":3,
+ "italianText":"Quando appaiono note\na palloncino o a martello...",
+ "italianFontType":3,
+ "germanText":"Wenn eine rote Ballon- oder \nHammer-Note erscheint ...",
+ "germanFontType":3,
+ "spanishText":"Si las notas\ntienen un globito rojo...",
+ "spanishFontType":3,
+ "chineseTText":"要是看到紅氣球或小槌音符⋯⋯",
+ "chineseTFontType":1,
+ "koreanText":"빨간 풍선이나 \n금망치 음표가 표시되면…",
+ "koreanFontType":2,
+ "portugueseText":"Quando aparecer um balão vermelho\nou uma nota de marreta...",
+ "portugueseFontType":2,
+ "russianText":"Когда ты видишь красный\nшарик или молоточек...",
+ "russianFontType":2,
+ "turkishText":"Kırmızı bir balon ya da sihirli\nbir çekiçle nota gördüğünde…",
+ "turkishFontType":2,
+ "arabicText":"عندما تظهر بالونه حمراء \nأو نغمة المطرقة...\n",
+ "arabicFontType":2,
+ "dutchText":"Wanneer een rode ballon \nof een hamer-noot verschijnt…",
+ "dutchFontType":2,
+ "chineseSText":"出现红色气球或小槌音符时……",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tutorial_song_lyrics_17",
+ "japaneseText":"とにかく連打",
+ "englishUsText":"Do a big drum roll to pop it!",
+ "englishUsFontType":3,
+ "frenchText":"Fais un roulement \nde tambour pour l'éclater !",
+ "frenchFontType":3,
+ "italianText":"Fai un bel rullo di tamburo\nper romperle!",
+ "italianFontType":3,
+ "germanText":"Mach einen großen Trommelwirbel, \num sie zu zerstören!",
+ "germanFontType":3,
+ "spanishText":"¡Haz un redoble frenético!",
+ "spanishFontType":3,
+ "chineseTText":"就拼命連打到極限!",
+ "chineseTFontType":1,
+ "koreanText":"터질 때까지 북을 연타!",
+ "koreanFontType":2,
+ "portugueseText":"Rufe com vontade para estourá-los!",
+ "portugueseFontType":2,
+ "russianText":"барабань без остановки,\nпока он не лопнет!",
+ "russianFontType":2,
+ "turkishText":"Patlatmak için trampeti\netkili bir şekilde çal!",
+ "turkishFontType":2,
+ "arabicText":"افعل حركة درم رول كبيرة لطرقعتها!",
+ "arabicFontType":2,
+ "dutchText":"Trommel dan heel erg snel\nom hem te laten knallen!",
+ "dutchFontType":2,
+ "chineseSText":"那就来个紧锣密鼓吧!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tutorial_song_lyrics_18",
+ "japaneseText":"これが太鼓の達人よ",
+ "englishUsText":"Now that you've learned the basics, \nyou're ready to begin!",
+ "englishUsFontType":3,
+ "frenchText":"Maintenant que tu as compris \nles bases, en avant la musique !",
+ "frenchFontType":3,
+ "italianText":"Ora che hai imparato le basi,\npuoi cominciare!",
+ "italianFontType":3,
+ "germanText":"Da du nun die Grundlagen gelernt \nhast, kannst du anfangen!",
+ "germanFontType":3,
+ "spanishText":"¡Ya está! ¡Ahora lo vas a bordar!",
+ "spanishFontType":3,
+ "chineseTText":"學完了基礎就開始吧!",
+ "chineseTFontType":1,
+ "koreanText":"이제 기본 동작은 배웠으니\n시작해볼까!",
+ "koreanFontType":2,
+ "portugueseText":"Agora que você aprendeu o básico,\nestá pronto para começar!",
+ "portugueseFontType":2,
+ "russianText":"Теперь, когда мы освоили основы,\nможно начать!",
+ "russianFontType":2,
+ "turkishText":"Artık temel adımları öğrendin,\n başlamak için hazırsın!",
+ "turkishFontType":2,
+ "arabicText":"والآن بعد أن تعلمت الأساسيات،\nأمستعد للبدء!\n",
+ "arabicFontType":2,
+ "dutchText":"Nu je weet hoe het moet, \nkun je beginnen!",
+ "dutchFontType":2,
+ "chineseSText":"现在你已经掌握了基础知识,随时可以开始咯!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tutorial_song_lyrics_19",
+ "japaneseText":"",
+ "englishUsText":"Keep practicing to become a \nTAIKO NO TATSUJIN!!",
+ "englishUsFontType":3,
+ "frenchText":"Continue à t'entraîner et deviens \nle TAIKO NO TATSUJIN !!",
+ "frenchFontType":3,
+ "italianText":"Continua a esercitarti per\ndiventare un TAIKO NO TATSUJIN!",
+ "italianFontType":3,
+ "germanText":"Übe weiter und werde ein\nTAIKO NO TATSUJIN!!!",
+ "germanFontType":3,
+ "spanishText":"¡Sigue practicando y conviértete \nen todo un TAIKO NO TATSUJIN!",
+ "spanishFontType":3,
+ "chineseTText":"好好練習成為太鼓達人!!",
+ "chineseTFontType":1,
+ "koreanText":"계속 연습해서 \n태고의 달인이 되는 거야!!",
+ "koreanFontType":2,
+ "portugueseText":"Continue praticando até se tornar\num TAIKO NO TATSUJIN!",
+ "portugueseFontType":2,
+ "russianText":"Тренируйся,\nчтобы стать МАСТЕРОМ ТАЙКО!",
+ "russianFontType":2,
+ "turkishText":"TAIKO NO TATSUJIN olmak için\npratik yapmaya devam et!!",
+ "turkishFontType":2,
+ "arabicText":"استمر في التدريب،\nلتصبح تايكو نو تاتسوچين!!\n",
+ "arabicFontType":2,
+ "dutchText":"Blijf oefenen om een \nTAIKO NO TATSUJIN te worden!!!",
+ "dutchFontType":2,
+ "chineseSText":"坚持练习,成为一个太鼓达人吧!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tutorial_song_lyrics_20",
+ "japaneseText":"お祭り騒ぎで どどんがどん",
+ "englishUsText":"Let the festival begin!",
+ "englishUsFontType":3,
+ "frenchText":"On va s'éclater !",
+ "frenchFontType":3,
+ "italianText":"Che il festival abbia inizio!",
+ "italianFontType":3,
+ "germanText":"Lass den Gefühlen freien Lauf! ",
+ "germanFontType":3,
+ "spanishText":"¡Que empiece la fiesta!",
+ "spanishFontType":3,
+ "chineseTText":"祭典開始囉!",
+ "chineseTFontType":1,
+ "koreanText":"축제를 시작하자!",
+ "koreanFontType":2,
+ "portugueseText":"Que comece o festival!",
+ "portugueseFontType":2,
+ "russianText":"Начнем наш фестиваль!",
+ "russianFontType":2,
+ "turkishText":"Festival başlasın!",
+ "turkishFontType":2,
+ "arabicText":"دع الاحتفال يبدأ!",
+ "arabicFontType":2,
+ "dutchText":"Laat het festival beginnen!",
+ "dutchFontType":2,
+ "chineseSText":"开始狂欢吧!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tutorial_song_lyrics_21",
+ "japaneseText":"どどんがどん",
+ "englishUsText":"Doh don ga don",
+ "englishUsFontType":3,
+ "frenchText":"Boum badaboum",
+ "frenchFontType":3,
+ "italianText":"Do don ga don!",
+ "italianFontType":3,
+ "germanText":"Doh don ga don",
+ "germanFontType":3,
+ "spanishText":"¡Do, don, ga, don!",
+ "spanishFontType":3,
+ "chineseTText":"咚咚嘎咚",
+ "chineseTFontType":1,
+ "koreanText":"도 동 가 동",
+ "koreanFontType":2,
+ "portugueseText":"Doh don ga don!",
+ "portugueseFontType":2,
+ "russianText":"До-дон га-дон!",
+ "russianFontType":2,
+ "turkishText":"Doh don ga don",
+ "turkishFontType":2,
+ "arabicText":"دوه دون جا دون",
+ "arabicFontType":2,
+ "dutchText":"Doh don ga don",
+ "dutchFontType":2,
+ "chineseSText":"咚咚锵咚",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tutorial_song_lyrics_22",
+ "japaneseText":"達人目指して 頑張るドン〜",
+ "englishUsText":"Doh don ga don",
+ "englishUsFontType":3,
+ "frenchText":"Boum badaboum",
+ "frenchFontType":3,
+ "italianText":"Do don ga don!",
+ "italianFontType":3,
+ "germanText":"Doh don ga don",
+ "germanFontType":3,
+ "spanishText":"¡Do, don, ga, don!",
+ "spanishFontType":3,
+ "chineseTText":"咚咚嘎咚",
+ "chineseTFontType":1,
+ "koreanText":"도 동 가 동",
+ "koreanFontType":2,
+ "portugueseText":"Doh don ga don!",
+ "portugueseFontType":2,
+ "russianText":"До-дон га-дон!",
+ "russianFontType":2,
+ "turkishText":"Doh don ga don",
+ "turkishFontType":2,
+ "arabicText":"دوه دون جا دون",
+ "arabicFontType":2,
+ "dutchText":"Doh don ga don",
+ "dutchFontType":2,
+ "chineseSText":"咚咚锵咚",
+ "chineseSFontType":4
+ },
+ {
+ "key":"netplay_invited_title",
+ "japaneseText":"%1 さん\nが通信プレイしたいってさ!",
+ "englishUsText":"%1\nwants to play with you!",
+ "englishUsFontType":3,
+ "frenchText":"%1 \nveut faire une partie en ligne !",
+ "frenchFontType":3,
+ "italianText":"%1\nvuole giocare online con te!",
+ "italianFontType":3,
+ "germanText":"%1\nscheint online spielen zu wollen!",
+ "germanFontType":3,
+ "spanishText":"¡%1\nquiere jugar contigo!",
+ "spanishFontType":3,
+ "chineseTText":"%1\n想和你一起通訊遊玩!",
+ "chineseTFontType":1,
+ "koreanText":"%1 씨\n가 통신 플레이를 하고 싶대!",
+ "koreanFontType":2,
+ "portugueseText":"%1\nquer jogar com você!",
+ "portugueseFontType":2,
+ "russianText":"%1\nхочет сыграть вместе!",
+ "russianFontType":2,
+ "turkishText":"%1\nseninle oynamak istiyor!",
+ "turkishFontType":2,
+ "arabicText":"يريد %1 \nاللعب معك!",
+ "arabicFontType":2,
+ "dutchText":"%1\nwil met je spelen!",
+ "dutchFontType":2,
+ "chineseSText":"%1\n想和你一起通信游玩!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"netplay_invited_join",
+ "japaneseText":"参加する!",
+ "englishUsText":"Accept!",
+ "englishUsFontType":3,
+ "frenchText":"Participer !",
+ "frenchFontType":3,
+ "italianText":"Partecipa!",
+ "italianFontType":3,
+ "germanText":"Teilnehmen!",
+ "germanFontType":3,
+ "spanishText":"¡Aceptar!",
+ "spanishFontType":3,
+ "chineseTText":"參加!",
+ "chineseTFontType":1,
+ "koreanText":"참가!",
+ "koreanFontType":2,
+ "portugueseText":"Aceitar!",
+ "portugueseFontType":2,
+ "russianText":"Принять!",
+ "russianFontType":2,
+ "turkishText":"Kabul et!",
+ "turkishFontType":2,
+ "arabicText":"قبول!",
+ "arabicFontType":2,
+ "dutchText":"Accepteren",
+ "dutchFontType":2,
+ "chineseSText":"参加!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"netplay_invited_desc_difficulty",
+ "japaneseText":"むずかしさを選んで参加!",
+ "englishUsText":"Choose difficulty and join the game",
+ "englishUsFontType":3,
+ "frenchText":"Choisis la difficulté pour participer !",
+ "frenchFontType":3,
+ "italianText":"Seleziona la difficoltà e partecipa!",
+ "italianFontType":3,
+ "germanText":"Schwierigkeitsgrad wählen und teilnehmen!",
+ "germanFontType":3,
+ "spanishText":"Elige la dificultad y empieza a jugar.",
+ "spanishFontType":3,
+ "chineseTText":"選擇難度並參加!",
+ "chineseTFontType":1,
+ "koreanText":"난이도를 선택하고 참가!",
+ "koreanFontType":2,
+ "portugueseText":"Selecione o modo e entre no jogo!",
+ "portugueseFontType":2,
+ "russianText":"Выберите сложность и присоединяйтесь",
+ "russianFontType":2,
+ "turkishText":"Zorluğu seç ve katıl",
+ "turkishFontType":2,
+ "arabicText":"اختر مستوى الصعوبة وانضم للعبة",
+ "arabicFontType":2,
+ "dutchText":"Kies een moeilijkheidsgraad ensl uit je aan",
+ "dutchFontType":2,
+ "chineseSText":"选择难度并参加!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"netplay_invited_wait_hostselect",
+ "japaneseText":"モードを選択中みたい。ちょっと待っててください",
+ "englishUsText":"It seems like the game mode is still being chosen. Please wait a moment.",
+ "englishUsFontType":3,
+ "frenchText":"Choix de mode en cours. Veuillez patienter.",
+ "frenchFontType":3,
+ "italianText":"Selezione della modalità in corso. Attendi...",
+ "italianFontType":3,
+ "germanText":"Die Modus-Auswahl erfolgt gerade. Bitte warte einen Moment ...",
+ "germanFontType":3,
+ "spanishText":"Se está eligiendo el modo de juego. Espera un poquito.",
+ "spanishFontType":3,
+ "chineseTText":"對方正在選擇模式,請稍待片刻",
+ "chineseTFontType":1,
+ "koreanText":"모드 선택 중입니다. 잠시만 기다려 주세요.",
+ "koreanFontType":2,
+ "portugueseText":"Escolhendo o modo. Aguarde um momento.",
+ "portugueseFontType":2,
+ "russianText":"Идет выбор режима игры. Пожалуйста, подождите.",
+ "russianFontType":2,
+ "turkishText":"Mod yine de seçiliyor. Beklediğiniz için teşekkürler.",
+ "turkishFontType":2,
+ "arabicText":"يبدو إنه ما يزال يتم اختيار نمط اللعبة. يُرجى الانتظار دقيقة.",
+ "arabicFontType":2,
+ "dutchText":"De spelmodus is nog niet gekozen. Nog even geduld.",
+ "dutchFontType":2,
+ "chineseSText":"对方正在选择模式,请稍待片刻",
+ "chineseSFontType":4
+ },
+ {
+ "key":"netplay_invited_wait_cancel",
+ "japaneseText":"やっぱり…やめときます",
+ "englishUsText":"Maybe another time",
+ "englishUsFontType":3,
+ "frenchText":"Hmm... Peut-être pas finalement.",
+ "frenchFontType":3,
+ "italianText":"Magari un'altra volta...",
+ "italianFontType":3,
+ "germanText":"Lieber doch ... nicht.",
+ "germanFontType":3,
+ "spanishText":"Mejor otro día",
+ "spanishFontType":3,
+ "chineseTText":"果然……還是退出好了",
+ "chineseTFontType":1,
+ "koreanText":"역시… 그만둡니다",
+ "koreanFontType":2,
+ "portugueseText":"Talvez outro dia",
+ "portugueseFontType":2,
+ "russianText":"В другой раз",
+ "russianFontType":2,
+ "turkishText":"Belki başka zaman",
+ "turkishFontType":2,
+ "arabicText":"ربما في يوم آخر",
+ "arabicFontType":2,
+ "dutchText":"Misschien een andere keer",
+ "dutchFontType":2,
+ "chineseSText":"果然……还是退出好了",
+ "chineseSFontType":4
+ },
+ {
+ "key":"netplay_select_title",
+ "japaneseText":"通信プレイをはじめるよ!",
+ "englishUsText":"Let's play online!",
+ "englishUsFontType":3,
+ "frenchText":"Que la partie en ligne commence !",
+ "frenchFontType":3,
+ "italianText":"La partita online sta per cominciare!",
+ "italianFontType":3,
+ "germanText":"Fangen wir mit dem Online-Spiel an!",
+ "germanFontType":3,
+ "spanishText":"¡Vamos a jugar en línea!",
+ "spanishFontType":3,
+ "chineseTText":"開始通訊遊玩!",
+ "chineseTFontType":1,
+ "koreanText":"통신 플레이를 시작할게!",
+ "koreanFontType":2,
+ "portugueseText":"Vamos jogar online!",
+ "portugueseFontType":2,
+ "russianText":"Давайте сыграем онлайн!",
+ "russianFontType":2,
+ "turkishText":"Hadi online oynayalım!",
+ "turkishFontType":2,
+ "arabicText":"دعنا نلعب على الإنترنت!",
+ "arabicFontType":2,
+ "dutchText":"Laten we online spelen!",
+ "dutchFontType":2,
+ "chineseSText":"开始通信游玩!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"netplay_select_song",
+ "japaneseText":"曲:",
+ "englishUsText":"Song:",
+ "englishUsFontType":3,
+ "frenchText":"Chanson :",
+ "frenchFontType":3,
+ "italianText":"Canzone:",
+ "italianFontType":3,
+ "germanText":"Song:",
+ "germanFontType":3,
+ "spanishText":"Canción:",
+ "spanishFontType":3,
+ "chineseTText":"曲名:",
+ "chineseTFontType":1,
+ "koreanText":"곡: ",
+ "koreanFontType":2,
+ "portugueseText":"Música:",
+ "portugueseFontType":2,
+ "russianText":"Песня:",
+ "russianFontType":2,
+ "turkishText":"Şarkı:",
+ "turkishFontType":2,
+ "arabicText":"الأغنية:",
+ "arabicFontType":2,
+ "dutchText":"Lied:",
+ "dutchFontType":2,
+ "chineseSText":"曲名:",
+ "chineseSFontType":4
+ },
+ {
+ "key":"netplay_select_difficulty",
+ "japaneseText":"むずかしさ",
+ "englishUsText":"Difficulty",
+ "englishUsFontType":3,
+ "frenchText":"Difficulté",
+ "frenchFontType":3,
+ "italianText":"Difficoltà",
+ "italianFontType":3,
+ "germanText":"Schwierigkeitsgrad",
+ "germanFontType":3,
+ "spanishText":"Dificultad",
+ "spanishFontType":3,
+ "chineseTText":"難度",
+ "chineseTFontType":1,
+ "koreanText":"난이도",
+ "koreanFontType":2,
+ "portugueseText":"Dificuldade",
+ "portugueseFontType":2,
+ "russianText":"Сложность",
+ "russianFontType":2,
+ "turkishText":"Zorluk",
+ "turkishFontType":2,
+ "arabicText":"الصعوبة",
+ "arabicFontType":2,
+ "dutchText":"Moeilijkheidsgraad",
+ "dutchFontType":2,
+ "chineseSText":"难度",
+ "chineseSFontType":4
+ },
+ {
+ "key":"netplay_select_vs_title",
+ "japaneseText":"対戦モード",
+ "englishUsText":"Battle Mode",
+ "englishUsFontType":3,
+ "frenchText":"Mode duel",
+ "frenchFontType":3,
+ "italianText":"Sfida",
+ "italianFontType":3,
+ "germanText":"Duell-Modus",
+ "germanFontType":3,
+ "spanishText":"Modo competitivo",
+ "spanishFontType":3,
+ "chineseTText":"對戰模式",
+ "chineseTFontType":1,
+ "koreanText":"대전 모드",
+ "koreanFontType":2,
+ "portugueseText":"Batalha",
+ "portugueseFontType":2,
+ "russianText":"Режим дуэли",
+ "russianFontType":2,
+ "turkishText":"Savaş Modu",
+ "turkishFontType":2,
+ "arabicText":"نمط القتال",
+ "arabicFontType":2,
+ "dutchText":"Strijdmodus",
+ "dutchFontType":2,
+ "chineseSText":"对战模式",
+ "chineseSFontType":4
+ },
+ {
+ "key":"netplay_select_vs_desc",
+ "japaneseText":"同じむずかしさで得点をきそいます",
+ "englishUsText":"Compete with the same difficulty",
+ "englishUsFontType":3,
+ "frenchText":"Visez le meilleur score avec le même niveau de difficulté.",
+ "frenchFontType":3,
+ "italianText":"Gareggia alla stessa difficoltà.",
+ "italianFontType":3,
+ "germanText":"Im selben Schwierigkeitsgrad um Punkte kämpfen",
+ "germanFontType":3,
+ "spanishText":"Compite por puntos en la misma dificultad.",
+ "spanishFontType":3,
+ "chineseTText":"在相同難度下競爭得分高低",
+ "chineseTFontType":1,
+ "koreanText":"같은 난이도에서 서로 득점을 겨룹니다",
+ "koreanFontType":2,
+ "portugueseText":"Jogar com o mesmo nível de dificuldade",
+ "portugueseFontType":2,
+ "russianText":"Битва на одном уровне сложности.",
+ "russianFontType":2,
+ "turkishText":"Aynı zorlukta yarış",
+ "turkishFontType":2,
+ "arabicText":"تنافس بنفس درجة الصعوبة",
+ "arabicFontType":2,
+ "dutchText":"Op dezelfde moeilijkheidsgraad spelen",
+ "dutchFontType":2,
+ "chineseSText":"在相同难度下竞争得分高低",
+ "chineseSFontType":4
+ },
+ {
+ "key":"netplay_select_coop_title",
+ "japaneseText":"いっしょに演奏モード",
+ "englishUsText":"Co-op Mode",
+ "englishUsFontType":3,
+ "frenchText":"Mode coopératif",
+ "frenchFontType":3,
+ "italianText":"Sessione in compagnia",
+ "italianFontType":3,
+ "germanText":"Koop-Modus",
+ "germanFontType":3,
+ "spanishText":"Modo cooperativo",
+ "spanishFontType":3,
+ "chineseTText":"合作演奏模式",
+ "chineseTFontType":1,
+ "koreanText":"같이 연주 모드",
+ "koreanFontType":2,
+ "portugueseText":"Modo cooperativo",
+ "portugueseFontType":2,
+ "russianText":"Кооп. режим",
+ "russianFontType":2,
+ "turkishText":"Eş zamanlı Mod",
+ "turkishFontType":2,
+ "arabicText":"النمط التعاوني",
+ "arabicFontType":2,
+ "dutchText":"Multiplayermodus",
+ "dutchFontType":2,
+ "chineseSText":"合作演奏模式",
+ "chineseSFontType":4
+ },
+ {
+ "key":"netplay_select_coop_desc",
+ "japaneseText":"すきなむずかしさで、協力してクリアをめざします",
+ "englishUsText":"Choose your difficulty level and co-operate with friends to clear the song.",
+ "englishUsFontType":3,
+ "frenchText":"Coopérez pour réussir dans le niveau de difficulté de votre choix.",
+ "frenchFontType":3,
+ "italianText":"Collabora alla difficoltà che preferisci.",
+ "italianFontType":3,
+ "germanText":"Songs in beliebigem Schwierigkeitsgrad im Team meistern",
+ "germanFontType":3,
+ "spanishText":"Supera canciones junto a tus amigos en el nivel de dificultad que quieras.",
+ "spanishFontType":3,
+ "chineseTText":"自由選擇難度,同心協力通關",
+ "chineseTFontType":1,
+ "koreanText":"원하는 난이도에서 서로 협력해 클리어합니다",
+ "koreanFontType":2,
+ "portugueseText":"Escolha o nível e jogue com seus amigos para concluir a música.",
+ "portugueseFontType":2,
+ "russianText":"Выберите сложность и сыграйте песню с друзьями.",
+ "russianFontType":2,
+ "turkishText":"Zorluk seviyesini seç ve şarkıyı bitirmek için arkadaşlarında eş zamanlı oyna.",
+ "turkishFontType":2,
+ "arabicText":"اختر مستوى الصعوبة وتعاون أنت وأصدقاؤك للنجاح في الأغنية.",
+ "arabicFontType":2,
+ "dutchText":"Kies je moeilijkheidsgraad en werk samen met je vrienden om het lied met succes te spelen.",
+ "dutchFontType":2,
+ "chineseSText":"自由选择难度,同心协力通关",
+ "chineseSFontType":4
+ },
+ {
+ "key":"netplay_select_single",
+ "japaneseText":"ひとりであそぶ",
+ "englishUsText":"Play solo",
+ "englishUsFontType":3,
+ "frenchText":"Partie en solo",
+ "frenchFontType":3,
+ "italianText":"Gioco in singolo",
+ "italianFontType":3,
+ "germanText":"Alleine spielen",
+ "germanFontType":3,
+ "spanishText":"Jugar solo",
+ "spanishFontType":3,
+ "chineseTText":"單人遊玩",
+ "chineseTFontType":1,
+ "koreanText":"1인 플레이",
+ "koreanFontType":2,
+ "portugueseText":"Jogar sozinho",
+ "portugueseFontType":2,
+ "russianText":"Играть в одиночку",
+ "russianFontType":2,
+ "turkishText":"Tek başına çal",
+ "turkishFontType":2,
+ "arabicText":"اللعب منفردًا",
+ "arabicFontType":2,
+ "dutchText":"Alleen spelen",
+ "dutchFontType":2,
+ "chineseSText":"单人游玩",
+ "chineseSFontType":4
+ },
+ {
+ "key":"netplay_select_cancel",
+ "japaneseText":"やめとく",
+ "englishUsText":"Cancel",
+ "englishUsFontType":3,
+ "frenchText":"Abandonner",
+ "frenchFontType":3,
+ "italianText":"Esci",
+ "italianFontType":3,
+ "germanText":"Beenden",
+ "germanFontType":3,
+ "spanishText":"Cancelar",
+ "spanishFontType":3,
+ "chineseTText":"退出",
+ "chineseTFontType":1,
+ "koreanText":"그만두기",
+ "koreanFontType":2,
+ "portugueseText":"Cancelar",
+ "portugueseFontType":2,
+ "russianText":"Отмена",
+ "russianFontType":2,
+ "turkishText":"İptal et",
+ "turkishFontType":2,
+ "arabicText":"إلغاء",
+ "arabicFontType":2,
+ "dutchText":"Annuleren",
+ "dutchFontType":2,
+ "chineseSText":"退出",
+ "chineseSFontType":4
+ },
+ {
+ "key":"netplay_wait_title",
+ "japaneseText":"ほかのプレイヤーをまってます",
+ "englishUsText":"Waiting for other players",
+ "englishUsFontType":3,
+ "frenchText":"En attente d'autres joueurs",
+ "frenchFontType":3,
+ "italianText":"In attesa di altri giocatori...",
+ "italianFontType":3,
+ "germanText":"Warte auf anderen Spieler ...",
+ "germanFontType":3,
+ "spanishText":"En espera de otros jugadores",
+ "spanishFontType":3,
+ "chineseTText":"正在等待其他玩家",
+ "chineseTFontType":1,
+ "koreanText":"다른 플레이어를 기다리고 있습니다",
+ "koreanFontType":2,
+ "portugueseText":"Aguardando outros jogadores",
+ "portugueseFontType":2,
+ "russianText":"Ожидание других игроков",
+ "russianFontType":2,
+ "turkishText":"Diğer oyuncular bekleniyor",
+ "turkishFontType":2,
+ "arabicText":"في انتظار لاعبين آخرين",
+ "arabicFontType":2,
+ "dutchText":"Wachten op andere spelers",
+ "dutchFontType":2,
+ "chineseSText":"正在等待其他玩家",
+ "chineseSFontType":4
+ },
+ {
+ "key":"netplay_wait_otherstatus_wait",
+ "japaneseText":"まってます",
+ "englishUsText":"Waiting",
+ "englishUsFontType":3,
+ "frenchText":"En attente",
+ "frenchFontType":3,
+ "italianText":"In attesa...",
+ "italianFontType":3,
+ "germanText":"Warte immer noch ...",
+ "germanFontType":3,
+ "spanishText":"En espera",
+ "spanishFontType":3,
+ "chineseTText":"等待中",
+ "chineseTFontType":1,
+ "koreanText":"기다립니다",
+ "koreanFontType":2,
+ "portugueseText":"Aguardando",
+ "portugueseFontType":2,
+ "russianText":"Ожидание",
+ "russianFontType":2,
+ "turkishText":"Bekleniyor",
+ "turkishFontType":2,
+ "arabicText":"يُرجى الانتظار",
+ "arabicFontType":2,
+ "dutchText":"Wachten",
+ "dutchFontType":2,
+ "chineseSText":"等待中",
+ "chineseSFontType":4
+ },
+ {
+ "key":"netplay_wait_otherstatus_quit",
+ "japaneseText":"やめときます",
+ "englishUsText":"Cancel",
+ "englishUsFontType":3,
+ "frenchText":"Abandon",
+ "frenchFontType":3,
+ "italianText":"Abbandona",
+ "italianFontType":3,
+ "germanText":"Beenden",
+ "germanFontType":3,
+ "spanishText":"Salir",
+ "spanishFontType":3,
+ "chineseTText":"退出",
+ "chineseTFontType":1,
+ "koreanText":"그만둡니다",
+ "koreanFontType":2,
+ "portugueseText":"Cancelar",
+ "portugueseFontType":2,
+ "russianText":"Выйти",
+ "russianFontType":2,
+ "turkishText":"İptal et",
+ "turkishFontType":2,
+ "arabicText":"إلغاء",
+ "arabicFontType":2,
+ "dutchText":"Annuleren",
+ "dutchFontType":2,
+ "chineseSText":"退出",
+ "chineseSFontType":4
+ },
+ {
+ "key":"netplay_wait_start",
+ "japaneseText":"はじめる!",
+ "englishUsText":"Begin!",
+ "englishUsFontType":3,
+ "frenchText":"Commencer !",
+ "frenchFontType":3,
+ "italianText":"Iniziamo!",
+ "italianFontType":3,
+ "germanText":"Fangen wir an!",
+ "germanFontType":3,
+ "spanishText":"¡Empezar!",
+ "spanishFontType":3,
+ "chineseTText":"開始遊玩!",
+ "chineseTFontType":1,
+ "koreanText":"시작!",
+ "koreanFontType":2,
+ "portugueseText":"Começar!",
+ "portugueseFontType":2,
+ "russianText":"Начать!",
+ "russianFontType":2,
+ "turkishText":"Başla!",
+ "turkishFontType":2,
+ "arabicText":"ابدأ!",
+ "arabicFontType":2,
+ "dutchText":"Start!",
+ "dutchFontType":2,
+ "chineseSText":"开始游玩!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_title",
+ "japaneseText":"ともだちとつながって、通信プレイであそぼう!",
+ "englishUsText":"Connect and play with friends online!",
+ "englishUsFontType":3,
+ "frenchText":"Connecte-toi avec des amis et jouez ensemble en ligne !",
+ "frenchFontType":3,
+ "italianText":"Collegati con gli amici e gioca online!",
+ "italianFontType":3,
+ "germanText":"Von <&1> auf\n<&0> speichern (Speichern auf iCloud)",
+ "germanFontType":3,
+ "spanishText":"¡Conecta con tus amigos y juega en línea!",
+ "spanishFontType":3,
+ "chineseTText":"和朋友連線,一起通訊遊玩吧!",
+ "chineseTFontType":1,
+ "koreanText":"친구와 연결해서 통신 플레이를 즐기자!",
+ "koreanFontType":2,
+ "portugueseText":"Jogue online com seus amigos!",
+ "portugueseFontType":2,
+ "russianText":"Сыграйте с друзьями онлайн!",
+ "russianFontType":2,
+ "turkishText":"Bağlan ve online olarak arkadaşlarınla oyna!",
+ "turkishFontType":2,
+ "arabicText":"قم بالتوصيل والعب مع أصدقائك على الإنترنت!",
+ "arabicFontType":2,
+ "dutchText":"Maak verbinding en speel online met je vrienden!",
+ "dutchFontType":2,
+ "chineseSText":"和朋友连线,一起通信游玩吧!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_process_0",
+ "japaneseText":"ともだちと同じあいことばを入力してね!",
+ "englishUsText":"Enter the same Secret Code as your friend!",
+ "englishUsFontType":3,
+ "frenchText":"Saisis le même mot de passe que tes amis !",
+ "frenchFontType":3,
+ "italianText":"Inserisci la stessa parola d'ordine dei tuoi amici!",
+ "italianFontType":3,
+ "germanText":"Gib das gleiche Codewort wie dein Spielpartner ein!",
+ "germanFontType":3,
+ "spanishText":"¡Introduce la misma palabra secreta que tu amigo!",
+ "spanishFontType":3,
+ "chineseTText":"和朋友輸入相同的暗號吧!",
+ "chineseTFontType":1,
+ "koreanText":"친구와 같은 암호를 입력해 줘!",
+ "koreanFontType":2,
+ "portugueseText":"Digite a mesma senha que seu amigo!",
+ "portugueseFontType":2,
+ "russianText":"Введите тот же пароль, что и ваш друг!",
+ "russianFontType":2,
+ "turkishText":"Arkadaşınla aynı gizli kelimeyi gir!",
+ "turkishFontType":2,
+ "arabicText":"أدخل نفس كلمة السر كصديقك!",
+ "arabicFontType":2,
+ "dutchText":"Geef dezelfde geheime code in als je vriend!",
+ "dutchFontType":2,
+ "chineseSText":"和朋友输入相同的暗号吧!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_process_1",
+ "japaneseText":"みんなで「つながる」ボタンをタッチ!",
+ "englishUsText":"Tap \"Connect\" to link to your friends!",
+ "englishUsFontType":3,
+ "frenchText":"Touche \"Se connecter\" pour te connecter avec tes amis !",
+ "frenchFontType":3,
+ "italianText":"Tocca il pulsante per collegarti con gli altri!",
+ "italianFontType":3,
+ "germanText":"Tippe auf VERBINDEN, um mit anderen zu spielen!",
+ "germanFontType":3,
+ "spanishText":"¡Toca el botón para conectarte con tus amigos!",
+ "spanishFontType":3,
+ "chineseTText":"大家一起觸碰「連線」按鈕!",
+ "chineseTFontType":1,
+ "koreanText":"모두 함께 '연결' 버튼을 터치!",
+ "koreanFontType":2,
+ "portugueseText":"Pressione \"Conectar\" para conectar-se a seus amigos!",
+ "portugueseFontType":2,
+ "russianText":"Нажми «Подключиться», чтобы связаться с друзьями!",
+ "russianFontType":2,
+ "turkishText":"Arkadaşlarınla bağlanmak için \"Bağlan\"a dokun!",
+ "turkishFontType":2,
+ "arabicText":"انقر على زر \"الاتصال لتنضم إلى أصدقائك!",
+ "arabicFontType":2,
+ "dutchText":"Tik op \"Verbinden\" om te linken naar je vrienden!",
+ "dutchFontType":2,
+ "chineseSText":"大家一起触碰“连线”按钮!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_process_2",
+ "japaneseText":"つながったよ!「はじめる」ボタンをタッチ!",
+ "englishUsText":"You're connected! Tap \"Begin\" to play!",
+ "englishUsFontType":3,
+ "frenchText":"C'est bon ! Touche \"Commencer\" pour jouer !",
+ "frenchFontType":3,
+ "italianText":"Siete collegati! Tocca il pulsante per iniziare!",
+ "italianFontType":3,
+ "germanText":"Du bist verbunden! Tippe auf BEGINNEN!",
+ "germanFontType":3,
+ "spanishText":"¡Conexión activa! ¡Pulsa el botón para empezar!",
+ "spanishFontType":3,
+ "chineseTText":"連線完成!觸碰「開始遊玩」按鈕!",
+ "chineseTFontType":1,
+ "koreanText":"연결됐어! '시작' 버튼을 터치!",
+ "koreanFontType":2,
+ "portugueseText":"Conectados! Pressione \"Iniciar\" para jogar!",
+ "portugueseFontType":2,
+ "russianText":"Соединение установлено! Жми «Начать», чтобы играть!",
+ "russianFontType":2,
+ "turkishText":"Bağlandın! Oynamak için \"Başla\"ya dokun!",
+ "turkishFontType":2,
+ "arabicText":"أنت الآن متصل، انقر على \"بدء\" لتبدأ اللعب!",
+ "arabicFontType":2,
+ "dutchText":"Je bent verbonden! Tik op \"Begin\" om te spelen!",
+ "dutchFontType":2,
+ "chineseSText":"连线完成!碰触“开始游玩”按钮!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_button_0",
+ "japaneseText":"つながる",
+ "englishUsText":"Connect",
+ "englishUsFontType":3,
+ "frenchText":"Se connecter",
+ "frenchFontType":3,
+ "italianText":"Collegati",
+ "italianFontType":3,
+ "germanText":"Verbinden",
+ "germanFontType":3,
+ "spanishText":"Conectar",
+ "spanishFontType":3,
+ "chineseTText":"連線",
+ "chineseTFontType":1,
+ "koreanText":"연결",
+ "koreanFontType":2,
+ "portugueseText":"Conectar",
+ "portugueseFontType":2,
+ "russianText":"Подключиться",
+ "russianFontType":2,
+ "turkishText":"Bağlan",
+ "turkishFontType":2,
+ "arabicText":"اتصال",
+ "arabicFontType":2,
+ "dutchText":"Verbinden",
+ "dutchFontType":2,
+ "chineseSText":"连线",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_button_1",
+ "japaneseText":"ぬける",
+ "englishUsText":"Exit",
+ "englishUsFontType":3,
+ "frenchText":"Sortir",
+ "frenchFontType":3,
+ "italianText":"Esci",
+ "italianFontType":3,
+ "germanText":"Trennen",
+ "germanFontType":3,
+ "spanishText":"Salir",
+ "spanishFontType":3,
+ "chineseTText":"離開",
+ "chineseTFontType":1,
+ "koreanText":"종료",
+ "koreanFontType":2,
+ "portugueseText":"Sair",
+ "portugueseFontType":2,
+ "russianText":"Выйти",
+ "russianFontType":2,
+ "turkishText":"Çıkış",
+ "turkishFontType":2,
+ "arabicText":"خروج",
+ "arabicFontType":2,
+ "dutchText":"Afsluiten",
+ "dutchFontType":2,
+ "chineseSText":"离开",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_desc_0",
+ "japaneseText":"ともだちをサーチしてます・・・",
+ "englishUsText":"Searching for friends...",
+ "englishUsFontType":3,
+ "frenchText":"Recherche des amis en cours...",
+ "frenchFontType":3,
+ "italianText":"Ricerca di amici in corso...",
+ "italianFontType":3,
+ "germanText":"Suche nach Freunden …",
+ "germanFontType":3,
+ "spanishText":"Buscando amigos...",
+ "spanishFontType":3,
+ "chineseTText":"正在搜尋朋友‧‧‧",
+ "chineseTFontType":1,
+ "koreanText":"친구를 찾고 있습니다…",
+ "koreanFontType":2,
+ "portugueseText":"Procurando amigos...",
+ "portugueseFontType":2,
+ "russianText":"Поиск друзей...",
+ "russianFontType":2,
+ "turkishText":"Arkadaş aranıyor…",
+ "turkishFontType":2,
+ "arabicText":"جار البحث عن أصدقاء...",
+ "arabicFontType":2,
+ "dutchText":"Vrienden zoeken…",
+ "dutchFontType":2,
+ "chineseSText":"正在搜寻朋友···",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_desc_1",
+ "japaneseText":"満員だよ!",
+ "englishUsText":"All full!",
+ "englishUsFontType":3,
+ "frenchText":"C'est complet !",
+ "frenchFontType":3,
+ "italianText":"È al completo!",
+ "italianFontType":3,
+ "germanText":"Der Raum ist voll!",
+ "germanFontType":3,
+ "spanishText":"¡No cabe nadie más!",
+ "spanishFontType":3,
+ "chineseTText":"人數已滿!",
+ "chineseTFontType":1,
+ "koreanText":"정원 초과야!",
+ "koreanFontType":2,
+ "portugueseText":"Lotado!",
+ "portugueseFontType":2,
+ "russianText":"Все в сборе!",
+ "russianFontType":2,
+ "turkishText":"Hepsi dolu!",
+ "turkishFontType":2,
+ "arabicText":"كلها ممتلئة!",
+ "arabicFontType":2,
+ "dutchText":"Helemaal vol!",
+ "dutchFontType":2,
+ "chineseSText":"人数已满!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_desc_2",
+ "japaneseText":"同じGame Center ID同士ではつながれないよ!",
+ "englishUsText":"Users with the same Game Center ID can't be connected!",
+ "englishUsFontType":3,
+ "frenchText":"Des utilisateurs avec un Game Center ID identique ne peuvent pas être connectés !",
+ "frenchFontType":3,
+ "italianText":"Non puoi collegarti con un\nID Game Center identico!",
+ "italianFontType":3,
+ "germanText":"Verbindung mit Spielern mit der gleichen Game Center ID ist nicht möglich!",
+ "germanFontType":3,
+ "spanishText":"¡No puedes conectarte con una Game Center ID igual que la tuya!",
+ "spanishFontType":3,
+ "chineseTText":"無法與Game Center ID相同的人連線喔!",
+ "chineseTFontType":1,
+ "koreanText":"같은 Game Center ID 끼리는 연결할 수 없어!",
+ "koreanFontType":2,
+ "portugueseText":"Usuários não podem se conectar com o mesmo Game Center ID!",
+ "portugueseFontType":2,
+ "russianText":"Невозможно подключить пользователей с одинаковым Game Center ID!",
+ "russianFontType":2,
+ "turkishText":"Aynı Game Center ID'ye sahip kullanıcılar bağlanamaz!",
+ "turkishFontType":2,
+ "arabicText":"لا يمكن توصيل المستخدمين الذين لديهم نفس Game Center ID!",
+ "arabicFontType":2,
+ "dutchText":"Gebruikers met hetzelfde Game Center ID kunnen niet worden verbonden.",
+ "dutchFontType":2,
+ "chineseSText":"无法与Game Center ID相同的人连线哦!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_desc_3",
+ "japaneseText":"機内モードがONのときはOFFにしてね",
+ "englishUsText":"Make sure Airplane Mode is OFF.",
+ "englishUsFontType":3,
+ "frenchText":"Éteins le mode avion s'il est activé.",
+ "frenchFontType":3,
+ "italianText":"Se la modalità aereo è attiva, ricordati di disattivarla!",
+ "italianFontType":3,
+ "germanText":"Stelle sicher, dass der Flugmodus ausgeschaltet ist.",
+ "germanFontType":3,
+ "spanishText":"Apaga el modo avión si está activado.",
+ "spanishFontType":3,
+ "chineseTText":"若飛航模式設定為ON,請改為OFF喔",
+ "chineseTFontType":1,
+ "koreanText":"기내 모드 ON일 경우에는 OFF로 바꿔줘!",
+ "koreanFontType":2,
+ "portugueseText":"Certifique-se de que o Modo Avião esteja DESATIVADO.",
+ "portugueseFontType":2,
+ "russianText":"Убедитесь, что режим полета выключен.",
+ "russianFontType":2,
+ "turkishText":"Uçak modunun kapalı olduğundan emin olun.",
+ "turkishFontType":2,
+ "arabicText":"تأكد من إيقاف وضع الطائرة.",
+ "arabicFontType":2,
+ "dutchText":"Zorg ervoor dat de vliegtuigstand UIT staat.",
+ "dutchFontType":2,
+ "chineseSText":"若飞行模式设定为ON,请改为OFF哦",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_desc_4",
+ "japaneseText":"ともだちをタッチすると、最後にあそんだ時のあいことばが入力されるよ!",
+ "englishUsText":"When you touch a friend, the secret code from the last time you played together will be used!",
+ "englishUsFontType":3,
+ "frenchText":"Lorsque tu touches un ami, le dernier mot de passe utilisé sera entré !",
+ "frenchFontType":3,
+ "italianText":"Tocca un amico per inserire la parola d'ordine della vostra ultima partita insieme!",
+ "italianFontType":3,
+ "germanText":"Tippst du einen Freund an, wird das Codewort vom letzten Mal eingegeben!",
+ "germanFontType":3,
+ "spanishText":"Al tocar sobre un amigo se usará la palabra secreta que se usó la última vez.",
+ "spanishFontType":3,
+ "chineseTText":"觸碰朋友,就能自動輸入你們最後遊玩時所用的暗號喔!",
+ "chineseTFontType":1,
+ "koreanText":"친구를 터치하면 마지막 플레이 때 사용된 암호가 입력돼!",
+ "koreanFontType":2,
+ "portugueseText":"Quando você selecionar um amigo, será utilizada a senha da última vez que vocês jogaram juntos! ",
+ "portugueseFontType":2,
+ "russianText":"При нажатии на друга будет использовано секретное слово из вашей последней игры!",
+ "russianFontType":2,
+ "turkishText":"Bir arkadaşına dokunduğunda, çaldığınız son şarkının gizli kelimesi kullanılacak!",
+ "turkishFontType":2,
+ "arabicText":"عندما تلمس صديقًا، سيتم استخدام الكلمة السرية من آخر مرة لعبتم فيها سويًا!",
+ "arabicFontType":2,
+ "dutchText":"Als je een vriend aanraakt, wordt de geheime code van jullie vorige spel gebruikt.",
+ "dutchFontType":2,
+ "chineseSText":"触碰朋友,就能自动输入你们最后游玩时所用的暗号哦!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_search_abort",
+ "japaneseText":"サーチをやめる",
+ "englishUsText":"Stop searching",
+ "englishUsFontType":3,
+ "frenchText":"Arrêter la recherche",
+ "frenchFontType":3,
+ "italianText":"Interrompi la ricerca",
+ "italianFontType":3,
+ "germanText":"Suche beenden",
+ "germanFontType":3,
+ "spanishText":"Dejar de buscar",
+ "spanishFontType":3,
+ "chineseTText":"停止搜尋",
+ "chineseTFontType":1,
+ "koreanText":"친구 찾기 그만두기",
+ "koreanFontType":2,
+ "portugueseText":"Parar a busca",
+ "portugueseFontType":2,
+ "russianText":"Прекратить поиск",
+ "russianFontType":2,
+ "turkishText":"Aramayı sonlandır",
+ "turkishFontType":2,
+ "arabicText":"إيقاف البحث",
+ "arabicFontType":2,
+ "dutchText":"Stoppen met zoeken",
+ "dutchFontType":2,
+ "chineseSText":"停止搜寻",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_friend_modal_title",
+ "japaneseText":"%1年%2月%3日にあそんだよ",
+ "englishUsText":"We played on %3/%2/%1.",
+ "englishUsFontType":3,
+ "frenchText":"A joué le %3/%2/%1.",
+ "frenchFontType":3,
+ "italianText":"La data dell'ultima partita è: %3/%2/%1",
+ "italianFontType":3,
+ "germanText":"Am %3.%2.%1gespielt.",
+ "germanFontType":3,
+ "spanishText":"Jugaste el %3/%2/%1.",
+ "spanishFontType":3,
+ "chineseTText":"於%1年%2月%3日一起遊玩過",
+ "chineseTFontType":1,
+ "koreanText":"%1년 %2월 %3일에 플레이했어",
+ "koreanFontType":2,
+ "portugueseText":"Nos jogamos em %3/%2/%1",
+ "portugueseFontType":2,
+ "russianText":"Дата нашей игры: %3/%2/%1.",
+ "russianFontType":2,
+ "turkishText":"%3/%2/%1 üzerinde oynadık.",
+ "turkishFontType":2,
+ "arabicText":"لقد لعبنا في %2/%3/%1.",
+ "arabicFontType":2,
+ "dutchText":"We speelden op %3/%2/%1.",
+ "dutchFontType":2,
+ "chineseSText":"于%1年%2月%3日一起游玩过",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_friend_modal_log_0",
+ "japaneseText":"対戦モード %4かい",
+ "englishUsText":"Battle Mode (times): %4",
+ "englishUsFontType":3,
+ "frenchText":"Mode duel : %4 fois",
+ "frenchFontType":3,
+ "italianText":"Modalità sfida: %4 volte",
+ "italianFontType":3,
+ "germanText":"Duell-Modus%4-mal",
+ "germanFontType":3,
+ "spanishText":"Modo competitivo (veces): %4",
+ "spanishFontType":3,
+ "chineseTText":"對戰模式 %4次",
+ "chineseTFontType":1,
+ "koreanText":"대전 모드 %4회",
+ "koreanFontType":2,
+ "portugueseText":"Modo Batalha: %4vez(es)",
+ "portugueseFontType":2,
+ "russianText":"Режим дуэли (раз): %4",
+ "russianFontType":2,
+ "turkishText":"Savaş Modu (sefer): %4",
+ "turkishFontType":2,
+ "arabicText":"وضع المنافسة (عدد المرات): %4",
+ "arabicFontType":2,
+ "dutchText":"Strijdmodus (tijden): %4",
+ "dutchFontType":2,
+ "chineseSText":"对战模式 %4次",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_friend_modal_log_1",
+ "japaneseText":"いっしょに演奏モード %5かい",
+ "englishUsText":"Co-op Mode (times): %5",
+ "englishUsFontType":3,
+ "frenchText":"Mode coopération : %5 fois",
+ "frenchFontType":3,
+ "italianText":"Sessione in compagnia: %5 volte",
+ "italianFontType":3,
+ "germanText":"Koop-modus%5-mal",
+ "germanFontType":3,
+ "spanishText":"Modo cooperativo: %5 veces",
+ "spanishFontType":3,
+ "chineseTText":"合作演奏模式 %5次",
+ "chineseTFontType":1,
+ "koreanText":"같이 연주 모드 %5회",
+ "koreanFontType":2,
+ "portugueseText":"Modo Cooperativo: %5vez(es)",
+ "portugueseFontType":2,
+ "russianText":"Кооп. режим (раз): %5",
+ "russianFontType":2,
+ "turkishText":"Eş Zamanlı Mod (sefer): %5",
+ "turkishFontType":2,
+ "arabicText":"النمط التعاوني (عدد المرات): 5 %",
+ "arabicFontType":2,
+ "dutchText":"Multiplayermodus (keer): %5",
+ "dutchFontType":2,
+ "chineseSText":"合作演奏模式 %5次",
+ "chineseSFontType":4
+ },
+ {
+ "key":"policy_datatrans_title",
+ "japaneseText":"データ送信ポリシー",
+ "englishUsText":"Data Transmission Policy",
+ "englishUsFontType":3,
+ "frenchText":"Politique de transmission des données",
+ "frenchFontType":3,
+ "italianText":"Politica sull'invio dei dati",
+ "italianFontType":3,
+ "germanText":"Datenversandsbestimmungen",
+ "germanFontType":3,
+ "spanishText":"Política de transmisión de datos",
+ "spanishFontType":3,
+ "chineseTText":"資料傳輸政策",
+ "chineseTFontType":1,
+ "koreanText":"데이터 송신 정책",
+ "koreanFontType":2,
+ "portugueseText":"Política de Transmissão de Dados",
+ "portugueseFontType":2,
+ "russianText":"Политика передачи данных",
+ "russianFontType":2,
+ "turkishText":"Veri İletim Politikası",
+ "turkishFontType":2,
+ "arabicText":"سياسة نقل البيانات",
+ "arabicFontType":2,
+ "dutchText":"Gegevensoverdrachtsbeleid",
+ "dutchFontType":2,
+ "chineseSText":"数据传输政策",
+ "chineseSFontType":4
+ },
+ {
+ "key":"policy_datatrans_allow",
+ "japaneseText":"許可する",
+ "englishUsText":"Allow",
+ "englishUsFontType":3,
+ "frenchText":"Autoriser",
+ "frenchFontType":3,
+ "italianText":"Autorizzo",
+ "italianFontType":3,
+ "germanText":"Erlauben",
+ "germanFontType":3,
+ "spanishText":"Permitir",
+ "spanishFontType":3,
+ "chineseTText":"允許",
+ "chineseTFontType":1,
+ "koreanText":"허가",
+ "koreanFontType":2,
+ "portugueseText":"Autorizar",
+ "portugueseFontType":2,
+ "russianText":"Разрешить",
+ "russianFontType":2,
+ "turkishText":"İzin ver",
+ "turkishFontType":2,
+ "arabicText":"السماح",
+ "arabicFontType":2,
+ "dutchText":"Toestaan",
+ "dutchFontType":2,
+ "chineseSText":"允许",
+ "chineseSFontType":4
+ },
+ {
+ "key":"policy_datatrans_notallow",
+ "japaneseText":"許可しない",
+ "englishUsText":"Reject",
+ "englishUsFontType":3,
+ "frenchText":"Ne pas autoriser",
+ "frenchFontType":3,
+ "italianText":"Non autorizzo",
+ "italianFontType":3,
+ "germanText":"Nicht erlauben",
+ "germanFontType":3,
+ "spanishText":"No permitir",
+ "spanishFontType":3,
+ "chineseTText":"不允許",
+ "chineseTFontType":1,
+ "koreanText":"허가하지 않음",
+ "koreanFontType":2,
+ "portugueseText":"Não autorizar",
+ "portugueseFontType":2,
+ "russianText":"Отклонить",
+ "russianFontType":2,
+ "turkishText":"Reddet",
+ "turkishFontType":2,
+ "arabicText":"رفض",
+ "arabicFontType":2,
+ "dutchText":"Niet toestaan",
+ "dutchFontType":2,
+ "chineseSText":"不允许",
+ "chineseSFontType":4
+ },
+ {
+ "key":"common_decision",
+ "japaneseText":"けってい",
+ "englishUsText":"Confirm",
+ "englishUsFontType":3,
+ "frenchText":"Confirmer",
+ "frenchFontType":3,
+ "italianText":"OK",
+ "italianFontType":3,
+ "germanText":"Bestätigen",
+ "germanFontType":3,
+ "spanishText":"Confirmar",
+ "spanishFontType":3,
+ "chineseTText":"確定",
+ "chineseTFontType":1,
+ "koreanText":"결정",
+ "koreanFontType":2,
+ "portugueseText":"Confirmar",
+ "portugueseFontType":2,
+ "russianText":"Подтвердить",
+ "russianFontType":2,
+ "turkishText":"Onayla",
+ "turkishFontType":2,
+ "arabicText":"تأكيد",
+ "arabicFontType":2,
+ "dutchText":"Bevestigen",
+ "dutchFontType":2,
+ "chineseSText":"确定",
+ "chineseSFontType":4
+ },
+ {
+ "key":"common_cancel",
+ "japaneseText":"キャンセル",
+ "englishUsText":"Cancel",
+ "englishUsFontType":3,
+ "frenchText":"Annuler",
+ "frenchFontType":3,
+ "italianText":"Annulla",
+ "italianFontType":3,
+ "germanText":"Abbrechen",
+ "germanFontType":3,
+ "spanishText":"Cancelar",
+ "spanishFontType":3,
+ "chineseTText":"取消",
+ "chineseTFontType":1,
+ "koreanText":"취소",
+ "koreanFontType":2,
+ "portugueseText":"Cancelar",
+ "portugueseFontType":2,
+ "russianText":"Отмена",
+ "russianFontType":2,
+ "turkishText":"İptal et",
+ "turkishFontType":2,
+ "arabicText":"إلغاء",
+ "arabicFontType":2,
+ "dutchText":"Annuleren",
+ "dutchFontType":2,
+ "chineseSText":"取消",
+ "chineseSFontType":4
+ },
+ {
+ "key":"common_agree",
+ "japaneseText":"同意します",
+ "englishUsText":"Accept",
+ "englishUsFontType":3,
+ "frenchText":"Accepter",
+ "frenchFontType":3,
+ "italianText":"Accetto",
+ "italianFontType":3,
+ "germanText":"Akzeptieren",
+ "germanFontType":3,
+ "spanishText":"Aceptar",
+ "spanishFontType":3,
+ "chineseTText":"同意",
+ "chineseTFontType":1,
+ "koreanText":"동의",
+ "koreanFontType":2,
+ "portugueseText":"Aceitar",
+ "portugueseFontType":2,
+ "russianText":"Принять",
+ "russianFontType":2,
+ "turkishText":"Kabul et",
+ "turkishFontType":2,
+ "arabicText":"قبول",
+ "arabicFontType":2,
+ "dutchText":"Accepteren",
+ "dutchFontType":2,
+ "chineseSText":"同意",
+ "chineseSFontType":4
+ },
+ {
+ "key":"common_decline",
+ "japaneseText":"同意しません",
+ "englishUsText":"Reject",
+ "englishUsFontType":3,
+ "frenchText":"Ne pas accepter",
+ "frenchFontType":3,
+ "italianText":"Non accetto",
+ "italianFontType":3,
+ "germanText":"Ablehnen",
+ "germanFontType":3,
+ "spanishText":"No aceptar",
+ "spanishFontType":3,
+ "chineseTText":"不同意",
+ "chineseTFontType":1,
+ "koreanText":"동의하지 않음",
+ "koreanFontType":2,
+ "portugueseText":"Não aceitar",
+ "portugueseFontType":2,
+ "russianText":"Отклонить",
+ "russianFontType":2,
+ "turkishText":"Reddet",
+ "turkishFontType":2,
+ "arabicText":"رفض",
+ "arabicFontType":2,
+ "dutchText":"Weigeren",
+ "dutchFontType":2,
+ "chineseSText":"不同意",
+ "chineseSFontType":4
+ },
+ {
+ "key":"common_change",
+ "japaneseText":"変更する",
+ "englishUsText":"Change",
+ "englishUsFontType":3,
+ "frenchText":"Changer",
+ "frenchFontType":3,
+ "italianText":"Modifica",
+ "italianFontType":3,
+ "germanText":"Ändern",
+ "germanFontType":3,
+ "spanishText":"Hacer cambios",
+ "spanishFontType":3,
+ "chineseTText":"變更",
+ "chineseTFontType":1,
+ "koreanText":"변경",
+ "koreanFontType":2,
+ "portugueseText":"Alterar",
+ "portugueseFontType":2,
+ "russianText":"Изменить",
+ "russianFontType":2,
+ "turkishText":"Değiştir",
+ "turkishFontType":2,
+ "arabicText":"تغيير",
+ "arabicFontType":2,
+ "dutchText":"Aanpassen",
+ "dutchFontType":2,
+ "chineseSText":"变更",
+ "chineseSFontType":4
+ },
+ {
+ "key":"common_close",
+ "japaneseText":"閉じる",
+ "englishUsText":"Close",
+ "englishUsFontType":3,
+ "frenchText":"Fermer",
+ "frenchFontType":3,
+ "italianText":"Chiudi",
+ "italianFontType":3,
+ "germanText":"Schließen",
+ "germanFontType":3,
+ "spanishText":"Cerrar",
+ "spanishFontType":3,
+ "chineseTText":"關閉",
+ "chineseTFontType":1,
+ "koreanText":"닫기",
+ "koreanFontType":2,
+ "portugueseText":"Fechar",
+ "portugueseFontType":2,
+ "russianText":"Закрыть",
+ "russianFontType":2,
+ "turkishText":"Kapat",
+ "turkishFontType":2,
+ "arabicText":"إغلاق",
+ "arabicFontType":2,
+ "dutchText":"Sluiten",
+ "dutchFontType":2,
+ "chineseSText":"关闭",
+ "chineseSFontType":4
+ },
+ {
+ "key":"common_back",
+ "japaneseText":"もどる",
+ "englishUsText":"Back",
+ "englishUsFontType":3,
+ "frenchText":"Retour",
+ "frenchFontType":3,
+ "italianText":"Indietro",
+ "italianFontType":3,
+ "germanText":"Zurück",
+ "germanFontType":3,
+ "spanishText":"Volver",
+ "spanishFontType":3,
+ "chineseTText":"返回",
+ "chineseTFontType":1,
+ "koreanText":"돌아가기",
+ "koreanFontType":2,
+ "portugueseText":"Voltar",
+ "portugueseFontType":2,
+ "russianText":"Вернуться",
+ "russianFontType":2,
+ "turkishText":"Geri",
+ "turkishFontType":2,
+ "arabicText":"رجوع",
+ "arabicFontType":2,
+ "dutchText":"Terug",
+ "dutchFontType":2,
+ "chineseSText":"返回",
+ "chineseSFontType":4
+ },
+ {
+ "key":"common_ok",
+ "japaneseText":"OK",
+ "englishUsText":"OK",
+ "englishUsFontType":3,
+ "frenchText":"OK",
+ "frenchFontType":3,
+ "italianText":"OK",
+ "italianFontType":3,
+ "germanText":"OK",
+ "germanFontType":3,
+ "spanishText":"Aceptar",
+ "spanishFontType":3,
+ "chineseTText":"OK",
+ "chineseTFontType":1,
+ "koreanText":"OK",
+ "koreanFontType":2,
+ "portugueseText":"OK",
+ "portugueseFontType":2,
+ "russianText":"OK",
+ "russianFontType":2,
+ "turkishText":"Tamam",
+ "turkishFontType":2,
+ "arabicText":"حسنًا",
+ "arabicFontType":2,
+ "dutchText":"OK",
+ "dutchFontType":2,
+ "chineseSText":"OK",
+ "chineseSFontType":4
+ },
+ {
+ "key":"policy_policy",
+ "japaneseText":"プライバシーポリシー",
+ "englishUsText":"Privacy Policy",
+ "englishUsFontType":3,
+ "frenchText":"Politique de confidentialité",
+ "frenchFontType":3,
+ "italianText":"Politica sulla privacy",
+ "italianFontType":3,
+ "germanText":"Datenschutzbestimmungen",
+ "germanFontType":3,
+ "spanishText":"Política de privacidad",
+ "spanishFontType":3,
+ "chineseTText":"私隱政策",
+ "chineseTFontType":1,
+ "koreanText":"개인정보 정책",
+ "koreanFontType":2,
+ "portugueseText":"Política de Privacidade",
+ "portugueseFontType":2,
+ "russianText":"Политика конфиденциальности",
+ "russianFontType":2,
+ "turkishText":"Gizlilik Politikası",
+ "turkishFontType":2,
+ "arabicText":"سياسة الخصوصية",
+ "arabicFontType":2,
+ "dutchText":"Privacybeleid",
+ "dutchFontType":2,
+ "chineseSText":"隐私政策",
+ "chineseSFontType":4
+ },
+ {
+ "key":"policy_term",
+ "japaneseText":"利用規約",
+ "englishUsText":"Terms of Service",
+ "englishUsFontType":3,
+ "frenchText":"Conditions d'utilisation",
+ "frenchFontType":3,
+ "italianText":"Condizioni d'uso",
+ "italianFontType":3,
+ "germanText":"Nutzungsbestimmungen",
+ "germanFontType":3,
+ "spanishText":"Términos de uso",
+ "spanishFontType":3,
+ "chineseTText":"服務條款",
+ "chineseTFontType":1,
+ "koreanText":"이용규약",
+ "koreanFontType":2,
+ "portugueseText":"Termos de Serviço",
+ "portugueseFontType":2,
+ "russianText":"Условия использования",
+ "russianFontType":2,
+ "turkishText":"Hizmet Şartları",
+ "turkishFontType":2,
+ "arabicText":"شروط الخدمة",
+ "arabicFontType":2,
+ "dutchText":"Servicevoorwaarden",
+ "dutchFontType":2,
+ "chineseSText":"服务条款",
+ "chineseSFontType":4
+ },
+ {
+ "key":"policy_both",
+ "japaneseText":"利用規約・プライバシーポリシー",
+ "englishUsText":"Terms of Service and Privacy Policy",
+ "englishUsFontType":3,
+ "frenchText":"Conditions d'utilisation / Politique de confidentialité",
+ "frenchFontType":3,
+ "italianText":"Condizioni d'uso e politica sulla privacy",
+ "italianFontType":3,
+ "germanText":"Nutzungs-/Datenschutzbestimmungen",
+ "germanFontType":3,
+ "spanishText":"Términos de uso y política de privacidad",
+ "spanishFontType":3,
+ "chineseTText":"服務條款/私隱政策",
+ "chineseTFontType":1,
+ "koreanText":"이용규약・개인정보 정책",
+ "koreanFontType":2,
+ "portugueseText":"Termos de Serviço e Política de Privacidade",
+ "portugueseFontType":2,
+ "russianText":"Условия использования и политика конфиденциальности",
+ "russianFontType":2,
+ "turkishText":"Hizmet Şartları ve Gizlilik Politikası",
+ "turkishFontType":2,
+ "arabicText":"بنود الخدمة وسياسة الخصوصية",
+ "arabicFontType":2,
+ "dutchText":"Servicevoorwaarden en privacybeleid",
+ "dutchFontType":2,
+ "chineseSText":"服务条款/隐私政策",
+ "chineseSFontType":4
+ },
+ {
+ "key":"policy_desc_change",
+ "japaneseText":"こちらを変更すると、いくつかの曲をプレイできなくなります\n変更してよろしいですか?",
+ "englishUsText":"If you make this change, you will no longer be able to play a number of the songs. Make this change anyway?",
+ "englishUsFontType":3,
+ "frenchText":"Si vous effectuez ce changement, vous ne pourrez pas jouer avec certaines chansons.\nConfirmer le changement ?",
+ "frenchFontType":3,
+ "italianText":"Se modifichi queste impostazioni,\nnon potrai più giocare alcune canzoni.\nVuoi davvero effettuare la modifica?",
+ "italianFontType":3,
+ "germanText":"Werden hier Änderungen vorgenommen, können einige Songs nicht\nmehr gespielt werden. Trotzdem fortfahren?",
+ "germanFontType":3,
+ "spanishText":"Si haces este cambio, no podrás jugar a varias canciones. ¿Seguro que quieres realizar el cambio?",
+ "spanishFontType":3,
+ "chineseTText":"若變更此處設定,將無法遊玩部分樂曲。\n確定要變更嗎?",
+ "chineseTFontType":1,
+ "koreanText":"이곳을 변경하면 일부 곡을 플레이할 수 없습니다.\n변경하시겠습니까?",
+ "koreanFontType":2,
+ "portugueseText":"Esta alteração pode deixar algumas músicas indisponíveis. Alterar mesmo assim? ",
+ "portugueseFontType":2,
+ "russianText":"При изменении некоторые песни будут недоступны. Изменить?",
+ "russianFontType":2,
+ "turkishText":"Bu değişikliği yaparsan, şarkıların bir kısmını çalamayacaksın. Yine de bu değişiklik yapılsın mı?",
+ "turkishFontType":2,
+ "arabicText":"إن قمت بإجراء هذا التغيير، فلن تتمكن من لعب بعض الأغاني. أتريد إجراء هذا التغيير على أيّة حال؟",
+ "arabicFontType":2,
+ "dutchText":"Als je deze wijziging opslaat, kun je een aantal liedjes niet meer spelen. Wil je doorgaan? ",
+ "dutchFontType":2,
+ "chineseSText":"若变更此处设定,将无法游玩部分乐曲。\n确定要变更吗?",
+ "chineseSFontType":4
+ },
+ {
+ "key":"policy_error_network",
+ "japaneseText":"サーバーとの通信に失敗しました。\n本体の設定、通信の環境を見直し、あらためてお試しください。",
+ "englishUsText":"Failed to connect to server.\nCheck device settings and connectivity and try again.",
+ "englishUsFontType":3,
+ "frenchText":"La connexion au serveur a échoué.\nVeuillez vérifier les réglages de l'appareil et la connexion,\npuis essayez à nouveau.",
+ "frenchFontType":3,
+ "italianText":"Collegamento al server non riuscito.\nControlla le impostazioni del dispositivo e la connessione, poi riprova.",
+ "italianFontType":3,
+ "germanText":"Verbindungsaufbau zum Server fehlgeschlagen.\nBitte Geräte- und Internet-Einstellungen überprüfen und erneut versuchen.",
+ "germanFontType":3,
+ "spanishText":"La conexión con el servidor ha fallado.\nRevisa la configuración y conexión de tu dispositivo y vuelve a intentarlo.",
+ "spanishFontType":3,
+ "chineseTText":"伺服器通訊失敗。\n請檢查裝置設定、通訊環境後再次嘗試。",
+ "chineseTFontType":1,
+ "koreanText":"서버 통신에 실패했습니다.\n본체 설정, 통신 환경 확인 후 다시 한번 시도하시기 바랍니다.",
+ "koreanFontType":2,
+ "portugueseText":"Falha ao conectar com o servidor. \nVerifique a conexão e as configurações do seu aparelho e tente novamente.",
+ "portugueseFontType":2,
+ "russianText":"Не удалось подключиться к серверу.\nПроверьте настройки устройства и подключение и повторите попытку.",
+ "russianFontType":2,
+ "turkishText":"Sunucuya bağlantı başarısız oldu.\nCihaz ayarlarını ve bağlanabilirliği kontrol et ve yeniden dene.",
+ "turkishFontType":2,
+ "arabicText":"فشل الاتصال بالخادم.\nتحقق من إعدادات الجهاز والاتصال وحاول مرة أخرى.",
+ "arabicFontType":2,
+ "dutchText":"Kon geen verbinding maken met de server.\nControleer je apparaatinstellingen en je verbinding en probeer het opnieuw.",
+ "dutchFontType":2,
+ "chineseSText":"服务器通信失败。\n请检查装置设定、通信环境后再次尝试。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"policy_error_offline",
+ "japaneseText":"ネットワーク機能がOFFのため、通信ができません。\n本体の設定を見直していただき、あらためてお試しください。",
+ "englishUsText":"Unable to connect because network settings are OFF.\nCheck device settings and try again.",
+ "englishUsFontType":3,
+ "frenchText":"Le réseau est désactivé et la connexion ne peut pas être établie.\nVeuillez vérifier les réglages de l'appareil et essayez à nouveau.",
+ "frenchFontType":3,
+ "italianText":"Le funzionalità di rete non sono attive\n e non è possibile collegarsi.\nControlla le impostazioni del dispositivo e riprova.",
+ "italianFontType":3,
+ "germanText":"Da die Internet-Funktion ausgeschaltet ist, kann keine Verbindung hergestellt werden.\nBitte Geräteeinstellungen überprüfen und erneut versuchen.",
+ "germanFontType":3,
+ "spanishText":"No se puede conectar porque la función de red está apagada.\nRevisa la configuración de tu dispositivo y vuelve a intentarlo.",
+ "spanishFontType":3,
+ "chineseTText":"因網路功能為OFF,無法進行通訊。\n請檢查裝置設定後再次嘗試。",
+ "chineseTFontType":1,
+ "koreanText":"네트워크 기능이 OFF이므로 통신이 불가능합니다.\n본체의 설정을 확인 후 다시 한번 시도하시기 바랍니다.",
+ "koreanFontType":2,
+ "portugueseText":"Não foi possível conectar porque as configurações de rede estão DESATIVADAS. ",
+ "portugueseFontType":2,
+ "russianText":"Не удалось подключиться из-за отсутствия сети.\nПроверьте настройки устройства и повторите попытку.",
+ "russianFontType":2,
+ "turkishText":"Ağ seçenekleri KAPALI olduğu için bağlantı gerçekleştirilemedi.\nCihaz ayarlarını kontrol et ve yeniden dene.",
+ "turkishFontType":2,
+ "arabicText":"تعذر الاتصال لأن إعدادات الشبكة مغلقة.\nتحقق من إعدادات الجهاز وحاول مرة أخرى.",
+ "arabicFontType":2,
+ "dutchText":"Kan geen verbinding maken omdat netwerkinstellingen UIT staan.\nControleer je apparaatinstellingen en probeer het opnieuw.",
+ "dutchFontType":2,
+ "chineseSText":"因网络功能为OFF,无法进行通信。\n请检查装置设定后再次尝试。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"policy_change_0",
+ "japaneseText":"「同意しない」に変更",
+ "englishUsText":"Change to \"Reject\"",
+ "englishUsFontType":3,
+ "frenchText":"Changer vers « Ne pas accepter » ",
+ "frenchFontType":3,
+ "italianText":"Modifica in \"Non accetto\"",
+ "italianFontType":3,
+ "germanText":"Ändern in „Akzeptieren\"",
+ "germanFontType":3,
+ "spanishText":"Cambiar a \"No aceptar\"",
+ "spanishFontType":3,
+ "chineseTText":"變更為「不同意」",
+ "chineseTFontType":1,
+ "koreanText":"동의하지 않음'으로 변경",
+ "koreanFontType":2,
+ "portugueseText":"Alterar para \"Rejeitar\"",
+ "portugueseFontType":2,
+ "russianText":"Изменить на \"Отклонить\"",
+ "russianFontType":2,
+ "turkishText":"\"Reddet\" olarak değiştir",
+ "turkishFontType":2,
+ "arabicText":"التغيير إلى \"رفض\"",
+ "arabicFontType":2,
+ "dutchText":"Veranderen naar Weigeren",
+ "dutchFontType":2,
+ "chineseSText":"变更为“不同意”",
+ "chineseSFontType":4
+ },
+ {
+ "key":"policy_change_1",
+ "japaneseText":"「同意する」に変更",
+ "englishUsText":"Change to \"Accept\"",
+ "englishUsFontType":3,
+ "frenchText":"Changer vers « Accepter » ",
+ "frenchFontType":3,
+ "italianText":"Modifica in \"Accetto\"",
+ "italianFontType":3,
+ "germanText":"Ändern in „Ablehnen\"",
+ "germanFontType":3,
+ "spanishText":"Cambiar a \"Aceptar\"",
+ "spanishFontType":3,
+ "chineseTText":"變更為「同意」",
+ "chineseTFontType":1,
+ "koreanText":"동의'로 변경",
+ "koreanFontType":2,
+ "portugueseText":"Alterar para \"Aceitar\"",
+ "portugueseFontType":2,
+ "russianText":"Изменить на \"Принять\"",
+ "russianFontType":2,
+ "turkishText":"\"Kabul et\" olarak değiştir.",
+ "turkishFontType":2,
+ "arabicText":"التغيير إلى \"قبول\"",
+ "arabicFontType":2,
+ "dutchText":"Veranderen naar Accepteren",
+ "dutchFontType":2,
+ "chineseSText":"变更为“同意”",
+ "chineseSFontType":4
+ },
+ {
+ "key":"policy_dialog_2decline",
+ "japaneseText":"プライバシーポリシーを「同意しない」に変更しました",
+ "englishUsText":"You have chosen to \"Reject\" the Privacy Policy.",
+ "englishUsFontType":3,
+ "frenchText":"Vous avez choisi « Ne pas accepter » la politique de confidentialité.",
+ "frenchFontType":3,
+ "italianText":"Politica sulla privacy modificata in \"Non accetto\"",
+ "italianFontType":3,
+ "germanText":"Datenschutzbestimmungen wurden zu „Ablehnen\" geändert.",
+ "germanFontType":3,
+ "spanishText":"Has elegido \"No aceptar\" la política de privacidad.",
+ "spanishFontType":3,
+ "chineseTText":"私隱政策已變更為「不同意」。",
+ "chineseTFontType":1,
+ "koreanText":"개인정보 정책에 '동의하지 않음'으로 변경했습니다",
+ "koreanFontType":2,
+ "portugueseText":"Você escolheu \"Não aceitar\" a Política de Privacidade.",
+ "portugueseFontType":2,
+ "russianText":"Вы отклонили политику конфиденциальности.",
+ "russianFontType":2,
+ "turkishText":"Gizlilik Politikasını \"Reddetmeyi\" seçtin.",
+ "turkishFontType":2,
+ "arabicText":"لقد اخترت \"رفض\" سياسة الخصوصية.",
+ "arabicFontType":2,
+ "dutchText":"Privacybeleid is gewijzigd naar Niet Akkoord.",
+ "dutchFontType":2,
+ "chineseSText":"隐私政策已变更为“不同意”。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"policy_dialog_2agree",
+ "japaneseText":"プライバシーポリシーを「同意する」に変更しました",
+ "englishUsText":"You have chosen to \"Accept\" the Privacy Policy.",
+ "englishUsFontType":3,
+ "frenchText":"Vous avez choisi « Accepter » la politique de confidentialité.",
+ "frenchFontType":3,
+ "italianText":"Politica sulla privacy modificata in \"Accetto\"",
+ "italianFontType":3,
+ "germanText":"Datenschutzbestimmungen wurden zu „Akzeptieren\" geändert.",
+ "germanFontType":3,
+ "spanishText":"Has elegido \"Aceptar\" la política de privacidad.",
+ "spanishFontType":3,
+ "chineseTText":"私隱政策已變更為「同意」。",
+ "chineseTFontType":1,
+ "koreanText":"개인정보 정책에 '동의'로 변경했습니다",
+ "koreanFontType":2,
+ "portugueseText":"Você escolheu \"Aceitar\" a Política de Privacidade.",
+ "portugueseFontType":2,
+ "russianText":"Вы приняли политику конфиденциальности.",
+ "russianFontType":2,
+ "turkishText":"Gizlilik Politikasını \"Kabul etmeyi\" seçtin.",
+ "turkishFontType":2,
+ "arabicText":"لقد اخترت \"قبول\" سياسة الخصوصية.",
+ "arabicFontType":2,
+ "dutchText":"Privacybeleid is gewijzigd naar Akkoord. ",
+ "dutchFontType":2,
+ "chineseSText":"隐私政策已变更为“同意”。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"policy_decline_dialog",
+ "japaneseText":"こちらの設定は「システム設定」であとから変更できます",
+ "englishUsText":"You can change this later through \"System Settings.\"",
+ "englishUsFontType":3,
+ "frenchText":"Ceci peut être modifié dans « Réglages du système ».",
+ "frenchFontType":3,
+ "italianText":"Potrai sempre modificare la scelta in seguito nelle impostazioni.",
+ "italianFontType":3,
+ "germanText":"Diese Einstellung kann später unter Systemeinstellungen geändert werden.",
+ "germanFontType":3,
+ "spanishText":"Puedes cambiar esto más adelante en el menú \"Ajustes\".",
+ "spanishFontType":3,
+ "chineseTText":"此設定之後可在「系統設定」變更。",
+ "chineseTFontType":1,
+ "koreanText":"해당 설정은 '시스템 설정'에서 변경할 수 있습니다.",
+ "koreanFontType":2,
+ "portugueseText":"Você pode alterar esta opção mais tarde em \"Configurações do Sistema\".",
+ "portugueseFontType":2,
+ "russianText":"Вы можете изменить эту опцию в меню \"Настройки системы\".",
+ "russianFontType":2,
+ "turkishText":"Daha sonra \"Sistem Ayarları\"nda bunu değiştirebilirsin.",
+ "turkishFontType":2,
+ "arabicText":"يمكنك تغيير هذا لاحقًا من خلال \"إعدادات النظام.\"",
+ "arabicFontType":2,
+ "dutchText":"Je kunt deze instelling later nog aanpassen in de systeeminstellingen.",
+ "dutchFontType":2,
+ "chineseSText":"此设定之后可在“系统设定”变更。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"pause_title",
+ "japaneseText":"ポーズメニュー",
+ "englishUsText":"Pause Menu",
+ "englishUsFontType":3,
+ "frenchText":"Menu pause",
+ "frenchFontType":3,
+ "italianText":"Menu di pausa",
+ "italianFontType":3,
+ "germanText":"Pausemenü",
+ "germanFontType":3,
+ "spanishText":"Menú de pausa",
+ "spanishFontType":3,
+ "chineseTText":"暫停選單",
+ "chineseTFontType":1,
+ "koreanText":"일시 정지 메뉴",
+ "koreanFontType":2,
+ "portugueseText":"Menu de Pausa",
+ "portugueseFontType":2,
+ "russianText":"Меню паузы",
+ "russianFontType":2,
+ "turkishText":"Duraklatma Menüsü",
+ "turkishFontType":2,
+ "arabicText":"الإيقاف المؤقت للقائمة",
+ "arabicFontType":2,
+ "dutchText":"Pauzemenu",
+ "dutchFontType":2,
+ "chineseSText":"暂停选单",
+ "chineseSFontType":4
+ },
+ {
+ "key":"pause_continue",
+ "japaneseText":"演奏をつづける",
+ "englishUsText":"Continue playing",
+ "englishUsFontType":3,
+ "frenchText":"Continuer la partie",
+ "frenchFontType":3,
+ "italianText":"Continua",
+ "italianFontType":3,
+ "germanText":"Spiel fortsetzen",
+ "germanFontType":3,
+ "spanishText":"Seguir jugando",
+ "spanishFontType":3,
+ "chineseTText":"繼續演奏",
+ "chineseTFontType":1,
+ "koreanText":"연주 계속하기",
+ "koreanFontType":2,
+ "portugueseText":"Continuar",
+ "portugueseFontType":2,
+ "russianText":"Продолжить игру",
+ "russianFontType":2,
+ "turkishText":"Oynamaya devam et",
+ "turkishFontType":2,
+ "arabicText":"استكمال اللعب",
+ "arabicFontType":2,
+ "dutchText":"Doorgaan met spelen",
+ "dutchFontType":2,
+ "chineseSText":"继续演奏",
+ "chineseSFontType":4
+ },
+ {
+ "key":"pause_restart",
+ "japaneseText":"曲のはじめからやりなおす",
+ "englishUsText":"Retry from the beginning",
+ "englishUsFontType":3,
+ "frenchText":"Recommencer depuis le début de la chanson",
+ "frenchFontType":3,
+ "italianText":"Ricomincia la canzone",
+ "italianFontType":3,
+ "germanText":"Song neu beginnen",
+ "germanFontType":3,
+ "spanishText":"Reiniciar la canción",
+ "spanishFontType":3,
+ "chineseTText":"回到樂曲開頭重新演奏",
+ "chineseTFontType":1,
+ "koreanText":"처음부터 다시",
+ "koreanFontType":2,
+ "portugueseText":"Tentar novamente desde o início",
+ "portugueseFontType":2,
+ "russianText":"Начать песню заново",
+ "russianFontType":2,
+ "turkishText":"En baştan yeniden dene",
+ "turkishFontType":2,
+ "arabicText":"إعادة المحاولة من البداية",
+ "arabicFontType":2,
+ "dutchText":"Opnieuw proberen vanaf het begin",
+ "dutchFontType":2,
+ "chineseSText":"回到乐曲开头重新演奏",
+ "chineseSFontType":4
+ },
+ {
+ "key":"pause_quit",
+ "japaneseText":"「曲をえらぶ」にもどる",
+ "englishUsText":"Back to Select Song",
+ "englishUsFontType":3,
+ "frenchText":"Retourner au choix de la chanson",
+ "frenchFontType":3,
+ "italianText":"Torna alla selezione delle canzoni",
+ "italianFontType":3,
+ "germanText":"Zurück zur Songwahl",
+ "germanFontType":3,
+ "spanishText":"Volver a Elegir canción",
+ "spanishFontType":3,
+ "chineseTText":"返回「選擇樂曲」",
+ "chineseTFontType":1,
+ "koreanText":"곡 선택'으로 돌아가기",
+ "koreanFontType":2,
+ "portugueseText":"Voltar para \"Selecionar Música\"",
+ "portugueseFontType":2,
+ "russianText":"Вернуться к выбору песни",
+ "russianFontType":2,
+ "turkishText":"Şarkı Seçmeye Geri Dön",
+ "turkishFontType":2,
+ "arabicText":"الرجوع إلى اختيار الأغنية",
+ "arabicFontType":2,
+ "dutchText":"Terug naar liedselectie",
+ "dutchFontType":2,
+ "chineseSText":"返回“选择乐曲”",
+ "chineseSFontType":4
+ },
+ {
+ "key":"pause_performance",
+ "japaneseText":"画面演出の調整",
+ "englishUsText":"Graphics",
+ "englishUsFontType":3,
+ "frenchText":"Ajustement de l'affichage",
+ "frenchFontType":3,
+ "italianText":"Impostazioni grafiche",
+ "italianFontType":3,
+ "germanText":"Bildschirminszenierung einstellen",
+ "germanFontType":3,
+ "spanishText":"Calidad de los gráficos",
+ "spanishFontType":3,
+ "chineseTText":"調整畫面演出",
+ "chineseTFontType":1,
+ "koreanText":"화면 연출 조정",
+ "koreanFontType":2,
+ "portugueseText":"Ajustar gráficos",
+ "portugueseFontType":2,
+ "russianText":"Графика",
+ "russianFontType":2,
+ "turkishText":"Grafikler",
+ "turkishFontType":2,
+ "arabicText":"الرسومات",
+ "arabicFontType":2,
+ "dutchText":"Graphics",
+ "dutchFontType":2,
+ "chineseSText":"调整画面演出",
+ "chineseSFontType":4
+ },
+ {
+ "key":"pause_onpu",
+ "japaneseText":"音符の調整",
+ "englishUsText":"Adjust Music Notes",
+ "englishUsFontType":3,
+ "frenchText":"Ajustement des notes",
+ "frenchFontType":3,
+ "italianText":"Regolazione delle note",
+ "italianFontType":3,
+ "germanText":"Noten anpassen",
+ "germanFontType":3,
+ "spanishText":"Ajustes de notas",
+ "spanishFontType":3,
+ "chineseTText":"調整音符",
+ "chineseTFontType":1,
+ "koreanText":"음표 조정",
+ "koreanFontType":2,
+ "portugueseText":"Ajustar notas musicais",
+ "portugueseFontType":2,
+ "russianText":"Настройка нот",
+ "russianFontType":2,
+ "turkishText":"Müzik Notasını Ayarla",
+ "turkishFontType":2,
+ "arabicText":"ضبط النوتات الموسيقية",
+ "arabicFontType":2,
+ "dutchText":"Muzieknoten aanpassen",
+ "dutchFontType":2,
+ "chineseSText":"调整音符",
+ "chineseSFontType":4
+ },
+ {
+ "key":"pause_performance_button_0",
+ "japaneseText":"標準",
+ "englishUsText":"Standard",
+ "englishUsFontType":3,
+ "frenchText":"Normal",
+ "frenchFontType":3,
+ "italianText":"Normale",
+ "italianFontType":3,
+ "germanText":"Standard",
+ "germanFontType":3,
+ "spanishText":"Estándar",
+ "spanishFontType":3,
+ "chineseTText":"標準",
+ "chineseTFontType":1,
+ "koreanText":"표준",
+ "koreanFontType":2,
+ "portugueseText":"Normal",
+ "portugueseFontType":2,
+ "russianText":"Стандартно",
+ "russianFontType":2,
+ "turkishText":"Standart",
+ "turkishFontType":2,
+ "arabicText":"قياسي",
+ "arabicFontType":2,
+ "dutchText":"Standaard",
+ "dutchFontType":2,
+ "chineseSText":"标准",
+ "chineseSFontType":4
+ },
+ {
+ "key":"pause_performance_button_1",
+ "japaneseText":"軽量",
+ "englishUsText":"Light",
+ "englishUsFontType":3,
+ "frenchText":"Léger",
+ "frenchFontType":3,
+ "italianText":"Poche",
+ "italianFontType":3,
+ "germanText":"Leicht",
+ "germanFontType":3,
+ "spanishText":"Ligero",
+ "spanishFontType":3,
+ "chineseTText":"輕量",
+ "chineseTFontType":1,
+ "koreanText":"저사양",
+ "koreanFontType":2,
+ "portugueseText":"Leve",
+ "portugueseFontType":2,
+ "russianText":"Легко",
+ "russianFontType":2,
+ "turkishText":"Hafif",
+ "turkishFontType":2,
+ "arabicText":"خفيف",
+ "arabicFontType":2,
+ "dutchText":"Licht",
+ "dutchFontType":2,
+ "chineseSText":"轻量",
+ "chineseSFontType":4
+ },
+ {
+ "key":"pause_performance_button_2",
+ "japaneseText":"超軽量",
+ "englishUsText":"Super-Light",
+ "englishUsFontType":3,
+ "frenchText":"Très léger",
+ "frenchFontType":3,
+ "italianText":"Pochissime",
+ "italianFontType":3,
+ "germanText":"Super-leicht",
+ "germanFontType":3,
+ "spanishText":"Superligero",
+ "spanishFontType":3,
+ "chineseTText":"超輕量",
+ "chineseTFontType":1,
+ "koreanText":"초저사양",
+ "koreanFontType":2,
+ "portugueseText":"Muito leve",
+ "portugueseFontType":2,
+ "russianText":"Суперлегко",
+ "russianFontType":2,
+ "turkishText":"Süper hafif",
+ "turkishFontType":2,
+ "arabicText":"خفيف للغاية",
+ "arabicFontType":2,
+ "dutchText":"Superlicht",
+ "dutchFontType":2,
+ "chineseSText":"超轻量",
+ "chineseSFontType":4
+ },
+ {
+ "key":"pause_button_desc",
+ "japaneseText":"「キャンセル」変更しないでもどる\n「けってい」変更して曲のはじめからやりなおす",
+ "englishUsText":"\"Cancel\" and go Back without saving changes.\n\"Confirm\" and save changes, starting the song over.",
+ "englishUsFontType":3,
+ "frenchText":"« Annuler » : retour sans changements.\n« Confirmer » : les changements seront effectués et la chanson recommencera depuis le début.",
+ "frenchFontType":3,
+ "italianText":"Annulla: torna indietro senza modificare\nOK: modifica e ricomincia la canzone",
+ "italianFontType":3,
+ "germanText":"Abbrechen: Zurück ohne Änderung\nBestätigen: Ändern und Song neu beginnen.",
+ "germanFontType":3,
+ "spanishText":"Cancelar: volver sin guardar los cambios.\nConfirmar: aplicar los cambios y reiniciar la canción.",
+ "spanishFontType":3,
+ "chineseTText":"「取消」不進行變更並返回\n「確定」變更後回到樂曲開頭重新演奏",
+ "chineseTFontType":1,
+ "koreanText":"취소' 변경하지 않고 돌아간다\n'결정' 변경하고 처음부터 다시 시작한다",
+ "koreanFontType":2,
+ "portugueseText":"\"Cancelar\" e voltar sem salvar as mudanças. \n\"Confirmar\" E salvar as mudanças, começando a música de novo.",
+ "portugueseFontType":2,
+ "russianText":"\"Отменить\" и вернуться, не сохраняя изменения.\n\"Подтвердить\" и сохранить изменения, запустив песню заново.",
+ "russianFontType":2,
+ "turkishText":"Değişiklikleri kaydetmeden iptal et ve geri git.\nOnayla, değişiklikleri kaydet, şarkıyı baştan başlat.",
+ "turkishFontType":2,
+ "arabicText":"\"إلغاء\" والعودة إلى الخلف دون حفظ التغييرات.\n\"تأكيد\" وحفظ التغييرات، بدء الأغنية من البداية.",
+ "arabicFontType":2,
+ "dutchText":"Annuleren en teruggaan zonder wijzigingen op te slaan.\nBevestigen, wijzigingen opslaan en het lied opnieuw starten.",
+ "dutchFontType":2,
+ "chineseSText":"“取消”不进行变更并返回\n“确定”变更后回到乐曲开头重新演奏",
+ "chineseSFontType":4
+ },
+ {
+ "key":"loading_message",
+ "japaneseText":"ロードちゅう",
+ "englishUsText":"Now Loading",
+ "englishUsFontType":3,
+ "frenchText":"Chargement en cours",
+ "frenchFontType":3,
+ "italianText":"Caricamento...",
+ "italianFontType":3,
+ "germanText":"Ladevorgang",
+ "germanFontType":3,
+ "spanishText":"Cargando",
+ "spanishFontType":3,
+ "chineseTText":"讀取中",
+ "chineseTFontType":1,
+ "koreanText":"로딩 중",
+ "koreanFontType":2,
+ "portugueseText":"Carregando",
+ "portugueseFontType":2,
+ "russianText":"Загрузка...",
+ "russianFontType":2,
+ "turkishText":"Şimdi Yükleniyor",
+ "turkishFontType":2,
+ "arabicText":"جار التحميل",
+ "arabicFontType":2,
+ "dutchText":"Aan het laden",
+ "dutchFontType":2,
+ "chineseSText":"读取中",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_score",
+ "japaneseText":"スコア",
+ "englishUsText":"Score",
+ "englishUsFontType":3,
+ "frenchText":"Score",
+ "frenchFontType":3,
+ "italianText":"Punteggio",
+ "italianFontType":3,
+ "germanText":"Punkte",
+ "germanFontType":3,
+ "spanishText":"Puntuación",
+ "spanishFontType":3,
+ "chineseTText":"成績",
+ "chineseTFontType":1,
+ "koreanText":"스코어",
+ "koreanFontType":2,
+ "portugueseText":"Pontuação",
+ "portugueseFontType":2,
+ "russianText":"Очки",
+ "russianFontType":2,
+ "turkishText":"Skor",
+ "turkishFontType":2,
+ "arabicText":"النقاط",
+ "arabicFontType":2,
+ "dutchText":"Score",
+ "dutchFontType":2,
+ "chineseSText":"成绩",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_score_00",
+ "japaneseText":"通常",
+ "englishUsText":"Normal",
+ "englishUsFontType":3,
+ "frenchText":"Normal",
+ "frenchFontType":3,
+ "italianText":"Normale",
+ "italianFontType":3,
+ "germanText":"Normal",
+ "germanFontType":3,
+ "spanishText":"Normal",
+ "spanishFontType":3,
+ "chineseTText":"一般",
+ "chineseTFontType":1,
+ "koreanText":"일반",
+ "koreanFontType":2,
+ "portugueseText":"Normal",
+ "portugueseFontType":2,
+ "russianText":"Знаток",
+ "russianFontType":2,
+ "turkishText":"Normal",
+ "turkishFontType":2,
+ "arabicText":"عادي",
+ "arabicFontType":2,
+ "dutchText":"Normaal",
+ "dutchFontType":2,
+ "chineseSText":"一般",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_score_01",
+ "japaneseText":"真打",
+ "englishUsText":"By note",
+ "englishUsFontType":3,
+ "frenchText":"Shin-Uchi",
+ "frenchFontType":3,
+ "italianText":"Per nota",
+ "italianFontType":3,
+ "germanText":"Genauigkeit",
+ "germanFontType":3,
+ "spanishText":"Por notas",
+ "spanishFontType":3,
+ "chineseTText":"真打",
+ "chineseTFontType":1,
+ "koreanText":"진타",
+ "koreanFontType":2,
+ "portugueseText":"Por nota",
+ "portugueseFontType":2,
+ "russianText":"Верный удар",
+ "russianFontType":2,
+ "turkishText":"Notayla",
+ "turkishFontType":2,
+ "arabicText":"بالنوتة",
+ "arabicFontType":2,
+ "dutchText":"Muzieknoten",
+ "dutchFontType":2,
+ "chineseSText":"真打",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_speed",
+ "japaneseText":"はやさ",
+ "englishUsText":"Speed",
+ "englishUsFontType":3,
+ "frenchText":"Vitesse",
+ "frenchFontType":3,
+ "italianText":"Velocità",
+ "italianFontType":3,
+ "germanText":"Tempo",
+ "germanFontType":3,
+ "spanishText":"Velocidad",
+ "spanishFontType":3,
+ "chineseTText":"速度",
+ "chineseTFontType":1,
+ "koreanText":"속도",
+ "koreanFontType":2,
+ "portugueseText":"Velocidade",
+ "portugueseFontType":2,
+ "russianText":"Скорость",
+ "russianFontType":2,
+ "turkishText":"Hız",
+ "turkishFontType":2,
+ "arabicText":"السرعة",
+ "arabicFontType":2,
+ "dutchText":"Snelheid",
+ "dutchFontType":2,
+ "chineseSText":"速度",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_speed_00",
+ "japaneseText":"オフ",
+ "englishUsText":"Normal",
+ "englishUsFontType":3,
+ "frenchText":"Désactivé",
+ "frenchFontType":3,
+ "italianText":"Normale",
+ "italianFontType":3,
+ "germanText":"Aus",
+ "germanFontType":3,
+ "spanishText":"Normal",
+ "spanishFontType":3,
+ "chineseTText":"OFF",
+ "chineseTFontType":1,
+ "koreanText":"OFF",
+ "koreanFontType":2,
+ "portugueseText":"Normal",
+ "portugueseFontType":2,
+ "russianText":"Обычная",
+ "russianFontType":2,
+ "turkishText":"Normal",
+ "turkishFontType":2,
+ "arabicText":"عادي",
+ "arabicFontType":2,
+ "dutchText":"Normaal",
+ "dutchFontType":2,
+ "chineseSText":"OFF",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_speed_01",
+ "japaneseText":"ばいそく",
+ "englishUsText":"X2",
+ "englishUsFontType":3,
+ "frenchText":"Vitesse x2",
+ "frenchFontType":3,
+ "italianText":"Velocità x2",
+ "italianFontType":3,
+ "germanText":"Tempo x2",
+ "germanFontType":3,
+ "spanishText":"x2",
+ "spanishFontType":3,
+ "chineseTText":"二倍速",
+ "chineseTFontType":1,
+ "koreanText":"배속",
+ "koreanFontType":2,
+ "portugueseText":"2x",
+ "portugueseFontType":2,
+ "russianText":"x2",
+ "russianFontType":2,
+ "turkishText":"X2",
+ "turkishFontType":2,
+ "arabicText":"X2",
+ "arabicFontType":2,
+ "dutchText":"X2",
+ "dutchFontType":2,
+ "chineseSText":"二倍速",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_speed_02",
+ "japaneseText":"さんばい",
+ "englishUsText":"X3",
+ "englishUsFontType":3,
+ "frenchText":"Vitesse x3",
+ "frenchFontType":3,
+ "italianText":"Velocità x3",
+ "italianFontType":3,
+ "germanText":"Tempo x3",
+ "germanFontType":3,
+ "spanishText":"x3",
+ "spanishFontType":3,
+ "chineseTText":"三倍速",
+ "chineseTFontType":1,
+ "koreanText":"3배",
+ "koreanFontType":2,
+ "portugueseText":"3x",
+ "portugueseFontType":2,
+ "russianText":"x3",
+ "russianFontType":2,
+ "turkishText":"X3",
+ "turkishFontType":2,
+ "arabicText":"X3",
+ "arabicFontType":2,
+ "dutchText":"X3",
+ "dutchFontType":2,
+ "chineseSText":"三倍速",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_speed_03",
+ "japaneseText":"よんばい",
+ "englishUsText":"X4",
+ "englishUsFontType":3,
+ "frenchText":"Vitesse x4",
+ "frenchFontType":3,
+ "italianText":"Velocità x4",
+ "italianFontType":3,
+ "germanText":"Tempo x4",
+ "germanFontType":3,
+ "spanishText":"x4",
+ "spanishFontType":3,
+ "chineseTText":"四倍速",
+ "chineseTFontType":1,
+ "koreanText":"4배",
+ "koreanFontType":2,
+ "portugueseText":"4x",
+ "portugueseFontType":2,
+ "russianText":"x4",
+ "russianFontType":2,
+ "turkishText":"X4",
+ "turkishFontType":2,
+ "arabicText":"X4",
+ "arabicFontType":2,
+ "dutchText":"X4",
+ "dutchFontType":2,
+ "chineseSText":"四倍速",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_visibility",
+ "japaneseText":"ドロン",
+ "englishUsText":"Invisible",
+ "englishUsFontType":3,
+ "frenchText":"Disparition",
+ "frenchFontType":3,
+ "italianText":"Invisibile",
+ "italianFontType":3,
+ "germanText":"Verschwinden",
+ "germanFontType":3,
+ "spanishText":"Invisible",
+ "spanishFontType":3,
+ "chineseTText":"隱身",
+ "chineseTFontType":1,
+ "koreanText":"은신",
+ "koreanFontType":2,
+ "portugueseText":"Invisível",
+ "portugueseFontType":2,
+ "russianText":"Невидимый",
+ "russianFontType":2,
+ "turkishText":"Görünmez",
+ "turkishFontType":2,
+ "arabicText":"الإخفاء",
+ "arabicFontType":2,
+ "dutchText":"Onzichtbaar",
+ "dutchFontType":2,
+ "chineseSText":"隐身",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_visibility_00",
+ "japaneseText":"オフ",
+ "englishUsText":"Normal",
+ "englishUsFontType":3,
+ "frenchText":"Désactivé",
+ "frenchFontType":3,
+ "italianText":"No",
+ "italianFontType":3,
+ "germanText":"Aus",
+ "germanFontType":3,
+ "spanishText":"No",
+ "spanishFontType":3,
+ "chineseTText":"OFF",
+ "chineseTFontType":1,
+ "koreanText":"OFF",
+ "koreanFontType":2,
+ "portugueseText":"Desativado",
+ "portugueseFontType":2,
+ "russianText":"Обычный",
+ "russianFontType":2,
+ "turkishText":"Normal",
+ "turkishFontType":2,
+ "arabicText":"عادي",
+ "arabicFontType":2,
+ "dutchText":"Normaal",
+ "dutchFontType":2,
+ "chineseSText":"OFF",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_visibility_01",
+ "japaneseText":"オン",
+ "englishUsText":"On",
+ "englishUsFontType":3,
+ "frenchText":"Activé",
+ "frenchFontType":3,
+ "italianText":"Sì",
+ "italianFontType":3,
+ "germanText":"An",
+ "germanFontType":3,
+ "spanishText":"Sí",
+ "spanishFontType":3,
+ "chineseTText":"ON",
+ "chineseTFontType":1,
+ "koreanText":"ON",
+ "koreanFontType":2,
+ "portugueseText":"Ativado",
+ "portugueseFontType":2,
+ "russianText":"Вкл",
+ "russianFontType":2,
+ "turkishText":"Açık",
+ "turkishFontType":2,
+ "arabicText":"تشغيل",
+ "arabicFontType":2,
+ "dutchText":"Aan",
+ "dutchFontType":2,
+ "chineseSText":"ON",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_inverse",
+ "japaneseText":"あべこべ",
+ "englishUsText":"Vice Versa",
+ "englishUsFontType":3,
+ "frenchText":"Inversion",
+ "frenchFontType":3,
+ "italianText":"Invertito",
+ "italianFontType":3,
+ "germanText":"Umgekehrt",
+ "germanFontType":3,
+ "spanishText":"Invertido",
+ "spanishFontType":3,
+ "chineseTText":"顛倒",
+ "chineseTFontType":1,
+ "koreanText":"반전",
+ "koreanFontType":2,
+ "portugueseText":"Vice-versa",
+ "portugueseFontType":2,
+ "russianText":"Наоборот",
+ "russianFontType":2,
+ "turkishText":"Tam Tersi",
+ "turkishFontType":2,
+ "arabicText":"معكوس",
+ "arabicFontType":2,
+ "dutchText":"Omgekeerd",
+ "dutchFontType":2,
+ "chineseSText":"颠倒",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_inverse_00",
+ "japaneseText":"オフ",
+ "englishUsText":"Normal",
+ "englishUsFontType":3,
+ "frenchText":"Désactivé",
+ "frenchFontType":3,
+ "italianText":"No",
+ "italianFontType":3,
+ "germanText":"Aus",
+ "germanFontType":3,
+ "spanishText":"No",
+ "spanishFontType":3,
+ "chineseTText":"OFF",
+ "chineseTFontType":1,
+ "koreanText":"OFF",
+ "koreanFontType":2,
+ "portugueseText":"Desativado",
+ "portugueseFontType":2,
+ "russianText":"Обычный",
+ "russianFontType":2,
+ "turkishText":"Normal",
+ "turkishFontType":2,
+ "arabicText":"عادي",
+ "arabicFontType":2,
+ "dutchText":"Normaal",
+ "dutchFontType":2,
+ "chineseSText":"OFF",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_inverse_01",
+ "japaneseText":"オン",
+ "englishUsText":"On",
+ "englishUsFontType":3,
+ "frenchText":"Activé",
+ "frenchFontType":3,
+ "italianText":"Sì",
+ "italianFontType":3,
+ "germanText":"An",
+ "germanFontType":3,
+ "spanishText":"Sí",
+ "spanishFontType":3,
+ "chineseTText":"ON",
+ "chineseTFontType":1,
+ "koreanText":"ON",
+ "koreanFontType":2,
+ "portugueseText":"Ativado",
+ "portugueseFontType":2,
+ "russianText":"Вкл",
+ "russianFontType":2,
+ "turkishText":"Açık",
+ "turkishFontType":2,
+ "arabicText":"تشغيل",
+ "arabicFontType":2,
+ "dutchText":"Aan",
+ "dutchFontType":2,
+ "chineseSText":"ON",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_random",
+ "japaneseText":"ランダム",
+ "englishUsText":"Randomize",
+ "englishUsFontType":3,
+ "frenchText":"Aléatoire",
+ "frenchFontType":3,
+ "italianText":"Casuale",
+ "italianFontType":3,
+ "germanText":"Zufällig",
+ "germanFontType":3,
+ "spanishText":"Aleatorio",
+ "spanishFontType":3,
+ "chineseTText":"隨機",
+ "chineseTFontType":1,
+ "koreanText":"랜덤",
+ "koreanFontType":2,
+ "portugueseText":"Aleatório",
+ "portugueseFontType":2,
+ "russianText":"Случайно",
+ "russianFontType":2,
+ "turkishText":"Rastgele",
+ "turkishFontType":2,
+ "arabicText":"عشوائي",
+ "arabicFontType":2,
+ "dutchText":"Willekeurig",
+ "dutchFontType":2,
+ "chineseSText":"随机",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_random_00",
+ "japaneseText":"なし",
+ "englishUsText":"Off",
+ "englishUsFontType":3,
+ "frenchText":"Désactivé",
+ "frenchFontType":3,
+ "italianText":"No",
+ "italianFontType":3,
+ "germanText":"Ohne",
+ "germanFontType":3,
+ "spanishText":"No",
+ "spanishFontType":3,
+ "chineseTText":"無",
+ "chineseTFontType":1,
+ "koreanText":"없음",
+ "koreanFontType":2,
+ "portugueseText":"Desativado",
+ "portugueseFontType":2,
+ "russianText":"Выкл",
+ "russianFontType":2,
+ "turkishText":"Kapalı",
+ "turkishFontType":2,
+ "arabicText":"إيقاف",
+ "arabicFontType":2,
+ "dutchText":"Uit",
+ "dutchFontType":2,
+ "chineseSText":"无",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_random_01",
+ "japaneseText":"きまぐれ",
+ "englishUsText":"On",
+ "englishUsFontType":3,
+ "frenchText":"Capricieux",
+ "frenchFontType":3,
+ "italianText":"Capriccioso",
+ "italianFontType":3,
+ "germanText":"Launisch",
+ "germanFontType":3,
+ "spanishText":"A capricho",
+ "spanishFontType":3,
+ "chineseTText":"隨興",
+ "chineseTFontType":1,
+ "koreanText":"변덕",
+ "koreanFontType":2,
+ "portugueseText":"Excêntrico",
+ "portugueseFontType":2,
+ "russianText":"Вкл",
+ "russianFontType":2,
+ "turkishText":"Açık",
+ "turkishFontType":2,
+ "arabicText":"تشغيل",
+ "arabicFontType":2,
+ "dutchText":"Aan",
+ "dutchFontType":2,
+ "chineseSText":"随兴",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_random_02",
+ "japaneseText":"でたらめ",
+ "englishUsText":"Absurd",
+ "englishUsFontType":3,
+ "frenchText":"Au hasard",
+ "frenchFontType":3,
+ "italianText":"Imprevedibile",
+ "italianFontType":3,
+ "germanText":"Unsinnig",
+ "germanFontType":3,
+ "spanishText":"Impredecible",
+ "spanishFontType":3,
+ "chineseTText":"隨意",
+ "chineseTFontType":1,
+ "koreanText":"대충",
+ "koreanFontType":2,
+ "portugueseText":"Absurdo",
+ "portugueseFontType":2,
+ "russianText":"Экстрим",
+ "russianFontType":2,
+ "turkishText":"Absürt",
+ "turkishFontType":2,
+ "arabicText":"غير معقول",
+ "arabicFontType":2,
+ "dutchText":"Absurd",
+ "dutchFontType":2,
+ "chineseSText":"随意",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_special",
+ "japaneseText":"とくしゅ",
+ "englishUsText":"Special",
+ "englishUsFontType":3,
+ "frenchText":"Spécial",
+ "frenchFontType":3,
+ "italianText":"Speciale",
+ "italianFontType":3,
+ "germanText":"Spezial",
+ "germanFontType":3,
+ "spanishText":"Especial",
+ "spanishFontType":3,
+ "chineseTText":"特殊",
+ "chineseTFontType":1,
+ "koreanText":"특수",
+ "koreanFontType":2,
+ "portugueseText":"Especial",
+ "portugueseFontType":2,
+ "russianText":"Особый",
+ "russianFontType":2,
+ "turkishText":"Özel",
+ "turkishFontType":2,
+ "arabicText":"خاص",
+ "arabicFontType":2,
+ "dutchText":"Speciaal",
+ "dutchFontType":2,
+ "chineseSText":"特殊",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_special_00",
+ "japaneseText":"なし",
+ "englishUsText":"Off",
+ "englishUsFontType":3,
+ "frenchText":"Désactivé",
+ "frenchFontType":3,
+ "italianText":"No",
+ "italianFontType":3,
+ "germanText":"Ohne",
+ "germanFontType":3,
+ "spanishText":"No",
+ "spanishFontType":3,
+ "chineseTText":"無",
+ "chineseTFontType":1,
+ "koreanText":"없음",
+ "koreanFontType":2,
+ "portugueseText":"Desativado",
+ "portugueseFontType":2,
+ "russianText":"Выкл",
+ "russianFontType":2,
+ "turkishText":"Kapalı",
+ "turkishFontType":2,
+ "arabicText":"إيقاف",
+ "arabicFontType":2,
+ "dutchText":"Uit",
+ "dutchFontType":2,
+ "chineseSText":"无",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_special_01",
+ "japaneseText":"オート",
+ "englishUsText":"Automatic",
+ "englishUsFontType":3,
+ "frenchText":"Auto",
+ "frenchFontType":3,
+ "italianText":"Automatico",
+ "italianFontType":3,
+ "germanText":"Automatisch",
+ "germanFontType":3,
+ "spanishText":"Automático",
+ "spanishFontType":3,
+ "chineseTText":"自動",
+ "chineseTFontType":1,
+ "koreanText":"AUTO",
+ "koreanFontType":2,
+ "portugueseText":"Automático",
+ "portugueseFontType":2,
+ "russianText":"Авто",
+ "russianFontType":2,
+ "turkishText":"Otomatik",
+ "turkishFontType":2,
+ "arabicText":"تلقائي",
+ "arabicFontType":2,
+ "dutchText":"Automatisch",
+ "dutchFontType":2,
+ "chineseSText":"自动",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_special_02",
+ "japaneseText":"かんぺき",
+ "englishUsText":"Perfect",
+ "englishUsFontType":3,
+ "frenchText":"Parfait",
+ "frenchFontType":3,
+ "italianText":"Perfetto",
+ "italianFontType":3,
+ "germanText":"Perfekt",
+ "germanFontType":3,
+ "spanishText":"Perfecto",
+ "spanishFontType":3,
+ "chineseTText":"完美",
+ "chineseTFontType":1,
+ "koreanText":"완벽",
+ "koreanFontType":2,
+ "portugueseText":"Perfeito",
+ "portugueseFontType":2,
+ "russianText":"Идеально",
+ "russianFontType":2,
+ "turkishText":"Tam kombo",
+ "turkishFontType":2,
+ "arabicText":"مثالي",
+ "arabicFontType":2,
+ "dutchText":"Perfect",
+ "dutchFontType":2,
+ "chineseSText":"完美",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_special_03",
+ "japaneseText":"とっくん",
+ "englishUsText":"Training",
+ "englishUsFontType":3,
+ "frenchText":"Spartiate",
+ "frenchFontType":3,
+ "italianText":"Spartano",
+ "italianFontType":3,
+ "germanText":"Drill",
+ "germanFontType":3,
+ "spanishText":"Entrenamiento",
+ "spanishFontType":3,
+ "chineseTText":"特訓",
+ "chineseTFontType":1,
+ "koreanText":"특훈",
+ "koreanFontType":2,
+ "portugueseText":"Treino",
+ "portugueseFontType":2,
+ "russianText":"Тренировка",
+ "russianFontType":2,
+ "turkishText":"Antrenman",
+ "turkishFontType":2,
+ "arabicText":"تدريب",
+ "arabicFontType":2,
+ "dutchText":"Oefening",
+ "dutchFontType":2,
+ "chineseSText":"特训",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_desc_neiro",
+ "japaneseText":"「ドン」「カッ」を入力したときの音色がかわる",
+ "englishUsText":"Changes the sounds heard when hitting the music notes.",
+ "englishUsFontType":3,
+ "frenchText":"Changer les instruments pour Don et Ka.",
+ "frenchFontType":3,
+ "italianText":"Modifica il suono delle note.",
+ "italianFontType":3,
+ "germanText":"Farbklang bei Don- und Ka-Noten werden geändert.",
+ "germanFontType":3,
+ "spanishText":"Cambia el sonido de las notas Don y Ka.",
+ "spanishFontType":3,
+ "chineseTText":"改變輸入「咚」「咔」時的音色",
+ "chineseTFontType":1,
+ "koreanText":"쿵', '딱' 입력 시의 음색이 변한다",
+ "koreanFontType":2,
+ "portugueseText":"Alterar os sons quando tocar as notas musicais.",
+ "portugueseFontType":2,
+ "russianText":"Звук удара меняется при введении \"ДОН\" или \"КА\".",
+ "russianFontType":2,
+ "turkishText":"Don ve Ka enstrümanını değiştir.",
+ "turkishFontType":2,
+ "arabicText":"تغيير الصوت المسموع عند لعب النوتات الموسيقية.",
+ "arabicFontType":2,
+ "dutchText":"Verandert het geluid dat je hoort wanneer je de muzieknoten raakt.",
+ "dutchFontType":2,
+ "chineseSText":"改变输入“咚”“咔”时的音色",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_desc_score_00",
+ "japaneseText":"コンボをつなぐと、より多くのスコアが加算されていく配点方式",
+ "englishUsText":"Longer combos proportionally increase your score.",
+ "englishUsFontType":3,
+ "frenchText":"Plus les combos sont longs, plus le score est élevé.",
+ "frenchFontType":3,
+ "italianText":"Ottieni punti in base alla lunghezza delle combo.",
+ "italianFontType":3,
+ "germanText":"Wertung, in der Punkte proportional zur erreichten Kombo vergeben werden.",
+ "germanFontType":3,
+ "spanishText":"Sistema de puntuación en el que recibes más puntos por combos más largos.",
+ "spanishFontType":3,
+ "chineseTText":"藉由累積連段來取得較佳成績的給分方式",
+ "chineseTFontType":1,
+ "koreanText":"콤보를 이어가면 보다 많은 스코어가 가산되는 배점 방식",
+ "koreanFontType":2,
+ "portugueseText":"Combos mais longos aumentam os pontos proporcionalmente.",
+ "portugueseFontType":2,
+ "russianText":"Длительные комбо позволяют набрать больше очков.",
+ "russianFontType":2,
+ "turkishText":"Daha uzun kombolar puanı aynı oranda artırır.",
+ "turkishFontType":2,
+ "arabicText":"يزيد الكومبو الأطول من نقاطك بشكل نسبي.",
+ "arabicFontType":2,
+ "dutchText":"Punten worden uitgedeeld op basis van je gehaalde combo.",
+ "dutchFontType":2,
+ "chineseSText":"借由累积连段来取得较佳成绩的给分方式",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_desc_score_01",
+ "japaneseText":"コンボに関係なく、タイミングよく音符をたたくことを重視した配点方式",
+ "englishUsText":"Your score is based on accurate note timing while ignoring combos.",
+ "englishUsFontType":3,
+ "frenchText":"Plus le timing est précis, plus le score est élevé.",
+ "frenchFontType":3,
+ "italianText":"Ottieni punti in base al tempismo, non alle combo.",
+ "italianFontType":3,
+ "germanText":"Wertung, in der es nicht auf Kombos sondern auf das Timing ankommt.",
+ "germanFontType":3,
+ "spanishText":"Sistema de puntuación en el que lo importante es golpear las notas en el momento justo y que ignora los combos.",
+ "spanishFontType":3,
+ "chineseTText":"與連段無關,注重配合節奏敲打音符的給分方式",
+ "chineseTFontType":1,
+ "koreanText":"콤보와 상관없이 타이밍에 맞게 음표를 치는 것을 중시한 배점 방식",
+ "koreanFontType":2,
+ "portugueseText":"Seus pontos são baseados no tempo das notas, independente dos combos.",
+ "portugueseFontType":2,
+ "russianText":"Очки можно набрать и без комбо, четко отбивая удары.",
+ "russianFontType":2,
+ "turkishText":"Puanınız, doğru nota zamanlamasına dayalıdır ve komboları göz ardı eder.",
+ "turkishFontType":2,
+ "arabicText":"تعتمد نتيجتك على توقيت النوتات الدقيق بينما تتجاهل الكومبو.",
+ "arabicFontType":2,
+ "dutchText":"Je score wordt gebaseerd op de timing van je muzieknoten, niet op je combo's.",
+ "dutchFontType":2,
+ "chineseSText":"与连段无关,注重配合节奏敲打音符的给分方式",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_desc_speed_00",
+ "japaneseText":"音符の流れる速さを変更できるオプション",
+ "englishUsText":"Options for changing the speed of the music notes.",
+ "englishUsFontType":3,
+ "frenchText":"Une option pour changer la vitesse des notes de musique.",
+ "frenchFontType":3,
+ "italianText":"Regola la velocità di apparizione delle note.",
+ "italianFontType":3,
+ "germanText":"Option zum Ändern des Notentempos",
+ "germanFontType":3,
+ "spanishText":"Opciones para cambiar la velocidad de las notas.",
+ "spanishFontType":3,
+ "chineseTText":"可變更音符流動速度的選項",
+ "chineseTFontType":1,
+ "koreanText":"음표의 이동 속도를 변경하는 옵션",
+ "koreanFontType":2,
+ "portugueseText":"Mudar o compasso.",
+ "portugueseFontType":2,
+ "russianText":"Опция изменения скорости звучания нот.",
+ "russianFontType":2,
+ "turkishText":"Müzik nota hızını değiştirme seçeneği.",
+ "turkishFontType":2,
+ "arabicText":"خيارات لتغيير سرعات النوتات الموسيقية.",
+ "arabicFontType":2,
+ "dutchText":"Optie om de snelheid van de muzieknoten aan te passen.",
+ "dutchFontType":2,
+ "chineseSText":"可变更音符流动速度的选项",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_desc_speed_01",
+ "japaneseText":"音符速さ:2倍",
+ "englishUsText":"Music Note Speed: 2x",
+ "englishUsFontType":3,
+ "frenchText":"Vitesse des notes de musique : x2",
+ "frenchFontType":3,
+ "italianText":"Raddoppia la velocità delle note.",
+ "italianFontType":3,
+ "germanText":"Notentempo: x2",
+ "germanFontType":3,
+ "spanishText":"Velocidad de las notas: x2",
+ "spanishFontType":3,
+ "chineseTText":"音符速度:2倍",
+ "chineseTFontType":1,
+ "koreanText":"음표 속도: 2배",
+ "koreanFontType":2,
+ "portugueseText":"Compasso: 2x",
+ "portugueseFontType":2,
+ "russianText":"Скорость нот: x2",
+ "russianFontType":2,
+ "turkishText":"Müzik nota hızı: 2x",
+ "turkishFontType":2,
+ "arabicText":"سرعة النوتة الموسيقية: x2",
+ "arabicFontType":2,
+ "dutchText":"Snelheid muzieknoten: 2x",
+ "dutchFontType":2,
+ "chineseSText":"音符速度:2倍",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_desc_speed_02",
+ "japaneseText":"音符速さ:3倍",
+ "englishUsText":"Music Note Speed: 3x",
+ "englishUsFontType":3,
+ "frenchText":"Vitesse des notes de musique : x3",
+ "frenchFontType":3,
+ "italianText":"Triplica la velocità delle note.",
+ "italianFontType":3,
+ "germanText":"Notentempo: x3",
+ "germanFontType":3,
+ "spanishText":"Velocidad de las notas: x3",
+ "spanishFontType":3,
+ "chineseTText":"音符速度:3倍",
+ "chineseTFontType":1,
+ "koreanText":"음표 속도: 3배",
+ "koreanFontType":2,
+ "portugueseText":"Compasso: 3x",
+ "portugueseFontType":2,
+ "russianText":"Скорость нот: x3",
+ "russianFontType":2,
+ "turkishText":"Müzik nota hızı: 3x",
+ "turkishFontType":2,
+ "arabicText":"سرعة النوتة الموسيقية: x3",
+ "arabicFontType":2,
+ "dutchText":"Snelheid muzieknoten: 3x",
+ "dutchFontType":2,
+ "chineseSText":"音符速度:3倍",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_desc_speed_03",
+ "japaneseText":"音符速さ:4倍",
+ "englishUsText":"Music Note Speed: 4x",
+ "englishUsFontType":3,
+ "frenchText":"Vitesse des notes de musique : x4",
+ "frenchFontType":3,
+ "italianText":"Quadruplica la velocità delle note.",
+ "italianFontType":3,
+ "germanText":"Notentempo: x4",
+ "germanFontType":3,
+ "spanishText":"Velocidad de las notas: x4",
+ "spanishFontType":3,
+ "chineseTText":"音符速度:4倍",
+ "chineseTFontType":1,
+ "koreanText":"음표 속도: 4배",
+ "koreanFontType":2,
+ "portugueseText":"Compasso: 4x",
+ "portugueseFontType":2,
+ "russianText":"Скорость нот: x4",
+ "russianFontType":2,
+ "turkishText":"Müzik nota hızı: 4x",
+ "turkishFontType":2,
+ "arabicText":"سرعة النوتة الموسيقية: x4",
+ "arabicFontType":2,
+ "dutchText":"Snelheid muzieknoten: 4x",
+ "dutchFontType":2,
+ "chineseSText":"音符速度:4倍",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_desc_visiblity_00",
+ "japaneseText":"音符の表示を消せるオプション",
+ "englishUsText":"Option to turn off music notes display.",
+ "englishUsFontType":3,
+ "frenchText":"Une option pour cacher les notes de musique.",
+ "frenchFontType":3,
+ "italianText":"Nasconde le note.",
+ "italianFontType":3,
+ "germanText":"Option zum Ausschalten der Notenanzeige",
+ "germanFontType":3,
+ "spanishText":"Opción para esconder las notas musicales.",
+ "spanishFontType":3,
+ "chineseTText":"取消音符顯示的選項",
+ "chineseTFontType":1,
+ "koreanText":"음표 표시를 지우는 옵션",
+ "koreanFontType":2,
+ "portugueseText":"Desativar a exibição de notas.",
+ "portugueseFontType":2,
+ "russianText":"Опция: не отображать ноты.",
+ "russianFontType":2,
+ "turkishText":"Müzik notaları göstermeyi kapatma seçeneği.",
+ "turkishFontType":2,
+ "arabicText":"خيار لإيقاف عرض النوتات الموسيقية.",
+ "arabicFontType":2,
+ "dutchText":"Optie om de weergave van muzieknoten uit te schakelen.",
+ "dutchFontType":2,
+ "chineseSText":"取消音符显示的选项",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_desc_visiblity_01",
+ "japaneseText":"音符を表示しない",
+ "englishUsText":"Do not display music notes.",
+ "englishUsFontType":3,
+ "frenchText":"Cacher les notes de musique.",
+ "frenchFontType":3,
+ "italianText":"Le note sono nascoste.",
+ "italianFontType":3,
+ "germanText":"Noten nicht anzeigen.",
+ "germanFontType":3,
+ "spanishText":"No se muestran las notas musicales.",
+ "spanishFontType":3,
+ "chineseTText":"不顯示音符",
+ "chineseTFontType":1,
+ "koreanText":"음표를 표시하지 않는다",
+ "koreanFontType":2,
+ "portugueseText":"Ocultar notas.",
+ "portugueseFontType":2,
+ "russianText":"Не отображать ноты.",
+ "russianFontType":2,
+ "turkishText":"Müzik notalarını gösterme.",
+ "turkishFontType":2,
+ "arabicText":"لا تعرض النوتات الموسيقية.",
+ "arabicFontType":2,
+ "dutchText":"Geen muzieknoten weergeven.",
+ "dutchFontType":2,
+ "chineseSText":"不显示音符",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_desc_inverse_00",
+ "japaneseText":"音符の「ドン」「カッ」を入れかえるオプション",
+ "englishUsText":"Options for swapping Don and Ka music notes.",
+ "englishUsFontType":3,
+ "frenchText":"Une option pour inverser les notes de musique Don et Ka.",
+ "frenchFontType":3,
+ "italianText":"Scambia le note Don e Ka.",
+ "italianFontType":3,
+ "germanText":"Option, mit der Don- und Ka-Noten vertauscht werden.",
+ "germanFontType":3,
+ "spanishText":"Opción para intercambiar entre sí las notas Don y Ka.",
+ "spanishFontType":3,
+ "chineseTText":"替換音符「咚」「咔」的選項",
+ "chineseTFontType":1,
+ "koreanText":"음표의 '쿵', '딱'을 바꾸는 옵션",
+ "koreanFontType":2,
+ "portugueseText":"Alternar notas DON e KA",
+ "portugueseFontType":2,
+ "russianText":"Опция замены ДОН <-> КА для ноты.",
+ "russianFontType":2,
+ "turkishText":"Don ve Ka müzik notaları arasında değiştirme seçeneği.",
+ "turkishFontType":2,
+ "arabicText":"خيارات لتبديل نوتات دون وكا الموسيقية.",
+ "arabicFontType":2,
+ "dutchText":"Opties om Don- en Ka-muzieknoten te wisselen.",
+ "dutchFontType":2,
+ "chineseSText":"替换音符“咚”“咔”的选项",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_desc_inverse_01",
+ "japaneseText":"音符の「ドン」「カッ」が全て入れかわる",
+ "englishUsText":"Swap all Don and Ka music notes.",
+ "englishUsFontType":3,
+ "frenchText":"Inverser toutes les notes de musique Don et Ka.",
+ "frenchFontType":3,
+ "italianText":"Scambia tutte le note Don e Ka.",
+ "italianFontType":3,
+ "germanText":"Alle Don- und Ka-Noten werden vertauscht.",
+ "germanFontType":3,
+ "spanishText":"Intercambia todas las notas Don y Ka.",
+ "spanishFontType":3,
+ "chineseTText":"音符「咚」「咔」全部替換",
+ "chineseTFontType":1,
+ "koreanText":"음표의 '쿵', '딱'이 전부 바뀐다",
+ "koreanFontType":2,
+ "portugueseText":"Alternar todas as notas DON e KA.",
+ "portugueseFontType":2,
+ "russianText":"Заменить все ДОН и КА.",
+ "russianFontType":2,
+ "turkishText":"Tüm Don ve Ka müzik notalarını değiştir.",
+ "turkishFontType":2,
+ "arabicText":"تبديل كل نوتات دون وكا الموسيقية.",
+ "arabicFontType":2,
+ "dutchText":"Alle Don- en Ka-muzieknoten wisselen.",
+ "dutchFontType":2,
+ "chineseSText":"音符“咚”“咔”全部替换",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_desc_random_00",
+ "japaneseText":"音符の「ドン」「カッ」をランダムに入れかえるオプション",
+ "englishUsText":"Options for randomly swapping Don and Ka music notes.",
+ "englishUsFontType":3,
+ "frenchText":"Une option pour inverser les notes de musique Don et Ka de façon aléatoire.",
+ "frenchFontType":3,
+ "italianText":"Scambia casualmente le note Don e Ka.",
+ "italianFontType":3,
+ "germanText":"Option, mit der Don- u. Ka-Noten zufällig vertauscht werden.",
+ "germanFontType":3,
+ "spanishText":"Opciones para intercambiar al azar las notas Don y Ka.",
+ "spanishFontType":3,
+ "chineseTText":"隨機替換音符「咚」「咔」的選項",
+ "chineseTFontType":1,
+ "koreanText":"음표의 '쿵', '딱'을 랜덤으로 바꾸는 옵션",
+ "koreanFontType":2,
+ "portugueseText":"Alternar aleatoriamente notas DON e KA.",
+ "portugueseFontType":2,
+ "russianText":"Опция случайной замены ДОН <-> КА для ноты.",
+ "russianFontType":2,
+ "turkishText":"Rastgele Don ve Ka müzik notalarını değiştirme seçeneği.",
+ "turkishFontType":2,
+ "arabicText":"خيارات لتبديل نوتات دون وكا بشكل الموسيقية عشوائي.",
+ "arabicFontType":2,
+ "dutchText":"Optie om willekeurig Don- en Ka-muzieknoten te wisselen.",
+ "dutchFontType":2,
+ "chineseSText":"随机替换音符“咚”“咔”的选项",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_desc_random_01",
+ "japaneseText":"音符の「ドン」「カッ」を少し入れかえる",
+ "englishUsText":"Swap a few Don and Ka music notes.",
+ "englishUsFontType":3,
+ "frenchText":"Échanger quelques notes de musique Don et Ka.",
+ "frenchFontType":3,
+ "italianText":"Scambia alcune note Don e Ka.",
+ "italianFontType":3,
+ "germanText":"Ein paar Don- und Ka-Noten werden vertauscht.",
+ "germanFontType":3,
+ "spanishText":"Intercambia algunas notas Don y Ka.",
+ "spanishFontType":3,
+ "chineseTText":"音符「咚」「咔」微幅替換",
+ "chineseTFontType":1,
+ "koreanText":"음표의 '쿵', '딱'을 조금 섞는다",
+ "koreanFontType":2,
+ "portugueseText":"Alternar poucas notas DON e KA.",
+ "portugueseFontType":2,
+ "russianText":"Опция небольшой замены ДОН <-> КА для ноты.",
+ "russianFontType":2,
+ "turkishText":"Birkaç Don ve Ka müzik notalarını değiştir.",
+ "turkishFontType":2,
+ "arabicText":"تبديل بعض من نوتات دون وكا الموسيقية.",
+ "arabicFontType":2,
+ "dutchText":"Wissel een aantal Don- en Ka-muzieknoten.",
+ "dutchFontType":2,
+ "chineseSText":"音符“咚”“咔”微幅替换",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_desc_random_02",
+ "japaneseText":"音符の「ドン」「カッ」をたくさん入れかえる",
+ "englishUsText":"Swap many Don and Ka music notes.",
+ "englishUsFontType":3,
+ "frenchText":"Inverser la majorité des notes de musique Don et Ka.",
+ "frenchFontType":3,
+ "italianText":"Scambia la maggior parte delle note DON e KA.",
+ "italianFontType":3,
+ "germanText":"Viele Don-und Ka-Noten werden vertauscht.",
+ "germanFontType":3,
+ "spanishText":"Intercambia una gran parte de las notas Don y Ka.",
+ "spanishFontType":3,
+ "chineseTText":"音符「咚」「咔」大幅替換",
+ "chineseTFontType":1,
+ "koreanText":"음표의 '쿵', '딱'을 많이 섞는다",
+ "koreanFontType":2,
+ "portugueseText":"Alternar muitas notas DON e KA.",
+ "portugueseFontType":2,
+ "russianText":"Опция частой замены ДОН <-> КА для ноты.",
+ "russianFontType":2,
+ "turkishText":"Don ve Ka müzik notalarının büyük bir kısmını değiştir.",
+ "turkishFontType":2,
+ "arabicText":"تبديل العديد من نوتات دون وكا الموسيقية.",
+ "arabicFontType":2,
+ "dutchText":"Wissel het merendeel van de Don- en Ka-muzieknoten.",
+ "dutchFontType":2,
+ "chineseSText":"音符“咚”“咔”大幅替换",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_desc_doron_00",
+ "japaneseText":"演奏のとくしゅな設定ができるオプション",
+ "englishUsText":"Options for managing special settings.",
+ "englishUsFontType":3,
+ "frenchText":"Des options pour gérer les paramètres spéciaux.",
+ "frenchFontType":3,
+ "italianText":"Applica impostazioni speciali alla sessione.",
+ "italianFontType":3,
+ "germanText":"Optionen zur Verwaltung der Spezialeinstellungen",
+ "germanFontType":3,
+ "spanishText":"Opciones y ajustes especiales.",
+ "spanishFontType":3,
+ "chineseTText":"可針對演奏進行特殊設定的選項",
+ "chineseTFontType":1,
+ "koreanText":"특수한 연주 설정을 할 수 있는 옵션",
+ "koreanFontType":2,
+ "portugueseText":"Configurações especiais.",
+ "portugueseFontType":2,
+ "russianText":"Опция особых настроек выступления.",
+ "russianFontType":2,
+ "turkishText":"Özel ayarları yönetme seçeneği.",
+ "turkishFontType":2,
+ "arabicText":"خيارات لإدارة الإعدادات الخاصة.",
+ "arabicFontType":2,
+ "dutchText":"Opties om speciale instellingen te beheren.",
+ "dutchFontType":2,
+ "chineseSText":"可针对演奏进行特殊设定的选项",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_desc_doron_01",
+ "japaneseText":"オート演奏になる",
+ "englishUsText":"Auto-Play",
+ "englishUsFontType":3,
+ "frenchText":"Partie automatique",
+ "frenchFontType":3,
+ "italianText":"La canzone viene riprodotta automaticamente.",
+ "italianFontType":3,
+ "germanText":"Automatische Aufführung",
+ "germanFontType":3,
+ "spanishText":"Sesión automática",
+ "spanishFontType":3,
+ "chineseTText":"進行自動演奏",
+ "chineseTFontType":1,
+ "koreanText":"AUTO 연주를 한다",
+ "koreanFontType":2,
+ "portugueseText":"Automático",
+ "portugueseFontType":2,
+ "russianText":"Автоматическое проигрывание",
+ "russianFontType":2,
+ "turkishText":"Otomatik oynat",
+ "turkishFontType":2,
+ "arabicText":"تشغيل تلقائي",
+ "arabicFontType":2,
+ "dutchText":"Auto-Play",
+ "dutchFontType":2,
+ "chineseSText":"进行自动演奏",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_desc_doron_02",
+ "japaneseText":"「不可」1回で演奏終了",
+ "englishUsText":"End song on first BAD",
+ "englishUsFontType":3,
+ "frenchText":"Fin de la chanson au premier MAUVAIS",
+ "frenchFontType":3,
+ "italianText":"La sessione termina al primo MALE.",
+ "italianFontType":3,
+ "germanText":"Song bei erstem ÜBEL beenden.",
+ "germanFontType":3,
+ "spanishText":"Termina la canción al primer MAL",
+ "spanishFontType":3,
+ "chineseTText":"1次「不可」即結束演奏",
+ "chineseTFontType":1,
+ "koreanText":"에구'가 1번 나오면 연주 종료",
+ "koreanFontType":2,
+ "portugueseText":"Encerrar música no primeiro RUIM",
+ "portugueseFontType":2,
+ "russianText":"Завершить при получении 1-го \"ПЛОХО\"",
+ "russianFontType":2,
+ "turkishText":"İlk KÖTÜ çalmada şarkıyı bitir",
+ "turkishFontType":2,
+ "arabicText":"إنهاء الأغنية عند \"سيء\" الأولى",
+ "arabicFontType":2,
+ "dutchText":"Eindig het lied op eerste SLECHT",
+ "dutchFontType":2,
+ "chineseSText":"1次“不可”即结束演奏",
+ "chineseSFontType":4
+ },
+ {
+ "key":"option_desc_doron_03",
+ "japaneseText":"「不可」1回で演奏やり直し",
+ "englishUsText":"Restart song on first BAD",
+ "englishUsFontType":3,
+ "frenchText":"Redémarrage de la chanson au premier MAUVAIS",
+ "frenchFontType":3,
+ "italianText":"La sessione ricomincia al primo MALE.",
+ "italianFontType":3,
+ "germanText":"Song bei erstem ÜBEL neu beginnen.",
+ "germanFontType":3,
+ "spanishText":"Reinicia la canción al primer MAL",
+ "spanishFontType":3,
+ "chineseTText":"1次「不可」即從頭演奏",
+ "chineseTFontType":1,
+ "koreanText":"에구'가 1번 나오면 연주 다시 하기",
+ "koreanFontType":2,
+ "portugueseText":"Reiniciar música no primeiro RUIM",
+ "portugueseFontType":2,
+ "russianText":"Заново при получении 1-го \"ПЛОХО\"",
+ "russianFontType":2,
+ "turkishText":"İlk KÖTÜ çalmada şarkıyı yeniden başlat",
+ "turkishFontType":2,
+ "arabicText":"إعادة تشغيل الأغنية عند \"سيء\" الأولى",
+ "arabicFontType":2,
+ "dutchText":"Begin het lied opnieuw op eerste SLECHT",
+ "dutchFontType":2,
+ "chineseSText":"1次“不可”即从头演奏",
+ "chineseSFontType":4
+ },
+ {
+ "key":"bunki_down",
+ "japaneseText":"レベルダウン",
+ "englishUsText":"Level ▼",
+ "englishUsFontType":3,
+ "frenchText":"▼Niveau inf.",
+ "frenchFontType":3,
+ "italianText":"Livello ▼",
+ "italianFontType":3,
+ "germanText":"▼Level down",
+ "germanFontType":3,
+ "spanishText":"Nivel ▼",
+ "spanishFontType":3,
+ "chineseTText":"降級",
+ "chineseTFontType":1,
+ "koreanText":"레벨 다운",
+ "koreanFontType":2,
+ "portugueseText":"Nível ▼",
+ "portugueseFontType":3,
+ "russianText":"Уровень ▼",
+ "russianFontType":3,
+ "turkishText":"Seviye ▼",
+ "turkishFontType":3,
+ "arabicText":"المستوى ▼",
+ "arabicFontType":3,
+ "dutchText":"Niveau ▼",
+ "dutchFontType":3,
+ "chineseSText":"降级",
+ "chineseSFontType":4
+ },
+ {
+ "key":"bunki_expert",
+ "japaneseText":"達人譜面",
+ "englishUsText":"Master",
+ "englishUsFontType":3,
+ "frenchText":"Maître",
+ "frenchFontType":3,
+ "italianText":"Maestro",
+ "italianFontType":3,
+ "germanText":"Meister",
+ "germanFontType":3,
+ "spanishText":"Maestro",
+ "spanishFontType":3,
+ "chineseTText":"達人譜面",
+ "chineseTFontType":1,
+ "koreanText":"달인 악보",
+ "koreanFontType":2,
+ "portugueseText":"Mestre",
+ "portugueseFontType":3,
+ "russianText":"Эксперт",
+ "russianFontType":3,
+ "turkishText":"Usta",
+ "turkishFontType":3,
+ "arabicText":"خبير",
+ "arabicFontType":3,
+ "dutchText":"Master",
+ "dutchFontType":3,
+ "chineseSText":"达人谱面",
+ "chineseSFontType":4
+ },
+ {
+ "key":"bunki_normal",
+ "japaneseText":"普通譜面",
+ "englishUsText":"Normal",
+ "englishUsFontType":3,
+ "frenchText":"Normal",
+ "frenchFontType":3,
+ "italianText":"Normale",
+ "italianFontType":3,
+ "germanText":"Normal",
+ "germanFontType":3,
+ "spanishText":"Normal",
+ "spanishFontType":3,
+ "chineseTText":"一般譜面",
+ "chineseTFontType":1,
+ "koreanText":"보통 악보",
+ "koreanFontType":2,
+ "portugueseText":"Normal",
+ "portugueseFontType":3,
+ "russianText":"Знаток",
+ "russianFontType":3,
+ "turkishText":"Normal",
+ "turkishFontType":3,
+ "arabicText":"عادي",
+ "arabicFontType":3,
+ "dutchText":"Normaal",
+ "dutchFontType":3,
+ "chineseSText":"一般谱面",
+ "chineseSFontType":4
+ },
+ {
+ "key":"bunki_pro",
+ "japaneseText":"玄人譜面",
+ "englishUsText":"Professional",
+ "englishUsFontType":3,
+ "frenchText":"Professionnel",
+ "frenchFontType":3,
+ "italianText":"Esperto",
+ "italianFontType":3,
+ "germanText":"Profi",
+ "germanFontType":3,
+ "spanishText":"Profesional",
+ "spanishFontType":3,
+ "chineseTText":"進階譜面",
+ "chineseTFontType":1,
+ "koreanText":"현인 악보",
+ "koreanFontType":2,
+ "portugueseText":"Profissional",
+ "portugueseFontType":3,
+ "russianText":"Профи",
+ "russianFontType":3,
+ "turkishText":"Profesyonel",
+ "turkishFontType":3,
+ "arabicText":"محترف",
+ "arabicFontType":3,
+ "dutchText":"Professional",
+ "dutchFontType":3,
+ "chineseSText":"进阶谱面",
+ "chineseSFontType":4
+ },
+ {
+ "key":"bunki_up",
+ "japaneseText":"レベルアップ",
+ "englishUsText":"Level ▲",
+ "englishUsFontType":3,
+ "frenchText":"▲Niveau sup.",
+ "frenchFontType":3,
+ "italianText":"Livello ▲",
+ "italianFontType":3,
+ "germanText":"▲Level up",
+ "germanFontType":3,
+ "spanishText":"Nivel ▲",
+ "spanishFontType":3,
+ "chineseTText":"升級",
+ "chineseTFontType":1,
+ "koreanText":"레벨 업",
+ "koreanFontType":2,
+ "portugueseText":"Nível ▲",
+ "portugueseFontType":3,
+ "russianText":"Уровень ▲",
+ "russianFontType":3,
+ "turkishText":"Seviye ▲",
+ "turkishFontType":3,
+ "arabicText":"المستوى ▲",
+ "arabicFontType":3,
+ "dutchText":"Niveau ▲",
+ "dutchFontType":3,
+ "chineseSText":"升级",
+ "chineseSFontType":4
+ },
+ {
+ "key":"clear",
+ "japaneseText":"クリア",
+ "englishUsText":"Goal",
+ "englishUsFontType":3,
+ "frenchText":"Réussite",
+ "frenchFontType":3,
+ "italianText":"Completa",
+ "italianFontType":3,
+ "germanText":"Ziel",
+ "germanFontType":3,
+ "spanishText":"Meta",
+ "spanishFontType":3,
+ "chineseTText":"通關",
+ "chineseTFontType":1,
+ "koreanText":"클리어",
+ "koreanFontType":2,
+ "portugueseText":"Concluída",
+ "portugueseFontType":3,
+ "russianText":"Цель",
+ "russianFontType":3,
+ "turkishText":"Hedef",
+ "turkishFontType":3,
+ "arabicText":"الهدف",
+ "arabicFontType":3,
+ "dutchText":"Doel",
+ "dutchFontType":3,
+ "chineseSText":"通关",
+ "chineseSFontType":4
+ },
+ {
+ "key":"combo",
+ "japaneseText":"コンボ",
+ "englishUsText":"Combo",
+ "englishUsFontType":3,
+ "frenchText":"Combo",
+ "frenchFontType":3,
+ "italianText":"Combo",
+ "italianFontType":3,
+ "germanText":"Kombo",
+ "germanFontType":3,
+ "spanishText":"Combo",
+ "spanishFontType":3,
+ "chineseTText":"連段",
+ "chineseTFontType":1,
+ "koreanText":"콤보",
+ "koreanFontType":2,
+ "portugueseText":"Combo",
+ "portugueseFontType":3,
+ "russianText":"Комбо",
+ "russianFontType":3,
+ "turkishText":"Kombo",
+ "turkishFontType":3,
+ "arabicText":"كومبو",
+ "arabicFontType":3,
+ "dutchText":"Combo",
+ "dutchFontType":3,
+ "chineseSText":"连段",
+ "chineseSFontType":4
+ },
+ {
+ "key":"combo_fukidasi",
+ "japaneseText":"コンボ!",
+ "englishUsText":"Combo!",
+ "englishUsFontType":3,
+ "frenchText":"Combo !",
+ "frenchFontType":3,
+ "italianText":"Combo!",
+ "italianFontType":3,
+ "germanText":"Kombo!",
+ "germanFontType":3,
+ "spanishText":"¡Combo!",
+ "spanishFontType":3,
+ "chineseTText":"連段!",
+ "chineseTFontType":1,
+ "koreanText":"콤보!",
+ "koreanFontType":2,
+ "portugueseText":"Combo!",
+ "portugueseFontType":3,
+ "russianText":"Комбо!",
+ "russianFontType":3,
+ "turkishText":"Kombo!",
+ "turkishFontType":3,
+ "arabicText":"كومبو!",
+ "arabicFontType":3,
+ "dutchText":"Combo!",
+ "dutchFontType":3,
+ "chineseSText":"连段!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"course_easy",
+ "japaneseText":"かんたん",
+ "englishUsText":"Easy",
+ "englishUsFontType":3,
+ "frenchText":"Facile",
+ "frenchFontType":3,
+ "italianText":"Facile",
+ "italianFontType":3,
+ "germanText":"Leicht",
+ "germanFontType":3,
+ "spanishText":"Fácil",
+ "spanishFontType":3,
+ "chineseTText":"簡單",
+ "chineseTFontType":1,
+ "koreanText":"쉬움",
+ "koreanFontType":2,
+ "portugueseText":"Fácil",
+ "portugueseFontType":3,
+ "russianText":"Просто",
+ "russianFontType":3,
+ "turkishText":"Kolay",
+ "turkishFontType":3,
+ "arabicText":"سهل",
+ "arabicFontType":3,
+ "dutchText":"Makkelijk",
+ "dutchFontType":3,
+ "chineseSText":"简单",
+ "chineseSFontType":4
+ },
+ {
+ "key":"course_hard",
+ "japaneseText":"むずかしい",
+ "englishUsText":"Hard",
+ "englishUsFontType":3,
+ "frenchText":"Difficile",
+ "frenchFontType":3,
+ "italianText":"Difficile",
+ "italianFontType":3,
+ "germanText":"Schwer",
+ "germanFontType":3,
+ "spanishText":"Difícil",
+ "spanishFontType":3,
+ "chineseTText":"困難",
+ "chineseTFontType":1,
+ "koreanText":"어려움",
+ "koreanFontType":2,
+ "portugueseText":"Difícil",
+ "portugueseFontType":3,
+ "russianText":"Сложно",
+ "russianFontType":3,
+ "turkishText":"Zor",
+ "turkishFontType":3,
+ "arabicText":"صعب",
+ "arabicFontType":3,
+ "dutchText":"Moeilijk",
+ "dutchFontType":3,
+ "chineseSText":"困难",
+ "chineseSFontType":4
+ },
+ {
+ "key":"course_mania",
+ "japaneseText":"おに",
+ "englishUsText":"Extreme",
+ "englishUsFontType":3,
+ "frenchText":"Extrême",
+ "frenchFontType":3,
+ "italianText":"Estrema",
+ "italianFontType":3,
+ "germanText":"Extrem",
+ "germanFontType":3,
+ "spanishText":"Extremo",
+ "spanishFontType":3,
+ "chineseTText":"魔王",
+ "chineseTFontType":1,
+ "koreanText":"귀신",
+ "koreanFontType":2,
+ "portugueseText":"Extrema",
+ "portugueseFontType":3,
+ "russianText":"Предел",
+ "russianFontType":3,
+ "turkishText":"Aşırı",
+ "turkishFontType":3,
+ "arabicText":"أقصى",
+ "arabicFontType":3,
+ "dutchText":"Extreme",
+ "dutchFontType":3,
+ "chineseSText":"魔王",
+ "chineseSFontType":4
+ },
+ {
+ "key":"course_normal",
+ "japaneseText":"ふつう",
+ "englishUsText":"Normal",
+ "englishUsFontType":3,
+ "frenchText":"Normal",
+ "frenchFontType":3,
+ "italianText":"Normale",
+ "italianFontType":3,
+ "germanText":"Normal",
+ "germanFontType":3,
+ "spanishText":"Normal",
+ "spanishFontType":3,
+ "chineseTText":"普通",
+ "chineseTFontType":1,
+ "koreanText":"보통",
+ "koreanFontType":2,
+ "portugueseText":"Normal",
+ "portugueseFontType":3,
+ "russianText":"Обычно",
+ "russianFontType":3,
+ "turkishText":"Normal",
+ "turkishFontType":3,
+ "arabicText":"عادي",
+ "arabicFontType":3,
+ "dutchText":"Normaal",
+ "dutchFontType":3,
+ "chineseSText":"普通",
+ "chineseSFontType":4
+ },
+ {
+ "key":"course_ura",
+ "japaneseText":"おに",
+ "englishUsText":"Extreme",
+ "englishUsFontType":3,
+ "frenchText":"Extrême",
+ "frenchFontType":3,
+ "italianText":"Estrema",
+ "italianFontType":3,
+ "germanText":"Extrem",
+ "germanFontType":3,
+ "spanishText":"Extremo",
+ "spanishFontType":3,
+ "chineseTText":"魔王",
+ "chineseTFontType":1,
+ "koreanText":"귀신",
+ "koreanFontType":2,
+ "portugueseText":"Extrema",
+ "portugueseFontType":3,
+ "russianText":"Предел",
+ "russianFontType":3,
+ "turkishText":"Aşırı",
+ "turkishFontType":3,
+ "arabicText":"أقصى",
+ "arabicFontType":3,
+ "dutchText":"Extreme",
+ "dutchFontType":3,
+ "chineseSText":"魔王",
+ "chineseSFontType":4
+ },
+ {
+ "key":"gavel",
+ "japaneseText":"速くドン連打!",
+ "englishUsText":"Fast drum roll!",
+ "englishUsFontType":3,
+ "frenchText":"Roulement de tambour rapide !",
+ "frenchFontType":3,
+ "italianText":"Rullo rapido!",
+ "italianFontType":3,
+ "germanText":"Schneller Trommelwirbel!",
+ "germanFontType":3,
+ "spanishText":"¡Redoble rápido!",
+ "spanishFontType":3,
+ "chineseTText":"快速咚連打!",
+ "chineseTFontType":1,
+ "koreanText":"빠르게 쿵 연타!",
+ "koreanFontType":2,
+ "portugueseText":"Toque depressa!",
+ "portugueseFontType":3,
+ "russianText":"Быстрая дробь!",
+ "russianFontType":3,
+ "turkishText":"Hızlıca trampet çal!",
+ "turkishFontType":3,
+ "arabicText":"درم رول بسرعة!",
+ "arabicFontType":3,
+ "dutchText":"Snel tromgeroffel!",
+ "dutchFontType":3,
+ "chineseSText":"快速咚连打!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"genre_anime",
+ "japaneseText":"アニメ",
+ "englishUsText":"Anime",
+ "englishUsFontType":3,
+ "frenchText":"Anime",
+ "frenchFontType":3,
+ "italianText":"Anime",
+ "italianFontType":3,
+ "germanText":"Anime",
+ "germanFontType":3,
+ "spanishText":"Anime",
+ "spanishFontType":3,
+ "chineseTText":"卡通動畫音樂",
+ "chineseTFontType":1,
+ "koreanText":"애니메이션",
+ "koreanFontType":2,
+ "portugueseText":"Anime",
+ "portugueseFontType":3,
+ "russianText":"Аниме",
+ "russianFontType":3,
+ "turkishText":"Anime",
+ "turkishFontType":3,
+ "arabicText":"أنيمي",
+ "arabicFontType":3,
+ "dutchText":"Anime",
+ "dutchFontType":3,
+ "chineseSText":"卡通动画音乐",
+ "chineseSFontType":4
+ },
+ {
+ "key":"genre_classic",
+ "japaneseText":"クラシック",
+ "englishUsText":"Classical",
+ "englishUsFontType":3,
+ "frenchText":"Classique",
+ "frenchFontType":3,
+ "italianText":"Classica",
+ "italianFontType":3,
+ "germanText":"Klassik",
+ "germanFontType":3,
+ "spanishText":"Clásicas",
+ "spanishFontType":3,
+ "chineseTText":"古典音樂",
+ "chineseTFontType":1,
+ "koreanText":"클래식",
+ "koreanFontType":2,
+ "portugueseText":"Clássicas",
+ "portugueseFontType":3,
+ "russianText":"Классика",
+ "russianFontType":3,
+ "turkishText":"Klasik",
+ "turkishFontType":3,
+ "arabicText":"كلاسيكي",
+ "arabicFontType":3,
+ "dutchText":"Klassiek",
+ "dutchFontType":3,
+ "chineseSText":"古典音乐",
+ "chineseSFontType":4
+ },
+ {
+ "key":"genre_game",
+ "japaneseText":"ゲームミュージック",
+ "englishUsText":"Game Music",
+ "englishUsFontType":3,
+ "frenchText":"Musique de jeu",
+ "frenchFontType":3,
+ "italianText":"Videogiochi",
+ "italianFontType":3,
+ "germanText":"Spielmusik",
+ "germanFontType":3,
+ "spanishText":"Música de juegos",
+ "spanishFontType":3,
+ "chineseTText":"遊戲音樂",
+ "chineseTFontType":1,
+ "koreanText":"게임 음악",
+ "koreanFontType":2,
+ "portugueseText":"Músicas de videogames",
+ "portugueseFontType":3,
+ "russianText":"Музыка из игр",
+ "russianFontType":3,
+ "turkishText":"Oyun müziği",
+ "turkishFontType":3,
+ "arabicText":"موسيقى اللعبة",
+ "arabicFontType":3,
+ "dutchText":"Spelmuziek",
+ "dutchFontType":3,
+ "chineseSText":"游戏音乐",
+ "chineseSFontType":4
+ },
+ {
+ "key":"genre_namco",
+ "japaneseText":"ナムコオリジナル",
+ "englishUsText":"NAMCO Original",
+ "englishUsFontType":3,
+ "frenchText":"NAMCO Original",
+ "frenchFontType":3,
+ "italianText":"Originali Namco",
+ "italianFontType":3,
+ "germanText":"NAMCO-Originale",
+ "germanFontType":3,
+ "spanishText":"Originales de NAMCO",
+ "spanishFontType":3,
+ "chineseTText":"NAMCO原創音樂",
+ "chineseTFontType":1,
+ "koreanText":"남코 오리지널",
+ "koreanFontType":2,
+ "portugueseText":"Originais Namco",
+ "portugueseFontType":3,
+ "russianText":"Музыка от NAMCO",
+ "russianFontType":3,
+ "turkishText":"NAMCO Orijinal",
+ "turkishFontType":3,
+ "arabicText":"NAMCO أصلية",
+ "arabicFontType":3,
+ "dutchText":"NAMCO Original",
+ "dutchFontType":3,
+ "chineseSText":"NAMCO原创音乐",
+ "chineseSFontType":4
+ },
+ {
+ "key":"genre_pops",
+ "japaneseText":"ポップス",
+ "englishUsText":"Pop",
+ "englishUsFontType":3,
+ "frenchText":"Pop",
+ "frenchFontType":3,
+ "italianText":"Pop",
+ "italianFontType":3,
+ "germanText":"POP",
+ "germanFontType":3,
+ "spanishText":"Pop",
+ "spanishFontType":3,
+ "chineseTText":"流行音樂",
+ "chineseTFontType":1,
+ "koreanText":"POP",
+ "koreanFontType":2,
+ "portugueseText":"Pop",
+ "portugueseFontType":3,
+ "russianText":"Поп",
+ "russianFontType":3,
+ "turkishText":"POP",
+ "turkishFontType":3,
+ "arabicText":"بوب",
+ "arabicFontType":3,
+ "dutchText":"Pop",
+ "dutchFontType":3,
+ "chineseSText":"流行音乐",
+ "chineseSFontType":4
+ },
+ {
+ "key":"genre_variety",
+ "japaneseText":"バラエティ",
+ "englishUsText":"Others",
+ "englishUsFontType":3,
+ "frenchText":"Variétés",
+ "frenchFontType":3,
+ "italianText":"Altro",
+ "italianFontType":3,
+ "germanText":"Diverse",
+ "germanFontType":3,
+ "spanishText":"Varias",
+ "spanishFontType":3,
+ "chineseTText":"綜合音樂",
+ "chineseTFontType":1,
+ "koreanText":"버라이어티",
+ "koreanFontType":2,
+ "portugueseText":"Variadas",
+ "portugueseFontType":3,
+ "russianText":"Разное",
+ "russianFontType":3,
+ "turkishText":"Çeşitlilik",
+ "turkishFontType":3,
+ "arabicText":"أخرى",
+ "arabicFontType":3,
+ "dutchText":"Overig",
+ "dutchFontType":3,
+ "chineseSText":"综合音乐",
+ "chineseSFontType":4
+ },
+ {
+ "key":"genre_vocalo",
+ "japaneseText":"ボーカロイド™曲",
+ "englishUsText":"VOCALOID™",
+ "englishUsFontType":3,
+ "frenchText":"VOCALOID™ Music",
+ "frenchFontType":3,
+ "italianText":"VOCALOID™ Music",
+ "italianFontType":3,
+ "germanText":"VOCALOID™-Titel",
+ "germanFontType":3,
+ "spanishText":"VOCALOID™",
+ "spanishFontType":3,
+ "chineseTText":"VOCALOID™ Music",
+ "chineseTFontType":1,
+ "koreanText":"VOCALOID™ Music",
+ "koreanFontType":2,
+ "portugueseText":"VOCALOID™",
+ "portugueseFontType":3,
+ "russianText":"VOCALOID™",
+ "russianFontType":3,
+ "turkishText":"VOCALOID™ Music",
+ "turkishFontType":3,
+ "arabicText":"VOCALOID™",
+ "arabicFontType":3,
+ "dutchText":"VOCALOID™",
+ "dutchFontType":3,
+ "chineseSText":"VOCALOID™ Music",
+ "chineseSFontType":4
+ },
+ {
+ "key":"genre_favorite",
+ "japaneseText":"お気に入り",
+ "englishUsText":"Favorite",
+ "englishUsFontType":3,
+ "frenchText":"Favorite",
+ "frenchFontType":3,
+ "italianText":"Preferite",
+ "italianFontType":3,
+ "germanText":"Favoriten",
+ "germanFontType":3,
+ "spanishText":"Favoritas",
+ "spanishFontType":3,
+ "chineseTText":"中意樂曲",
+ "chineseTFontType":1,
+ "koreanText":"즐겨찾기",
+ "koreanFontType":2,
+ "portugueseText":"Favoritas",
+ "portugueseFontType":3,
+ "russianText":"Любимое",
+ "russianFontType":3,
+ "turkishText":"Favori",
+ "turkishFontType":3,
+ "arabicText":"مفضل",
+ "arabicFontType":3,
+ "dutchText":"Favoriet",
+ "dutchFontType":3,
+ "chineseSText":"中意乐曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"genre_newsong",
+ "japaneseText":"新曲",
+ "englishUsText":"New",
+ "englishUsFontType":3,
+ "frenchText":"Nouveauté",
+ "frenchFontType":3,
+ "italianText":"Novità",
+ "italianFontType":3,
+ "germanText":"Neu",
+ "germanFontType":3,
+ "spanishText":"Nueva",
+ "spanishFontType":3,
+ "chineseTText":"新曲",
+ "chineseTFontType":1,
+ "koreanText":"신곡",
+ "koreanFontType":2,
+ "portugueseText":"Nova",
+ "portugueseFontType":3,
+ "russianText":"Новое",
+ "russianFontType":3,
+ "turkishText":"Yeni",
+ "turkishFontType":3,
+ "arabicText":"الجديد",
+ "arabicFontType":3,
+ "dutchText":"Nieuw",
+ "dutchFontType":3,
+ "chineseSText":"新曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"genre_ranked",
+ "japaneseText":"人気曲",
+ "englishUsText":"Ranked",
+ "englishUsFontType":3,
+ "frenchText":"Populaire",
+ "frenchFontType":3,
+ "italianText":"Popolari",
+ "italianFontType":3,
+ "germanText":"Ranked",
+ "germanFontType":3,
+ "spanishText":"Populares",
+ "spanishFontType":3,
+ "chineseTText":"熱門曲",
+ "chineseTFontType":1,
+ "koreanText":"인기곡",
+ "koreanFontType":2,
+ "portugueseText":"Populares",
+ "portugueseFontType":3,
+ "russianText":"Популярное",
+ "russianFontType":3,
+ "turkishText":"Sınıf",
+ "turkishFontType":3,
+ "arabicText":"المرتبة",
+ "arabicFontType":3,
+ "dutchText":"Plaats",
+ "dutchFontType":3,
+ "chineseSText":"热门曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"hiscore_update",
+ "japaneseText":"自己ベスト更新",
+ "englishUsText":"New Record",
+ "englishUsFontType":3,
+ "frenchText":"Meilleur score !",
+ "frenchFontType":3,
+ "italianText":"Nuovo record",
+ "italianFontType":3,
+ "germanText":"Neuer Rekord",
+ "germanFontType":3,
+ "spanishText":"Nuevo récord",
+ "spanishFontType":3,
+ "chineseTText":"刷新自我紀錄",
+ "chineseTFontType":1,
+ "koreanText":"마이 베스트 경신",
+ "koreanFontType":2,
+ "portugueseText":"Novo recorde",
+ "portugueseFontType":3,
+ "russianText":"Новая запись",
+ "russianFontType":3,
+ "turkishText":"Yeni Rekor",
+ "turkishFontType":3,
+ "arabicText":"رقم جديد",
+ "arabicFontType":3,
+ "dutchText":"Topscore",
+ "dutchFontType":3,
+ "chineseSText":"刷新自我纪录",
+ "chineseSFontType":4
+ },
+ {
+ "key":"renda",
+ "japaneseText":"連打!!",
+ "englishUsText":"Drum Roll!!",
+ "englishUsFontType":3,
+ "frenchText":"Roul. tambour !",
+ "frenchFontType":3,
+ "italianText":"Rullo di tamburo!",
+ "italianFontType":3,
+ "germanText":"Trommelwirbel!",
+ "germanFontType":3,
+ "spanishText":"¡Redoble!",
+ "spanishFontType":3,
+ "chineseTText":"連打!!",
+ "chineseTFontType":1,
+ "koreanText":"연타!!",
+ "koreanFontType":2,
+ "portugueseText":"Rufar!!",
+ "portugueseFontType":2,
+ "russianText":"Дробь!",
+ "russianFontType":2,
+ "turkishText":"Trampet!!",
+ "turkishFontType":2,
+ "arabicText":"درم رول!",
+ "arabicFontType":2,
+ "dutchText":"Tromgeroffel!",
+ "dutchFontType":2,
+ "chineseSText":"连打!!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"neiro_description_taiko",
+ "japaneseText":"和太鼓の力強い音色",
+ "englishUsText":"Hear the power of a Taiko drum",
+ "englishUsFontType":3,
+ "frenchText":"Le timbre fort du taiko.",
+ "frenchFontType":3,
+ "italianText":"La potenza del tamburo giapponese",
+ "italianFontType":3,
+ "germanText":"Spür den tiefen Klang der Taiko-Trommel!",
+ "germanFontType":3,
+ "spanishText":"Escucha un potente tambor Taiko",
+ "spanishFontType":3,
+ "chineseTText":"和太鼓強而有力的音色",
+ "chineseTFontType":1,
+ "koreanText":"일본 북의 힘찬 음색",
+ "koreanFontType":2,
+ "portugueseText":"Escute o poder do Taiko",
+ "portugueseFontType":2,
+ "russianText":"Мощный тон японских барабанов",
+ "russianFontType":2,
+ "turkishText":"Taiko davulunun gücünü hisset",
+ "turkishFontType":2,
+ "arabicText":"اسمع قوة طبلة التايكو",
+ "arabicFontType":2,
+ "dutchText":"Hoor de kracht van een Taiko-drum",
+ "dutchFontType":2,
+ "chineseSText":"和太鼓强而有力的音色",
+ "chineseSFontType":4
+ },
+ {
+ "key":"neiro_description_drumkit",
+ "japaneseText":"軽快なスネアドラム",
+ "englishUsText":"Rock out on a snare drum",
+ "englishUsFontType":3,
+ "frenchText":"Le doux son d'une caisse claire.",
+ "frenchFontType":3,
+ "italianText":"Un delicato rullo di batteria",
+ "italianFontType":3,
+ "germanText":"Beschwingte Schnarrtrommel-Melodie!",
+ "germanFontType":3,
+ "spanishText":"Un buen redoble",
+ "spanishFontType":3,
+ "chineseTText":"輕快的小鼓",
+ "chineseTFontType":1,
+ "koreanText":"경쾌한 스네어 드럼",
+ "koreanFontType":2,
+ "portugueseText":"Mande ver na caixa",
+ "portugueseFontType":2,
+ "russianText":"Легкий малый барабан",
+ "russianFontType":2,
+ "turkishText":"Trampette gösteri yap",
+ "turkishFontType":2,
+ "arabicText":"أبدع على طبلة السنير الجانبية",
+ "arabicFontType":2,
+ "dutchText":"Rocken op een kleine trom",
+ "dutchFontType":2,
+ "chineseSText":"轻快的小鼓",
+ "chineseSFontType":4
+ },
+ {
+ "key":"neiro_description_tanba",
+ "japaneseText":"楽しく盛り上がれる",
+ "englishUsText":"Shake it, shake it, shake it!",
+ "englishUsFontType":3,
+ "frenchText":"À la fois excitant et amusant.",
+ "frenchFontType":3,
+ "italianText":"Suonarlo mette allegria!",
+ "italianFontType":3,
+ "germanText":"Schwing dein Tanzbein!",
+ "germanFontType":3,
+ "spanishText":"Instrumento que pone la marcha",
+ "spanishFontType":3,
+ "chineseTText":"愉快地嗨起來",
+ "chineseTFontType":1,
+ "koreanText":"즐겁게 분위기를 띄운다",
+ "koreanFontType":2,
+ "portugueseText":"Vamos agitar!",
+ "portugueseFontType":2,
+ "russianText":"Веселый бубен!",
+ "russianFontType":2,
+ "turkishText":"Ritme kaptır kendini!",
+ "turkishFontType":2,
+ "arabicText":"واكب الإيقاع واستمتع!",
+ "arabicFontType":2,
+ "dutchText":"Dans er helemaal op los!",
+ "dutchFontType":2,
+ "chineseSText":"愉快地嗨起来",
+ "chineseSFontType":4
+ },
+ {
+ "key":"neiro_description_conga",
+ "japaneseText":"エキゾチックなビート!",
+ "englishUsText":"A tropical beat!",
+ "englishUsFontType":3,
+ "frenchText":"Un beat exotique !",
+ "frenchFontType":3,
+ "italianText":"Per un ritmo esotico!",
+ "italianFontType":3,
+ "germanText":"Exotische Beats!",
+ "germanFontType":3,
+ "spanishText":"¡Un ritmo tropical!",
+ "spanishFontType":3,
+ "chineseTText":"充滿異國風情的節奏!",
+ "chineseTFontType":1,
+ "koreanText":"이국적인 비트!",
+ "koreanFontType":2,
+ "portugueseText":"Uma batida tropical!",
+ "portugueseFontType":2,
+ "russianText":"Тропический барабан!",
+ "russianFontType":2,
+ "turkishText":"Egzotik bir vuruş!",
+ "turkishFontType":2,
+ "arabicText":"إيقاع غريب!",
+ "arabicFontType":2,
+ "dutchText":"Een tropische beat!",
+ "dutchFontType":2,
+ "chineseSText":"充满异国风情的节奏!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"neiro_description_bit-tuned",
+ "japaneseText":"なつかしの8ビットサウンド",
+ "englishUsText":"Does this 8-bit take you back?",
+ "englishUsFontType":3,
+ "frenchText":"Un son 8-bit nostalgique.",
+ "frenchFontType":3,
+ "italianText":"Che nostalgia i suoni 8-bit!",
+ "italianFontType":3,
+ "germanText":"Nostalgische 8-Bit-Sounds!",
+ "germanFontType":3,
+ "spanishText":"Los 8 bits te llevan al pasado",
+ "spanishFontType":3,
+ "chineseTText":"懷舊的8bit音效",
+ "chineseTFontType":1,
+ "koreanText":"추억의 8비트 사운드",
+ "koreanFontType":2,
+ "portugueseText":"O 8-bit te dá saudades?",
+ "portugueseFontType":2,
+ "russianText":"Ностальгический 8-битный звук",
+ "russianFontType":2,
+ "turkishText":"8-bit seni geriye götürür mü?",
+ "turkishFontType":2,
+ "arabicText":"موسيقى 8-بت تجعلك تحنّ للماضي",
+ "arabicFontType":2,
+ "dutchText":"Retro 8-bit geluid ",
+ "dutchFontType":2,
+ "chineseSText":"怀旧的8bit音效",
+ "chineseSFontType":4
+ },
+ {
+ "key":"neiro_description_tudumi",
+ "japaneseText":"切れの良い小太鼓とかけ声",
+ "englishUsText":"Turn it into a kabuki show!",
+ "englishUsFontType":3,
+ "frenchText":"Petit taiko et cris entraînants.",
+ "frenchFontType":3,
+ "italianText":"Ritmo punteggiato da vocalizzi",
+ "italianFontType":3,
+ "germanText":"Die Kabuki-Show kann beginnen!",
+ "germanFontType":3,
+ "spanishText":"¡Crea un espectáculo Kabuki!",
+ "spanishFontType":3,
+ "chineseTText":"清脆的小太鼓與吶喊聲",
+ "chineseTFontType":1,
+ "koreanText":"강렬한 작은 북과 함성",
+ "koreanFontType":2,
+ "portugueseText":"Vamos fazer um show de Kabuki!",
+ "portugueseFontType":2,
+ "russianText":"Устрой театр Кабуки!",
+ "russianFontType":2,
+ "turkishText":"Bunu bir Kabuki gösterisi yap!",
+ "turkishFontType":2,
+ "arabicText":"حوّل الأجواء إلى عرض كابوكي!",
+ "arabicFontType":2,
+ "dutchText":"Maak er een Kabuki-show van!",
+ "dutchFontType":2,
+ "chineseSText":"清脆的小太鼓与呐喊声",
+ "chineseSFontType":4
+ },
+ {
+ "key":"neiro_description_kodaiko",
+ "japaneseText":"お囃子の小さな太鼓と鈴の音",
+ "englishUsText":"Make those bells and drums sing!",
+ "englishUsFontType":3,
+ "frenchText":"Son de cloches et de taiko.",
+ "frenchFontType":3,
+ "italianText":"Rullante e campanella giapponesi",
+ "italianFontType":3,
+ "germanText":"Lass die Glocken und Trommeln ertönen!",
+ "germanFontType":3,
+ "spanishText":"Tintinea y tamborilea",
+ "spanishFontType":3,
+ "chineseTText":"囃子的小太鼓與鈴聲",
+ "chineseTFontType":1,
+ "koreanText":"악사들의 작은 북과 방울 소리",
+ "koreanFontType":2,
+ "portugueseText":"Faça esses tambores e sinos soarem!",
+ "portugueseFontType":2,
+ "russianText":"Маленький барабан и колокольчик",
+ "russianFontType":2,
+ "turkishText":"Zil ve davulları adeta coştur!",
+ "turkishFontType":2,
+ "arabicText":"اجعل هذه الأجراس والطبول تغني!",
+ "arabicFontType":2,
+ "dutchText":"Maak muziek met klokken en drums",
+ "dutchFontType":2,
+ "chineseSText":"囃子的小太鼓与铃声",
+ "chineseSFontType":4
+ },
+ {
+ "key":"neiro_description_gorgeous",
+ "japaneseText":"ゴージャスに鳴り響きます",
+ "englishUsText":"For a gorgeously deep sound!",
+ "englishUsFontType":3,
+ "frenchText":"Sa résonance est magnifique.",
+ "frenchFontType":3,
+ "italianText":"Un magnifico timbro profondo!",
+ "italianFontType":3,
+ "germanText":"Für einen imposanten tiefen Klang!",
+ "germanFontType":3,
+ "spanishText":"Requetesuena de lujo",
+ "spanishFontType":3,
+ "chineseTText":"奢華響宴",
+ "chineseTFontType":1,
+ "koreanText":"우아하게 울려 퍼집니다",
+ "koreanFontType":2,
+ "portugueseText":"Um som magnífico e profundo!",
+ "portugueseFontType":2,
+ "russianText":"Бархатный, низкий звук",
+ "russianFontType":2,
+ "turkishText":"Görkemli bir ses için!",
+ "turkishFontType":2,
+ "arabicText":"\nللحصول على صوت عميق رائع!",
+ "arabicFontType":2,
+ "dutchText":"Zorg voor prachtig vol geluid!",
+ "dutchFontType":2,
+ "chineseSText":"奢华响宴",
+ "chineseSFontType":4
+ },
+ {
+ "key":"neiro_description_dogcat",
+ "japaneseText":"ワンワン!ニャーニャー!",
+ "englishUsText":"Woof woof! Meooow!",
+ "englishUsFontType":3,
+ "frenchText":"Ouaf ouaf ! Miaou miaou !",
+ "frenchFontType":3,
+ "italianText":"Bau bau! Miao miao!",
+ "italianFontType":3,
+ "germanText":"Wuff, wuff! Miaaaaau!",
+ "germanFontType":3,
+ "spanishText":"¡Guau, guau! ¡Miau, miau!",
+ "spanishFontType":3,
+ "chineseTText":"汪汪!喵喵!",
+ "chineseTFontType":1,
+ "koreanText":"멍멍! 야옹야옹!",
+ "koreanFontType":2,
+ "portugueseText":"Au! Au! Miau! Miau!",
+ "portugueseFontType":2,
+ "russianText":"Гав-гав! Мяу-мяу!",
+ "russianFontType":2,
+ "turkishText":"Hav hav! Miyaaav!",
+ "turkishFontType":2,
+ "arabicText":"وووف ووف! ميااوو!",
+ "arabicFontType":2,
+ "dutchText":"Woef woef! Miauw!",
+ "dutchFontType":2,
+ "chineseSText":"汪汪!喵喵!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"neiro_description_taiho",
+ "japaneseText":"ズドーンとぶっ放します",
+ "englishUsText":"Kabooooom!",
+ "englishUsFontType":3,
+ "frenchText":"Fait de gros boums.",
+ "frenchFontType":3,
+ "italianText":"Buuum! Un'esplosione sonora!",
+ "italianFontType":3,
+ "germanText":"Kawummmm!",
+ "germanFontType":3,
+ "spanishText":"¡Catapún!",
+ "spanishFontType":3,
+ "chineseTText":"轟隆開火",
+ "chineseTFontType":1,
+ "koreanText":"펑하고 발사합니다",
+ "koreanFontType":2,
+ "portugueseText":"Kabuuuuuum!",
+ "portugueseFontType":2,
+ "russianText":"Бубуууух!",
+ "russianFontType":2,
+ "turkishText":"KaBooooom! ",
+ "turkishFontType":2,
+ "arabicText":"كابوووووم!",
+ "arabicFontType":2,
+ "dutchText":"Kaboem!",
+ "dutchFontType":2,
+ "chineseSText":"轰隆开火",
+ "chineseSFontType":4
+ },
+ {
+ "key":"neiro_description_cooking",
+ "japaneseText":"野菜を切って炒めます",
+ "englishUsText":"Chop those veggies and fry 'em up!",
+ "englishUsFontType":3,
+ "frenchText":"Pour préparer des légumes.",
+ "frenchFontType":3,
+ "italianText":"Taglia e cuoci le verdure!",
+ "italianFontType":3,
+ "germanText":"Gemüse schnippeln und frittieren!",
+ "germanFontType":3,
+ "spanishText":"¡Corta y fríe esas verduritas!",
+ "spanishFontType":3,
+ "chineseTText":"將青菜切碎快炒",
+ "chineseTFontType":1,
+ "koreanText":"채소를 잘라서 볶습니다",
+ "koreanFontType":2,
+ "portugueseText":"Pique e refogue os vegetais!",
+ "portugueseFontType":2,
+ "russianText":"Нарезать и обжарить овощи",
+ "russianFontType":2,
+ "turkishText":"Kes şu sebzeleri ve kızart!",
+ "turkishFontType":2,
+ "arabicText":"قطّع هذه الخضروات وقم بتحميرها!",
+ "arabicFontType":2,
+ "dutchText":"Snijd groente en bak het gaar!",
+ "dutchFontType":2,
+ "chineseSText":"将青菜切碎快炒",
+ "chineseSFontType":4
+ },
+ {
+ "key":"neiro_description_soiya",
+ "japaneseText":"おまつりのかけ声です",
+ "englishUsText":"Get into those festival chants!",
+ "englishUsFontType":3,
+ "frenchText":"Les cris du festival.",
+ "frenchFontType":3,
+ "italianText":"I canti dei festival giapponesi",
+ "italianFontType":3,
+ "germanText":"Lasst die Festrufe erklingen!",
+ "germanFontType":3,
+ "spanishText":"Alaridos festivaleros",
+ "spanishFontType":3,
+ "chineseTText":"祭典的吶喊聲",
+ "chineseTFontType":1,
+ "koreanText":"축제의 함성입니다",
+ "koreanFontType":2,
+ "portugueseText":"Caia no som do Festival!",
+ "portugueseFontType":2,
+ "russianText":"Фестивальные кричалки",
+ "russianFontType":2,
+ "turkishText":"Festival şarkılarına dahil ol!",
+ "turkishFontType":2,
+ "arabicText":"انغمس في هتافات المهرجان هذه !",
+ "arabicFontType":2,
+ "dutchText":"Ga mee op in dat festivalgezang!",
+ "dutchFontType":2,
+ "chineseSText":"祭典的呐喊声",
+ "chineseSFontType":4
+ },
+ {
+ "key":"neiro_description_mokugyo",
+ "japaneseText":"お寺で聞こえる音色です",
+ "englishUsText":"You can hear these at a temple",
+ "englishUsFontType":3,
+ "frenchText":"Un son évoquant les temples.",
+ "frenchFontType":3,
+ "italianText":"Si sente spesso nei templi",
+ "italianFontType":3,
+ "germanText":"So klingt es in Tempeln.",
+ "germanFontType":3,
+ "spanishText":"Se puede oír en templos",
+ "spanishFontType":3,
+ "chineseTText":"能在寺廟裡聽見的音色",
+ "chineseTFontType":1,
+ "koreanText":"절에서 들리는 음색입니다",
+ "koreanFontType":2,
+ "portugueseText":"Você pode ouvir isso no templo",
+ "portugueseFontType":2,
+ "russianText":"Эти звуки можно услышать в храме",
+ "russianFontType":2,
+ "turkishText":"Bir tapınakta bile duyabilirsin",
+ "turkishFontType":2,
+ "arabicText":"يمكنك سماع هذه الآلة في المعبد",
+ "arabicFontType":2,
+ "dutchText":"Dit hoor je in tempels",
+ "dutchFontType":2,
+ "chineseSText":"能在寺庙里听见的音色",
+ "chineseSFontType":4
+ },
+ {
+ "key":"neiro_description_pacman",
+ "japaneseText":"クッキーをワカワカたべます",
+ "englishUsText":"Munch those cookies! Waka waka!",
+ "englishUsFontType":3,
+ "frenchText":"Il mange des biscuits.",
+ "frenchFontType":3,
+ "italianText":"Divora biscotti! Waka waka!",
+ "italianFontType":3,
+ "germanText":"Mampf die Kekse! Waka-waka!",
+ "germanFontType":3,
+ "spanishText":"¡Devora galletitas! ¡Waka, waka!",
+ "spanishFontType":3,
+ "chineseTText":"Waka Waka吃餅乾",
+ "chineseTFontType":1,
+ "koreanText":"쿠키를 와작와작 먹습니다",
+ "koreanFontType":2,
+ "portugueseText":"Uma baita mordida nos biscoitos!",
+ "portugueseFontType":2,
+ "russianText":"Похрусти печеньками! Вака-вака!",
+ "russianFontType":2,
+ "turkishText":"Kurabiyeleri ye! Waka-waka!",
+ "turkishFontType":2,
+ "arabicText":"التهم هذا الكعك! واكا-واكا!",
+ "arabicFontType":2,
+ "dutchText":"Verorber die koekjes, mmm!",
+ "dutchFontType":2,
+ "chineseSText":"Waka Waka吃饼干",
+ "chineseSFontType":4
+ },
+ {
+ "key":"neiro_description_kakegoe",
+ "japaneseText":"拍手とかけ声でライブ気分",
+ "englishUsText":"Cheer and clap that performance!",
+ "englishUsFontType":3,
+ "frenchText":"Clameur et ambiance de concert !",
+ "frenchFontType":3,
+ "italianText":"Grida e applausi da concerto!",
+ "italianFontType":3,
+ "germanText":"Jubel und Klatschen zur Darbietung!",
+ "germanFontType":3,
+ "spanishText":"¡Aplaude! ¡Qué actuación!",
+ "spanishFontType":3,
+ "chineseTText":"掌聲加尖叫,好像演唱會",
+ "chineseTFontType":1,
+ "koreanText":"박수와 함성으로 느끼는 라이브 콘서트 기분",
+ "koreanFontType":2,
+ "portugueseText":"Vamos agitar essa performance!",
+ "portugueseFontType":2,
+ "russianText":"Аплодисменты и вопли восторга!",
+ "russianFontType":2,
+ "turkishText":"Bu performansa alkış tut!",
+ "turkishFontType":2,
+ "arabicText":"صفق وشجع هذا الأداء!",
+ "arabicFontType":2,
+ "dutchText":"Juich en klap voor het optreden!",
+ "dutchFontType":2,
+ "chineseSText":"掌声加尖叫,好像演唱会",
+ "chineseSFontType":4
+ },
+ {
+ "key":"neiro_description_bike",
+ "japaneseText":"ブーンとアクセル全開!",
+ "englishUsText":"Rev up and off you go!",
+ "englishUsFontType":3,
+ "frenchText":"Vrooooooum, les gaz à fond !",
+ "frenchFontType":3,
+ "italianText":"Accelera a tutto gas!",
+ "italianFontType":3,
+ "germanText":"Tritt aufs Pedal! Gib Vollgas!",
+ "germanFontType":3,
+ "spanishText":"¡Acelera al máximo!",
+ "spanishFontType":3,
+ "chineseTText":"催下去,油門催到底!",
+ "chineseTFontType":1,
+ "koreanText":"부릉하고 힘껏 액셀을 밟자!",
+ "koreanFontType":2,
+ "portugueseText":"Acelere e vá com tudo!",
+ "portugueseFontType":2,
+ "russianText":"Ударь по газам!",
+ "russianFontType":2,
+ "turkishText":"Hızlan ve hallet!",
+ "turkishFontType":2,
+ "arabicText":"زد السرعة وانطلق!",
+ "arabicFontType":2,
+ "dutchText":"Laat iedereen ver achter je!",
+ "dutchFontType":2,
+ "chineseSText":"催下去,油门催到底!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"neiro_description_syuri",
+ "japaneseText":"シュッシュッと投げます",
+ "englishUsText":"Throw them with a swhoosh!",
+ "englishUsFontType":3,
+ "frenchText":"Fais-les siffler dans l'air !",
+ "frenchFontType":3,
+ "italianText":"Da lanciare con un \"swish\"!",
+ "italianFontType":3,
+ "germanText":"Wirf sie so, dass sie zischen!",
+ "germanFontType":3,
+ "spanishText":"¡Lanza y lanza! ¡Bashoon!",
+ "spanishFontType":3,
+ "chineseTText":"咻咻發射",
+ "chineseTFontType":1,
+ "koreanText":"슉슉 던집니다",
+ "koreanFontType":2,
+ "portugueseText":"Jogue-os com um sussurro!",
+ "portugueseFontType":2,
+ "russianText":"Сделай точный бросок!",
+ "russianFontType":2,
+ "turkishText":"Islıkla onları fırlat!",
+ "turkishFontType":2,
+ "arabicText":"اقذفهم باحتراف!",
+ "arabicFontType":2,
+ "dutchText":"Laat iedereen versteld staan!",
+ "dutchFontType":2,
+ "chineseSText":"咻咻发射",
+ "chineseSFontType":4
+ },
+ {
+ "key":"neiro_description_kendo",
+ "japaneseText":"気合を入れて打ち込みます",
+ "englishUsText":"En garde! Ready your shinai!",
+ "englishUsFontType":3,
+ "frenchText":"Frappe avec énergie !",
+ "frenchFontType":3,
+ "italianText":"Fai un affondo con lo shinai!",
+ "italianFontType":3,
+ "germanText":"Schwing das Bambusschwert!",
+ "germanFontType":3,
+ "spanishText":"¡En guardia! ¡Que no te engañe!",
+ "spanishFontType":3,
+ "chineseTText":"集中精神奮力一揮",
+ "chineseTFontType":1,
+ "koreanText":"기합을 넣고 돌격합니다",
+ "koreanFontType":2,
+ "portugueseText":"De guarda! Prepare sua shinai!",
+ "portugueseFontType":2,
+ "russianText":"Меч на изготовку!",
+ "russianFontType":2,
+ "turkishText":"Shinai ile gardını al!",
+ "turkishFontType":2,
+ "arabicText":"مستعد بالشيناي خاصتك!",
+ "arabicFontType":2,
+ "dutchText":"En garde! Zet je shinai klaar!",
+ "dutchFontType":2,
+ "chineseSText":"集中精神奋力一挥",
+ "chineseSFontType":4
+ },
+ {
+ "key":"neiro_description_donvoice",
+ "japaneseText":"どんちゃんのかわいい声です",
+ "englishUsText":"It's DON-chan's cute lil' voice!",
+ "englishUsFontType":3,
+ "frenchText":"La voix mignonne de DON-chan.",
+ "frenchFontType":3,
+ "italianText":"La simpatica voce di DON-chan!",
+ "italianFontType":3,
+ "germanText":"DON-chans süße Stimme!",
+ "germanFontType":3,
+ "spanishText":"Sonidito chachi de DON-chan",
+ "spanishFontType":3,
+ "chineseTText":"小咚可愛的聲音",
+ "chineseTFontType":1,
+ "koreanText":"동이의 귀여운 목소리입니다",
+ "koreanFontType":2,
+ "portugueseText":"A linda voz de DON-chan!",
+ "portugueseFontType":2,
+ "russianText":"Это милый голос Дон-тян!",
+ "russianFontType":2,
+ "turkishText":"Bu DON-chan'ın sevimli sesi!",
+ "turkishFontType":2,
+ "arabicText":"صوت دون-تشان الصغير اللطيف!",
+ "arabicFontType":2,
+ "dutchText":"Het is de schattige DON-chan!",
+ "dutchFontType":2,
+ "chineseSText":"小咚可爱的声音",
+ "chineseSFontType":4
+ },
+ {
+ "key":"neiro_description_silent",
+ "japaneseText":"音楽をしっかり聴いて演奏できる",
+ "englishUsText":"Just listen to the music and play",
+ "englishUsFontType":3,
+ "frenchText":"Joue en écoutant la musique.",
+ "frenchFontType":3,
+ "italianText":"Gioca ascoltando bene la musica",
+ "italianFontType":3,
+ "germanText":"Hör der Musik gut zu und spiele.",
+ "germanFontType":3,
+ "spanishText":"Escucha bien y juega",
+ "spanishFontType":3,
+ "chineseTText":"演奏時可以清楚地聽到音樂",
+ "chineseTFontType":1,
+ "koreanText":"음악을 또렷하게 들으며 연주할 수 있습니다",
+ "koreanFontType":2,
+ "portugueseText":"Apenas escute a música e toque",
+ "portugueseFontType":2,
+ "russianText":"Слушай музыку и все получится",
+ "russianFontType":2,
+ "turkishText":"Sadece müziği dinle ve çal",
+ "turkishFontType":2,
+ "arabicText":"استمع للموسيقى فقط والعب",
+ "arabicFontType":2,
+ "dutchText":"Speel luisterend naar de muziek",
+ "dutchFontType":2,
+ "chineseSText":"演奏时可以清楚地听到音乐",
+ "chineseSFontType":4
+ },
+ {
+ "key":"neiro_taiko",
+ "japaneseText":"太鼓(きほん)",
+ "englishUsText":"Drum (basic)",
+ "englishUsFontType":3,
+ "frenchText":"Tambour (Base)",
+ "frenchFontType":3,
+ "italianText":"Tamburo (base)",
+ "italianFontType":3,
+ "germanText":"Trommel (Basic)",
+ "germanFontType":3,
+ "spanishText":"Tambor (básico)",
+ "spanishFontType":3,
+ "chineseTText":"太鼓(基本)",
+ "chineseTFontType":1,
+ "koreanText":"북(기본)",
+ "koreanFontType":2,
+ "portugueseText":"Tambor (básico)",
+ "portugueseFontType":2,
+ "russianText":"Барабан (баз.)",
+ "russianFontType":2,
+ "turkishText":"Davul (temel)",
+ "turkishFontType":2,
+ "arabicText":"طبلة (أساسي)",
+ "arabicFontType":2,
+ "dutchText":"Drum (normaal)",
+ "dutchFontType":2,
+ "chineseSText":"太鼓(基本)",
+ "chineseSFontType":10
+ },
+ {
+ "key":"neiro_drumkit",
+ "japaneseText":"ドラム",
+ "englishUsText":"Drumkit",
+ "englishUsFontType":3,
+ "frenchText":"Batterie",
+ "frenchFontType":3,
+ "italianText":"Batteria",
+ "italianFontType":3,
+ "germanText":"Schlagzeug",
+ "germanFontType":3,
+ "spanishText":"Batería",
+ "spanishFontType":3,
+ "chineseTText":"爵士鼓",
+ "chineseTFontType":1,
+ "koreanText":"드럼",
+ "koreanFontType":2,
+ "portugueseText":"Bateria",
+ "portugueseFontType":2,
+ "russianText":"Удар. установка",
+ "russianFontType":2,
+ "turkishText":"Bateri seti",
+ "turkishFontType":2,
+ "arabicText":"عدة الطبل",
+ "arabicFontType":2,
+ "dutchText":"Drumset",
+ "dutchFontType":2,
+ "chineseSText":"爵士鼓",
+ "chineseSFontType":10
+ },
+ {
+ "key":"neiro_tanba",
+ "japaneseText":"タンバリン",
+ "englishUsText":"Tamborine",
+ "englishUsFontType":3,
+ "frenchText":"Tambourin",
+ "frenchFontType":3,
+ "italianText":"Tamburello",
+ "italianFontType":3,
+ "germanText":"Tamburin",
+ "germanFontType":3,
+ "spanishText":"Pandereta",
+ "spanishFontType":3,
+ "chineseTText":"鈴鼓",
+ "chineseTFontType":1,
+ "koreanText":"탬버린",
+ "koreanFontType":2,
+ "portugueseText":"Pandeiro",
+ "portugueseFontType":2,
+ "russianText":"Тамбурин",
+ "russianFontType":2,
+ "turkishText":"Tef",
+ "turkishFontType":2,
+ "arabicText":"تامبورين",
+ "arabicFontType":2,
+ "dutchText":"Tamboerijn",
+ "dutchFontType":2,
+ "chineseSText":"铃鼓",
+ "chineseSFontType":10
+ },
+ {
+ "key":"neiro_conga",
+ "japaneseText":"コンガ",
+ "englishUsText":"Conga",
+ "englishUsFontType":3,
+ "frenchText":"Conga",
+ "frenchFontType":3,
+ "italianText":"Conga",
+ "italianFontType":3,
+ "germanText":"Conga",
+ "germanFontType":3,
+ "spanishText":"Conga",
+ "spanishFontType":3,
+ "chineseTText":"康加鼓",
+ "chineseTFontType":1,
+ "koreanText":"콩가",
+ "koreanFontType":2,
+ "portugueseText":"Conga",
+ "portugueseFontType":2,
+ "russianText":"Конга",
+ "russianFontType":2,
+ "turkishText":"Konga",
+ "turkishFontType":2,
+ "arabicText":"كونجا",
+ "arabicFontType":2,
+ "dutchText":"Conga",
+ "dutchFontType":2,
+ "chineseSText":"康加鼓",
+ "chineseSFontType":10
+ },
+ {
+ "key":"neiro_bit-tuned",
+ "japaneseText":"8ビット太鼓",
+ "englishUsText":"8-bit Drum",
+ "englishUsFontType":3,
+ "frenchText":"Tambour 8-bit",
+ "frenchFontType":3,
+ "italianText":"Tamburo 8-bit",
+ "italianFontType":3,
+ "germanText":"8-Bit-Trommel",
+ "germanFontType":3,
+ "spanishText":"Tambor 8 bits",
+ "spanishFontType":3,
+ "chineseTText":"8bit太鼓",
+ "chineseTFontType":1,
+ "koreanText":"8비트 북",
+ "koreanFontType":2,
+ "portugueseText":"Tambor 8-bits",
+ "portugueseFontType":2,
+ "russianText":"Барабан 8-бит",
+ "russianFontType":2,
+ "turkishText":"8'lik vuruş",
+ "turkishFontType":2,
+ "arabicText":"طبلة 8-بت",
+ "arabicFontType":2,
+ "dutchText":"8-bitdrum",
+ "dutchFontType":2,
+ "chineseSText":"8bit太鼓",
+ "chineseSFontType":10
+ },
+ {
+ "key":"neiro_tudumi",
+ "japaneseText":"つづみ",
+ "englishUsText":"Hand Drum",
+ "englishUsFontType":3,
+ "frenchText":"Tambour à main",
+ "frenchFontType":3,
+ "italianText":"Tamburo a mano",
+ "italianFontType":3,
+ "germanText":"Handtrommel",
+ "germanFontType":3,
+ "spanishText":"Timbal",
+ "spanishFontType":3,
+ "chineseTText":"日本小鼓",
+ "chineseTFontType":1,
+ "koreanText":"꾸러미",
+ "koreanFontType":2,
+ "portugueseText":"Tambor de mão",
+ "portugueseFontType":2,
+ "russianText":"Ручной барабан",
+ "russianFontType":2,
+ "turkishText":"Darbuka",
+ "turkishFontType":2,
+ "arabicText":"طبلة يد",
+ "arabicFontType":2,
+ "dutchText":"Handdrum",
+ "dutchFontType":2,
+ "chineseSText":"日本小鼓",
+ "chineseSFontType":10
+ },
+ {
+ "key":"neiro_kodaiko",
+ "japaneseText":"小太鼓",
+ "englishUsText":"Small Drum",
+ "englishUsFontType":3,
+ "frenchText":"Petit tambour",
+ "frenchFontType":3,
+ "italianText":"Tamburo piccolo",
+ "italianFontType":3,
+ "germanText":"Kleine Trommel",
+ "germanFontType":3,
+ "spanishText":"Tambor pequeño",
+ "spanishFontType":3,
+ "chineseTText":"小太鼓",
+ "chineseTFontType":1,
+ "koreanText":"작은 북",
+ "koreanFontType":2,
+ "portugueseText":"Tambor pequeno",
+ "portugueseFontType":2,
+ "russianText":"Малый барабан",
+ "russianFontType":2,
+ "turkishText":"Kudüm",
+ "turkishFontType":2,
+ "arabicText":"طبلة صغيرة",
+ "arabicFontType":2,
+ "dutchText":"Kleine drum",
+ "dutchFontType":2,
+ "chineseSText":"小太鼓",
+ "chineseSFontType":10
+ },
+ {
+ "key":"neiro_gorgeous",
+ "japaneseText":"ごうかな太鼓",
+ "englishUsText":"Deluxe Drum",
+ "englishUsFontType":3,
+ "frenchText":"Tambour de luxe",
+ "frenchFontType":3,
+ "italianText":"Tamburo deluxe",
+ "italianFontType":3,
+ "germanText":"Deluxe-Trommel",
+ "germanFontType":3,
+ "spanishText":"Tambor de lujo",
+ "spanishFontType":3,
+ "chineseTText":"豪華太鼓",
+ "chineseTFontType":1,
+ "koreanText":"화려한 북",
+ "koreanFontType":2,
+ "portugueseText":"Tambor Luxuoso",
+ "portugueseFontType":2,
+ "russianText":"Особый барабан",
+ "russianFontType":2,
+ "turkishText":"Yüks Stand Davul",
+ "turkishFontType":2,
+ "arabicText":"طبلة ديلوكس",
+ "arabicFontType":2,
+ "dutchText":"Deluxe drum",
+ "dutchFontType":2,
+ "chineseSText":"豪华太鼓",
+ "chineseSFontType":10
+ },
+ {
+ "key":"neiro_dogcat",
+ "japaneseText":"いぬねこ",
+ "englishUsText":"Dogs & Cats",
+ "englishUsFontType":3,
+ "frenchText":"Chiens et chats",
+ "frenchFontType":3,
+ "italianText":"Cani e gatti",
+ "italianFontType":3,
+ "germanText":"Hunde & Katzen",
+ "germanFontType":3,
+ "spanishText":"Perros y gatos",
+ "spanishFontType":3,
+ "chineseTText":"狗與貓",
+ "chineseTFontType":1,
+ "koreanText":"멍멍야옹",
+ "koreanFontType":2,
+ "portugueseText":"Cães e gatos",
+ "portugueseFontType":2,
+ "russianText":"Собаки и кошки",
+ "russianFontType":2,
+ "turkishText":"Köpekler & Kediler",
+ "turkishFontType":2,
+ "arabicText":"كلاب وقطط",
+ "arabicFontType":2,
+ "dutchText":"Honden & katten",
+ "dutchFontType":2,
+ "chineseSText":"狗与猫",
+ "chineseSFontType":10
+ },
+ {
+ "key":"neiro_taiho",
+ "japaneseText":"大砲",
+ "englishUsText":"Cannon",
+ "englishUsFontType":3,
+ "frenchText":"Canon",
+ "frenchFontType":3,
+ "italianText":"Cannone",
+ "italianFontType":3,
+ "germanText":"Kanone",
+ "germanFontType":3,
+ "spanishText":"Cañón",
+ "spanishFontType":3,
+ "chineseTText":"大砲",
+ "chineseTFontType":1,
+ "koreanText":"대포",
+ "koreanFontType":2,
+ "portugueseText":"Canhão",
+ "portugueseFontType":2,
+ "russianText":"Пушка",
+ "russianFontType":2,
+ "turkishText":"Top",
+ "turkishFontType":2,
+ "arabicText":"مدفع",
+ "arabicFontType":2,
+ "dutchText":"Kanon",
+ "dutchFontType":2,
+ "chineseSText":"大炮",
+ "chineseSFontType":10
+ },
+ {
+ "key":"neiro_cooking",
+ "japaneseText":"料理",
+ "englishUsText":"Kitchen",
+ "englishUsFontType":3,
+ "frenchText":"Cuisine",
+ "frenchFontType":3,
+ "italianText":"Cucina",
+ "italianFontType":3,
+ "germanText":"Küche",
+ "germanFontType":3,
+ "spanishText":"Cocina",
+ "spanishFontType":3,
+ "chineseTText":"烹飪",
+ "chineseTFontType":1,
+ "koreanText":"요리",
+ "koreanFontType":2,
+ "portugueseText":"Cozinha",
+ "portugueseFontType":2,
+ "russianText":"Кухня",
+ "russianFontType":2,
+ "turkishText":"Mutfak",
+ "turkishFontType":2,
+ "arabicText":"مطبخ",
+ "arabicFontType":2,
+ "dutchText":"Keuken",
+ "dutchFontType":2,
+ "chineseSText":"烹饪",
+ "chineseSFontType":10
+ },
+ {
+ "key":"neiro_soiya",
+ "japaneseText":"ソイヤ",
+ "englishUsText":"Heave-Ho",
+ "englishUsFontType":3,
+ "frenchText":"Oh hisse !",
+ "frenchFontType":3,
+ "italianText":"Oh issa",
+ "italianFontType":3,
+ "germanText":"Hau-ruck",
+ "germanFontType":3,
+ "spanishText":"Griterío",
+ "spanishFontType":3,
+ "chineseTText":"使勁聲",
+ "chineseTFontType":1,
+ "koreanText":"이얍",
+ "koreanFontType":2,
+ "portugueseText":"Heave-Ho",
+ "portugueseFontType":2,
+ "russianText":"Раз-два",
+ "russianFontType":2,
+ "turkishText":"İşten atılma",
+ "turkishFontType":2,
+ "arabicText":"هيڤ-هو",
+ "arabicFontType":2,
+ "dutchText":"Hey-Ho",
+ "dutchFontType":2,
+ "chineseSText":"嘿呀",
+ "chineseSFontType":10
+ },
+ {
+ "key":"neiro_mokugyo",
+ "japaneseText":"もくぎょ",
+ "englishUsText":"Wooden Fish",
+ "englishUsFontType":3,
+ "frenchText":"Poisson en bois",
+ "frenchFontType":3,
+ "italianText":"Mokugyo",
+ "italianFontType":3,
+ "germanText":"Holzfisch",
+ "germanFontType":3,
+ "spanishText":"Pez de madera",
+ "spanishFontType":3,
+ "chineseTText":"木魚",
+ "chineseTFontType":1,
+ "koreanText":"목탁",
+ "koreanFontType":2,
+ "portugueseText":"Peixe de madeira",
+ "portugueseFontType":2,
+ "russianText":"Деревянная рыба",
+ "russianFontType":2,
+ "turkishText":"Ahşap Balık",
+ "turkishFontType":2,
+ "arabicText":"سمكة خشبية",
+ "arabicFontType":2,
+ "dutchText":"Houten Vis",
+ "dutchFontType":2,
+ "chineseSText":"木鱼",
+ "chineseSFontType":10
+ },
+ {
+ "key":"neiro_pacman",
+ "japaneseText":"パックマン",
+ "englishUsText":"Pac-Man",
+ "englishUsFontType":3,
+ "frenchText":"Pac-Man",
+ "frenchFontType":3,
+ "italianText":"Pac-Man",
+ "italianFontType":3,
+ "germanText":"Pac-Man",
+ "germanFontType":3,
+ "spanishText":"Pac-Man",
+ "spanishFontType":3,
+ "chineseTText":"小精靈",
+ "chineseTFontType":1,
+ "koreanText":"팩맨",
+ "koreanFontType":2,
+ "portugueseText":"Pac-Man",
+ "portugueseFontType":2,
+ "russianText":"Pac-Man",
+ "russianFontType":2,
+ "turkishText":"Pac-Man",
+ "turkishFontType":2,
+ "arabicText":"باك-مان",
+ "arabicFontType":2,
+ "dutchText":"Pacman",
+ "dutchFontType":2,
+ "chineseSText":"小精灵",
+ "chineseSFontType":10
+ },
+ {
+ "key":"neiro_kakegoe",
+ "japaneseText":"おっかけ",
+ "englishUsText":"Cheering",
+ "englishUsFontType":3,
+ "frenchText":"Encouragement",
+ "frenchFontType":3,
+ "italianText":"Tifo",
+ "italianFontType":3,
+ "germanText":"Jubel",
+ "germanFontType":3,
+ "spanishText":"Ánimos",
+ "spanishFontType":3,
+ "chineseTText":"日式伴唱聲",
+ "chineseTFontType":1,
+ "koreanText":"기합",
+ "koreanFontType":2,
+ "portugueseText":"Torcida",
+ "portugueseFontType":2,
+ "russianText":"Аплодисменты",
+ "russianFontType":2,
+ "turkishText":"Neşelenme",
+ "turkishFontType":2,
+ "arabicText":"تشجيع",
+ "arabicFontType":2,
+ "dutchText":"Gejuich",
+ "dutchFontType":2,
+ "chineseSText":"日式伴唱声",
+ "chineseSFontType":10
+ },
+ {
+ "key":"neiro_bike",
+ "japaneseText":"バイク",
+ "englishUsText":"Motorcycle",
+ "englishUsFontType":3,
+ "frenchText":"Moto",
+ "frenchFontType":3,
+ "italianText":"Motocicletta",
+ "italianFontType":3,
+ "germanText":"Motorrad",
+ "germanFontType":3,
+ "spanishText":"Motocicleta",
+ "spanishFontType":3,
+ "chineseTText":"摩托車",
+ "chineseTFontType":1,
+ "koreanText":"오토바이",
+ "koreanFontType":2,
+ "portugueseText":"Moto",
+ "portugueseFontType":2,
+ "russianText":"Мотоцикл",
+ "russianFontType":2,
+ "turkishText":"Motosiklet",
+ "turkishFontType":2,
+ "arabicText":"دراجة نارية",
+ "arabicFontType":2,
+ "dutchText":"Motorfiets",
+ "dutchFontType":2,
+ "chineseSText":"摩托车",
+ "chineseSFontType":10
+ },
+ {
+ "key":"neiro_syuri",
+ "japaneseText":"手裏剣",
+ "englishUsText":"Shuriken",
+ "englishUsFontType":3,
+ "frenchText":"Shuriken",
+ "frenchFontType":3,
+ "italianText":"Shuriken",
+ "italianFontType":3,
+ "germanText":"Shuriken",
+ "germanFontType":3,
+ "spanishText":"Shuriken",
+ "spanishFontType":3,
+ "chineseTText":"手裡劍",
+ "chineseTFontType":1,
+ "koreanText":"수리검",
+ "koreanFontType":2,
+ "portugueseText":"Shuriken",
+ "portugueseFontType":2,
+ "russianText":"Сюрикэн",
+ "russianFontType":2,
+ "turkishText":"Shuriken",
+ "turkishFontType":2,
+ "arabicText":"شوريكن",
+ "arabicFontType":2,
+ "dutchText":"Shuriken",
+ "dutchFontType":2,
+ "chineseSText":"手里剑",
+ "chineseSFontType":10
+ },
+ {
+ "key":"neiro_kendo",
+ "japaneseText":"剣道",
+ "englishUsText":"Kendo",
+ "englishUsFontType":3,
+ "frenchText":"Kendo",
+ "frenchFontType":3,
+ "italianText":"Kendo",
+ "italianFontType":3,
+ "germanText":"Kendo",
+ "germanFontType":3,
+ "spanishText":"Kendo",
+ "spanishFontType":3,
+ "chineseTText":"劍道",
+ "chineseTFontType":1,
+ "koreanText":"검도",
+ "koreanFontType":2,
+ "portugueseText":"Kendô",
+ "portugueseFontType":2,
+ "russianText":"Кэндо",
+ "russianFontType":2,
+ "turkishText":"Kendo",
+ "turkishFontType":2,
+ "arabicText":"كيندو",
+ "arabicFontType":2,
+ "dutchText":"Kendo",
+ "dutchFontType":2,
+ "chineseSText":"剑道",
+ "chineseSFontType":10
+ },
+ {
+ "key":"neiro_donvoice",
+ "japaneseText":"どんちゃん",
+ "englishUsText":"DON-chan",
+ "englishUsFontType":3,
+ "frenchText":"DON-chan",
+ "frenchFontType":3,
+ "italianText":"DON-chan",
+ "italianFontType":3,
+ "germanText":"DON-chan",
+ "germanFontType":3,
+ "spanishText":"DON-chan",
+ "spanishFontType":3,
+ "chineseTText":"小咚",
+ "chineseTFontType":1,
+ "koreanText":"동이",
+ "koreanFontType":2,
+ "portugueseText":"DON-chan",
+ "portugueseFontType":2,
+ "russianText":"Дон-тян",
+ "russianFontType":2,
+ "turkishText":"DON-chan",
+ "turkishFontType":2,
+ "arabicText":"دون-شان",
+ "arabicFontType":2,
+ "dutchText":"DON-chan",
+ "dutchFontType":2,
+ "chineseSText":"小咚",
+ "chineseSFontType":10
+ },
+ {
+ "key":"neiro_silent",
+ "japaneseText":"音なし",
+ "englishUsText":"Silent",
+ "englishUsFontType":3,
+ "frenchText":"Silence",
+ "frenchFontType":3,
+ "italianText":"Silenzio",
+ "italianFontType":3,
+ "germanText":"Stumm",
+ "germanFontType":3,
+ "spanishText":"Silencio",
+ "spanishFontType":3,
+ "chineseTText":"靜音",
+ "chineseTFontType":1,
+ "koreanText":"무음",
+ "koreanFontType":2,
+ "portugueseText":"Silencioso",
+ "portugueseFontType":2,
+ "russianText":"Без звука",
+ "russianFontType":2,
+ "turkishText":"Sessiz",
+ "turkishFontType":2,
+ "arabicText":"صمت",
+ "arabicFontType":2,
+ "dutchText":"Stil",
+ "dutchFontType":2,
+ "chineseSText":"静音",
+ "chineseSFontType":4
+ },
+ {
+ "key":"crown_gold",
+ "japaneseText":"フルコンボ",
+ "englishUsText":"Perfect",
+ "englishUsFontType":3,
+ "frenchText":"Combo MAX",
+ "frenchFontType":3,
+ "italianText":"Perfetto",
+ "italianFontType":3,
+ "germanText":"Volle Kombo",
+ "germanFontType":3,
+ "spanishText":"Perfecto",
+ "spanishFontType":3,
+ "chineseTText":"全連段",
+ "chineseTFontType":1,
+ "koreanText":"풀 콤보",
+ "koreanFontType":2,
+ "portugueseText":"Perfeito",
+ "portugueseFontType":3,
+ "russianText":"Идеально",
+ "russianFontType":3,
+ "turkishText":"Tam kombo",
+ "turkishFontType":3,
+ "arabicText":"مثالي",
+ "arabicFontType":3,
+ "dutchText":"Perfect",
+ "dutchFontType":3,
+ "chineseSText":"全连段",
+ "chineseSFontType":4
+ },
+ {
+ "key":"crown_silver",
+ "japaneseText":"ノルマクリア",
+ "englishUsText":"Clear",
+ "englishUsFontType":3,
+ "frenchText":"Chanson réussie",
+ "frenchFontType":3,
+ "italianText":"Completa",
+ "italianFontType":3,
+ "germanText":"Ziel erreicht",
+ "germanFontType":3,
+ "spanishText":"Superada",
+ "spanishFontType":3,
+ "chineseTText":"演奏成功",
+ "chineseTFontType":1,
+ "koreanText":"클리어 성공",
+ "koreanFontType":2,
+ "portugueseText":"Concluída",
+ "portugueseFontType":3,
+ "russianText":"Успешно",
+ "russianFontType":3,
+ "turkishText":"Bitirme",
+ "turkishFontType":3,
+ "arabicText":"نجاح",
+ "arabicFontType":3,
+ "dutchText":"Gehaald",
+ "dutchFontType":3,
+ "chineseSText":"演奏成功",
+ "chineseSFontType":4
+ },
+ {
+ "key":"result",
+ "japaneseText":"成績発表",
+ "englishUsText":"Results",
+ "englishUsFontType":3,
+ "frenchText":"Résultats",
+ "frenchFontType":3,
+ "italianText":"Risultati",
+ "italianFontType":3,
+ "germanText":"Ergebnis",
+ "germanFontType":3,
+ "spanishText":"Resultados",
+ "spanishFontType":3,
+ "chineseTText":"發表成績",
+ "chineseTFontType":1,
+ "koreanText":"성적 발표",
+ "koreanFontType":2,
+ "portugueseText":"Resultados",
+ "portugueseFontType":3,
+ "russianText":"Результаты",
+ "russianFontType":3,
+ "turkishText":"Sonuçlar",
+ "turkishFontType":3,
+ "arabicText":"النتائج",
+ "arabicFontType":3,
+ "dutchText":"Resultaat",
+ "dutchFontType":3,
+ "chineseSText":"发表成绩",
+ "chineseSFontType":4
+ },
+ {
+ "key":"result_bestscore",
+ "japaneseText":"自己ベスト更新!",
+ "englishUsText":"New record!",
+ "englishUsFontType":3,
+ "frenchText":"Nouv. Record",
+ "frenchFontType":3,
+ "italianText":"Nuovo record!",
+ "italianFontType":3,
+ "germanText":"Neuer Rekord!",
+ "germanFontType":3,
+ "spanishText":"Nuevo récord",
+ "spanishFontType":3,
+ "chineseTText":"刷新自我紀錄!",
+ "chineseTFontType":1,
+ "koreanText":"마이 베스트 경신!",
+ "koreanFontType":2,
+ "portugueseText":"Novo recorde!",
+ "portugueseFontType":3,
+ "russianText":"Новый рекорд!",
+ "russianFontType":3,
+ "turkishText":"Yeni rekor!",
+ "turkishFontType":3,
+ "arabicText":"رقم جديد!",
+ "arabicFontType":3,
+ "dutchText":"Topscore!",
+ "dutchFontType":3,
+ "chineseSText":"刷新自我纪录!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"result_msg_clr_high_don",
+ "japaneseText":"クリア!フルコンボだドーン!",
+ "englishUsText":"CLEARED! Full Combo! You’ve out-DON yourself!",
+ "englishUsFontType":3,
+ "frenchText":"RÉUSSITE !\nCombo MAX, don !",
+ "frenchFontType":3,
+ "italianText":"COMPLETATA!\nE con un'unica combo!",
+ "italianFontType":3,
+ "germanText":"ZIEL ERREICHT! Volle Kombo, don!",
+ "germanFontType":3,
+ "spanishText":"¡Superada! ¡Perfecto, DON!",
+ "spanishFontType":3,
+ "chineseTText":"通關!全連段咚~!",
+ "chineseTFontType":1,
+ "koreanText":"클리어! 풀 콤보다쿵!",
+ "koreanFontType":2,
+ "portugueseText":"CONCLUÍDO! Perfeito!",
+ "portugueseFontType":2,
+ "russianText":"Успех! Полное комбо!",
+ "russianFontType":2,
+ "turkishText":"BİTTİ! Tam Kombo, don!",
+ "turkishFontType":2,
+ "arabicText":"نجحت! كومبو كامل! تفوقت على نفسك!",
+ "arabicFontType":2,
+ "dutchText":"GEHAALD! Full combo, een overDONderend succes!",
+ "dutchFontType":2,
+ "chineseSText":"通关!全连段咚~!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"result_msg_miss_low_don",
+ "japaneseText":"おや?次はもっといけるドン!",
+ "englishUsText":"FAILED... Better luck next time-don!",
+ "englishUsFontType":3,
+ "frenchText":"ÉCHEC... Essaie encore !",
+ "frenchFontType":3,
+ "italianText":"HAI FALLITO...\nImpegnati di più!",
+ "italianFontType":3,
+ "germanText":"FEHLSCHLAG! Streng dich an!",
+ "germanFontType":3,
+ "spanishText":"¡Desastre total! ¡Sigue metiéndole caña!",
+ "spanishFontType":3,
+ "chineseTText":"沒關係,下次會表現更好咚!",
+ "chineseTFontType":1,
+ "koreanText":"어라? 다음엔 더 힘내자쿵!",
+ "koreanFontType":2,
+ "portugueseText":"Aaaah... Mas na próxima vai!",
+ "portugueseFontType":2,
+ "russianText":"Ой! В следующий раз получится!",
+ "russianFontType":2,
+ "turkishText":"BAŞARISIZ… Daha iyisini dene!",
+ "turkishFontType":2,
+ "arabicText":"أخفقت، حاول بجد!",
+ "arabicFontType":2,
+ "dutchText":"GEFAALD… ParDON? Volgende keer beter!",
+ "dutchFontType":2,
+ "chineseSText":"没关系,下次会表现更好咚!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"result_msg_miss_high_don",
+ "japaneseText":"あとちょっと、おしかったドン!",
+ "englishUsText":"FAILED! DON give up!",
+ "englishUsFontType":3,
+ "frenchText":"ÉCHEC !\nPas loin, don !",
+ "frenchFontType":3,
+ "italianText":"HAI FALLITO,\nma mancava poco!",
+ "italianFontType":3,
+ "germanText":"FEHLSCHLAG! Knapp vorbei, don!",
+ "germanFontType":3,
+ "spanishText":"¡Casi! ¡Te ha faltado poco, DON!",
+ "spanishFontType":3,
+ "chineseTText":"可惜,就差那一點咚!",
+ "chineseTFontType":1,
+ "koreanText":"조금만 더, 엄청 아쉬웠다쿵!",
+ "koreanFontType":2,
+ "portugueseText":"QUE PENA! Foi quase!",
+ "portugueseFontType":2,
+ "russianText":"Еще немного и получится!",
+ "russianFontType":2,
+ "turkishText":"BAŞARISIZ! Çok yakındı, don!",
+ "turkishFontType":2,
+ "arabicText":"أخفقت! لا تستسلم!",
+ "arabicFontType":2,
+ "dutchText":"GEFAALD! Zie het niet te DONker in!",
+ "dutchFontType":2,
+ "chineseSText":"可惜,就差那一点咚!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"result_msg_clr_low_don",
+ "japaneseText":"クリア!上手に演奏できたドン!",
+ "englishUsText":"CLEARED! Extraor-DON-ary!",
+ "englishUsFontType":3,
+ "frenchText":"RÉUSSITE ! Bien joué !",
+ "frenchFontType":3,
+ "italianText":"COMPLETATA!\nComplimenti!",
+ "italianFontType":3,
+ "germanText":"GESCHAFFT! Gut gespielt, don!",
+ "germanFontType":3,
+ "spanishText":"¡Superada! ¡Bien tocado!",
+ "spanishFontType":3,
+ "chineseTText":"通關!演奏得非常出色咚!",
+ "chineseTFontType":1,
+ "koreanText":"클리어! 훌륭하게 연주했다쿵!",
+ "koreanFontType":2,
+ "portugueseText":"CONCLUÍDO! Ótima performance!",
+ "portugueseFontType":2,
+ "russianText":"Успех! Хорошее исполнение!",
+ "russianFontType":2,
+ "turkishText":"BİTTİ! İyi oynadın!",
+ "turkishFontType":2,
+ "arabicText":"نجحت! لعبت جيدا!",
+ "arabicFontType":2,
+ "dutchText":"GEHAALD! DONders goed!",
+ "dutchFontType":2,
+ "chineseSText":"通关!演奏得非常出色咚!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"result_msg_clr_high_meka",
+ "japaneseText":"クリア!!大成功だメカ!!",
+ "englishUsText":"CLEARED! Mecha Great Success!",
+ "englishUsFontType":3,
+ "frenchText":"RÉUSSITE !\nSuper succès Mecha !",
+ "frenchFontType":3,
+ "italianText":"COMPLETATA!\nChe ritmo, BIP BIP.",
+ "italianFontType":3,
+ "germanText":"GESCHAFFT! Mega-Mecha-Erfolg!",
+ "germanFontType":3,
+ "spanishText":"¡Superada!\n¡Supertriunfo, BIP, BIP!",
+ "spanishFontType":3,
+ "chineseTText":"通關!!演奏大成功MEKA!!",
+ "chineseTFontType":1,
+ "koreanText":"클리어!! 대성공이다메카!!",
+ "koreanFontType":2,
+ "portugueseText":"CONCLUÍDO!\nSucesso total!",
+ "portugueseFontType":2,
+ "russianText":"Успех! Пройдено!",
+ "russianFontType":2,
+ "turkishText":"BİTTİ! Mükemmel Başarı!",
+ "turkishFontType":2,
+ "arabicText":"نجحت! نجاح عظيم!",
+ "arabicFontType":2,
+ "dutchText":"GEHAALD! Mechagroot succes!",
+ "dutchFontType":2,
+ "chineseSText":"通关!!演奏大成功MEKA!!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"combo_num",
+ "japaneseText":"最大コンボ数",
+ "englishUsText":"MAX Combo",
+ "englishUsFontType":3,
+ "frenchText":"Nbre max de combos",
+ "frenchFontType":3,
+ "italianText":"Max combo",
+ "italianFontType":3,
+ "germanText":"MAX. Kombo",
+ "germanFontType":3,
+ "spanishText":"Combo máx",
+ "spanishFontType":3,
+ "chineseTText":"最多連段數",
+ "chineseTFontType":1,
+ "koreanText":"최대 콤보 수",
+ "koreanFontType":2,
+ "portugueseText":"Combo máximo",
+ "portugueseFontType":3,
+ "russianText":"МаксКомбо",
+ "russianFontType":3,
+ "turkishText":"Max Kombo",
+ "turkishFontType":3,
+ "arabicText":"أقص كومبو",
+ "arabicFontType":3,
+ "dutchText":"MAX combo",
+ "dutchFontType":3,
+ "chineseSText":"最多连段数",
+ "chineseSFontType":4
+ },
+ {
+ "key":"renda_num",
+ "japaneseText":"連打数",
+ "englishUsText":"Drum Roll",
+ "englishUsFontType":3,
+ "frenchText":"Roul. de tambour",
+ "frenchFontType":3,
+ "italianText":"Rulli",
+ "italianFontType":3,
+ "germanText":"Trommelwirbel",
+ "germanFontType":3,
+ "spanishText":"Redoble",
+ "spanishFontType":3,
+ "chineseTText":"連打數",
+ "chineseTFontType":1,
+ "koreanText":"연타 횟수",
+ "koreanFontType":2,
+ "portugueseText":"Rufadas",
+ "portugueseFontType":3,
+ "russianText":"Дробь",
+ "russianFontType":3,
+ "turkishText":"Trampet",
+ "turkishFontType":3,
+ "arabicText":"درم رول",
+ "arabicFontType":3,
+ "dutchText":"Geroffel",
+ "dutchFontType":3,
+ "chineseSText":"连打数",
+ "chineseSFontType":4
+ },
+ {
+ "key":"score",
+ "japaneseText":"スコア",
+ "englishUsText":"Score",
+ "englishUsFontType":3,
+ "frenchText":"Score",
+ "frenchFontType":3,
+ "italianText":"Punti",
+ "italianFontType":3,
+ "germanText":"Punkte",
+ "germanFontType":3,
+ "spanishText":"Puntos",
+ "spanishFontType":3,
+ "chineseTText":"成績",
+ "chineseTFontType":1,
+ "koreanText":"스코어",
+ "koreanFontType":2,
+ "portugueseText":"Pontos",
+ "portugueseFontType":3,
+ "russianText":"Очки",
+ "russianFontType":3,
+ "turkishText":"Skor",
+ "turkishFontType":3,
+ "arabicText":"النقاط",
+ "arabicFontType":3,
+ "dutchText":"Score",
+ "dutchFontType":3,
+ "chineseSText":"成绩",
+ "chineseSFontType":4
+ },
+ {
+ "key":"common_yes",
+ "japaneseText":"はい",
+ "englishUsText":"Yes",
+ "englishUsFontType":3,
+ "frenchText":"Oui",
+ "frenchFontType":3,
+ "italianText":"Sì",
+ "italianFontType":3,
+ "germanText":"Ja",
+ "germanFontType":3,
+ "spanishText":"Sí",
+ "spanishFontType":3,
+ "chineseTText":"是",
+ "chineseTFontType":1,
+ "koreanText":"네",
+ "koreanFontType":2,
+ "portugueseText":"Sim",
+ "portugueseFontType":2,
+ "russianText":"Да",
+ "russianFontType":2,
+ "turkishText":"Evet",
+ "turkishFontType":2,
+ "arabicText":"نعم",
+ "arabicFontType":2,
+ "dutchText":"Ja",
+ "dutchFontType":2,
+ "chineseSText":"是",
+ "chineseSFontType":4
+ },
+ {
+ "key":"common_no",
+ "japaneseText":"いいえ",
+ "englishUsText":"No",
+ "englishUsFontType":3,
+ "frenchText":"Non",
+ "frenchFontType":3,
+ "italianText":"No",
+ "italianFontType":3,
+ "germanText":"Nein",
+ "germanFontType":3,
+ "spanishText":"No",
+ "spanishFontType":3,
+ "chineseTText":"否",
+ "chineseTFontType":1,
+ "koreanText":"아니오",
+ "koreanFontType":2,
+ "portugueseText":"Não",
+ "portugueseFontType":2,
+ "russianText":"Нет",
+ "russianFontType":2,
+ "turkishText":"Hayır",
+ "turkishFontType":2,
+ "arabicText":"لا",
+ "arabicFontType":2,
+ "dutchText":"Nee",
+ "dutchFontType":2,
+ "chineseSText":"否",
+ "chineseSFontType":4
+ },
+ {
+ "key":"common_next",
+ "japaneseText":"つぎへ",
+ "englishUsText":"Next",
+ "englishUsFontType":3,
+ "frenchText":"Suivant",
+ "frenchFontType":3,
+ "italianText":"Avanti",
+ "italianFontType":3,
+ "germanText":"Weiter",
+ "germanFontType":3,
+ "spanishText":"Seguir",
+ "spanishFontType":3,
+ "chineseTText":"繼續",
+ "chineseTFontType":1,
+ "koreanText":"다음",
+ "koreanFontType":2,
+ "portugueseText":"Próximo",
+ "portugueseFontType":2,
+ "russianText":"Далее",
+ "russianFontType":2,
+ "turkishText":"Sonraki",
+ "turkishFontType":2,
+ "arabicText":"التالي",
+ "arabicFontType":2,
+ "dutchText":"Volgende",
+ "dutchFontType":2,
+ "chineseSText":"继续",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_tmap4",
+ "japaneseText":"tmap4",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_tmap4",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_tmap4",
+ "japaneseText":"",
+ "englishUsText":"tmap4",
+ "englishUsFontType":0,
+ "frenchText":"tmap4",
+ "frenchFontType":0,
+ "italianText":"tmap4",
+ "italianFontType":0,
+ "germanText":"tmap4",
+ "germanFontType":0,
+ "spanishText":"tmap4",
+ "spanishFontType":0,
+ "chineseTText":"tmap4",
+ "chineseTFontType":0,
+ "koreanText":"tmap4",
+ "koreanFontType":0,
+ "portugueseText":"tmap4",
+ "portugueseFontType":0,
+ "russianText":"tmap4",
+ "russianFontType":0,
+ "turkishText":"tmap4",
+ "turkishFontType":0,
+ "arabicText":"tmap4",
+ "arabicFontType":0,
+ "dutchText":"tmap4",
+ "dutchFontType":0,
+ "chineseSText":"tmap4",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_natsu",
+ "japaneseText":"夏祭り",
+ "englishUsText":"Natsumatsuri",
+ "englishUsFontType":3,
+ "frenchText":"Natsumatsuri",
+ "frenchFontType":3,
+ "italianText":"Natsumatsuri",
+ "italianFontType":3,
+ "germanText":"Natsumatsuri",
+ "germanFontType":3,
+ "spanishText":"Natsumatsuri",
+ "spanishFontType":3,
+ "chineseTText":"Natsumatsuri",
+ "chineseTFontType":1,
+ "koreanText":"Natsumatsuri",
+ "koreanFontType":2,
+ "portugueseText":"Natsumatsuri",
+ "portugueseFontType":3,
+ "russianText":"Natsumatsuri",
+ "russianFontType":3,
+ "turkishText":"Natsumatsuri",
+ "turkishFontType":3,
+ "arabicText":"Natsumatsuri",
+ "arabicFontType":3,
+ "dutchText":"Natsumatsuri",
+ "dutchFontType":3,
+ "chineseSText":"Natsumatsuri",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_natsu",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_natsu",
+ "japaneseText":"",
+ "englishUsText":"夏祭り",
+ "englishUsFontType":0,
+ "frenchText":"夏祭り",
+ "frenchFontType":0,
+ "italianText":"夏祭り",
+ "italianFontType":0,
+ "germanText":"夏祭り",
+ "germanFontType":0,
+ "spanishText":"夏祭り",
+ "spanishFontType":0,
+ "chineseTText":"夏祭り",
+ "chineseTFontType":0,
+ "koreanText":"夏祭り",
+ "koreanFontType":0,
+ "portugueseText":"夏祭り",
+ "portugueseFontType":0,
+ "russianText":"夏祭り",
+ "russianFontType":0,
+ "turkishText":"夏祭り",
+ "turkishFontType":0,
+ "arabicText":"夏祭り",
+ "arabicFontType":0,
+ "dutchText":"夏祭り",
+ "dutchFontType":0,
+ "chineseSText":"夏祭り",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_2ge8ji",
+ "japaneseText":"恋",
+ "englishUsText":"KOI",
+ "englishUsFontType":3,
+ "frenchText":"KOI",
+ "frenchFontType":3,
+ "italianText":"KOI",
+ "italianFontType":3,
+ "germanText":"KOI",
+ "germanFontType":3,
+ "spanishText":"KOI",
+ "spanishFontType":3,
+ "chineseTText":"戀",
+ "chineseTFontType":1,
+ "koreanText":"코이",
+ "koreanFontType":2,
+ "portugueseText":"KOI",
+ "portugueseFontType":3,
+ "russianText":"KOI",
+ "russianFontType":3,
+ "turkishText":"KOI",
+ "turkishFontType":3,
+ "arabicText":"KOI",
+ "arabicFontType":3,
+ "dutchText":"KOI",
+ "dutchFontType":3,
+ "chineseSText":"恋",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_2ge8ji",
+ "japaneseText":"ドラマ「逃げるは恥だが役に立つ」より",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_2ge8ji",
+ "japaneseText":"",
+ "englishUsText":"恋",
+ "englishUsFontType":0,
+ "frenchText":"恋",
+ "frenchFontType":0,
+ "italianText":"恋",
+ "italianFontType":0,
+ "germanText":"恋",
+ "germanFontType":0,
+ "spanishText":"恋",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"恋",
+ "koreanFontType":0,
+ "portugueseText":"恋",
+ "portugueseFontType":0,
+ "russianText":"恋",
+ "russianFontType":0,
+ "turkishText":"恋",
+ "turkishFontType":0,
+ "arabicText":"恋",
+ "arabicFontType":0,
+ "dutchText":"恋",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_skorpg",
+ "japaneseText":"RPG",
+ "englishUsText":"RPG",
+ "englishUsFontType":3,
+ "frenchText":"RPG",
+ "frenchFontType":3,
+ "italianText":"RPG",
+ "italianFontType":3,
+ "germanText":"RPG",
+ "germanFontType":3,
+ "spanishText":"RPG",
+ "spanishFontType":3,
+ "chineseTText":"RPG",
+ "chineseTFontType":1,
+ "koreanText":"RPG",
+ "koreanFontType":2,
+ "portugueseText":"RPG",
+ "portugueseFontType":3,
+ "russianText":"RPG",
+ "russianFontType":3,
+ "turkishText":"RPG",
+ "turkishFontType":3,
+ "arabicText":"RPG",
+ "arabicFontType":3,
+ "dutchText":"RPG",
+ "dutchFontType":3,
+ "chineseSText":"RPG",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_skorpg",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_skorpg",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_kekka2",
+ "japaneseText":"シュガーソングとビターステップ",
+ "englishUsText":"Sugar Song & Bitter Step",
+ "englishUsFontType":3,
+ "frenchText":"Sugar Song & Bitter Step",
+ "frenchFontType":3,
+ "italianText":"Sugar Song & Bitter Step",
+ "italianFontType":3,
+ "germanText":"Sugar Song & Bitter Step",
+ "germanFontType":3,
+ "spanishText":"Sugar Song & Bitter Step",
+ "spanishFontType":3,
+ "chineseTText":"Sugar Song & Bitter Step",
+ "chineseTFontType":1,
+ "koreanText":"Sugar Song & Bitter Step",
+ "koreanFontType":2,
+ "portugueseText":"Sugar Song & Bitter Step",
+ "portugueseFontType":3,
+ "russianText":"Sugar Song & Bitter Step",
+ "russianFontType":3,
+ "turkishText":"Sugar Song & Bitter Step",
+ "turkishFontType":3,
+ "arabicText":"Sugar Song & Bitter Step",
+ "arabicFontType":3,
+ "dutchText":"Sugar Song & Bitter Step",
+ "dutchFontType":3,
+ "chineseSText":"Sugar Song & Bitter Step",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_kekka2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_kekka2",
+ "japaneseText":"",
+ "englishUsText":"シュガーソングとビターステップ",
+ "englishUsFontType":0,
+ "frenchText":"シュガーソングとビターステップ",
+ "frenchFontType":0,
+ "italianText":"シュガーソングとビターステップ",
+ "italianFontType":0,
+ "germanText":"シュガーソングとビターステップ",
+ "germanFontType":0,
+ "spanishText":"シュガーソングとビターステップ",
+ "spanishFontType":0,
+ "chineseTText":"シュガーソングとビターステップ",
+ "chineseTFontType":0,
+ "koreanText":"シュガーソングとビターステップ",
+ "koreanFontType":0,
+ "portugueseText":"シュガーソングとビターステップ",
+ "portugueseFontType":0,
+ "russianText":"シュガーソングとビターステップ",
+ "russianFontType":0,
+ "turkishText":"シュガーソングとビターステップ",
+ "turkishFontType":0,
+ "arabicText":"シュガーソングとビターステップ",
+ "arabicFontType":0,
+ "dutchText":"シュガーソングとビターステップ",
+ "dutchFontType":0,
+ "chineseSText":"シュガーソングとビターステップ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_gimcho",
+ "japaneseText":"ギミチョコ!!",
+ "englishUsText":"Gimme Chocolate!!",
+ "englishUsFontType":3,
+ "frenchText":"Gimme Chocolate!!",
+ "frenchFontType":3,
+ "italianText":"Gimme Chocolate!!",
+ "italianFontType":3,
+ "germanText":"Gimme Chocolate!!",
+ "germanFontType":3,
+ "spanishText":"Gimme Chocolate!!",
+ "spanishFontType":3,
+ "chineseTText":"Gimme Chocolate!!",
+ "chineseTFontType":1,
+ "koreanText":"Gimme Chocolate!!",
+ "koreanFontType":2,
+ "portugueseText":"Gimme Chocolate!!",
+ "portugueseFontType":3,
+ "russianText":"Gimme Chocolate!!",
+ "russianFontType":3,
+ "turkishText":"Gimme Chocolate!!",
+ "turkishFontType":3,
+ "arabicText":"Gimme Chocolate!!",
+ "arabicFontType":3,
+ "dutchText":"Gimme Chocolate!!",
+ "dutchFontType":3,
+ "chineseSText":"Gimme Chocolate!!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_gimcho",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_gimcho",
+ "japaneseText":"",
+ "englishUsText":"ギミチョコ!!",
+ "englishUsFontType":0,
+ "frenchText":"ギミチョコ!!",
+ "frenchFontType":0,
+ "italianText":"ギミチョコ!!",
+ "italianFontType":0,
+ "germanText":"ギミチョコ!!",
+ "germanFontType":0,
+ "spanishText":"ギミチョコ!!",
+ "spanishFontType":0,
+ "chineseTText":"ギミチョコ!!",
+ "chineseTFontType":0,
+ "koreanText":"ギミチョコ!!",
+ "koreanFontType":0,
+ "portugueseText":"ギミチョコ!!",
+ "portugueseFontType":0,
+ "russianText":"ギミチョコ!!",
+ "russianFontType":0,
+ "turkishText":"ギミチョコ!!",
+ "turkishFontType":0,
+ "arabicText":"ギミチョコ!!",
+ "arabicFontType":0,
+ "dutchText":"ギミチョコ!!",
+ "dutchFontType":0,
+ "chineseSText":"ギミチョコ!!",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_weare0",
+ "japaneseText":"ウィーアー!",
+ "englishUsText":"We Are!",
+ "englishUsFontType":3,
+ "frenchText":"We Are!",
+ "frenchFontType":3,
+ "italianText":"We Are!",
+ "italianFontType":3,
+ "germanText":"We Are!",
+ "germanFontType":3,
+ "spanishText":"We Are!",
+ "spanishFontType":3,
+ "chineseTText":"We Are!",
+ "chineseTFontType":1,
+ "koreanText":"We Are!",
+ "koreanFontType":2,
+ "portugueseText":"We Are!",
+ "portugueseFontType":3,
+ "russianText":"We Are!",
+ "russianFontType":3,
+ "turkishText":"We Are!",
+ "turkishFontType":3,
+ "arabicText":"We Are!",
+ "arabicFontType":3,
+ "dutchText":"We Are!",
+ "dutchFontType":3,
+ "chineseSText":"我们!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_weare0",
+ "japaneseText":"「ワンピース」より",
+ "englishUsText":"From \" One Piece \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" One Piece \"",
+ "frenchFontType":3,
+ "italianText":"Da \" One Piece \"",
+ "italianFontType":3,
+ "germanText":"Aus \" One Piece \"",
+ "germanFontType":3,
+ "spanishText":"De \" One Piece \"",
+ "spanishFontType":3,
+ "chineseTText":"來自 \" 航海王 \"",
+ "chineseTFontType":1,
+ "koreanText":"\"원피스\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" One Piece \"",
+ "portugueseFontType":3,
+ "russianText":"From \" One Piece \"",
+ "russianFontType":3,
+ "turkishText":"From \" One Piece \"",
+ "turkishFontType":3,
+ "arabicText":"From \" One Piece \"",
+ "arabicFontType":3,
+ "dutchText":"From \" One Piece \"",
+ "dutchFontType":3,
+ "chineseSText":"出自 \" 航海王 \"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_weare0",
+ "japaneseText":"",
+ "englishUsText":"ウィーアー!",
+ "englishUsFontType":0,
+ "frenchText":"ウィーアー!",
+ "frenchFontType":0,
+ "italianText":"ウィーアー!",
+ "italianFontType":0,
+ "germanText":"ウィーアー!",
+ "germanFontType":0,
+ "spanishText":"ウィーアー!",
+ "spanishFontType":0,
+ "chineseTText":"ウィーアー!",
+ "chineseTFontType":0,
+ "koreanText":"ウィーアー!",
+ "koreanFontType":0,
+ "portugueseText":"ウィーアー!",
+ "portugueseFontType":0,
+ "russianText":"ウィーアー!",
+ "russianFontType":0,
+ "turkishText":"ウィーアー!",
+ "turkishFontType":0,
+ "arabicText":"ウィーアー!",
+ "arabicFontType":0,
+ "dutchText":"ウィーアー!",
+ "dutchFontType":0,
+ "chineseSText":"ウィーアー!",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_chala",
+ "japaneseText":"CHA-LA HEAD-CHA-LA",
+ "englishUsText":"CHA-LA HEAD-CHA-LA",
+ "englishUsFontType":3,
+ "frenchText":"CHA-LA HEAD-CHA-LA",
+ "frenchFontType":3,
+ "italianText":"CHA-LA HEAD-CHA-LA",
+ "italianFontType":3,
+ "germanText":"CHA-LA HEAD-CHA-LA",
+ "germanFontType":3,
+ "spanishText":"CHA-LA HEAD-CHA-LA",
+ "spanishFontType":3,
+ "chineseTText":"CHA-LA HEAD-CHA-LA",
+ "chineseTFontType":1,
+ "koreanText":"CHA-LA HEAD-CHA-LA",
+ "koreanFontType":2,
+ "portugueseText":"CHA-LA HEAD-CHA-LA",
+ "portugueseFontType":3,
+ "russianText":"CHA-LA HEAD-CHA-LA",
+ "russianFontType":3,
+ "turkishText":"CHA-LA HEAD-CHA-LA",
+ "turkishFontType":3,
+ "arabicText":"CHA-LA HEAD-CHA-LA",
+ "arabicFontType":3,
+ "dutchText":"CHA-LA HEAD-CHA-LA",
+ "dutchFontType":3,
+ "chineseSText":"CHA-LA HEAD-CHA-LA",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_chala",
+ "japaneseText":"「ドラゴンボールZ」より",
+ "englishUsText":"From \" Dragon Ball Z \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Dragon Ball Z \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Dragon Ball Z \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Dragon Ball Z \"",
+ "germanFontType":3,
+ "spanishText":"De \" Dragon Ball Z \"",
+ "spanishFontType":3,
+ "chineseTText":"來自 \" 七龍珠Z \"",
+ "chineseTFontType":1,
+ "koreanText":"\"드래곤볼Z\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" Dragon Ball Z \"",
+ "portugueseFontType":3,
+ "russianText":"From \" Dragon Ball Z \"",
+ "russianFontType":3,
+ "turkishText":"From \" Dragon Ball Z \"",
+ "turkishFontType":3,
+ "arabicText":"From \" Dragon Ball Z \"",
+ "arabicFontType":3,
+ "dutchText":"From \" Dragon Ball Z \"",
+ "dutchFontType":3,
+ "chineseSText":"出自 \" 七龙珠Z \"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_chala",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_digmon",
+ "japaneseText":"Butter-Fly",
+ "englishUsText":"Butter-Fly",
+ "englishUsFontType":3,
+ "frenchText":"Butter-Fly",
+ "frenchFontType":3,
+ "italianText":"Butter-Fly",
+ "italianFontType":3,
+ "germanText":"Butter-Fly",
+ "germanFontType":3,
+ "spanishText":"Butter-Fly",
+ "spanishFontType":3,
+ "chineseTText":"Butter-Fly",
+ "chineseTFontType":1,
+ "koreanText":"Butter-Fly",
+ "koreanFontType":2,
+ "portugueseText":"Butter-Fly",
+ "portugueseFontType":3,
+ "russianText":"Butter-Fly",
+ "russianFontType":3,
+ "turkishText":"Butter-Fly",
+ "turkishFontType":3,
+ "arabicText":"Butter-Fly",
+ "arabicFontType":3,
+ "dutchText":"Butter-Fly",
+ "dutchFontType":3,
+ "chineseSText":"Butter-Fly",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_digmon",
+ "japaneseText":"「デジモンアドベンチャー」より",
+ "englishUsText":"From \" Digimon Adventure \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Digimon Adventure \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Digimon Adventure \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Digimon Adventure \"",
+ "germanFontType":3,
+ "spanishText":"De \" Digimon Adventure \"",
+ "spanishFontType":3,
+ "chineseTText":"來自 \" 數碼寶貝 大冒險 \"",
+ "chineseTFontType":1,
+ "koreanText":"\" Digimon Adventure \"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" Digimon Adventure \"",
+ "portugueseFontType":3,
+ "russianText":"From \" Digimon Adventure \"",
+ "russianFontType":3,
+ "turkishText":"From \" Digimon Adventure \"",
+ "turkishFontType":3,
+ "arabicText":"From \" Digimon Adventure \"",
+ "arabicFontType":3,
+ "dutchText":"From \" Digimon Adventure \"",
+ "dutchFontType":3,
+ "chineseSText":"出自 \" 数码宝贝 大冒险 \"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_digmon",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_ia6cho",
+ "japaneseText":"六兆年と一夜物語",
+ "englishUsText":"A Tale of Six Trillion Years and a Night",
+ "englishUsFontType":3,
+ "frenchText":"A Tale of Six Trillion Years and a Night",
+ "frenchFontType":3,
+ "italianText":"A Tale of Six Trillion Years and a Night",
+ "italianFontType":3,
+ "germanText":"A Tale of Six Trillion Years and a Night",
+ "germanFontType":3,
+ "spanishText":"A Tale of Six Trillion Years and a Night",
+ "spanishFontType":3,
+ "chineseTText":"A Tale of Six Trillion Years and a Night",
+ "chineseTFontType":1,
+ "koreanText":"로쿠쵸넨토이치야모노가타리",
+ "koreanFontType":2,
+ "portugueseText":"A Tale of Six Trillion Years and a Night",
+ "portugueseFontType":3,
+ "russianText":"A Tale of Six Trillion Years and a Night",
+ "russianFontType":3,
+ "turkishText":"A Tale of Six Trillion Years and a Night",
+ "turkishFontType":3,
+ "arabicText":"A Tale of Six Trillion Years and a Night",
+ "arabicFontType":3,
+ "dutchText":"A Tale of Six Trillion Years and a Night",
+ "dutchFontType":3,
+ "chineseSText":"A Tale of Six Trillion Years and a Night",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_ia6cho",
+ "japaneseText":"kemu",
+ "englishUsText":"kemu",
+ "englishUsFontType":3,
+ "frenchText":"kemu",
+ "frenchFontType":3,
+ "italianText":"kemu",
+ "italianFontType":3,
+ "germanText":"kemu",
+ "germanFontType":3,
+ "spanishText":"kemu",
+ "spanishFontType":3,
+ "chineseTText":"kemu",
+ "chineseTFontType":1,
+ "koreanText":"kemu",
+ "koreanFontType":2,
+ "portugueseText":"kemu",
+ "portugueseFontType":3,
+ "russianText":"kemu",
+ "russianFontType":3,
+ "turkishText":"kemu",
+ "turkishFontType":3,
+ "arabicText":"kemu",
+ "arabicFontType":3,
+ "dutchText":"kemu",
+ "dutchFontType":3,
+ "chineseSText":"kemu",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_ia6cho",
+ "japaneseText":"",
+ "englishUsText":"六兆年と一夜物語",
+ "englishUsFontType":0,
+ "frenchText":"六兆年と一夜物語",
+ "frenchFontType":0,
+ "italianText":"六兆年と一夜物語",
+ "italianFontType":0,
+ "germanText":"六兆年と一夜物語",
+ "germanFontType":0,
+ "spanishText":"六兆年と一夜物語",
+ "spanishFontType":0,
+ "chineseTText":"六兆年と一夜物語",
+ "chineseTFontType":0,
+ "koreanText":"六兆年と一夜物語",
+ "koreanFontType":0,
+ "portugueseText":"六兆年と一夜物語",
+ "portugueseFontType":0,
+ "russianText":"六兆年と一夜物語",
+ "russianFontType":0,
+ "turkishText":"六兆年と一夜物語",
+ "turkishFontType":0,
+ "arabicText":"六兆年と一夜物語",
+ "arabicFontType":0,
+ "dutchText":"六兆年と一夜物語",
+ "dutchFontType":0,
+ "chineseSText":"六兆年と一夜物語",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_mikuaa",
+ "japaneseText":"エイリアンエイリアン",
+ "englishUsText":"Alien Alien",
+ "englishUsFontType":3,
+ "frenchText":"Alien Alien",
+ "frenchFontType":3,
+ "italianText":"Alien Alien",
+ "italianFontType":3,
+ "germanText":"Alien Alien",
+ "germanFontType":3,
+ "spanishText":"Alien Alien",
+ "spanishFontType":3,
+ "chineseTText":"Alien Alien",
+ "chineseTFontType":1,
+ "koreanText":"Alien Alien",
+ "koreanFontType":2,
+ "portugueseText":"Alien Alien",
+ "portugueseFontType":3,
+ "russianText":"Alien Alien",
+ "russianFontType":3,
+ "turkishText":"Alien Alien",
+ "turkishFontType":3,
+ "arabicText":"Alien Alien",
+ "arabicFontType":3,
+ "dutchText":"Alien Alien",
+ "dutchFontType":3,
+ "chineseSText":"Alien Alien",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_mikuaa",
+ "japaneseText":"ナユタン星人 feat. 初音ミク",
+ "englishUsText":"Nayutan Seijin feat.Hatsune Miku",
+ "englishUsFontType":3,
+ "frenchText":"Nayutan Seijin feat.Hatsune Miku",
+ "frenchFontType":3,
+ "italianText":"Nayutan Seijin feat.Hatsune Miku",
+ "italianFontType":3,
+ "germanText":"Nayutan Seijin feat.Hatsune Miku",
+ "germanFontType":3,
+ "spanishText":"Nayutan Seijin feat.Hatsune Miku",
+ "spanishFontType":3,
+ "chineseTText":"Nayutan Seijin feat.初音未來",
+ "chineseTFontType":1,
+ "koreanText":"Nayutan Seijin feat.하츠네 미쿠",
+ "koreanFontType":2,
+ "portugueseText":"Nayutan Seijin feat.Hatsune Miku",
+ "portugueseFontType":3,
+ "russianText":"Nayutan Seijin feat.Hatsune Miku",
+ "russianFontType":3,
+ "turkishText":"Nayutan Seijin feat.Hatsune Miku",
+ "turkishFontType":3,
+ "arabicText":"Nayutan Seijin feat.Hatsune Miku",
+ "arabicFontType":3,
+ "dutchText":"Nayutan Seijin feat.Hatsune Miku",
+ "dutchFontType":3,
+ "chineseSText":"Nayutan Seijin feat.初音未来",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_mikuaa",
+ "japaneseText":"",
+ "englishUsText":"エイリアンエイリアン",
+ "englishUsFontType":0,
+ "frenchText":"エイリアンエイリアン",
+ "frenchFontType":0,
+ "italianText":"エイリアンエイリアン",
+ "italianFontType":0,
+ "germanText":"エイリアンエイリアン",
+ "germanFontType":0,
+ "spanishText":"エイリアンエイリアン",
+ "spanishFontType":0,
+ "chineseTText":"エイリアンエイリアン",
+ "chineseTFontType":0,
+ "koreanText":"エイリアンエイリアン",
+ "koreanFontType":0,
+ "portugueseText":"エイリアンエイリアン",
+ "portugueseFontType":0,
+ "russianText":"エイリアンエイリアン",
+ "russianFontType":0,
+ "turkishText":"エイリアンエイリアン",
+ "turkishFontType":0,
+ "arabicText":"エイリアンエイリアン",
+ "arabicFontType":0,
+ "dutchText":"エイリアンエイリアン",
+ "dutchFontType":0,
+ "chineseSText":"エイリアンエイリアン",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_doyo",
+ "japaneseText":"ABCの歌",
+ "englishUsText":"The Alphabet Song",
+ "englishUsFontType":3,
+ "frenchText":"La chanson de l'alphabet",
+ "frenchFontType":3,
+ "italianText":"Canzone dell'alfabeto",
+ "italianFontType":3,
+ "germanText":"Das ABC-Lied",
+ "germanFontType":3,
+ "spanishText":"Canción del abecedario",
+ "spanishFontType":3,
+ "chineseTText":"ABC之歌",
+ "chineseTFontType":1,
+ "koreanText":"ABC노 우타",
+ "koreanFontType":2,
+ "portugueseText":"The Alphabet Song",
+ "portugueseFontType":3,
+ "russianText":"The Alphabet Song",
+ "russianFontType":3,
+ "turkishText":"The Alphabet Song",
+ "turkishFontType":3,
+ "arabicText":"The Alphabet Song",
+ "arabicFontType":3,
+ "dutchText":"The Alphabet Song",
+ "dutchFontType":3,
+ "chineseSText":"ABC之歌",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_doyo",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_doyo",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"ABCの歌",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_clstrk",
+ "japaneseText":"トルコ行進曲",
+ "englishUsText":"Turkish March",
+ "englishUsFontType":3,
+ "frenchText":"Marche turque",
+ "frenchFontType":3,
+ "italianText":"Marcia alla turca",
+ "italianFontType":3,
+ "germanText":"Türkischer Marsch",
+ "germanFontType":3,
+ "spanishText":"Marcha Turca",
+ "spanishFontType":3,
+ "chineseTText":"土耳其進行曲",
+ "chineseTFontType":1,
+ "koreanText":"터키 행진곡",
+ "koreanFontType":2,
+ "portugueseText":"Turkish March",
+ "portugueseFontType":3,
+ "russianText":"Turkish March",
+ "russianFontType":3,
+ "turkishText":"Turkish March",
+ "turkishFontType":3,
+ "arabicText":"Turkish March",
+ "arabicFontType":3,
+ "dutchText":"Turkish March",
+ "dutchFontType":3,
+ "chineseSText":"土耳其进行曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_clstrk",
+ "japaneseText":"ベートーヴェン",
+ "englishUsText":"Ludwig van Beethoven",
+ "englishUsFontType":3,
+ "frenchText":"Ludwig van Beethoven",
+ "frenchFontType":3,
+ "italianText":"Ludwig van Beethoven",
+ "italianFontType":3,
+ "germanText":"Ludwig van Beethoven",
+ "germanFontType":3,
+ "spanishText":"Ludwig van Beethoven",
+ "spanishFontType":3,
+ "chineseTText":"貝多芬",
+ "chineseTFontType":1,
+ "koreanText":"루트비히 판 베토벤",
+ "koreanFontType":2,
+ "portugueseText":"Ludwig van Beethoven",
+ "portugueseFontType":3,
+ "russianText":"Ludwig van Beethoven",
+ "russianFontType":3,
+ "turkishText":"Ludwig van Beethoven",
+ "turkishFontType":3,
+ "arabicText":"Ludwig van Beethoven",
+ "arabicFontType":3,
+ "dutchText":"Ludwig van Beethoven",
+ "dutchFontType":3,
+ "chineseSText":"贝多芬",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_clstrk",
+ "japaneseText":"",
+ "englishUsText":"トルコ行進曲",
+ "englishUsFontType":0,
+ "frenchText":"トルコ行進曲",
+ "frenchFontType":0,
+ "italianText":"トルコ行進曲",
+ "italianFontType":0,
+ "germanText":"トルコ行進曲",
+ "germanFontType":0,
+ "spanishText":"トルコ行進曲",
+ "spanishFontType":0,
+ "chineseTText":"トルコ行進曲",
+ "chineseTFontType":0,
+ "koreanText":"トルコ行進曲",
+ "koreanFontType":0,
+ "portugueseText":"トルコ行進曲",
+ "portugueseFontType":0,
+ "russianText":"トルコ行進曲",
+ "russianFontType":0,
+ "turkishText":"トルコ行進曲",
+ "turkishFontType":0,
+ "arabicText":"トルコ行進曲",
+ "arabicFontType":0,
+ "dutchText":"トルコ行進曲",
+ "dutchFontType":0,
+ "chineseSText":"トルコ行進曲",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_cls10",
+ "japaneseText":"天国と地獄 序曲",
+ "englishUsText":"Overture from 'Orpheus in the Underworld'",
+ "englishUsFontType":3,
+ "frenchText":"Overture from 'Orpheus in the Underworld'",
+ "frenchFontType":3,
+ "italianText":"Overture from 'Orpheus in the Underworld'",
+ "italianFontType":3,
+ "germanText":"Overture from 'Orpheus in the Underworld'",
+ "germanFontType":3,
+ "spanishText":"Overture from 'Orpheus in the Underworld'",
+ "spanishFontType":3,
+ "chineseTText":"天堂與地獄序曲",
+ "chineseTFontType":1,
+ "koreanText":"천국과 지옥 서곡",
+ "koreanFontType":2,
+ "portugueseText":"Overture from 'Orpheus in the Underworld'",
+ "portugueseFontType":3,
+ "russianText":"Overture from 'Orpheus in the Underworld'",
+ "russianFontType":3,
+ "turkishText":"Overture from 'Orpheus in the Underworld'",
+ "turkishFontType":3,
+ "arabicText":"Overture from 'Orpheus in the Underworld'",
+ "arabicFontType":3,
+ "dutchText":"Overture from 'Orpheus in the Underworld'",
+ "dutchFontType":3,
+ "chineseSText":"天堂与地狱序曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_cls10",
+ "japaneseText":"オッフェンバック",
+ "englishUsText":"Jacques Offenbach",
+ "englishUsFontType":3,
+ "frenchText":"Jacques Offenbach",
+ "frenchFontType":3,
+ "italianText":"Jacques Offenbach",
+ "italianFontType":3,
+ "germanText":"Jacques Offenbach",
+ "germanFontType":3,
+ "spanishText":"Jacques Offenbach",
+ "spanishFontType":3,
+ "chineseTText":"奧芬巴哈",
+ "chineseTFontType":1,
+ "koreanText":"자크 오펜바흐",
+ "koreanFontType":2,
+ "portugueseText":"Jacques Offenbach",
+ "portugueseFontType":3,
+ "russianText":"Jacques Offenbach",
+ "russianFontType":3,
+ "turkishText":"Jacques Offenbach",
+ "turkishFontType":3,
+ "arabicText":"Jacques Offenbach",
+ "arabicFontType":3,
+ "dutchText":"Jacques Offenbach",
+ "dutchFontType":3,
+ "chineseSText":"奥芬巴赫",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_cls10",
+ "japaneseText":"",
+ "englishUsText":"天国と地獄 序曲",
+ "englishUsFontType":0,
+ "frenchText":"天国と地獄 序曲",
+ "frenchFontType":0,
+ "italianText":"天国と地獄 序曲",
+ "italianFontType":0,
+ "germanText":"天国と地獄 序曲",
+ "germanFontType":0,
+ "spanishText":"天国と地獄 序曲",
+ "spanishFontType":0,
+ "chineseTText":"天国と地獄 序曲",
+ "chineseTFontType":0,
+ "koreanText":"天国と地獄 序曲",
+ "koreanFontType":0,
+ "portugueseText":"天国と地獄 序曲",
+ "portugueseFontType":0,
+ "russianText":"天国と地獄 序曲",
+ "russianFontType":0,
+ "turkishText":"天国と地獄 序曲",
+ "turkishFontType":0,
+ "arabicText":"天国と地獄 序曲",
+ "arabicFontType":0,
+ "dutchText":"天国と地獄 序曲",
+ "dutchFontType":0,
+ "chineseSText":"天国と地獄 序曲",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_clsw",
+ "japaneseText":"ウィリアム・テル序曲",
+ "englishUsText":"William Tell Overture",
+ "englishUsFontType":3,
+ "frenchText":"William Tell Overture",
+ "frenchFontType":3,
+ "italianText":"William Tell Overture",
+ "italianFontType":3,
+ "germanText":"William Tell Overture",
+ "germanFontType":3,
+ "spanishText":"William Tell Overture",
+ "spanishFontType":3,
+ "chineseTText":"威廉泰爾序曲",
+ "chineseTFontType":1,
+ "koreanText":"William Tell Overture",
+ "koreanFontType":2,
+ "portugueseText":"William Tell Overture",
+ "portugueseFontType":3,
+ "russianText":"William Tell Overture",
+ "russianFontType":3,
+ "turkishText":"William Tell Overture",
+ "turkishFontType":3,
+ "arabicText":"William Tell Overture",
+ "arabicFontType":3,
+ "dutchText":"William Tell Overture",
+ "dutchFontType":3,
+ "chineseSText":"威廉泰尔序曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_clsw",
+ "japaneseText":"ロッシーニ",
+ "englishUsText":"Gioachino Rossini",
+ "englishUsFontType":3,
+ "frenchText":"Gioachino Rossini",
+ "frenchFontType":3,
+ "italianText":"Gioachino Rossini",
+ "italianFontType":3,
+ "germanText":"Gioachino Rossini",
+ "germanFontType":3,
+ "spanishText":"Gioachino Rossini",
+ "spanishFontType":3,
+ "chineseTText":"羅西尼",
+ "chineseTFontType":1,
+ "koreanText":"Gioachino Rossini",
+ "koreanFontType":2,
+ "portugueseText":"Gioachino Rossini",
+ "portugueseFontType":3,
+ "russianText":"Gioachino Rossini",
+ "russianFontType":3,
+ "turkishText":"Gioachino Rossini",
+ "turkishFontType":3,
+ "arabicText":"Gioachino Rossini",
+ "arabicFontType":3,
+ "dutchText":"Gioachino Rossini",
+ "dutchFontType":3,
+ "chineseSText":"罗西尼",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_clsw",
+ "japaneseText":"",
+ "englishUsText":"ウィリアム・テル序曲",
+ "englishUsFontType":0,
+ "frenchText":"ウィリアム・テル序曲",
+ "frenchFontType":0,
+ "italianText":"ウィリアム・テル序曲",
+ "italianFontType":0,
+ "germanText":"ウィリアム・テル序曲",
+ "germanFontType":0,
+ "spanishText":"ウィリアム・テル序曲",
+ "spanishFontType":0,
+ "chineseTText":"ウィリアム・テル序曲",
+ "chineseTFontType":0,
+ "koreanText":"ウィリアム・テル序曲",
+ "koreanFontType":0,
+ "portugueseText":"ウィリアム・テル序曲",
+ "portugueseFontType":0,
+ "russianText":"ウィリアム・テル序曲",
+ "russianFontType":0,
+ "turkishText":"ウィリアム・テル序曲",
+ "turkishFontType":0,
+ "arabicText":"ウィリアム・テル序曲",
+ "arabicFontType":0,
+ "dutchText":"ウィリアム・テル序曲",
+ "dutchFontType":0,
+ "chineseSText":"ウィリアム・テル序曲",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_druaga",
+ "japaneseText":"ドルアーガの塔メドレー",
+ "englishUsText":"THE TOWER OF DRUAGA Medley",
+ "englishUsFontType":3,
+ "frenchText":"THE TOWER OF DRUAGA Medley",
+ "frenchFontType":3,
+ "italianText":"THE TOWER OF DRUAGA Medley",
+ "italianFontType":3,
+ "germanText":"THE TOWER OF DRUAGA Medley",
+ "germanFontType":3,
+ "spanishText":"THE TOWER OF DRUAGA Medley",
+ "spanishFontType":3,
+ "chineseTText":"THE TOWER OF DRUAGA Medley",
+ "chineseTFontType":1,
+ "koreanText":"THE TOWER OF DRUAGA Medley",
+ "koreanFontType":2,
+ "portugueseText":"THE TOWER OF DRUAGA Medley",
+ "portugueseFontType":3,
+ "russianText":"THE TOWER OF DRUAGA Medley",
+ "russianFontType":3,
+ "turkishText":"THE TOWER OF DRUAGA Medley",
+ "turkishFontType":3,
+ "arabicText":"THE TOWER OF DRUAGA Medley",
+ "arabicFontType":3,
+ "dutchText":"THE TOWER OF DRUAGA Medley",
+ "dutchFontType":3,
+ "chineseSText":"THE TOWER OF DRUAGA Medley",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_druaga",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_druaga",
+ "japaneseText":"",
+ "englishUsText":"ドルアーガの塔メドレー",
+ "englishUsFontType":0,
+ "frenchText":"ドルアーガの塔メドレー",
+ "frenchFontType":0,
+ "italianText":"ドルアーガの塔メドレー",
+ "italianFontType":0,
+ "germanText":"ドルアーガの塔メドレー",
+ "germanFontType":0,
+ "spanishText":"ドルアーガの塔メドレー",
+ "spanishFontType":0,
+ "chineseTText":"ドルアーガの塔メドレー",
+ "chineseTFontType":0,
+ "koreanText":"ドルアーガの塔メドレー",
+ "koreanFontType":0,
+ "portugueseText":"ドルアーガの塔メドレー",
+ "portugueseFontType":0,
+ "russianText":"ドルアーガの塔メドレー",
+ "russianFontType":0,
+ "turkishText":"ドルアーガの塔メドレー",
+ "turkishFontType":0,
+ "arabicText":"ドルアーガの塔メドレー",
+ "arabicFontType":0,
+ "dutchText":"ドルアーガの塔メドレー",
+ "dutchFontType":0,
+ "chineseSText":"ドルアーガの塔メドレー",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_tek7he",
+ "japaneseText":"Heat Haze Shadow 2",
+ "englishUsText":"Heat Haze Shadow 2",
+ "englishUsFontType":3,
+ "frenchText":"Heat Haze Shadow 2",
+ "frenchFontType":3,
+ "italianText":"Heat Haze Shadow 2",
+ "italianFontType":3,
+ "germanText":"Heat Haze Shadow 2",
+ "germanFontType":3,
+ "spanishText":"Heat Haze Shadow 2",
+ "spanishFontType":3,
+ "chineseTText":"Heat Haze Shadow 2",
+ "chineseTFontType":1,
+ "koreanText":"Heat Haze Shadow 2",
+ "koreanFontType":2,
+ "portugueseText":"Heat Haze Shadow 2",
+ "portugueseFontType":3,
+ "russianText":"Heat Haze Shadow 2",
+ "russianFontType":3,
+ "turkishText":"Heat Haze Shadow 2",
+ "turkishFontType":3,
+ "arabicText":"Heat Haze Shadow 2",
+ "arabicFontType":3,
+ "dutchText":"Heat Haze Shadow 2",
+ "dutchFontType":3,
+ "chineseSText":"Heat Haze Shadow 2",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_tek7he",
+ "japaneseText":"「鉄拳7」より",
+ "englishUsText":"From \" Tekken 7 \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Tekken 7 \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Tekken 7 \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Tekken 7 \"",
+ "germanFontType":3,
+ "spanishText":"De \" Tekken 7 \"",
+ "spanishFontType":3,
+ "chineseTText":"來自 \" Tekken 7 \"",
+ "chineseTFontType":1,
+ "koreanText":"\" Tekken 7 \"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" Tekken 7 \"",
+ "portugueseFontType":3,
+ "russianText":"From \" Tekken 7 \"",
+ "russianFontType":3,
+ "turkishText":"From \" Tekken 7 \"",
+ "turkishFontType":3,
+ "arabicText":"From \" Tekken 7 \"",
+ "arabicFontType":3,
+ "dutchText":"From \" Tekken 7 \"",
+ "dutchFontType":3,
+ "chineseSText":"出自 \" Tekken 7 \"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_tek7he",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_rr1",
+ "japaneseText":"Ridge Racer",
+ "englishUsText":"Ridge Racer",
+ "englishUsFontType":3,
+ "frenchText":"Ridge Racer",
+ "frenchFontType":3,
+ "italianText":"Ridge Racer",
+ "italianFontType":3,
+ "germanText":"Ridge Racer",
+ "germanFontType":3,
+ "spanishText":"Ridge Racer",
+ "spanishFontType":3,
+ "chineseTText":"Ridge Racer",
+ "chineseTFontType":1,
+ "koreanText":"Ridge Racer",
+ "koreanFontType":2,
+ "portugueseText":"Ridge Racer",
+ "portugueseFontType":3,
+ "russianText":"Ridge Racer",
+ "russianFontType":3,
+ "turkishText":"Ridge Racer",
+ "turkishFontType":3,
+ "arabicText":"Ridge Racer",
+ "arabicFontType":3,
+ "dutchText":"Ridge Racer",
+ "dutchFontType":3,
+ "chineseSText":"Ridge Racer",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_rr1",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_rr1",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_genpe",
+ "japaneseText":"KAGEKIYO",
+ "englishUsText":"KAGEKIYO",
+ "englishUsFontType":3,
+ "frenchText":"KAGEKIYO",
+ "frenchFontType":3,
+ "italianText":"KAGEKIYO",
+ "italianFontType":3,
+ "germanText":"KAGEKIYO",
+ "germanFontType":3,
+ "spanishText":"KAGEKIYO",
+ "spanishFontType":3,
+ "chineseTText":"KAGEKIYO",
+ "chineseTFontType":1,
+ "koreanText":"KAGEKIYO",
+ "koreanFontType":2,
+ "portugueseText":"KAGEKIYO",
+ "portugueseFontType":3,
+ "russianText":"KAGEKIYO",
+ "russianFontType":3,
+ "turkishText":"KAGEKIYO",
+ "turkishFontType":3,
+ "arabicText":"KAGEKIYO",
+ "arabicFontType":3,
+ "dutchText":"KAGEKIYO",
+ "dutchFontType":3,
+ "chineseSText":"KAGEKIYO",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_genpe",
+ "japaneseText":"源平討魔伝メドレー",
+ "englishUsText":"\" The Genji and the Heike Clans \" Medley",
+ "englishUsFontType":3,
+ "frenchText":"\" The Genji and the Heike Clans \" Medley",
+ "frenchFontType":3,
+ "italianText":"\" The Genji and the Heike Clans \" Medley",
+ "italianFontType":3,
+ "germanText":"\" The Genji and the Heike Clans \" Medley",
+ "germanFontType":3,
+ "spanishText":"\" The Genji and the Heike Clans \" Medley",
+ "spanishFontType":3,
+ "chineseTText":"源平討魔傳 組曲",
+ "chineseTFontType":1,
+ "koreanText":"\" The Genji and the Heike Clans \" Medley",
+ "koreanFontType":2,
+ "portugueseText":"\" The Genji and the Heike Clans \" Medley",
+ "portugueseFontType":3,
+ "russianText":"\" The Genji and the Heike Clans \" Medley",
+ "russianFontType":3,
+ "turkishText":"\" The Genji and the Heike Clans \" Medley",
+ "turkishFontType":3,
+ "arabicText":"\" The Genji and the Heike Clans \" Medley",
+ "arabicFontType":3,
+ "dutchText":"\" The Genji and the Heike Clans \" Medley",
+ "dutchFontType":3,
+ "chineseSText":"源平讨魔传 组曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_genpe",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_rot",
+ "japaneseText":"さいたま2000",
+ "englishUsText":"SAITAMA 2000",
+ "englishUsFontType":3,
+ "frenchText":"SAITAMA 2000",
+ "frenchFontType":3,
+ "italianText":"SAITAMA 2000",
+ "italianFontType":3,
+ "germanText":"SAITAMA 2000",
+ "germanFontType":3,
+ "spanishText":"SAITAMA 2000",
+ "spanishFontType":3,
+ "chineseTText":"埼玉2000",
+ "chineseTFontType":1,
+ "koreanText":"SAITAMA 2000",
+ "koreanFontType":2,
+ "portugueseText":"SAITAMA 2000",
+ "portugueseFontType":3,
+ "russianText":"SAITAMA 2000",
+ "russianFontType":3,
+ "turkishText":"SAITAMA 2000",
+ "turkishFontType":3,
+ "arabicText":"SAITAMA 2000",
+ "arabicFontType":3,
+ "dutchText":"SAITAMA 2000",
+ "dutchFontType":3,
+ "chineseSText":"埼玉2000",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_rot",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_rot",
+ "japaneseText":"",
+ "englishUsText":"さいたま2000",
+ "englishUsFontType":0,
+ "frenchText":"さいたま2000",
+ "frenchFontType":0,
+ "italianText":"さいたま2000",
+ "italianFontType":0,
+ "germanText":"さいたま2000",
+ "germanFontType":0,
+ "spanishText":"さいたま2000",
+ "spanishFontType":0,
+ "chineseTText":"さいたま2000",
+ "chineseTFontType":0,
+ "koreanText":"さいたま2000",
+ "koreanFontType":0,
+ "portugueseText":"さいたま2000",
+ "portugueseFontType":0,
+ "russianText":"さいたま2000",
+ "russianFontType":0,
+ "turkishText":"さいたま2000",
+ "turkishFontType":0,
+ "arabicText":"さいたま2000",
+ "arabicFontType":0,
+ "dutchText":"さいたま2000",
+ "dutchFontType":0,
+ "chineseSText":"さいたま2000",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_butou5",
+ "japaneseText":"百花繚乱",
+ "englishUsText":"Hyakka Ryoran",
+ "englishUsFontType":3,
+ "frenchText":"Hyakka Ryoran",
+ "frenchFontType":3,
+ "italianText":"Hyakka Ryoran",
+ "italianFontType":3,
+ "germanText":"Hyakka Ryoran",
+ "germanFontType":3,
+ "spanishText":"Hyakka Ryoran",
+ "spanishFontType":3,
+ "chineseTText":"百花繚亂",
+ "chineseTFontType":1,
+ "koreanText":"햐악카료우란",
+ "koreanFontType":2,
+ "portugueseText":"Hyakka Ryoran",
+ "portugueseFontType":3,
+ "russianText":"Hyakka Ryoran",
+ "russianFontType":3,
+ "turkishText":"Hyakka Ryoran",
+ "turkishFontType":3,
+ "arabicText":"Hyakka Ryoran",
+ "arabicFontType":3,
+ "dutchText":"Hyakka Ryoran",
+ "dutchFontType":3,
+ "chineseSText":"百花缭乱",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_butou5",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_butou5",
+ "japaneseText":"",
+ "englishUsText":"百花繚乱",
+ "englishUsFontType":0,
+ "frenchText":"百花繚乱",
+ "frenchFontType":0,
+ "italianText":"百花繚乱",
+ "italianFontType":0,
+ "germanText":"百花繚乱",
+ "germanFontType":0,
+ "spanishText":"百花繚乱",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"百花繚乱",
+ "koreanFontType":0,
+ "portugueseText":"百花繚乱",
+ "portugueseFontType":0,
+ "russianText":"百花繚乱",
+ "russianFontType":0,
+ "turkishText":"百花繚乱",
+ "turkishFontType":0,
+ "arabicText":"百花繚乱",
+ "arabicFontType":0,
+ "dutchText":"百花繚乱",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_trance",
+ "japaneseText":"エンジェル ドリーム",
+ "englishUsText":"Angel Dream",
+ "englishUsFontType":3,
+ "frenchText":"Angel Dream",
+ "frenchFontType":3,
+ "italianText":"Angel Dream",
+ "italianFontType":3,
+ "germanText":"Angel Dream",
+ "germanFontType":3,
+ "spanishText":"Angel Dream",
+ "spanishFontType":3,
+ "chineseTText":"Angel Dream",
+ "chineseTFontType":1,
+ "koreanText":"Angel Dream",
+ "koreanFontType":2,
+ "portugueseText":"Angel Dream",
+ "portugueseFontType":3,
+ "russianText":"Angel Dream",
+ "russianFontType":3,
+ "turkishText":"Angel Dream",
+ "turkishFontType":3,
+ "arabicText":"Angel Dream",
+ "arabicFontType":3,
+ "dutchText":"Angel Dream",
+ "dutchFontType":3,
+ "chineseSText":"Angel Dream",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_trance",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_trance",
+ "japaneseText":"",
+ "englishUsText":"エンジェル ドリーム",
+ "englishUsFontType":0,
+ "frenchText":"エンジェル ドリーム",
+ "frenchFontType":0,
+ "italianText":"エンジェル ドリーム",
+ "italianFontType":0,
+ "germanText":"エンジェル ドリーム",
+ "germanFontType":0,
+ "spanishText":"エンジェル ドリーム",
+ "spanishFontType":0,
+ "chineseTText":"エンジェル ドリーム",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"エンジェル ドリーム",
+ "portugueseFontType":0,
+ "russianText":"エンジェル ドリーム",
+ "russianFontType":0,
+ "turkishText":"エンジェル ドリーム",
+ "turkishFontType":0,
+ "arabicText":"エンジェル ドリーム",
+ "arabicFontType":0,
+ "dutchText":"エンジェル ドリーム",
+ "dutchFontType":0,
+ "chineseSText":"エンジェル ドリーム",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_dojoaj",
+ "japaneseText":"音符のうた",
+ "englishUsText":"Notes Song -Japanese Version-",
+ "englishUsFontType":3,
+ "frenchText":"Notes Song -Japanese Version-",
+ "frenchFontType":3,
+ "italianText":"Notes Song -Japanese Version-",
+ "italianFontType":3,
+ "germanText":"Notes Song -Japanese Version-",
+ "germanFontType":3,
+ "spanishText":"Notes Song -Japanese Version-",
+ "spanishFontType":3,
+ "chineseTText":"音符的歌 日文版",
+ "chineseTFontType":1,
+ "koreanText":"음부의 노래일본어판 ",
+ "koreanFontType":2,
+ "portugueseText":"Notes Song -Japanese Version-",
+ "portugueseFontType":3,
+ "russianText":"Notes Song -Japanese Version-",
+ "russianFontType":3,
+ "turkishText":"Notes Song -Japanese Version-",
+ "turkishFontType":3,
+ "arabicText":"Notes Song -Japanese Version-",
+ "arabicFontType":3,
+ "dutchText":"Notes Song -Japanese Version-",
+ "dutchFontType":3,
+ "chineseSText":"音符的歌 日文版",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_dojoaj",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_dojoaj",
+ "japaneseText":"",
+ "englishUsText":"音符のうた",
+ "englishUsFontType":0,
+ "frenchText":"音符のうた",
+ "frenchFontType":0,
+ "italianText":"音符のうた",
+ "italianFontType":0,
+ "germanText":"音符のうた",
+ "germanFontType":0,
+ "spanishText":"音符のうた",
+ "spanishFontType":0,
+ "chineseTText":"音符のうた",
+ "chineseTFontType":0,
+ "koreanText":"音符のうた",
+ "koreanFontType":0,
+ "portugueseText":"音符のうた",
+ "portugueseFontType":0,
+ "russianText":"音符のうた",
+ "russianFontType":0,
+ "turkishText":"音符のうた",
+ "turkishFontType":0,
+ "arabicText":"音符のうた",
+ "arabicFontType":0,
+ "dutchText":"音符のうた",
+ "dutchFontType":0,
+ "chineseSText":"音符のうた",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_dojoae",
+ "japaneseText":"音符のうた -English Version-",
+ "englishUsText":"Notes Song",
+ "englishUsFontType":3,
+ "frenchText":"Notes Song",
+ "frenchFontType":3,
+ "italianText":"Notes Song -English Version-",
+ "italianFontType":3,
+ "germanText":"Notes Song -English Version-",
+ "germanFontType":3,
+ "spanishText":"Notes Song -English Version-",
+ "spanishFontType":3,
+ "chineseTText":"音符的歌 英文版",
+ "chineseTFontType":1,
+ "koreanText":"음부의 노래영어판 ",
+ "koreanFontType":2,
+ "portugueseText":"Notes Song -English Version-",
+ "portugueseFontType":3,
+ "russianText":"Notes Song -English Version-",
+ "russianFontType":3,
+ "turkishText":"Notes Song -English Version-",
+ "turkishFontType":3,
+ "arabicText":"Notes Song -English Version-",
+ "arabicFontType":3,
+ "dutchText":"Notes Song -English Version-",
+ "dutchFontType":3,
+ "chineseSText":"音符的歌 英文版",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_dojoae",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_dojoae",
+ "japaneseText":"",
+ "englishUsText":"音符のうた -English Version-",
+ "englishUsFontType":0,
+ "frenchText":"音符のうた -English Version-",
+ "frenchFontType":0,
+ "italianText":"音符のうた -English Version-",
+ "italianFontType":0,
+ "germanText":"音符のうた -English Version-",
+ "germanFontType":0,
+ "spanishText":"音符のうた -English Version-",
+ "spanishFontType":0,
+ "chineseTText":"音符のうた -English Version-",
+ "chineseTFontType":0,
+ "koreanText":"音符のうた -English Version-",
+ "koreanFontType":0,
+ "portugueseText":"音符のうた -English Version-",
+ "portugueseFontType":0,
+ "russianText":"音符のうた -English Version-",
+ "russianFontType":0,
+ "turkishText":"音符のうた -English Version-",
+ "turkishFontType":0,
+ "arabicText":"音符のうた -English Version-",
+ "arabicFontType":0,
+ "dutchText":"音符のうた -English Version-",
+ "dutchFontType":0,
+ "chineseSText":"音符のうた -English Version-",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_dojoajt",
+ "japaneseText":"音符のうた",
+ "englishUsText":"Notes Song -Japanese Version-",
+ "englishUsFontType":3,
+ "frenchText":"Notes Song -Japanese Version-",
+ "frenchFontType":3,
+ "italianText":"Notes Song -Japanese Version-",
+ "italianFontType":3,
+ "germanText":"Notes Song -Japanese Version-",
+ "germanFontType":3,
+ "spanishText":"Notes Song -Japanese Version-",
+ "spanishFontType":3,
+ "chineseTText":"音符的歌 日文版",
+ "chineseTFontType":1,
+ "koreanText":"음부의 노래일본어판 ",
+ "koreanFontType":2,
+ "portugueseText":"Notes Song -Japanese Version-",
+ "portugueseFontType":3,
+ "russianText":"Notes Song -Japanese Version-",
+ "russianFontType":3,
+ "turkishText":"Notes Song -Japanese Version-",
+ "turkishFontType":3,
+ "arabicText":"Notes Song -Japanese Version-",
+ "arabicFontType":3,
+ "dutchText":"Notes Song -Japanese Version-",
+ "dutchFontType":3,
+ "chineseSText":"音符的歌 日文版",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_dojoajt",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_dojoajt",
+ "japaneseText":"",
+ "englishUsText":"音符のうた",
+ "englishUsFontType":0,
+ "frenchText":"音符のうた",
+ "frenchFontType":0,
+ "italianText":"音符のうた",
+ "italianFontType":0,
+ "germanText":"音符のうた",
+ "germanFontType":0,
+ "spanishText":"音符のうた",
+ "spanishFontType":0,
+ "chineseTText":"音符のうた",
+ "chineseTFontType":0,
+ "koreanText":"音符のうた",
+ "koreanFontType":0,
+ "portugueseText":"音符のうた",
+ "portugueseFontType":0,
+ "russianText":"音符のうた",
+ "russianFontType":0,
+ "turkishText":"音符のうた",
+ "turkishFontType":0,
+ "arabicText":"音符のうた",
+ "arabicFontType":0,
+ "dutchText":"音符のうた",
+ "dutchFontType":0,
+ "chineseSText":"音符のうた",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_dojoaet",
+ "japaneseText":"音符のうた -English Version-",
+ "englishUsText":"Notes Song",
+ "englishUsFontType":3,
+ "frenchText":"Notes Song",
+ "frenchFontType":3,
+ "italianText":"Notes Song -English Version-",
+ "italianFontType":3,
+ "germanText":"Notes Song -English Version-",
+ "germanFontType":3,
+ "spanishText":"Notes Song -English Version-",
+ "spanishFontType":3,
+ "chineseTText":"音符的歌 英文版",
+ "chineseTFontType":1,
+ "koreanText":"음부의 노래영어판 ",
+ "koreanFontType":2,
+ "portugueseText":"Notes Song -English Version-",
+ "portugueseFontType":3,
+ "russianText":"Notes Song -English Version-",
+ "russianFontType":3,
+ "turkishText":"Notes Song -English Version-",
+ "turkishFontType":3,
+ "arabicText":"Notes Song -English Version-",
+ "arabicFontType":3,
+ "dutchText":"Notes Song -English Version-",
+ "dutchFontType":3,
+ "chineseSText":"音符的歌 英文版",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_dojoaet",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_dojoaet",
+ "japaneseText":"",
+ "englishUsText":"音符のうた -English Version-",
+ "englishUsFontType":0,
+ "frenchText":"音符のうた -English Version-",
+ "frenchFontType":0,
+ "italianText":"音符のうた -English Version-",
+ "italianFontType":0,
+ "germanText":"音符のうた -English Version-",
+ "germanFontType":0,
+ "spanishText":"音符のうた -English Version-",
+ "spanishFontType":0,
+ "chineseTText":"音符のうた -English Version-",
+ "chineseTFontType":0,
+ "koreanText":"音符のうた -English Version-",
+ "koreanFontType":0,
+ "portugueseText":"音符のうた -English Version-",
+ "portugueseFontType":0,
+ "russianText":"音符のうた -English Version-",
+ "russianFontType":0,
+ "turkishText":"音符のうた -English Version-",
+ "turkishFontType":0,
+ "arabicText":"音符のうた -English Version-",
+ "arabicFontType":0,
+ "dutchText":"音符のうた -English Version-",
+ "dutchFontType":0,
+ "chineseSText":"音符のうた -English Version-",
+ "chineseSFontType":0
+ },
+ {
+ "key":"setting_tutorial_replay",
+ "japaneseText":"チュートリアルをやりなおす",
+ "englishUsText":"Play tutorial again",
+ "englishUsFontType":3,
+ "frenchText":"Refaire le didacticiel",
+ "frenchFontType":3,
+ "italianText":"Rigioca il tutorial",
+ "italianFontType":3,
+ "germanText":"Tutorial nochmal spielen",
+ "germanFontType":3,
+ "spanishText":"Juega otra vez el tutorial",
+ "spanishFontType":3,
+ "chineseTText":"重新進行新手教學",
+ "chineseTFontType":1,
+ "koreanText":"튜토리얼 재실행",
+ "koreanFontType":2,
+ "portugueseText":"Jogar tutorial de novo",
+ "portugueseFontType":2,
+ "russianText":"Пройти обучение заново",
+ "russianFontType":2,
+ "turkishText":"Öğreticiyi yeniden oyna",
+ "turkishFontType":2,
+ "arabicText":"قم بتشغيل البرنامج التعليمي مرة أخرى",
+ "arabicFontType":2,
+ "dutchText":"Tutorial opnieuw spelen",
+ "dutchFontType":2,
+ "chineseSText":"重新进行新手教学",
+ "chineseSFontType":4
+ },
+ {
+ "key":"easy_clear_point",
+ "japaneseText":"ノルマクリア! かんたん",
+ "englishUsText":"Cleared on Easy!",
+ "englishUsFontType":3,
+ "frenchText":"Chanson réussie ! Facile",
+ "frenchFontType":3,
+ "italianText":"Difficoltà Facile completata!",
+ "italianFontType":3,
+ "germanText":"Ziel im leichten Modus erreicht!",
+ "germanFontType":3,
+ "spanishText":"¡Superado en Fácil!",
+ "spanishFontType":3,
+ "chineseTText":"演奏成功! 簡單",
+ "chineseTFontType":1,
+ "koreanText":"쉬움 난이도 클리어 성공!",
+ "koreanFontType":2,
+ "portugueseText":"Concluído no modo Fácil!",
+ "portugueseFontType":2,
+ "russianText":"Пройдено на уровне \"Просто\"!",
+ "russianFontType":2,
+ "turkishText":"Kolay seviye bitti!",
+ "turkishFontType":2,
+ "arabicText":"تم تخطي المستوى السهل!",
+ "arabicFontType":2,
+ "dutchText":"Gehaald op Makkelijk",
+ "dutchFontType":2,
+ "chineseSText":"演奏成功! 简单",
+ "chineseSFontType":4
+ },
+ {
+ "key":"normal_clear_point",
+ "japaneseText":"ノルマクリア! ふつう",
+ "englishUsText":"Cleared on Normal!",
+ "englishUsFontType":3,
+ "frenchText":"Chanson réussie ! Normal",
+ "frenchFontType":3,
+ "italianText":"Difficoltà Normale completata!",
+ "italianFontType":3,
+ "germanText":"Ziel im normalen Modus erreicht!",
+ "germanFontType":3,
+ "spanishText":"¡Superado en Normal!",
+ "spanishFontType":3,
+ "chineseTText":"演奏成功! 普通",
+ "chineseTFontType":1,
+ "koreanText":"보통 난이도 클리어 성공!",
+ "koreanFontType":2,
+ "portugueseText":"Concluído no modo Normal!",
+ "portugueseFontType":2,
+ "russianText":"Пройдено на уровне \"Нормально\"!",
+ "russianFontType":2,
+ "turkishText":"Normal seviye bitti!",
+ "turkishFontType":2,
+ "arabicText":"تم تخطي المستوى العادي!",
+ "arabicFontType":2,
+ "dutchText":"Gehaald op Normaal",
+ "dutchFontType":2,
+ "chineseSText":"演奏成功! 普通",
+ "chineseSFontType":4
+ },
+ {
+ "key":"hard_clear_point",
+ "japaneseText":"ノルマクリア! むずかしい",
+ "englishUsText":"Cleared on Hard!",
+ "englishUsFontType":3,
+ "frenchText":"Chanson réussie ! Difficile",
+ "frenchFontType":3,
+ "italianText":"Difficoltà Difficile completata!",
+ "italianFontType":3,
+ "germanText":"Ziel im schweren Modus erreicht!",
+ "germanFontType":3,
+ "spanishText":"¡Superado en Difícil!",
+ "spanishFontType":3,
+ "chineseTText":"演奏成功! 困難",
+ "chineseTFontType":1,
+ "koreanText":"어려움 난이도 클리어 성공!",
+ "koreanFontType":2,
+ "portugueseText":"Concluído no modo Difícil!",
+ "portugueseFontType":2,
+ "russianText":"Пройдено на уровне \"Сложно\"!",
+ "russianFontType":2,
+ "turkishText":"Zor seviye bitti!",
+ "turkishFontType":2,
+ "arabicText":"تم تخطي المستوى الصعب!",
+ "arabicFontType":2,
+ "dutchText":"Gehaald op Moeilijk",
+ "dutchFontType":2,
+ "chineseSText":"演奏成功! 困难",
+ "chineseSFontType":4
+ },
+ {
+ "key":"oni_clear_point",
+ "japaneseText":"ノルマクリア! おに",
+ "englishUsText":"Cleared on Extreme!",
+ "englishUsFontType":3,
+ "frenchText":"Chanson réussie ! Extrême",
+ "frenchFontType":3,
+ "italianText":"Difficoltà Estrema completata!",
+ "italianFontType":3,
+ "germanText":"Ziel im Extrem-Modus erreicht!",
+ "germanFontType":3,
+ "spanishText":"¡Superado en Extremo!",
+ "spanishFontType":3,
+ "chineseTText":"演奏成功! 魔王",
+ "chineseTFontType":1,
+ "koreanText":"귀신 난이도 클리어 성공!",
+ "koreanFontType":2,
+ "portugueseText":"Concluído no modo Extremo!",
+ "portugueseFontType":2,
+ "russianText":"Пройдено на \"Предел\"!",
+ "russianFontType":2,
+ "turkishText":"Ekstrem bitirildi!",
+ "turkishFontType":2,
+ "arabicText":"تم تخطي المستوى الأقصى!",
+ "arabicFontType":2,
+ "dutchText":"Gehaald op Extreem!",
+ "dutchFontType":2,
+ "chineseSText":"演奏成功! 魔王",
+ "chineseSFontType":4
+ },
+ {
+ "key":"oniura_clear_point",
+ "japaneseText":"ノルマクリア! おに",
+ "englishUsText":"Cleared on Ultra-Extreme!",
+ "englishUsFontType":3,
+ "frenchText":"Chanson réussie ! Extrême",
+ "frenchFontType":3,
+ "italianText":"Difficoltà Ultra Estrema completata!",
+ "italianFontType":3,
+ "germanText":"Ziel im extremen Modus erreicht!",
+ "germanFontType":3,
+ "spanishText":"¡Superado en Ultra Extremo!",
+ "spanishFontType":3,
+ "chineseTText":"演奏成功! 魔王",
+ "chineseTFontType":1,
+ "koreanText":"귀신 난이도 클리어 성공!",
+ "koreanFontType":2,
+ "portugueseText":"Concluído no Super-Extremo!",
+ "portugueseFontType":2,
+ "russianText":"Пройдено на уровне \"Предел\"!",
+ "russianFontType":2,
+ "turkishText":"Aşırı Ekstremde bitti!",
+ "turkishFontType":2,
+ "arabicText":"تم تخطي المستوى الأقصى الفائق!",
+ "arabicFontType":2,
+ "dutchText":"Gehaald op Superextreem",
+ "dutchFontType":2,
+ "chineseSText":"演奏成功! 魔王",
+ "chineseSFontType":4
+ },
+ {
+ "key":"easy_play_point",
+ "japaneseText":"演奏したね かんたん",
+ "englishUsText":"Played on Easy",
+ "englishUsFontType":3,
+ "frenchText":"Tu as joué en facile",
+ "frenchFontType":3,
+ "italianText":"Giocato a difficoltà Facile",
+ "italianFontType":3,
+ "germanText":"Im leichten Modus gespielt!",
+ "germanFontType":3,
+ "spanishText":"Has jugado en modo Fácil",
+ "spanishFontType":3,
+ "chineseTText":"進行演奏了 簡單",
+ "chineseTFontType":1,
+ "koreanText":"쉬움 난이도를 연주했네요",
+ "koreanFontType":2,
+ "portugueseText":"Jogado no modo Fácil",
+ "portugueseFontType":2,
+ "russianText":"Сыграно на уровне \"Просто\"",
+ "russianFontType":2,
+ "turkishText":"Kolayda oynandı",
+ "turkishFontType":2,
+ "arabicText":"تم تشغيل اللعبة عند المستوى السهل",
+ "arabicFontType":2,
+ "dutchText":"Gespeeld op Makkelijk",
+ "dutchFontType":2,
+ "chineseSText":"演奏了 简单",
+ "chineseSFontType":4
+ },
+ {
+ "key":"normal_play_point",
+ "japaneseText":"演奏したね ふつう",
+ "englishUsText":"Played on Normal",
+ "englishUsFontType":3,
+ "frenchText":"Tu as joué en normal",
+ "frenchFontType":3,
+ "italianText":"Giocato a difficoltà Normale",
+ "italianFontType":3,
+ "germanText":"Im normalen Modus gespielt!",
+ "germanFontType":3,
+ "spanishText":"Has jugado en modo Normal",
+ "spanishFontType":3,
+ "chineseTText":"進行演奏了 普通",
+ "chineseTFontType":1,
+ "koreanText":"보통 난이도를 연주했네요",
+ "koreanFontType":2,
+ "portugueseText":"Jogado no modo Normal",
+ "portugueseFontType":2,
+ "russianText":"Сыграно на уровне \"Нормально\"",
+ "russianFontType":2,
+ "turkishText":"Normalde oynandı",
+ "turkishFontType":2,
+ "arabicText":"تم تشغيل اللعبة عند المستوى العادي",
+ "arabicFontType":2,
+ "dutchText":"Gespeeld op Normaal",
+ "dutchFontType":2,
+ "chineseSText":"演奏了 普通",
+ "chineseSFontType":4
+ },
+ {
+ "key":"hard_play_point",
+ "japaneseText":"演奏したね むずかしい",
+ "englishUsText":"Played on Hard",
+ "englishUsFontType":3,
+ "frenchText":"Tu as joué en difficile",
+ "frenchFontType":3,
+ "italianText":"Giocato a difficoltà Difficile",
+ "italianFontType":3,
+ "germanText":"Im schweren Modus gespielt!",
+ "germanFontType":3,
+ "spanishText":"Has jugado en modo Difícil",
+ "spanishFontType":3,
+ "chineseTText":"進行演奏了 困難",
+ "chineseTFontType":1,
+ "koreanText":"어려움 난이도를 연주했네요",
+ "koreanFontType":2,
+ "portugueseText":"Jogado no modo Difícil",
+ "portugueseFontType":2,
+ "russianText":"Сыграно на уровне \"Сложно\"",
+ "russianFontType":2,
+ "turkishText":"Zorda oynandı",
+ "turkishFontType":2,
+ "arabicText":"تم تشغيل اللعبة عند المستوى الصعب",
+ "arabicFontType":2,
+ "dutchText":"Gespeeld op Moeilijk",
+ "dutchFontType":2,
+ "chineseSText":"演奏了 困难",
+ "chineseSFontType":4
+ },
+ {
+ "key":"oni_play_point",
+ "japaneseText":"演奏したね おに",
+ "englishUsText":"Played on Extreme",
+ "englishUsFontType":3,
+ "frenchText":"Tu as joué en extrême",
+ "frenchFontType":3,
+ "italianText":"Giocato a difficoltà Estrema",
+ "italianFontType":3,
+ "germanText":"Im Extrem-Modus gespielt!",
+ "germanFontType":3,
+ "spanishText":"Has jugado en modo Extremo",
+ "spanishFontType":3,
+ "chineseTText":"進行演奏了 魔王",
+ "chineseTFontType":1,
+ "koreanText":"귀신 난이도를 연주했네요",
+ "koreanFontType":2,
+ "portugueseText":"Jogado no modo Extremo",
+ "portugueseFontType":2,
+ "russianText":"Сыграно на \"Предел\"",
+ "russianFontType":2,
+ "turkishText":"Ekstremde oynandı!",
+ "turkishFontType":2,
+ "arabicText":"تم تشغيل اللعبة عند المستوى الأقصى",
+ "arabicFontType":2,
+ "dutchText":"Gespeeld op Extreem",
+ "dutchFontType":2,
+ "chineseSText":"进行演奏了 魔王",
+ "chineseSFontType":4
+ },
+ {
+ "key":"oniura_play_point",
+ "japaneseText":"演奏したね おに",
+ "englishUsText":"Played on Ultra-Extreme",
+ "englishUsFontType":3,
+ "frenchText":"Tu as joué en extrême",
+ "frenchFontType":3,
+ "italianText":"Giocato a difficoltà Ultra Estrema",
+ "italianFontType":3,
+ "germanText":"Im extremen Modus gespielt!",
+ "germanFontType":3,
+ "spanishText":"Has jugado en modo Ultra Extremo",
+ "spanishFontType":3,
+ "chineseTText":"進行演奏了 魔王",
+ "chineseTFontType":1,
+ "koreanText":"귀신 난이도를 연주했네요",
+ "koreanFontType":2,
+ "portugueseText":"Jogado no Super-Extremo",
+ "portugueseFontType":2,
+ "russianText":"Сыграно на уровне \"Предел\"",
+ "russianFontType":2,
+ "turkishText":"Aşırı Ekstremde oynandı",
+ "turkishFontType":2,
+ "arabicText":"تم تشغيل اللعبة عند المستوى الأقصى الفائق",
+ "arabicFontType":2,
+ "dutchText":"Gespeeld op Superextreem",
+ "dutchFontType":2,
+ "chineseSText":"演奏了 魔王",
+ "chineseSFontType":4
+ },
+ {
+ "key":"daily_point",
+ "japaneseText":"デイリーボーナス %1 / 5 回ノルマクリア",
+ "englishUsText":"Daily Bonus: Cleared %1/5",
+ "englishUsFontType":3,
+ "frenchText":"Bonus journalier : %1/5 chansons réussies",
+ "frenchFontType":3,
+ "italianText":"Bonus giornaliero: %1 / 5 completamenti",
+ "italianFontType":3,
+ "germanText":"Täglicher Bonus %1/5-mal Ziel erreicht!",
+ "germanFontType":3,
+ "spanishText":"Recompensa diaria: superaste %1/5",
+ "spanishFontType":3,
+ "chineseTText":"每日獎勵 演奏成功 %1 / 5次",
+ "chineseTFontType":1,
+ "koreanText":"데일리 보너스 %1/5회 클리어 성공",
+ "koreanFontType":2,
+ "portugueseText":"Bônus diário: concluiu %1/5",
+ "portugueseFontType":2,
+ "russianText":"Дневной бонус. Пройдено: %1/5",
+ "russianFontType":2,
+ "turkishText":"Günlük Bonus: %1/5 Bitti",
+ "turkishFontType":2,
+ "arabicText":"مكافأة يومية: تم الحصول على %1/5",
+ "arabicFontType":2,
+ "dutchText":"Dagelijkse bonus: %1/5 gehaald",
+ "dutchFontType":2,
+ "chineseSText":"每日奖励 演奏成功 %1 / 5次",
+ "chineseSFontType":4
+ },
+ {
+ "key":"first_crown_point",
+ "japaneseText":"はじめて王冠を獲得!",
+ "englishUsText":"Got your first Crown!",
+ "englishUsFontType":3,
+ "frenchText":"1re couronne dorée obtenue !",
+ "frenchFontType":3,
+ "italianText":"Ottieni la prima corona!",
+ "italianFontType":3,
+ "germanText":"Erstmals Krone errungen!",
+ "germanFontType":3,
+ "spanishText":"¡Conseguiste tu primera corona!",
+ "spanishFontType":3,
+ "chineseTText":"初次獲得王冠!",
+ "chineseTFontType":1,
+ "koreanText":"첫 왕관 획득!",
+ "koreanFontType":2,
+ "portugueseText":"Ganhou sua primeira Coroa!",
+ "portugueseFontType":2,
+ "russianText":"Получена первая корона!",
+ "russianFontType":2,
+ "turkishText":"İlk tacını aldın!",
+ "turkishFontType":2,
+ "arabicText":"لقد حصلت على تاجك الأول!",
+ "arabicFontType":2,
+ "dutchText":"Je eerste kroontje is binnen!",
+ "dutchFontType":2,
+ "chineseSText":"初次获得王冠!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_friend_list_title",
+ "japaneseText":"ともだち",
+ "englishUsText":"Friends",
+ "englishUsFontType":3,
+ "frenchText":"Amis",
+ "frenchFontType":3,
+ "italianText":"Amici",
+ "italianFontType":3,
+ "germanText":"Freunde",
+ "germanFontType":3,
+ "spanishText":"Amigos",
+ "spanishFontType":3,
+ "chineseTText":"朋友",
+ "chineseTFontType":1,
+ "koreanText":"친구",
+ "koreanFontType":2,
+ "portugueseText":"Amigos",
+ "portugueseFontType":2,
+ "russianText":"Друзья",
+ "russianFontType":2,
+ "turkishText":"Arkadaşlar",
+ "turkishFontType":2,
+ "arabicText":"الأصدقاء",
+ "arabicFontType":2,
+ "dutchText":"Vrienden",
+ "dutchFontType":2,
+ "chineseSText":"朋友",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_friend_log_total_title",
+ "japaneseText":"あそんだ回数",
+ "englishUsText":"Times Played",
+ "englishUsFontType":3,
+ "frenchText":"Nombre de fois jouées",
+ "frenchFontType":3,
+ "italianText":"Partite giocate",
+ "italianFontType":3,
+ "germanText":"Gespielt",
+ "germanFontType":3,
+ "spanishText":"Partidas jugadas",
+ "spanishFontType":3,
+ "chineseTText":"遊玩次數",
+ "chineseTFontType":1,
+ "koreanText":"플레이 횟수",
+ "koreanFontType":2,
+ "portugueseText":"Partidas jogadas",
+ "portugueseFontType":2,
+ "russianText":"Сыграно",
+ "russianFontType":2,
+ "turkishText":"Oynanan süre",
+ "turkishFontType":2,
+ "arabicText":"عدد مرات اللعب",
+ "arabicFontType":2,
+ "dutchText":"Keren gespeeld",
+ "dutchFontType":2,
+ "chineseSText":"游玩次数",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_friend_log_total_data",
+ "japaneseText":"%1 かい",
+ "englishUsText":"Time(s): %1",
+ "englishUsFontType":3,
+ "frenchText":"%1 fois",
+ "frenchFontType":3,
+ "italianText":"Partite: %1",
+ "italianFontType":3,
+ "germanText":"%1-mal",
+ "germanFontType":3,
+ "spanishText":"Partidas: %1",
+ "spanishFontType":3,
+ "chineseTText":"%1 次",
+ "chineseTFontType":1,
+ "koreanText":"%1회",
+ "koreanFontType":2,
+ "portugueseText":"%1 Vez(es)",
+ "portugueseFontType":2,
+ "russianText":"%1 раз(а)",
+ "russianFontType":2,
+ "turkishText":"0.01",
+ "turkishFontType":2,
+ "arabicText":"0.01",
+ "arabicFontType":2,
+ "dutchText":"0.01",
+ "dutchFontType":2,
+ "chineseSText":"%1 次",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_friend_log_vs_title",
+ "japaneseText":"対戦モード",
+ "englishUsText":"Battle Mode",
+ "englishUsFontType":3,
+ "frenchText":"Mode défi",
+ "frenchFontType":3,
+ "italianText":"Modalità sfida",
+ "italianFontType":3,
+ "germanText":"Duell-Modus",
+ "germanFontType":3,
+ "spanishText":"Modo competitivo",
+ "spanishFontType":3,
+ "chineseTText":"對戰模式",
+ "chineseTFontType":1,
+ "koreanText":"대전 모드",
+ "koreanFontType":2,
+ "portugueseText":"Modo Batalha",
+ "portugueseFontType":2,
+ "russianText":"Режим поединка",
+ "russianFontType":2,
+ "turkishText":"Savaş Modu",
+ "turkishFontType":2,
+ "arabicText":"نمط المعركة",
+ "arabicFontType":2,
+ "dutchText":"Strijdmodus",
+ "dutchFontType":2,
+ "chineseSText":"对战模式",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_friend_log_vs_data0",
+ "japaneseText":"%1 まけ",
+ "englishUsText":"Lost: %1",
+ "englishUsFontType":3,
+ "frenchText":"%1 déf.",
+ "frenchFontType":3,
+ "italianText":"Perse: %1",
+ "italianFontType":3,
+ "germanText":"%1 Verl.",
+ "germanFontType":3,
+ "spanishText":"Derrotas: %1",
+ "spanishFontType":3,
+ "chineseTText":"%1 敗",
+ "chineseTFontType":1,
+ "koreanText":"%1패",
+ "koreanFontType":2,
+ "portugueseText":"%1 derrota(s)",
+ "portugueseFontType":2,
+ "russianText":"Пор.: %1",
+ "russianFontType":2,
+ "turkishText":"%1 Yenilgi",
+ "turkishFontType":2,
+ "arabicText":"خسارة: 1%",
+ "arabicFontType":2,
+ "dutchText":"%1 verloren",
+ "dutchFontType":2,
+ "chineseSText":"%1 败",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_friend_log_vs_data1",
+ "japaneseText":"%1 かち",
+ "englishUsText":"Won: %1 ",
+ "englishUsFontType":3,
+ "frenchText":"%1 vict.",
+ "frenchFontType":3,
+ "italianText":"Vinte: %1",
+ "italianFontType":3,
+ "germanText":"%1 Sieg(e)",
+ "germanFontType":3,
+ "spanishText":"Victorias: %1",
+ "spanishFontType":3,
+ "chineseTText":"%1 勝",
+ "chineseTFontType":1,
+ "koreanText":"%1승",
+ "koreanFontType":2,
+ "portugueseText":"%1 vitória(s)",
+ "portugueseFontType":2,
+ "russianText":"Поб.: %1",
+ "russianFontType":2,
+ "turkishText":"%1 Kazanma",
+ "turkishFontType":2,
+ "arabicText":"فوز: 1%",
+ "arabicFontType":2,
+ "dutchText":"%1 gewonnen",
+ "dutchFontType":2,
+ "chineseSText":"%1 胜",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_friend_log_coop_title",
+ "japaneseText":"いっしょに演奏モード",
+ "englishUsText":"Co-op Mode",
+ "englishUsFontType":3,
+ "frenchText":"Mode coopération",
+ "frenchFontType":3,
+ "italianText":"Modalità sessione in compagnia",
+ "italianFontType":3,
+ "germanText":"Koop-Modus",
+ "germanFontType":3,
+ "spanishText":"Modo cooperativo",
+ "spanishFontType":3,
+ "chineseTText":"合作演奏模式",
+ "chineseTFontType":1,
+ "koreanText":"같이 연주 모드",
+ "koreanFontType":2,
+ "portugueseText":"Modo Cooperativo",
+ "portugueseFontType":2,
+ "russianText":"Кооп. режим",
+ "russianFontType":2,
+ "turkishText":"Eş zamanlı Mod",
+ "turkishFontType":2,
+ "arabicText":"النمط التعاوني",
+ "arabicFontType":2,
+ "dutchText":"Multiplayermodus",
+ "dutchFontType":2,
+ "chineseSText":"合作演奏模式",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_friend_log_coop_data0",
+ "japaneseText":"%1 しっぱい",
+ "englishUsText":"Fail: %1 ",
+ "englishUsFontType":3,
+ "frenchText":"Échec x%1",
+ "frenchFontType":3,
+ "italianText":"Fallite: %1",
+ "italianFontType":3,
+ "germanText":"%1 Fehlschl.",
+ "germanFontType":3,
+ "spanishText":"Fracasos: %1",
+ "spanishFontType":3,
+ "chineseTText":"%1 失敗",
+ "chineseTFontType":1,
+ "koreanText":"%1회 실패",
+ "koreanFontType":2,
+ "portugueseText":"%1 falha(s)",
+ "portugueseFontType":2,
+ "russianText":"Неуд.: %1",
+ "russianFontType":2,
+ "turkishText":"%1 Bşrszlk",
+ "turkishFontType":2,
+ "arabicText":"فشل: 1%",
+ "arabicFontType":2,
+ "dutchText":"%1 mislukt",
+ "dutchFontType":2,
+ "chineseSText":"%1 失败",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_friend_log_coop_data1",
+ "japaneseText":"%1 クリア",
+ "englishUsText":"Clear: %1",
+ "englishUsFontType":3,
+ "frenchText":"%1x term.",
+ "frenchFontType":3,
+ "italianText":"Completate: %1",
+ "italianFontType":3,
+ "germanText":"%1 Abschl.",
+ "germanFontType":3,
+ "spanishText":"Superadas: %1",
+ "spanishFontType":3,
+ "chineseTText":"%1 通關",
+ "chineseTFontType":1,
+ "koreanText":"%1회 클리어",
+ "koreanFontType":2,
+ "portugueseText":"%1 concluído(s)",
+ "portugueseFontType":2,
+ "russianText":"Усп.: %1",
+ "russianFontType":2,
+ "turkishText":"%1 Bitirme",
+ "turkishFontType":2,
+ "arabicText":"نجاح: 1%",
+ "arabicFontType":2,
+ "dutchText":"%1 gehaald",
+ "dutchFontType":2,
+ "chineseSText":"%1 通关",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_friend_pass_desc",
+ "japaneseText":"前回とおなじあいことばを使う?",
+ "englishUsText":"Use the same Secret Code as last time?",
+ "englishUsFontType":3,
+ "frenchText":"Utiliser le mot de passe\nde la dernière fois ?",
+ "frenchFontType":3,
+ "italianText":"Usi la parola d'ordine dell'ultima volta?",
+ "italianFontType":3,
+ "germanText":"Gleiches Codewort wie letztes Mal verwenden?",
+ "germanFontType":3,
+ "spanishText":"¿Quieres usar la misma contraseña que antes?",
+ "spanishFontType":3,
+ "chineseTText":"是否使用與上次相同的暗號?",
+ "chineseTFontType":1,
+ "koreanText":"지난번과 같은 암호를 사용할까요?",
+ "koreanFontType":2,
+ "portugueseText":"Usar a mesma senha da vez passada?",
+ "portugueseFontType":2,
+ "russianText":"Использовать прошлый пароль?",
+ "russianFontType":2,
+ "turkishText":"Son seferki Gizli Kelime kullanılsın mı?",
+ "turkishFontType":2,
+ "arabicText":"هل ستستخدم كلمة السر ذاتها التي استخدمتها آخر مرة؟",
+ "arabicFontType":2,
+ "dutchText":"Hetzelfde geheime woord gebruiken?",
+ "dutchFontType":2,
+ "chineseSText":"是否使用与上次相同的暗号?",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_friend_pass_button",
+ "japaneseText":"つかう",
+ "englishUsText":"Use",
+ "englishUsFontType":3,
+ "frenchText":"Utiliser",
+ "frenchFontType":3,
+ "italianText":"Sì",
+ "italianFontType":3,
+ "germanText":"Verwenden",
+ "germanFontType":3,
+ "spanishText":"Usarla",
+ "spanishFontType":3,
+ "chineseTText":"使用",
+ "chineseTFontType":1,
+ "koreanText":"사용",
+ "koreanFontType":2,
+ "portugueseText":"Usar",
+ "portugueseFontType":2,
+ "russianText":"Использовать",
+ "russianFontType":2,
+ "turkishText":"Kullan",
+ "turkishFontType":2,
+ "arabicText":"استخدام",
+ "arabicFontType":2,
+ "dutchText":"Gebruiken",
+ "dutchFontType":2,
+ "chineseSText":"使用",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_keyboard_clear",
+ "japaneseText":"クリア",
+ "englishUsText":"Clear",
+ "englishUsFontType":3,
+ "frenchText":"Effacer",
+ "frenchFontType":3,
+ "italianText":"Cancella",
+ "italianFontType":3,
+ "germanText":"Löschen",
+ "germanFontType":3,
+ "spanishText":"Borrarla",
+ "spanishFontType":3,
+ "chineseTText":"清除",
+ "chineseTFontType":1,
+ "koreanText":"클리어",
+ "koreanFontType":2,
+ "portugueseText":"Concluir",
+ "portugueseFontType":2,
+ "russianText":"Очистить",
+ "russianFontType":2,
+ "turkishText":"Sil",
+ "turkishFontType":2,
+ "arabicText":"مسح",
+ "arabicFontType":2,
+ "dutchText":"Wissen",
+ "dutchFontType":2,
+ "chineseSText":"清除",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_keyboard_random",
+ "japaneseText":"ランダム",
+ "englishUsText":"Random",
+ "englishUsFontType":3,
+ "frenchText":"Aléatoire",
+ "frenchFontType":3,
+ "italianText":"Casuale",
+ "italianFontType":3,
+ "germanText":"Zufällig",
+ "germanFontType":3,
+ "spanishText":"Al azar",
+ "spanishFontType":3,
+ "chineseTText":"隨機",
+ "chineseTFontType":1,
+ "koreanText":"랜덤",
+ "koreanFontType":2,
+ "portugueseText":"Aleatório",
+ "portugueseFontType":2,
+ "russianText":"Случайный выбор",
+ "russianFontType":2,
+ "turkishText":"Rastgele",
+ "turkishFontType":2,
+ "arabicText":"عشوائي",
+ "arabicFontType":2,
+ "dutchText":"Willekeurig",
+ "dutchFontType":2,
+ "chineseSText":"随机",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tamatebako_title_kisekae",
+ "japaneseText":"きせかえがふえたよ!",
+ "englishUsText":"New Costume!",
+ "englishUsFontType":3,
+ "frenchText":"Nouvelle tenue disponible !",
+ "frenchFontType":3,
+ "italianText":"Sono disponibili nuovi costumi!",
+ "italianFontType":3,
+ "germanText":"Neues Kostüm verfügbar!",
+ "germanFontType":3,
+ "spanishText":"¡Hay más disfraces!",
+ "spanishFontType":3,
+ "chineseTText":"換裝道具增加囉!",
+ "chineseTFontType":1,
+ "koreanText":"꾸미기 아이템이 늘었어!",
+ "koreanFontType":2,
+ "portugueseText":"Nova Fantasia!",
+ "portugueseFontType":2,
+ "russianText":"Новый костюм!",
+ "russianFontType":2,
+ "turkishText":"Yeni Kostüm!",
+ "turkishFontType":2,
+ "arabicText":"زي جديد!",
+ "arabicFontType":2,
+ "dutchText":"Nieuw kostuum!",
+ "dutchFontType":2,
+ "chineseSText":"换装道具增加啰!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tamatebako_title_neiro",
+ "japaneseText":"音色がふえたよ!",
+ "englishUsText":"New Hit Sounds!",
+ "englishUsFontType":3,
+ "frenchText":"Nouvel instrument\ndisponible !",
+ "frenchFontType":3,
+ "italianText":"Sono disponibili nuovi strumenti!",
+ "italianFontType":3,
+ "germanText":"Neue Klangfarbe verfügbar!",
+ "germanFontType":3,
+ "spanishText":"¡Hay más timbres!",
+ "spanishFontType":3,
+ "chineseTText":"音色增加囉!",
+ "chineseTFontType":1,
+ "koreanText":"음색이 늘었어!",
+ "koreanFontType":2,
+ "portugueseText":"Novos Tons de batida!",
+ "portugueseFontType":2,
+ "russianText":"Новые звуки ударов!!",
+ "russianFontType":2,
+ "turkishText":"Yeni Vuruş Sesleri!",
+ "turkishFontType":2,
+ "arabicText":"أصوات نقر جديدة!",
+ "arabicFontType":2,
+ "dutchText":"Nieuwe drumgeluiden!",
+ "dutchFontType":2,
+ "chineseSText":"音色增加啰!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tamatebako_point_title",
+ "japaneseText":"たまてばこチャレンジ!",
+ "englishUsText":"Treasure Box Challenge!",
+ "englishUsFontType":3,
+ "frenchText":"Défi des coffres aux trésors !",
+ "frenchFontType":3,
+ "italianText":"Sfida scrigno del tesoro!",
+ "italianFontType":3,
+ "germanText":"Schatztruhe-Challenge!",
+ "germanFontType":3,
+ "spanishText":"¡Desafío de cajas sorpresa!",
+ "spanishFontType":3,
+ "chineseTText":"玉手箱挑戰!",
+ "chineseTFontType":1,
+ "koreanText":"보물 상자 도전!",
+ "koreanFontType":2,
+ "portugueseText":"Desafio da Caixa do Tesouro!",
+ "portugueseFontType":2,
+ "russianText":"Испытание «Сундук с сокровищами»!",
+ "russianFontType":2,
+ "turkishText":"Hazine Kutusu Mücadelesi!",
+ "turkishFontType":2,
+ "arabicText":"تحدي صندوق الكنز!",
+ "arabicFontType":2,
+ "dutchText":"Schatkistenuitdaging!",
+ "dutchFontType":2,
+ "chineseSText":"玉手箱挑战!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"tutorial_finish",
+ "japaneseText":"これで基本はばっちりだドン!\nさー、はじまるドン!",
+ "englishUsText":"That's the basics! Well DON!\nNow, let's begin, don!",
+ "englishUsFontType":3,
+ "frenchText":"Tu as les bases !\nAllez, commençons !",
+ "frenchFontType":3,
+ "italianText":"Abbiamo coperto le basi, don!\nOra cominciamo, do-don!",
+ "italianFontType":3,
+ "germanText":"Jetzt hast du die Grundlagen drauf, DON!\nGut, fangen wir an, DON!",
+ "germanFontType":3,
+ "spanishText":"¡Y hasta aquí todo lo básico!\n¡Vamos a ello!",
+ "spanishFontType":3,
+ "chineseTText":"這樣就學好基礎了咚!\n好~開始了咚!",
+ "chineseTFontType":1,
+ "koreanText":"이걸로 기본은 완벽하다쿵!\n그럼, 시작한다쿵!",
+ "koreanFontType":2,
+ "portugueseText":"Isso é o básico! Muito bom, DON!\nAgora vamos começar, DON!",
+ "portugueseFontType":2,
+ "russianText":"Азы усвоены, дон!\nНачинай игру, дон!",
+ "russianFontType":2,
+ "turkishText":"Bunlar temel hareketler, don!\nHadi, şimdi başlayalım, don!",
+ "turkishFontType":2,
+ "arabicText":"هذه هي الأساسيات، حسنًا!\nدعنا نبدأ الآن، حسنًا!",
+ "arabicFontType":2,
+ "dutchText":"Je weet nu hoe het moet!\nNu kun je beginnen!",
+ "dutchFontType":2,
+ "chineseSText":"这样就学好基础了咚!\n好~开始了咚!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_button_system",
+ "japaneseText":"ゲームの設定",
+ "englishUsText":"Game Settings",
+ "englishUsFontType":3,
+ "frenchText":"Réglages du jeu",
+ "frenchFontType":3,
+ "italianText":"Impostazioni di sistema",
+ "italianFontType":3,
+ "germanText":"Spieleinstellungen",
+ "germanFontType":3,
+ "spanishText":"Ajustes de juego",
+ "spanishFontType":3,
+ "chineseTText":"遊戲設定",
+ "chineseTFontType":1,
+ "koreanText":"게임 설정",
+ "koreanFontType":2,
+ "portugueseText":"Configurações de jogo",
+ "portugueseFontType":2,
+ "russianText":"Настройки игры",
+ "russianFontType":2,
+ "turkishText":"Oyun Ayarları",
+ "turkishFontType":2,
+ "arabicText":"إعدادات اللعبة",
+ "arabicFontType":2,
+ "dutchText":"Game-instellingen",
+ "dutchFontType":2,
+ "chineseSText":"游戏设定",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_button_help",
+ "japaneseText":"ヘルプ(この画面)",
+ "englishUsText":"Help (This Screen)",
+ "englishUsFontType":3,
+ "frenchText":"Aide (cet écran)",
+ "frenchFontType":3,
+ "italianText":"Aiuto (in questa schermata)",
+ "italianFontType":3,
+ "germanText":"Hilfe (Dieser Bildschirm)",
+ "germanFontType":3,
+ "spanishText":"Ayuda (en esta pantalla)",
+ "spanishFontType":3,
+ "chineseTText":"操作說明(本畫面)",
+ "chineseTFontType":1,
+ "koreanText":"도움말(현재 화면)",
+ "koreanFontType":2,
+ "portugueseText":"Ajuda (essa tela)",
+ "portugueseFontType":2,
+ "russianText":"Помощь (этот экран)",
+ "russianFontType":2,
+ "turkishText":"Yardım (Bu Ekranda)",
+ "turkishFontType":2,
+ "arabicText":"مساعدة (هذه الشاشة)",
+ "arabicFontType":2,
+ "dutchText":"Help (dit scherm)",
+ "dutchFontType":2,
+ "chineseSText":"操作说明(本画面)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_button_to_kisekae",
+ "japaneseText":"きせかえ画面へ",
+ "englishUsText":"Costume Select",
+ "englishUsFontType":3,
+ "frenchText":"Tenues",
+ "frenchFontType":3,
+ "italianText":"Vai alla schermata dei costumi",
+ "italianFontType":3,
+ "germanText":"Zu den Kostüm-Optionen",
+ "germanFontType":3,
+ "spanishText":"Ver trajes",
+ "spanishFontType":3,
+ "chineseTText":"前往換裝畫面",
+ "chineseTFontType":1,
+ "koreanText":"꾸미기 화면으로 이동",
+ "koreanFontType":2,
+ "portugueseText":"Tela de Fantasias",
+ "portugueseFontType":2,
+ "russianText":"К экрану костюмов",
+ "russianFontType":2,
+ "turkishText":"Kostümler Ekranına",
+ "turkishFontType":2,
+ "arabicText":"إلى شاشة الأزياء",
+ "arabicFontType":2,
+ "dutchText":"Naar het kostuumscherm",
+ "dutchFontType":2,
+ "chineseSText":"前往换装画面",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_button_to_tsunagaru",
+ "japaneseText":"つながる画面へ",
+ "englishUsText":"Play with Friends",
+ "englishUsFontType":3,
+ "frenchText":"Se connecter",
+ "frenchFontType":3,
+ "italianText":"Vai alla schermata di\ncollegamento",
+ "italianFontType":3,
+ "germanText":"Zum Verbinden",
+ "germanFontType":3,
+ "spanishText":"Ver conexiones",
+ "spanishFontType":3,
+ "chineseTText":"前往連線畫面",
+ "chineseTFontType":1,
+ "koreanText":"연결 화면으로 이동",
+ "koreanFontType":2,
+ "portugueseText":"Tela de Conexão",
+ "portugueseFontType":2,
+ "russianText":"К экрану подключения",
+ "russianFontType":2,
+ "turkishText":"Bağlantı Ekranına",
+ "turkishFontType":2,
+ "arabicText":"إلى شاشة الاتصال",
+ "arabicFontType":2,
+ "dutchText":"Naar verbindingsscherm",
+ "dutchFontType":2,
+ "chineseSText":"前往连线画面",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_button_to_songselect",
+ "japaneseText":"曲をえらぶ画面へ",
+ "englishUsText":"To Song Selection Screen",
+ "englishUsFontType":3,
+ "frenchText":"Choix de la chanson",
+ "frenchFontType":3,
+ "italianText":"Vai alla selezione delle canzoni",
+ "italianFontType":3,
+ "germanText":"Zur Songwahl",
+ "germanFontType":3,
+ "spanishText":"Ver canciones",
+ "spanishFontType":3,
+ "chineseTText":"前往選擇樂曲畫面",
+ "chineseTFontType":1,
+ "koreanText":"곡 선택 화면으로 이동",
+ "koreanFontType":2,
+ "portugueseText":"Tele de Seleção de Música",
+ "portugueseFontType":2,
+ "russianText":"К экрану выбора песни",
+ "russianFontType":2,
+ "turkishText":"Şarkı Seçme Ekranına",
+ "turkishFontType":2,
+ "arabicText":"إلى شاشة اختيار الأغنية",
+ "arabicFontType":2,
+ "dutchText":"Naar het liedjeskeuzescherm",
+ "dutchFontType":2,
+ "chineseSText":"前往选择乐曲画面",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_songselect_0",
+ "japaneseText":"①上下にうごかして曲をえらぶ!",
+ "englishUsText":"① Scroll ▲▼ and choose a Song!",
+ "englishUsFontType":3,
+ "frenchText":"① Fais défiler pour\nchoisir une chanson !",
+ "frenchFontType":3,
+ "italianText":"1. Scorri su e giù per scegliere la canzone!",
+ "italianFontType":3,
+ "germanText":"① Auf- und abbewegen und einen Song wählen!",
+ "germanFontType":3,
+ "spanishText":"1. ¡Muévete de arriba a abajo y elige!",
+ "spanishFontType":3,
+ "chineseTText":"①上下移動選擇樂曲!",
+ "chineseTFontType":1,
+ "koreanText":"①위아래로 움직여서 곡 선택!",
+ "koreanFontType":2,
+ "portugueseText":"① Mova ▲▼ para selecionar música!",
+ "portugueseFontType":2,
+ "russianText":"① Выбери песню с помощью стрелок!",
+ "russianFontType":2,
+ "turkishText":"① ▲▼ Kaydır ve bir Şarkı seç!",
+ "turkishFontType":2,
+ "arabicText":"①مرِّر ▲▼ واختر أغنية!",
+ "arabicFontType":2,
+ "dutchText":"① Scrol ▲▼ en kies een liedje!",
+ "dutchFontType":2,
+ "chineseSText":"①上下移动选择乐曲!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_songselect_1",
+ "japaneseText":"②むずかしさをえらぶ!",
+ "englishUsText":"② Choose your Difficulty Level!",
+ "englishUsFontType":3,
+ "frenchText":"② Choisis la difficulté !",
+ "frenchFontType":3,
+ "italianText":"2. Seleziona la difficoltà!",
+ "italianFontType":3,
+ "germanText":"② Schwierigkeitsgrad wählen!",
+ "germanFontType":3,
+ "spanishText":"2. ¡Selecciona la dificultad!",
+ "spanishFontType":3,
+ "chineseTText":"②選擇難度!",
+ "chineseTFontType":1,
+ "koreanText":"②난이도 선택!",
+ "koreanFontType":2,
+ "portugueseText":"② Selecione o nível de dificuldade!",
+ "portugueseFontType":2,
+ "russianText":"② Выбери сложность!",
+ "russianFontType":2,
+ "turkishText":"② Zorluk Seviyeni seç!",
+ "turkishFontType":2,
+ "arabicText":"② اختر مستوى الصعوبة!",
+ "arabicFontType":2,
+ "dutchText":"② Kies je moeilijkheidsniveau!",
+ "dutchFontType":2,
+ "chineseSText":"②选择难度!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_songselect_2",
+ "japaneseText":"③スタートボタンを押してかいし!",
+ "englishUsText":"③ Tap Start to begin!",
+ "englishUsFontType":3,
+ "frenchText":"③ Touche Start\npour commencer !",
+ "frenchFontType":3,
+ "italianText":"3. Premi il pulsante\nper iniziare!",
+ "italianFontType":3,
+ "germanText":"③Drücke Start um loszulegen!",
+ "germanFontType":3,
+ "spanishText":"3. ¡Toca el botón!",
+ "spanishFontType":3,
+ "chineseTText":"③按下開始按鈕開始演奏!",
+ "chineseTFontType":1,
+ "koreanText":"③시작 버튼을 눌러 연주 시작!",
+ "koreanFontType":2,
+ "portugueseText":"③ Aperte Começar para iniciar!",
+ "portugueseFontType":2,
+ "russianText":"③ Жми Старт!",
+ "russianFontType":2,
+ "turkishText":"③ Başla'ya dokun!",
+ "turkishFontType":2,
+ "arabicText":"③ للبدء، انقر على بدء!",
+ "arabicFontType":2,
+ "dutchText":"③ Tik op Start",
+ "dutchFontType":2,
+ "chineseSText":"③按下开始按钮开始演奏!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_songselect_3",
+ "japaneseText":"ランキング",
+ "englishUsText":"Ranking",
+ "englishUsFontType":3,
+ "frenchText":"Classement",
+ "frenchFontType":3,
+ "italianText":"Classifica",
+ "italianFontType":3,
+ "germanText":"Rangliste",
+ "germanFontType":3,
+ "spanishText":"Clasificación",
+ "spanishFontType":3,
+ "chineseTText":"排名",
+ "chineseTFontType":1,
+ "koreanText":"랭킹",
+ "koreanFontType":2,
+ "portugueseText":"Ranking",
+ "portugueseFontType":2,
+ "russianText":"Рейтинг",
+ "russianFontType":2,
+ "turkishText":"Sıralama",
+ "turkishFontType":2,
+ "arabicText":"التصنيف",
+ "arabicFontType":2,
+ "dutchText":"Ranglijst",
+ "dutchFontType":2,
+ "chineseSText":"排名",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_songselect_4",
+ "japaneseText":"ヘルプ(この画面)",
+ "englishUsText":"Help (This Screen)",
+ "englishUsFontType":3,
+ "frenchText":"Aide (cet écran)",
+ "frenchFontType":3,
+ "italianText":"Aiuto (in questa schermata)",
+ "italianFontType":3,
+ "germanText":"Hilfe (Dieser Bildschirm)",
+ "germanFontType":3,
+ "spanishText":"Ayuda (en esta pantalla)",
+ "spanishFontType":3,
+ "chineseTText":"操作說明(本畫面)",
+ "chineseTFontType":1,
+ "koreanText":"도움말(현재 화면)",
+ "koreanFontType":2,
+ "portugueseText":"Ajuda (essa tela)",
+ "portugueseFontType":2,
+ "russianText":"Помощь (этот экран)",
+ "russianFontType":2,
+ "turkishText":"Yardım (Bu Ekranda)",
+ "turkishFontType":2,
+ "arabicText":"مساعدة (هذه الشاشة)",
+ "arabicFontType":2,
+ "dutchText":"Help (dit scherm)",
+ "dutchFontType":2,
+ "chineseSText":"操作说明(本画面)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_songselect_5",
+ "japaneseText":"演奏オプション",
+ "englishUsText":"Customize Gameplay",
+ "englishUsFontType":3,
+ "frenchText":"Options de partie",
+ "frenchFontType":3,
+ "italianText":"Opzioni della sessione",
+ "italianFontType":3,
+ "germanText":"Musik-Optionen",
+ "germanFontType":3,
+ "spanishText":"Personalización",
+ "spanishFontType":3,
+ "chineseTText":"演奏選項",
+ "chineseTFontType":1,
+ "koreanText":"연주 옵션",
+ "koreanFontType":2,
+ "portugueseText":"Personalizar",
+ "portugueseFontType":2,
+ "russianText":"Настройки исполнения",
+ "russianFontType":2,
+ "turkishText":"Özel Parametreler",
+ "turkishFontType":2,
+ "arabicText":"معلمات مخصصة",
+ "arabicFontType":2,
+ "dutchText":"Speelopties",
+ "dutchFontType":2,
+ "chineseSText":"演奏选项",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_songselect_6",
+ "japaneseText":"ジャンルきりかえ",
+ "englishUsText":"Change Song Category",
+ "englishUsFontType":3,
+ "frenchText":"Changer de genre",
+ "frenchFontType":3,
+ "italianText":"Cambia genere",
+ "italianFontType":3,
+ "germanText":"Genre wechseln",
+ "germanFontType":3,
+ "spanishText":"Cambiar género musical",
+ "spanishFontType":3,
+ "chineseTText":"切換類型",
+ "chineseTFontType":1,
+ "koreanText":"장르 변경",
+ "koreanFontType":2,
+ "portugueseText":"Alterar gênero musical",
+ "portugueseFontType":2,
+ "russianText":"Смена категории",
+ "russianFontType":2,
+ "turkishText":"Şarkı Kategorisini Değiştir",
+ "turkishFontType":2,
+ "arabicText":"تغيير فئة الأغنية",
+ "arabicFontType":2,
+ "dutchText":"Kies liedjescategorie",
+ "dutchFontType":2,
+ "chineseSText":"切换类型",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_songselect_7",
+ "japaneseText":"ハイスコア",
+ "englishUsText":"Top Scores",
+ "englishUsFontType":3,
+ "frenchText":"Meilleur score",
+ "frenchFontType":3,
+ "italianText":"Record",
+ "italianFontType":3,
+ "germanText":"Punkterekord",
+ "germanFontType":3,
+ "spanishText":"Puntuaciones más altas",
+ "spanishFontType":3,
+ "chineseTText":"高成績",
+ "chineseTFontType":1,
+ "koreanText":"하이 스코어",
+ "koreanFontType":2,
+ "portugueseText":"Recordes",
+ "portugueseFontType":2,
+ "russianText":"Рекорд",
+ "russianFontType":2,
+ "turkishText":"En İyi Skorlar",
+ "turkishFontType":2,
+ "arabicText":"أعلى نتائج",
+ "arabicFontType":2,
+ "dutchText":"Topscores",
+ "dutchFontType":2,
+ "chineseSText":"高成绩",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_kisekae_0",
+ "japaneseText":"①タッチで試着!",
+ "englishUsText":"① Tap to try on!",
+ "englishUsFontType":3,
+ "frenchText":"① Touche pour essayer !",
+ "frenchFontType":3,
+ "italianText":"1. Tocca per provarlo!",
+ "italianFontType":3,
+ "germanText":"① Antippen und anprobieren!",
+ "germanFontType":3,
+ "spanishText":"1. ¡Toca para probártelo!",
+ "spanishFontType":3,
+ "chineseTText":"①觸碰即可試穿!",
+ "chineseTFontType":1,
+ "koreanText":"①터치해서 장착!",
+ "koreanFontType":2,
+ "portugueseText":"① Toque para experimentar!",
+ "portugueseFontType":2,
+ "russianText":"① Примерить одним нажатием!",
+ "russianFontType":2,
+ "turkishText":"① Denemek için dokun!",
+ "turkishFontType":2,
+ "arabicText":"① اضغط للتجربة!",
+ "arabicFontType":2,
+ "dutchText":"① Tik om te proberen!",
+ "dutchFontType":2,
+ "chineseSText":"①触碰即可试穿!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_kisekae_1",
+ "japaneseText":"②決定!",
+ "englishUsText":"② Confirm!",
+ "englishUsFontType":3,
+ "frenchText":"② Confirme !",
+ "frenchFontType":3,
+ "italianText":"2. Conferma!",
+ "italianFontType":3,
+ "germanText":"② Bestätigen!",
+ "germanFontType":3,
+ "spanishText":"2. ¡Di que sí!",
+ "spanishFontType":3,
+ "chineseTText":"②決定!",
+ "chineseTFontType":1,
+ "koreanText":"②결정!",
+ "koreanFontType":2,
+ "portugueseText":"② Confirmar!",
+ "portugueseFontType":2,
+ "russianText":"② Подтвердить!",
+ "russianFontType":2,
+ "turkishText":"② Onayla!",
+ "turkishFontType":2,
+ "arabicText":"② تأكيد!",
+ "arabicFontType":2,
+ "dutchText":"② Bevestig!",
+ "dutchFontType":2,
+ "chineseSText":"②决定!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_kisekae_2",
+ "japaneseText":"ジャンルきりかえ",
+ "englishUsText":"Change Category",
+ "englishUsFontType":3,
+ "frenchText":"Changer de style",
+ "frenchFontType":3,
+ "italianText":"Cambia tipologia",
+ "italianFontType":3,
+ "germanText":"Kategorie wechseln",
+ "germanFontType":3,
+ "spanishText":"Cambio de estilo",
+ "spanishFontType":3,
+ "chineseTText":"切換類型",
+ "chineseTFontType":1,
+ "koreanText":"카테고리 변경",
+ "koreanFontType":2,
+ "portugueseText":"Alterar estilo",
+ "portugueseFontType":2,
+ "russianText":"Смена категории",
+ "russianFontType":2,
+ "turkishText":"Şarkı Kategorisini Değiştir",
+ "turkishFontType":2,
+ "arabicText":"تغيير فئة الزي",
+ "arabicFontType":2,
+ "dutchText":"Verander liedjescategorie",
+ "dutchFontType":2,
+ "chineseSText":"切换类型",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_tsunagaru_0",
+ "japaneseText":"①ともだちと同じあいことばを入れて",
+ "englishUsText":"① Enter the same Secret Code!",
+ "englishUsFontType":3,
+ "frenchText":"① Entre le même mot de passe que ton ami",
+ "frenchFontType":3,
+ "italianText":"1. Inserisci la stessa parola d'ordine!",
+ "italianFontType":3,
+ "germanText":"① Gib das gleiche Codewort wie dein Freund ein.",
+ "germanFontType":3,
+ "spanishText":"1. Escribe la misma contraseña que tus amigos.",
+ "spanishFontType":3,
+ "chineseTText":"①和朋友輸入相同的暗號",
+ "chineseTFontType":1,
+ "koreanText":"①친구와 같은 암호를 입력하고",
+ "koreanFontType":2,
+ "portugueseText":"① Digite a mesma senha que seu amigo!",
+ "portugueseFontType":2,
+ "russianText":"① Введи тот же самый пароль!",
+ "russianFontType":2,
+ "turkishText":"① Aynı Gizli Kelimeyi kullan!",
+ "turkishFontType":2,
+ "arabicText":"① أدخل كلمة السر ذاتها!",
+ "arabicFontType":2,
+ "dutchText":"① Voer hetzelfde geheime woord in!",
+ "dutchFontType":2,
+ "chineseSText":"①和朋友输入相同的暗号",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_tsunagaru_1",
+ "japaneseText":"②「つながる」ボタンをおす!\nともだちとつながるよ!",
+ "englishUsText":"② Tap \"Connect\" to link up!",
+ "englishUsFontType":3,
+ "frenchText":"② Appuie sur « Se connecter»\npour te connecter à ton ami !",
+ "frenchFontType":3,
+ "italianText":"2. Tocca \"Connetti\" per collegarti!",
+ "italianFontType":3,
+ "germanText":"② Drücke auf VERBINDEN,\num mit Freunden zu spielen!",
+ "germanFontType":3,
+ "spanishText":"2. ¡Toca el botón para conectarte!\n¡Y ya estarás conectado a tus amigos!",
+ "spanishFontType":3,
+ "chineseTText":"②按下「連線」按鈕!\n這樣就能和朋友連線喔!",
+ "chineseTFontType":1,
+ "koreanText":"②'연결' 버튼을 누르면\n친구와 연결돼!",
+ "koreanFontType":2,
+ "portugueseText":"② Pressione \"Conectar\"!",
+ "portugueseFontType":2,
+ "russianText":"② Жми «Подключиться»,\nчтобы связаться с другом!",
+ "russianFontType":2,
+ "turkishText":"② Bağlantı kurmak için \"Bağlan\"a dokun!",
+ "turkishFontType":2,
+ "arabicText":"② انقر على “اتصال\" للربط!",
+ "arabicFontType":2,
+ "dutchText":"② Tik op “Verbinden” om te koppelen!",
+ "dutchFontType":2,
+ "chineseSText":"②按下“连线”按钮!\n这样就能和朋友连线哦!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_tsunagaru_2",
+ "japaneseText":"③つながったら、\n「はじめる」ボタンをおして\nいっしょにあそぼう!",
+ "englishUsText":"③ Once connected, \ntap \"Begin\" to play\nwith your friends!",
+ "englishUsFontType":3,
+ "frenchText":"③ Une fois connectés,\nappuie sur « Commencer »\npour jouer ensemble !",
+ "frenchFontType":3,
+ "italianText":"3. Quando siete collegati,\npremi \"Inizia\" per giocare\ninsieme agli amici!",
+ "italianFontType":3,
+ "germanText":"③ Bist du verbunden,\ndrücke BEGINNEN\nund es geht los!",
+ "germanFontType":3,
+ "spanishText":"3. ¡Una vez tengas la conexión activa,\ntoca el botón para empezar a jugar!",
+ "spanishFontType":3,
+ "chineseTText":"③連線成功後,\n按下「開始遊玩」按鈕,\n一起遊玩吧!",
+ "chineseTFontType":1,
+ "koreanText":"③연결되면\n'시작' 버튼을 눌러서\n같이 놀자!",
+ "koreanFontType":2,
+ "portugueseText":"③ Estando conectados, pressione \n\"Começar\" para jogarem juntos!",
+ "portugueseFontType":2,
+ "russianText":"③ После подключения \nнажми «Начать», чтобы\nсыграть с друзьями!",
+ "russianFontType":2,
+ "turkishText":"③ Bağlandığında, \narkadaşlarınla oynamak için\n\"Başla\"ya dokun!",
+ "turkishFontType":2,
+ "arabicText":"③ بمجرد الاتصال،\nانقر على \"ابدأ\" لتبدأ اللعب \nمع أصدقائك!",
+ "arabicFontType":2,
+ "dutchText":"③ Wanneer je bent verbonden, \ndruk dan op “Begin\"\nom met je vrienden te spelen!",
+ "dutchFontType":2,
+ "chineseSText":"③连线成功后,\n按下“开始游玩”按钮,\n一起游玩吧!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_tsunagaru_3",
+ "japaneseText":"最近あそんだ友達\nタッチすると、前回のあいことばとあそんだ結果が見られるよ",
+ "englishUsText":"Recent Friends\nTap a name to see your latest Secret Code.",
+ "englishUsFontType":3,
+ "frenchText":"Amis récents\nTouche pour voir le mot de passe et les résultats de la dernière partie",
+ "frenchFontType":3,
+ "italianText":"Partite recenti con amici\nTocca un nome per vedere parola d'ordine e risultati.",
+ "italianFontType":3,
+ "germanText":"Wenn du einen Freund antippst, mit dem du neulich gespielt hast,\nkannst du das Codewort und das Ergebnis vom letzten Mal sehen.",
+ "germanFontType":3,
+ "spanishText":"Amigos con los que has jugado últimamente\nToca aquí para ver las últimas contraseñas y resultados.",
+ "spanishFontType":3,
+ "chineseTText":"觸碰最近一起遊玩的朋友,\n就會顯示上次的暗號與遊玩結果喔",
+ "chineseTFontType":1,
+ "koreanText":"최근 같이 논 친구를\n터치하면 지난번 암호와 결과를 볼 수 있어",
+ "koreanFontType":2,
+ "portugueseText":"Amigos recentes\nDigite um nome para ver sua última senha.",
+ "portugueseFontType":2,
+ "russianText":"Недавние друзья\nКоснись имени, чтобы увидеть свой последний пароль.",
+ "russianFontType":2,
+ "turkishText":"Yeni Arkadaşlar\nSon Gizli Kelimeni görmek için bir ismi dokun.",
+ "turkishFontType":2,
+ "arabicText":"الأصدقاء الجدد\nاضغط على اسم لرؤية أحدث كلمة سر.",
+ "arabicFontType":2,
+ "dutchText":"Recente vrienden\nTik op een naam om je laatste geheime woord te zien.",
+ "dutchFontType":2,
+ "chineseSText":"触碰最近一起游玩的朋友,\n就会显示上次的暗号与游玩结果哦",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_tsunagaru_4",
+ "japaneseText":"タッチすると、いままでの結果が見られるよ",
+ "englishUsText":"Tap to see your play history!",
+ "englishUsFontType":3,
+ "frenchText":"Touche pour voir les résultats précédents",
+ "frenchFontType":3,
+ "italianText":"Tocca per vedere i tuoi risultati!",
+ "italianFontType":3,
+ "germanText":"Durch Antippen kannst du die bisherigen Ergebnisse einsehen.",
+ "germanFontType":3,
+ "spanishText":"¡Toca para ver tus resultados hasta ahora!",
+ "spanishFontType":3,
+ "chineseTText":"觸碰後就會顯示到目前為止的結果喔",
+ "chineseTFontType":1,
+ "koreanText":"터치하면 지금까지의 결과를 볼 수 있어",
+ "koreanFontType":2,
+ "portugueseText":"Tocando aqui, você verá todos os resultados até agora!",
+ "portugueseFontType":2,
+ "russianText":"Жми, чтобы проверить свои результаты!",
+ "russianFontType":2,
+ "turkishText":"Oyun geçmişini görmek için dokun!",
+ "turkishFontType":2,
+ "arabicText":"اضغط لترى تاريخ اللعب الخاص بك!",
+ "arabicFontType":2,
+ "dutchText":"Tik om je speelgeschiedenis te bekijken!",
+ "dutchFontType":2,
+ "chineseSText":"触碰后就会显示到目前为止的结果哦",
+ "chineseSFontType":4
+ },
+ {
+ "key":"netplay_result_coop_0",
+ "japaneseText":"大成功",
+ "englishUsText":"Huge Success",
+ "englishUsFontType":3,
+ "frenchText":"Parfait",
+ "frenchFontType":3,
+ "italianText":"Grande successo",
+ "italianFontType":3,
+ "germanText":"Riesenerfolg",
+ "germanFontType":3,
+ "spanishText":"Muy bien",
+ "spanishFontType":3,
+ "chineseTText":"大成功",
+ "chineseTFontType":1,
+ "koreanText":"대성공",
+ "koreanFontType":2,
+ "portugueseText":"Super Sucesso",
+ "portugueseFontType":2,
+ "russianText":"Большой успех",
+ "russianFontType":2,
+ "turkishText":"Büyük Başarı",
+ "turkishFontType":2,
+ "arabicText":"نجاح ساحق",
+ "arabicFontType":2,
+ "dutchText":"Een groot succes",
+ "dutchFontType":2,
+ "chineseSText":"大成功",
+ "chineseSFontType":4
+ },
+ {
+ "key":"netplay_result_coop_1",
+ "japaneseText":"成功",
+ "englishUsText":"Success",
+ "englishUsFontType":3,
+ "frenchText":"Réussite",
+ "frenchFontType":3,
+ "italianText":"Successo",
+ "italianFontType":3,
+ "germanText":"Erfolg",
+ "germanFontType":3,
+ "spanishText":"Bien",
+ "spanishFontType":3,
+ "chineseTText":"成功",
+ "chineseTFontType":1,
+ "koreanText":"성공",
+ "koreanFontType":2,
+ "portugueseText":"Sucesso",
+ "portugueseFontType":2,
+ "russianText":"Успех",
+ "russianFontType":2,
+ "turkishText":"Başarı",
+ "turkishFontType":2,
+ "arabicText":"نجاح",
+ "arabicFontType":2,
+ "dutchText":"Succes",
+ "dutchFontType":2,
+ "chineseSText":"成功",
+ "chineseSFontType":4
+ },
+ {
+ "key":"netplay_result_coop_2",
+ "japaneseText":"ざんねん",
+ "englishUsText":"Oh, no!",
+ "englishUsFontType":3,
+ "frenchText":"Échec",
+ "frenchFontType":3,
+ "italianText":"Oh, no!",
+ "italianFontType":3,
+ "germanText":"Oh nein!",
+ "germanFontType":3,
+ "spanishText":"¡Oh, no!",
+ "spanishFontType":3,
+ "chineseTText":"真可惜",
+ "chineseTFontType":1,
+ "koreanText":"아까워요",
+ "koreanFontType":2,
+ "portugueseText":"Que pena!",
+ "portugueseFontType":2,
+ "russianText":"Очень жаль",
+ "russianFontType":2,
+ "turkishText":"Hayır, olamaz!",
+ "turkishFontType":2,
+ "arabicText":"أوه، لا!",
+ "arabicFontType":2,
+ "dutchText":"Oh nee!",
+ "dutchFontType":2,
+ "chineseSText":"真可惜",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_faq_link",
+ "japaneseText":"お問い合わせ(ブラウザが開きます)",
+ "englishUsText":"Got a Question? (Opens Browser)",
+ "englishUsFontType":3,
+ "frenchText":"Contact (navigateur)",
+ "frenchFontType":3,
+ "italianText":"Fai una domanda (dal browser)",
+ "italianFontType":3,
+ "germanText":"Anfrage (Browser)",
+ "germanFontType":3,
+ "spanishText":"Consultas (se abrirá el navegador)",
+ "spanishFontType":3,
+ "chineseTText":"聯絡我們(將開啟瀏覽器)",
+ "chineseTFontType":1,
+ "koreanText":"문의(브라우저가 열립니다)",
+ "koreanFontType":2,
+ "portugueseText":"Perguntas? (Abre o navegador)",
+ "portugueseFontType":2,
+ "russianText":"Связаться с нами (в браузере)",
+ "russianFontType":2,
+ "turkishText":"Bir sorun mu var? (Tarayıcıyı açar)",
+ "turkishFontType":2,
+ "arabicText":"هل لديك أي سؤال؟ (يفتح متصفح)",
+ "arabicFontType":2,
+ "dutchText":"Heb je een vraag? (via browser)",
+ "dutchFontType":2,
+ "chineseSText":"联络我们(将启动浏览器)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"title_start",
+ "japaneseText":"タッチしてはじめる",
+ "englishUsText":"Touch to begin!",
+ "englishUsFontType":3,
+ "frenchText":"Touche pour commencer",
+ "frenchFontType":3,
+ "italianText":"Tocca per iniziare",
+ "italianFontType":3,
+ "germanText":"Antippen und beginnen",
+ "germanFontType":3,
+ "spanishText":"Toca para empezar",
+ "spanishFontType":3,
+ "chineseTText":"觸碰後開始遊玩",
+ "chineseTFontType":1,
+ "koreanText":"터치해서 시작",
+ "koreanFontType":2,
+ "portugueseText":"Toque para começar!",
+ "portugueseFontType":2,
+ "russianText":"Коснись, чтобы начать!",
+ "russianFontType":2,
+ "turkishText":"Başlamak için tıkla!",
+ "turkishFontType":2,
+ "arabicText":"المس للبدء!",
+ "arabicFontType":2,
+ "dutchText":"Druk om te beginnen!",
+ "dutchFontType":2,
+ "chineseSText":"触碰后开始游玩",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_process_3",
+ "japaneseText":"つながってるよ!やめるときは「ぬける」ボタン",
+ "englishUsText":"You're connected! To quit, tap \"Leave\"",
+ "englishUsFontType":3,
+ "frenchText":"Tu es connecté ! Appuie sur « Sortir » pour abandonner",
+ "frenchFontType":3,
+ "italianText":"Siete collegati! Per abbandonare, tocca Esci.",
+ "italianFontType":3,
+ "germanText":"Du bist verbunden! Zum Beenden drücke auf TRENNEN.",
+ "germanFontType":3,
+ "spanishText":"¡Conexión activa! Toca salir cuando quieras dejar de jugar.",
+ "spanishFontType":3,
+ "chineseTText":"已經連線了喔!要斷線時就按「離開」按鈕",
+ "chineseTFontType":1,
+ "koreanText":"연결되어 있어! 그만둘 때는 '종료' 버튼",
+ "koreanFontType":2,
+ "portugueseText":"Conectado! Clique em \"Desconectar\" para sair",
+ "portugueseFontType":2,
+ "russianText":"Соединение установлено! Чтобы отключиться, жми «Выйти»!",
+ "russianFontType":2,
+ "turkishText":"Bağlandın! Çıkmak için \"Ayrıl\"a dokun",
+ "turkishFontType":2,
+ "arabicText":"أنت متصل! للخروج انقر على \"مغادرة\"",
+ "arabicFontType":2,
+ "dutchText":"Je bent verbonden! Tik op “Verlaten\" om te stoppen",
+ "dutchFontType":2,
+ "chineseSText":"已经连线了哦!要断线时就按“离开”按钮",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_button_2",
+ "japaneseText":"はじめる",
+ "englishUsText":"Begin",
+ "englishUsFontType":3,
+ "frenchText":"Commencer",
+ "frenchFontType":3,
+ "italianText":"Inizia",
+ "italianFontType":3,
+ "germanText":"Beginnen",
+ "germanFontType":3,
+ "spanishText":"Empezar",
+ "spanishFontType":3,
+ "chineseTText":"開始遊玩",
+ "chineseTFontType":1,
+ "koreanText":"시작",
+ "koreanFontType":2,
+ "portugueseText":"Começar",
+ "portugueseFontType":2,
+ "russianText":"Начать",
+ "russianFontType":2,
+ "turkishText":"Başla",
+ "turkishFontType":2,
+ "arabicText":"ابدأ",
+ "arabicFontType":2,
+ "dutchText":"Begin",
+ "dutchFontType":2,
+ "chineseSText":"开始游玩",
+ "chineseSFontType":4
+ },
+ {
+ "key":"achivement_tutorial_title",
+ "japaneseText":"チュートリアルをクリア!",
+ "englishUsText":"You've cleared the tutorial!",
+ "englishUsFontType":3,
+ "frenchText":"Didacticiel terminé !",
+ "frenchFontType":3,
+ "italianText":"Tutorial completato!",
+ "italianFontType":3,
+ "germanText":"Tutorial abgeschlossen!",
+ "germanFontType":3,
+ "spanishText":"¡Tutorial finiquitado!",
+ "spanishFontType":3,
+ "chineseTText":"通關新手教學!",
+ "chineseTFontType":1,
+ "koreanText":"튜토리얼 클리어!",
+ "koreanFontType":2,
+ "portugueseText":"Tutorial concluído!",
+ "portugueseFontType":2,
+ "russianText":"Обучение пройдено!",
+ "russianFontType":2,
+ "turkishText":"Öğretici bitirildi!",
+ "turkishFontType":2,
+ "arabicText":"تم استكمال البرنامج التعليمي!",
+ "arabicFontType":2,
+ "dutchText":"Je hebt de tutorial gehaald!",
+ "dutchFontType":2,
+ "chineseSText":"通关新手教学!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"achivement_tutorial_desc",
+ "japaneseText":"演奏ゲームの基本はばっちり",
+ "englishUsText":"You've nailed the basics!",
+ "englishUsFontType":3,
+ "frenchText":"Tu maîtrises les bases",
+ "frenchFontType":3,
+ "italianText":"Hai imparato le basi!",
+ "italianFontType":3,
+ "germanText":"Du hast die Spiel-Grundlagen drauf.",
+ "germanFontType":3,
+ "spanishText":"¡Ya te defiendes con lo básico!",
+ "spanishFontType":3,
+ "chineseTText":"學好演奏遊戲的基礎了",
+ "chineseTFontType":1,
+ "koreanText":"연주 모드의 기본은 완벽해!",
+ "koreanFontType":2,
+ "portugueseText":"Você arrebentou no modo básico!",
+ "portugueseFontType":2,
+ "russianText":"Азы усвоены!",
+ "russianFontType":2,
+ "turkishText":"Temel hareketleri hallettin!",
+ "turkishFontType":2,
+ "arabicText":"لقد أتقنت الأساسيات الآن!",
+ "arabicFontType":2,
+ "dutchText":"Je kent de basisvaardigheden!",
+ "dutchFontType":2,
+ "chineseSText":"学好演奏游戏的基础了",
+ "chineseSFontType":4
+ },
+ {
+ "key":"achivement_tutorial_before",
+ "japaneseText":"チュートリアルをクリアしよう",
+ "englishUsText":"Let's clear the tutorial!",
+ "englishUsFontType":3,
+ "frenchText":"Termine le didacticiel",
+ "frenchFontType":3,
+ "italianText":"Completa il tutorial",
+ "italianFontType":3,
+ "germanText":"Gehen wir das Tutorial durch.",
+ "germanFontType":3,
+ "spanishText":"¡Venga! ¡Completa el tutorial!",
+ "spanishFontType":3,
+ "chineseTText":"通關新手教學吧",
+ "chineseTFontType":1,
+ "koreanText":"튜토리얼을 클리어하자",
+ "koreanFontType":2,
+ "portugueseText":"Vamos concluir o tutorial!",
+ "portugueseFontType":2,
+ "russianText":"Давай пройдем обучение!",
+ "russianFontType":2,
+ "turkishText":"Hadi öğreticiyi bitirelim!",
+ "turkishFontType":2,
+ "arabicText":"دعنا نستكمل البرنامج التعليمي!",
+ "arabicFontType":2,
+ "dutchText":"Probeer de tutorial te halen!",
+ "dutchFontType":2,
+ "chineseSText":"通关新手教学吧",
+ "chineseSFontType":4
+ },
+ {
+ "key":"quickvs_panel_title",
+ "japaneseText":"クイック通信対戦",
+ "englishUsText":"Quick Match-up",
+ "englishUsFontType":3,
+ "frenchText":"Défi rapide en ligne",
+ "frenchFontType":3,
+ "italianText":"Sfida online veloce",
+ "italianFontType":3,
+ "germanText":"Quick-Online-Duell",
+ "germanFontType":3,
+ "spanishText":"Juego rápido en línea",
+ "spanishFontType":3,
+ "chineseTText":"迅速通訊對戰",
+ "chineseTFontType":1,
+ "koreanText":"빠른 통신 대전",
+ "koreanFontType":2,
+ "portugueseText":"Batalha Online Rápida",
+ "portugueseFontType":2,
+ "russianText":"Быстрая дуэль",
+ "russianFontType":2,
+ "turkishText":"Hızlı Eşleşme",
+ "turkishFontType":2,
+ "arabicText":"تطابق لاعبين سريع",
+ "arabicFontType":2,
+ "dutchText":"Snelle afstemming",
+ "dutchFontType":2,
+ "chineseSText":"迅速通信对战",
+ "chineseSFontType":4
+ },
+ {
+ "key":"quickvs_panel_desc",
+ "japaneseText":"世界中のみんなと対戦しよう!曲はランダムだドン!",
+ "englishUsText":"Battle players worldwide! Random song DON!",
+ "englishUsFontType":3,
+ "frenchText":"Affronte le monde entier ! Musique aléatoire, DON !",
+ "frenchFontType":3,
+ "italianText":"Affronta giocatori di tutto il mondo con canzoni casuali!",
+ "italianFontType":3,
+ "germanText":"Miss dich mit Spielern weltweit! Zufallssong, DON!",
+ "germanFontType":3,
+ "spanishText":"¡Compite contra el mundo! ¡Canción al azar!",
+ "spanishFontType":3,
+ "chineseTText":"和世界各地的人進行對戰吧!樂曲是隨機的咚!",
+ "chineseTFontType":1,
+ "koreanText":"전 세계의 플레이어와 대전하자! 곡은 랜덤이다쿵!",
+ "koreanFontType":2,
+ "portugueseText":"Batalhe com o mundo todo! As músicas são aleatórias DON!",
+ "portugueseFontType":2,
+ "russianText":"Играй онлайн со всем миром! Случайная песня!",
+ "russianFontType":2,
+ "turkishText":"Tüm dünyadan oyuncularla savaş! Rastgele şarkı DON!",
+ "turkishFontType":2,
+ "arabicText":"نافس لاعبين من حول العالم! أغنية عشوائية دون!",
+ "arabicFontType":2,
+ "dutchText":"Speel tegen anderen! Liedje DON!",
+ "dutchFontType":2,
+ "chineseSText":"和世界各地的人进行对战吧!乐曲是随机的咚!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"quickvs_search_cancel",
+ "japaneseText":"サーチをやめる",
+ "englishUsText":"Stop Searching",
+ "englishUsFontType":3,
+ "frenchText":"Arrêter la recherche",
+ "frenchFontType":3,
+ "italianText":"Interrompi la ricerca",
+ "italianFontType":3,
+ "germanText":"Suche beenden",
+ "germanFontType":3,
+ "spanishText":"Abandonar búsqueda",
+ "spanishFontType":3,
+ "chineseTText":"停止搜尋",
+ "chineseTFontType":1,
+ "koreanText":"친구 찾기 그만두기",
+ "koreanFontType":2,
+ "portugueseText":"Parar a busca",
+ "portugueseFontType":2,
+ "russianText":"Прекратить",
+ "russianFontType":2,
+ "turkishText":"Aramayı durdur",
+ "turkishFontType":2,
+ "arabicText":"إيقاف البحث",
+ "arabicFontType":2,
+ "dutchText":"Stop met zoeken",
+ "dutchFontType":2,
+ "chineseSText":"停止搜寻",
+ "chineseSFontType":4
+ },
+ {
+ "key":"quickvs_search_forcestart",
+ "japaneseText":"この人数ではじめる",
+ "englishUsText":"Begin!",
+ "englishUsFontType":3,
+ "frenchText":"Commencer maintenant",
+ "frenchFontType":3,
+ "italianText":"Inizia con questi giocatori",
+ "italianFontType":3,
+ "germanText":"Mit dieser Spielerzahl beginnen.",
+ "germanFontType":3,
+ "spanishText":"Jugar con estos jugadores",
+ "spanishFontType":3,
+ "chineseTText":"以目前人數開始遊玩",
+ "chineseTFontType":1,
+ "koreanText":"현재 인원으로 시작",
+ "koreanFontType":2,
+ "portugueseText":"Começar!",
+ "portugueseFontType":2,
+ "russianText":"Начать!",
+ "russianFontType":2,
+ "turkishText":"Başla!",
+ "turkishFontType":2,
+ "arabicText":"ابدأ!",
+ "arabicFontType":2,
+ "dutchText":"Start!",
+ "dutchFontType":2,
+ "chineseSText":"以目前人数开始游玩",
+ "chineseSFontType":4
+ },
+ {
+ "key":"quickvs_search_search",
+ "japaneseText":"対戦相手を探しちゅう",
+ "englishUsText":"Searching for challengers",
+ "englishUsFontType":3,
+ "frenchText":"Recherche d'adversaire en cours",
+ "frenchFontType":3,
+ "italianText":"Ricerca avversari...",
+ "italianFontType":3,
+ "germanText":"Suche nach Gegner",
+ "germanFontType":3,
+ "spanishText":"Buscando jugadores",
+ "spanishFontType":3,
+ "chineseTText":"正在尋找對戰對手",
+ "chineseTFontType":1,
+ "koreanText":"대전 상대를 찾는 중",
+ "koreanFontType":2,
+ "portugueseText":"Procurando oponentes",
+ "portugueseFontType":2,
+ "russianText":"Поиск соперника",
+ "russianFontType":2,
+ "turkishText":"Rakipler aranıyor",
+ "turkishFontType":2,
+ "arabicText":"جار البحث عن منافسين",
+ "arabicFontType":2,
+ "dutchText":"Uitdagers zoeken",
+ "dutchFontType":2,
+ "chineseSText":"正在寻找对战对手",
+ "chineseSFontType":4
+ },
+ {
+ "key":"quickvs_score_win",
+ "japaneseText":"%1 かち",
+ "englishUsText":"%1 Win(s)",
+ "englishUsFontType":3,
+ "frenchText":"%1 victoire(s)",
+ "frenchFontType":3,
+ "italianText":"Vittorie: %1",
+ "italianFontType":3,
+ "germanText":"%1 Sieg(e)",
+ "germanFontType":3,
+ "spanishText":"Victorias: %1",
+ "spanishFontType":3,
+ "chineseTText":"%1 勝",
+ "chineseTFontType":1,
+ "koreanText":"%1승",
+ "koreanFontType":2,
+ "portugueseText":"%1 vitória(s)",
+ "portugueseFontType":2,
+ "russianText":"Победы: %1",
+ "russianFontType":2,
+ "turkishText":"%1 Galibiyet(ler)",
+ "turkishFontType":2,
+ "arabicText":"%1 فوز",
+ "arabicFontType":2,
+ "dutchText":"%1 gewonnen",
+ "dutchFontType":2,
+ "chineseSText":"%1 胜",
+ "chineseSFontType":4
+ },
+ {
+ "key":"quickvs_score_match",
+ "japaneseText":"%1 かい",
+ "englishUsText":"%1 Match-up(s)",
+ "englishUsFontType":3,
+ "frenchText":"%1 fois",
+ "frenchFontType":3,
+ "italianText":"Sfide: %1",
+ "italianFontType":3,
+ "germanText":"%1-mal",
+ "germanFontType":3,
+ "spanishText":"Partidas: %1",
+ "spanishFontType":3,
+ "chineseTText":"%1 次",
+ "chineseTFontType":1,
+ "koreanText":"%1회",
+ "koreanFontType":2,
+ "portugueseText":"%1 batalha(s)",
+ "portugueseFontType":2,
+ "russianText":"Дуэли: %1",
+ "russianFontType":2,
+ "turkishText":"%1 Eşleşme(ler)",
+ "turkishFontType":2,
+ "arabicText":"%1 تطابق لاعبين",
+ "arabicFontType":2,
+ "dutchText":"%1 overeenkomst(en)",
+ "dutchFontType":2,
+ "chineseSText":"%1 次",
+ "chineseSFontType":4
+ },
+ {
+ "key":"netplay_error_noclient",
+ "japaneseText":"ともだちとの通信がきれました…",
+ "englishUsText":"You've been disconnected...",
+ "englishUsFontType":3,
+ "frenchText":"Connexion avec votre ami perdue...",
+ "frenchFontType":3,
+ "italianText":"La connessione si è interrotta...",
+ "italianFontType":3,
+ "germanText":"Verbindung wurde getrennt ...",
+ "germanFontType":3,
+ "spanishText":"Vaya, se ha cortado la conexión...",
+ "spanishFontType":3,
+ "chineseTText":"和朋友的通訊中斷了……",
+ "chineseTFontType":1,
+ "koreanText":"친구와 통신이 끊겼습니다…",
+ "koreanFontType":2,
+ "portugueseText":"A conexão caiu...",
+ "portugueseFontType":2,
+ "russianText":"Соединение потеряно...",
+ "russianFontType":2,
+ "turkishText":"Bağlantı koptu…",
+ "turkishFontType":2,
+ "arabicText":"لقد انقطع اتصالك بالإنترنت...",
+ "arabicFontType":2,
+ "dutchText":"De verbinding is verbroken...",
+ "dutchFontType":2,
+ "chineseSText":"和朋友的通信中断了……",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_ready",
+ "japaneseText":"準備おっけー",
+ "englishUsText":"Ready",
+ "englishUsFontType":3,
+ "frenchText":"Prêt !",
+ "frenchFontType":3,
+ "italianText":"Tutto pronto!",
+ "italianFontType":3,
+ "germanText":"Bereit!",
+ "germanFontType":3,
+ "spanishText":"¡Todo listo!",
+ "spanishFontType":3,
+ "chineseTText":"準備完成",
+ "chineseTFontType":1,
+ "koreanText":"준비 완료",
+ "koreanFontType":2,
+ "portugueseText":"Preparado",
+ "portugueseFontType":2,
+ "russianText":"Все готово",
+ "russianFontType":2,
+ "turkishText":"Hazır ol",
+ "turkishFontType":2,
+ "arabicText":"مستعد",
+ "arabicFontType":2,
+ "dutchText":"Gereed",
+ "dutchFontType":2,
+ "chineseSText":"准备完成",
+ "chineseSFontType":4
+ },
+ {
+ "key":"netplay_error_gamecenter",
+ "japaneseText":"通信プレイであそぶには、Game Centerへのサインインが必要です。\n本体の設定を見直していただき、あらためてお試しください。",
+ "englishUsText":"You need to be signed in to Game Center in order to play online.\nCheck your settings and try again.",
+ "englishUsFontType":3,
+ "frenchText":"Vous devez être connecté à Game Center pour jouer en ligne.\nVeuillez vérifier les réglages de l'appareil puis essayez à nouveau.",
+ "frenchFontType":3,
+ "italianText":"Per giocare online è necessario effettuare l'accesso al Game Center.\nControlla le impostazioni del dispositivo e riprova.",
+ "italianFontType":3,
+ "germanText":"Melden Sie sich im Game Center an, um online zu spielen. \nÜberprüfen Sie die Geräte-Einstellungen und versuche es erneut.",
+ "germanFontType":3,
+ "spanishText":"Para jugar en línea necesitas iniciar sesión con una cuenta de Game Center.\nRevisa la configuración de tu dispositivo y vuelve a intentarlo.",
+ "spanishFontType":3,
+ "chineseTText":"需登入Game Center才能進行通訊遊玩。\n請檢查裝置設定後再次嘗試。",
+ "chineseTFontType":1,
+ "koreanText":"통신 플레이를 시작하려면 Game Center에 Sign In해야 합니다.\n본체의 설정을 확인 후 다시 한번 시도하시기 바랍니다.",
+ "koreanFontType":2,
+ "portugueseText":"É necessário acessar o Game Center para jogar online.\nVerifique as configurações e tente novamente.",
+ "portugueseFontType":2,
+ "russianText":"Войдите в Game Center, чтобы играть онлайн.\nПроверьте настройки и повторите попытку.",
+ "russianFontType":2,
+ "turkishText":"Oyunu online oynayabilmek için Game Center'e kaydolmalısın.\nAyarlarını kontrol et ve yeniden dene.",
+ "turkishFontType":2,
+ "arabicText":"تحتاج لتسجيل الدخول إلى Game Center لتتمكن من اللعب عبر الإنترنت.\nتحقق من إعداداتك، ثم حاول مرة أخرى.",
+ "arabicFontType":2,
+ "dutchText":"Je moet op Game Center zijn aangemeld om online te spelen.\nControleer je instellingen en probeer het opnieuw.",
+ "dutchFontType":2,
+ "chineseSText":"需登入Game Center才能进行通信游玩。\n请检查装置设定后再次尝试。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_1",
+ "japaneseText":"バンダイナムコエンターテインメント\n利用規約",
+ "englishUsText":"BANDAI NAMCO ENTERTAINMENT\nTERMS OF SERVICE\n",
+ "englishUsFontType":3,
+ "frenchText":"BANDAI NAMCO ENTERTAINMENT\nCONDITIONS DE SERVICE",
+ "frenchFontType":3,
+ "italianText":"BANDAI NAMCO ENTERTAINMENT\nCONDIZIONI PER L'UTILIZZO DEL SERVIZIO",
+ "italianFontType":3,
+ "germanText":"BANDAI NAMCO ENTERTAINMENT\nSERVICEBEDINGUNGEN",
+ "germanFontType":3,
+ "spanishText":"BANDAI NAMCO ENTERTAINMENT\nCONDICIONES DE SERVICIO",
+ "spanishFontType":3,
+ "chineseTText":"BANDAI NAMCO ENTERTAINMENT\n服務條款",
+ "chineseTFontType":1,
+ "koreanText":"BANDAI NAMCO ENTERTAINMENT\n서비스 이용약관",
+ "koreanFontType":2,
+ "portugueseText":"BANDAI NAMCO ENTERTAINMENT\nTERMOS DE SERVIÇO",
+ "portugueseFontType":2,
+ "russianText":"BANDAI NAMCO ENTERTAINMENT\nУСЛОВИЯ ОБСЛУЖИВАНИЯ",
+ "russianFontType":2,
+ "turkishText":"BANDAI NAMCO ENTERTAINMENT\nHİZMET ŞARTLARI",
+ "turkishFontType":2,
+ "arabicText":"BANDAI NAMCO ENTERTAINMENT\nشروط الخدمة",
+ "arabicFontType":2,
+ "dutchText":"BANDAI NAMCO ENTERTAINMENT\nDIENSTVOORWAARDEN",
+ "dutchFontType":2,
+ "chineseSText":"BANDAI NAMCO ENTERTAINMENT\n服务条款",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_2",
+ "japaneseText":"最終更新日:2019年8月1日",
+ "englishUsText":"Last Updated: August 1, 2019",
+ "englishUsFontType":3,
+ "frenchText":"Dernière mise à jour : 1 août 2019",
+ "frenchFontType":3,
+ "italianText":"Ultimo aggiornamento: 1 agosto 2019",
+ "italianFontType":3,
+ "germanText":"Letzte Aktualisierung: 1. August 2019",
+ "germanFontType":3,
+ "spanishText":"Fecha de última actualización: 1 de agosto de 2019",
+ "spanishFontType":3,
+ "chineseTText":"最新更新:2019年8月1日",
+ "chineseTFontType":1,
+ "koreanText":"최종 업데이트: 2019년 8월 1일",
+ "koreanFontType":2,
+ "portugueseText":"Última atualização: 1 de agosto de 2019.",
+ "portugueseFontType":2,
+ "russianText":"Последнее обновление: 1 августа 2019 года.",
+ "russianFontType":2,
+ "turkishText":"Son Güncelleme: 1 Ağustos 2019",
+ "turkishFontType":2,
+ "arabicText":"تاريخ آخر تحديث: 1 من أغسطس 2019",
+ "arabicFontType":2,
+ "dutchText":"Laatst bijgewerkt: 1 augustus 2019",
+ "dutchFontType":2,
+ "chineseSText":"最新更新:2019年8月1日",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_3",
+ "japaneseText":"本規約をよくお読みください。弊社のゲームまたはサービスのご利用にあたっては、本規約記載の一切の条件および本規約に組み込まれる追加条件が適用されます。かかる条件のうち一部でも同意できないものがある場合には、弊社のゲームまたはサービスの利用はできません。",
+ "englishUsText":"PLEASE READ THIS AGREEMENT CAREFULLY. BY ACCESSING OR USING OUR GAMES OR SERVICES, YOU AGREE TO BE BOUND BY ALL TERMS DESCRIBED HEREIN AND ALL TERMS INCORPORATED BY REFERENCE. IF YOU DO NOT AGREE TO ALL OF THESE TERMS, DO NOT ACCESS OR USE OUR GAMES OR SERVICES.",
+ "englishUsFontType":3,
+ "frenchText":"VEUILLEZ LIRE CE CONTRAT ATTENTIVEMENT. LORSQUE VOUS ACCÉDEZ À NOS JEUX OU SERVICES ET QUE VOUS LES UTILISEZ, VOUS ACCEPTEZ D’ÊTRE LÉGALEMENT LIÉ PAR TOUTES LES DISPOSITIONS DU PRÉSENT CONTRAT, AINSI QUE PAR TOUTES LES CLAUSES INTÉGRÉES PAR RENVOI. SI VOUS N’ACCEPTEZ PAS L’INTÉGRALITÉ DE CES DISPOSITIONS, VOUS NE DEVEZ NI ACCÉDER À NOS JEUX ET SERVICES, NI LES UTILISER.",
+ "frenchFontType":3,
+ "italianText":"LEGGERE ATTENTAMENTE IL PRESENTE ACCORDO. ACCEDENDO AI NOSTRI GIOCHI O SERVIZI O UTILIZZANDOLI, L'UTENTE ACCETTA DI ESSERE VINCOLATO DA TUTTI I TERMINI IVI DESCRITTI, COME PURE DA TUTTI I TERMINI INTEGRATI A TITOLO DI RIFERIMENTO. SE L'UTENTE NON ACCETTA TUTTI QUESTI TERMINI, È PREGATO DI NON ACCEDERE AI NOSTRI GIOCHI O SERVIZI NÉ DI UTILIZZARLI.",
+ "italianFontType":3,
+ "germanText":"BITTE LESEN SIE DIESE VEREINBARUNG SORGFÄLTIG DURCH. INDEM SIE UNSERE SPIELE ODER DIENSTE NUTZEN ODER DARAUF ZUGREIFEN, ERKENNEN SIE ALLE IN DIESER VEREINBARUNG BESCHRIEBENEN SOWIE DURCH BEZUGNAHME ENTHALTENEN BESTIMMUNGEN ALS VERBINDLICH AN. FALLS SIE NICHT ALL DIESEN BESTIMMUNGEN ZUSTIMMEN, NUTZEN SIE UNSERE SPIELE ODER DIENSTE NICHT UND GREIFEN SIE NICHT DARAUF ZU.",
+ "germanFontType":3,
+ "spanishText":"LEA CON ATENCIÓN EL CONTENIDO DE ESTA SECCIÓN. AL UTILIZAR NUESTROS JUEGOS O SERVICIOS O ACCEDER A ELLOS, USTED ACEPTA SOMETERSE A TODAS LAS CONDICIONES QUE SE DESCRIBEN AQUÍ, ASÍ COMO A TODAS AQUELLAS QUE SE INCORPOREN POR REFERENCIA. SI NO ESTÁ CONFORME CON EL CONJUNTO DE ESTAS CONDICIONES, NO DEBERÁ UTILIZAR NUESTROS JUEGOS O SERVICIOS NI ACCEDER A ELLOS.",
+ "spanishFontType":3,
+ "chineseTText":"請仔細閱讀本使用者授權合約。只要存取或使用我們的遊戲或服務,即表示您同意受此處所述之所有條款及所有相關條款的約束。如果您不同意以下條款,請勿存取或使用我們的遊戲或服務。",
+ "chineseTFontType":1,
+ "koreanText":"본 계약을 신중하게 읽으십시오. 귀하가 당사의 게임 또는 서비스에 접근하거나 이를 이용하는 것은, 귀하가 본 계약에 기술된 모든 조건 그리고 참조나 언급을 통해 본 계약의 일부를 이루는 모든 조건에 구속되기로 동의함을 의미합니다. 귀하가 이러한 조건 모두에 동의하지 않는 경우, 당사의 게임 또는 서비스에 접근하거나 이를 이용하지 마십시오.",
+ "koreanFontType":2,
+ "portugueseText":"LEIA ESTE CONTRATO COM ATENÇÃO. AO ACESSAR OU USAR NOSSOS JOGOS OU SERVIÇOS, VOCÊ CONCORDA EM OBEDECER A TODOS OS TERMOS AQUI DESCRITOS E A TODOS OS TERMOS QUE AQUI SÃO INCORPORADOS POR REFERÊNCIA. CASO NÃO CONCORDE COM TODOS ESSES TERMOS, NÃO ACESSE NEM USE NOSSOS JOGOS OU SERVIÇOS.",
+ "portugueseFontType":2,
+ "russianText":"ВНИМАТЕЛЬНО ПРОЧИТАЙТЕ ЭТО СОГЛАШЕНИЕ. ПОЛУЧАЯ ДОСТУП К НАШИМ ИГРАМ ИЛИ СЕРВИСАМ, А ТАКЖЕ ИГРАЯ В НАШИ ИГРЫ ИЛИ ИСПОЛЬЗУЯ СЕРВИСЫ, ВЫ СОГЛАШАЕТЕСЬ ВЗЯТЬ НА СЕБЯ ЮРИДИЧЕСКИЕ ОБЯЗАТЕЛЬСТВА И СОБЛЮДАТЬ УСЛОВИЯ НАСТОЯЩЕГО СОГЛАШЕНИЯ, А ТАКЖЕ ВСЕ УСЛОВИЯ, ВКЛЮЧЕННЫЕ В НЕГО ПОСРЕДСТВОМ ОТСЫЛКИ. ЕСЛИ ВЫ НЕ СОГЛАСНЫ СО ВСЕМИ УКАЗАННЫМИ УСЛОВИЯМИ, ТО ВАМ СЛЕДУЕТ ПРЕКРАТИТЬ ПОЛУЧЕНИЕ ДОСТУПА К НАШИМ ИГРАМ ИЛИ СЕРВИСАМ И ИХ ИСПОЛЬЗОВАНИЕ.",
+ "russianFontType":2,
+ "turkishText":"LÜTFEN BU SÖZLEŞMEYİ DİKKATLE OKUYUN. OYUNLARIMIZA VEYA HİZMETLERİMİZE ERİŞEREK YA DA BUNLARI KULLANARAK BURADA AÇIKLANAN VE REFERANS OLARAK DAHİL EDİLEN TÜM ŞARTLARA BAĞLI KALMAYI KABUL ETMEKTESİNİZ. BU ŞARTLARIN HEPSİNİ KABUL ETMİYORSANIZ OYUNLARIMIZA VEYA HİZMETLERİMİZE ERİŞİMİNİZİ YA DA KULLANIMINIZI SONLANDIRIN.",
+ "turkishFontType":2,
+ "arabicText":"يُرجى قراءة هذه الاتفاقية بعناية. حال الوصول إلى الألعاب والخدمات المُقدَّمة واستخدامها، فإنك توافق على الالتزام بجميع البنود المبينة في هذه الوثيقة وجميع البنود المدرجة بالإحالة. إذا كنت لا توافق على تلك البنود جميعًا، فلا يُسمح لك بالوصول إلى الألعاب أو الخدمات المُتوفِّرة أو استخدامها.",
+ "arabicFontType":2,
+ "dutchText":"LEES DEZE OVEREENKOMST ZORGVULDIG DOOR. DOOR TOEGANG TE VERKRIJGEN TOT OF GEBRUIK TE MAKEN VAN ONZE GAMES OF DIENSTEN, STEMT U ERMEE IN GEBONDEN TE ZIJN DOOR ALLE HIERIN BESCHREVEN VOORWAARDEN EN ALLE VOORWAARDEN WAARNAAR HIERIN VERWEZEN WORDT. INDIEN U NIET AKKOORD GAAT MET DEZE VOORWAARDEN, DIENT U GEEN TOEGANG PROBEREN TE VERKRIJGEN TOT ONZE GAMES EN DIENSTEN EN DIENT U DEZE NIET TE GEBRUIKEN.",
+ "dutchFontType":2,
+ "chineseSText":"请仔细阅读本协议。只要访问或使用我们的游戏或服务,即表示您同意受此处所述的所有条款和所有条款的约束。如果您不同意这些条款,请勿访问或s使用我们的游戏或服务。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_4",
+ "japaneseText":"本規約には、クラスアクションの放棄を含む仲裁条項などが定められています。お客様が米国以外の居住者である場合には、仲裁条項の一部または全部がお客様に適用されないことがあります。",
+ "englishUsText":"THESE TERMS OF SERVICE CONTAIN, AMONG OTHER THINGS, AN ARBITRATION PROVISION CONTAINING A CLASS ACTION WAIVER. IF YOU LIVE OUTSIDE THE UNITED STATES, SOME OR ALL OF THE ARBITRATION PROVISION MAY NOT APPLY TO YOU.",
+ "englishUsFontType":3,
+ "frenchText":"LES PRÉSENTES CONDITIONS DE SERVICE CONTIENNENT, ENTRE AUTRES, UNE DISPOSITION D'ARBITRAGE CONTENANT UNE RENONCIATION À UNE ACTION EN JUSTICE COLLECTIVE. SI VOUS RÉSIDEZ EN DEHORS DES ÉTATS-UNIS, UNE PARTIE OU LA TOTALITÉ DE LA DISPOSITION D'ARBITRAGE PEUT NE PAS S'APPLIQUER À VOTRE PERSONNE.",
+ "frenchFontType":3,
+ "italianText":"LE PRESENTI CONDIZIONI PER L'UTILIZZO DEL SERVIZIO CONTENGONO, TRA L'ALTRO, UNA DISPOSIZIONE DI ARBITRATO CONTENENTE UNA RINUNCIA ALL'AZIONE LEGALE COLLETTIVA. QUALORA RISIEDA AL DI FUORI DEGLI STATI UNITI, ALCUNE O TUTTE LE DISPOSIZIONI DI ARBITRATO POTREBBERO NON ESSERE APPLICABILI ALL'UTENTE.",
+ "italianFontType":3,
+ "germanText":"DIESE SERVICEBEDINGUNGEN ENTHALTEN U.A. EINE SCHIEDSKLAUSEL MIT VERZICHT AUF EINE GEMEINSCHAFTSKLAGE. FALLS SIE AUSSERHALB DER VEREINIGTEN STAATEN VON AMERIKA LEBEN, IST DIESE SCHIEDSKLAUSEL GGFS. NICHT ODER NUR TEILWEISE AUF SIE ANWENDBAR.",
+ "germanFontType":3,
+ "spanishText":"ESTAS CONDICIONES DE SERVICIO INCLUYEN, ENTRE OTRAS COSAS, UNA DISPOSICIÓN DE ARBITRAJE QUE CONTIENE UNA RENUNCIA A LAS DEMANDAS COLECTIVAS. SI VIVE FUERA DE LOS ESTADOS UNIDOS, ALGUNAS O TODAS LAS DISPOSICIONES EN MATERIA DE ARBITRAJE PUEDEN NO SERLE DE APLICACIÓN.",
+ "spanishFontType":3,
+ "chineseTText":"本服務條款載有(其中包括)包含放棄集體訴訟的仲裁條款。如您居於美國境外,可能有部份或全部仲裁條款對您並不適用。",
+ "chineseTFontType":1,
+ "koreanText":"본 서비스 이용약관에는 단체소송 포기와 관련한 내용을 담고 있는 중재 조항 등이 포함되어 있습니다. 귀하가 미국 이외의 지역에서 거주하고 있는 경우, 위 중재조항의 일부 또는 전부는 귀하에 대한 관계에서 적용되지 않을 수 있습니다.",
+ "koreanFontType":2,
+ "portugueseText":"ESTES TERMOS DE SERVIÇO CONTÊM, ENTRE OUTROS ITENS, UMA DISPOSIÇÃO DE ARBITRAGEM CONTENDO UMA RENÚNCIA DE AÇÃO DE CLASSE. SE VOCÊ MORA FORA DOS ESTADOS UNIDOS, PARTE OU TODA A DISPOSIÇÃO DE ARBITRAGEM PODE NÃO SE APLICAR A VOCÊ.",
+ "portugueseFontType":2,
+ "russianText":"НАСТОЯЩИЕ УСЛОВИЯ ОБСЛУЖИВАНИЯ, ПОМИМО ПРОЧЕГО, ВКЛЮЧАЮТ АРБИТРАЖНОЕ ПОЛОЖЕНИЕ, В КОТОРОМ СОДЕРЖИТСЯ ОТКАЗ ОТ ГРУППОВОГО ИСКА. НЕКОТОРЫЕ ИЛИ ВСЕ ПУНКТЫ АРБИТРАЖНОГО ПОЛОЖЕНИЯ МОГУТ НЕ ПРИМЕНЯТЬСЯ К ЛИЦАМ, ПРОЖИВАЮЩИМ ЗА ПРЕДЕЛАМИ СОЕДИНЕННЫХ ШТАТОВ.",
+ "russianFontType":2,
+ "turkishText":"BU HİZMET ŞARTLARI, DİĞERLERİNİN YANINDA, TOPLU DAVA REDDİNİ KAPSAYAN BİR TAHKİM HÜKMÜ İÇERMEKTEDİR. BİRLEŞİK DEVLETLER'İN DIŞINDA YAŞIYORSANIZ TAHKİM HÜKMÜNÜN BİR KISMI VEYA TAMAMI SİZİN İÇİN GEÇERLİ OLMAYABİLİR.",
+ "turkishFontType":2,
+ "arabicText":"تحتوي شروط الخدمة هذه، من بين جملة أمور أخرى، على شرط تحكيم يشتمل على التنازل عن الدعوى الجماعية. إذا كنت تقيم خارج الولايات المتحدة، فقد لا تسري عليك بعض الأجزاء من شرط التحكيم أو جميعها.",
+ "arabicFontType":2,
+ "dutchText":"DEZE DIENSTVOORWAARDEN BEVATTEN ONDERMEER EEN ARBITRAGEBEPALING MET EEN VERKLARING VAN AFSTAND INZAKE EEN GROEPSVORDERING. INDIEN U BUITEN DE VERENIGDE STATEN WOONT, IS MOGELIJK EEN DEEL OF HET GEHEEL VAN DE ARBITRAGEBEPALING NIET OP U VAN TOEPASSING.",
+ "dutchFontType":2,
+ "chineseSText":"本服务条款载有(其中包括)包含放弃集体诉讼的仲裁条款。如您居于美国境外,可能有部份或全部仲裁条款对您并不适用。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_5",
+ "japaneseText":"お客様がドイツの居住者である場合には、固有の規定が適用されます。詳細については、第5条および第11条をご確認ください。",
+ "englishUsText":"If you are a resident of Germany, some specific clauses apply to you. See Sections 5 and 11 for details.",
+ "englishUsFontType":3,
+ "frenchText":"Si vous résidez en Allemagne, certaines dispositions spécifiques s’appliquent. Reportez-vous aux articles 5 et 11 pour en savoir plus.",
+ "frenchFontType":3,
+ "italianText":"Se l'utente risiede in Germania, è soggetto ad alcune clausole specifiche. Per ulteriori informazioni, si consultino le sezioni 5 e 11.",
+ "italianFontType":3,
+ "germanText":"Wenn sich Ihr Wohnsitz in Deutschland befindet, gelten spezifische Klauseln für Sie. (Siehe Abschnitte 5 und 11 für Einzelheiten.)",
+ "germanFontType":3,
+ "spanishText":"Si tiene su residencia en Alemania, se le aplicarán cláusulas específicas. Consulte las cláusulas 5 y 11 para obtener más información.",
+ "spanishFontType":3,
+ "chineseTText":"如果您是德國居民,有一些具體條款適用於您。詳見第 5 條和第 11 條。",
+ "chineseTFontType":1,
+ "koreanText":"귀하가 독일에 거주하는 경우에는 귀하에게 특정 조항들이 적용됩니다. 자세한 내용은 제5절 및 제11절을 확인하십시오.",
+ "koreanFontType":2,
+ "portugueseText":"Cláusulas específicas se aplicam a residentes da Alemanha. Consulte detalhes nas Seções 5 e 11.",
+ "portugueseFontType":2,
+ "russianText":"Некоторые положения данного соглашения касаются резидентов Германии. Более подробная информация приводится в разделах 5 и 11.",
+ "russianFontType":2,
+ "turkishText":"Almanya'da yaşıyorsanız sizin için geçerli bazı özel maddeler olacaktır. Detaylar için bkz. Bölüm 5 ve 11.",
+ "turkishFontType":2,
+ "arabicText":"إذا كنت مقيمًا في ألمانيا، فستسري عليك بعض الشروط المحددة. راجع القسمين (7) و (15) لمزيد من التفاصيل.",
+ "arabicFontType":2,
+ "dutchText":"Indien u woonachtig bent in Duitsland, zijn enkele specifieke Clausules op u van toepassing. Zie Clausule 5 en 11 voor nadere informatie.",
+ "dutchFontType":2,
+ "chineseSText":"如果您是德国居民,则某些特定条款适用于您。详见第5和11节。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_6",
+ "japaneseText":"この利用規約(「本規約」)は、お客様と株式会社バンダイナムコエンターテインメント(「当社」または「弊社」)との間の契約であって、本規約が表示されるゲーム(「本件ゲーム」)の利用に適用されます。なお、本件ゲームには、ゲームのマルチプレイヤー部分、オンライン部分およびダウンロード部分、ならびに紙媒体または電子媒体の関連ドキュメントおよびコンテンツも含まれますが、これらに限定されるものではありません。本規約はライセンス契約であって、本件ゲームまたはそのコピーの知的財産権をお客様に譲渡するものではありません。お客様と当社との間に他の製品またはサービスに関する別の契約がある場合においても、かかる契約の条件が本規約によって変更されることはありません。お客様は、本規約のいかなる部分も変更、追加または削除できません。",
+ "englishUsText":"This Terms of Service (this “Agreement”) is a contract between you and BANDAI NAMCO Entertainment Inc. (“BNEI”, “us”, “we” or “our”) and applies to your access to, and use of, the game in which this Agreement appears, including, without limitation, any multi-player, online, or downloadable portions thereof and any related written or electronic documentation or content (the “Game”). The Game is licensed, and not sold, and this Agreement confers no title or ownership to the Game or any copy thereof. This Agreement does not alter in any way the terms or conditions of any other agreement you may have with BNEI for other products or services. Any changes, additions, or deletions by you are not acceptable, and are hereby expressly rejected by BNEI.",
+ "englishUsFontType":3,
+ "frenchText":"Ce Contrat de Licence Utilisateur Final (ce « Contrat ») est un accord passé entre vous et BNEI Entertainment Inc. (« BNEI », « nous » ou « notre ») et s'applique à votre accès et utilisation du jeu dans lequel ce Contrat apparaît, y compris et de manière non limitative à toute portion multijoueur, en ligne ou téléchargeable et à tout document ou contenu écrit ou numérique (le « Jeu »). Le Jeu est concédé sous licence et non vendu. Le présent Contrat ne confère aucun titre ou droit de propriété sur le Jeu ou toute copie de celui-ci. Le présent Contrat ne modifie en aucun cas les dispositions de tout autre contrat conclu avec BNEI pour d’autres produits ou services. Les modifications, ajouts ou suppressions de votre fait ne sont pas acceptables et sont par les présentes expressément rejetés par BNEI.",
+ "frenchFontType":3,
+ "italianText":"Le presenti Condizioni per l'Utilizzo del Servizio (d'ora in poi, l'\"Accordo\") è un contratto tra te e, a seconda della normativa applicabile, BANDAI NAMCO Entertainment Inc. (\"BNEI\", \"noi\" o \"nostro\", in ogni caso). Questo contratto si applica all'accesso e all'utilizzo da parte tua del gioco in cui appare il presente Accordo, ivi incluse, a mero titolo esemplificativo e senza alcuna limitazione, le componenti multigiocatore, online o scaricabili dello stesso, e i suoi contenuti e la sua documentazione in formato elettronico (d'ora in poi, il \"Gioco\"). Il Gioco viene concesso in licenza e non venduto. Il presente Accordo non conferisce dunque alcun titolo di proprietà nei confronti del Gioco o di alcuna sua copia. Il presente Accordo non altera in alcun modo i termini o le condizioni di altri accordi che l'utente abbia stipulato con BNEI relativamente ad altri prodotti o servizi. Qualunque modifica, aggiunta o cancellazione apportata dall'utente è ritenuta non valida e viene qui espressamente rifiutata da BNEI.",
+ "italianFontType":3,
+ "germanText":"Diese Servicebedingungen (diese „Vereinbarung“) ist ein Vertrag zwischen Ihnen und entweder BANDAI NAMCO Entertainment Inc. („BNEI“, „uns“, „wir“ oder „unser“) und gilt für Ihren Zugriff auf und Ihre Nutzung des Spiels, in dem diese Vereinbarung enthalten ist, einschließlich und ohne Beschränkung auf jegliche Mehrspieler-, Online- oder herunterladbaren Teile des Spiels und jegliche das Spiel betreffenden schriftlichen oder elektronischen Dokumentationen oder Inhalte (das „Spiel“). Das Spiel wird lizenziert, nicht verkauft, und diese Vereinbarung überträgt keinerlei Rechtsansprüche oder Eigentumsrechte am Spiel oder an Kopien des Spiels. Diese Vereinbarung ändert in keiner Weise die Bestimmungen oder Bedingungen anderer Vereinbarungen, die Sie möglicherweise mit BNEI für andere Produkte oder Dienste eingegangen sind. Etwaige Änderungen, Erweiterungen oder Streichungen der Vereinbarung Ihrerseits sind nicht zulässig und werden von BNEI hiermit ausdrücklich zurückgewiesen.",
+ "germanFontType":3,
+ "spanishText":"Las presentes Condiciones de servicio (este «Contrato») es un contrato entre usted y BANDAI NAMCO Entertainment Inc. («BNEI», «nos», «nosotros» o «nuestro») y se aplica a su acceso y uso del juego en que aparezca este Contrato, incluidas, de manera no exhaustiva, las partes multijugador, en línea o descargables, así como cualquier contenido o documentación escrita o electrónica (el «Juego»). El Juego no se vende, sino que se otorga bajo licencia. En virtud del presente Contrato, no se confiere titularidad o propiedad alguna sobre el Juego ni sobre ninguna copia que exista de este. El Contrato no modifica en forma alguna las condiciones de cualesquiera otros acuerdos que usted haya celebrado con BNEI en relación con otros productos o servicios. No se aceptarán cambios, adiciones o eliminaciones por su parte sobre este Contrato y BNEI las rechaza expresamente en virtud de este acto.",
+ "spanishFontType":3,
+ "chineseTText":"本服務條款(簡稱「合約」) 係您與 BANDAI NAMCO Entertainment Inc. (簡稱「BNEI」、「我們」、「我們的」等)之合約說明,適用於您存取或使用本協議所列之遊戲,包括但不僅限於任何多人遊戲、網路遊戲或追加下載內容,以及任何所屬或相關之書面或電子文件或內容 (簡稱「遊戲」)。該遊戲向您授權,但不向您出售,本合約不包含遊戲或其任何副本的所有權。本合約不會以任何方式變更與 BNEI 有關之其他產品或服務的任何其他合約的條款或條件。您的任何變更、新增或刪除不會被接受,BNEI 特此明確拒絕。",
+ "chineseTFontType":1,
+ "koreanText":"최종 사용자 라이선스 계약(통칭 \"계약\")은 귀하와 BANDAI NAMCO Entertainment Inc. (통칭 \"BNEI\", \"당사\", \"우리\", 모두 해당) 사이의 계약이며 멀티 플레이, 온라인, 서면 또는 전자 문서나 콘텐츠(통칭\"게임\")의 다운로드 가능한 일부와 그에 관련된 모든 것을 포함하며 이에 국한되지 않은 이 계약에 나오는 게임의 액세스와 사용에 적용되는 계약입니다. 본 게임은 판매되는 것이 아니라 라이선스가 부여되는 것이며, 본 계약은 본 게임이나 그 사본에 대한 명의나 소유권을 부여하지 않습니다. 본 계약은, 귀하와 BNEI 사이에 다른 제품이나 서비스를 위한 다른 계약이 존재하는 경우 해당 계약의 조건을 어떤 방식으로도 변경시키지 않습니다. 귀하에 의한 변경, 추가 혹은 삭제는 인정되지 않으며 BNEI는 이를 명시적으로 거부합니다.",
+ "koreanFontType":2,
+ "portugueseText":"Este Termos de Serviço (\"Contrato\") é um contrato entre você e a BANDAI NAMCO Entertainment Inc. (\"BNEI\", \"nós\" ou \"nosso\") e se aplica ao seu acesso e uso do jogo no qual este Contrato aparece, incluindo, mas não limitado a, qualquer seção de multijogador, online ou disponível para download e toda e qualquer documentação ou conteúdo escrito ou eletrônico (\"Jogo\"). O Jogo é licenciado e não vendido. Portanto, este Contrato não confere nenhum direito ou título de propriedade ao Jogo ou a alguma cópia dele. Este Contrato não altera de nenhuma forma os termos e as condições de algum outro contrato que você tenha com a BNEI referente a outros produtos ou serviços. Eventuais alterações, acréscimos ou remoções feitas por você são inaceitáveis, sendo ora expressamente rejeitadas pela BNEI.",
+ "portugueseFontType":2,
+ "russianText":"Настоящее Условия Обслуживания («Соглашение») является контрактом между вами и одной из следующих компаний (в зависимости от конкретного случая): BANDAI NAMCO Entertainment Inc. («BNEI», «нас», «мы», «наша» и т. д.). Оно предоставляет вам доступ к игре, в которой настоящее Соглашение появляется, и возможность пользоваться ею, включая (без ограничений) любые соответствующие многопользовательские, сетевые или загружаемые фрагменты, а также любую соответствующую документацию или контент как в письменном, так и в электронном виде («Игра»). Мы предоставляем лицензию на Игру, а не продаем ее, следовательно, настоящее Соглашение не предоставляет пользователю право собственности на Игру или любую из ее копий. Настоящее Соглашение никоим образом не влияет на условия и положения других соглашений, заключенных между вами и компанией BNEI на использование других продуктов или услуг. Любые вносимые вами изменения, дополнения или удаления являются неприемлемыми и в прямой форме отклоняются компанией BNEI.",
+ "russianFontType":2,
+ "turkishText":"Bu Hizmet Şartları (bu “Sözleşme”) siz ve BANDAI NAMCO Entertainment Inc. (“BNEI”, “bize/bizi”, “biz” veya “bizim”) arasında bir sözleşmedir ve çok oyunculu, çevrimiçi veya indirilebilir kısımlar ve ilgili yazılı veya elektronik belgeler ya da içerik dahil fakat bunlarla sınırlı olmamak üzere, oyuna (“Oyun”) erişiminiz veya kullanımınız için geçerlidir. Oyun lisanslı olup satılmamaktadır ve bu Sözleşme, Oyun veya onun herhangi bir kopyası üzerinde mülkiyet hakkı vermemektedir. Bu Sözleşme, BNEI ile diğer ürünler veya hizmetler için yaptığınız başka sözleşmelerin şartlarını veya koşullarını herhangi bir şekilde değiştirmez. Sizin yapacağınız değişiklik, ekleme veya silme işlemleri kabul edilmeyecek olup BNEI tarafından açıkça reddedilmektedir.",
+ "turkishFontType":2,
+ "arabicText":"تُعد شروط الخدمة (يُشار إليها بـ \"الاتفاقية\") عقدًا بينك وبين شركة BANDAI NAMCO Entertainment (يُشار إليها بـ\"BNEI\"أو \"نحن\") ويسري ذلك على إمكانية وصولك إلى اللعبة التي تظهر فيها هذه الاتفاقية واستخدامها (أو إذا تم نشر اللعبة المشار إليها أعلاه عبر الإنترنت)، بما في ذلك، على سبيل المثال لا الحصر، أي أجزاء منها تكون متعددة اللاعبين أو متاحة عبر الإنترنت أو قابلة للتنزيل، وأي وثائق أو محتويات مكتوبة أو إلكترونية (يُشار إليها بـ \"اللعبة\"). هذه اللعبة مرخصة وليست مُباعة، ولا تمنح هذه الاتفاقية أي حق ملكية أو ملكية للعبة أو أي نسخة منها. لا تغير هذه الاتفاقية بأي شكل من الأشكال بنود أو شروط أي اتفاقية أخرى مُبرمة مع شركة BNEI لمنتجات أو خدمات أخرى. تُعد أي تغييرات أو إضافات أو عمليات حذف تتم بواسطتك غير مقبولة، ويتم رفضها صراحة من قبل شركة BNEI.",
+ "arabicFontType":2,
+ "dutchText":"Deze Dienstvoorwaarden (deze “Overeenkomst”) is een contract tussen u en BANDAI NAMCO Entertainment Inc. (“BNEI”, “wij”, “ons” of “onze”) en is van toepassing op uw toegang tot en gebruik van de game waarin deze Overeenkomst voorkomt, met inbegrip van, zonder beperking, enigerlei multiplayer, online of downloadbare delen daarvan en enigerlei gerelateerde schriftelijke of elektronische documentatie of inhoud (de “Game”). De Game wordt in licentie gegeven en niet verkocht en deze Overeenkomst verleent geen aanspraak of eigendomsrecht op de Game of enigerlei kopie daarvan. Deze Overeenkomst wijzigt op geen enkele manier de voorwaarden of bepalingen van enige andere overeenkomst die u mogelijk met BNEI hebt voor andere producten of diensten. Enigerlei veranderingen, toevoegingen of weglatingen door u zijn niet aanvaardbaar en worden bij dezen uitdrukkelijk afgewezen door BNEI.",
+ "dutchFontType":2,
+ "chineseSText":"本服务条款(以下简称“协议”)由您与 BANDAI NAMCO Entertainment Inc.(简称“BNEI”、“我们”或“我们的”) 订立的合约,适用于您进入并使用本协议提及的游戏,包括但不限于多人游戏、线上游戏或可下载部分以及任何相关的书面或电子文件及内容(“游戏”)。该游戏向您授权,但不向您出售,本协议不包含游戏或其任何副本的所有权。本协议不会以任何方式更改与BNEI有关其他产品或服务的任何其他协议的条款或条件。您的任何更改、添加或删除不会被接受,BNEI特此明确拒绝。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_7",
+ "japaneseText":"本件ゲームの一部である特定の機能には、弊社から提示される追加条件(料金、支払方法およびプロモーションに関する規則も含まれますが、これらに限定されるものではありません)が適用されることがあります。別段の記載がない限り、当該追加条件は、参照により本規約に組み込まれたことになります。本規約と何らかの追加条件との間に矛盾が生じた場合には、当該特定の機能については、追加条件が優先するものとします。",
+ "englishUsText":"Additional terms provided by us (including, but not limited to, posted fees, billing procedures, and promotion rules) may apply to particular functionalities and features that are part of the Game. Unless otherwise indicated, any additional applicable terms are incorporated by reference into this Agreement. In the event of a conflict between this Agreement and any additional terms, the additional terms shall govern with respect to such particular functionalities and features.",
+ "englishUsFontType":3,
+ "frenchText":"Les dispositions supplémentaires introduites par BNEI (y compris, sans toutefois s’y limiter, les prix affichés, les procédures de facturation et les règles de promotion) peuvent s’appliquer à des fonctions et fonctionnalités spécifiques inhérentes au Jeu. Sauf mention contraire, les dispositions supplémentaires applicables sont intégrées par renvoi dans le présent Contrat. En cas de conflit entre le présent Contrat et toute autre disposition supplémentaire, les dispositions supplémentaires régiront ces fonctions et fonctionnalités spécifiques.",
+ "frenchFontType":3,
+ "italianText":"Alcune funzioni o funzionalità particolari facenti parte del Gioco potrebbero richiedere l'aggiunta di ulteriori termini da parte nostra (inclusi, a titolo esemplificativo e non esaustivo, tariffe pubblicate, procedure di fatturazione e regole promozionali). Se non altrimenti specificato, ogni termine aggiuntivo applicabile viene integrato nel presente Accordo a titolo di riferimento. In caso di conflitto tra il presente Accordo ed eventuali termini aggiuntivi, questi ultimi prevalgono in relazione a tali funzioni e funzionalità particolari.",
+ "italianFontType":3,
+ "germanText":"Zusätzliche von uns vorgegebene Bestimmungen (insbesondere bezüglich veröffentlichter Gebühren, Abrechnungsverfahren und Regeln von Werbeaktionen) können für besondere Funktionalitäten und Funktionen gelten, die Teil des Spiels sind. Sofern nicht anders angegeben, sind alle zusätzlich anwendbaren Bestimmungen durch Bezugnahme Bestandteil dieser Vereinbarung. Im Fall eines Konflikts zwischen dieser Vereinbarung und etwaigen zusätzlichen Bestimmungen gelten die zusätzlichen Bestimmungen für solche besonderen Funktionalitäten und Funktionen.",
+ "germanFontType":3,
+ "spanishText":"Es posible que incorporemos condiciones adicionales (por ejemplo, precios publicados, procedimientos de facturación y normas de promoción) que podrían aplicarse a funcionalidades y características concretas que formen parte del Juego. Salvo que se indique lo contrario, cualquier condición adicional que sea aplicable quedará incorporada por referencia al presente Contrato. En caso de conflicto entre las estipulaciones de este Contrato y otras condiciones adicionales, las condiciones adicionales prevalecerán con respecto a las funcionalidades y características en cuestión.",
+ "spanishFontType":3,
+ "chineseTText":"我們提供的附加條款(包括但不限於張貼費用、結算程序和促銷規則)可能適用於遊戲一部分的特定功能和特徵。除非另有說明,任何附加條款也透過引用併入本合約。如果本合約與任何附加條款之間發生衝突,則由附加條款規範此類特定功能和特徵。",
+ "chineseTFontType":1,
+ "koreanText":"당사가 제공하는 추가 조건(여기에는 게시된 요금, 청구 절차, 프로모션 규칙이 포함되며 이에 한정되지 않음)은 본 게임의 일부인 특정 기능 및 특징에 적용될 수 있습니다. 달리 명시되지 않은 한, 해당 추가 조건은 참조나 언급을 통해 본 계약의 일부를 이룹니다. 본 계약과 추가 조건이 상충하는 경우, 관련 특정 기능 및 특징에 있어서는 해당 추가 조건이 우선합니다.",
+ "koreanFontType":2,
+ "portugueseText":"Termos adicionais apresentados por nós (incluindo, sem restrição, taxas publicadas, procedimentos de cobrança e regras de promoções) poderão se aplicar a algumas funcionalidades e recursos específicos que fazem parte do Jogo. Salvo se indicado de outra forma, eventuais termos adicionais aplicáveis são incorporados a este Contrato por referência. Na hipótese de conflito entre este Contrato e eventuais termos adicionais, os termos adicionais regerão tais funcionalidades e recursos específicos.",
+ "portugueseFontType":2,
+ "russianText":"Предоставляемые нами дополнительные условия (включая, среди прочего, публикуемые платежи, порядок выставления счетов и правила рекламных кампаний) могут касаться определенных функций и элементов, являющихся компонентами Игры. Если не указано иное, все применимые дополнительные условия включаются в настоящее Соглашение посредством ссылок. В случае возникновения противоречия между настоящим Соглашением и любыми дополнительными условиями дополнительные условия имеют приоритет в отношении определенных функций и элементов.",
+ "russianFontType":2,
+ "turkishText":"Bizim sağlayacağımız ek şartlar (bunlarla sınırlı olmamak üzere gönderilmiş ücretler, faturalandırma prosedürleri ve promosyon kuralları dahil) Oyunun bir parçası olan özel işlevler ve özellikler için geçerlidir. Aksi belirtilmedikçe, geçerli ek şartlar bu Sözleşmeye referans olarak dahil edilmiştir. Bu Sözleşme ve ek şartlar arasında bir ihtilaf olması halinde, bu özel işlevler ve özelliklerle ilgili olarak ek şartlar geçerli olacaktır.",
+ "turkishFontType":2,
+ "arabicText":"تنطبق البنود الإضافية المُقدَّمة منا (بما في ذلك على سبيل المثال لا الحصر، الرسوم المعلنة وإجراءات تحرير الفواتير وقواعد الترويج) على وظائف وخصائص محدَّدة تمثل جزءً من اللعبة. ما لم يُشر إلى خلاف ذلك، تُعدُّ أي بنود إضافية سارية مدرجة بالإحالة في هذه الاتفاقية. تسري البنود الإضافية بشأن تلك الوظائف والخصائص المحدَّدة في حالة وقوع تضارب بين هذه الاتفاقية وأي بنود إضافية أخرى.",
+ "arabicFontType":2,
+ "dutchText":"Aanvullende door ons verstrekte voorwaarden (inclusief, maar niet beperkt tot, gepubliceerde vergoedingen, factureringsprocedures en actiereglementen) zijn mogelijk van toepassing op specifieke functionaliteiten en kenmerken die deel uitmaken van de Game. Tenzij anders aangegeven zijn eventuele aanvullende van toepassing zijnde voorwaarden door verwijzing opgenomen in deze Overeenkomst. In het geval van een conflict tussen deze Overeenkomst en enigerlei aanvullende voorwaarden, zullen de aanvullende voorwaarden van toepassing zijn met betrekking tot dergelijke specifieke functionaliteiten en kenmerken.",
+ "dutchFontType":2,
+ "chineseSText":"我们提供的附加条款(包括但不限于张贴费用、结算程序和促销规则)可能适用于游戏一部分的特定功能和特征。除非另有说明,任何附加适用条款也列入本协议当中。如果本协议与任何附加条款之间发生冲突,附加条款将适用于此类特定功能和特征。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_8",
+ "japaneseText":"\n1. ライセンスの前提条件\n\n本規約において許諾されるライセンスは、以下に掲げる事項が前提条件となります。\n\na) お客様がご自身の法域における成人年齢に達しているか、お客様がご自身の法域における成人年齢に達していない場合には本規約および適用される一切の追加条件が適用されることについて、お客様の法定代理人(親権者等)による同意があること。\n\nb) 本規約の一切の条件および適用される一切の追加条件について、お客様が同意しているとともにこれらを遵守していること。\n\nc) お客様による本件ゲームの利用について、一定のセキュリティ措置の適用を受けること。これには、本件ゲームのシリアルコード登録、インターネットへの継続的アクセス、および一定のセキュリティ/デジタル権管理機能への同意も含まれますが、これらに限定されるものではありません。かかるセキュリティ措置への同意または遵守がなされなかった場合には、お客様による本件ゲームの利用が部分的または完全に損なわれることがあります。\n\nd) お客様による本件ゲームの利用が、適用のある一切の現地法令、州法令、国内法令および外国法令に従ったものであること。\n\ne) お客様による本件ゲームの利用の場所が、本件ゲームの動作環境として予定され有効にライセンス認証を経たオペレーティングシステムが動作しているローカルコンピューター(「対象ハードウェア」)に限定されること。\n\nf) お客様が、対象ハードウェアに適用される条件(決済手続に関する当該プラットフォームの条件も含まれます)に同意済みであるとともにこれらを遵守していること。",
+ "englishUsText":"1. PRECONDITIONS OF THE LICENSES. The licenses granted in this Agreement are specifically conditioned upon the following and your full compliance with all other terms and conditions set forth in this Agreement:\na)You have reached the age of majority in your jurisdiction. If you are under the age of majority in your jurisdiction, your parent or legal guardian must agree to be bound by this Agreement and any applicable additional terms;\nb)You agree to and comply with all of the terms in this Agreement, and any additional terms as may be applicable to the Game;\nc)Your access and use of the Game is subject to certain security measures, including, without limitation, registering the Game with a serial code, having continuous access to the Internet, and accepting certain security/digital rights management features. Failure to accept and fully-comply with such security measures may partially or completely impair your use of the Game.\nd)Your access and use of the Game is in accordance with all applicable local, state, national, and foreign laws and regulations.\ne)You access and use the Game only on local machines, running validly licensed copies of operating systems on which the Game was designed to operate (the “Hardware”);\nf)You have accepted and are in compliance with all terms and conditions applicable to the Hardware, including any terms of such platform regarding the checkout process.",
+ "englishUsFontType":3,
+ "frenchText":"1. CONDITIONS PRÉALABLES DES LICENCES. Les licences accordées conformément au présent Contrat sont spécifiquement subordonnées à ce qui suit ainsi qu’au respect de toutes les autres conditions générales exposées dans le présent Contrat :\na)Vous avez atteint l’âge de la majorité dans votre juridiction. Si vous n’avez pas atteint l’âge de la majorité dans votre juridiction, votre parent ou tuteur légal doit accepter d’être légalement lié par le présent Contrat et par toute autre disposition supplémentaire applicable ;\nb)Vous acceptez, et vous vous conformez à, toutes les conditions du présent Contrat ainsi qu’à toute autre disposition supplémentaire pouvant s’appliquer au Jeu ;\nc)Votre accès au Jeu et son utilisation sont soumis à certaines mesures de sécurité y compris, sans toutefois s’y limiter, l’obligation d’enregistrer le Jeu avec un numéro de série, l’accès continu à Internet et l’acceptation de certaines fonctionnalités de gestion des droits en matière de sécurité ou de gestion des droits numériques. Refuser d’accepter et de vous conformer pleinement aux mesures de sécurité peut partiellement ou totalement affecter votre utilisation du Jeu ;\nd)Vous accédez au Jeu et l’utilisez conformément aux lois et règlements applicables à l’échelle locale, fédérale, nationale et internationale ;\ne)Vous accédez au Jeu et ne l’utilisez que sur des machines locales exploitant des copies de systèmes d’exploitation valablement accordées sous licence sur lequel le fonctionnement du Jeu est conçu (le « Matériel ») ;\nf)Vous avez accepté et vous conformez aux conditions générales applicables au Matériel, y compris toutes les dispositions des plateformes en question quant à la procédure de règlement.",
+ "frenchFontType":3,
+ "italianText":"1. CONDIZIONI PRELIMINARI PER LA CONCESSIONE DELLE LICENZE. Le licenze previste dal presente Accordo vengono concesse agli utenti solo se essi soddisfano le condizioni riportate di seguito, oltre a tutti gli altri termini e le altre condizioni esposti nel presente Accordo:\na)L'utente ha raggiunto la maggiore età in base alla sua giurisdizione. Se l'utente non ha raggiunto la maggiore età in base alla sua giurisdizione, un genitore o tutore legale deve accettare di essere vincolato dal presente Accordo e da ogni altro termine aggiuntivo applicabile; \nb)L'utente accetta tutti i termini del presente Accordo, inclusi eventuali termini aggiuntivi applicabili al Gioco, e si impegna a osservarli;\nc)L'accesso al Gioco e il suo utilizzo da parte dell'utente sono soggetti a determinate misure di sicurezza, incluse, a titolo esemplificativo e non esaustivo, la registrazione del Gioco con un codice seriale, la disponibilità di un accesso continuativo a Internet e l'accettazione di determinate funzioni di sicurezza o di gestione dei diritti digitali. La mancata accettazione o l'incompleta osservanza di tali misure di sicurezza può compromettere in misura parziale o totale l'utilizzo del Gioco da parte dell'utente;\nd)L'accesso al Gioco e il suo utilizzo da parte dell'utente avvengono in accordo con tutte le norme e i regolamenti applicabili a livello locale, regionale, nazionale e internazionale;\ne)L'accesso al Gioco e il suo utilizzo da parte dell'utente avvengono esclusivamente su computer locali, che operano con copie dotate di licenza valida di sistemi operativi che sono stati previsti dagli sviluppatori del Gioco (di seguito \"Hardware\");\nf)L'utente ha accettato e osserva tutti i termini e le condizioni applicabili relativi all'Hardware, inclusi i termini della piattaforma su cui effettua il pagamento.",
+ "italianFontType":3,
+ "germanText":"1. VORAUSSETZUNGEN FÜR DIE LIZENZGEWÄHRUNG: Die in dieser Vereinbarung enthaltenen Lizenzen sind ausdrücklich an nachfolgende Klauseln sowie Ihre vollständige Einhaltung aller anderen in dieser Vereinbarung festgelegten Bestimmungen und Bedingungen gebunden:\na) Sie gelten gemäß der Rechtslage an Ihrem Wohnort als volljährig. Wenn Sie gemäß der Rechtslage an Ihrem Wohnort nicht als volljährig gelten, muss ein Elternteil oder Erziehungsberechtigter diese Vereinbarung sowie alle anwendbaren zusätzlichen Bestimmungen als verbindlich anerkennen.\nb) Sie stimmen zu, alle Bestimmungen in dieser Vereinbarung sowie etwaige zusätzliche für das Spiel anwendbare Bestimmungen einzuhalten.\nc) Ihr Zugriff auf das Spiel und Ihre Nutzung des Spiels unterliegen bestimmten Sicherheitsmaßnahmen, insbesondere der Registrierung des Spiels mit einer Seriennummer, einem fortwährenden Internetzugang und der Anerkennung bestimmter Funktionen für die Sicherheit und die digitale Rechteverwaltung. Falls Sie solche Sicherheitsmaßnahmen nicht akzeptieren oder vollständig umsetzen, kann Ihre Nutzung des Spiels ganz oder teilweise beeinträchtigt werden.\nd) Ihr Zugriff auf das Spiel und Ihre Nutzung des Spiels erfolgen unter Einhaltung aller anwendbaren lokalen, bundesstaatlichen, nationalen und internationalen Gesetze und Vorschriften.\ne) Ihr Zugriff auf das Spiel und Ihre Nutzung des Spiels erfolgen nur auf lokalen Geräten, auf denen gültig lizenzierte Kopien der Betriebssysteme laufen, für die das Spiel konzipiert wurde (die „Hardware“).\nf) Sie haben alle für die Hardware anwendbaren Bestimmungen und Bedingungen akzeptiert und halten diese ein, einschließlich aller Bestimmungen solcher Plattformen in Bezug auf Bezahlvorgänge.",
+ "germanFontType":3,
+ "spanishText":"1. CONDICIONES PREVIAS DE LAS LICENCIAS. Las licencias que se conceden en virtud de este Contrato están sujetas de forma específica a las condiciones que se exponen a continuación y al cumplimiento íntegro por su parte de todas las demás estipulaciones de este Contrato:\na)Usted debe haber cumplido la mayoría de edad en su jurisdicción. Si usted aún no ha alcanzado la mayoría de edad en su jurisdicción, su progenitor o tutor legal deben dar su consentimiento para obligarse por el presente Contrato y cumplir cualquier condición adicional que sea aplicable.\nb)Usted acepta cumplir todas las condiciones de este Contrato, así como cualquier condición adicional que sea aplicable al Juego.\nc)El uso que usted haga del Juego y su acceso a él se someten a determinadas medidas de seguridad, como por ejemplo registrar el Juego con un código de serie, tener acceso permanente a Internet y aceptar determinadas características de gestión de los derechos de seguridad/digitales. Si usted no aceptara estas medidas de seguridad o no cumpliera con alguna de ellas, su uso del Juego podría verse interrumpido total o parcialmente.\nd)Su uso del Juego y el acceso a él deberán cumplir la legislación y normativa local, nacional e internacional.\ne)Usted accederá y utilizará el Juego únicamente en máquinas locales que tengan copias con licencia válida de sistemas operativos compatibles con el funcionamiento del Juego (el «Hardware»).\nf)Usted declara aceptar y estar conforme con todas las condiciones aplicables al Hardware, incluidas cualesquiera condiciones de dicha plataforma relativas al proceso de verificación.",
+ "spanishFontType":3,
+ "chineseTText":"1.授權的先決條件。只有當您完全符合本合約中規定的所有條款和條件時,本合約的授權才生效:\na) 您在所屬管轄區域已達到成年年齡。如果您在所屬管轄區域尚未成年,您的父母或法定監護人必須同意受本合約和任何適用附加條款的約束;\nb) 您同意並遵守本合約中的所有條款以及遊戲適用的任何附加條款;\nc) 您對遊戲的存取和使用受到某些安全措施的約束,包括但不限於使用序號註冊遊戲、持續連接到網際網路,並接受某些安全/數位版權管理功能。不接受和不完全遵守此類安全措施可能會部分或完全損害您對遊戲的使用;\nd) 您對遊戲的存取和使用需符合所有適用的地方、州、國家和國外法律法規;\ne) 您只能在使用有效作業系統授權副本的旨在運行該遊戲的本機電腦(「硬體」)上存取和使用遊戲;\nf) 您已經接受並會遵循所有適用於硬體的條款和條件,包括此類平台關於結帳過程的任何條款。",
+ "chineseTFontType":1,
+ "koreanText":"1. 라이선스의 전제 조건. 본 계약을 통해 부여되는 라이선스는 구체적으로 다음의 사항들, 그리고 귀하가 본 계약상의 모든 조건을 완전히 준수함을 전제 조건으로 합니다.\na) 귀하가 속한 관할권의 법상 귀하는 성년에 해당하는 연령입니다. 만약 귀하가 속한 관할권의 법상 귀하가 미성년인 경우에는, 귀하의 부모 또는 법적 후견인이 본 계약 및 모든 해당 추가 조건에 구속되기로 동의해야 합니다.\nb) 귀하는 본 계약의 모든 조건 그리고 본 게임에 적용 가능한 모든 추가 조건에 동의하고 이를 준수합니다.\nc) 귀하에 의한 본 게임 접근 및 이용에는 특정 보안 조치(여기에는 일련코드를 통한 본 게임의 등록, 지속적인 인터넷 연결 확보, 특정 보안/디지털 권한 관리 기능에 대한 동의가 포함되며 이에 한정되지 않음)가 적용됩니다. 이 같은 보안 조치에 동의하지 않거나 일부라도 준수하지 않는 경우, 귀하는 본 게임의 일부 또는 전부를 이용하지 못하게 될 수 있습니다.\nd) 귀하에 의한 본 게임 접근 및 이용은 지방, 주, 국가, 외국의 모든 관련 법 및 규정에 부합하도록 이루어집니다.\ne) 귀하에 의한 본 게임 접근 및 이용은, 본 게임용 작동 기반으로 정식 인정되는 운영체계의 정식 라이선스판이 실행되는 로컬 컴퓨터(\"하드웨어\")에서만 이루어집니다.\nf) 귀하는 하드웨어에 적용되는 모든 조건(여기에는 해당 플랫폼의 모든 체크아웃 과정 관련 조건도 포함됨)에 동의했고 이를 준수하고 있습니다.",
+ "koreanFontType":2,
+ "portugueseText":"1. PRÉ-REQUISITOS DAS LICENÇAS. As licenças concedidas neste Contrato estão especificamente condicionadas ao cumprimento dos pré-requisitos a seguir e à sua total obediência a todos os outros termos e condições estipulados neste Contrato:\na)Você deve ser maior de idade em sua jurisdição. Caso seja menor de idade, seus pais ou responsáveis legais devem concordar em cumprir este Contrato e eventuais termos adicionais aplicáveis;\nb)Você aceita e cumpre todos os termos deste Contrato e eventuais termos adicionais que venham a ser aplicáveis ao Jogo;\nc)Seu acesso e uso do Jogo estão sujeitos a determinadas medidas de segurança, incluindo, sem restrição, o registro do Jogo com um código de série, o acesso contínuo à Internet e o aceite de alguns recursos de segurança/gerenciamento de direitos digitais. A recusa e o descumprimento de tais medidas de segurança poderão prejudicar total ou parcialmente seu uso do Jogo;\nd)Seu acesso e uso do Jogo devem obedecer a todas as leis e regulamentos locais, estaduais, nacionais e estrangeiros aplicáveis;\ne)Você deve acessar e usar o Jogo somente em máquinas locais, executando cópias validamente licenciadas de sistemas operacionais para os quais o Jogo foi projetado (\"Hardware\");\nf)Você deve aceitar e cumprir todos os termos e condições aplicáveis ao Hardware, incluindo eventuais termos da plataforma referentes ao processo de finalização de compras.",
+ "portugueseFontType":2,
+ "russianText":"1. ПРЕДВАРИТЕЛЬНЫЕ УСЛОВИЯ ЛИЦЕНЗИЙ. Предоставляемые настоящим Соглашением лицензии осуществляются на следующих условиях и подразумевают ваше полное согласие со всеми другими условиями, изложенными в настоящем Соглашении:\na) Вы достигли совершеннолетия в своей юрисдикции. Если вы еще не достигли совершеннолетия в своей юрисдикции, то с условиями настоящего Соглашения и любыми другими дополнительными условиями должен согласиться ваш родитель или законный опекун;\nb) Вы соглашаетесь со всеми условиями данного Соглашения и любыми дополнительными положениями, которые могут быть применимы к Игре, и обязуетесь их соблюдать;\nc) Ваш доступ к Игре и использование Игры регулируется посредством определенных мер безопасности, включая, среди прочего, регистрацию Игры с помощью серийного кода, обязательное наличие постоянного подключения к сети Интернет, подтверждение определенных мер обеспечения безопасности и защиту цифровых прав. Несогласие с использованием этих мер безопасности или неполное соблюдение этих условий может частично или полностью отрицательно повлиять на процесс использования вами Игры;\nd) Ваш доступ к Игре и ее использование осуществляются в полном соответствии со всеми положениями действующего местного, государственного, национального и зарубежного законодательства;\ne) Вы обязуетесь осуществлять доступ к Игре и использовать ее только на локальных компьютерах, на законно лицензированных копиях операционных систем, соответствующих системным требованиям Игры (далее — «Аппаратное обеспечение»);\nf) Вы подтверждаете и обязуетесь соблюдать все условия и положения, применимые к Аппаратному обеспечению, включая условия и положения, предъявляемые данной платформой к процессу оформления заказов и оплаты.",
+ "russianFontType":2,
+ "turkishText":"1. LİSANS ÖN KOŞULLARI. Bu Sözleşmeyle verilen lisanslar, aşağıdaki koşullara ve bu Anlaşmada ortaya koyulan diğer tüm şartlara ve koşullara tamamen uymanıza tabidir:\na)Kendi yargı bölgenizdeki reşit olma yaşına ulaşmış olmalısınız. Kendi yargı bölgenizdeki reşit olma yaşının altındaysanız ebeveyniniz veya yasal vasiniz bu Sözleşmeye ve geçerli ek şartlarına bağlı kalmayı kabul etmelidir;\nb)Bu Sözleşmenin tüm şartlarını ve Oyun için geçerli olabilecek ek şartları kabul etmeli ve onlara uymalısınız;\nc)Oyuna erişiminiz ve kullanımınız, Oyuna bir seri numarası ile kaydolma, İnternete sürekli erişime sahip olma ve belirli güvenlik/dijital hak yönetim özelliklerini kabul etme dahil fakat bunlarla sınırlı olmamak üzere, belirli güvenlik tedbirlerine tabidir. Bu güvenlik önlemlerini kabul etmemeniz ve bunlara tamamen uymamanız Oyunu kullanımınızı kısmen veya tamamen engelleyebilir.\nd)Oyuna erişiminiz ve kullanımınız geçerli tüm yerel, eyalete ait, ulusal ve yabancı yasalara ve düzenlemelere uygun olmalıdır.\ne)Oyuna sadece, Oyunun çalışması için tasarlanmış olan işletim sistemlerinin geçerli ve lisanslı kopyalarını kullanan yerel makinelerde (“Donanım”) erişmeli ve kullanmalısınız;\nf)Platformun ödeme sürecine ilişkin şartları dahil olmak üzere, Donanım için geçerli olan tüm şartları ve koşulları kabul etmeli ve bunlara uymalısınız.",
+ "turkishFontType":2,
+ "arabicText":"1. الشروط المُسبقة للتراخيص\nتعتبر التراخيص الممنوحة في هذه الاتفاقية مشروطة بشكل خاص بما يلي، وبامتثالك التام لجميع البنود والشروط الأخرى المنصوص عليها في هذه الاتفاقية:\na )أن تكون بلغت سن الرشد في نطاق سلطتك القضائية. إذا كنت دون سن الرشد في نطاق سلطتك القضائية، يجب الحصول على موافقة ولي أمرك أو الوصي القانوني عليك، على الالتزام بهذه الاتفاقية وأي شروط إضافية سارية؛\nb )توافق على جميع البنود الواردة في هذه الاتفاقية وتمتثل لها، وأي بنود إضافية قد تسري على اللعبة؛\nc )تخضع إمكانية وصولك إلى اللعبة واستخدامك لها إلى بعض الإجراءات الأمنية بما في ذلك، على سبيل المثال لا الحصر، تسجيل اللعبة برمز تسلسلي وإمكانية الوصول المستمر إلى شبكة الإنترنت وقبول بعض ميزات إدارة الحقوق الأمنية/الرقمية. قد يؤدي عدم قبول هذه التدابير الأمنية والامتثال التام لها إلى إعاقة استخدامك للعبة جزئيًا أو كليًا؛\nd )يتماشى وصولك إلى اللعبة واستخدامها مع جميع القوانين واللوائح المحلية والحكومية والوطنية والأجنبية المعمول بها؛\ne )لا يمكنك الوصول إلى اللعبة واستخدامها إلا عن طريق الأجهزة المحلية، ويجب تشغيل نسخ مرخصة بشكل سليم لأنظمة التشغيل التي تم تصميمها لتشغيل اللعبة عليها (يُشار إليها بـ\"الأجهزة\")؛\nf )يجب قبول جميع الشروط والبنود السارية على الأجهزة والموافقة عليها، بما في ذلك أي شروط خاصة بهذا النظام الأساسي، فيما يتعلق بعملية الدفع.",
+ "arabicFontType":2,
+ "dutchText":"1. VOORWAARDEN VOOR DE LICENTIES. De in deze Overeenkomst verleende licenties zijn specifiek afhankelijk van het volgende en uw volledige naleving van alle andere voorwaarden en bepalingen zoals beschreven in deze Overeenkomst:\na)U bent meerderjarig conform de definitie hiervan in uw rechtsgebied. Als u minderjarig bent in uw rechtsgebied, dient uw ouder of wettelijk voogd ermee in te stemmen gebonden te zijn door deze Overeenkomst en enigerlei van toepassing zijnde aanvullende voorwaarden;\nb)U gaat akkoord met en houdt zich aan alle voorwaarden in deze Overeenkomst en eventuele aanvullende voorwaarden zoals deze van toepassing zijn op de Game;\nc)Uw toegang tot en gebruik van de Game is onderhevig aan bepaalde beveiligingsmaatregelen, zoals, zonder beperking, het registreren van de Game met een serienummer, permanent toegang hebben tot het Internet en het aanvaarden van bepaalde functies met betrekking tot beveiliging en/of digitaal rechtenbeheer. Het niet accepteren van en volledig voldoen aan dergelijke beveiligingsmaatregelen zal uw gebruik van de Game geheel of gedeeltelijk nadelig beïnvloeden.\nd)Uw toegang tot en gebruik van de Game is conform alle van toepassing zijnde lokale, regionale, nationale en buitenlandse wetgeving en verordeningen.\ne)U verkrijgt toegang tot en gebruikt de Game uitsluitend op lokale apparaten met geldige licenties van het besturingssysteem waarvoor de Game voor gebruik ontwikkeld is (de “Hardware”);\nf)U hebt alle van toepassing zijnde voorwaarden en bepalingen met betrekking tot de Hardware aanvaard en leeft deze na, met inbegrip van enigerlei voorwaarden op een dergelijk platform met betrekking tot het afsluiten.",
+ "dutchFontType":2,
+ "chineseSText":"1. 许可的前提条件。只有当您完全符合本协议中规定的所有条款和条件时,本协议的许可才生效:\na) 您已经达到您所在管辖区的成年年龄。如果您在您的管辖区内未成年,您的父母或法定监护人必须同意受本协议和任何适用附加条款的约束;\nb) 您同意并遵守本协议中的所有条款以及游戏适用的任何附加条款;\nc) 您对游戏的访问和使用受到某些安全措施的约束,包括但不限于使用序列号注册游戏、持续连接到互联网以及接受某些安全/数字版权管理功能。不接受和不完全遵守此类安全措施可能会部分或完全损害您对游戏的使用;\nd) 您对游戏的访问和使用需符合所有适用的地方、州、国家和国外法律法规;\ne) 您只能在本地机器上访问和使用游戏,在可运行游戏的设备上使用操作系统的有效许可副本(“硬件”);\nf) 您已经接受并会遵循所有适用于硬件的条款和条件,包括此类平台关于结帐过程的任何条款。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_9",
+ "japaneseText":"\n2. 限定的利用ライセンス\n\na) 本規約に従い、弊社は、プラットフォーム利用規約(該当のものがある場合)で許可された範囲に限り、お客様の所有または管理する対象ハードウェア上で、お客様の居住国において、本規約の期間本件ゲームを利用するための非独占的、譲渡不可かつ限定的なライセンスをお客様に許諾します。本件ゲームの更新版、追加版および交換品も、本規約が適用されます。ただし、かかる更新版等に他のライセンス条件が付されている場合には、この限りではありません。\n\nb) 上記内容は、本件ゲームについてのお客様の権利のすべてを定めたものです。本件ゲームについての権利のうち本規約においてお客様に明示的に付与されていない一切のものは、弊社に留保されます。お客様は、次のいずれの行為についても、自ら行わず、いかなる第三者にも許可せず、いかなる第三者にも行わせないものとします。(i)本件ゲームの配布、コピー、ライセンス、貸与または販売(本規約またはプラットフォーム利用規約により明示的に許可されたものを除きます)、(ii)お客様ご自身の私的な非商用利用以外を目的とした本件ゲームの利用、(iii)本件ゲームのリバースエンジニアリング、逆コンパイル、逆アセンブル、またはソースコード抽出、(iv)本件ゲームの修正、改変、または派生物作成、(v)本件ゲームにおける著作権表示、商標表示その他の権利帰属表示の削除、改変または不明瞭化、(vi)予定された目的以外での本件ゲームの利用、(vii)お客様の所有または管理していない対象ハードウェア上での本件ゲームの利用、(viii)本件ゲームにおけるセキュリティ措置の回避またはその試み、または(ix)本件ゲームのオンライン機能へのアクセス時におけるお客様の地域の不明瞭化または隠ぺい。",
+ "englishUsText":"2. LIMITED USE LICENSE.\na)Subject to the terms of this Agreement and your compliance with these terms, we grant you a nonexclusive, nontransferable, limited license to use the Game for the term of the Agreement in your country of residence, on Hardware that you own or exclusively control and solely as permitted by the applicable platform usage rules or terms of use (if any). Any updates, supplements or replacements to the original Game are governed by this Agreement unless separate license terms accompany such update.\nb)The preceding states the entirety of your rights with respect to the Game, and we reserve all rights in and to the Game not expressly granted to you in this Agreement. Without limiting the foregoing, you will not do, or authorize or permit any third party to do, any of the following: (i) distribute, copy, license, rent, or sell the Game (except as expressly permitted by this license or the applicable platform usage rules); (ii) use the Game for any purpose other than your own personal, noncommercial use; (iii) reverse engineer, decompile, disassemble, or attempt to discover the source code for the Game; (iv) modify, alter, or create any derivative works of the Game; (v) remove, alter, or obscure any copyright, trademark, or other proprietary rights notice on or in the Game; (vi) use the Game for purposes for which it is not designed; (vii) use the Game on any Hardware that you do not own or exclusively control; (viii) circumvent, or attempt to circumvent, any security measures in the Game; or (ix) attempt to obscure or mask your region when accessing any online features of the Game.",
+ "englishUsFontType":3,
+ "frenchText":"2. LICENCE À UTILISATION LIMITÉE.\na)Sous réserve des dispositions du présent Contrat et de votre respect de celles-ci, nous vous octroyons une licence non exclusive, non transférable et limitée pour utiliser le Jeu pendant toute la durée du Contrat dans votre pays de résidence, sur un Matériel dont vous êtes propriétaire ou que vous contrôlez exclusivement et uniquement dans le cadre des règles et conditions d’utilisation applicables de la plateforme (le cas échéant). Toute mise à jour, extension ou remplacement du Jeu d’origine est régi par le présent Contrat sauf si ces mises à jour sont accompagnées de conditions de licence spécifiques.\nb)Ce qui précède forme l’intégralité de vos droits quant au Jeu et nous nous réservons tous les droits dans et sur le Jeu qui ne vous sont pas expressément concédés aux termes du présent Contrat. Sans limiter la portée de ce qui précède, vous vous interdirez, ainsi qu’à tout tiers, de : (i) distribuer, copier, céder sous licence, louer ou vendre le Jeu (sauf tel que cela est expressément autorisé par cette licence ou par les règles d’utilisation en vigueur sur la plateforme) ; (ii) utiliser le Jeu à tout autre effet que votre utilisation personnelle et non commerciale ; (iii) rétroconcevoir, décompiler, désassembler ou tenter de découvrir le code source du Jeu ; (iv) modifier, altérer ou créer des produits dérivés du Jeu ; (v) supprimer, modifier ou masquer une mention quelconque de droit d’auteur, de marque ou d’autre propriété intellectuelle figurant sur ou dans le Jeu ; (vi) utiliser le Jeu à des fins autres que celles pour lesquelles il a été conçu ; (vii) utiliser le Jeu sur un Matériel dont vous n’êtes pas propriétaire ou que vous ne contrôlez pas exclusivement ; (viii) contourner ou tenter de contourner toute mesure de sécurité mise en œuvre dans le Jeu ; ou (ix) tenter de dissimuler ou masquer votre lieu de résidence lorsque vous accédez à l’un ou l’autre des services en ligne du Jeu.",
+ "frenchFontType":3,
+ "italianText":"2. LICENZA LIMITATA DI UTILIZZO.\na)In conformità ai termini del presente Accordo e a condizione del rispetto degli stessi da parte dell'utente, concediamo a quest'ultimo una licenza limitata non esclusiva e non trasferibile per l'utilizzo del Gioco per la durata prevista dall'Accordo nel suo Paese di residenza, sull'Hardware da lui posseduto o gestito in modo esclusivo e solamente in accordo con i regolamenti o i termini d'uso applicabili della piattaforma (se esistenti). Qualunque aggiornamento, supplemento o sostituzione apportato al Gioco originale è regolato dal presente Accordo, a meno che tale aggiornamento non sia accompagnato da termini di licenza propri.\nb)Il presente Accordo definisce tutti i diritti dell'utente nei confronti del Gioco. Ci riserviamo tutti i diritti inerenti e relativi al Gioco che non vengono espressamente concessi all'utente dal presente Accordo. Senza limitare quanto detto sopra, l'utente si impegna ad astenersi dal fare (e a non autorizzare o permettere a terze parti di fare) nulla di quanto segue: (i) distribuire, copiare, concedere in licenza, affittare o vendere il Gioco (salvo quando espressamente concesso dalla presente licenza o dalle disposizioni d'uso della piattaforma applicabile); (ii) utilizzare il Gioco a scopi diversi da un uso personale non commerciale; (iii) decodificare, decompilare, disassemblare il Gioco o tentare di ottenerne il codice sorgente; (iv) modificare, alterare il Gioco o creare prodotti derivati; (v) rimuovere, alterare od oscurare avvisi di copyright, marchi depositati o altri diritti proprietari inerenti o relativi al Gioco; (vi) utilizzare il Gioco per scopi non previsti dalla casa di produzione; (vii) utilizzare il Gioco su Hardware non posseduto o gestito dall'utente in modo esclusivo; (viii) eludere o tentare di eludere le misure di sicurezza interne al Gioco; o (ix) tentare di oscurare o mascherare la regione di provenienza quando accede a funzioni online del Gioco.",
+ "italianFontType":3,
+ "germanText":"2. EINGESCHRÄNKTE BENUTZERLIZENZ:\na) Vorbehaltlich der Bestimmungen dieser Vereinbarung und Ihrer Einhaltung derselben gewähren wir Ihnen eine nicht exklusive, nicht übertragbare, beschränkte Lizenz zur Nutzung des Spiels für den Zeitraum der Vereinbarung in Ihrem Wohnsitzland, auf Hardware, die Sie besitzen oder exklusiv kontrollieren, und ausschließlich gemäß den anwendbaren Nutzungsvorschriften oder Nutzungsbedingungen (sofern vorhanden) der jeweiligen Plattform. Alle Aktualisierungen, Ergänzungen oder Erweiterungen des Originalspiels unterliegen dieser Vereinbarung, sofern solchen Aktualisierungen keine separaten Lizenzbestimmungen beigefügt sind.\nb) Das Vorstehende beschreibt die Gesamtheit Ihrer Rechte in Bezug auf das Spiel, und wir behalten alle Rechte in und an dem Spiel, die Ihnen nicht ausdrücklich in dieser Vereinbarung gewährt werden. Ohne Einschränkung des Vorstehenden werden Sie keine der folgenden Handlungen ausführen, oder Dritte ermächtigen oder ihnen erlauben, diese Handlungen auszuführen: (i) das Spiel vertreiben, kopieren, lizenzieren, verleihen oder verkaufen (sofern dies nicht ausdrücklich durch diese Lizenz oder durch anwendbare Nutzungsvorschriften der jeweiligen Plattform erlaubt ist); (ii) das Spiel für andere Zwecke als Ihren persönlichen, nichtkommerziellen Gebrauch verwenden; (iii) den Quelltext des Spiels rekonstruieren, dekompilieren, zerlegen oder versuchen, diesen zu entdecken; (iv) das Spiel modifizieren, verändern oder daraus abgeleitete Werke entwickeln; (v) Hinweise auf Urheberrechts-, Marken- oder andere Eigentumsrechte auf oder in dem Spiel entfernen, ändern oder unkenntlich machen; (vi) das Spiel für Zwecke verwenden, für die es nicht konzipiert wurde; (vii) das Spiel auf Hardware nutzen, die Sie nicht besitzen oder exklusiv kontrollieren; (viii) Sicherheitsmaßnahmen im Spiel umgehen oder versuchen, diese zu umgehen; oder (ix) versuchen, Ihre Region unkenntlich zu machen oder zu verbergen, wenn Sie auf Onlinefunktionen des Spiels zugreifen.",
+ "germanFontType":3,
+ "spanishText":"2. LICENCIA DE USO LIMITADO.\na)Con arreglo a las condiciones de este Contrato y al cumplimiento de estas por su parte, le concedemos una licencia limitada, no exclusiva e intransferible para que pueda utilizar el Juego durante el periodo de vigencia del presente Contrato en su país de residencia con el Hardware que usted posea o controle en exclusividad, y solo en la medida en que así lo permitan las normas o condiciones de uso aplicables de la plataforma (en caso de haberlas). Cualquier actualización, complemento o reemplazo del Juego original se regirá por el presente Contrato, salvo que dichas actualizaciones vengan acompañadas de condiciones de licencia independientes.\nb)En las líneas precedentes se establece la totalidad de sus derechos con respecto al Juego; BNEI se reserva todos los derechos sobre el Juego que no se hayan concedido de forma expresa en el presente Contrato. Sin perjuicio de lo anterior, usted deberá abstenerse de realizar, autorizar o permitir a terceros las siguientes acciones: i) distribuir, copiar, alquilar o vender el Juego o conceder licencias para su uso (salvo que lo permitan expresamente la presente licencia o las normas de uso de la plataforma); ii) utilizar el Juego con otro fin que no sea su propio uso personal y no comercial; iii) utilizar técnicas de ingeniería inversa, descompilar, desensamblar o intentar descubrir el código fuente del Juego; iv) modificar, alterar o crear obras derivadas del Juego; v) extraer, alterar u ocultar cualquier aviso de derechos de autor, marca comercial u otros derechos de propiedad en el Juego; vi) utilizar el Juego para fines para los que no haya sido diseñado; vii) utilizar el Juego en Hardware que no sea de su propiedad o que no esté bajo su control exclusivo; viii) sortear o intentar sortear cualquier medida de seguridad en el Juego, o ix) intentar ocultar o encubrir su región cuando acceda a cualquier característica en línea del Juego.",
+ "spanishFontType":3,
+ "chineseTText":"2.授權使用限制。\n\na) 根據本合約的條款以及您對其的遵守,我們授予您在您所居住國家/地區您所擁有或排他控制的硬體上,透過所適用的平台,在相關規則或合約下(如果有的話)非獨家、不可轉讓、有限使用該遊戲的權利。原始遊戲的任何更新、補充或替換均受本合約約束,除非更新時另有規範的附帶授權條款。\n\nb) 上述為您對遊戲的全部權利,我們保留在本合約中未明確授予您及遊戲的權利。在不限制前述內容的情況下,您不得執行、授權或允許任何第三方執行以下任何操作:(i) 散發、複製、授權、出租或出售遊戲(除非本授權明確允許或該平台使用相關規則);(ii) 將遊戲用於您自己個人非商業性以外的任何用途;(iii) 反向工程、反編譯、反彙編或試圖尋找遊戲的原始程式碼;(iv) 修改、變更或創作遊戲的任何衍生作品;(v) 刪除、變更或隱藏遊戲中的任何版權、商標或其他所有權權利通知;(vi) 將遊戲用於設計目的;(vii) 在您不擁有或排他控制的任何硬體上進行遊戲;(viii) 規避或企圖規避遊戲中的任何安全措施;(ix) 嘗試在存取遊戲的任何線上功能時掩蓋或遮蔽您所在的地區。",
+ "chineseTFontType":1,
+ "koreanText":"2. 제한적 이용 라이선스.\na)본 계약의 조건 그리고 귀하의 해당 조건 준수를 전제로 하여, 당사는 귀하가 귀하의 거주 국가에서, 본 계약 기간 동안, 귀하가 소유하거나 독점적으로 제어하는 하드웨어 상에서, 오직 해당 플랫폼 이용 규칙 혹은 이용 약관(있는 경우)에 부합하도록 본 게임을 이용할 비 배타적이고 양도 불가한 제한적 라이선스를 귀하에게 부여합니다. 본 게임의 오리지널 버전에 대한 업데이트, 보충 혹은 대체는 본 계약에 따라 이루어지며, 단 해당 업데이트에 별도의 라이선스 조건이 수반되는 경우는 예외입니다.\nb)전술한 내용은 본 게임에 관한 귀하의 권리 전부이며, 본 계약을 통해 귀하에게 명시적으로 부여되지 않은 모든 본 게임 관련 권리는 당사가 보유합니다. 이상의 내용을 제한하지 않는 범위에서, 귀하는 다음 중 어느 행위도 해서는 안 되고 제3자가 이를 하도록 허락 혹은 허용해서도 안 됩니다. (i) 본 게임을 배포하거나 복제하거나 라이선스를 부여하거나 임대하거나 판매하는 행위(단 본 라이선스나 해당 플랫폼 이용 규칙에 의해 명시적으로 허용되는 경우는 제외), (ii) 본 게임을 귀하 자신의 개인적이고 비상업적인 용도 외의 목적으로 사용하는 행위, (iii) 본 게임의 소스코드를 역분석/역설계하거나 역컴파일하거나 역어셈블하거나 발견을 시도하는 행위, (iv) 본 게임을 변경하거나 개조하거나 파생물을 만드는 행위, (v) 본 게임상의 저작권이나 특허권 혹은 기타 소유권 관련 고지를 제거하거나 변경하거나 알아보기 어렵게 만드는 행위, (vi) 본 게임을 본 게임 제작 의도에서 벗어나는 목적으로 사용하는 행위, (vii) 귀하가 소유하거나 배타적으로 지배하지 않는 하드웨어에서 본 게임을 사용하는 행위, (viii) 본 게임의 보안 조치를 우회하거나 우회를 시도하는 행위, 또는 (ix) 본 게임의 온라인 기능에 접근함에 있어 귀하의 지역을 인식하기 어렵게 만들거나 은폐를 시도하는 행위.",
+ "koreanFontType":2,
+ "portugueseText":"2. LICENÇA DE USO LIMITADO.\na)Sujeita a este Contrato e ao cumprimento destes termos por você, concedemos a você uma licença limitada, não exclusiva e intransferível para usar o Jogo pelo prazo do Contrato em seu país de residência, no Hardware que você possui ou controla de forma exclusiva e somente conforme permitido pelos termos ou regras de uso da plataforma pertinente (se houver). Este Contrato regerá eventuais atualizações, suplementos ou substituições no Jogo, salvo se termos de licenças independentes acompanharem tal atualização;\nb)O supramencionado define a totalidade dos seus direitos com relação ao Jogo, e nós nos reservamos todos os direitos em relação a ele que não tiverem sido expressamente concedidos a você neste Contrato. Sem limitar o supramencionado, você se absterá de praticar e não autorizará nem permitirá que terceiros pratiquem qualquer dos atos a seguir: (i) distribuir, copiar, licenciar, alugar ou vender o Jogo (salvo conforme expressamente permitido por esta licença ou pelas regras aplicáveis de uso da plataforma); (ii) usar o Jogo para qualquer outro fim que não seja o seu uso pessoal e não comercial; (iii) fazer engenharia reversa, descompilar, desmontar ou tentar descobrir o código-fonte do Jogo; (iv) modificar, adulterar ou criar obras derivadas do Jogo; (v) remover, adulterar ou ocultar avisos de direitos autorais, marcas registradas ou outros direitos de propriedade que estejam no Jogo; (vi) usar o Jogo para fins diversos além do que foi projetado; (vii) usar o Jogo em Hardware que você não possua ou não controle de forma exclusiva; (viii) burlar, ou tentar burlar, qualquer medida de segurança do Jogo; ou (ix) tentar ocultar ou mascarar sua região ao acessar recursos on-line do Jogo.",
+ "portugueseFontType":2,
+ "russianText":"2. ОГРАНИЧЕННАЯ ЛИЦЕНЗИЯ НА ИСПОЛЬЗОВАНИЕ.\na)Согласно условиям настоящего Соглашения и исходя из соблюдения вами этих условий, мы предоставляем вам неэксклюзивную, не подлежащую передаче, ограниченную лицензию на использование Игры в течение срока действия настоящего Соглашения, в стране проживания, на Аппаратном обеспечении, находящемся в вашем владении или под исключительным контролем и только в соответствии с правилами и условиями пользования, применимыми к соответствующей платформе (при наличии таковых). Любые обновления, дополнения или замены в оригинальной Игре выполняются в соответствии с настоящим Соглашением, если такое обновление не сопровождается отдельными условиями лицензии.\nb)Все вышеизложенное определяет границы ваших прав в отношении Игры. Мы сохраняем за собой все касающиеся этой Игры права, которые не были в явной форме предоставлены вам согласно условиям данного Соглашения. Не ограничивая вышесказанное, вы обязуетесь не выполнять самостоятельно, а также не давать третьим сторонам разрешение на выполнение следующих действий: (i) распространять, копировать, предоставлять по лицензии, сдавать напрокат или продавать Игру (за исключением случаев, в явной форме разрешенных этой лицензией или действующими правилами использования соответствующей платформы); (ii) использовать Игру в любых целях помимо личного, некоммерческого использования; (iii) декомпилировать, дизассемблировать Игру или пытаться получить доступ к исходному коду Игры; (iv) вносить изменения, модификации или создавать производные продукты Игры; (v) удалять, модифицировать или скрывать уведомления о принадлежности авторского права, фирменные знаки или другие указания на права собственности на/в Игре; (vi) использовать Игру не по назначению; (vii) использовать Игру на Аппаратном обеспечении, не находящемся в вашем исключительном владении; (viii) обходить или пытаться обходить меры обеспечения безопасности Игры; а также (ix) пытаться скрыть или замаскировать регион вашего местоположения при получении доступа к любым онлайн-функциям Игры.",
+ "russianFontType":2,
+ "turkishText":"2. SINIRLI KULLANIM LİSANSI.\na)Bu Sözleşmenin şartlarına ve bu şartlara uymanıza tabi olmak üzere, Oyunu, yaşadığınız ülkedeki Sözleşme süresi boyunca, geçerli platform kullanım kurallarının veya hizmet kullanım şartlarının (varsa) izin verdiği şekilde sahip olduğunuz veya münhasıran kontrol ettiğiniz Donanım üzerinde kullanmanız için size özel olmayan, devredilemez ve sınırlı bir lisans vermekteyiz. Orijinal Oyunda yapılacak güncellemeler, ekler veya değişiklikler, güncelleme yanında ayrı lisans koşulları verilmedikçe bu Sözleşmeye tabi olacaktır.\nb)Önceki maddeler sizin Oyunla ilgili haklarınızın tümünü belirtmekte olup Oyunla ilgili bu Sözleşmede açıkça verilmeyen tüm hakları saklı tutmaktayız. Yukarıdaki hükümleri sınırlamaksızın, aşağıdakilerden hiçbirini yapmamalı veya üçüncü bir tarafa bunları yapması için yetki ya da izin vermemelisiniz: (i) Oyunu dağıtmak, kopyalamak, lisansını vermek, kiralamak veya satmak (bu lisansın veya geçerli platform kullanım kurallarının açıkça izin vermesi haricinde); (ii) Oyunu kendi kişisel ve ticari olmayan kullanım amacınız dışında kullanmak; (iii) ters mühendislik yapmak, kaynak koda dönüştürmek, kaynak kodunu oluşturmak veya Oyunun kaynak kodunu bulmaya çalışmak; (iv) Oyunun türevlerini modifiye etmek, değiştirmek veya oluşturmak; (v) Oyundaki telif haklarını, ticari markaları veya diğer mülkiyet haklarını kaldırmak, değiştirmek veya gizlemek; (vi) Oyunu tasarım amaçları dışında kullanmak; (vii) Oyunu size ait veya münhasıran kontrolünüz altında olmayan bir Donanımda kullanmak; (viii) Oyundaki güvenlik tedbirlerini engellemek veya engellemeye çalışmak; (ix) Oyunun çevrimiçi özelliklerine erişirken bölgenizi gizlemeye veya maskelemeye çalışmak.",
+ "turkishFontType":2,
+ "arabicText":"2. ترخيص الاستخدام المحدود\na )مراعاة للبنود الواردة في هذه الاتفاقية ولامتثالك لتلك البنود، نمنحك ترخيصًا محدودًا غير حصري لا يُقبل تحويله إلى طرف آخر لاستخدام اللعبة خلال مدة سريان الاتفاقية في بلد إقامتك على الجهاز الذي تملكه أو تتحكَّم به حصريًا وفق المسموح به فقط في قواعد استخدام المنصة أو شروط الاستخدام المعمول بها (إن وجدت). تسري هذه الاتفاقية على أي تحديث أو إضافة أو إحلال ما لم يُرفق بهذا التحديث شروط ترخيص مستقلة.\nb )يرد فيما سبق جميع حقوق المستخدم بشأن اللعبة، ونحن نحفظ جميع الحقوق الأخرى في اللعبة التي لم يُشر إليها صراحةً في هذه الاتفاقية. دون الحد مما سبق، لن تقوم بأي عمل من الأعمال التالية أو تفوِّض أو تسمح لأي شخص من الغير القيام به: (أولاً) توزيع أو نسخ أو ترخيص أو تأجير أو بيع اللعبة (إلا إذا أُجيز ذلك صراحةً بموجب هذا الترخيص أو قواعد استخدام المنصة المعمول بها)، (ثانيًا) استخدام اللعبة لأي غرض آخر بخلاف الاستخدام الشخصي غير التجاري، (ثالثًا) عكس هندسة اللعبة أو إلغاء ترجمتها أو تفكيكها أو محاولة اكتشاف كود المصدر الخاص بها، (رابعًا) تعديل أو تبديل أو إنشاء أي أعمال اشتقاق من اللعبة، (خامسًا) إزالة أو تغيير أو حجب حقوق الطبع والنشر أو العلامة التجارية أو الإفادة بحقوق الملكية الأخرى في اللعبة، (سادسًا) استخدام اللعبة لأغراض أخرى غير تلك المخصَّصة لها، (سابعًا) استخدام اللعبة على جهاز لا تملكه أو تتحكَّم به حصريًا، (ثامنًا) التحايل أو محاولة التحايل على أي تدابير أمنية خاصة باللعبة، (تاسعًا) محاولة حجب أو إخفاء منطقتك عند الوصول إلى خصائص اللعبة عبر الإنترنت.",
+ "arabicFontType":2,
+ "dutchText":"2. LICENTIE VOOR BEPERKT GEBRUIK.\na)Met inachtneming van de voorwaarden van deze Overeenkomst en uw naleving van deze voorwaarden, verlenen wij u een niet-exclusieve, niet-overdraagbare, beperkte licentie voor het gebruik van de Game voor de duur van de overeenkomst in het land waar u woonachtig bent, op Hardware die u bezit of exclusief beheert en uitsluitend zoals toegestaan door de van toepassing zijnde gebruiksregels of gebruiksvoorwaarden voor het platform (indien van toepassing). Enigerlei updates, toevoegingen of vervangingen aan de originele Game zijn onderworpen aan deze Overeenkomst tenzij een dergelijke update afzonderlijke licentievoorwaarden kent.\nb)Het voorafgaande omvat het geheel van uw rechten met betrekking tot de Game en we behouden ons alle rechten in en op de Game voor welke in deze Overeenkomst niet uitdrukkelijk aan u toegekend zijn. Zonder enige beperking van het voorafgaande zult u niet enigerlei van het volgende doen, een derde partij toestemming geven om te doen of toestaan om te doen: (i) het distribueren, kopiëren, in licentie geven, verhuren of verkopen van de Game (tenzij uitdrukkelijk toegestaan door deze licentie of de van toepassing zijnde gebruiksvoorschriften van het platform); (ii) de Game voor andere doeleinden gebruiken anders dan uw eigen persoonlijke, niet-commerciële gebruik; (iii) de broncode van de Game reverse-engineeren, decompileren, disassembleren of proberen te achterhalen; (iv) het modificeren, wijzigen van de Game of afgeleide werken ervan te maken; (v) het verwijderen, wijzigen of verbergen van enigerlei berichten met betrekking tot auteursrechten, handelsmerken of andere eigendomsrechten op of in de Game; (vi) het gebruik van de Game voor doeleinden waarvoor de Game niet bedoeld is; (vii) de Game gebruiken op enigerlei Hardware die u niet in bezit hebt of exclusief beheert; (viii) het omzeilen of proberen te omzeilen van enigerlei beveiligingsmaatregelen in de Game; of (ix) het proberen de regio van waaruit u toegang probeert te verkrijgen tot enige online functies van de Game te verbergen of te maskeren.",
+ "dutchFontType":2,
+ "chineseSText":"2. 有限使用许可。\na) 根据本协议的条款以及您对其的遵守,我们授予您有权在您所在国家/地区您拥有或排他控制的硬件上,通过所适用的平台在相关规则或条款下(如果有的话)非独家、不可转让、有限使用该游戏。原始游戏的任何更新、补充或替换均受本协议约束,除非更新时有附带许可条款。\nb) 上述为您对游戏的全部权利,我们保留在本协议中未明确授予您的游戏权利和游戏。在不限制前述内容的情况下,您不得执行或授权或允许任何第三方执行以下任何操作:a)(i)分发、复制、许可、出租或出售游戏(除非本许可明确允许或该平台使用相关规则);(ii)将游戏用于您自己的个人非商业用途以外的任何目的;(iii)反向工程、反编译、反汇编或试图寻找游戏的源代码;(iv)修改、更改或创作游戏的任何衍生作品;(v)删除、更改或隐藏游戏中的任何版权、商标或其他所有权权利通知;(vi)以不在游戏原设计的范围内使用它;(vii)在并非您拥有或排他控制的任何硬件上进行游戏;(viii)规避或企图规避游戏中的任何安全措施;或(ix)尝试在访问游戏的任何在线功能时掩饰您所在的地区。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_10",
+ "japaneseText":"\n3. 権利帰属\n\n本件ゲームならびに本件ゲーム内のまたは本件ゲームを通じて利用できる一切のコンテンツ(本規約に定めるユーザーコンテンツを除きます)および素材(当社のロゴ、一切のデザイン、テキスト、グラフィックス、写真、情報、データ、ソフトウェア、サウンドファイル、本件ゲーム通貨および本件仮想アイテムその他のファイル、ならびにこれらを選別または整理したものも含まれますが、これに限定されるものではありません)の権利は、当社またはそのライセンサーに帰属し、著作権その他の知的財産に関する法律および条約で保護されています。本規約におけるいかなる別段の規定にもかかわらず、お客様は、上記コンテンツおよび素材(本件ゲーム通貨および本件仮想アイテムも含まれますが、これらに限定されるものではありません)についてのいかなる権利または権原もお客様に帰属しないことに、同意しているものとします",
+ "englishUsText":"3. OWNERSHIP. The Game and all content (other than User Content, as defined below) and other materials in the Game or available through the Game, including, without limitation, the BNEI logo, and all designs, text, graphics, pictures, information, data, software, sound files, Game Currency, Virtual Items, other files and the selection and arrangement thereof are the property of BNEI or its licensors and are protected by copyright and other intellectual property laws and treaties. Notwithstanding any provision to the contrary herein, you agree that you have no right or title in or to any content that appears in the Game, including without limitation any Game Currency and Virtual Items.",
+ "englishUsFontType":3,
+ "frenchText":"3. PROPRIÉTÉ. Le Jeu et tout son contenu (autre que le Contenu utilisateur, tel que défini ci-dessous) ainsi que toutes les autres ressources accessibles dans et depuis le Jeu y compris, sans toutefois s’y limiter, le logo BNEI et tous les modèles, textes, illustrations, images, informations, données, logiciels, fichiers audio, Monnaie virtuelle, Éléments virtuels et autres fichiers, ainsi que le choix de ceux-ci et leur mise en forme sont la propriété de BNEI ou de ses concédants de licence et sont protégés par les lois et traités relatifs aux droits d’auteur et à la propriété intellectuelle. Nonobstant toute disposition contraire prévue aux présentes, vous acceptez n’avoir aucun droit ou titre sur l’un ou l’autre des contenus du Jeu y compris, sans toutefois s’y limiter, la Monnaie du Jeu et les Éléments virtuels.",
+ "frenchFontType":3,
+ "italianText":"3. PROPRIETÀ. Il Gioco e tutti i suoi contenuti (diversi dai Contenuti generati dall'utente, che vengono definiti di seguito), compresi altri materiali presenti nel Gioco o resi disponibili tramite esso, inclusi, a titolo esemplificativo e non esaustivo, il logo BNEI e tutti i disegni, i testi, le illustrazioni grafiche, le immagini, le informazioni, i dati, il software, i file audio, la Valuta di Gioco, gli Oggetti virtuali, file di altro tipo e la relativa selezione e gestione, sono di proprietà di BNEI o dei suoi licenziatari e sono protetti dalle leggi e dai trattati che regolano i diritti d'autore e le altre proprietà intellettuali. In deroga a qualunque disposizione contraria esposta nel presente documento, l'utente riconosce di non godere di alcun diritto o titolo nei confronti dei contenuti che appaiono nel Gioco, inclusi, a titolo esemplificativo e non esaustivo, la Valuta di Gioco e gli Oggetti virtuali.\n",
+ "italianFontType":3,
+ "germanText":"3. EIGENTUMSVERHÄLTNISSE: Das Spiel sowie alle Inhalte (mit Ausnahme von Nutzerinhalten, wie nachfolgend definiert) und andere Materialien, die im Spiel oder durch das Spiel verfügbar sind (insbesondere das BANDAI NAMCO-Logo und alle Designs, Texte, Grafiken, Bilder, Informationen, Daten, Software, Audiodateien, Spielwährung, virtuellen Gegenstände und anderen Dateien sowie deren Auswahl und Anordnung), sind Eigentum von BNEI oder seinen Lizenzgebern und werden durch Urheberrechte und andere Gesetze und Verträge zum geistigen Eigentum geschützt. Ungeachtet etwaiger anderslautender in dieser Vereinbarung enthaltener Bestimmungen stimmen Sie zu, dass Sie keinerlei Eigentumsrechte oder Rechtsansprüche an jedweden Inhalten haben, die im Spiel vorhanden sind, insbesondere nicht an Spielwährung und virtuellen Gegenständen.",
+ "germanFontType":3,
+ "spanishText":"3. PROPIEDAD. El Juego y todos sus contenidos (aparte del Contenido de usuario, según se define más adelante), así como otros materiales del Juego o que se pongan a su disposición a través del Juego (incluidos, entre otros, el logotipo de BNEI y todos los diseños, materiales textuales y gráficos, imágenes, información, datos, software, archivos de sonido, Divisa del Juego, Elementos virtuales, otros archivos y la selección y disposición de estos) serán propiedad de BNEI o de sus licenciantes, y estarán protegidos por las leyes y tratados sobre derechos de autor y propiedad intelectual. Sin perjuicio de cualquier disposición en sentido contrario incluida en el presente Contrato, usted declara entender que no ostenta ningún derecho ni titularidad sobre ningún contenido que aparezca en el Juego, incluidos, entre otros, la Divisa del Juego y los Elementos virtuales.",
+ "spanishFontType":3,
+ "chineseTText":"3.所有權。遊戲和遊戲中的所有內容(除以下定義的使用者內容)和遊戲中的其他材料,包括但不限於 BNEI 標誌,以及所有設計、文字、圖形、圖片、資訊、資料、軟體、音效檔、遊戲幣、虛擬物品、其他檔案及其選擇和安排均為 BNEI 或其授權人的財產,受版權及其他智慧財產權法律和條約的保護。即使有相反的條款,但您同意您對遊戲中出現的任何內容沒有權利或所有權,包括但不限於任何遊戲幣和虛擬物品。",
+ "chineseTFontType":1,
+ "koreanText":"3. 소유권. 본 게임 그리고 본 게임상의 혹은 본 게임을 통해 이용 가능한 모든 콘텐츠(단 아래 정의된 사용자 콘텐츠는 제외) 및 기타 소재(여기에는 BNEI 로고, 디자인, 텍스트, 그래픽, 사진, 정보, 데이터, 소프트웨어, 사운드 파일, 게임 통화, 가상 아이템, 기타 파일, 그리고 이들의 선택/조합 및 배열 일체가 포함되며 이에 한정되지 않음)는 BNEI 또는 그 라이선스 인가자의 재산이며 저작권 및 기타 지적재산권 관련 법과 조약에 의해 보호됩니다. 설사 본 계약 내에 달리 정하는 조항이 있더라도, 귀하는 본 게임에 등장하는 일체의 콘텐츠(여기에는 게임 통화 및 가상 아이템이 포함되며 이에 한정되지 않음)에 대해 어떤 권리나 명의도 없다는 점에 동의합니다.",
+ "koreanFontType":2,
+ "portugueseText":"3. PROPRIEDADE. O Jogo, todo o conteúdo (diferente do Conteúdo de Usuário, conforme definido abaixo) e outros materiais no Jogo ou disponibilizados por ele, incluindo, sem restrição, o logotipo da BNEI e todos os desenhos, textos, gráficos, imagens, informações, dados, software, arquivos de áudio, Moedas de Jogo, Itens Virtuais, outros arquivos e a seleção e disposição deles são propriedade da BNEI ou de seus licenciantes, sendo protegidos por direitos autorais e outras leis e tratados de propriedade intelectual. Não obstante eventuais disposições aqui em contrário, você concorda que não tem nenhum direito ou propriedade sobre qualquer conteúdo que apareça no Jogo, incluindo, sem restrição, qualquer Moeda de Jogo ou Itens Virtuais.",
+ "portugueseFontType":2,
+ "russianText":"3. ПРАВО СОБСТВЕННОСТИ. Игра, весь контент (кроме Пользовательского контента, определение которого дается ниже) и другие материалы Игры или доступные через Игру, включая, среди прочего, логотип BNEI, все элементы дизайна, текст, графические элементы, изображения, информацию, данные, программное обеспечение, звуковые файлы, Игровую валюту, Виртуальные предметы, другие файлы, а также их подборки и сочетания являются собственностью компании BNEI или ее лицензиаров и защищены законами об авторском праве и другими положениями и договорами о защите интеллектуальной собственности. Независимо от любых других содержащихся здесь положений вы соглашаетесь с тем, что не имеете никаких прав собственности на любой появляющийся в Игре контент, включая, среди прочего, любую Игровую валюту и Виртуальные предметы.",
+ "russianFontType":2,
+ "turkishText":"3. MÜLKİYET HAKKI. Oyun, BNEI logosu ve tüm tasarımlar, metinler, grafikler, resimler, bilgiler, veriler, ses dosyaları, Oyun Para Birimi, Sanal Öğeler, diğer dosyalar ve bunların seçimi ve düzenlemesi dahil fakat bunlarla sınırlı olmamak üzere Oyunda veya Oyun aracılığıyla kullanılan tüm içerik (aşağıda tanımlandığı şekilde Kullanıcı İçeriği hariç) ve diğer materyaller, BNEI ve lisans sahiplerinin mülkiyetinde olup telif hakkı ve diğer fikri mülkiyet yasaları ve anlaşmalarıyla korunmaktadır. Burada geçenlere zıt herhangi bir hükme bakılmaksızın, Oyun Para Birimi ve Sanal Öğeler dahil fakat bunlarla sınırlı olmaksızın Oyun veya Oyunda görünen içerikler üzerinde herhangi bir hakkınız bulunmadığını kabul etmektesiniz.",
+ "turkishFontType":2,
+ "arabicText":"3. الملكية\nتُعدُّ اللعبة وجميع محتوياتها (بخلاف محتوى المستخدم، حسب التعريف الوارد أدناه) والمواد الأخرى في اللعبة أو المتاحة عبر اللعبة بما في ذلك، على سبيل المثال لا الحصر، شعار BNEI وجميع التصاميم والنصوص والرسومات والصور والمعلومات والبيانات والبرامج وملفات الصوت وعملة اللعبة والعناصر الافتراضية وغيرها من الملفات وتحديد ما سبق وترتيبه، مملوكة جميعًا لشركة BNEI أو المرخَّص لهم. وتلك الملكية محفوظة بموجب حقوق الطبع والنشر وقوانين ومعاهدات الملكية الفكرية الأخرى. بالرغم من أنَّ أي نص في هذه الوثيقة يرد به ما هو خلاف ذلك، فإنك توافق على عدم أحقيتك في أي حق أو سند ملكية لأي محتوى يُعرض في اللعبة بما في ذلك، على سبيل المثال لا الحصر، العملة المستخدمة في اللعبة والعناصر الافتراضية.",
+ "arabicFontType":2,
+ "dutchText":"3. EIGENDOM. De Game en alle inhoud (anders dan Gebruikersinhoud, zoals hierna gedefinieerd) en andere materialen in de Game of beschikbaar via de Game, inclusief, zonder beperking, het BNEI-logo en alle ontwerpen, teksten, afbeeldingen, afbeeldingen, informatie, gegevens, software, geluidsbestanden, Gamebetaalmiddel, Virtuele voorwerpen, andere bestanden en de selectie en rangschikking daarvan zijn het eigendom van BNEI of haar licentiegevers en worden beschermd door auteursrechten en andere intellectuele eigendomsrechten en verdragen. Niettegenstaande enige andersluidende bepaling hierin, stemt u ermee in dat u geen recht hebt of aanspraak kunt maken op inhoud die in de Game wordt weergegeven, inclusief maar zonder beperking tot enig Gamebetaalmiddel en Virtuele voorwerpen.",
+ "dutchFontType":2,
+ "chineseSText":"3. 所有权。游戏和游戏中的所有内容(除以下定义的用户内容)和游戏中的其他材料,包括但不限于BNEI标志,以及所有设计、文字、图形、图片、信息、数据、软件、声音文件、游戏币、虚拟物品、其他档案及其选择和安排,均为BNEI或其许可人的财产,受版权和其他知识产权法律和条约的保护。尽管有相反的条款,您同意您对游戏中出现的任何内容没有权利或所有权,包括但不限于任何游戏币和虚拟物品。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_11",
+ "japaneseText":"\n4. 期間\n\na) 第1条に掲げられた前提条件をお客様が満たすことを条件として、本規約は、お客様が本件ゲームを利用する期間中、有効に存続するものとします。いずれの当事者も、理由の有無にかかわらず、合理的な事前通知により、いつでも本規約を解除できるものとします。お客様は、ご自身の保有、保管または管理する本件ゲームの一切のコピーを削除または破棄することにより、本規約を解除できるものとします。当社は、お客様による本件ゲームの利用の中止について、お客様および第三者のいずれに対しても、責任を負いません。\n\nb) お客様による本規約への違反があった場合、当社は、自己の有する他のいかなる権利も制限することなく、本件ゲームについてのお客様に対するライセンスを即時に制限、停止または取り消す権利を有するものとします。\n\nc) 本規約が終了した場合本件ゲームについてのお客様へのライセンスは、即時に失効するものとします。\n\nd) 第2条(b)、第3条、第4条(d)、第6条、および第9条から第19条は、本規約の終了後も存続するものとします。",
+ "englishUsText":"4. TERM.\na)Subject to your satisfaction of the preconditions set forth in Section 1, this Agreement will remain in full force and effect while you use the Game. Either party may terminate this Agreement with or without cause at any time with reasonable prior notice. You may terminate this Agreement by deleting or destroying all copies of the Game in your possession, custody, or control. BNEI shall not be liable to you or any third party for termination of your use of the Game.\nb)Without limiting any other rights of BNEI, if you fail to comply with the terms and conditions of this Agreement, BNEI retains the right to immediately limit, suspend, or terminate your license to the Game.\nc)Upon termination of this Agreement, your license to the Game shall cease immediately.\nd)Sections 2(b), 3, 4(d), 6, 9,-19 shall survive termination of this Agreement.",
+ "englishUsFontType":3,
+ "frenchText":"4. DURÉE.\na)Sous réserve que vous remplissiez les conditions préalables exposées à l’article 1, le présent Contrat restera pleinement en vigueur tant que vous utiliserez le Jeu. L’une ou l’autre des parties peut à tout moment résilier le présent Contrat, avec ou sans motif et à tout moment moyennant un préavis raisonnable. Vous pouvez résilier le présent Contrat en supprimant et détruisant toutes les copies du Jeu en votre possession, sous votre garde ou contrôle. BNEI ne saurait être tenu responsable envers vous ni aucun tiers de l’interruption de votre utilisation du Jeu.\nb)Sans limiter aucun des autres droits de BNEI, si vous manquez de respecter les conditions générales du présent Contrat, BNEI se réserve le droit de limiter, suspendre ou résilier immédiatement votre licence d’utilisation du Jeu.\nc)Dès résiliation du présent Contrat votre licence d’utilisation du Jeu prendra immédiatement fin.\nd)Les articles 2(b), 3, 4(d), 6, 9-19 resteront en vigueur après résiliation du présent Contrat.",
+ "frenchFontType":3,
+ "italianText":"4. DURATA.\na)A seguito dell'accettazione da parte dell'utente delle condizioni preliminari espresse nella sezione 1, il presente Accordo resterà pienamente valido ed efficace per tutta la durata dell'utilizzo del Gioco. Entrambe le parti possono recedere dal presente Accordo in qualunque momento, senza bisogno di fornire una spiegazione e dandone ragionevole preavviso. L'utente può recedere dall'Accordo a condizione che elimini o distrugga tutte le copie del Gioco in suo possesso, in sua custodia o in sua gestione. BNEI declina ogni responsabilità nei confronti dell'utente o di terze parti in caso di interruzione dell'utilizzo del Gioco da parte dell'utente.\nb)Senza pregiudicare ogni altro diritto di BNEI, qualora l'utente non osservasse i termini e le condizioni del presente Accordo, BNEI si riserva il diritto di limitare, sospendere o interrompere immediatamente la licenza di gioco dell'utente.\nc)Dopo la conclusione del presente Accordo la licenza di Gioco dell'utente cesserà immediatamente di esistere.\nd)Le sezioni 2(b), 3, 4(d), 6, e 9-11 continueranno a essere valide anche dopo la conclusione del presente Accordo.",
+ "italianFontType":3,
+ "germanText":"4. DAUER:\na)Vorbehaltlich Ihrer Erfüllung der in Abschnitt 1 festgelegten Voraussetzungen bleibt diese Vereinbarung in vollem Umfang in Kraft, während Sie das Spiel nutzen. Diese Vereinbarung kann von jeder Partei jederzeit, mit oder ohne Angabe von Gründen, nach angemessener Vorankündigung aufgehoben werden. Sie können diese Vereinbarung aufheben, indem Sie sämtliche in Ihrem Besitz, Ihrer Verwahrung oder Ihrer Verfügungsgewalt befindlichen Kopien des Spiels löschen oder vernichten. BNEI ist weder Ihnen noch irgendwelchen Dritten gegenüber haftbar für die Beendigung Ihrer Nutzung des Spiels.\nb)Unbeschadet sonstiger Rechte von BNEI gilt: Sollten Sie die Bestimmungen und Bedingungen dieser Vereinbarung nicht einhalten, behält BNEI sich das Recht vor, Ihre Lizenz an dem Spiel unverzüglich zu beschränken, auszusetzen oder zu beenden.\nc)Nach Kündigung dieser Vereinbarung erlischt Ihre Lizenz am Spiel unverzüglich.\nd)Die Abschnitte 2(b), 3, 4(d), 6, 9-19 behalten auch nach Beendigung dieser Vereinbarung ihre Gültigkeit.",
+ "germanFontType":3,
+ "spanishText":"4. VIGENCIA.\na)Previa aceptación por su parte de las condiciones establecidas en la cláusula 1, el presente Contrato se mantendrá vigente durante todo el periodo en que usted utilice el Juego. Cualquiera de las partes podrá rescindir el Contrato con o sin motivo en cualquier momento siempre que ello se notifique con una antelación razonable. Usted podrá rescindir el Contrato eliminando o destruyendo todas las copias del Juego que tenga en su posesión, custodia o control. BNEI no será responsable ante usted ni ante terceros de la cancelación de su derecho a utilizar el Juego.\nb)En caso de incumplimiento por su parte de las condiciones de este Contrato, BNEI se reserva (sin perjuicio de cualquier otro derecho que pueda asistirle) el derecho de limitar, suspender o poner fin a su licencia de uso del Juego con carácter inmediato.\nc)En caso de rescindirse el presente Contrato su licencia del Juego terminará con carácter inmediato.\nd)Tras la rescisión del Contrato, las cláusulas 2 b), 3, 4 d), 6, y 9 a 19 seguirán en vigor.",
+ "spanishFontType":3,
+ "chineseTText":"4.期限。\na) 如果您滿意第 1 條規定的先決條件,本合約在使用遊戲時將保持完全有效。任何一方均可隨時以合理的事先通知終止本合約。您可以刪除或銷毀所擁有、保管或控制之所有遊戲副本的方式終止本合約。對您終止使用遊戲,BNEI 對您或任何第三方概不負責。\nb) 在不限制 BNEI 的任何其他權利的前提下,如果您不遵守本合約的條款和條件,BNEI 保留立即限制、暫停或終止您遊戲授權的權利。\nc) 本合約終止後 您的遊戲授權將立即停止。\nd) 第 2 條 (b) 項、第 3 條、第 4 條 (d) 項、第 6 條、第 11-19 條在本合約終止後仍然有效。",
+ "chineseTFontType":1,
+ "koreanText":"4. 기간.\na)귀하가 제3절에 규정된 전제 조건을 충족함을 전제로 하여, 본 계약은 귀하가 본 게임을 이용하는 동안 유효합니다. 각 당사자는 이유 여부를 불문하고 언제라도 합리적인 사전 고지를 통해 본 계약을 해지할 수 있습니다. 귀하는 귀하의 점유, 보관 혹은 통제 하에 있는 본 게임의 모든 사본을 삭제하거나 파기함으로써 본 계약을 해지할 수 있습니다. BNEI는 귀하의 본 게임 이용 해지와 관련하여 귀하나 제1자를 상대로 아무런 책임도 지지 않습니다.\nb)귀하가 본 계약의 조건을 준수하지 않는 경우, BNEI는 BNEI의 다른 어떤 권리도 제한하지 않는 범위에서 귀하의 본 게임 라이선스를 즉시 제한, 정지, 또는 종료할 권리를 보유합니다.\nc)본 계약 해지 시귀하의 본 게임 라이선스는 즉시 종료되고.\nd)본 계약이 해지되더라도 제2(b)절, 제3절, 제4(d)절, 제6절, 제9절~제11절은 계속 유효합니다.",
+ "koreanFontType":2,
+ "portugueseText":"4. PRAZO.\na)Observado o seu cumprimento dos pré-requisitos estipulados na Seção 1, este Contrato permanecerá em pleno vigor enquanto você usar o Jogo. Qualquer das partes poderá rescindir este Contrato com ou sem justa causa, a qualquer tempo e mediante aviso prévio razoável. Você pode rescindir este Contrato excluindo ou destruindo todas as cópias do Jogo que estiverem sob sua posse, custódia ou controle. A BNEI não será responsável perante você ou terceiros pelo fim do seu uso do Jogo;\nb)Sem limitar outros direitos da BNEI, caso você descumpra os termos e condições deste Contrato, a BNEI mantém o direito de imediatamente limitar, suspender ou extinguir sua licença do Jogo;\nc)Na extinção deste Contrato sua licença do Jogo será imediatamente extinta;\nd)As Seções 2(b), 3, 4(d), 6, 9-19 subsistirão à extinção deste Contrato.",
+ "portugueseFontType":2,
+ "russianText":"4. СРОК ДЕЙСТВИЯ.\na)В случае принятия вами обозначенных в разделе 1 предварительных условий условия данного Соглашения будут оставаться в полной силе на протяжении всего срока использования Игры. Любая из сторон может в любой момент расторгнуть настоящее Соглашение по любой причине или без причины и без предварительного уведомления. Для расторжения настоящего Соглашения вы можете удалить и уничтожить все находящиеся в вашем владении, под вашим контролем или присмотром копии Игры. Компания BNEI не будет нести ответственность перед вами или любой третьей стороной за прекращение использования вами Игры.\nb)Без ограничения каких-либо других прав компании BNEI, если вы не можете обеспечить соблюдение условий и положений настоящего Соглашения, компания BNEI оставляет за собой право немедленного ограничения, приостановки или прекращения действия вашей лицензии на Игру.\nc)В момент окончания срока действия данного Соглашения немедленно прекращается действие вашей лицензии на Игру.\nd)Положения разделов 2(b), 3, 4(d), 6, 9-19 продолжают действовать после расторжения настоящего Соглашения.",
+ "russianFontType":2,
+ "turkishText":"4. SÜRE.\na)Bölüm 1'de belirtilen ön koşulların yerine getirilmesine tabi olarak, Oyunu kullanmanız esnasında bu Sözleşme geçerli olacaktır. Taraflar, önceden makul bir bildirimde bulunmak kaydıyla, sebepli veya sebepsiz olarak bu Sözleşmeyi feshedebilir. Oyunun, size ait, gözetiminizde veya kontrolünüz altında olan tüm kopyalarını silerek ya da yok ederek bu Sözleşmeyi feshedebilirsiniz. BNEI, Oyunu kullanmayı sonlandırmanız nedeniyle size veya üçüncü bir tarafa karşı sorumlu olmayacaktır.\nb)BNEI'nin diğer haklarını sınırlamaksızın, bu Sözleşmenin şartlarına ve koşullarına uymamanız halinde BNEI Oyun lisansınızı derhal sınırlama, durdurma veya sonlandırma hakkına sahiptir.\nc)Bu Sözleşmenin sonlanmasının ardından Oyun lisansınız derhal sona erecektir.\nd)Bölüm 2(b), 3, 4(d), 6, 9,-19 bu Sözleşmenin sonlanması halinde geçerliliğini koruyacaktır.",
+ "turkishFontType":2,
+ "arabicText":"4. البنود\na )بناءً على موافقتك على الشروط المُسبقة المنصوص عليها في القسم (1)، ستظل هذه الاتفاقية سارية ونافذة بشكل تام أثناء استخدامك اللعبة. يجوز لأي طرف إنهاء هذه الاتفاقية بسبب أو بدون سبب في أي وقت، بشرط إرسال إخطار مُسبق خلال فترة زمنية معقولة. يجوز إنهاء هذه الاتفاقية عن طريق حذف أو إتلاف جميع نسخ اللعبة الموجودة بحوزتك أو التي تحتفظ بها أو تحت تصرفك. لن تتحمل شركة BNEI مسؤولية تجاهك أو تجاه أي جهة خارجية لإنهاء استخدامك للعبة.\nb )دون تقييد أي حقوق أخرى لشركة BNEI، في حالة عدم التزامك ببنود وشروط هذه الاتفاقية، تحتفظ شركة BNEI بالحق في تقييد رخصتك على الفور أو تعليقها أو إنهائها.\nc )عند إنهاء هذه الاتفاقية: تتوقف صلاحية الترخيص الممنوح لك للعبة على الفور.\nd )ستظل الأقسام (2)-(ب) و (3) و (4)-(د) و (6) و الأقسام من (9) إلى (19) سارية بعد إنهاء هذه الاتفاقية.",
+ "arabicFontType":2,
+ "dutchText":"4. DUUR.\na)Afhankelijk van uw naleving van de voorwaarden zoals beschreven in Clausule 1, blijft deze Overeenkomst volledig van kracht zolang u de Game gebruikt. Elk van beide partijen kan deze Overeenkomst te allen tijde met of zonder reden na een redelijke kennisgeving vooraf opzeggen. U kunt deze Overeenkomst beëindigen door alle exemplaren van de Game die in uw bezit zijn, door u bewaard worden of door u beheerd worden, te verwijderen of te vernietigen. BNEI zal niet aansprakelijk zijn jegens u of enige derde partij voor de beëindiging van uw gebruik van de Game.\nb)Indien u de voorwaarden en bepalingen van deze Overeenkomst niet naleeft, behoudt BNEI zich het recht voor, zonder beperking van enige andere rechten van BNEI, uw licentie voor de Game met onmiddellijke ingang te beperken, op te schorten of te beëindigen.\nc)Na beëindiging van deze Overeenkomst, wordt uw licentie voor deze Game onmiddellijk beëindigd.\nd)De Clausules 2(b), 3, 4(d), 6, 9,-19 blijven van kracht na beëindiging van deze Overeenkomst.",
+ "dutchFontType":2,
+ "chineseSText":"4. 条款。\na) 如果您满意第1节规定的先决条件,本协议在使用游戏时将保持完全有效。任何一方均可随时以合理的事先通知终止本协议。您可以通过删除或销毁您拥有、保管或控制的所有游戏副本来终止本协议。对于终止您使用游戏,BNEI对您或任何第三方概不负责。\nb) 在不限制BNEI的任何其他权利的前提下,如果您不遵守本协议的条款和条件,BNEI保留立即限制、暂停或终止您游戏许可的权利。\nc) 本协议终止后您的游戏许可将立即停止。\nd) 第2(b)、3、4(d)、6、9-19条在本协议终止后仍然有效。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_12",
+ "japaneseText":"\n5. 修正\n\n当社は、時期および理由の如何を問わず、その単独の裁量により、本規約を変更することができます。当社は、本規約に何らかの変更を加える場合には、当該変更について、1か月前までに通知するものとします。その方法は、本件ゲームを通じた告知などによるものとします。お客様は、かかる変更の効力発生日後も本件ゲームの利用を継続することにより、変更後の本規約に同意したものとみなされます。\n\n\n\nお客様がドイツの居住者である場合には、本条における上記規定に加えて、以下の追加条件が適用されます。\n\n\n\n当社は、時期を問わず、本規約を変更することができます。ただし、本規約における当事者の主要な契約上の義務を定める条項については、この限りではありません。当事者の主要な契約上の義務が本条に記載の方法によって変更されることはありません。当社は、本規約の変更案をお客様に告知し、本規約の新版の案文をお客様に提示するとともに、本規約の新版の効力発生日をお客様に通知します。いかなる変更も、6週間以上の猶予を付した書面(電子メールも可とします)による事前通知が条件となります。お客様は、本規約の新版の効力発生日から6週間以内に変更内容について拒絶する旨を明示しなかった場合には、本規約の変更に同意したものとみなされます。変更案に関する当該通知において、当社は、お客様に対し、6週間の異議申立権、および変更案に対する拒否を明示しない場合の効果について、明確かつ具体的にお知らせします。",
+ "englishUsText":"5. AMENDMENTS. BNEI reserves the right to change or modify this Agreement at any time and for any reason at BNEI’s sole discretion. If BNEI makes changes to this Agreement, we will provide one month prior notice of such changes, such as by providing notice through the Game. Your continued use of the Game after the effective date of such changes will confirm your acceptance of the revised Agreement.\n\nIf you are a resident of Germany, in addition to the above terms in this section, the following additional wording will apply to you:\n\nBNEI reserves the right to change or modify this Agreement at any time, with the exception of the provisions determining the parties' primary contractual obligations hereunder. The parties' primary contractual obligations will not be changed in the manner described in this section. BNEI will inform you of any proposed modification of this Agreement, provide you with the proposed new version of this Agreement and notify you of the date when the new Agreement will be implemented. Any change is subject to a prior written (e-mail sufficient) notice of six weeks. If you do not expressly refuse the respective modification within six weeks from the date on which the new Agreement is implemented, you are deemed to have approved the modification of the Agreement. In the aforementioned notice of the proposed modification, BNEI will inform you expressly and specifically about the right to object within the six week period and the consequences of not expressly refusing the proposed modification.",
+ "englishUsFontType":3,
+ "frenchText":"5. AVENANTS. BNEI se réserve le droit, à sa seule discrétion, de changer ou de modifier le présent Contrat à tout moment et pour quelque raison que ce soit. Si BNEI apporte des modifications au présent Contrat, vous en serez informé par une notification dans le jeu moyennant un préavis d’un mois. Votre utilisation du Jeu consécutive après la date d’entrée en vigueur de ces modifications vaut acceptation pleine et entière du présent Contrat modifié.\n\nSi vous résidez en Allemagne, en plus des dispositions exposées ci-dessus dans le présent article, la clause supplémentaire suivante s’applique :\n\nBNEI se réserve le droit, à sa seule discrétion, de changer ou de modifier le présent Contrat à tout moment, à l’exception des dispositions qui déterminent les principales obligations contractuelles des parties conformément au Contrat. Les principales obligations contractuelles des parties ne SERONT pas modifiées selon les modalités décrites dans le présent article. BNEI vous tiendra informé des propositions de modification du présent Contrat, vous communiquera la nouvelle version proposée du présent Contrat ainsi que la date à laquelle cette nouvelle version entrera en vigueur. Toute modification est soumise à un préavis de six semaines communiqué par écrit (un e-mail suffit). Si vous ne refusez pas expressément la modification en question dans un délai de six semaines à compter de la date d’entrée en vigueur du nouveau Contrat, vous êtes réputé ACCEPTER LA modification du Contrat. Dans l’avis susmentionné de la modification proposée, BNEI vous informera expressément de vos droits de refuser la modification proposée au cours du préavis de six semaines et des conséquences que vous encourez si vous ne manifestez pas expressément votre refus de ladite proposition.",
+ "frenchFontType":3,
+ "italianText":"5. CORREZIONI. BNEI si riserva il diritto di cambiare o modificare il presente Accordo in qualunque momento e per qualsiasi motivo a sua esclusiva discrezione. Se BNEI apporta delle modifiche al presente Accordo, è tenuta a notificare tali cambiamenti con un mese di preavviso, ad esempio pubblicando un avviso attraverso il Gioco. Se l'utente continua a utilizzare il Gioco dopo la data dell'effettiva entrata in vigore di tali modifiche, egli conferma la sua accettazione dell'Accordo revisionato.\n\nSe l'utente risiede in Germania, è soggetto ai seguenti termini aggiuntivi, oltre a quelli succitati nella presente sezione:\n\nBNEI si riserva il diritto di cambiare o modificare il presente Accordo in qualunque momento, fatte salve le disposizioni esposte di seguito che determinano i principali obblighi contrattuali delle parti. Tali obblighi non subiscono modifiche, come descritto nella presente sezione. BNEI È tenuta ad avvertire l'utente in merito a qualunque modifica proposta al presente Accordo, fornire all'utente la nuova versione dell'Accordo e notificare la data in cui il nuovo Accordo verrà implementato. Ogni cambiamento è soggetto a un preavviso scritto (è sufficiente un messaggio via e-mail) di sei settimane. Se l'utente non rifiuta esplicitamente la modifica entro sei settimane dalla data di implementazione del nuovo Accordo, si ritiene che abbia approvato la modifica. Nel preavviso succitato, BNEI è tenuta a informare l'utente, espressamente e nel dettaglio, riguardo al suo DIRITTO di obiezione entro sei settimane e riguardo alle conseguenze di un suo mancato rifiuto esplicito della modifica proposta.",
+ "italianFontType":3,
+ "germanText":"5. ÄNDERUNGEN: BNEI behält sich das Recht vor, diese Vereinbarung jederzeit, aus jedwedem Grund und nach BNEIs alleinigem Ermessen zu ändern oder zu modifizieren. Falls BNEI Änderungen an dieser Vereinbarung vornimmt, werden wir solche Änderungen einen Monat im Voraus ankündigen, z. B. in Form einer Benachrichtigung über das Spiel. Durch Ihre fortwährende Nutzung des Spiels nach dem Datum des Inkrafttretens solcher Änderungen bestätigen Sie Ihre Zustimmung zu der überarbeiteten Vereinbarung.\n\nWenn sich Ihr Wohnsitz in Deutschland befindet, gilt zusätzlich zu den vorstehend genannten Bestimmungen in diesem Abschnitt die folgende Formulierung für Sie:\n\nBNEI behält sich das Recht vor, diese Vereinbarung jederzeit und aus jedwedem Grund zu ändern oder zu modifizieren, mit Ausnahme der Bestimmungen, die die wesentlichen Vertragspflichten der Parteien hierunter festlegen. Die wesentlichen Vertragspflichten der Parteien werden nicht geändert wie in diesem Abschnitt BESCHRIEBEN. BNEI wird Sie über jede angedachte Modifizierung dieser Vereinbarung in Kenntnis setzen, Ihnen die angedachte neue Version dieser Vereinbarung zukommen lassen und Sie über das Datum benachrichtigen, an dem die neue Vereinbarung in Kraft treten wird. Alle Änderungen erfordern eine schriftliche Vorankündigung (E-Mail genügt), die sechs Wochen im Voraus erfolgen muss. Falls Sie die jeweiligen Modifizierungen nicht ausdrücklich innerhalb eines Zeitraums von sechs Wochen nach Inkrafttreten der neuen Vereinbarung ablehnen, wird dies als Ihre Zustimmung zu den Modifizierungen der Vereinbarung ausgelegt. In der besagten Ankündigung angedachter Modifizierungen WIRD BNEI Sie ausdrücklich und spezifisch auf das Recht hinweisen, innerhalb eines Zeitraums von sechs Wochen Einspruch einzulegen, sowie auf die Konsequenzen für den Fall, dass Sie die angedachten Modifizierungen nicht ausdrücklich zurückweisen.",
+ "germanFontType":3,
+ "spanishText":"5. MODIFICACIONES. BNEI se reserva el derecho a realizar cambios o modificaciones a este Contrato en cualquier momento y por cualquier razón a su absoluta discreción. En caso de que BNEI hiciera algún cambio en este Contrato, le avisaremos de ello con un mes de antelación, por ejemplo notificándoselo a través del Juego. Su uso continuado del Juego tras la fecha de entrada en vigor de tales cambios supondrá la aceptación por su parte del Contrato revisado.\n\nSi usted tiene su residencia en Alemania, además de las condiciones previas en la presente cláusula, también se le aplicarán las siguientes disposiciones:\n\nBNEI se reserva el derecho a realizar cambios o modificar el Contrato en cualquier momento, con excepción de las disposiciones en las que se establecen las obligaciones contractuales principales de las partes para el presente Contrato. Las obligaciones contractuales principales de las partes NO sufrirán cambios según se describe en la presente cláusula. BNEI le informará de cualquier modificación que proponga al presente Contrato, le facilitará la nueva versión propuesta y le anunciará la fecha en la que este nuevo Contrato vaya a entrar en vigor. Cualquier cambio deberá notificarse por escrito (bastará a tal efecto un correo electrónico) con una antelación de seis semanas. En caso de no rechazar expresamente la correspondiente modificación en el plazo de seis semanas desde la fecha de entrada en vigor del nuevo Contrato, se considerará QUE USTED acepta dicha modificación. En la mencionada notificación de la modificación propuesta, BNEI le informará de forma expresa y específica del derecho de objeción del que usted dispondrá durante un plazo de seis semanas, así como de las consecuencias de no rechazar expresamente la modificación propuesta.",
+ "spanishFontType":3,
+ "chineseTText":"5.修訂。BNEI 保留隨時基於任何原因自行修改本合約的權利。如果 BNEI 變更本合約,我們將於一個月前通知您相關事項,例如透過遊戲提供通知。在此類變更生效之日後,如果繼續使用本遊戲,將視為您接受修訂後的合約。\n\n\n\n如果您是德國居民,除了本條中的上述條款外,以下附加條款也將一體適用:\n\n\n\nBNEI 保留在任何時候變更或修改本合約的權利,但確定雙方根據本合約之主要合約義務的條款除外。雙方的主要合約義務不得以本條所述方式進行變更。BNEI 將通知您本合約的任何擬議修改,向您提供本合約的擬議新版本,並通知您新合約的實施日期。任何變更均須經過六週的事先書面(電子郵件足具效力)通知。如果您在新合約實施之日起六週內未明確拒絕相應修改,您將被視為已批准修改合約。在上述提議的修改通知中,BNEI 將明確具體說明在六週內反對的權利以及不明確拒絕提出修改的後果。",
+ "chineseTFontType":1,
+ "koreanText":"5. 개정. BNEI는 BNEI의 전적인 자체 재량에 따라 언제든 어떤 이유로든 본 계약을 변경하거나 수정할 권리를 보유합니다. BNEI가 본 계약을 변경하는 경우, 당사는 본 게임을 통해 고지하는 등의 방법으로 해당 변경 사항을 1개월 전에 사전 고지할 것입니다. 귀하가 해당 변경 사항의 발효일 후에도 본 게임을 계속 이용하는 것은 귀하가 개정된 계약에 동의함을 의미합니다.\n\n귀하가 독일에 거주하는 경우에는 위와 같은 본 절의 조건과 더불어 다음의 추가 문구도 귀하에게 적용됩니다.\n\nBNEI는, 본 계약에 따른 당사자들의 주된 계약상 의무를 규정한 조항들을 제외하고는, 언제든 본 계약을 변경하거나 수정할 권리를 보유합니다. 당사자들의 주된 계약상 의무는 본 절에 기술된 방식으로는 변경되지 않습니다. BNEI는 귀하에게 본 계약의 변경안을 통지하고 본 계약의 새로운 버전안을 제공하며 새로운 계약의 발효일을 통보할 것입니다. 모든 변경 사항에는 6주 전 사전 서면(이메일로 충분함) 고지 요건이 적용됩니다. 귀하가 새로운 계약의 발효일 전 6주 이내에 해당 변경 사항을 명시적으로 거부하지 않으면, 귀하는 본 계약의 해당 변경을 승인한 것으로 간주합니다. BNEI는 상기의 변경안 통지를 통해, 귀하가 6주의 기간 내에 거부할 권리가 있다는 점 그리고 변경안을 명시적으로 거부하지 않을 경우의 결과에 대해 귀하에게 명시적이고 구체적으로 안내할 것입니다.",
+ "koreanFontType":2,
+ "portugueseText":"5. ALTERAÇÕES. A BNEI se reserva o direito de, a qualquer momento e a seu exclusivo critério, alterar ou modificar este Contrato. Caso a BNEI venha a alterar este Contrato, avisaremos sobre tais mudanças com um mês de antecedência, por exemplo, apresentando um aviso no Jogo. Você confirmará que aceitou a nova versão do Contrato se continuar usando o Jogo após a data de entrada em vigor de tais alterações.\n\nAlém dos termos acima, o texto a seguir se aplica aos residentes da Alemanha:\n\nA BNEI se reserva o direito de, a qualquer momento, alterar ou modificar este Contrato, com exceção das disposições que determinam as principais obrigações contratuais das partes. As principais obrigações contratuais das partes não serão alteradas da forma descrita nesta seção. A BNEI enviará a você eventuais propostas de modificação deste Contrato, fornecerá a nova versão proposta dele e informará quando o novo Contrato entrará em vigor. Qualquer alteração está sujeita a um aviso prévio por escrito de seis semanas, sendo um e-mail suficiente. Caso você não rejeite expressamente tal modificação no prazo de seis semanas a contar da data de entrada em vigor do novo Contrato, consideraremos que você aprovou a modificação. No envio das propostas de modificação supramencionadas, a BNEI será explícita e específica quanto ao seu direito de objeção no prazo de seis semanas e quanto às consequências de não rejeitar expressamente as propostas de modificação.",
+ "portugueseFontType":2,
+ "russianText":"5. ВНЕСЕНИЕ ПОПРАВОК. Компания BNEI оставляет за собой право в любой момент вносить изменения в данное Соглашение по любой причине, на полное усмотрение компании BNEI. При внесении изменений в настоящее соглашение компания BNEI обязуется уведомить о таких изменениях за один месяц до их внесения, отправив уведомление через Игру. Продолжение использования вами Игры после даты вступления в силу этих изменений подтверждает ваше согласие с измененными условиями Соглашения.\n\nЕсли вы являетесь резидентом Германии, то, помимо указанных в этом разделе условий, вас также касаются следующие дополнительные формулировки:\n\nКомпания BNEI оставляет за собой право в любой момент вносить изменения в положения настоящего Соглашения, если они не являются положениями, оговаривающими первичные договорные обязательства сторон по настоящему Соглашению. Первичные договорные обязательства сторон не могут быть изменены указанным в этом разделе способом. КОМПАНИЯ BNEI обязуется информировать вас о любых планируемых изменениях настоящего Соглашения, предоставить вам новую планируемую версию Соглашения и уведомить о дате вступления в силу нового Соглашения. Внесению любого изменения будет предшествовать письменное уведомление (в виде электронного письма), отправляемое за шесть недель до принятия изменений. Если вы явным образом не выразите свое несогласие с принимаемыми изменениями в течение шести недель с даты вступления в силу новой версии Соглашения, то считается, что вы согласны с внесенными в Соглашение изменениями. В вышеуказанном уведомлении о предлагаемом изменении КОМПАНИЯ BNEI обязуется в явной форме информировать вас о праве выражения своего несогласия в течение шести недель, а также уведомить о последствиях отказа явно выразить несогласие с планируемым изменением.",
+ "russianFontType":2,
+ "turkishText":"5. DEĞİŞİKLİKLER. BNEI, kendi takdirine bağlı olmak üzere, bu Sözleşmeyi istediği zaman ve herhangi bir sebeple değiştirme veya modifiye etme hakkını saklı tutar. BNEI bu Sözleşmede değişiklik yaparsa bu değişiklikleri, Oyun aracılığıyla bildirim göndermek gibi bir yöntemle size bir ay öncesinden bildirecektir. Bu değişikliklerin geçerlilik tarihinden sonra Oyunu kullanmaya devam etmeniz, düzenleme yapılmış Sözleşmeyi kabul ettiğinizi doğrulayacaktır.\n\nAlmanya'da yaşıyorsanız bu bölümde geçen yukarıdaki koşullara ek olarak aşağıdaki ek ifadeler sizin için geçerli olacaktır:\n\nBNEI tarafların buradaki temel sözleşme yükümlülüklerini belirleyen hükümler hariç olmak üzere, bu Sözleşmeyi istediği zaman değiştirme veya modifiye etme hakkını saklı tutar. Tarafların temel sözleşme yükümlülükleri, bu bölümde açıklanan şekilde değiştirilmeyecektir. BNEI, bu Sözleşme için teklif edilen değişiklikler konusunda sizi bilgilendirecek, bu Sözleşmenin teklif edilen yeni versiyonunu sağlayacak ve yeni Sözleşmenin uygulanacağı tarihi bildirecektir. Değişiklikler altı hafta öncesinden yapılacak yazılı (e-posta yeterlidir) bildirime tabidir. İlgili değişikliği, yeni Sözleşmenin uygulanacağı tarihten önceki altı hafta içerisinde açıkça reddetmezseniz Sözleşme değişikliğini onaylamış sayılacaksınız. Yukarıda bahsedilen teklif edilen değişiklik bildiriminde, BNEI altı haftalık süre içindeki ret hakkınız ve teklif edilen değişikliği açıkça reddetmemenizin sonuçları hakkında sizi açık bir şekilde bilgilendirecektir.",
+ "turkishFontType":2,
+ "arabicText":"5. التعديلات\nتحتفظ شركة BNEI بالحق في تغيير هذه الاتفاقية أو تعديلها في أي وقت ولأي سبب وفقًا لتقدير شركة BNEI. إذا أجرت شركة BNEI تغييرات على هذه الاتفاقية، فسنرسل إخطارًا بهذه التغييرات قبل شهر واحد من إجرائها، مثل إرسال إخطار عبر اللعبة. سيؤكد استمرارك في استخدام اللعبة بعد تاريخ سريان هذه التغييرات موافقتك على الاتفاقية المعدلة.\n\nإذا كنت مقيمًا في ألمانيا، بالإضافة إلى الشروط المذكورة أعلاه في هذا القسم، فستنطبق عليك الصياغة الإضافية التالية:\n\nتحتفظ شركة BNEI بالحق في تغيير هذه الاتفاقية أو تعديلها في أي وقت، باستثناء الأحكام التي تحدد الالتزامات التعاقدية الأساسية للأطراف بموجب هذه الاتفاقية. لن تتغيّر الالتزامات التعاقدية الأساسية للأطراف على النحو المُبين في هذا القسم. ستقوم شركة BNEI بإبلاغك بأي تعديل مُقترح لهذه الاتفاقية، وتزويدك بالنسخة الجديدة المقترحة من هذه الاتفاقية، وإخطارك بالتاريخ الذي سيتم فيه تنفيذ الاتفاقية الجديدة. يخضع أي تغيير لإخطار مكتوب مُسبق (قد يُكتفى بإرسال بريد إلكتروني) بستة أسابيع. إذا لم ترفض التعديل المعني بشكل صريح في غضون ستة أسابيع من تاريخ تنفيذ الاتفاقية الجديدة، فسيتم اعتبار موافقتك على تعديل الاتفاقية. ستبلغك BNEI في الإخطار سابق الذكر بالتعديل المقترح صراحةً وبشكل محدد حول الحق في الاعتراض خلال فترة الستة أسابيع والنتائج المترتبة على عدم رفض التعديل المقترح بشكل صريح.",
+ "arabicFontType":2,
+ "dutchText":"5. AANPASSINGEN. BNEI behoudt zich het recht voor te allen tijde en om welke reden dan ook deze Overeenkomst naar eigen goeddunken van BNEI te wijzigen of aan te passen. Indien BNEI deze Overeenkomst wijzigt, zullen we u één maand van tevoren informeren over een dergelijke wijziging, zoals door middel van een bericht via de Game. Indien u na de effectieve ingangsdatum van dergelijke wijzigingen de Game blijft gebruiken, bevestigt u daarmee uw aanvaarding van de gewijzigde Overeenkomst.\n\nIndien u woonachtig bent in Duitsland is in aanvulling op bovenstaande voorwaarden in deze Clausule het volgende op u van toepassing:\n\nBNEI behoudt zich het recht voor te allen tijde deze Overeenkomst te wijzigen of aan te passen, met uitzondering van de bepalingen hierna met betrekking tot de primaire contractuele verplichtingen van de partijen. De primaire contractuele verplichtingen van de partijen worden niet gewijzigd op de manier die in deze Clausule wordt beschreven. BNEI zal u op de hoogte brengen van elke voorgestelde wijziging inzake deze Overeenkomst, u voorzien van de voorgestelde nieuwe versie van deze Overeenkomst en u op de hoogte brengen van de datum waarop de nieuwe Overeenkomst geëffectueerd zal worden. Elke wijziging is onderhevig aan een voorafgaande schriftelijke kennisgeving van zes weken, waarbij een e-mail voldoet. Indien u de betreffende wijziging niet uitdrukkelijk weigert binnen zes weken na de datum waarop de nieuwe overeenkomst geëffectueerd wordt, wordt u geacht de wijziging van de Overeenkomst te hebben aanvaard. In voornoemde kennisgeving van de voorgestelde wijziging zal BNEI u uitdrukkelijk en specifiek wijzen op uw recht om binnen de periode van zes weken bezwaar te maken en de gevolgen wanneer u de voorgestelde wijziging niet uitdrukkelijk weigert.",
+ "dutchFontType":2,
+ "chineseSText":"5. 修订。BNEI保留随时基于任何原因自行修改本协议的权利。如果BNEI更改本协议,我们将提前一个月发出更改通知,例如通过游戏提供通知。在此类更改生效之日后,如果继续使用本游戏,将视为您接受修订后的协议。\n\n如果您是德国居民,除了本节中的上述条款外,以下附加条款也将适用于您:\n\nBNEI保留在任何时候更改或修改本协议的权利,但确定双方根据本协议的主要合同义务的条款除外。双方的主要合同义务不得以本节所述方式进行变更。BNEI 将通知您本协议的任何拟议修改,向您提供本协议的拟议新版本,并通知您新协议的实施日期。任何更改均须经过六周的事先书面(电子邮件充分)通知。如果您在新协议实施之日起六周内未明确拒绝相应修改,将视为您已批准修改协议。在上述提议的修改通知中,BNEI 将明确具体说明在六周内反对的权利以及不明确拒绝提出修改的后果。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_13",
+ "japaneseText":"\n6. 本件ゲームの修正\n\n当社は、合理的な事前通知により、本件ゲームまたはそのいかなる機能もしくは部分についても、一時的または永久的に修正し、または中止することができます。なお、緊急事態または絶対的に必要な場合においては、かかる事前通知を要しないものとします。お客様は、本件ゲームまたはそのいかなる部分のいかなる修正、停止または中止についても当社が責任を負わないことに、同意しているものとします。",
+ "englishUsText":"6. MODIFICATION OF THE GAME. BNEI reserves the right to modify or discontinue, temporarily or permanently, the Game or any features or portions thereof with prior reasonable notice and, in case of emergency or if absolutely necessary, without prior notice. You agree that BNEI will not be liable for any modification, suspension, or discontinuance of the Game or any part thereof.",
+ "englishUsFontType":3,
+ "frenchText":"6. MODIFICATION DU JEU. BNEI se réserve le droit de modifier ou de suspendre, temporairement ou définitivement, le Jeu ou un quelconque service ou élément du Jeu moyennant un préavis raisonnable et, en cas d’urgence ou de nécessité absolue, sans préavis. Vous acceptez que BNEI ne soit pas tenu responsable pour toute modification, suspension ou interruption du Jeu, en tout ou partie.",
+ "frenchFontType":3,
+ "italianText":"6. MODIFICA DEL GIOCO. BNEI si riserva il diritto di modificare o interrompere, per un tempo determinato o indeterminato, il Gioco o qualunque funzione o sezione dello stesso, dandone ragionevole preavviso o, in casi di emergenza o se assolutamente necessario, senza alcun preavviso. L'utente riconosce che BNEI non è responsabile di eventuali modifiche, sospensioni o interruzioni del Gioco o di sezioni di esso.",
+ "italianFontType":3,
+ "germanText":"6. MODIFIZIERUNG DES SPIELS: BNEI behält sich das Recht vor, das Spiel oder jedwede seiner Funktionen oder Elemente nach angemessener Vorankündigung oder (in Notfällen oder falls absolut erforderlich) ohne Vorankündigung zu modifizieren oder vorübergehend oder dauerhaft einzustellen. Sie stimmen zu, dass BNEI für keinerlei Modifizierung, Aussetzung oder Einstellung des Spiels oder jedweder seiner Elemente haftbar ist.",
+ "germanFontType":3,
+ "spanishText":"6. MODIFICACIÓN DEL JUEGO. BNEI se reserva el derecho a modificar o interrumpir de forma temporal o permanente el Juego o cualquiera de sus características o partes y debe avisar sobre ello con una antelación razonable, pero, en caso de emergencia o de absoluta necesidad, podrá hacerlo sin previo aviso. Usted acepta que BNEI no incurrirá en responsabilidad alguna por la modificación, suspensión o interrupción del Juego o de cualquiera de sus partes.",
+ "spanishFontType":3,
+ "chineseTText":"6.遊戲修改。BNEI 保留在事先合理通知的情況下,暫時或永久性修改或終止遊戲或任何功能或部分內容的權利,如果發生緊急情況或絕對必要的話,恕不另行通知。您同意 BNEI 不對遊戲或其任何部分的任何修改、暫停或中止負責。",
+ "chineseTFontType":1,
+ "koreanText":"6. 게임의 변경. BNEI는 합리적인 사전 고지 후(단 비상 시나 절대적으로 필요한 경우에는 사전 고지 없이) 본 게임 또는 그 기능이나 일부를 임시 혹은 영구적으로 변경하거나 중단할 권리를 보유합니다. 귀하는 BNEI가 본 게임 또는 그 일부의 변경, 정지 혹은 중단에 대하여 아무런 책임도 없다는 데 동의합니다.",
+ "koreanFontType":2,
+ "portugueseText":"6. MODIFICAÇÃO DO JOGO. A BNEI se reserva o direito de modificar ou descontinuar, temporária ou permanentemente, o Jogo, seus recursos ou parte deles mediante um aviso prévio razoável. Em caso de emergência ou necessidade absoluta, sem tal aviso prévio. Você concorda que a BNEI não será responsável por nenhuma modificação, suspensão ou descontinuação do Jogo ou qualquer parte dele.",
+ "portugueseFontType":2,
+ "russianText":"6. ВНЕСЕНИЕ МОДИФИКАЦИЙ В ИГРУ. Компания BNEI оставляет за собой право вносить в Игру модификации или приостанавливать, на временной или постоянной основе доступ к Игре или любым ее функциям или частям без заблаговременного уведомления, в чрезвычайном случае или в случае крайней необходимости, без предварительного уведомления. Вы соглашаетесь с тем, что компания BNEI не будет нести ответственность за внесение в Игру модификаций, приостановку или прекращение предоставления доступа к Игре или любой ее части.",
+ "russianFontType":2,
+ "turkishText":"6. OYUNDA DEĞİŞİKLİK. BNEI, oyunu veya özelliklerini ya da kısımlarını, önceden makul bir bildirimde bulunarak veya acil durumda ya da kesinlikle gerekli olduğunda önceden bildirimde bulunmadan, geçici veya kalıcı olarak değiştirme ya da sonlandırma hakkını saklı tutar. BNEI'nin Oyunun veya herhangi bir kısmının değiştirilmesi, durdurulması veya sonlandırılmasından sorumlu olmayacağını kabul etmektesiniz.",
+ "turkishFontType":2,
+ "arabicText":"6. إجراء تعديلات على اللعبة\nتحتفظ شركة BNEI بالحق في تعديل إجراء تعديلات على اللعبة أو أي ميزات أو أجزاء منها أو إيقافها مؤقتًا أو بشكل دائم وإرسال إخطار مسبق خلال مدة زمنية معقولة، أو دون إخطار مسبق في حالات الطوارئ أو الضرورة القصوى. توافق على عدم تحمّل شركة BNEI المسؤولية عن أي تعديل أو إيقاف مؤقت أو إيقاف كلي للعبة أو أي جزء منها.",
+ "arabicFontType":2,
+ "dutchText":"6. WIJZIGING VAN DE GAME. BNEI behoudt zich het recht voor om de Game of enige functies of delen daarvan te wijzigen of te staken, al dan niet tijdelijk of permanent, na voorafgaande redelijke kennisgeving en, in geval van nood of indien absoluut noodzakelijk, zonder voorafgaande kennisgeving. U stemt ermee in dat BNEI niet aansprakelijk zal zijn voor enigerlei modificatie, opschorting of staking van de Game of enig deel daarvan.",
+ "dutchFontType":2,
+ "chineseSText":"6. 游戏修改。BNEI保留在事先合理通知的情况下暂时或永久地修改或终止游戏或任何功能或部分内容的权利,如果发生紧急情况或绝对必要的话,恕不另行通知。您同意,BNEI将不对游戏或其任何部分的任何修改、暂停或中止负责。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_14",
+ "japaneseText":"\n7. ユーザーコンテンツ\n\n何らかの通信、情報、知的財産、素材、メッセージ、写真、グラフィックス、動画、URLその他の事項またはコンテンツを本件ゲームに投稿すること(投稿された当該コンテンツ等を「ユーザーコンテンツ」といいます)により、適用法上許容される限りにおいて、お客様は、ご自身へのさらなる通知または対価のいずれもなしに、知的財産権が存続する全期間にわたり、本件ゲームならびにこれに関する物品およびサービスに関連してユーザーコンテンツを利用するための非独占的、無償、譲渡可能かつ再許諾可能の全世界におけるライセンスを、本規約により当社に対し許諾したことになります。これには、既知であるか今後考案されるかを問わずあらゆる方法および媒体による複製、複写、翻案、修正、実施、派生物作成、表示、公表、放映、送信その他の方法による利用、配布、活用および公開の権利も含まれます。適用法上許容される限りにおいて、お客様は、当社および第三者によるユーザーコンテンツの利用について、著作者人格権および実演家人格権を行使しないものとします。当社に許諾されたライセンスは、本規約の終了または取消しの後においても、存続するものとします。",
+ "englishUsText":"7. USER CONTENT. By posting any communication, information, intellectual property, material, messages, photos, graphics, videos, URLs, and other items or content to the Game (“User Content”), to the extent permitted by applicable local law, you hereby grant BNEI a non-exclusive, royalty-free, fully transferable and sub-licensable worldwide license for the whole duration of the applicable legal protection of intellectual rights to use the User Content in connection with the Game and related goods and services including the rights to reproduce, copy, adapt, modify, perform, create derivative works from, display, publish, broadcast, transmit, or otherwise use, distribute, exploit and communicate to the public by any and all means and media whether now known or hereafter devised without any further notice or compensation of any kind to you. To the extent permitted by applicable law, you hereby waive any moral rights of paternity, publication, reputation, or attribution with respect to BNEI’s and other players’ use and enjoyment of such assets in connection with the Game and related goods and services under applicable law. The license grant to BNEI survives any termination or revocation of this Agreement.",
+ "englishUsFontType":3,
+ "frenchText":"7. CONTENU UTILISATEUR. En affichant dans le Jeu toute communication, information, propriété intellectuelle, ressource, message, photo, illustration, vidéo, URL et autre élément ou contenu (« Contenu utilisateur »), dans toute la mesure permise par la loi locale applicable, vous conférez expressément à BNEI une licence non exclusive, gratuite, entièrement transférable, pouvant être concédée en sous-licence et mondiale, d’utiliser le Contenu utilisateur, en relation avec le Jeu et les biens et services liés, y compris les droits de reproduire, copier, adapter, modifier, exécuter, créer des œuvres dérivées, afficher, publier, diffuser, transmettre ou utiliser, distribuer, exploiter et communiquer autrement au public par tous les moyens et médias, actuels ou à venir, sans aucun avis préalable ou compensation de quelque nature que ce soit pendant toute la durée de protection accordée par les droits de propriété intellectuelle applicables. Dans la mesure où la loi applicable le permet, vous renoncez aussi expressément aux droits moraux de paternité, publication, réputation ou attribution concernant l’utilisation et la jouissance par BNEI et d’autres joueurs desdits actifs en relation avec le Jeu et les biens et services liés aux termes du droit applicable. La cession de licence à BNEI reste en vigueur après résiliation ou révocation du présent Contrat.",
+ "frenchFontType":3,
+ "italianText":"7. CONTENUTI GENERATI DALL'UTENTE. Pubblicando comunicazioni, informazioni, proprietà intellettuali, materiali, messaggi, foto, illustrazioni grafiche, video, URL e altri oggetti o contenuti nel Gioco (\"Contenuti generati dall'utente\"), nella misura consentita dalle norme locali applicabili, l'utente concede a BNEI una licenza gratuita non esclusiva, pienamente trasferibile, concedibile in licenza e valida in tutto il mondo per l'intera durata della protezione legale applicabile ai diritti intellettuali, che consente di utilizzare i Contenuti generati dall'utente in connessione al Gioco e i relativi beni e servizi, incluso il diritto di riprodurre, copiare, adattare, modificare, eseguire, creare prodotti derivati da, visualizzare, pubblicare, trasmettere, diffondere o altrimenti utilizzare, distribuire, sfruttare e comunicare al pubblico tali contenuti con qualunque mezzo o strumento disponibile ora o in futuro, senza alcun obbligo di preavviso o di offrire un compenso di alcun tipo all'utente. Nella misura consentita dalle norme applicabili, l'utente rinuncia a ogni diritto morale di paternità, pubblicazione, reputazione o attribuzione nei confronti dell'utilizzo e del godimento di tali contenuti connessi al Gioco e dei relativi beni e servizi da parte di BNEI e di altri giocatori nel rispetto delle norme applicabili. La licenza concessa a BNEI continua a essere valida anche dopo la conclusione o la revoca del presente Accordo.",
+ "italianFontType":3,
+ "germanText":"7. BENUTZERINHALTE: Indem Sie jegliche Art von Kommunikation, Information, geistigem Eigentum, Material, Nachrichten, Fotos, Grafiken, Videos, URLs und anderen Elementen oder Inhalten im Spiel posten („Benutzerinhalte“), gewähren Sie BNEI im Rahmen anwendbarer lokaler Gesetze hiermit für die Gesamtdauer des anwendbaren rechtlichen Schutzes geistiger Eigentumsrechte eine nicht exklusive, gebührenfreie, komplett übertragbare und unterlizenzierbare weltweite Lizenz, die Benutzerinhalte im Zusammenhang mit dem Spiel und zugehörigen Produkten und Diensten zu nutzen. Dies umfasst die Rechte, Benutzerinhalte zu reproduzieren, zu kopieren, zu adaptieren, zu modifizieren, darzubieten, als Grundlage abgeleiteter Werke zu verwenden, darzustellen, zu veröffentlichen, zu senden, zu übertragen oder anderweitig zu nutzen, zu vertreiben, zu vermarkten und der Öffentlichkeit mitzuteilen, durch alle derzeit bekannten oder zukünftig entwickelten Mittel und Medien, ohne weitere Benachrichtigung oder Vergütung jeglicher Art an Sie. Insofern anwendbare Gesetze es erlauben, verzichten Sie hiermit auf jegliche moralischen Rechte der Urheberschaft, Veröffentlichung, Reputation oder Nennung bezüglich der Nutzung und Auswertung solcher Elemente durch BNEI und andere Spieler im Zusammenhang mit dem Spiel sowie mit zugehörigen Produkten und Diensten im Rahmen anwendbarer Gesetze. Die Gewährung dieser Lizenz an BNEI überdauert jegliche Kündigung oder Auflösung dieser Vereinbarung.",
+ "germanFontType":3,
+ "spanishText":"7. CONTENIDO DE USUARIO. Si usted publica alguna comunicación, información, contenido sujeto a propiedad intelectual, artículo, mensaje, fotografía, material gráfico, vídeo, URL o cualesquiera otros elementos o contenidos en el Juego (en lo sucesivo, «Contenido de usuario») en la medida en que así lo permita la legislación local aplicable, estará consintiendo, en virtud del presente acto, en conceder a BNEI una licencia no exclusiva, exenta de derechos de autor, totalmente transferible y sublicenciable y de ámbito mundial durante todo el periodo de vigencia de la protección legal aplicable de los derechos intelectuales para poder utilizar el Contenido de usuario en relación con el Juego y con los productos y servicios relacionados, incluidos los derechos para reproducir, copiar, adaptar, modificar, presentar, crear obras derivadas, exhibir, publicar, emitir, transmitir o utilizar de cualquier otra forma, distribuir, explotar y comunicar al público general por todos y cualesquiera medios y vías que se conozcan actualmente o se conciban en el futuro, sin necesidad de comunicárselo a usted previamente o de compensarle de ninguna forma. En la medida en que así lo permita la legislación aplicable, por el presente acto usted renuncia a cualquier derecho moral de autoría, publicación, reputación o atribución con respecto al uso y disfrute que BNEI y otros jugadores hagan de tales contenidos en relación con el Juego y con los productos y servicios relacionados. La licencia concedida a BNEI en virtud de este documento perdurará tras la rescisión o revocación del presente Contrato.",
+ "spanishFontType":3,
+ "chineseTText":"7.使用者內容。在適用的當地法律允許的範圍內,發布任何與遊戲(「使用者內容」)相關的通訊、資訊、智慧財產權、材料、訊息、照片、圖形、影片、URL 和其他項目或內容,您特此授予 BNEI 在適用法律保護的整個期限內,非獨佔、免版稅、完全可轉讓和分授權的全球授權,來使用與遊戲相關的使用者內容以及相關商品和服務,包括複製、修改、執行、製作衍生作品、展示、出版、廣播、傳播,或以其他方式使用、散發、利用和傳播,透過任何和所有媒體和手段,無需向您做任何進一步通知或任何形式的賠償。在適用法律允許的範圍內,您特此放棄與 BNEI 及其他玩家在遊戲中使用和享受此類資產相關的創始、出版、聲譽或歸屬的任何道德權利,以及相關商品和服務的適用法律。授予 BNEI 的授權在本合約終止或撤銷之後仍然存在。",
+ "chineseTFontType":1,
+ "koreanText":"7. 사용자 콘텐츠. 귀하는 현지의 관련 법이 허용하는 범위에서 통신, 정보, 지적재산권, 소재, 메시지, 사진, 그래픽, 동영상, URL 및 기타 아이템 혹은 콘텐츠를 본 게임에 게시(\"사용자 콘텐츠\")함으로써, 사용자 콘텐츠를 본 게임 그리고 관련 재화 및 서비스와 관련하여 사용할 비독점적이고 로열티 없고 전적으로 양도 및 2차 라이선스 부여 가능한 전 세계적 라이선스(여기에는 귀하에게 향후 일체의 고지나 보상을 제공함 없이, 현재 알려져 있거나 미래에 개발될 수단 및 미디어를 통해 복사, 복제, 각색, 변경, 공연, 파생물 제작, 전시, 출판, 방송, 전송, 또는 기타의 방법으로 이용, 배포, 활용, 대중에게 전달할 권리가 포함됨)를 지적재산권 관련 법에 따라 보호되는 전 기간에 걸쳐 BNEI에게 부여합니다. 관련 법이 허용하는 범위에서, 귀하는 BNEI 및 다른 플레이어가 본 게임 그리고 관련 재화 및 서비스와 관련하여 이용하고 누리는 저작, 출판, 평판 혹은 속성에 대해 관련 법상 인정되는 일체의 저작인격권을 포기합니다. BNEI에게 부여되는 라이선스는 본 계약이 해지 혹은 철회되더라도 계속 유효합니다.",
+ "koreanFontType":2,
+ "portugueseText":"7. CONTEÚDO DE USUÁRIO. Ao publicar qualquer comunicado, informação, propriedade intelectual, material, mensagem, foto, gráfico, vídeo, URL e outros itens ou conteúdos no Jogo (\"Conteúdo de Usuário\"), observados os limites da lei aplicável local, você ora concede à BNEI uma licença mundial não exclusiva, livre de royalties, totalmente transferível e sublicenciável durante todo o período de proteção de direitos de propriedade intelectual previsto na lei aplicável para usar o Conteúdo de Usuário em relação ao Jogo e produtos e serviços relacionados, incluindo os direitos de reproduzir, copiar, adaptar, modificar, executar, criar obras derivadas, exibir, publicar, transmitir ou, de outra forma, usar, distribuir, explorar e comunicar ao público por todo e qualquer meio e mídia ora conhecida ou ainda a ser inventada, sem nenhuma notificação ou remuneração devida a você. Observados os limites da lei aplicável, você ora renuncia a eventuais direitos morais de autoria, publicação, reputação ou atribuição com relação ao uso pela BNEI e por outros jogadores, bem como à fruição de tais recursos em relação ao Jogo e a produtos e serviços relacionados nos termos da lei aplicável. A licença concedida à BNEI subsiste à eventual extinção ou revogação deste Contrato.",
+ "portugueseFontType":2,
+ "russianText":"7. ПОЛЬЗОВАТЕЛЬСКИЙ КОНТЕНТ. Размещая в Игре переписку, информацию, интеллектуальную собственность, материалы, сообщения, фотографии, графические объекты, видео, ссылки URL или другие объекты или контент («Пользовательский контент») в случаях, разрешенных действующим законодательством, вы предоставляете компании BNEI неэксклюзивную, безвозмездную, полностью уступаемую и передаваемую по сублицензии, неограниченную территориально лицензию, действующую на протяжении всего срока действия законов по защите авторских и интеллектуальных прав, на использование Пользовательского контента в связи с Игрой и сопутствующими товарами и услугами, включая права на воспроизведение, копирование, адаптацию, изменение, выполнение, создание производных работ, отображение, публикацию, трансляцию, передачу или иной вид использования, распространения, эксплуатации и обнародования при помощи любых средств и носителей, как известных в настоящее время, так и разработанных в будущем, без уведомления или любого рода вознаграждения в вашу пользу. В степени, допустимой действующим законодательством, настоящим вы отказываетесь от каких-либо моральных прав на авторство, публикацию, репутацию или упоминание имени автора в отношении использования таких активов компанией BNEI и другими пользователями в связи с Игрой и сопутствующими товарами и услугами, согласно действующему законодательству. Лицензия, предоставляемая компании BNEI, остается в силе после прекращения действия или аннулирования настоящего Соглашения.",
+ "russianFontType":2,
+ "turkishText":"7. KULLANICI İÇERİĞİ. Geçerli yerel yasanın izin verdiği ölçüde, Oyuna iletişim, bilgi, fikir hakkı, materyal, mesaj, fotoğraf, grafik, video, URL ve diğer öğeler ya da içerik (“Kullanıcı İçeriği”) göndererek BNEI'ye, size bildirimde bulunmadan veya herhangi bir tazminat ödemeden, çoğaltma, kopyalama, uyarlama, değiştirme, uygulama, türevler üretme, gösterme, yayınlama, iletme veya başka şekilde kullanma, dağıtma, faydalanma ve herhangi bir yöntemle ve şu an bilinen ya da bundan sonra tasarlanacak olan bir ortamı kullanarak halka açıklama hakları dahil fakat bunlarla sınırlı olmamak üzere, Kullanıcı İçeriğini, fikri mülkiyet haklarının geçerli yasal koruma süresi boyunca, Oyunla ve ilgili mallar ve hizmetlerle bağlantılı olarak kullanmak üzere özel olmayan, telifsiz, tamamen devredilebilir ve dünya çapında alt lisansı verilebilir bir lisans vermektesiniz. Geçerli yasanın izin verdiği ölçüde, BNEI'nin ve diğer oyuncuların, bu varlıkları ilgili yasa uyarınca Oyun ve ilgili mallar ve hizmetlerle bağlantılı olarak kullanması ve faydalanmasına ilişkin kaynak, yayınlama, itibar veya öz nitelik manevi haklarından işbu vesile ile feragat etmektesiniz. BNEI'ye verilen lisans bu Sözleşmenin feshi veya iptali halinde geçerliliğini koruyacaktır.",
+ "turkishFontType":2,
+ "arabicText":"7. المحتوى الخاص بالمستخدم\nمن خلال نشر أي اتصال أو معلومات أو ملكية فكرية أو مواد أو رسائل أو صور أو رسومات أو مقاطع فيديو أو عناوين URL أو عناصر أخرى أو محتوى في اللعبة (\"محتوى المستخدم\") للحد الذي يسمح به القانون المحلي المعمول به، فإنك بذلك تمنح BNEI ترخيصًا دوليًا غير حصري قابلاً للنقل وللترخيص من الباطن وغير خاضع لأي رسوم امتياز طوال مدة الحماية القانونية السارية بشأن حقوق الملكية الفكرية في استخدام المحتوى الخاص بالمستخدم، فيما يتعلق باللعبة والسلع والخدمات ذات الصلة، بما في ذلك حقوق الاستخراج أو النسخ أو التنقيح أو التعديل أو التنفيذ أو إنشاء أعمال اشتقاقية أو العرض أو النشر أو البث أو النقل أو الاستخدام بأي طريقة أخرى أو التوزيع أو الاستغلال وإعلام الجمهور بأي طريقة أو وسيلة من وسائل الإعلام سواء كانت معروفة الآن، أو جرى ابتكارها فيما بعد دون إرسال أي إخطار آخر إليك أو استحقاقك للتعويض من أي نوع. في نطاق الحدود التي يسمح بها القانون المعمول به، فإنك تتنازل بموجب هذه الوثيقة عن أي حقوق معنوية خاصة بالطبع أو النشر أو السمعة أو الإسناد فيما يتعلق باستخدام BNEI واستخدام اللاعبين الآخرين وانتفاعهم بهذه الأصول، فيما يتعلق باللعبة والسلع والخدمات ذات الصلة بموجب القوانين السارية. يظل الترخيص الممنوح لشركة BNEI ساريًا وإن تم إنهاء هذه الاتفاقية أو إبطالها.",
+ "arabicFontType":2,
+ "dutchText":"7. GEBRUIKERSINHOUD. Door enigerlei communicatie, informatie, intellectueel eigendom, materiaal, berichten, foto's, grafische afbeeldingen, video's, URL's en andere items of inhoud voor de Game (“Gebruikersinhoud”) te publiceren, verleent u BNEI, in zoverre toegestaan door toepasselijke lokale wetgeving, bij dezen een niet-exclusieve, royaltyvrije, volledig overdraagbare en sublicentieerbare wereldwijde licentie voor de gehele duur van de toepasselijke wettelijke bescherming van intellectuele rechten om de Gebruikersinhoud te gebruiken in samenhang met de Game en gerelateerde goederen en diensten, inclusief het recht om de Gebruikersinhoud te reproduceren, kopiëren, aan te passen, te modificeren, uit te voeren, afgeleide werken van te maken, weer te geven, publiceren, uitzenden, verzenden of anderszins gebruiken, verspreiden, exploiteren en communiceren aan het publiek door middel van enigerlei middelen en media, ongeacht of deze nu bekend zijn of hierna worden bedacht zonder enige kennisgeving aan u of zonder compensatie van welke aard dan ook aan u. Voor zover toegestaan door toepasselijke wetgeving, doet u hierbij afstand van alle morele rechten op auteurschap, publicatie, reputatie of toeschrijving met betrekking tot het gebruik en genot van BNEI en andere spelers van dergelijke materialen in verband met de Game en gerelateerde goederen en diensten onder toepasselijk recht. De aan BNEI verleende licentie blijft van kracht na beëindiging of intrekking van deze Overeenkomst.",
+ "dutchFontType":2,
+ "chineseSText":"7. 用户内容。在适用的当地法律允许的范围内,发布任何与游戏(“用户内容”)相关的通信、信息、知识产权、材料、消息、照片、图形、视频、URL和其他项目或内容,您特此授予BNEI在适用法律保护的整个期限内获得非独占、免版税、完全可转让、可再许可的全球许可,以便使用与游戏相关的用户内容以及相关商品和服务,包括通过任何及所有媒体和手段复制、修改、执行、制作衍生作品、展示、出版、广播、传播或以其他方式使用、分发、利用和传播,无需向您做任何进一步通知或任何形式的赔偿。在适用法律允许的范围内,您特此放弃与BNEI及其他玩家使用和享受与游戏及适用法律下相关产品和服务等资产有关的原创、出版、声誉或归属的任何道德权利。授予BNEI的许可在本协议终止或撤销之后仍然存在。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_15",
+ "japaneseText":"\n8. オンライン上の行為\n\n当社の故意または重過失による場合を除き、当社は、いかなるユーザーの行為についても、それが本件ゲームの利用に関係するか否かにかかわらず、何らの責任も負いません。当社は、お客様が本第8条の規定その他本規約の何らかの条件に違反した場合には、いつでもお客様による本件ゲームの利用権を停止しまたは失効させることができるものとします。当社は、本件ゲームにおいてアップロード、公表、保存または表示(総称して「投稿」)されたいかなるユーザーコンテンツについても、(たとえば著作権者からの請求に対する対応として)審査することができるものとします。ただし、本件ゲーム内のプライベートメッセージの一部としてシェアされたユーザーコンテンツについては、当社は、少なくとも当該通信の一方からその内容が(たとえば、好ましくないメッセージとして当社への通報により)提出された場合を除き、その内容のスクリーニングまたは審査のいずれも実施しません。当社は、いかなるユーザーコンテンツについても、削除する権利およびオンライン化を拒否する権利を有します。当社は、本件ゲームに投稿されたユーザーコンテンツのいずれについても、日常的にスクリーニング、編集または監視を行うわけではありません。ただし、当社は、本件ゲームを通じて投稿されたいかなるユーザーコンテンツについても、それが本規約に違反し、第三者の権利を侵害し、かつ/または適用のある法律、規則もしくは規制に違反するとの判断を自己の合理的裁量により下した場合には、削除、スクリーニングまたは編集を行うことができるとともに、かかる措置について絶対的裁量を有するものとします。お客様は、本件ゲームについて過去に利用停止処分または退会処分を受けたことがある場合には、本件ゲームを利用することができません。お客様は、自らが投稿しまたはユーザーもしくは第三者に送信した一切のユーザーコンテンツについて、単独で責任を負うものとします。とりわけ、お客様は、本件ゲームに関連して以下のいずれの行為についても、自ら行わないこと、試みないこと、かつ他者に行わせないことについて、同意しているものとします。\n\n\n\na) 不法、誹謗、中傷、不快、わいせつ、卑猥、下品、低俗、淫ら、露骨な性表現、いやがらせ、脅迫、プライバシー権侵害、パブリシティ権侵害、悪態、扇動もしくは詐欺に当たるユーザーコンテンツ、不法その他の反社会的な行為(ハッキングも含まれます)を助長しもしくは促進するユーザーコンテンツ、何らかの集団もしくは個人に対する人種差別、偏見、物理的危害その他の危害を助長するユーザーコンテンツまたは他の何らかの点で好ましくないユーザーコンテンツを投稿すること。\n\nb) 他者の特許権、商標権、営業秘密、著作権その他の知的財産権または財産権を侵害するまたはそのおそれのあるユーザーコンテンツを投稿すること。\n\nc) 商業的活動または商取引(商業目的の広告または勧誘の送信も含まれます)に関与すること。\n\nd) いかなる者(ご自身も含まれます)に関するものであれ、個人情報を入力、開示または配布すること。\n\ne) 他者(当社の役員、フォーラムリーダー、ガイド、ホスト、従業員または代理人も含まれます)になりすますこと、またはお客様と他者との関係性について詐称しその他何らかの方法で不実の表示をすること。\n\nf) 本件ゲーム、その通常のプレイもしくは会話の流れを妨害もしくは阻害し、または下品な言葉、ののしり、過剰な叫び声(全部大文字など)、スパム行為もしくは本件ゲームの他のユーザーを害する他の何らかの妨害的もしくは有害な方法を用いること。\n\ng) バグ、エラーその他の設計上の瑕疵を利用することにより、本件ゲームに対する不正なアクセス権を取得し、他のプレイヤーとの関係で不当に有利な状況を獲得し、または本件ゲームに関連してチート行為もしくは不正利用を行うこと。かかる行為には、本件ゲームのうちアクセス権限を有しない部分にアクセスすること、またはボット、エミュレーターその他の不正な第三者のツールを用いることも含まれますが、これらに限定されるものではありません。\n\nh) 本件ゲームのルールに則った他のユーザーによる本件ゲームのプレイの享受を妨害することとなる行為、または当該プレイの享受のための本件ゲームの維持に際して当社もしくはプラットフォームプロバイダーにおける費用その他の負担を増加させることとなる行為をすること。\n\ni) オンラインプレイ中に意図的にネットワークを切断すること、または他の一定のプレイヤーに繰り返し負けることで当該プレイヤーのランキングの上昇もしくは本件ゲーム内でのカウント獲得を助けること。\n\nj) 本件仮想アイテムまたは本件ゲーム通貨について、本件ゲーム外において取引、売却、オークションその他の譲渡を行うかまたは譲渡を試みること。\n\nk) 上記のほか、本規約の規定その他当社から告知されたポリシーに違反するか、または当社に責任を負わせること。",
+ "englishUsText":"8. ONLINE CONDUCT. Unless through the intentional fault or gross negligence of BNEI, BNEI is not responsible or liable for the conduct of any users, whether or not such conduct relates to the access or use of the Game. BNEI may suspend or terminate your access to the Game at any time if you violate the terms of this Section 8 or any other terms and conditions of this Agreement. BNEI may (for example in response to a claim from a copyright owner) review any User Content that is uploaded, published, stored, or displayed on the Game (hereinafter, “posted”) provided that in the case of User Content shared as a part of any private message within the Game, BNEI will not screen or review such content unless at least one party to the communication grants its consent (e.g. by reporting the message to BNEI as objectionable). BNEI reserves the right to delete or refuse to take online any User Content. Although BNEI does not regularly screen, edit, or monitor any of the User Content posted on the Game, BNEI reserves the right, and has absolute discretion, to remove, screen, or edit any User Content posted through the Game if BNEI determines in its reasonable discretion that such User Content violates this Agreement and/or any third party right, applicable law, rule, or regulation. You may not use the Game if you have previously been suspended or removed from the Game. You are solely responsible for any User Content that you post or transmit to any users or third parties. Specifically, you agree not to do, attempt to do, or cause another to do any of the following in connection with the Game:\na) post any User Content that is unlawful, libelous, defamatory, offensive, obscene, pornographic, indecent, vulgar, lewd, sexually explicit, harassing, threatening, invasive of privacy or publicity rights, abusive, inflammatory, or fraudulent; promotes or encourages any illegal or other antisocial activity, including hacking; promotes racism, bigotry, hatred, or physical or other harm of any kind against any group or individual or is otherwise objectionable;\nb) post any User Content that may infringe any patent, trademark, trade secret, copyright, or other intellectual or proprietary right of any person or entity;\nc) engage in commercial activities or commercial sales, including transmission of any commercial advertisements or solicitations;\nd) enter, disclose or disseminate any personal information about anyone (including you);\ne) impersonate any person or entity, including any BNEI officials, forum leaders, guides, hosts, employees, or agents, or falsely state or otherwise misrepresent your affiliation with a person or entity;\nf) impede or disrupt the Game or the normal flow of Game play or dialogue or use vulgar language, abusiveness, excessive shouting (e.g., ALL CAPS), “spamming,” or any other disruptive or detrimental methods that disturb other users of the Game;\ng) use or exploit any bugs, errors, or design flaws to obtain unauthorized access to the Game, to gain an unfair advantage over other players, or to cheat or utilize unauthorized exploits in connection with the Game, including but not limited to accessing portions of the Game that you are not authorized to access and using any bots, emulators, or other unauthorized third party tools;\nh) do anything that interferes with the ability of other users to enjoy playing the Game in accordance with its rules or that materially increases the expense or difficulty of BNEI or the platform provider in maintaining the Game for the enjoyment of all its users.\ni) intentionally disconnect from the network during online play or allow yourself to be defeated by a given player repeatedly to help boost their rankings or win counts in the Game.\nj) trade, sell, auction, or otherwise transfer or attempt to transfer any Virtual Items or Game Currency outside the Game;\nk) otherwise violates the terms of this Agreement, other policies communicated by BNEI, or creates liability for BNEI.",
+ "englishUsFontType":3,
+ "frenchText":"8. COMPORTEMENT EN LIGNE. Sauf en cas de faute intentionnelle ou de négligence grave de BNEI, celle-ci ne saurait être tenue responsable du comportement des utilisateurs, que le comportement en question soit ou non en rapport avec l’accès au Jeu ou son utilisation. Si vous contrevenez aux dispositions du présent article 8 ou à toute autre condition générale du présent Contrat, BNEI sera susceptible, à tout moment, de suspendre ou résilier votre accès au Jeu. BNEI pourra (par exemple, suite à la réclamation d’un titulaire de droits d’auteur) contrôler tout Contenu utilisateur téléchargé, publié, stocké ou affiché dans le Jeu (ci-après « publié »), à condition que, dans le cas d’un Contenu utilisateur partagé dans le cadre d’un message privé en Jeu, BNEI n’accède pas au contenu en question sauf si au moins une des parties impliquées dans la communication n’y ait consenti (par exemple, en signalant à BNEI le caractère répréhensible du message). BNEI se réserve le droit de supprimer ou d’interdire la diffusion en ligne de tout Contenu utilisateur. Bien que BNEI s’abstienne de filtrer, censurer ou surveiller régulièrement le Contenu utilisateur publié dans le Jeu, BNEI se réserve le droit, à son absolue discrétion, de supprimer, filtrer ou modifier tout Contenu utilisateur publié via le Jeu si BNEI détermine, à sa raisonnable discrétion, que le Contenu utilisateur en question contrevient au présent Contrat et/ou aux droits d’un tiers ou encore aux lois, règles et règlements applicables. Vous ne pouvez pas utiliser le Jeu si vous avez déjà fait l’objet d’une suspension ou d’une exclusion. Vous êtes seul responsable du Contenu utilisateur que vous publiez ou transmettez à d’autres utilisateurs ou tiers. En particulier, vous vous interdirez d’agir, tenter d’agir, ou inciter autrui à agir comme suit dans le cadre du Jeu :\na) publier tout Contenu utilisateur qui serait illégal, calomnieux, diffamatoire, injurieux, obscène, pornographique, indécent, vulgaire, impudique, sexuellement explicite, abusif, menaçant, portant atteinte à la vie privée ou aux droits publicitaires, nuisible, insultant ou frauduleux ; qui inciterait ou encouragerait une quelconque activité illégale ou antisociale, piratage compris ; inciterait au racisme, à l’intolérance, à la haine, à la violence physique ou autre dommage d’un individu ou groupe, ou qui serait par ailleurs répréhensible ;\nb) publier tout Contenu utilisateur susceptible de porter atteinte aux brevets, marques commerciales, secrets commerciaux, droits d’auteur ou autre droit intellectuel ou de propriété de toute personne ou entité ;\nc) vous adonner à des activités commerciales ou opérations de vente, y compris la transmission de publicités ou démarchages commerciaux ;\nd) communiquer, divulguer ou diffuser des informations personnelles sur quiconque (y compris vous-même) ;\ne) vous faire passer pour une personne ou une entité, y compris tout préposé, dirigeant de forum, guide, hôte, employé ou agent de BNEI, ou produire de fausses déclarations sur ou représenter faussement, votre affiliation auprès d’une personne ou entité ;\nf) entraver ou perturber le Jeu ou le déroulement normal du Jeu ou des dialogues du Jeu, utiliser un langage vulgaire, injurieux, crier de manière excessive (par ex. TOUT EN MAJUSCULES), utiliser du « spamming » ou toute autre méthode perturbatrice ou préjudiciable susceptible de gêner d’autres utilisateurs du Jeu ;\ng) utiliser ou exploiter tout bogue, erreur ou défaut de conception pour obtenir un accès non autorisé au Jeu, obtenir un avantage injuste sur les autres joueurs ou pour tricher ou exploiter tout abus non autorisé lié au Jeu dont, sans limitation, l’accès non autorisé à certaines parties du Jeu et l’utilisation de bots, émulateurs ou autres outils tiers ;\nh) faire toute chose pouvant nuire au plaisir d’autres utilisateurs à jouer au Jeu conformément à ses règles ou qui augmente considérablement les dépenses ou la difficulté pour BNEI ou le prestataire de la plateforme à maintenir le Jeu pour le plaisir de tous ses utilisateurs ;\ni) se déconnecter intentionnellement du réseau pendant le jeu en ligne ou se laisser battre par un joueur donné de manière répétée afin de l’aider à améliorer son classement ou à gagner des comptes dans le Jeu ;\nj) échanger, vendre, mettre aux enchères ou transférer ou tenter de transférer des Éléments virtuels ou de la Monnaie virtuelle à l’extérieur du Jeu ;\nk) contrevenir aux dispositions du présent Contrat, à d’autres politiques communiquées par BNEI ou engager la responsabilité de BNEI de quelque manière que ce soit.",
+ "frenchFontType":3,
+ "italianText":"8. COMPORTAMENTO ONLINE. Salvo nei casi di dolo o colpa grave da parte di BNEI, quest'ultima non è responsabile o tenuta a rispondere della condotta degli utenti, sia che tale condotta sia in relazione o meno con l'accesso al Gioco o l'utilizzo di esso. BNEI può sospendere o interrompere l'accesso dell'utente al Gioco in qualunque momento, se questi vìola i termini della presente sezione 8 o qualunque altro termine o condizione contenuto nel presente Accordo. BNEI può (ad esempio in risposta a un reclamo sollevato dal titolare di un diritto d'autore) verificare i Contenuti generati dall'utente che siano stati caricati, pubblicati, memorizzati o visualizzati nel Gioco (di seguito \"pubblicati\"), fatto salvo nel caso di Contenuti generati dall'utente che siano stati condivisi all'interno di un messaggio privato interno al Gioco. In tal caso, BNEI non controllerà né verificherà tali contenuti, a meno che una delle parti in comunicazione non conceda il suo consenso (ad esempio segnalando il messaggio a BNEI come sconveniente). BNEI si riserva il diritto di eliminare o di rifiutare di accogliere online qualunque Contenuto generato dall'utente. Sebbene BNEI non controlli, modifichi o monitori periodicamente i Contenuti generati dall'utente pubblicati nel Gioco, essa si riserva il diritto, a sua esclusiva discrezione, di rimuovere, verificare o modificare qualunque Contenuto generato dall'utente pubblicato attraverso il Gioco, se stabilisce, a sua sola discrezione, che tale contenuto violi il presente Accordo e/o i diritti di terze parti o qualunque legge, norma o regolamento applicabile. L'utente non è autorizzato a utilizzare il Gioco se è stato precedentemente sospeso o rimosso dallo stesso. L'utente è il solo responsabile dei contenuti da lui generati e pubblicati o trasmessi ad altri utenti o a terze parti. In particolare l'utente si impegna ad astenersi dai seguenti comportamenti in relazione al Gioco e a evitare di indurre altri a comportarsi come descritto di seguito:\na) Pubblicare Contenuti generati dall'utente che siano illeciti, calunniosi, diffamatori, offensivi, osceni, pornografici, indecenti, volgari, scurrili, sessualmente espliciti, molesti, intimidatori, lesivi del diritto alla riservatezza o alla pubblicità, oltraggiosi, istigatori o fraudolenti; promuovere o incoraggiare attività illecite o in genere antisociali, inclusa la pirateria informatica; promuovere atteggiamenti di razzismo, intolleranza, odio e comportamenti che causino lesioni fisiche o danni di altro tipo a gruppi oppure a individui, o che siano altrimenti considerati sconvenienti;\nb) Pubblicare Contenuti generati dall'utente che possano violare brevetti, marchi depositati, segreti commerciali, diritti d'autore o altri diritti intellettuali o proprietari di qualunque persona o entità;\nc) Esercitare attività commerciali o di vendita, inclusa la trasmissione di contenuti pubblicitari o promozionali;\nd) Comunicare, rivelare o diffondere informazioni private su una persona, incluso l'utente stesso;\ne) Spacciarsi per persone o entità, inclusi responsabili, direttori di forum, guide, host, dipendenti o agenti di BNEI oppure dichiarare falsamente o altrimenti paventare una connessione con una persona o entità;\nf) Intralciare o interrompere il Gioco o il normale andamento dei suoi contenuti e dialoghi o usare un linguaggio scurrile, oltraggioso o gridato (ad esempio SCRITTE IN MAIUSCOLO), messaggi non richiesti od ogni altra tecnica perturbatrice in grado di disturbare altri utenti del Gioco;\ng) Utilizzare o sfruttare bug, difetti o errori di progettazione per ottenere un accesso non autorizzato al Gioco, acquisire un vantaggio sleale su altri giocatori o usare cheat o exploit non autorizzati in relazione al Gioco, incluso, a titolo esemplificativo e non esaustivo, l'uso di bot, emulatori o altri strumenti non autorizzati di terze parti, nonché l'accesso a sezioni del Gioco a cui non si è autorizzati ad accedere;\nh) Compiere atti che impediscono ad altri utenti di godere appieno del Gioco nel rispetto delle relative regole o che aumentano sostanzialmente le spese o le difficoltà in cui incorre BNEI o il fornitore della piattaforma nel mantenere il Gioco per il divertimento di tutti i suoi utenti;\ni) Disconnettersi intenzionalmente dalla rete durante il gioco online o acconsentire a essere ripetutamente sconfitto da un determinato giocatore per permettergli di avanzare nella classifica o acquisire punti nel Gioco;\nj) Commercializzare, vendere, mettere all'asta o altrimenti trasferire o tentare di trasferire Oggetti virtuali o Valuta di Gioco al di fuori del Gioco;\nk) Violare in qualsiasi altro modo i termini del presente Accordo o altre informative comunicate da BNEI o causare una richiesta di risarcimento danni nei confronti di BNEI.",
+ "italianFontType":3,
+ "germanText":"8. ONLINE-VERHALTEN: Außer im Fall vorsätzlichen Verschuldens oder grober Fahrlässigkeit durch BNEI ist BNEI nicht verantwortlich oder haftbar für das Verhalten von Benutzern, ungeachtet dessen, ob ein solches Verhalten mit dem Zugriff auf das Spiel oder mit der Nutzung des Spiels in Zusammenhang steht. BNEI kann jederzeit Ihren Zugriff auf das Spiel aussetzen oder beenden, wenn Sie gegen die Bestimmungen dieses Abschnitts 8 oder gegen andere Bestimmungen oder Bedingungen dieser Vereinbarung verstoßen. BNEI kann (z. B. in Reaktion auf eine Forderung eines Urheberrechtsinhabers) alle Benutzerinhalte prüfen, die ins oder im Spiel hochgeladen, veröffentlicht, gespeichert oder dargestellt wurden (nachfolgend als „gepostet“ bezeichnet); im Fall von Benutzerinhalten, die als Teil einer Privatnachricht geteilt wurden, wird BNEI solche Inhalte nicht durchsehen oder prüfen, wenn nicht mindestens eine Partei der Kommunikation ihr Einverständnis gewährt hat (z. B. indem die Partei BNEI die Nachricht als anstößig meldet). BNEI behält sich das Recht vor, jedwede Benutzerinhalte zu löschen oder sich zu weigern, sie online zu stellen. Obwohl BNEI im Spiel gepostete Benutzerinhalte nicht regelmäßig durchsieht, bearbeitet oder überwacht, behält sich BNEI das Recht vor, nach absolut freiem Ermessen jedwede Benutzerinhalte zu entfernen, durchzusehen oder zu bearbeiten, die über das Spiel gepostet werden, wenn BNEI nach vernünftigem Ermessen feststellt, dass solche Benutzerinhalte gegen diese Vereinbarung und/oder die Rechte Dritter, anwendbare Gesetze, Verordnungen oder Vorschriften verstoßen. Sie dürfen das Spiel nicht nutzen, wenn Sie zuvor suspendiert oder aus dem Spiel entfernt wurden. Sie sind allein verantwortlich für jedwede Benutzerinhalte, die Sie posten oder an andere Benutzer oder Dritte übertragen. Insbesondere stimmen Sie zu, dass Sie im Zusammenhang mit dem Spiel keine der folgenden Handlungen durchführen, versuchen oder beauftragen werden:\na) Benutzerinhalte posten, die gesetzeswidrig, verleumderisch, diffamierend, beleidigend, obszön, pornografisch, unanständig, vulgär, anzüglich, eindeutig sexuell, belästigend, bedrohend, missbräuchlich, hetzerisch oder betrügerisch sind; oder die Persönlichkeits- oder Öffentlichkeitsrechte verletzen; oder die illegale oder asoziale Aktivitäten fördern oder ermutigen (einschließlich Hacking); oder die Rassismus, Fanatismus, Hass, Körperverletzung oder andere Schädigungen gegen jedwede Gruppe oder Individuen fördern; oder die anderweitig zu beanstanden sind;\nb) Benutzerinhalte posten, die gegen jedwede Patente, Marken, Geschäftsgeheimnisse, Urheberrechte oder anderen geistigen Rechte oder Eigentumsrechte jedweder Person oder Körperschaft verstoßen;\nc) sich an kommerziellen Aktivitäten oder Verkaufstätigkeiten beteiligen, einschließlich der Übertragung kommerzieller Werbung oder Aufrufe;\nd) persönliche Daten über jedwede Person (einschließlich Sie selbst) eingeben, veröffentlichen oder verbreiten;\ne) sich als eine andere Person oder Körperschaft ausgeben, einschließlich Vertreter, Forenleiter, Leiter, Hosts, Mitarbeiter oder Beauftragte von BNEI; oder Ihre Verbindung mit einer Person oder Körperschaft falsch angeben oder anderweitig irreführend darstellen;\nf) das Spiel oder den normalen Fluss des Gameplays oder der Dialoge beeinträchtigen oder unterbrechen; oder vulgäre oder beleidigende Ausdrucksweisen verwenden; oder übermäßig „schreien“ (z. B. durch ausschließliches Verwenden von Großbuchstaben); oder spammen; oder jedwede anderen disruptiven oder lästigen Methoden anwenden, die andere Nutzer des Spiels stören können;\ng) jedwede Bugs, Fehler oder Designschwächen nutzen oder ausnutzen, um unberechtigten Zugriff auf das Spiel zu erhalten, um sich unfaire Vorteile gegenüber anderen Spielern zu verschaffen, oder um zu schummeln oder unerlaubte Exploits im Zusammenhang mit dem Spiel zu nutzen (insbesondere durch Zugriff auf Teile des Spiels, für die Sie keine Zugriffsberechtigung besitzen, und durch die Nutzung von Bots, Emulatoren oder anderen unerlaubten Fremdwerkzeugen);\nh) irgendetwas tun, das die Fähigkeit anderer Nutzer einschränkt, das Spiel im Einklang mit seinen Regeln zu genießen, oder das BNEI oder den Plattformanbieter beim Versuch, das Spiel für das Vergnügen aller Nutzer aufrechtzuerhalten, erheblich finanziell belastet oder behindert;\ni) sich während des Onlinespielens vorsätzlich vom Netzwerk trennen oder sich mehrfach vorsätzlich von einem bestimmten Spieler besiegen lassen, um dessen Rang oder Siegesquote im Spiel zu verbessern;\nj) virtuelle Gegenstände oder Spielwährung außerhalb des Spiels handeln, verkaufen oder anderweitig übertragen oder versuchen, sie zu übertragen;\nk) anderweitig gegen die Bestimmungen dieser Vereinbarung oder gegen von BNEI kommunizierte Richtlinien verstoßen; oder Haftungsfälle für BNEI verursachen.",
+ "germanFontType":3,
+ "spanishText":"8. COMPORTAMIENTO EN LÍNEA. Salvo en casos de error intencionado o negligencia grave por parte de BNEI, BNEI no se hará responsable del comportamiento de ningún usuario, tanto si dicho comportamiento está relacionado o no con el acceso o el uso que este haga del Juego. BNEI puede suspender o poner fin de forma definitiva a su acceso al Juego en cualquier momento si usted infringe las condiciones de la cláusula 8 o cualquier otra condición de este Contrato. BNEI puede (por ejemplo, en respuesta a una reclamación por parte de un titular de un derecho de autor) revisar cualquier Contenido de usuario que se haya cargado, publicado, almacenado o exhibido en el Juego (en adelante, «publicado»). En el caso de un Contenido de usuario que haya sido compartido como parte de un mensaje privado dentro del Juego, BNEI no examinará o revisará dicho contenido a menos que una de las partes en el proceso comunicativo dé su consentimiento para ello (por ejemplo, informando a BNEI de que dicho mensaje es cuestionable). BNEI se reserva el derecho a eliminar o rechazar la publicación en Internet de cualquier Contenido de usuario. A pesar de que BNEI no examina, edita ni supervisa con regularidad ningún Contenido de usuario que se publique en el Juego, se reserva el derecho y tiene discreción absoluta para eliminar, examinar o editar cualquier Contenido de usuario que sea publicado a través del Juego si, a su criterio razonable, considerara que dicho Contenido de usuario infringe este Contrato, algún derecho de terceros o una ley, regla o norma aplicable. Usted no podrá utilizar el Juego si previamente ha sido suspendido o excluido del Juego. Usted es el único responsable del Contenido de usuario que usted publique o transmita a otros usuarios o terceros. De manera particular, usted acuerda no realizar o pretender realizar, ni incitar a otros a que realicen, ninguna de las acciones siguientes relacionadas con el Juego:\na) publicar Contenido de usuario que sea ilícito, difamatorio, calumnioso, ofensivo, obsceno, pornográfico, indecente, vulgar, lascivo, explícito en términos sexuales, intimidatorio, amenazante, que invada los derechos de privacidad o publicidad, abusivo, provocativo o fraudulento; que promueva o aliente cualquier actividad ilegal o antisocial, incluida la piratería informática; que fomente el racismo, el fanatismo, el odio o el daño físico u otro de cualquier clase contra cualquier grupo o persona, o que por alguna otra razón sea considerado inaceptable;\nb) publicar Contenido de usuario que pueda infringir alguna patente, marca o secreto comercial, derecho de autor u otros derechos de titularidad o propiedad intelectual de cualquier persona o entidad;\nc) participar en actividades o ventas comerciales, incluida la transmisión de cualquier anuncio publicitario o promoción comercial;\nd) publicar, revelar o difundir datos personales sobre cualquier persona (incluido usted);\ne) hacerse pasar por cualquier otra persona o entidad, incluidos altos cargos, líderes de foros, guías, moderadores, empleados o agentes de BNEI, o declarar falsamente o falsificar de otra forma su vinculación con una persona o entidad;\nf) obstaculizar o interrumpir el Juego o el flujo normal de la reproducción o el diálogo del Juego, utilizar lenguaje vulgar o abusivo, gritar en exceso (por ejemplo, mediante el uso continuado de MAYÚSCULAS), enviar correo no deseado («spam») o hacer uso de cualquier otro método perturbador o perjudicial que pueda molestar a otros usuarios del Juego;\ng) hacer uso o aprovecharse de errores, fallos o defectos de diseño para obtener acceso no autorizado al Juego, adquirir ventaja desleal sobre otros usuarios o engañar o utilizar medios no autorizados en relación con el Juego, incluidos, entre otros, el acceso a partes del Juego a las que usted no esté autorizado y el uso de componentes, emuladores u otras herramientas de terceros no autorizadas;\nh) realizar cualquier acción que interfiera en la capacidad de otros usuarios para disfrutar del Juego con arreglo a sus propias normas o que aumente sustancialmente el coste o la dificultad de mantenimiento de este por parte de BNEI o del proveedor de la plataforma y que impida que los usuarios disfruten del Juego;\ni) desconectarse de forma intencionada de la red durante el juego en línea o dejarse ganar por un determinado jugador repetidamente con el objetivo de ayudarle a subir en su clasificación o ganar puntos en el Juego;\nj) negociar, vender, subastar o transferir o intentar transferir de otra forma Elementos virtuales o Divisa del Juego fuera del Juego;\nk) infringir de otra forma las condiciones del presente Contrato, otras políticas que haya comunicado BNEI o hacer incurrir en responsabilidades a BNEI.",
+ "spanishFontType":3,
+ "chineseTText":"8.線上行為。除非為 BNEI 的故意錯誤或重大疏忽,否則 BNEI 對任何使用者的行為概不負責,也不承擔責任,無論此類行為是否與遊戲的存取或使用相關。如果您違反第 8 條的條款或本合約的任何其他條款和條件,BNEI 可隨時暫停或終止您對遊戲的存取權限。BNEI 可能(例如對版權所有者提出的聲明作出回應)審查在遊戲中上傳、發佈、儲存或顯示的任何使用者內容(以下稱為「發佈」),前提是該使用者內容為遊戲內任何共用私人訊息之一部分。除非取得至少通訊一方之同意(例如透過向 BNEI 報告訊息令人不快),否則 BNEI 不會審查此內容。BNEI 保留刪除或拒絕任何使用者內容的權利。雖然 BNEI 不會定期審查、編輯或監控遊戲中發佈的任何使用者內容,但是如果 BNEI 在合理情況下,確定此類使用者內容違反本合約和/或法律、規則或法規下的任何第三方權利,BNEI 保留決定刪除、審查或編輯透過遊戲發佈的任何使用者內容之權利。如果您以前被暫停或從遊戲中被刪除,則不得使用遊戲。您對您發佈或傳送給任何使用者或第三方的任何使用者內容負全部責任。具體來說,您同意不會參與、試圖或者讓其他人在遊戲中從事以下任何事情:\n\na) 發佈任何非法、誹謗、中傷、冒犯、淫穢、色情、不雅、粗俗、猥褻、露骨的性表現、騷擾、威脅、侵犯隱私或宣傳權利、濫用、煽動性或欺詐性的使用者內容;宣傳或鼓勵任何非法或其他反社會活動,包括惡意入侵行為;宣傳對任何群體、個人或任何令人不快的種族主義、偏執、仇恨或任何形式的身體或其他傷害;\n\nb) 發佈任何可能侵犯任何個人或實體的專利、商標、商業秘密、版權或其他智慧財產權或所有權的使用者內容;\n\nc) 從事商業活動或商業銷售,包括傳播任何商業廣告或招攬;\n\nd) 輸入、披露或傳播有關任何人(包括您)的任何個人資訊;\n\ne) 假冒任何個人或實體,包括任何 BNEI 官方人員、論壇領導、指導、主持人、僱員或代理人,或虛假陳述或以其他方式虛假陳述您與個人或實體的聯絡;\n\nf) 阻止或擾亂遊戲或遊戲玩法或對話的正常流程,或使用粗俗的語言、濫用、過度喊叫(例如全部大寫)、「垃圾郵件」或其他擾亂其他使用者遊戲的破壞性或有害的方法;\n\ng) 使用或利用任何錯誤或設計缺陷未經授權而存取遊戲,獲得與其他玩家不公平的優勢,或欺騙或利用與遊戲相關的未經授權的方式,包括但不限於存取您無權存取的遊戲部分,以及使用任何機器人、模擬器或其他未經授權的第三方工具來參與遊戲;\n\nh) 做任何妨礙其他按規則玩遊戲的使用者權利的事情,或者大幅增加 BNEI 或平台提供商為所有使用者維護遊戲的費用或難度;\n\ni) 在線上遊戲期間有意與網路斷開連接,或者允許自己被一個特定的玩家反覆擊敗,以幫助他們提高排名或提高贏得比賽的計數;\n\nj) 交易、出售、拍賣或以其他方式轉移或嘗試在遊戲之外轉移任何虛擬物品或遊戲幣;\n\nk) 其他違反本合約條款、BNEI 傳達的其他政策,或使得 BNEI 承擔責任的其他任何行為。",
+ "chineseTFontType":1,
+ "koreanText":"8. 온라인상의 행위. BNEI는 BNEI의 고의나 중과실로 인한 경우를 제외하고는 어떤 사용자의 행위에 대해서도 아무런 책임이 없으며, 이는 해당 행위가 본 게임의 접근 혹은 이용에 관련되는지 여부에 관계없이 마찬가지입니다. 귀하가 본 제8절의 조건이나 본 계약의 기타 조건을 위반하는 경우, BNEI는 귀하의 본 게임 접근을 언제라도 정지 혹은 종료시킬 수 있습니다. BNEI는 본 게임에 업로드, 발표, 저장 혹은 표시된(이하 \"게시된\") 사용자 콘텐츠를 (예를 들어 저작권자의 주장에 따른 조치의 일환으로) 검토할 수 있습니다. 단, 본 게임 내에서 비공개 메시지의 일부로 공유된 사용자 콘텐츠의 경우, BNEI는 적어도 해당 통신의 당사자 1인이 동의(예를 들어 해당 메시지가 부적절하다며 BNEI에 신고)하지 않는 한 해당 콘텐츠를 검열하거나 검토하지 않습니다. BNEI는 사용자 콘텐츠를 삭제하거나 온라인을 통한 수령을 거부할 권리를 보유합니다. 비록 BNEI가 본 게임에 게시된 사용자 콘텐츠를 정기적으로 검열하거나 수정하거나 감시하지는 않으나, BNEI가 합리적인 재량에 따라 판단할 때 본 게임을 통해 게시된 사용자 콘텐츠가 본 계약 및/또는 제3자의 권리, 관련 법, 규칙 혹은 규정을 위반했다고 결론 내리는 경우 BNEI는 해당 사용자 콘텐츠를 삭제, 검열 혹은 수정할 권리와 절대적 재량을 보유합니다. 귀하가 과거에 본 게임으로부터 정지 혹은 퇴출당한 적이 있는 경우에는 본 게임을 이용할 수 없습니다. 귀하가 게시하거나 다른 사용자 혹은 제3자에게 전송하는 사용자 콘텐츠에 관한 일체의 책임은 오직 귀하에게 있습니다. 구체적으로, 귀하는 본 게임과 관련하여 다음 중 어떤 행위도 하거나 시도하지 않고 타인의 이 같은 행위를 유발하지도 않기로 동의합니다.\na) 불법이거나 비방하거나 명예를 훼손하거나 모욕하거나 불쾌하거나 음란하거나 외설적이거나 저속하거나 선정적이거나 성적으로 노골적이거나 괴롭히거나 협박하거나 프라이버시 혹은 퍼블리시티를 침해하거나 학대하거나 선동하거나 사기성 사용자 콘텐츠를 게시하는 행위. 불법적 혹은 기타 반사회적인 활동(해킹 포함)을 조장하거나 부추기는 행위. 개인이나 집단을 상대로 한 인종차별, 편견, 증오, 또는 신체적인 혹은 기타 일체의 가해나 기타 부적절한 행동을 조장하거나 부추기는 행위.\nb) 개인이나 단체의 특허권, 상표권, 영업비밀, 저작권, 또는 기타 지적재산권이나 소유권을 침해할 수 있는 사용자 콘텐츠를 게시하는 행위.\nc) 상업적 활동이나 상업적 판매에 관여하는 행위(상업적 광고나 구매 권유를 전송하는 행위도 포함).\nd) 귀하 혹은 타인의 개인정보를 입력하거나 공개하거나 퍼뜨리는 행위.\ne) 타인 혹은 단체(BNEI 관계자, 포럼 리더, 가이드, 주최자, 직원 혹은 대리인도 포함)를 사칭하거나, 귀하와 타인 혹은 단체와의 관계를 허위로 진술 혹은 표시하는 행위.\nf) 본 게임에 또는 게임 플레이나 대화의 정상적인 진행에 지장을 주거나 이를 방해하는 행위, 외설적 언어나 욕설 또는 과도한 외침(예를 들어 전부 대문자)이나 \"스팸\" 메시지를 사용하는 행위, 기타 본 게임의 다른 사용자들에게 지장을 주는 방해성의 혹은 해로운 행위.\ng) 본 게임에 무단 접근하기 위해, 다른 플레이어보다 부당하게 유리한 플레이를 하기 위해, 또는 본 게임과 관련하여 부정하게 플레이하거나 취약점을 무단 활용하기 위해, 버그나 오류 혹은 설계상 하자를 이용 또는 활용하는 행위(여기에는 귀하가 본 게임 중 접근 권한이 없는 부분에 접근하는 행위, 봇이나 에뮬레이터 혹은 기타 불법 제3자 도구를 사용하는 행위가 포함되며 이에 한정되지 않음).\nh) 다른 사용자들이 본 게임을 해당 규칙에 따라 플레이할 능력을 어떤 방식으로든 방해하는 행위, 또는 BNEI 혹은 플랫폼 제공자가 모든 사용자들의 플레이를 위해 본 게임을 유지 관리하는 비용이나 어려움을 어떤 방식으로든 크게 가중시키는 행위.\ni) 특정 플레이어의 본 게임 내 순위나 승수를 올리기 위해 온라인 플레이 도중 고의로 네트워크 연결을 끊거나 해당 플레이어에게 반복해서 져 주는 행위.\nj) 가상 아이템이나 게임 통화를 본 게임 밖에서 거래하거나 판매하거나 경매하거나 기타 방법으로 양도하는 행위 또는 그러한 양도를 시도하는 행위.\nk) 그 밖에 본 계약이나 BNEI가 발표하는 기타 정책의 조건을 위반하는 행위, 또는 BNEI의 책임을 발생시키는 행위.",
+ "koreanFontType":2,
+ "portugueseText":"8. CONDUTA ON-LINE. Salvo por dolo ou culpa de nossa parte, a BNEI não é responsável pela conduta de nenhum usuário, independentemente de tal conduta se relacionar ao acesso ou uso do Jogo. A BNEI poderá suspender ou extinguir seu acesso ao Jogo a qualquer momento caso você viole os termos desta Seção 8 ou qualquer outro termo e condição deste Contrato. A BNEI poderá (por exemplo, em resposta a uma ação apresentada por um titular de direitos autorais) analisar qualquer Conteúdo de Usuário carregado, publicado, armazenado ou exibido no Jogo (doravante, \"publicado\"). No entanto, fica estabelecido que, no caso de Conteúdo de Usuário compartilhado como parte de qualquer mensagem privada no Jogo, a BNEI não triará nem analisará tal conteúdo, exceto com o consentimento de uma das partes da comunicação (por exemplo, por denúncia da mensagem à BNEI como conteúdo questionável). A BNEI se reserva o direito de excluir ou recusar a veiculação on-line de qualquer Conteúdo de Usuário. Embora não trie, edite ou monitore regularmente Conteúdos de Usuários publicados no Jogo, a BNEI se reserva o direito e a liberdade absoluta de remover, triar ou editar qualquer Conteúdo de Usuário publicado por meio do Jogo se determinar, por critérios razoáveis, que tal Conteúdo de Usuário viola este Contrato e/ou o direito de terceiros ou as leis, normas ou regulamentos aplicáveis. Você não pode usar o Jogo se já tiver sido suspenso ou removido dele. Você é exclusivamente responsável pelo Conteúdo de Usuário que vier a publicar ou transmitir a quaisquer usuários ou terceiros. De maneira específica, você concorda em não praticar, tentar praticar nem provocar que outros pratiquem alguma das ações a seguir em relação ao Jogo:\na) Publicar qualquer Conteúdo de Usuário que seja ilegal, calunioso, difamatório, ofensivo, obsceno, pornográfico, indecente, vulgar, lascivo, sexualmente explícito, vexatório, ameaçador, invasivo de privacidade ou de direitos de imagem, abusivo, provocativo ou fraudulento; promover ou estimular qualquer atividade ilegal ou contrária à vida em sociedade, incluindo comportamento hacker; promover racismo, fanatismo, ódio ou violência física ou de qualquer outro tipo contra qualquer grupo ou indivíduo ou que seja questionável de qualquer outra forma;\nb) Publicar qualquer Conteúdo de Usuário que possa violar qualquer patente, marca registrada, segredo comercial, direito autoral ou outro direito de propriedade ou propriedade intelectual de qualquer pessoa física ou jurídica;\nc) Envolver-se em atividades ou vendas comerciais, incluindo a transmissão de anúncios ou captação de clientes;\nd) Inserir, revelar ou disseminar informações pessoais sobre qualquer pessoa (inclusive você mesmo);\ne) Passar-se por qualquer pessoa física ou jurídica, inclusive qualquer representante, líder de fórum, guia, apresentador, funcionário ou agente da BNEI, ou fazer declarações falsas ou de outra forma enganosas sobre sua ligação com uma pessoa física ou jurídica;\nf) Impedir ou interromper o Jogo ou seu fluxo normal, dialogar usando linguagem vulgar, abusiva, com gritos em excesso (por exemplo, usando letras de CAIXA-ALTA), fazer \"spam\" ou lançar mão de qualquer outro método danoso ou prejudicial que perturbe outros usuários do Jogo;\ng) Usar ou explorar bugs, erros ou falhas de design para obter acesso não autorizado ao Jogo, obter vantagem indevida sobre outros jogadores, trapacear ou fazer macetes não autorizados em relação ao Jogo, incluindo, sem restrição, o acesso a partes do Jogo que você não tem autorização para acessar e usar bots, emuladores ou outras ferramentas não autorizadas de terceiros;\nh) Fazer qualquer coisa que interfira na capacidade de outros usuários jogarem de acordo com as regras do Jogo ou que aumente substancialmente os custos ou a dificuldade para a BNEI ou para o provedor de plataforma de manter o Jogo para a fruição por todos os seus usuários;\ni) Desconectar-se intencionalmente da rede durante um jogo on-line ou deixar-se ser derrotado repetidamente por um determinado jogador para ajudá-lo a incrementar seus rankings ou suas vitórias no Jogo;\nj) Comercializar, vender, leiloar ou, de outra forma, transferir ou tentar transferir qualquer Item Virtual ou Moeda do Jogo fora do Jogo;\nk) De outra forma, violar os termos deste Contrato, outras políticas comunicadas pela BNEI ou criar uma responsabilidade para a BNEI.",
+ "portugueseFontType":2,
+ "russianText":"8. ПОВЕДЕНИЕ В СЕТИ. Если ситуация не возникла по умышленной вине или грубой халатности компании BNEI, то компания BNEI не несет никакой ответственности за поведение любых пользователей независимо от того, касается ли такое поведение доступа к Игре или использования Игры. Компания BNEI может в любое время приостановить или прекратить ваш доступ к Игре в случае нарушения вами условий настоящего раздела 8 или любых других условий и положений настоящего Соглашения. Компания BNEI может (например, в ответ на претензию от владельца авторских прав) пересмотреть Пользовательский контент, который был загружен, опубликован, сохранен или продемонстрирован в Игре (далее по тексту — «опубликован») при условии, что доступ к Пользовательскому контенту был открыт в ходе частной переписки в Игре. Компания BNEI обязуется не проверять и не просматривать подобный контент, пока по крайней мере одна из сторон переписки не выразит своего согласия (например, сообщив компании BNEI об оскорбительном характере сообщения). Компания BNEI сохраняет за собой право удалять любой Пользовательский контент или отказывать в его онлайн-публикации. Несмотря на то что компания BNEI не занимается регулярными проверками, редактированием и контролем публикуемого в Игре Пользовательского контента, компания BNEI сохраняет за собой право по своему абсолютному усмотрению удалять, проверять или редактировать любой размещенный через Игру Пользовательский контент, если компания BNEI по своему разумному усмотрению определит, что такой Пользовательский контент нарушает условия Соглашения и (или) любое право третьей стороны, действующее законодательство, правило или нормативное положение. Вы не имеете права использовать Игру, если ваш доступ был ранее приостановлен или вы были удалены из Игры. Вы несете исключительную ответственность за любой публикуемый или передаваемый другим пользователям или третьим лицам Пользовательский контент. В частности, вы соглашаетесь не совершать, не предпринимать попыток к совершению или принуждению других к совершению следующих действий, связанных с использованием Игры:\na) Публикация Пользовательского контента противозаконного, клеветнического, порочащего, оскорбительного, непристойного, порнографического, вульгарного, развратного, откровенного, беспокоящего, угрожающего характера, нарушающего право на неприкосновенность частной жизни или право на публичность, а также провокационных, оскорбительных или вредоносных материалов, способствующих или призывающих к незаконной или другой антисоциальной деятельности, включая хакинг, материалы, способствующие распространению расизма, нетерпимости, ненависти, а также причинения физического или другого вреда другой группе или отдельным лицам или материалов, являющихся предосудительными по другой причине;\nb) Публикация Пользовательского контента, который может нарушить любое патентное право, права на товарные знаки, производственную тайну, авторские права или другие интеллектуальные или имущественные права любого лица или организации;\nc) Участие в коммерческой деятельности или коммерческих операциях, включающих передачу коммерческих объявлений или навязывание услуг;\nd) Ввод, раскрытие или распространение любой личной информации о ком-либо (включая вас);\ne) Выдача себя за любое лицо или организацию, включая представителей компании BNEI, модераторов форумов, руководителей, ведущих, сотрудников, агентов, а также ложное утверждение или другое введение в заблуждение о вашей связи с другим лицом или организацией;\nf) Препятствование процессу Игры или нарушение стандартного процесса Игры или ведения диалогов, использование нецензурной и оскорбительной лексики, чрезмерно эмоциональных высказываний (например, использование ВСЕХ ПРОПИСНЫХ БУКВ), отправка «спама» или применение других дезорганизующих или вредоносных методов, нарушающих спокойствие пользователей Игры;\ng) Использование или эксплуатация уязвимостей программного обеспечения, связанные с ошибками программного кода, прочими ошибками и неполадками или недостатками дизайна для получения незаконного доступа к Игре, несправедливого преимущества над другими игроками, а также мошенничество или незаконная эксплуатация в игре вредоносных средств, в том числе (среди прочего) в целях получения доступа к частям Игры, доступ к которым для вас запрещен, с помощью любых ботов, эмуляторов или других незаконных средств третьих сторон;\nh) Любые действия, мешающие другим пользователям получать удовольствие от игрового процесса в Игре согласно ее правилам, а также увеличивающие материальные затраты или сложность поддержания игрового процесса Игры компанией BNEI или поставщиком платформы в стремлении обеспечить приятный игровой процесс для всех ее пользователей;\ni) Намеренный разрыв соединения во время онлайн-игры или намеренное многократное поражение в пользу другого игрока, дающее этому игроку возможность повысить свой рейтинг или количество побед в Игре;\nj) Торговля, продажа, организация аукциона или другие способы передачи, а также попытки передачи любых Виртуальных предметов или Игровой валюты за пределами Игры;\nk) Другое нарушение условий настоящего Соглашения, других правил компании BNEI или создание условий для наложения ответственности на компанию BNEI.",
+ "russianFontType":2,
+ "turkishText":"8. ÇEVRİMİÇİ DAVRANIŞ. BNEI'nin kasıtlı hatası veya ağır ihmali ile olmadıkça, davranışın Oyuna erişim veya onu kullanımla ilgili olup olmamasına bakılmaksızın, kullanıcıların davranışlarından BNEI sorumlu veya yükümlü olmayacaktır. Bu Bölüm 8'in şartlarını veya bu Sözleşmenin diğer şartlarını ve koşullarını ihlal etmeniz halinde, BNEI Oyuna erişiminizi istediği zaman durdurabilir veya sonlandırabilir. BNEI, Oyuna yüklenen, Oyunda yayınlanan, saklanan veya görüntülenen (bundan sonra \"gönderilen\" olarak geçecektir) bir Kullanıcı İçeriğini inceleyebilir (örneğin bir telif hakkı sahibinin iddiasına cevaben) fakat Kullanıcı İçeriğinin Oyun içinde bir özel mesaj kapsamında paylaşılması halinde iletişimin en azından bir tarafı onay vermedikçe (örneğin, BNEI'ye mesajın sakıncalı olduğunu bildirerek) BNEI böyle bir içeriği görüntülemeyecek veya incelemeyecektir. BNEI bir Kullanıcı İçeriğini silme veya çevrimiçi yayınlamayı reddetme hakkını saklı tutar. BNEI'nin, Oyuna gönderilen Kullanıcı İçeriğini düzenli olarak görüntülememesi, düzenlememesi veya izlememesine rağmen, BNEI'nin makul takdirine göre, Kullanıcı İçeriğinin bu Sözleşmeyi ve/veya bir üçüncü taraf hakkını, geçerli yasayı, kuralı ya da düzenlemeyi ihlal ettiğini belirlemesi halinde, Oyun ile gönderilen Kullanıcı İçeriğini kaldırma, görüntüleme veya düzenleme hakkını saklı tutar ve takdiri tamamen kendisine aittir. Daha önce Oyundan uzaklaştırılmış veya çıkarılmışsanız Oyunu kullanamazsınız. Kullanıcılara veya üçüncü taraflara gönderdiğiniz veya ilettiğiniz Kullanıcı İçeriğinden münhasıran siz sorumlusunuz. Özellikle, Oyunla bağlantılı olarak aşağıdakileri yapmamayı, yapmaya çalışmamayı veya başka birisinin yapmasına sebep olmamayı kabul ediyorsunuz:\na) Yasa dışı, iftira niteliğinde, karalayıcı, saldırgan, müstehcen, pornografik, ahlaksız, terbiyesiz, ahlaka aykırı, cinsel içerikli, taciz edici, tehditkar, gizlilik veya alenilik haklarını çiğneyen, kötüleyici, kışkırtıcı veya sahtekar; hackleme dahil yasa dışı veya diğer antisosyal faaliyetleri destekleyen ya da teşvik eden; bir gruba veya bireye karşı ırkçılığı, bağnazlığı, nefreti veya fiziksel ya da başka türde zararı teşvik eden ya da başka şekilde sakıncalı olan Kullanıcı İçeriği göndermek;\nb) Bir kişi veya kurumun patent, ticari marka, ticari sır, telif hakkı veya diğer fikri mülkiyet ya da mülkiyet hakkını ihlal edebilecek Kullanıcı İçeriği göndermek;\nc) Ticari reklamların veya taleplerin iletimi dahil ticari faaliyet veya satış gerçekleştirmek;\nd) Biri (siz dahil) hakkında kişisel bilgi girmek, ifşa etmek veya yaymak;\ne) BNEI yetkilileri, forum liderleri, rehberler, yöneticiler, çalışanlar veya temsilciler dahil bir kişiyi ya da kurumu taklit etmek veya bir kişiyle ya da kurumla olan ilişkinizi yanlış beyan etmek veya başka şekilde yanlış tanıtmak;\nf) Oyunu veya Oyunun ya da diyaloğun normal akışını engellemek veya aksatmak ya da argo dil, küfür, aşırı bağırma (örneğin, TÜMÜ BÜYÜK HARF), \"istenmeyen mesaj\" veya Oyunun diğer kullanıcılarını rahatsız eden başka rahatsız edici ya da zararlı yöntemler kullanmak;\ng) Oyunun erişim yetkiniz olmayan kısımlarına erişmek ve robot, emülatör veya yasaklı diğer üçüncü taraf araçlarını kullanmak dahil fakat bunlarla sınırlı olmamak üzere, Oyuna yetkisiz erişim elde etmek, diğer oyunculara karşı haksız avantaj kazanmak veya hile yapmak ya da Oyunla bağlantılı yasaklı yetkisiz erişim kazanma programlarından yararlanmak için yazılım hatalarını, yanlışlıkları veya tasarım kusurlarını kullanmak ya da istismar etmek;\nh) Diğer Kullanıcıların kurallara uygun olarak Oyun oynama keyfine engel olan veya BNEI'nin ya da platform sağlayıcının Oyunu tüm kullanıcıların keyif alacağı şekilde sürdürmesinin bedelini veya zorluğunu artıran bir şey yapmak.\ni) Belirli bir oyuncunun Oyundaki sıralamasını yükseltmesine veya puan almasına yardımcı olmak için çevrimiçi oyun sırasında kasıtlı olarak ağdan kopmak ya da o oyuncu tarafından yenilmeye izin vermek.\nj) Sanal Öğeleri veya Oyun Para Birimini Oyun dışında takas etmek, satmak, açık artırmaya çıkarmak veya başka şekilde devretmek ya da etmeye çalışmak;\nk) Bu Sözleşmenin şartlarını veya BNEI'nin ilettiği diğer politikaları başka şekilde ihlal etmek ya da BNEI için yükümlülük oluşturmak.",
+ "turkishFontType":2,
+ "arabicText":"8. السلوك على شبكة الإنترنت\nلا تُعد شركة BNEI مسؤولة أو تتحمل المسؤولية عن سلوك أي مستخدم، سواء كان هذا السلوك يتعلق بالوصول إلى اللعبة أو استخدامها، ما لم ينتج عن خطأ متعمد أو إهمال جسيم من قبل شركة BNEI. يجوز لشركة BNEI إيقاف وصولك إلى اللعبة بشكل مؤقت أو إنهاؤه في أي وقت، إذا خالفت شروط القسم (8) أو أي بنود وشروط أخرى في هذه الاتفاقية. ويجوز لشركة BNEI (على سبيل المثال، ردًا على مطالبات مالك حقوق النشر) مراجعة أي محتوى خاص بالمستخدم قد تم تحميله أو نشره أو تخزينه أو عرضه على اللعبة (المشار إليه فيما يلي بـ \"تم نشره\") شريطة أن يكون قد تمت مشاركة محتوى المستخدم كجزء من أي رسالة خاصة داخل اللعبة، ولن تقوم شركة BNEI بفحص أو مراجعة مثل هذا المحتوى ما لم يمنح أحد طرفي البلاغ على الأقل موافقته (على سبيل المثال، عن طريق الإبلاغ عن الرسالة إلى BNEI باعتبارها موضع اعتراض).\nتحتفظ شركة BNEI بالحق في حذف أي محتوى خاص بالمستخدم عبر الإنترنت أو رفض تلقيه. وعلى الرغم من عدم إجراء شركة BNEI فحوصات أو تعديلات أو مراقبة أي من المحتويات الخاصة بالمستخدم التي تم نشرها على اللعبة بشكل منتظم، فإن شركة BNEI تحتفظ لنفسها بالحق ولها مطلق الحرية في إزالة أو فحص أو تعديل أي محتوى خاص بالمستخدم يتم نشره عبر اللعبة، إذا حددت شركة BNEI وفقًا لتقديرها المعقول أن المحتوى الخاص بالمستخدم هذا يخالف هذه الاتفاقية و/أو أي حق لجهة خارجية أو قانون أو قاعدة أو لوائح المعمول بها. لا يجوز لك استخدام اللعبة إذا كان قد تم إيقافك مؤقتًا أو إزالتك من اللعبة سابقًا. أنت المسؤول الوحيد عن أي محتوى خاص بالمستخدم تقوم بنشره أو إرساله إلى أي مستخدم أو جهات خارجية. على وجه الخصوص، أنت توافق على عدم القيام أو محاولة القيام أو جعل آخر يقوم بأي مما يلي فيما يتعلق باللعبة:\na )نشر أي محتوى خاص بالمستخدم غير قانوني، أو تشهيري، أو افترائي، أو مسيء، أو فاضح، أو إباحي، أو غير لائق، أو مبتذل، أو خليع، أو جنسي صريح، أو يتضمن مضايقات، أو تهديدات، أو ينتهك الخصوصية، أو حقوق الإشهار، أو مهين، أو مُحرض، أو احتيالي؛ أو يروّج لأي نشاط غير قانوني، أو أي نشاط معادٍ للمجتمع أو يشجعه، بما في ذلك الاختراق؛ أو يروّج للعنصرية، والتعصب، والكراهية، أو الأذى الجسدي، أو أي ضرر من أي نوع ضد أي مجموعة أو فرد أو غير ذلك من الأفعال المرفوضة؛\nb )نشر أي محتوى خاص بالمستخدم قد ينتهك أي براءة اختراع أو علامة تجارية أو سر تجاري أو حق نشر أو أحد الحقوق الفكرية أو الملكية الأخرى لأي شخص أو كيان؛\nc )مزاولة الأنشطة التجارية أو المبيعات التجارية، بما في ذلك نقل أي إعلانات تجارية أو ترويج تجاري؛\nd )إدخال أي معلومات شخصية عن أي شخص أو الكشف عنها أو نشرها (بما في ذلك معلوماتك الشخصية)؛\ne )انتحال شخصية أي شخص أو كيان، بما في ذلك أي مسؤول في شركة BNEI أو قادة المنتديات أو المرشدون أو المضيفون أو الموظفون و الوكلاء أو الادعاء كذبًا ارتباطك بشخص أو كيان أو الإساءة إليه؛\nf )إعاقة أو تعطيل اللعبة أو التدفق الطبيعي للعبة أو الحوار أو استخدام لغة بذيئة أو مهينة أو الصراخ بشكل مفرط (على سبيل المثال، استخدام الأحرف الكبيرة في الكتابة) أو \"إرسال رسائل غير مرغوب فيها\"، أو أي طرق أخرى تخريبية أو ضارة تزعج المستخدمين الآخرين في اللعبة؛\ng )استخدام أو استغلال أي خلل أو أخطاء أو عيوب في التصميم للتمكن من الوصول غير المصرح به إلى اللعبة أو للتمتع بميزة غير عادلة تجاه اللاعبين الآخرين، أو الغش أو استخدام عمليات استغلال غير مصرح بها تتعلق باللعبة، بما في ذلك، على سبيل المثال لا الحصر، الوصول إلى أجزاء من اللعبة غير مصرح لك بالوصول إليها واستخدام أي بوتات أو محاكيات أو أدوات جهات خارجية غير مصرح بها؛\nh )الإتيان بأي فعل يتعارض مع قدرة المستخدمين الآخرين على الاستمتاع باللعبة وفقًا لقواعدها أو يزيد بشكل كبير من نفقات شركة BNEI، أو يتسبب في مواجهة الشركة ومقدم النظام الأساسي صعوبات في الحفاظ على اللعبة لتحقيق الاستفادة لجميع مستخدميها.\ni )قطع الاتصال عن الشبكة في أثناء اللعب عبر الإنترنت بشكل متعمد أو التعرض للانهزام متعمدًا من قبل لاعب معين بشكل متكرر للمساعدة في رفع ترتيبه أو الفوز بشكل أسرع في اللعبة.\nj )المقايضة أو البيع أو البيع بالمزاد العلني أو نقل أو محاولة نقل أي عناصر افتراضية أو عملة اللعبة خارج اللعبة؛\nk )مخالفة أو انتهاك شروط هذه الاتفاقية أو السياسات الأخرى التي تُبلغها شركة BNEI، أو ينشئ مسؤولية لشركة BNEI.",
+ "arabicFontType":2,
+ "dutchText":"8. ONLINE GEDRAG. Tenzij door opzettelijk falen of grove nalatigheid van BNEI, is BNEI niet verantwoordelijk of aansprakelijk voor het gedrag van enigerlei gebruikers, ongeacht of dit gedrag betrekking heeft op de toegang tot of het gebruik van de Game. BNEI kan uw toegang tot de Game te allen tijde opschorten of beëindigen indien u de voorwaarden van deze Clausule 8 of enige andere voorwaarden en bepalingen van deze Overeenkomst schendt. BNEI kan (bijvoorbeeld naar aanleiding van een vordering van een auteursrechteigenaar) Gebruikersinhoud die geüpload, gepubliceerd, opgeslagen of weergegeven wordt in de Game (hierna \"gepubliceerd\") beoordelen, op voorwaarde dat in het geval van Gebruikersinhoud die gedeeld wordt als onderdeel van een privébericht binnen de Game, BNEI deze content niet zal bekijken of beoordelen, tenzij ten minste één bij de communicatie betrokken partij zijn toestemming verleent (bijvoorbeeld door het bericht bij BNEI as aanstootgevend te melden). BNEI behoudt zich het recht voor om Gebruikersinhoud te verwijderen of te weigeren voor online publicatie. Hoewel BNEI niet regelmatig in de game gepubliceerde Gebruikersinhoud bekijkt, bewerkt of controleert, behoudt BNEI zich het recht voor om, geheel naar eigen goeddunken, Gebruikersinhoud die via de Game wordt gepubliceerd te verwijderen, te bekijken of te bewerken indien BNEI naar redelijk goeddunken bepaalt dat deze Gebruikersinhoud in strijd is met deze Overeenkomst en/of enig recht van derden, van toepassing zijnde wetgeving, regelgeving of verordeningen. Het is u niet toegestaan de Game te gebruiken indien u eerder geschorst bent voor of verwijderd bent uit de Game. U bent geheel en al verantwoordelijk voor alle Gebruikersinhoud die u publiceert of verstuurt naar gebruikers of derden. U stemt er specifiek mee in het volgende met betrekking tot de Game niet doen, niet pogen te doen, een derde partij geen toestemming geven om te doen of toestaan om te doen:\na) het publiceren van Gebruikersinhoud die onwettig, lasterlijk, smadend, beledigend, obsceen, pornografisch, onfatsoenlijk, vulgair, onzedelijk, seksueel expliciet, intimiderend, bedreigend, inbreuk maakt op privacy- of publiciteitsrechten, krenkend, opruiend of frauduleus is; illegale of andere antisociale activiteiten bevordert of stimuleert, waaronder hacking, racisme, onverdraagzaamheid, haat of fysieke of andere schade van welke aard dan ook tegen een groep of individu of anderszins verwerpelijk is;\nb) het publiceren van Gebruikersinhoud die mogelijk inbreuk maakt op patenten, handelsmerken, handelsgeheimen, auteursrechten of ander intellectueel of eigendomsrecht van enigerlei persoon of entiteit;\nc) het zich bezighouden met commerciële activiteiten of commerciële verkoop, inclusief het verzenden van commerciële advertenties of aanbiedingen;\nd) het invoeren, openbaar maken of verspreiden van persoonlijke informatie over iemand (inclusief uzelf);\ne) het zich voordoen als een persoon of entiteit, inclusief BNEI-functionarissen, forumleiders, gidsen, hosts, werknemers of agenten, of ten onrechte een verklaring afleggen over uw relatie met een persoon of entiteit of anderszins een verkeerde voorstelling hiervan geven;\nf) de Game of het normale verloop van de Gameplay of dialogen hinderen of verstoren of vulgaire taal gebruiken, beledigend zijn, buitensporig \"schreeuwen\" (bijv. alles in HOOFDLETTERS typen). \"spammen\" of andere verstorende of schadelijke methoden gebruiken die andere gebruikers van de Game hinderen;\ng) het gebruiken of exploiteren van bugs, fouten of ontwerpfouten om ongeoorloofde toegang te krijgen tot de Game, een oneerlijk voordeel te behalen ten opzichte van andere spelers, of om vals te spelen of ongeoorloofde exploits met betrekking tot de Game te gebruiken, inclusief maar niet beperkt tot het verkrijgen van toegang van delen van de Game waar u geen toestemming voor hebt of door bots, emulatoren of andere tools van derden te gebruiken;\nh) wat dan ook te doen wat de mogelijkheid van andere gebruikers hindert om de Game te spelen in overeenstemming met de regels ervan of dat de kosten of inspanningen van BNEI of de platformprovider om de Game te onderhouden voor het plezier van al zijn gebruikers substantieel verhoogt;\ni) het opzettelijk verbreken van de verbinding met het netwerk tijdens online spelen of uzelf herhaaldelijk te laten verslaan door een bepaalde speler om zijn positie te helpen verbeteren of score in de Game te behalen;\nj) het verhandelen, verkopen, veilen of anderszins overdragen of proberen over te dragen van Virtuele voorwerpen of Gamebetaalmiddelen buiten de Game;\nk) het anderszins in strijd handelen met de voorwaarden van deze Overeenkomst, andere beleidsmaatregelen die door BNEI worden gecommuniceerd of aansprakelijkheid voor BNEI doet ontstaan.",
+ "dutchFontType":2,
+ "chineseSText":"8. 在线行为。除非是BNEI的故意错误或重大疏忽,否则BNEI对任何用户的行为概不负责,无论此类行为是否与游戏的访问或使用相关。如果您违反本第8节的条款或本协议的任何其他条款和条件,BNEI可随时暂停或终止您对游戏的访问权限。BNEI可能(例如对版权所有者提出的声明作出回应),审查在游戏中上传、发布、存储或显示的任何用户内容(以下称为“发布”),前提是该用户内容被共享为游戏内任何私人消息的一部分。除非至少有通信中一方同意(例如通过向BNEI报告信息令人不快),否则BNEI不会审查此内容。BNEI保留删除或拒绝任何用户内容的权利。虽然BNEI不会定期审查、编辑或监控游戏中发布的任何用户内容,但是如果BNEI在合理情况下,确定此类用户内容违反本协议和/或法律、规则或法规下的任何第三方权利, BNEI保留此类权利,并且有删除、审查或编辑通过游戏发布的任何用户内容的绝对酌情决定权。如果您以前被暂停游戏或从游戏中被删除,则不得使用游戏。您对您发布或传送给任何用户或第三方的任何用户内容负全部责任。具体来说,您同意不会从事、试图从事或者让另一个人在游戏中从事以下任何行为:\na) 发布任何非法、诽谤、中伤、冒犯、淫秽、色情、不雅、粗俗、猥亵、露骨的性表现、骚扰、威胁、侵犯隐私或宣传权利、滥用、煽动性或欺诈性的用户内容;宣传或鼓励任何非法或其他反社会活动,包括黑客行为;宣传对任何群体、个人或任何令人不快的种族主义、偏执、仇恨或任何形式的身体或其他伤害;\nb) 发布任何可能侵犯任何个人或实体的专利、商标、商业秘密、版权或其他知识产权或所有权的用户内容;\nc) 从事商业活动或商业销售,包括传播任何商业广告或招揽;\nd) 输入、披露或传播有关任何人(包括您)的任何个人信息;\ne) 假冒任何个人或实体,包括任何BNEI官方人员、论坛领导、指导、主持人、雇员或代理人,或虚假陈述或以其他方式虚假陈述您与个人或实体的联系;\nf) 阻止或扰乱游戏或游戏玩法或对话的正常流程,或使用粗俗的语言、滥用、过度喊叫(例如全大写)、“垃圾邮件”或其他扰乱其他用户的游戏的破坏性或有害的方法;\ng) 使用或利用任何错误或设计缺陷未经授权而访问游戏,获得与其他玩家不公平的优势,或欺骗或利用与游戏相关的未经授权的方式,包括但不限于访问您无权访问的游戏部分,以及使用任何漫游器、仿真器或其他未经授权的第三方工具来参与游戏;\nh) 做任何妨碍其他用户按照其规则玩游戏的权利的事情,或者大幅增加BNEI或平台提供商为所有用户维护游戏的费用或难度;\ni) 在网络播放期间有意与网络断开连接,或者故意被一个特定的玩家反复击败,以帮助他们提高排名或提高赢得比赛的次数;\nj) 交易、出售、拍卖或以其他方式转移或尝试在游戏之外转移任何虚拟物品或游戏币;\nk) 其他违反本协议条款,BNEI传达的其他政策,或使得BNEI承担责任的其他任何行为。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_16",
+ "japaneseText":"\n9. 著作権に関するポリシー\n\n著作権者またはその代理人は、自らが保有または管理する著作権が本件ゲーム内の何らかのものにより侵害されていると判断した場合には、後述するところに従い、弊社指定の著作権代理人に対し、当該侵害に関する通知を提出することができます。アメリカ合衆国法第17編第512条(c)(3)に定められた情報および宣誓の提出により、かかる通知に対する処理を迅速化することが可能です。侵害通知に際して、かかる法律上の要件を満たすことは、米国内に所在する著作権者の場合を除き、必須ではありません。侵害がある旨の通知において故意に不実表示をした者は、弊社が被疑侵害品とされた素材または行為の削除またはアクセス停止に際し当該不実表示に依拠したことに起因して弊社または被疑侵害者に生じた一切の損害(費用および弁護士報酬も含まれます)について、賠償責任を負うことがあります。当社は、第三者の知的財産権の侵害を繰り返したユーザーについて、状況に応じ適切な場合に、当社の単独の裁量により、アカウントを削除するという方針を採用しています。ただし、当社は、他者の知的財産権を侵害したユーザーについて、侵害が繰り返されたか否かにかかわらず、本件ゲームへのアクセスを制限しまたは停止することもあります。\n\n\n\n株式会社バンダイナムコエンターテインメント\n\n名宛人:著作権代理人\n\n日本国\n\n〒108-0014\n\n東京都港区芝5-37-8\n\n+81-3-6744-6112(電話)\n\n+81-3-6866-0577(ファックス)\n\ncopyrightagent@bandainamcoent.co.jp",
+ "englishUsText":"9. COPYRIGHT POLICY. Copyright owners or agents of copyright owners who believe that anything in the Game infringes upon any copyright owned or controlled by them, may submit a notification of such infringement with our designated Copyright Agent as set forth below. The processing of your notification can be expedited by providing the information and declarations set out in 17 U.S.C. §512(c)(3). Compliance with this statute is not a prerequisite for infringement notification except for copyright owners located in the United States. Any person who knowingly misrepresents in a notification that the material or activity is infringing, may be liable for any damages, including costs and attorneys’ fees, incurred by us or the alleged infringer as the result of our relying upon such misrepresentation in removing or disabling access to the accused material or activity. BNEI has adopted a policy of terminating, in appropriate circumstances and at BNEI’s sole discretion, users who are repeat infringers of the intellectual property rights of third parties. Provided however that, BNEI also may limit or terminate access to the Game of any users who infringe any intellectual property rights of others, whether or not there is any repeat infringement.\n\nBANDAI NAMCO Entertainment Inc.\nAttn: Copyright Agent\n5-37-8 Shiba, Minato-ku,\nTokyo 108-0014\nJapan\n+81-3-6744-6112 (phone)\n+81-3-6866-0577 (fax)\ncopyrightagent@bandainamcoent.co.jp",
+ "englishUsFontType":3,
+ "frenchText":"9. POLITIQUE RELATIVE AUX DROITS D’AUTEUR. Les détenteurs de droits d’auteur ou leurs représentants qui estiment qu’un contenu quelconque du Jeu porte atteinte aux droits d’auteur qu’ils possèdent ou contrôlent pourront rendre compte de l’infraction constatée auprès de l’agent en charge des droits d’auteur selon les modalités indiquées plus bas. Pour accélérer le traitement de votre signalement, veuillez renseigner les informations et produire les déclarations requises conformément à l’article 17 U.S.C. §512(c)(3). Cette démarche n’est pas obligatoire pour les signalements d’infraction, sauf pour les détenteurs de droits d’auteur situés aux États-Unis. Quiconque communiquerait un signalement d’infraction délibérément mensonger s’expose au paiement de tous dommages-intérêts, frais de représentation compris que nous ou le contrevenant présumé avons engagés suite au faux signalement qui a motivé la suppression ou la désactivation du contenu ou de l’activité suspecté. BNEI s’est engagé, si les circonstances l’imposent et à sa seule discrétion, à résilier l’accès au Jeu des utilisateurs coupables d’infractions répétées aux droits de propriété intellectuelle de tiers. Pour autant, BNEI est également susceptible de restreindre ou résilier l’accès au Jeu des utilisateurs qui contreviennent aux droits de propriété intellectuelle de tiers, qu’il s’agisse ou non de récidive.\n\nBANDAI NAMCO Entertainment Inc.\nAttn : Copyright Agent\n5-37-8 Shiba, Minato-ku,\nTokyo 108-0014\nJapan\n+81-3-6744-6112 (téléphone)\n+81-3-6866-0577 (fax)\ncopyrightagent@bandainamcoent.co.jp",
+ "frenchFontType":3,
+ "italianText":"9. INFORMATIVA SUI DIRITTI D'AUTORE. Se il titolare di un diritto d'autore o il rispettivo agente è convinto che un elemento del Gioco violi un diritto d'autore da lui detenuto o controllato può notificare tale violazione al nostro agente designato per i diritti d'autore, come illustrato di seguito. La procedura di notifica può essere accelerata fornendo le informazioni e le dichiarazioni indicate in 17 U.S.C. §512(c)(3). Il rispetto di tale statuto non rappresenta un prerequisito per la notifica di violazione, se non per i titolari di diritti d'autore residenti negli Stati Uniti. Chiunque dichiari falsamente, in una notifica, che un materiale o un'attività costituisce una violazione è tenuto a farsi carico di ogni danno subìto da noi o dal presunto trasgressore, inclusi i costi e le parcelle dell'avvocato, che derivi dall'esserci fidati di tale falsa dichiarazione e avere rimosso o disabilitato l'accesso ai materiali o alle attività oggetto della notifica. BNEI ha come condotta quella di chiudere, nei dovuti casi e a propria esclusiva discrezione, gli account di utenti che vìolino ripetutamente i diritti di proprietà intellettuale di terze parti. Fatto salvo quanto sopra, BNEI può anche decidere di limitare o interrompere l'accesso al Gioco da parte di utenti che vìolino i diritti di proprietà intellettuale altrui, indipendentemente dal fatto che questi siano o meno recidivi.\n\nBANDAI NAMCO Entertainment Inc.\nAttn: Copyright Agent\n5-37-8 Shiba, Minato-ku,\nTokyo 108-0014\nJapan\n+81-3-6744-6112 (telefono)\n+81-3-6866-0577 (fax)\ncopyrightagent@bandainamcoent.co.jp",
+ "italianFontType":3,
+ "germanText":"9. RICHTLINIEN ZUM URHEBERRECHT: Urheberrechtsinhaber oder Beauftragte von Urheberrechtsinhabern, die der Ansicht sind, dass etwas im Spiel gegen die in ihrem Besitz oder unter ihrer Kontrolle befindlichen Urheberrechte verstößt, können einen solchen Verstoß unserem designierten Urheberrechtsbeauftragten melden wie nachfolgend beschrieben. Die Bearbeitung Ihrer Meldung kann beschleunigt werden, indem Sie die Informationen und Angaben bereitstellen, die im US-amerikanischen Gesetz 17 U.S.C. §512(c)(3) aufgeführt sind. Die Erfüllung dieser Satzung ist keine Vorbedingung für die Verstoßmeldung, mit Ausnahme von Urheberrechtsinhabern in den Vereinigten Staaten. Jede Person, die in einer Meldung wissentlich fälschlicherweise behauptet, dass bestimmtes Material oder eine bestimmte Aktivität einen Verstoß darstelle, kann für Schäden haftbar gemacht werden (einschließlich Kosten und Anwaltsgebühren), die bei uns oder dem vorgeblichen Rechtsverletzer entstehen, wenn wir auf Grundlage einer solchen Falschdarstellung das beanstandete Material oder die Aktivität entfernen oder den Zugriff darauf deaktivieren. BNEI hat eine Richtlinie eingeführt, laut der bei entsprechenden Umständen und im alleinigen Ermessen von BNEI Nutzer gesperrt werden, die wiederholt gegen geistige Eigentumsrechte Dritter verstoßen haben. BNEI kann jedoch auch den Zugriff von Nutzern auf das Spiel begrenzen oder sperren, die nur ein Mal (und nicht wiederholt) gegen geistige Eigentumsrechte Dritter verstoßen.\n\nBANDAI NAMCO Entertainment Inc.\nAttn: Copyright Agent\n5-37-8 Shiba, Minato-ku,\nTokyo 108-0014\nJapan\nTel.: +81-3-6744-6112\nFax: +81-3-6866-0577\ncopyrightagent@bandainamcoent.co.jp",
+ "germanFontType":3,
+ "spanishText":"9. POLÍTICA DE DERECHOS DE AUTOR. Los titulares de derechos de autor, así como sus agentes, que consideren que algún elemento del Juego vulnera derechos de autor que estos poseen o controlan podrán remitir una notificación de dicha infracción a nuestro agente de derechos de autor designado (Copyright Agent), cuyos datos se indican más abajo. La tramitación de su notificación se agilizará si facilita la información y las declaraciones que se establecen en el Código de EE. UU. (U.S.C.), conforme al artículo 17, párrafo 512, apartado c), inciso 3. El cumplimiento de esta ley no es un requisito esencial para las notificaciones de infracción, salvo para los titulares de derechos de autor residentes en los Estados Unidos de América. Toda persona que, a sabiendas, declare falsamente en una notificación que el material o la actividad están infringiendo un derecho, podrá incurrir en responsabilidades relacionadas con los daños y perjuicios, incluidas las costas y honorarios de letrados, que hayamos soportado nosotros o el presunto infractor a consecuencia de haber creído dicha manifestación falsa y procedido a cancelar o deshabilitar el acceso al material o a la actividad objeto de la denuncia. BNEI ha adoptado una política para concluir la relación, en determinadas circunstancias y a discreción exclusiva de BNEI, con los usuarios que vulneren de forma repetida los derechos de propiedad intelectual de terceros, siempre y cuando, no obstante, BNEI también limite o ponga fin al acceso al Juego por parte de cualquier usuario que vulnere los derechos de propiedad intelectual de otros, ya se trate de una infracción repetida o no.\n\nBANDAI NAMCO Entertainment Inc.\nAttn: Copyright Agent\n5-37-8 Shiba, Minato-ku,\nTokyo 108-0014\nJapan\nTel.: +81-3-6744-6112\nFax: +81-3-6866-0577\ncopyrightagent@bandainamcoent.co.jp",
+ "spanishFontType":3,
+ "chineseTText":"9.版權政策。版權所有者或其代理人如認為在遊戲中任何侵犯其所擁有或控制之版權的內容,可向我們指定的版權代理人提交如下所示的侵權通知。依 17 U.S.C. §512(C)(3) 格式提供資訊和聲明,可以加快通知的處理速度。違反本規約的行為不屬於侵權通知的前提條件,除了位於美國的版權所有者外。任何人故意在通知中歪曲資料或活動均屬侵權行為,可能需對我們或被侵權人的任何損失(包括費用和律師費)承擔責任,因為我們由於此類失實陳述,需要消除或禁用該材料或活動。BNEI 通過了一項政策,即在適當情況下,由 BNEI 自行決定終止重複侵犯第三方智慧財產權的使用者。但不論是否存在任何重複的侵權,BNEI 仍可能會限制或終止任何侵犯他人智慧財產權的使用者的存取權限。\n\n\n\nBANDAI NAMCO Entertainment Inc.\n\nAttn: Copyright Agent\n\n5-37-8 Shiba, Minato-ku,\n\nTokyo 108-0014\n\nJapan\n\n+ 81-3-6744-6112(電話)\n\n+ 81-3-6866-0577(傳真)\n\ncopyrightagent@bandainamcoent.co.jp",
+ "chineseTFontType":1,
+ "koreanText":"9. 저작권 정책. 자신이 소유 혹은 통제하는 저작권이 본 게임 내의 요소에 의해 침해되었다고 판단하는 저작권 소유자나 그 대리인은, 아래 안내된 바에 따라 당사 지정 저작권 담당자에게 침해 통지를 제출할 수 있습니다. 미연방법전 제17권 제512(c)(3)절에 규정된 정보 및 신고 사항을 제공할 경우 귀하의 통지가 보다 신속히 처리될 수 있습니다. 미국에 위치한 저작권 소유자를 제외하고는, 해당 법의 준수가 침해 통지의 전제 조건은 아닙니다. 특정 소재 혹은 활동이 저작권을 침해한다는 통지가 허위임을 알면서도 이를 제출하는 자는, 당사가 해당 허위 통지에 근거하여 해당 소재 혹은 활동을 삭제하거나 그에 대한 접근을 차단함으로 인해 당사에게 또는 침해자로 주장된 자에게 발생하는 일체의 손해(각종 비용 및 변호사 비용도 포함)를 배상할 책임이 있을 수 있습니다. BNEI는 제3자의 지적재산권을 상습적으로 침해하는 사용자를, 적절한 상황에서 그리고 BNEI의 전적인 자체 재량에 따라 퇴출시키는 정책을 시행하고 있습니다. 단 BNEI는 타인의 지적재산권을 침해하는 사용자에 대해서는, 상습적인 침해 여부에 관계 없이도 본 게임 접근을 제한하거나 종료시킬 수 있습니다.\n\nBANDAI NAMCO Entertainment Inc.\nAttn: Copyright Agent\n5-37-8 Shiba, Minato-ku,\nTokyo 108-0014\nJapan\n전화: +81-3-6744-6112\n팩스: +81-3-6866-0577\ncopyrightagent@bandainamcoent.co.jp",
+ "koreanFontType":2,
+ "portugueseText":"9. POLÍTICA DE DIREITOS AUTORAIS. Titulares de direitos autorais ou seus agentes que acreditarem que algo no Jogo viole direitos autorais próprios ou controlados por eles poderão enviar uma notificação de tal violação para nosso Agente de Direitos Autorais discriminado abaixo. É possível agilizar o processamento da sua notificação com o fornecimento das informações e declarações estipuladas na disposição 17 U.S.C. §512(c)(3). O cumprimento desta norma não é um pré-requisito para a notificação de violação de direitos autorais, salvo para os titulares de direitos autorais localizados nos Estados Unidos. Qualquer pessoa que propositalmente fizer uma declaração falsa em uma notificação de violação de direitos autorais por algum material ou atividade poderá ser responsável por danos, incluindo custas judiciais e honorários advocatícios, incorridos por nós ou pelo suposto violador em decorrência da nossa confiança em tal declaração falsa para remover ou desabilitar o acesso ao material ou à atividade acusada de violar direitos autorais. A BNEI, em circunstâncias adequadas e a seu exclusivo critério, adota uma política de excluir usuários que sejam reincidentes na violação de direitos de propriedade intelectual de terceiros. No entanto, fica estabelecido que a BNEI também poderá limitar ou extinguir o acesso ao Jogo de qualquer usuário que viole qualquer direito de propriedade intelectual de terceiros, independentemente de haver reincidência.\n\nBANDAI NAMCO Entertainment Inc.\nAttn: Copyright Agent\n5-37-8 Shiba, Minato-ku,\nTokyo 108-0014\nJapão\n+81-3-6744-6112 (telefone)\n+81-3-6866-0577 (fax)\ncopyrightagent@bandainamcoent.co.jp",
+ "portugueseFontType":2,
+ "russianText":"9. ПОЛИТИКА В ОТНОШЕНИИ АВТОРСКОГО ПРАВА. Владельцы авторских прав или их агенты, полагающие, что какой-либо элемент Игры нарушает находящееся в их владении или контролируемое ими авторское право, могут направить уведомление о таком нарушении нашему уполномоченному Агенту по защите авторских прав, используя указанную далее процедуру. Для ускорения процедуры рассмотрения вашего уведомления следует предоставить информацию и заявления, указанные в Своде законов США, часть 17, параграф 512(c)(3). Соблюдение этого законодательного акта может являться предпосылкой для направления уведомления о нарушении только для владельцев авторских прав, находящихся на территории США. Любое лицо, умышленно указавшее в уведомлении ложную информацию о нарушении материалом или действием авторских прав, может понести ответственность за ущерб, включая расходы на услуги адвоката, понесенные нами или предполагаемым нарушителем в результате того, что мы, полагаясь на достоверность предоставленных ложных сведений, удалили или ограничили доступ к материалу или действию, к которым были предъявлены претензии. В компании BNEI принята политика прекращения обслуживания, согласно которой в определенных обстоятельствах и по собственному усмотрению компания BNEI может расторгнуть Соглашение с пользователями, уличенными в многократных нарушениях прав третьих сторон на интеллектуальную собственность. Следует также учитывать, что компания BNEI также может ограничить или заблокировать доступ к Игре пользователей, уличенных в нарушении права третьих сторон на интеллектуальную собственность, даже если факт такого нарушения не является многократным.\n\nBANDAI NAMCO Entertainment Inc.\nAttn: Copyright Agent\n5-37-8 Shiba, Minato-ku,\nTokyo 108-0014\nJapan\n+81-3-6744-6112 (телефон)\n+81-3-6866-0577 (факс)\ncopyrightagent@bandainamcoent.co.jp",
+ "russianFontType":2,
+ "turkishText":"9. TELİF HAKKI POLİTİKASI. Oyundaki herhangi bir şeyin onlara ait veya onların kontrolü altındaki bir telif hakkını ihlal ettiğine inanan telif hakkı sahipleri ya da telif hakkı sahibi temsilcileri, bu ihlalin bildirimini, aşağıda açıklandığı şekilde Telif Hakkı Temsilcimize sunabilir. Bildiriminizin işlenmesi, 17 U.S.C. §512(c)(3)'te belirtilen bilgiler ve beyanlar sağlanarak hızlandırılabilir. Birleşik Devletler'de bulunan telif hakkı sahipleri haricinde, bu yasaya uymak ihlal bildirimi için ön koşul değildir. Bildiriminde, materyal veya faaliyetin ihlal içinde olduğunu bilinçli olarak yanlış ifade eden kişiler, bu yanlış ifadeye güvenerek suçlanan materyale veya faaliyete erişimi kaldırmamız veya engellememiz sonucunda bizim veya iddia edilen ihlalcinin, maliyetler ve avukatlık ücretleri dahil uğradığı her türlü zarardan sorumlu olacaktır. BNEI, uygun koşullarda ve takdiri kendisine ait olmak üzere, üçüncü kişilerin fikri mülkiyet haklarını tekrar tekrar ihlal eden kullanıcıların erişimini sonlandırma politikası benimsemektedir. Bununla birlikte, BNEI, tekrar eden ihlal olup olmadığına bakılmaksızın, başkalarının fikri mülkiyet haklarını ihlal eden kullanıcıların Oyuna erişimini de sınırlayabilir veya sonlandırabilir.\n\nBANDAI NAMCO Entertainment Inc.\nDikkatine: Telif Hakkı Temsilcisi\n5-37-8 Shiba, Minato-ku,\nTokyo 108-0014\nJaponya\n+81-3-6744-6112 (telefon)\n+81-3-6866-0577 (faks)\ncopyrightagent@bandainamcoent.co.jp",
+ "turkishFontType":2,
+ "arabicText":"9. سياسة حقوق الطبع والنشر\nيحق لمالكي حقوق الطبع والنشر أو وكلاء مالكي حقوق الطبع والنشر الذين يعتقدون أن أي شيء في اللعبة ينتهك أي حق نشر مملوك لهم أو يخضع لإشرافهم، إرسال إخطار بهذا الانتهاك إلى وكيل حقوق الطبع والنشر المعيَّن لدينا كما هو موضَّح أدناه. يمكن تعجيل معالجة الإخطار الخاص بك عن طريق توفير المعلومات والبيانات الواردة في المادة رقم (512)-(ج)-(3) من الباب رقم (17) من حدود المسؤولية عن انتهاك حقوق الطبع والنشر عبر الإنترنت في الولايات المتحدة الأمريكية. لا يُعدُّ الامتثال لهذا النظام الأساسي شرطًا ضروريًا للإخطار بالانتهاك، ويستثنى من ذلك مالكو حقوق الطبع والنشر المقيمون في الولايات المتحدة. إن أي شخص يعطي متعمدًا صورة خاطئة في إخطاره عن انتهاك المادة أو النشاط، يُعدُّ مسؤولاً عن أي أضرار بما في ذلك التكاليف وأتعاب المحاماة التي نتكبدها نحن أو المعتدي المزعوم نتيجة تعويلنا على تلك الصورة الخاطئة وإزالة أو تعطيل الوصول إلى النشاط أو المادة المشتبه فيها. تتبع BNEI سياسة وقف الاستخدام لمن يعاودون التعدي على حقوق الملكية الفكرية الخاصة بالغير، وذلك في ظل الظروف المناسبة وحسب السلطة التقديرية لشركة BNEI وحدها. ومع ذلك، يجوز لشركة BNEI أيضًا تقييد أو إنهاء وصول المستخدمين إلى اللعبة ممن ينتهكون أي حقوق ملكية فكرية للآخرين، سواء تكرَّرت حالات الانتهاك أم لا.\n\nBANDAI NAMCO Entertainment Inc.\nAttn: Copyright Agent\n5-37-8 Shiba, Minato-ku,\nTokyo 108-0014\nJapan\n+81-3-6744-6112 (phone)\n+81-3-6866-0577 (fax)\ncopyrightagent@bandainamcoent.co.jp",
+ "arabicFontType":2,
+ "dutchText":"9. AUTEURSRECHTBELEID. Auteursrechteigenaren of agenten van auteursrechteigenaren die van mening zijn dat iets in de Game inbreuk maakt op auteursrechten die hun eigendom zijn of waarover ze het beheer hebben, kunnen een kennisgeving van een dergelijke inbreuk indienen bij onze aangewezen auteursrechtagent zoals hieronder uiteengezet. Het verwerken van uw melding kan worden versneld door de informatie en verklaringen te verstrekken zoals beschreven zijn in 17 U.S.C. §512(c)(3). Naleving van deze richtlijn is geen voorwaarde voor kennisgeving van inbreuk, met uitzondering van auteursrechteigenaren die zich in de Verenigde Staten bevinden. Eenieder die bewust valselijk stelt in een melding dat het materiaal of de activiteit inbreuk maakt, kan mogelijk aansprakelijk zijn voor enigerlei schade, inclusief kosten en honoraria van advocaten, die door ons of de vermeende inbreukmaker zijn gemaakt ten gevolge van het feit dat wij ons op een dergelijke verkeerde voorstelling baseren bij het verwijderen van of uitschakelen van de toegang tot het gelaakte materiaal of activiteit. BNEI hanteert een beleid waarin de relatie met gebruikers die herhaaldelijk inbreuk maken op de intellectuele eigendomsrechten van derden, in toepasselijke omstandigheden en naar eigen goeddunken van BNEI beëindigd wordt. Met dien verstande echter dat BNEI ook de toegang tot de Game kan beperken of beëindigen van gebruikers die inbreuk maken op intellectuele eigendomsrechten van anderen, ongeacht of er sprake is van recidive.\n\nBANDAI NAMCO Entertainment Inc.\nAttn: Copyright Agent\n5-37-8 Shiba, Minato-ku,\nTokio 108-0014\nJapan\n+81-3-6744-6112 (telefoon)\n+81-3-6866-0577 (fax)\ncopyrightagent@bandainamcoent.co.jp",
+ "dutchFontType":2,
+ "chineseSText":"9. 版权政策。所有版权所有者或版权拥有人的代理人认为的在游戏中的任何侵犯他们拥有或控制的版权的内容,都可以向我们指定的版权代理人提交如下所示的侵权通知。通过提供17 U.S.C. §512(C)(3)中的信息和声明,可以加快通知的处理。违反本规约的行为不属于侵权通知的前提条件,位于美国的版权所有者除外。任何人故意在通知中歪曲资料或活动,都可能要对我们或被侵权人的任何损失(包括费用和律师费)负责,这是由于我们因为此类失实陈述,需要消除或禁用该材料或活动。BNEI通过了一项政策,即在适当情况下,由BNEI自行决定终止重复侵犯第三方知识产权的用户。但是,不管是否存在任何重复的侵权,BNEI还可能会限制或终止任何侵犯他人知识产权的用户的访问权限。\n\nBANDAI NAMCO Entertainment Inc.\nAttn: Copyright Agent\n日本东京都港区芝五丁目37番8号\n+ 81-3-6744-6112(电话)\n+ 81-3-6866-0577(传真)\ncopyrightagent@bandainamcoent.co.jp",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_17",
+ "japaneseText":"\n10. 第三者のコンテンツ\n\n本件ゲームを通じ、ユーザー、広告主その他の第三者のコンテンツがお客様に提供されることがあります。弊社は、当該第三者のコンテンツを管理しておりません。そのため、お客様は、当社の故意または重過失による場合を除き、いかなる第三者のコンテンツについても弊社が責任を負わないこと、第三者のコンテンツに含まれる情報の正確性または品質のいずれに関しても弊社が保証しないこと、また第三者のコンテンツのうち意図しないもの、好ましくないもの、不正確なもの、誤解を招くものまたは不法なもののいずれについても弊社が責任を負わないことに、同意しているものとします。商号、商標、メーカー、サプライヤーその他によるいかなる製品、サービス、プロセスその他の情報についての言及も、これらについて当社による是認、後援もしくは推奨または提携関係を意味するものではなく、これらを黙示するものでもありません。ただし、当社による明示がある場合は、この限りではありません。",
+ "englishUsText":"10. THIRD PARTY CONTENT. Content from any users, advertisers, and other third parties may be made available to you through the Game. Because we do not control third party content, you agree that unless due to intentional fault or gross negligence of BNEI, we are not responsible for any third party content, make no guarantees about the accuracy or quality of the information in third party content; and assume no responsibility for unintended, objectionable, inaccurate, misleading, or unlawful third party content. Reference to any products, services, processes or other information, by trade name, trademark, manufacturer, supplier or otherwise does not constitute or imply endorsement, sponsorship or recommendation thereof, or any affiliation therewith, by BNEI, except where expressly stated by BNEI.",
+ "englishUsFontType":3,
+ "frenchText":"10. CONTENUS TIERS. Les contenus d’autres utilisateurs, annonceurs et autres tiers sont susceptibles d’être mis à votre disposition dans le cadre du Jeu. Sachant que nous n’exerçons aucun contrôle sur les contenus tiers, vous acceptez qu’à moins d’une faute intentionnelle ou d’une négligence grave de la part de BNEI, notre responsabilité quant à ces contenus tiers ne saurait être engagée, de même que nous ne saurions garantir la fiabilité ou la qualité des informations des contenus tiers. En outre, nous rejetons toute responsabilité quant aux contenus tiers à caractère involontaire, répréhensible, inexact, trompeur ou illégal. La référence à des produits, services, procédés ou autres informations par leur appellation commerciale ou leur marque de commerce, leur fabricant, leur fournisseur ou autre ne constitue pas et n’implique pas une approbation, un patronage ou une recommandation de celle-ci par BNEI, sauf mention explicite de BNEI.",
+ "frenchFontType":3,
+ "italianText":"10. CONTENUTI DI TERZE PARTI. È possibile che all'utente siano resi disponibili contenuti di altri utenti, di agenti pubblicitari o di terze parti attraverso il Gioco. Poiché non esercitiamo alcun controllo sui contenuti di terze parti, l'utente riconosce che, salvo nei casi di dolo o colpa grave da parte di BNEI, non siamo ritenuti responsabili di tali contenuti, non offriamo alcuna garanzia riguardo all'accuratezza o alla qualità delle informazioni fornite e decliniamo ogni responsabilità nei confronti di contenuti di terze parti non intenzionali, sconvenienti, inesatti, fuorvianti o illeciti. Ogni riferimento a prodotti, servizi, processi o altro, ad esempio tramite l'indicazione di nomi commerciali, marchi depositati, produttori o fornitori, non costituisce né implica alcuna approvazione, sponsorizzazione o raccomandazione degli stessi né alcuna affiliazione con essi da parte di BNEI, salvo laddove menzionato espressamente da BNEI.",
+ "italianFontType":3,
+ "germanText":"10. INHALTE DRITTER: Durch das Spiel können Ihnen Inhalte von allen Nutzern, Werbetreibenden und anderen Dritten zugänglich gemacht werden. Da wir Inhalte Dritter nicht kontrollieren, stimmen Sie zu, dass wir (außer im Fall vorsätzlichen Verschuldens oder grober Fahrlässigkeit durch BNEI) für keinerlei Inhalte Dritter verantwortlich sind; dass wir keine Garantien bezüglich der Richtigkeit oder Qualität von Informationen in Inhalten Dritter gewähren; und dass wir keine Verantwortung für unbeabsichtigte, anstößige, unzutreffende, irreführende oder gesetzeswidrige Inhalte Dritter übernehmen. Verweise auf Produkte, Dienste, Prozesse oder andere Informationen anhand von Markennamen, Warenzeichen, Herstellern, Anbietern oder auf andere Weise stellen keine direkte oder implizite Billigung, Unterstützung, Empfehlung oder Zugehörigkeit durch BNEI dar, sofern dies nicht ausdrücklich von BNEI angegeben wird.",
+ "germanFontType":3,
+ "spanishText":"10. CONTENIDO DE TERCEROS. A través del Juego, usted podrá tener acceso a contenido de otros usuarios, anunciantes u otros terceros. Debido a que no controlamos el contenido de terceros, usted acepta que, salvo en casos de error intencionado o negligencia grave por parte de BNEI, BNEI no se responsabiliza del contenido de terceros, no ofrece garantías sobre la exactitud o la calidad de la información incluida en el contenido de terceros y no asume responsabilidad alguna sobre el contenido de terceros que se ofrezca de forma no intencionada y que sea considerado inapropiado, impreciso, engañoso o ilegal. Toda referencia que se haga a cualquier producto, servicio, proceso u otra información por su nombre o marca comercial, fabricante, proveedor o por otra vía no constituirá ni implicará el apoyo, el patrocinio o la recomendación por parte de BNEI de ninguno de ellos, así como tampoco que exista ningún tipo de vinculación con ellos, a menos que BNEI lo indique expresamente.",
+ "spanishFontType":3,
+ "chineseTText":"10.第三方內容。任何來自使用者、廣告客戶和其他第三方的內容可能會透過遊戲提供給您。因為我們不控制第三方內容,您同意除非由於 BNEI 的故意錯誤或重大疏忽,否則我們不對任何第三方內容負責,不保證第三方內容資訊的準確性或品質;對於意外、令人反感、不準確、誤導或非法的第三方內容概不承擔任何責任。除 BNEI 明確聲明外,任何商品名稱、商標、製造商、供應商的任何產品、服務、製程或其他資訊,均不為 BNEI 所有、認可、贊助或推薦。",
+ "chineseTFontType":1,
+ "koreanText":"10. 제3자 콘텐츠. 다른 사용자, 광고주, 기타 제3자가 제공하는 콘텐츠의 경우, 귀하가 이를 이용할 수 있도록 본 게임을 통해 제공될 수 있습니다. 당사가 제3자 콘텐츠를 통제하지 않음에 따라, 귀하는 BNEI의 고의나 중과실로 인한 경우를 제외하고는 당사가 제3자 콘텐츠에 대해 아무런 책임이 없고 제3자 콘텐츠에 포함된 정보의 정확성이나 질에 대해 아무런 보장도 제공하지 않으며 의도치 않거나 부적절하거나 부정확하거나 오해의 소지가 있거나 불법적인 제3자 콘텐츠에 대해서도 아무런 책임이 없다는 점에 동의합니다. 제품, 서비스, 절차 혹은 기타 정보가 상호, 상표, 제조사, 공급자 혹은 기타 형태로 언급되거나 소개되더라도, 이는 BNEI가 이를 지지하거나 후원하거나 추천하거나 이와 연계되어 있다는 의미가 아닙니다. 단 BNEI가 달리 명시하는 경우는 예외입니다.",
+ "koreanFontType":2,
+ "portugueseText":"10. CONTEÚDO DE TERCEIROS. Conteúdo de outros usuários, anunciantes e outros terceiros poderá ser disponibilizado a você por meio do Jogo. Como não temos controle sobre o conteúdo de terceiros, você concorda que, salvo nos casos em que houver dolo ou culpa da BNEI, não somos responsáveis por nenhum conteúdo de terceiros, não apresentamos nenhuma garantia sobre a precisão ou qualidade das informações presentes em conteúdo de terceiros, tampouco assumimos responsabilidade por conteúdo de terceiros que seja impensado, questionável, impreciso, enganoso ou ilícito. Menções a produtos, serviços, processos ou outras informações feitas por nome fantasia, marca registrada, fabricante, fornecedor ou outros não constituem nem sugerem endosso, patrocínio ou recomendação deles — nem nenhuma associação a eles — por parte da BNEI, salvo se houver declaração expressa feita pela BNEI.",
+ "portugueseFontType":2,
+ "russianText":"10. КОНТЕНТ ТРЕТЬИХ СТОРОН. Через Игру вам может предоставляться доступ к контенту от других пользователей, рекламодателей и других третьих сторон. Мы не контролируем контент третьих сторон, поэтому вы соглашаетесь с тем, что если ситуация не возникла по умышленной вине или грубой халатности компании BNEI, то мы не несем никакой ответственности за контент третьих сторон, не гарантируем достоверности или качества предоставляемой в контенте третьих сторон информации, а также снимаем с себя ответственность за публикацию нежелательного, предосудительного, недостоверного, заведомо ложного или противозаконного контента третьих сторон. Ссылки на любые продукты, услуги, процедуры или другую информацию с использованием коммерческих наименований, товарные знаки, производителей, поставщиков или другие отсылки не подразумевают, что компания BNEI одобряет, спонсирует или рекомендует указанное или поддерживает с ними коммерческие отношения за исключением случаев, когда компания BNEI прямо об этом заявляет.",
+ "russianFontType":2,
+ "turkishText":"10. ÜÇÜNCÜ TARAF İÇERİĞİ. Oyun sırasında size kullanıcılardan, reklamcılardan ve diğer üçüncü taraflardan içerik sunulabilir. Üçüncü taraf içeriğini kontrol etmediğimizden, BNEI'nin kasıtlı hatası veya ağır ihmali olmadıkça, üçüncü taraf içeriğinden sorumlu olmadığımızı, üçüncü taraf içeriğindeki bilgilerin doğruluğu veya kalitesi hakkında garanti vermediğimizi ve kasıtsız, sakıncalı, doğru olmayan, yanlış yönlendirici veya yasa dışı üçüncü taraf içeriğine ilişkin sorumluluk kabul etmediğimizi kabul etmektesiniz. Ticari unvan, ticari marka, imalatçı, tedarikçi tarafından veya başka şekilde, ürünler, hizmetler, süreçler veya diğer bilgilere ilişkin yapılan referanslar, BNEI'nin açıkça belirttiği haller haricinde, BNEI tarafından bir onay, sponsorluk veya öneri ya da ilişki oluşturmayacak ya da ima etmeyecektir.",
+ "turkishFontType":2,
+ "arabicText":"10. المحتوى الخاص بالغير\nيجوز حصولك من خلال اللعبة على المحتوى من أي مستخدمين أو معلنين أو أشخاص آخرين من الغير. نظرًا لأننا لا نتحكَّم في المحتوى الخاص بالغير، فأنت موافق، ما لم يكن ذلك بسبب خطأ مقصود أو إهمال جسيم من قبل BNEI، على أننا لسنا مسؤولين عن أي محتوى خاص بالغير ولا نقدِّم أي ضمانات حول دقة المعلومات الواردة في المحتوى الخاص بالغير أو جودتها، كما لا نتحمَّل أي مسؤولية عن محتوى غير مقصود أو غير مرغوب فيه أو غير دقيق أو مضلل أو غير قانوني يخصُّ الغير. لا تعني الإشارة إلى أي منتجات أو خدمات أو عمليات أو غيرها من المعلومات الواردة في الاسم التجاري أو العلامة التجارية أو الشركة المصنعة أو المورّد أو غير ذلك، أو تتضمَّن قبول أو ضمان أو توصية BNEI بذلك أو ما يرتبط به، إلا إذا صرّحت BNEI بذلك.",
+ "arabicFontType":2,
+ "dutchText":"10. INHOUD VAN DERDEN. Via de Game kan inhoud van gebruikers, adverteerders en andere derden aan u beschikbaar gesteld worden. Omdat wij geen zeggenschap hebben over inhoud van derden, stemt u ermee in dat, tenzij als gevolg van opzettelijk falen of grove nalatigheid van BNEI, wij niet verantwoordelijk zijn voor inhoud van derden, geen garanties geven over de juistheid of kwaliteit van de informatie in inhoud van derden; en dat wij niet aansprakelijk zijn voor onbedoelde, aanstootgevende, onnauwkeurige, misleidende of onrechtmatige inhoud van derden. Verwijzingen naar producten, diensten, processen of andere informatie, op basis van handelsnaam, handelsmerk, fabrikant, leverancier of anderszins, betekenen of impliceren geen goedkeuring, sponsoring of aanbeveling daarvan, of enige connectie daarmee, door BNEI, tenzij uitdrukkelijk aangegeven door BNEI.",
+ "dutchFontType":2,
+ "chineseSText":"10. 第三方内容。可能通过游戏向您提供任何用户、广告客户和其他第三方的内容。因为我们不控制第三方内容,所以除非是BNEI的故意错误或重大疏忽,否则您同意我们不对任何第三方内容负责,不保证第三方内容信息的准确性或质量;对于意外、令人反感、不准确、误导或非法的第三方内容不承担任何责任。除BNEI明确声明外,任何商品名称、商标、制造商、供应商的任何产品、服务、流程或其他信息,均不为BNEI所有、认可、赞助或推荐。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_18",
+ "japaneseText":"\n11. 免責事項\n\nお客様は、お客様による本件ゲームのアクセスもしくは利用に影響を及ぼすウイルスその他の無効化機能、または本件ゲーム、他のサービスおよび対象ハードウェアの間における互換性の欠如のいずれについても、当社ならびにそのライセンサーおよびサプライヤーが責任を負わないことを、確認し同意しているものとします。本件ゲームその他の一切のサービスは、「現状有姿」で提供されます。本規約に定めのある場合を除き、当社ならびにそのライセンサーおよびサプライヤーは、いかなる種類の保証(明示または黙示を問わず、法律その他のいかなる根拠によるものであるかも問いません)もしません。これには、非侵害、商品性または特定目的への適合性に関する黙示的保証も含まれますが、これらに限定されるものではありません。\n\n法域によっては、消費者契約における黙示的条件の否認または保証もしくは担保の排除もしくは制限が許されていないことから、本条における免責事項の一部または全部がお客様に適用されないことがあります。\n\n\n\nお客様がオーストラリアの居住者である場合には、本条における上記規定に加えて、以下の条件が適用されます。\n\n本第11条は、お客様の居住法域における法律上適用される消費者に関する強制的または法定の権利または救済手段を制限しまたは縮小することを意図するものではありません。法律上許容される限りにおいて、2010年競争・消費者法(連邦法)(オーストラリア消費者法)附則2の条件および保証は、本規約から完全に排除されたものとします。また、かかる排除が認められない範囲において、お客様は、当社の責任が以下のいずれかに限定される旨を認めているとともに、当社の責任が以下のいずれかに限定されることが公正かつ妥当である旨についても認めているものとします。\n\n(i)本件ゲームの再提供。\n\n(ii)本件ゲームの再提供を受けるための費用の支払い。\n\n\n\nお客様がドイツの居住者である場合には、本条における上記規定に加えて、以下の条件が適用されます。\n\nサービスが有償で提供されるものである限りにおいて、以下が適用されるものとします。当社は、実質的に本件ゲームが説明書その他の製品説明に明示された内容どおりに動作する旨を、保証します。何らかの瑕疵があった場合、当社は、追完において試行を少なくとも3回行うための合理的期間に、当該瑕疵の除去(パッチの提供など)または当該瑕疵のない新バージョンのサービスの提供により、追完を行います。追完が失敗に終わったことが明確となった場合、お客様は、他の法定の権利を行使することができるものとします。ただし、ドイツ民法典第536a条第1項に基づく当社の原始的瑕疵に対する無過失責任は、いかなる場合においても、排除されるものとします。",
+ "englishUsText":"11. DISCLAIMER. YOU ACKNOWLEDGE AND AGREE THAT BNEI AND ITS LICENSORS AND SUPPLIERS ARE NOT RESPONSIBLE OR LIABLE FOR ANY VIRUSES OR OTHER DISABLING FEATURES THAT AFFECT YOUR ACCESS TO OR USE OF THE GAME OR ANY INCOMPATIBILITY AMONG THE GAME, OTHER SERVICES, AND HARDWARE. THE GAME AND ALL OTHER SERVICES ARE PROVIDED “AS IS.” EXCEPT AS MIGHT BE DESCRIBED HEREIN, BNEI AND ITS LICENSORS AND SUPPLIERS EXPRESSLY DISCLAIM ALL WARRANTIES OR CONDITIONS OF ANY KIND (EXPRESS OR IMPLIED AND ARISING BY LAW OR OTHERWISE) INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.\nSome jurisdictions do not allow the disclaimer of implied terms nor the exclusion or limitation of warranties or guarantees in contracts with consumers, so some or all of the disclaimers in this section may not apply to you.\n\nIf you are a resident of Australia, in addition to the above terms in this section, the following additional wording will apply to you:\nThis Section 11 does not intend to limit or reduce any mandatory or statutory consumers’ rights or remedies that apply under the laws of your local jurisdiction. To the extent permitted by law, the conditions and warranties implied by the Schedule 2 of the Competition and Consumer Act 2010 (Cth) (the Australian Consumer Law) are entirely excluded from this Agreement, and to the extent that they may not be excluded, you acknowledge that the liability of BNEI is limited to, and acknowledge that, it is fair and reasonable so to limit BNEI’S liability to:\n(i)the supplying of the Game again; or\n(ii)the payment of the cost of having the Game supplied again.\n\nIf you are a resident of Germany, in addition to the above terms in this section, the following additional wording will apply to you:\nTo the extent any services are provided against a fee, the following applies: BNEI warrants that the Game will operate materially as specified in the applicable documentation or product description. In the event of any defect, BNEI will provide subsequent performance by either removing the defect (e.g. by providing a patch) or providing a new version of the service that does not have the defect, within a reasonable time period allowing for at least three attempts at subsequent performance. If subsequent performance definitely fails, you may exercise your other statutory rights, provided however that BNEI’s no-fault liability for initial defects under sec. 536a para 1. of the German Civil Code is excluded in any event.",
+ "englishUsFontType":3,
+ "frenchText":"11. EXCLUSION DE RESPONSABILITÉ. VOUS RECONNAISSEZ ET ACCEPTEZ QUE BNEI, SES CONCÉDANTS DE LICENCES ET FOURNISSEURS NE SONT PAS RESPONSABLES DES VIRUS OU AUTRES FONCTIONNALITÉS BLOQUANTES QUI AFFECTENT VOTRE ACCÈS AU JEU OU SON UTILISATION OU DE TOUTE INCOMPATIBILITÉ ENTRE LE JEU, D’AUTRES SERVICES ET LE MATÉRIEL. LE JEU ET TOUS LES AUTRES SERVICES SONT FOURNIS « EN L’ÉTAT ». SAUF DESCRIPTION CONTRAIRE AUX PRÉSENTES, BNEI, SES CONCÉDANTS DE LICENCES ET FOURNISSEURS DÉCLINENT EXPRESSÉMENT TOUTE GARANTIE OU CONDITION DE TOUTE NATURE (EXPRESSE, TACITE OU DÉCOULANT DE LA LOI), Y COMPRIS, SANS TOUTEFOIS S’Y LIMITER, LES GARANTIES TACITES DE NON-CONTREFAÇON, DE QUALITÉ MARCHANDE OU D’ADÉQUATION À UNE FIN PARTICULIÈRE.\nCertaines juridictions n’autorisent pas l’exclusion des dispositions tacites, ni l’exclusion ou la limitation des garanties dans les contrats à la consommation. Il est donc possible que certaines des exclusions décrites dans le présent article ne s’appliquent pas à vous.\n\nSi vous résidez en Australie, en plus des conditions exposées ci-dessus dans le présent article, la clause supplémentaire suivante s’applique :\nLe présent article 11 n’entend pas limiter ou restreindre les droits ou recours réglementaires et obligatoires à la disposition des consommateurs conformément à la juridiction locale applicable. Dans la mesure prévue par la loi, les conditions et garanties implicites au sens de l’Annexe 2 de la loi de 2010 sur la concurrence et la consommation (Cth) (droit australien de la consommation) sont totalement exclues du présent Contrat, et dans la mesure où elles ne sauraient être exclues, vous convenez que la responsabilité de BNEI est limitée à ce qui suit, et que cette limitation de la responsabilité de BNEI est juste et raisonnable :\n(i)le remplacement du Jeu ; ou\n(ii)le paiement du coût de remplacement du Jeu.\n\nSi vous résidez en Allemagne, en plus des dispositions exposées ci-dessus dans le présent article, la clause supplémentaire suivante s’applique :\nDans la mesure où un service est dispensé moyennant un paiement, ce qui suit s’applique : BNEI garantit que les modalités matérielles de fonctionnement du Jeu seront telles que spécifiées dans la documentation applicable ou dans la description du produit. Dans l’éventualité d’un défaut quelconque, BNEI s’engage ultérieurement à supprimer le défaut en question (par exemple, moyennant le déploiement d’une mise à jour) ou à fournir une nouvelle version du service qui serait exempte du défaut en question, et ce, dans un délai raisonnable qui permettrait au moins trois tentatives d’exécution ultérieure. Dans le cas où une exécution ultérieure n’aurait pas permis la résolution du défaut, vous êtes libre d’exercer vos autres droits statutaires, pourvu que la responsabilité sans faute de BNEI quant aux défauts initiaux au sens de l’article 536a alinéa 1 du Code civil allemand soit exclue dans tous les cas.",
+ "frenchFontType":3,
+ "italianText":"imitazione di garanzia nei contratti con i consumatori. Per questo motivo, alcune o tutte le dichiarazioni di non responsabilità della presente sezione potrebbero non applicarsi all'utente.\n\nSe l'utente risiede in Australia, è soggetto ai seguenti termini aggiuntivi, oltre a quelli succitati nella presente sezione:\nLa presente sezione 11 non intende pregiudicare i diritti legali o gli obblighi di riparazione a favore dei consumatori previsti dalle leggi della giurisdizione locale dell'utente. Nella misura consentita dalla legge, le condizioni e le garanzie previste dal prospetto 2 della Competition and Consumer Act 2010 (Cth) (Legge australiana sulla concorrenza e la tutela dei consumatori) sono completamente escluse dal presente Accordo. Nella misura in cui esse non possono essere escluse, l'utente accetta dunque che la RESPONSABILITÀ DI BNEI sia limitata a quanto segue. Egli riconosce pertanto che è corretto e ragionevole LIMITARE la responsabilità di BNEI a quanto segue:\n(i)la rinnovata fornitura del Gioco; o\n(ii)Il pagamento dei costi relativi alla rinnovata fornitura del Gioco.\n\nSe l'utente risiede in Germania, è soggetto ai seguenti termini aggiuntivi, oltre a quelli succitati nella presente sezione:\nNella misura in cui i servizi in oggetto vengono forniti a pagamento, valgono le seguenti condizioni: BNEI garantisce che il Gioco funzioni sostanzialmente come specificato nella documentazione applicabile o nella descrizione del prodotto. Nel caso si riscontri un difetto, BNEI si impegna a risolvere il problema rimuovendo il difetto (ad esempio fornendo una patch) od offrendo una nuova versione del servizio priva di tale difetto, entro un periodo di tempo ragionevole e avendo a disposizione almeno tre tentativi per risolvere il problema. Se la prestazione fornita non ha esito positivo, l'utente può esercitare i suoi ulteriori diritti legali, fermo restando che il regime di responsabilità indipendente dalla colpa per difetti iniziali previsto per BNEI dalla sezione 536a paragrafo 1 del codice civile tedesco è escluso in ogni caso.",
+ "italianFontType":3,
+ "germanText":"11. GEWÄHRLEISTUNGSAUSSCHLUSS: SIE BESTÄTIGEN UND STIMMEN ZU, DASS BNEI UND SEINE LIZENZGEBER UND LIEFERANTEN WEDER FÜR ETWAIGE VIREN ODER ANDERE DEAKTIVIERENDE FUNKTIONEN VERANTWORTLICH ODER HAFTBAR SIND, DIE IHREN ZUGRIFF AUF DAS SPIEL ODER IHRE NUTZUNG DES SPIELS BEEINTRÄCHTIGEN KÖNNEN, NOCH FÜR JEDWEDE INKOMPATIBILITÄT ZWISCHEN DEM SPIEL, ANDEREN DIENSTEN UND HARDWARE. DAS SPIEL UND ALLE ANDEREN DIENSTE WERDEN IM VORLIEGENDEN ZUSTAND BEREITGESTELLT. AUSSER WIE HIERIN GEGEBENENFALLS BESCHRIEBEN, LEHNEN BNEI UND SEINE LIZENZGEBER UND LIEFERANTEN AUSDRÜCKLICH ALLE GEWÄHRLEISTUNGEN ODER BEDINGUNGEN JEGLICHER ART AB (OB AUSDRÜCKLICH ODER STILLSCHWEIGEND UND AUFGRUND VON GESETZ ODER SONSTIGEM), DARUNTER SÄMTLICHE STILLSCHWEIGENDEN GEWÄHRLEISTUNGEN DER NICHTVERLETZUNG, DER MARKTFÄHIGKEIT ODER DER EIGNUNG FÜR EINEN BESTIMMTEN ZWECK.\nIn einigen Rechtsgebieten ist weder die Ablehnung stillschweigender Bestimmungen noch der Ausschluss oder die Beschränkung von Gewährleistungen in Verträgen mit Verbrauchern erlaubt, sodass einige oder alle der Haftungsausschlüsse in diesem Abschnitt gegebenenfalls nicht für Sie gelten.\n\nWenn sich Ihr Wohnsitz in Australien befindet, gilt zusätzlich zu den vorstehend genannten Bestimmungen in diesem Abschnitt die folgende Formulierung für Sie:\nDieser Abschnitt 11 beabsichtigt nicht, irgendwelche verpflichtenden oder gesetzlichen Verbraucherrechte oder -rechtsbehelfe zu beschränken oder zu beschneiden, die gemäß den Gesetzen Ihres Rechtsgebietes gelten. Soweit gesetzlich zulässig, werden die Bedingungen und Gewährleistungen gemäß Anlage 2 des Competition and Consumer Act 2010 (Cth) (das australische Verbrauchergesetz) in vollem Umfang von der vorliegenden Vereinbarung ausgeschlossen, und soweit sie nicht ausgeschlossen werden können, stimmen Sie zu, dass die Haftung von BNEI auf Folgendes beschränkt und diese Beschränkung DER Haftung von BNEI fair und angemessen ist:\n(i)die erneute Bereitstellung des Spiels ODER\n(ii)die Zahlung der Kosten für die erneute Bereitstellung des Spiels.\n\nWenn sich Ihr Wohnsitz in Deutschland befindet, gilt zusätzlich zu den vorstehend genannten Bestimmungen in diesem Abschnitt die folgende zusätzliche Formulierung für Sie:\nSoweit irgendwelche Dienstleistungen gegen eine Gebühr bereitgestellt werden, trifft Folgendes zu: BNEI gewährleistet, dass das Spiel im Wesentlichen wie in den geltenden Dokumenten oder der Produktbeschreibung beschrieben funktioniert. Im Falle eines Mangels stellt BNEI eine Nacherfüllung bereit, indem es innerhalb eines angemessenen Zeitraums entweder den Mangel beseitigt (z. B. durch die Bereitstellung eines Patches) oder eine neue Version der Dienstleistung bereitstellt, die den Mangel nicht aufweist, unter Gewährung von mindestens drei Nacherfüllungsversuchen. Schlägt die Nacherfüllung endgültig fehl, können Sie Ihre sonstigen gesetzlichen Rechte ausüben, vorausgesetzt jedoch, dass die verschuldensunabhängige Haftung von BNEI für anfängliche Mängel gemäß § 536a Abs. 1 BGB in jedem Fall ausgeschlossen ist.",
+ "germanFontType":3,
+ "spanishText":"11. EXENCIÓN DE RESPONSABILIDAD. USTED RECONOCE Y ACEPTA QUE BNEI, SUS LICENCIANTES Y PROVEEDORES NO SE HARÁN RESPONSABLES DE NINGÚN VIRUS O DE OTRAS CARACTERÍSTICAS DESACTIVADORAS QUE PUEDAN AFECTAR A SU ACCESO O A SU USO DEL JUEGO, ASÍ COMO TAMPOCO DE NINGUNA INCOMPATIBILIDAD ENTRE EL JUEGO, OTROS SERVICIOS Y EL HARDWARE. EL JUEGO Y TODOS LOS DEMÁS SERVICIOS SE PROPORCIONAN «TAL CUAL». CON EXCEPCIÓN DE LAS SALVEDADES QUE PUEDAN CONTEMPLARSE EN ESTE CONTRATO, BNEI, SUS LICENCIANTES Y PROVEEDORES DECLINAN EXPRESAMENTE OFRECER CUALQUIER TIPO DE GARANTÍAS O CONDICIONES DE CUALQUIER CLASE (EXPLÍCITAS O IMPLÍCITAS, ESTABLECIDAS POR LA LEY U OTRAS), INCLUIDAS, ENTRE OTRAS, CUALESQUIERA GARANTÍAS IMPLÍCITAS DE NO INFRACCIÓN, COMERCIABILIDAD O IDONEIDAD PARA UN DETERMINADO FIN.\nAlgunas jurisdicciones no permiten la exención de responsabilidad de condiciones implícitas ni la exclusión o limitación de garantías en los contratos con consumidores, por lo que es posible que algunas de estas exenciones de responsabilidad en la presente cláusula no sean aplicables en su caso.\n\nSi usted tiene su residencia en Australia, además de las condiciones previas en la presente cláusula, también se le aplicarán las siguientes disposiciones:\nEsta cláusula 11 no pretende limitar ni reducir ningún derecho o recurso de carácter obligatorio o legal que asista a los consumidores y que sea reconocido por la legislación de su jurisdicción local. Dentro del marco permitido por la ley, se excluyen íntegramente del presente Contrato las condiciones y garantías implícitas por el Anexo 2 de la Ley de competencia y defensa del consumidor de 2010 (Cth) (la Ley australiana del consumidor), y en el caso de que no puedan excluirse, usted reconoce que la responsabilidad de BNEI se limita (y es justo y razonable limitarla) a lo siguiente:\ni)facilitar de nuevo el Juego, o\nii)el pago del coste derivado de facilitar de nuevo el Juego.\n\nSi usted tiene su residencia en Alemania, además de las condiciones previas en la presente cláusula, también se le aplicarán las siguientes disposiciones:\nEn la medida en que un servicio se proporcione a cambio de un precio, se aplicará lo siguiente: BNEI garantiza que el Juego funcionará en lo sustancial conforme a las especificaciones que SE INCLUYEN en la documentación o en la descripción aplicable del producto. En caso de apreciarse algún DEFECTO, BNEI ofrecerá subsanaciones posteriores, bien eliminando el defecto (por ejemplo, a través de una actualización) o proporcionando una nueva versión del servicio que excluya dicho defecto, en un plazo razonable de tiempo para permitir al menos tres intentos de subsanación posterior. Si la subsanación posterior falla definitivamente, usted podrá ejercer sus otros derechos legales, siempre y cuando, no obstante, se excluya en todo caso la responsabilidad objetiva (sin culpa) por defectos iniciales de BNEI que se contempla en el artículo 536a, apartado 1 del Código Civil alemán.",
+ "spanishFontType":3,
+ "chineseTText":"11.免責聲明。您認可並同意 BNEI 及其授權人和供應商對任何影響您存取或使用遊戲或其他服務和硬體的任何病毒或其他禁用功能概不負責。遊戲和所有其他服務「按原樣」提供。除本文所述外,BNEI 及其授權人和供應商明確否認任何形式的擔保或條件(由法律或其他方式明示或暗示),包括但不限於任何暗示的非侵權、適售性或適用於特定用途的保證。\n\n某些司法管轄區不允許在與消費者的合同中出現隱含條款的免責聲明,以及保證或擔保的排除或限制,因此本條中的部分或全部免責聲明可能不適用於您。\n\n\n\n如果您是澳大利亞居民,除了本條中的上述條款外,以下附加條款將適用於您:\n\n本第 11 條無意限制或減少根據當地管轄區法律適用的強制性或法定消費者權利或補償措施。在法律授權的範圍內,「2010年競爭與消費者法案」(Cth)(澳大利亞消費者保護法)附表 2 所暗示的條件和保證完全被排除在本合約之外,在不被排除的範圍內,您承認 BNEI 的責任僅限於此,並承認其公平合理,以便限定 BNEI 的責任為:\n\n(i)再次提供遊戲;或\n\n(ii)支付再次提供遊戲的費用。\n\n\n\n如果您是德國居民,除了本條中的上述條款外,以下附加條款將適用於您:\n\n在收取服務費用的情況下,以下適用:BNEI 保證遊戲將按照適用的文件或產品說明來運行。在發生任何故障時,在合理的時間段內,BNEI 將解決故障(例如透過提供修補程式)或提供沒有故障的新版本來提供後續服務,並進行至少三次後續效能的測試。如果後續效能依然有故障,您可以行使您的其他法定權利,但根據德國民法典第 536A 條第 1 款,在任何情況下,BNEI 對初始缺陷都無過錯責任。",
+ "chineseTFontType":1,
+ "koreanText":"11. 책임 부인. 귀하의 본 게임 접근이나 이용에 영향을 미치는 바이러스 혹은 기타 장애 유발 요소에 대해, 또는 본 게임과 다른 서비스 및 하드웨어 간의 비호환성에 대해, 귀하는 BNEI와 그 라이선스 인가자 및 공급자에게 아무런 책임이 없음을 인정하고 이에 동의합니다. 본 게임 및 기타 모든 서비스는 \"있는 그대로의 상태\"로 제공됩니다. 본 계약 내에 달리 기술된 경우를 제외하고는, BNEI와 그 라이선스 인가자 및 공급자는 명시적, 묵시적, 법적 및 기타 유형을 비롯한 모든 종류의 보증 및 조건(여기에는 권리 비침해성, 상품성 혹은 특정 목적에의 적합성에 대한 묵시적 보증도 포함되며 이에 한정되지 않음)을 명시적으로 부인합니다.\n일부 관할권에서는 소비자와의 계약에 있어 묵시적 조건의 부인이나 보증/보장의 배제 혹은 제한을 허용하지 않으므로, 본 절의 책임 부인 중 일부 혹은 전부는 귀하에게 적용되지 않을 수도 있습니다.\n\n귀하가 호주에 거주하는 경우 위와 같은 본 절의 조건과 더불어 다음의 추가 문구도 귀하에게 적용됩니다.\n본 제11절은 귀하가 속한 현지 관할권의 법상 적용되는 법정 소비자 권리/구제 또는 이를 위한 강행규정을 제한하거나 축소시키지 않습니다. 2010 경쟁 및 소비자법(Cth)(호주 소비자법) 제2편에 따른 묵시적 조건 및 보증은 법이 허용하는 범위에서 본 계약상 전부 배제되며, 배제가 불가능한 범위의 경우 귀하는 BNEI의 책임이 다음에 한정됨을 인정하고 또한 BNEI의 책임을 다음과 같이 한정하는 것이 공정하고 합리적임을 인정합니다.\n(i)본 게임의 재공급, 또는\n(ii)본 게임의 재공급에 소요되는 비용의 지급.\n\n귀하가 독일에 거주하는 경우 위와 같은 본 절의 조건과 더불어 다음의 추가 문구도 귀하에게 적용됩니다.\n서비스가 요금에 대한 반대급부로 제공되는 범위에서, 다음이 적용됩니다. BNEI는 본 게임이 해당 문서나 제품 설명에 명시된 바에 실질적으로 부합하도록 작동함을 보증합니다. 하자가 발생하는 경우, BNEI는 하자를 제거하거나(예를 들어 패치 제공) 하자 없는 새로운 버전의 서비스를 제공하는 방식으로 재이행할 것이며, 이는 재이행을 최소한 3회 시도할 수 있을 만큼의 합리적인 기간 내에 이루어질 것입니다. 재이행까지 명백히 실패하는 경우 귀하는 기타 법정 권리를 행사할 수 있으나, 독일 민법 제536a절 제1항에 따른 BNEI의 최초 하자에 대한 무과실 책임은 어떤 경우라도 모두 배제됩니다.",
+ "koreanFontType":2,
+ "portugueseText":"11. RESSALVAS. VOCÊ RECONHECE E CONCORDA QUE A BNEI E SEUS LICENCIANTES E FORNECEDORES NÃO SÃO RESPONSÁVEIS POR EVENTUAIS VÍRUS, OUTROS RECURSOS INCAPACITANTES CAPAZES DE AFETAR SEU ACESSO OU USO DO JOGO OU EVENTUAIS INCOMPATIBILIDADES ENTRE O JOGO, OUTROS SERVIÇOS E O HARDWARE. O JOGO E TODOS OS OUTROS SERVIÇOS SÃO FORNECIDOS NO ESTADO EM QUE SE ENCONTRAM. EXCETO COMO DESCRITO AQUI, A BNEI, SEUS LICENCIANTES E FORNECEDORES RENUNCIAM EXPRESSAMENTE TODAS AS GARANTIAS OU CONDIÇÕES DE QUALQUER NATUREZA (EXPRESSAS OU IMPLÍCITAS E ADVINDAS OU NÃO DA LEI), INCLUINDO, SEM RESTRIÇÃO, QUALQUER GARANTIA IMPLÍCITA DE NÃO VIOLAÇÃO, COMERCIALIDADE OU ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA.\nAlgumas jurisdições não permitem a renúncia de termos implícitos nem a exclusão ou limitação de garantias em contratos com consumidores. Assim, parte das ou todas as renúncias legais nesta seção podem não se aplicar a você.\n\nAlém dos termos acima, o texto a seguir se aplica aos residentes da Austrália:\nEsta Seção 11 não pretende limitar nem reduzir quaisquer direitos ou reparações de consumidor, obrigatórias ou regulamentares, que se apliquem sob as leis de sua jurisdição local. Até onde permitir a lei, as condições e garantias implícitas pelo Apêndice 2 da Competition and Consumer Act 2010 (Cth) (a Lei do Consumidor da Austrália) estão completamente excluídas deste Contrato. Quanto àquilo que não puder ser excluído, você reconhece que a responsabilidade da BNEI limita-se (e reconhece que é justo e razoável limitar a responsabilidade da BNEI) ao seguinte:\n(i)ao fornecimento do Jogo novamente; ou\n(ii)ao pagamento dos custos de precisar fornecer o Jogo novamente.\n\nAlém dos termos acima, o texto a seguir se aplica aos residentes da Alemanha:\nTendo em vista que qualquer serviço é fornecido com uma taxa, o seguinte se aplica: a BNEI garante que o Jogo operará materialmente como especificado na documentação ou descrição aplicável do produto. Em caso de defeitos, a BNEI fornecerá prestação posterior, removendo o defeito (por exemplo, aplicando um patch) ou fornecendo uma nova versão do serviço que não tenha o defeito, isso dentro de um período de tempo razoável que permita pelo menos três tentativas de prestação posterior. Se a prestação posterior falhar em caráter definitivo, você poderá exercer seus outros direitos regulamentares. No entanto, a responsabilidade sem culpa da BNEI no que tange a defeitos iniciais, de acordo com a seção 536a, parágrafo 1, do Código Civil Alemão, será excluída em qualquer circunstância.",
+ "portugueseFontType":2,
+ "russianText":"11. ЗАЯВЛЕНИЕ ОБ ОГРАНИЧЕНИИ ОТВЕТСТВЕННОСТИ. ВЫ ПРИЗНАЕТЕ И СОГЛАШАЕТЕСЬ С ТЕМ, ЧТО КОМПАНИЯ BNEI, ЕЕ ЛИЦЕНЗИАРЫ И ПОСТАВЩИКИ НЕ НЕСУТ ОТВЕТСТВЕННОСТИ ЗА ЛЮБЫЕ ВИРУСЫ И ДРУГИЕ ВЫВОДЯЩИЕ ИЗ СТРОЯ ОБЪЕКТЫ, ПРЕПЯТСТВУЮЩИЕ ДОСТУПУ К ИГРЕ И ЕЕ ИСПОЛЬЗОВАНИЮ ВАМИ, ЛЮБУЮ НЕСОВМЕСТИМОСТЬ ИГРЫ И ДРУГИХ УСЛУГ С АППАРАТНЫМ ОБОРУДОВАНИЕМ. ИГРА И ДРУГИЕ СЕРВИСЫ ПРЕДОСТАВЛЯЮТСЯ ПО ПРИНЦИПУ «КАК ЕСТЬ». ЗА ИСКЛЮЧЕНИЕМ ОПИСАННЫХ В НАСТОЯЩЕМ СОГЛАШЕНИИ ОБСТОЯТЕЛЬСТВ, КОМПАНИЯ BNEI, ЕЕ ЛИЦЕНЗИАРЫ И ПОСТАВЩИКИ В ЯВНОЙ ФОРМЕ ОТКАЗЫВАЮТСЯ ОТ ЛЮБЫХ ГАРАНТИЙ И УСЛОВИЙ (ЯВНЫХ ИЛИ ПОДРАЗУМЕВАЕМЫХ, ВОЗНИКАЮЩИХ В СВЯЗИ С ЗАКОНОДАТЕЛЬСТВОМ ИЛИ ПО ДРУГИМ ПРИЧИНАМ), ВКЛЮЧАЯ, ПОМИМО ПРОЧЕГО, ЛЮБЫЕ ПОДРАЗУМЕВАЕМЫЕ ГАРАНТИИ НЕНАРУШЕНИЯ ПРАВ, ГАРАНТИИ ТОВАРНОГО СОСТОЯНИЯ ИЛИ ПРИГОДНОСТИ ДЛЯ ОПРЕДЕЛЕННЫХ ЦЕЛЕЙ.\nВ некоторых юрисдикциях в договорах с потребителями не разрешается заявлять об отказе от подразумеваемых условий, а также исключать или ограничивать гарантии, поэтому некоторые или все заявления об ограничении ответственности могут быть неприменимы к вам.\n\nЕсли вы являетесь резидентом Австралии, то помимо указанных в этом разделе условий вас также касаются следующие дополнительные формулировки:\nПоложения раздела 11 не предусматривают ограничений обязательных или законных прав потребителя или средств правовой защиты, применимых в соответствии с законодательством внутренней юрисдикции. В допустимой законодательством степени, условия и гарантии, подразумеваемые разделом 2 Закона о конкуренции и защите прав потребителей 2010 года (Cth) (Закон о защите прав потребителей Австралии), полностью исключаются из настоящего Соглашения, и вы признаете, с учетом степени, до которой они могут быть исключены, что ответственность компании BNEI является ограниченной, а также признаете, что ответственность компании BNEI может быть справедливо ограничена до следующих обязательств:\n(i)повторная поставка Игры; или\n(ii)оплата расходов на повторную поставку Игры.\n\nЕсли вы являетесь резидентом Германии, то помимо указанных в этом разделе условий вас также касаются следующие дополнительные формулировки:\nС учетом объема услуг, предоставляемых за отдельную плату, применяются следующие положения: Компания BNEI гарантирует, что в материальном плане Игра будет полностью соответствовать характеристикам, указанным в сопровождающей документации или описании продукта. В случае обнаружения дефекта компания BNEI обязуется обеспечить возможность дальнейшего использования ПРОДУКТА ЛИБО посредством устранения дефекта (например, посредством пакета обновлений), либо предоставив новую версию услуги, в КОТОРОЙ нет этого дефекта, в течение разумного периода времени и с учетом наличия не менее трех попыток обеспечения возможности дальнейшего использования. При очевидной неспособности обеспечить возможность дальнейшего использования вы можете осуществить другие свои законные права, но только при условии, что ни в одном из случаев на компанию BNEI не будет налагаться безвиновная ответственность за изначальные дефекты согласно разделу 536a, параграфа 1 Гражданского кодекса Германии.",
+ "russianFontType":2,
+ "turkishText":"11. FERAGAT. BNEI VE LİSANS SAHİPLERİNİN, OYUNA ERİŞİMİNİZİ VEYA KULLANIMINIZI YA DA OYUNDAKİ UYUMSUZLUĞU, DİĞER HİZMETLERİ VE DONANIMI ETKİLEYEBİLECEK VİRÜSLER VEYA DİĞER DEVRE DIŞI BIRAKICI ÖZELLİKLERDEN SORUMLU VEYA YÜKÜMLÜ OLMADIĞINI KABUL ETMEKTESİNİZ. OYUN VE DİĞER TÜM HİZMETLER \"OLDUĞU GİBİ\" SUNULMAKTADIR. BURADA AÇIKLANMASI HARİCİNDE, BNEI VE LİSANS SAHİPLERİ, İHLAL ETMEME, TİCARETE ELVERİŞLİLİK VEYA BELİRLİ BİR AMACA UYGUNLUKLA İLGİLİ ZIMNİ GARANTİLER DAHİL FAKAT BUNLARLA SINIRLI OLMAMAK ÜZERE TÜM GARANTİLERİ VEYA HER TÜR KOŞULU (AÇIK, ZIMNİ VEYA YASANIN GEREKTİRDİĞİ YA DA BAŞKA BİR TÜR) AÇIKÇA REDDETMEKTEDİR.\nBazı yargı alanları, tüketicilerle yapılan sözleşmelerde zımni şartların reddine veya garantilerin reddine ya da sınırlanmasına izin vermemektedir, bu yüzden bu bölümdeki sorumluluk retlerinin bazıları veya hiçbiri sizin için geçerli olmayabilir.\n\nAvustralya'da yaşıyorsanız bu bölümde geçen yukarıdaki koşullara ek olarak aşağıdaki ek ifadeler sizin için geçerli olacaktır:\nBu Bölüm 11 yerel yargı alanınızın yasaları altında geçerli olan zorunlu veya yasal tüketici haklarını veya çözümlerini sınırlamayı ya da azaltmayı amaçlamaz. Yasanın izin verdiği ölçüde, 2010 Rekabet ve Tüketici Yasasının 2. Programında (Avustralya Federal Devleti) (Avustralya Tüketici Yasası) belirtilen koşullar ve garantiler, bu Anlaşmanın tamamen dışındadır ve dışında kalmadığı ölçüde, BNEI'nin yükümlülüğünün aşağıdakilerle sınırlı olduğunu ve BNEI'nin yükümlülüğünü aşağıdakilerle sınırlı tutmanın adil ve makul olduğunu kabul etmektesiniz:\n(i)Oyunu tekrar tedarik etmek veya\n(ii)Oyunu tekrar tedarik etme masrafını ödemek.\n\nAlmanya'da yaşıyorsanız bu bölümde geçen yukarıdaki koşullara ek olarak aşağıdaki ek ifadeler sizin için geçerli olacaktır:\nHizmetlerin bir ücret karşılığı ödenmesi ölçüsünde, aşağıdakiler geçerlidir: BNEI, Oyunun fiziksel olarak, geçerli belge veya ürün açıklamasında belirtildiği şekilde çalışacağını garanti etmektedir. Herhangi bir kusur olması halinde, BNEI, müteakip performansta en az üç denemeye olanak verecek makul bir süre içerisinde, kusuru ortadan kaldırarak (örneğin, bir yama sağlayarak) veya hizmetin kusur bulunmayan yeni bir sürümünü sunarak müteakip performansını sağlayacaktır. Müteakip performans kesin olarak başarısız olursa diğer yasal haklarınızı kullanabilirsiniz fakat Alman Medeni Kanunu'nun 1. fıkrası 536a bölümü uyarınca BNEI'nin ilk kusurlar için kusursuzluk yükümlülüğü her durumda hariç tutulacaktır.",
+ "turkishFontType":2,
+ "arabicText":"11. إخلاء المسؤولية\n تقر وتوافق على أن شركة BNEI وموزعيها ومورديها غير مسؤولين ولن يتحملوا المسؤولية عن أي فيروسات أو أي ميزات مُعوقة أخرى قد تؤثر على وصولك إلى اللعبة أو استخدامها أو من عدم توافق بين اللعبة والخدمات والأدوات الأخرى. يتم توفير اللعبة وجميع الخدمات الأخرى \"كما هي\". باستثناء ما قد تم ذكره هنا، تقوم شركة BNEI ومانحو التراخيص والمورّدون بإخلاء مسؤوليتهم صراحة عن جميع الضمانات أو الشروط من أي نوع (الصريحة أو الضمنية والناشئة بحكم القانون أو غير ذلك)، بما في ذلك ودون حصر، أي ضمانات ضمنية بعدم الانتهاك أو صلاحية العرض أو الملاءمة لغرض معين.\nلا تسمح بعض السلطات القضائية بإخلاء المسؤولية تجاه الشروط الضمنية أو استثناء الضمانات أو الكفالات أو تقييدها في العقود المبرمة مع المستهلكين، لذلك قد لا ينطبق عليك بعض عمليات إخلاء المسؤولية الواردة في هذا القسم أو كلها.\n\nإذا كنت مقيمًا في أستراليا، بالإضافة إلى الشروط المذكورة أعلاه في هذا القسم، فستنطبق عليك الصياغة الإضافية التالية:\nلا يُحد القسم (11) أي حقوق أو تعويضات إلزامية أو قانونية للمستهلكين أو يقيدها والتي تنطبق على قوانين منطقة الاختصاص القضائي المحلي. يتم استبعاد الشروط والضمانات المنصوص عليها في الجدول رقم (2) من قانون المنافسة والمستهلك لعام 2010 (كومنولث أستراليا) (قانون المستهلك الأسترالي) تمامًا من هذه الاتفاقية، إلى الحد الذي يسمح به القانون، وأن تُقِّر بأن مسؤولية BNEI تقتصر على، كما تقر بأنه من العدل والمعقول الحد من مسؤولية شركة BNEI إلى:\n(1) توريد اللعبة مرة أخرى؛ أو (2) دفع تكلفة توريد اللعبة مرة أخرى.\n\nإذا كنت مقيمًا في ألمانيا، بالإضافة إلى الشروط المذكورة أعلاه في هذا القسم، فستنطبق عليك الصياغة الإضافية التالية:\nتنطبق البنود التالية في النطاق الذي يتم فيه تقديم أي خدمات مقابل رسوم: تضمن شركة BNEI أنه سيتم تشغيل اللعبة من الناحية المادية كما هو مذكور في الوثائق أو وصف المنتج المعمول به. في حالة حدوث أي خلل، ستوفر شركة BNEI الأداء اللاحق إما عن طريق إزالة الخلل (على سبيل المثال، عبر توفير برنامج تصحيحي) وإما توفير نسخة جديدة من الخدمة لا تعاني ذلك الخلل، في غضون فترة زمنية معقولة تسمح بإجراء ثلاث محاولات على الأقل في الأداء اللاحق. إذا صار الأداء اللاحق ضعيفًا بما لا يقبل الشك في ذلك، يجوز لك مزاولة حقوقك القانونية الأخرى، ومع ذلك، فإن مسؤولية شركة BNEI عن العيوب الأولية بموجب المادة رقم (536)-(a) الفقرة رقم (1) من القانون المدني الألماني مستبعدة في جميع الأحوال.",
+ "arabicFontType":2,
+ "dutchText":"11. DISCLAIMER. U ERKENT EN STEMT ERMEE IN DAT BNEI EN HAAR LICENTIEGEVERS EN LEVERANCIERS NIET VERANTWOORDELIJK OF AANSPRAKELIJK ZIJN VOOR ENIGE VIRUSSEN OF ANDERE INVALIDERENDE FUNCTIES DIE UW TOEGANG TOT OF GEBRUIK VAN DE GAME BEÏNVLOEDEN OF VOOR ENIGE INCOMPATIBILITEIT TUSSEN DE GAME, ANDERE DIENSTEN EN HARDWARE. DE GAME EN ALLE ANDERE DIENSTEN WORDEN GELEVERD \"IN DE HUIDIGE STAAT\". BEHALVE ZOALS HIERIN MOGELIJK WORDT BESCHREVEN, WIJZEN BNEI EN HAAR LICENTIEGEVERS EN LEVERANCIERS UITDRUKKELIJK ALLE GARANTIES OF BEPALINGEN VAN WELKE AARD DAN OOK AF (EXPLICIET OF IMPLICIET EN VOORTVLOEIEND UIT DE WET OF ANDERSZINS), INCLUSIEF, MAAR NIET BEPERKT TOT, IMPLICIETE GARANTIES VAN NIET-INBREUK,VERKOOPBAARHEID OF GESCHIKTHEID VOOR EEN BEPAALD DOEL.\nSommige rechtsgebieden staan de afwijzing van impliciete voorwaarden of de uitsluiting of beperking van garanties in contracten met consumenten niet toe, derhalve zijn sommige of alle disclaimers in deze Clausule mogelijk niet op u van toepassing.\n\nIndien u woonachtig bent in Australië is in aanvulling op bovenstaande voorwaarden in deze Clausule het volgende op u van toepassing:\nDeze Clausule 11 is niet bedoeld om mogelijke verplichte of wettelijke rechten van consumenten die van toepassing zijn conform de wetgeving van uw lokale jurisdictie te beperken of te verminderen. Voor zover wettelijk is toegestaan, zijn de voorwaarden en garanties die zijn opgenomen in Bijlage 2 van de Competition and Consumer Act 2010 (Cth) (de Australische consumentenwet) volledig uitgesloten van deze Overeenkomst, en in zoverre ze mogelijk niet zijn uitgesloten, erkent u dat de aansprakelijkheid van BNEI beperkt is tot en dat het billijk en redelijk is om de aansprakelijkheid van BNEI te beperken tot:\n(i)het opnieuw leveren van de Game; or\n(ii)het vergoeden van de kosten om de Game opnieuw geleverd te krijgen.\n\nIndien u woonachtig bent in Duitsland is in aanvulling op bovenstaande voorwaarden in deze Clausule het volgende op u van toepassing:\nIn zoverre er aan het leveren van enigerlei dienst kosten verbonden zijn, geldt het volgende: BNEI garandeert dat de Game materieel zal functioneren zoals gespecificeerd in de desbetreffende documentatie of productbeschrijving. In het geval van een defect zal BNEI vervolglevering ('Nacherfüllung') bieden door hetzij het defect te verwijderen (bijv. door een patch te verstrekken) hetzij een nieuwe versie van de dienst te leveren die het defect niet heeft, dit binnen een redelijke termijn die ten minste drie vervolgleveringen mogelijk maakt. Indien de vervolglevering definitief mislukt, kunt u uw andere wettelijke rechten uitoefenen, op voorwaarde dat BNEI's aansprakelijkheid voor initiële defecten conform sec. 536a para 1. van het Duits Burgerlijk Wetboek in elk geval uitgesloten is.",
+ "dutchFontType":2,
+ "chineseSText":"11. 免责声明。您确认并同意,BNEI及其许可证颁发者和供应商对任何影响您访问或使用游戏或其他服务和硬件的任何病毒或其他禁用功能概不负责。游戏和所有其他服务“按原样”提供。除本文所述外,BNEI及其许可证颁发者和供应商明确否认任何形式的担保或条件(由法律或其他方式明示或暗示),包括但不限于任何暗示的非侵权、适销性或特定用途适用性保证。 \n某些司法管辖区不允许在与消费者的合同中出现隐含条款的免责声明以及保证或担保的排除或限制,因此本节中的部分或全部免责声明可能不适用于您。\n\n如果您是澳大利亚居民,除了本节中的上述条款外,以下附加条款也适用于您:\n本第11节无意限制或减少根据当地管辖区法律适用的强制性或法定消费者权利或补偿措施。在法律许可的范围内,“2010年竞争与消费者法”(Cth)(澳大利亚消费者法)附表2所暗示的条件和保证完全被排除在本协议之外,在不被排除的范围内, 您承认,BNEI的责任仅限于,并承认其公平合理以便将BNEI的责任限于:\n(i)再次提供游戏;或\n(ii)支付再次提供游戏的费用。\n\n如果您是德国居民,除了本节中的上述条款外,以下附加条款也适用于您:\n在提供任何服务的费用的情况下,以下适用:BNEI保证游戏将按照适用的文件或产品说明来运行。发生任何故障时,在合理的时间段内,BNEI将解决故障(例如通过提供补丁)或提供没有故障的新版本来提供后续服务,并进行至少三次后续性能的测试。如果后续性能依然有故障,您可以行使您的其他法定权利,但根据德国民法典第536A条第1款,在任何情况下,BNEI对第二次初始缺陷都无过错责任。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_19",
+ "japaneseText":"\n12. インターネット\n\nお客様は、本件ゲームに関連する通信または処理の開始、実施または完了に関する正確性、適時性、遅延または不具合について、当社がいかなる責任も負わない旨を、確認し同意しているものとします。また、当社は、本件ゲームのオンライン部分、マルチプレイヤー部分またはダウンロード部分について、お客様の希望する時点でお客様によるアクセスが可能である旨の約束または保証をすることもありません。本件ゲームの当該部分にアクセスできない状況が長期間にわたって生じることもあります。当社は、本件ゲームの当該部分のいずれの動作についても、中断がないこと、エラーがないこと、セキュアであることまたはウイルスが含まれないことのいずれも保証せず、サーバーの動作継続または可用性についても保証しません。",
+ "englishUsText":"12. INTERNET. YOU ACKNOWLEDGE AND AGREE THAT BNEI IS NOT RESPONSIBLE OR LIABLE FOR ANY DELAYS OR FAILURES YOU MAY EXPERIENCE IN INITIATING, CONDUCTING, OR COMPLETING ANY TRANSMISSIONS OR TRANSACTIONS IN CONNECTION WITH THE GAME IN AN ACCURATE OR TIMELY MANNER. Further, BNEI cannot and does not promise or ensure that you will be able to access the online, multi-player, or downloadable portions of the Game whenever you want, and there may be extended periods of time when you cannot access such portions of the Game. BNEI does not ensure continuous, error-free, secure, or virus-free operation of any online, multi-player, or downloadable portions of the Game or continued operation or availability of any given server.",
+ "englishUsFontType":3,
+ "frenchText":"12. INTERNET. VOUS RECONNAISSEZ ET ACCEPTEZ QUE BNEI N’EST PAS RESPONSABLE DE TOUT RETARD OU ÉCHEC QUE VOUS POUVEZ SUBIR EN INITIANT, EFFECTUANT OU TERMINANT TOUTE TRANSMISSION OU TRANSACTION LIÉE AU JEU CORRECTEMENT OU EN TEMPS UTILE. En outre, BNEI ne peut pas promettre ou garantir que vous serez en mesure d’accéder à toute partie en ligne, multijoueur ou téléchargeable du Jeu à chaque fois que vous le souhaitez. Il est possible que vous ne puissiez pas accéder pendant de longues périodes auxdites parties du jeu. BNEI ne garantit pas un fonctionnement continu, sans erreur, sûr ou sans virus de toute partie en ligne, multijoueur ou téléchargeable du jeu ou le fonctionnement ou la disponibilité continus de tout serveur donné.",
+ "frenchFontType":3,
+ "italianText":"12. INTERNET. L'UTENTE RICONOSCE E ACCETTA CHE BNEI NON È RESPONSABILE NÉ TENUTA A RISPONDERE DI EVENTUALI DISAGI O RITARDI CHE L'UTENTE POSSA SPERIMENTARE NELL'AVVIARE, CONDURRE O COMPLETARE QUALUNQUE TRASMISSIONE O TRANSAZIONE RELATIVA AL GIOCO IN MODO ACCURATO O TEMPESTIVO. BNEI non può e non intende inoltre promettere o garantire che l'utente sarà in grado di accedere alle sezioni online, multigiocatore o scaricabili del Gioco ogni qualvolta lo desideri. Potrebbero infatti esserci dei lunghi periodi di tempo in cui l'utente non potrà accedere a tali sezioni del Gioco. BNEI non garantisce una fruizione continua, sicura, priva di errori o protetta da virus di alcuna sezione online, multigiocatore o scaricabile del Gioco, né un funzionamento continuo o una disponibilità costante dei server.",
+ "italianFontType":3,
+ "germanText":"12. INTERNET: SIE ERKENNEN AN UND STIMMEN ZU, DASS BNEI NICHT VERANTWORTLICH ODER HAFTBAR IST FÜR ETWAIGE VERZÖGERUNGEN ODER AUSFÄLLE, DIE SIE UNTER UMSTÄNDEN BEI DEM RICHTIGEN ODER ZEITGERECHTEN EINLEITEN, ABWICKELN ODER ABSCHLIESSEN VON ÜBERTRAGUNGEN ODER TRANSAKTIONEN IN VERBINDUNG MIT DEM SPIEL ERLEBEN. Darüber hinaus kann BNEI nicht versprechen und gibt nicht das Versprechen ab, dass Sie in der Lage sein werden, immer auf die Online-, Mehrspieler- oder herunterladbaren Elemente des Spiels zuzugreifen, wann Sie möchten, und es kann längere Zeiträume geben, in denen Sie nicht auf diese Elemente des Spiels zugreifen können. BNEI stellt keinen durchgehenden, mängelfreien, sicheren oder virenfreien Betrieb etwaiger Online-, Mehrspieler- oder herunterladbarer Elemente des Spiels und keinen unterbrechungsfreien Betrieb sowie keine unterbrechungsfreie Verfügbarkeit irgendwelcher bestimmter Server sicher.",
+ "germanFontType":3,
+ "spanishText":"12. INTERNET. USTED RECONOCE Y ACEPTA QUE BNEI NO SE HARÁ RESPONSABLE DE POSIBLES RETRASOS O FALLOS QUE USTED PUEDA SUFRIR AL INICIAR, EJECUTAR O COMPLETAR UNA TRANSMISIÓN O TRANSACCIÓN RELACIONADA CON EL JUEGO DE MANERA PERTINENTE Y OPORTUNA. Del mismo modo, BNEI no puede prometer ni garantizar que usted pueda acceder a partidas multijugador, partidas en línea o partes descargables del Juego siempre que lo desee, y es posible que durante largos periodos de tiempo usted no pueda acceder a tales partes del Juego. BNEI no garantiza un funcionamiento continuo y libre de errores o de virus de partidas multijugador, partidas en línea o partes descargables del Juego, así como tampoco el funcionamiento o la disponibilidad de forma continuada de un determinado servidor.",
+ "spanishFontType":3,
+ "chineseTText":"12.網際網路。您認可並同意,在發起、執行或完成任何與遊戲有關的傳輸或交易時,遇到的任何延誤或失敗,BNEI 均不負有任何責任。此外,BNEI 不能也不會承諾或確保您可以隨時存取遊戲的線上功能、多玩家功能或可下載部分,並且當您無法存取遊戲時,時間可能會延長。BNEI 不能確保任何線上、多玩家或可下載遊戲部分的連續、無錯誤、安全或無病毒操作,或任何指定伺服器的持續操作或可用性。",
+ "chineseTFontType":1,
+ "koreanText":"12. 인터넷. 귀하는, 귀하가 본 게임과 관련하여 전송 혹은 거래를 시작하거나 실행하거나 완료하는 과정에서 지연, 부정확 혹은 지체로 인한 장애를 경험하더라도 BNEI는 이에 대해 아무런 책임이 없음을 인정하고 동의합니다. 더 나아가, BNEI는 귀하가 원할 때 언제든지 본 게임의 온라인, 멀티플레이어 혹은 다운로드 부분에 접근할 수 있다고 약속하거나 보장하지 않습니다. 귀하가 본 게임의 해당 부분에 오랫동안 접근하지 못하는 경우도 발생할 수 있습니다. BNEI는 본 게임의 온라인, 멀티플레이어 혹은 다운로드 부분이 지속적으로, 오류 없이, 안전하게, 또는 바이러스 없이 작동한다고 보장하지 않으며, 서버의 운영이나 이용 가능 상태가 지속된다고 보장하지도 않습니다.",
+ "koreanFontType":2,
+ "portugueseText":"12. INTERNET. VOCÊ RECONHECE E CONCORDA QUE A BNEI NÃO É RESPONSÁVEL POR QUALQUER ATRASO OU FALHA QUE VOCÊ POSSA TER EM INICIAR, CONDUZIR OU CONCLUIR QUALQUER TRANSMISSÃO OU TRANSAÇÃO RELACIONADA AO JOGO DE FORMA PRECISA OU OPORTUNA. Além disso, a BNEI não promete nem garante (nem pode fazê-lo) que você poderá acessar as partes on-line, multijogador ou de download do Jogo sempre que quiser, podendo haver períodos extensos de tempo em que você não poderá acessar essas partes do Jogo. A BNEI não garante a operação contínua, sem erros, segura ou sem vírus de qualquer parte on-line, multijogador ou de download do Jogo nem a operação ou disponibilidade continuada de qualquer servidor.",
+ "portugueseFontType":2,
+ "russianText":"12. ИНТЕРНЕТ. ВЫ ПРИЗНАЕТЕ И СОГЛАШАЕТЕСЬ С ТЕМ, ЧТО КОМПАНИЯ BNEI НЕ НЕСЕТ НИКАКОЙ ОТВЕТСТВЕННОСТИ ЗА ЛЮБЫЕ ЗАДЕРЖКИ ИЛИ СБОИ, КОТОРЫЕ МОГУТ ПРЕПЯТСТВОВАТЬ ТОЧНОЙ И СВОЕВРЕМЕННОЙ ИНИЦИАЛИЗАЦИИ, ВЫПОЛНЕНИЮ ИЛИ ЗАВЕРШЕНИЮ КАКИХ-ЛИБО ПЕРЕДАЧ ИЛИ ТРАНЗАКЦИЙ, СВЯЗАННЫХ С ИГРОЙ. Помимо этого, компания BNEI не гарантирует постоянный доступ к любым компонентам Игры для многопользовательской игры, сетевым и загружаемым компонентам Игры, поэтому могут возникать продолжительные периоды, в течение которых эти компоненты Игры не будут доступны. Компания BNEI не гарантирует бесперебойную, безошибочную, безопасную и не содержащую вирусов эксплуатацию любых компонентов для многопользовательской игры, сетевых и загружаемых компонентов Игры, а также бесперебойную работу и доступность любого отдельного сервера.",
+ "russianFontType":2,
+ "turkishText":"12. İNTERNET. OYUNLA İLİŞKİLİ İLETİMLERİN VEYA İŞLEMLERİN DOĞRU YA DA ZAMANINDA BAŞLATILMASI, GERÇEKLEŞTİRİLMESİ VEYA TAMAMLANMASINDA OLUŞABİLECEK GECİKME YA DA HATALARDAN BNEI'NİN SORUMLU VEYA YÜKÜMLÜ OLMADIĞINI KABUL ETMEKTESİNİZ. Ayrıca, BNEI, Oyunun çevrimiçi, çok oyunculu veya indirilebilir bölümlerine istediğiniz zaman erişebilmenizi garanti etmez veya sağlamaz ve Oyunun bu bölümlerine erişemediğinizde süre uzatımı oluşabilir. BNEI, Oyunun çevrimiçi, çok oyunculu veya indirilebilir bölümlerinin sürekli, hatasız, güvenli veya virüssüz çalışmasını ya da belirli bir sunucunun sürekli çalışmasını veya kullanılabilirliğini sağlamaz.",
+ "turkishFontType":2,
+ "arabicText":"12. الإنترنت\nأنت تقر وتوافق على أن شركة BNEI غير مسؤولة عن أي تأخير أو إخفاق قد تواجهه أثناء بدء أو إجراء أو إكمال أي عمليات نقل أو معاملات مرتبطة باللعبة بالطريقة الصحيحة أو المناسبة. علاوةً على ذلك، لا تتعهَّد BNEI أو تضمن أنك ستتمكَّن من الوصول إلى أجزاء اللعبة القابلة للتنزيل أو خصائص تعدُّد اللاعبين أو عبر الإنترنت، متى أردت ذلك، وقد تكون هناك فترات مطولة حيث يتعذَّر عليك الوصول إلى مثل هذه الأجزاء من اللعبة. لا تضمن BNEI استمرار التشغيل دون وقوع أخطاء أو ثغرات أمنية أو الإصابة بالفيروسات في أي جزءٍ من أجزاء اللعبة المستخدمة عبر الإنترنت أو متعددة اللاعبين أو القابلة للتنزيل أو استمرار تشغيل أو توفُّر أي خادم بعينه.",
+ "arabicFontType":2,
+ "dutchText":"12. INTERNET. U ERKENT EN STEMT ERMEE IN DAT BNEI NIET VERANTWOORDELIJK OF AANSPRAKELIJK IS VOOR ENIGE VERTRAGINGEN OF FOUTEN DIE U MOGELIJK KUNT ERVAREN BIJ HET OP EEN NAUWKEURIGE OF TIJDIGE MANIER INITIËREN, UITVOEREN OF VOLTOOIEN VAN VERZENDINGEN OF TRANSACTIES MET BETREKKING TOT DE GAME. Bovendien kan en zal BNEI niet beloven of garanderen dat u in staat zult zijn toegang te krijgen tot de online, multiplayer of downloadbare delen van het spel wanneer u maar wilt, en dat er mogelijk langere periodes kunnen zijn waarin u geen toegang hebt tot dergelijke gedeelten van de Game. BNEI garandeert geen continue, foutloze, veilige of virusvrije werking van online, multiplayer of downloadbare delen van de Game of de voortdurende werking of beschikbaarheid van enige server.",
+ "dutchFontType":2,
+ "chineseSText":"12. 网络。您确认并同意,在发起、执行或完成任何与游戏有关的传输或交易时,遇到的任何延误或失败,BNEI均不负有任何责任。此外,BNEI不能也不会承诺或确保您可以随时访问游戏的在线功能,多玩家功能或可下载部分,并且当您无法访问游戏时,时间可能会延长。BNEI不能确保任何在线、多玩家或可下载游戏部分的连续、无错误、安全或无病毒操作,或任何给定服务器的持续操作或可用性。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_20",
+ "japaneseText":"\n13. 責任の制限\n\n次に掲げるものを除き、いかなる場合も、当社またはその子会社、関係会社、役員、従業員、代理人その他のパートナーおよびサプライヤーは、本件ゲームの利用もしくは利用不能、本件ゲームに含まれているかもしくは本件ゲームを通じてアクセスするコンテンツの利用もしくは利用不能、またはサポートサービスの不提供に起因する間接損害、特別損害、派生的損害または懲罰的損害賠償その他利用機会の喪失または逸失利益など(これらに限定されるものではありません)のいかなる損害についても、それが契約、不法行為(過失も含まれます)その他のいかなる根拠による訴えであるかを問わず、責任を負いません。(1)当社の過失に起因する死亡または人身傷害、(2)当社による詐欺または欺まん的不実表示、(3)当社による故意または重過失、(4)本件ゲームの利用に起因する有形動産の滅失または損傷、および (5)他の何らかの責任のうちその制限または排除が適用法上許されないもの。当社による軽過失、通常の過失または本規約に基づく主要な義務の違反の場合、当社の責任は、お客様に生じた予見可能な直接損害に限定されるものとします。いかなる場合も、本件ゲームの利用もしくは利用不能または本規約に起因または関連する当社の責任の総額は、契約、保証、過失、製造物責任、厳格責任、知的財産侵害その他のいかなる理論に基づくものであるかを問わず、100ドル、またはこれを上回る場合においてはお客様による本件ゲームの利用のためにお客様から当社に支払われた金額を上限とします。本第17条は、お客様の居住法域における法律上で契約による制限が許されていないいかなる強制的または法定の保証も、制限するものではありません。",
+ "englishUsText":"13. LIMITATION ON LIABILITY. EXCEPT FOR (1) DEATH OR PERSONAL INJURY CAUSED BY BNEI’S NEGLIGENCE, (2) FRAUD OR FRAUDULENT MISREPRESENTATION BY BNEI, (3) INTENTIONAL ACTS OR GROSS NEGLIGENCE OF BNEI, (4) LOSS OR DESTRUCTION OF TANGIBLE PERSONAL PROPERTY CAUSED BY THE USE OF THE GAME, AND (5) ANY OTHER LIABILITY WHICH CANNOT BE LIMITED OR EXCLUDED BY APPLICABLE LAW, IN NO EVENT SHALL BNEI OR ITS SUBSIDIARIES, AFFILIATES, OFFICERS, EMPLOYEES, AGENTS, AND OTHER PARTNERS AND SUPPLIERS BE LIABLE FOR ANY INDIRECT, SPECIAL, CONSEQUENTIAL OR PUNITIVE DAMAGES, OR ANY OTHER DAMAGES INCLUDING BUT NOT LIMITED TO LOSS OF USE, LOSS OF PROFITS, WHETHER IN AN ACTION IN CONTRACT, TORT (INCLUDING NEGLIGENCE) OR OTHERWISE, ARISING OUT OF OR IN ANY WAY CONNECTED WITH THE USE OF OR INABILITY TO USE THE GAME OR THE CONTENT CONTAINED IN OR ACCESSED THROUGH THE GAME OR THE FAILURE TO PROVIDE SUPPORT SERVICES. IN THE EVENT OF SLIGHT OR ORDINARY NEGLIGENCE, OR BREACH OF BNEI’S ESSENTIAL OBLIGATIONS UNDER THIS AGREEMENT, BNEI’S LIABILITY SHALL BE LIMITED TO DIRECT AND FORESEEABLE DAMAGES SUFFERED BY YOU. IN NO EVENT SHALL THE AGGREGATE LIABILITY OF BNEI, WHETHER IN CONTRACT, WARRANTY, TORT, PRODUCT LIABILITY, STRICT LIABILITY, INTELLECTUAL PROPERTY INFRINGEMENT OR OTHER THEORY, ARISING OUT OF OR RELATING TO THE USE OF OR INABILITY TO USE THE GAME OR TO THESE TERMS EXCEED ONE HUNDRED DOLLARS ($100) OR, IF HIGHER, THE AMOUNT PAID BY YOU TO BNEI FOR YOUR USE OF THE GAME. THIS SECTION 13 DOES NOT LIMIT ANY MANDATORY OR STATUTORY GUARANTEES THAT CANNOT BE LIMITED BY CONTRACT UNDER THE LAWS OF YOUR LOCAL JURISDICTION.",
+ "englishUsFontType":3,
+ "frenchText":"13. LIMITATION DE RESPONSABILITÉ. SAUF EN CAS DE (1) DÉCÈS OU PRÉJUDICE PERSONNEL CAUSÉ PAR LA NÉGLIGENCE DE BNEI, (2) DE FRAUDE OU D’ALLÉGATION FRAUDULEUSE DE LA PART DE BNEI, (3) D’ACTES DÉLIBÉRÉS OU DE NÉGLIGENCE GRAVE DE BNEI, (4) DE PERTE OU DE DESTRUCTION DE BIENS MEUBLES CORPORELS CAUSÉE PAR L’UTILISATION DU JEU ET (5) DE TOUTE AUTRE RESPONSABILITÉ QUI NE SAURAIT ÊTRE LIMITÉE OU EXCLUE PAR LA LOI APPLICABLE, BNEI OU SES FILIALES, AFFILIÉS, REPRÉSENTANTS, EMPLOYÉS, AGENTS, AINSI QUE SES AUTRES PARTENAIRES OU FOURNISSEURS NE SAURAIENT ÊTRE TENUS RESPONSABLES DE TOUT PRÉJUDICE INDIRECT, SPÉCIAL, CONSÉCUTIF OU PUNITIF, OU DE TOUT AUTRE PRÉJUDICE Y COMPRIS, SANS QUE LA LISTE SOIT LIMITATIVE, LA PERTE D’UTILISATION, LA PERTE DE PROFITS, QU’ELLE SOIT CONTRACTUELLE OU DÉLICTUELLE, TOUT DÉLIT CIVIL (Y COMPRIS LA NÉGLIGENCE) OU TOUT AUTRE ACTE DÉLICTUEUX, QUI RÉSULTERAIT OU SE RAPPORTERAIT À L’UTILISATION OU AU DÉFAUT D’UTILISATION DU JEU ET DE SON CONTENU OU ACCESSIBLE PAR LE BIAIS DU JEU OU ENCORE À L’IMPOSSIBILITÉ DE DISPENSER DES SERVICES D’ASSISTANCE. DANS LE CAS OÙ BNEI SE RENDRAIT COUPABLE D’UNE NÉGLIGENCE SIMPLE OU MANQUERAIT À SES OBLIGATIONS CONTRACTUELLES AU TITRE DU PRÉSENT CONTRAT, LA RESPONSABILITÉ DE BNEI SERA LIMITÉE AUX PRÉJUDICES DIRECTS ET PRÉVISIBLES QUE VOUS AUREZ SUBIS. EN AUCUN CAS LA RESPONSABILITÉ TOTALE DE BNEI, EN VERTU D’UN CONTRAT, DE GARANTIES, D’UN ACTE DÉLICTUEL, D’UNE RESPONSABILITÉ DE PRODUIT, D’UNE RESPONSABILITÉ STRICTE, D’INFRACTION AUX DROITS DE PROPRIÉTÉ INTELLECTUELLE OU D’AUTRE MOTIF, DÉCOULANT DE L’UTILISATION OU DE L’INCAPACITÉ À UTILISER LE JEU OU SE RAPPORTANT AU JEU OU AUX PRÉSENTES CONDITIONS, NE SAURAIT DÉPASSER CENT DOLLARS (100 $) OU, DANS LE CAS D’UN MONTANT PLUS ÉLEVÉ, LA SOMME QUE VOUS AVEZ VERSÉE À BNEI POUR UTILISER LE JEU. LE PRÉSENT ARTICLE 13 N’ENTEND PAS LIMITER LES GARANTIES RÉGLEMENTAIRES OU OBLIGATOIRES QUI NE SONT PAS SUSCEPTIBLES D’ÊTRE LIMITÉES CONTRACTUELLEMENT EN VERTU DES LOIS DE LA JURIDICTION LOCALE APPLICABLES.",
+ "frenchFontType":3,
+ "italianText":"13. LIMITAZIONE DI RESPONSABILITÀ. FATTA ECCEZIONE PER I CASI DI (1) DECESSO O LESIONI PERSONALI PER NEGLIGENZE ATTRIBUIBILI A BNEI, (2) FRODE O DICHIARAZIONI FRAUDOLENTE DA PARTE DI BNEI, (3) DOLO O COLPA GRAVE DI BNEI, (4) PERDITA O DISTRUZIONE DI PROPRIETÀ PERSONALI TANGIBILI CAUSATA DALL'UTILIZZO DEL GIOCO E (5) OGNI ALTRA RESPONSABILITÀ CHE NON POSSA ESSERE LIMITATA O ESCLUSA DALLE NORME APPLICABILI, IN NESSUN CASO BNEI (INCLUSI I SUOI CONSOCIATI, AFFILIATI, RESPONSABILI, DIPENDENTI, AGENTI O ALTRI PARTNER E FORNITORI) È TENUTA A RISARCIRE DANNI INDIRETTI, SPECIALI, CONSEGUENTI O ESEMPLARI O QUALUNQUE ALTRO TIPO DI DANNO, INCLUSI, A TITOLO ESEMPLIFICATIVO E NON ESAUSTIVO, LA PERDITA D'USO O DI PROFITTO, SULLA BASE DI UNA CLAUSOLA CONTRATTUALE, DI ATTI ILLECITI (INCLUSA LA COLPA) O ALTRO, DERIVANTI DA O CONNESSI IN QUALCHE MODO ALL'UTILIZZO O AL MANCATO UTILIZZO DEL GIOCO O DEI CONTENUTI INTERNI AL GIOCO O ACCESSIBILI TRAMITE ESSO O DALL'IMPOSSIBILITÀ DI FORNIRE SERVIZI DI ASSISTENZA. IN CASO DI COLPA DI LIEVE O MODESTA ENTITÀ O DI VIOLAZIONE DEGLI OBBLIGHI FONDAMENTALI DI BNEI PREVISTI DAL PRESENTE ACCORDO, LA RESPONSABILITÀ DI BNEI SI LIMITA AL RISARCIMENTO DEI DANNI DIRETTI E PREVEDIBILI SUBITI DALL'UTENTE. IN NESSUN CASO LA RESPONSABILITÀ AGGREGATA DI BNEI, PREVISTA DA CLAUSOLE CONTRATTUALI, GARANZIE, ILLECITI CIVILI, RESPONSABILITÀ DI PRODOTTO, RESPONSABILITÀ OGGETTIVA, VIOLAZIONE DELLA PROPRIETÀ INTELLETTUALE O ALTRE DOTTRINE GIURIDICHE E DERIVANTE DA O CONNESSA ALL'UTILIZZO O AL MANCATO UTILIZZO DEL GIOCO E AI PRESENTI TERMINI, PUÒ SUPERARE I CENTO DOLLARI (100 $) O, SE SUPERIORE, LA SOMMA PAGATA DALL'UTENTE A BNEI PER UTILIZZARE IL GIOCO. LA PRESENTE SEZIONE 13 NON PREGIUDICA LE GARANZIE LEGALI OD OBBLIGATORIE CHE NON POSSONO ESSERE LIMITATE PER CONTRATTO IN BASE ALLE LEGGI DELLA GIURISDIZIONE LOCALE DELL'UTENTE.",
+ "italianFontType":3,
+ "germanText":"13. HAFTUNGSBESCHRÄNKUNG: AUSSER FÜR (1) TOD ODER KÖRPERVERLETZUNG INFOLGE VON FAHRLÄSSIGKEIT SEITENS BNEI, (2) BETRUG ODER ARGLISTIGE TÄUSCHUNG SEITENS BNEI, (3) VORSÄTZLICHE HANDLUNGEN ODER GROBE FAHRLÄSSIGKEIT SEITENS BNEI, (4) VERLUST ODER ZERSTÖRUNG VON PRIVATEM SACHVERMÖGEN INFOLGE DER NUTZUNG DES SPIELS UND (5) SÄMTLICHE SONSTIGE HAFTUNG, DIE NICHT DURCH ANWENDBARE GESETZE BESCHRÄNKT ODER AUSGESCHLOSSEN WERDEN KANN, HAFTEN BNEI ODER DESSEN TOCHTERUNTERNEHMEN, VERBUNDENE UNTERNEHMEN, LEITENDE ANGESTELLTE, MITARBEITER, BEAUFTRAGTE UND ANDERE PARTNER UND LIEFERANTEN IN KEINEM FALL FÜR IRGENDWELCHE MITTELBAREN SCHÄDEN, BESONDEREN SCHÄDEN, FOLGE- ODER STRAFSCHÄDEN ODER BELIEBIGEN ANDEREN SCHÄDEN, DARUNTER ENTGANGENE NUTZUNG UND ENTGANGENER GEWINN, OB AUFGRUND VON VERTRAG, UNERLAUBTER HANDLUNG (FAHRLÄSSIGKEIT EINGESCHLOSSEN) ODER SONSTIGEM, DIE SICH AUS DER NUTZUNG BZW. DER UNMÖGLICHKEIT DER NUTZUNG DES SPIELS ODER DER INHALTE, DIE IN DEM SPIEL ENTHALTEN SIND ODER AUF DIE ÜBER DAS SPIEL ZUGEGRIFFEN WIRD, ODER DEM VERSÄUMNIS, SUPPORT-DIENSTE BEREITZUSTELLEN, ERGEBEN ODER DAMIT IN VERBINDUNG STEHEN. IM FALL VON LEICHTER FAHRLÄSSIGKEIT ODER EINEM LEICHTEN VERSTOSS GEGEN DIE GRUNDLEGENDEN VERPFLICHTUNGEN VON BNEI GEMÄSS DER VORLIEGENDEN VEREINBARUNG IST DIE HAFTUNG VON BNEI AUF UNMITTELBARE UND VORHERSEHBARE VON IHNEN ERLITTENE SCHÄDEN BESCHRÄNKT. DIE GESAMTHAFTUNG VON BNEI, OB AUFGRUND VON VERTRAG, GEWÄHRLEISTUNG, UNERLAUBTER HANDLUNG, PRODUKTHAFTUNG, GEFÄHRDUNGSHAFTUNG, VERSTOSS GEGEN GEISTIGES EIGENTUM ODER EINEM SONSTIGEN RECHTSGRUND, INFOLGE ODER IN VERBINDUNG MIT DER NUTZUNG BZW. DER UNMÖGLICHKEIT DER NUTZUNG DES SPIELS ODER IN VERBINDUNG MIT DIESEN BESTIMMUNGEN ÜBERSTEIGT IN KEINEM FALL EINHUNDERT DOLLAR (100 $) ODER, FALLS HÖHER, DEN BETRAG, DEN SIE AN BNEI FÜR IHRE NUTZUNG DES SPIELS GEZAHLT HABEN. DIESER ABSCHNITT 13 STELLT KEINE BESCHRÄNKUNG VORGESCHRIEBENER ODER GESETZLICHER GARANTIEN DAR, DIE GEMÄSS DEN GESETZEN IHRES RECHTSGEBIETES NICHT VERTRAGLICH BESCHRÄNKT WERDEN KÖNNEN.",
+ "germanFontType":3,
+ "spanishText":"13. LIMITACIÓN DE RESPONSABILIDAD. SALVO POR CIRCUNSTANCIAS DE 1) MUERTE O LESIÓN PERSONAL CAUSADA POR NEGLIGENCIA DE BNEI; 2) FRAUDE O DECLARACIÓN FALSA POR PARTE DE BNEI; 3) ACTOS INTENCIONADOS O NEGLIGENCIA GRAVE DE BNEI; 4) PÉRDIDA O DESTRUCCIÓN DE BIENES PERSONALES TANGIBLES CAUSADOS POR EL USO DEL JUEGO; Y 5) CUALQUIER OTRA RESPONSABILIDAD QUE NO PUEDA LIMITARSE O EXCLUIRSE POR LA LEY APLICABLE, BNEI, SUS FILIALES, EMPRESAS ASOCIADAS, CARGOS DIRECTIVOS, EMPLEADOS, AGENTES Y OTROS PROVEEDORES O ENTIDADES ASOCIADAS NO INCURRIRÁN EN NINGÚN CASO EN RESPONSABILIDAD ALGUNA POR CUALESQUIERA DAÑOS INDIRECTOS, ESPECIALES, EMERGENTES O PUNITIVOS, NI TAMPOCO POR OTROS DAÑOS, INCLUIDOS, ENTRE OTROS, LA PÉRDIDA DE USO O EL LUCRO CESANTE, YA SEA COMO PARTE DE UNA ACCIÓN CONTRACTUAL, EXTRACONTRACTUAL (INCLUIDA NEGLIGENCIA) O DE CUALQUIER OTRO MODO, QUE DERIVEN O QUE DE ALGUNA FORMA ESTÉN RELACIONADOS CON EL USO O CON LA IMPOSIBILIDAD DE USO DEL JUEGO, CON EL CONTENIDO INCLUIDO EN EL JUEGO O AL QUE SE TENGA ACCESO A TRAVÉS DEL JUEGO O CON LA FALTA DE PROVISIÓN DE SERVICIO DE SOPORTE. EN CASO DE NEGLIGENCIA LEVE U ORDINARIA O DE INCUMPLIMIENTO DE LAS OBLIGACIONES ESENCIALES DE BNEI EN VIRTUD DEL PRESENTE CONTRATO, LA RESPONSABILIDAD DE BNEI SE LIMITARÁ A LOS DAÑOS DIRECTOS Y PREVISIBLES QUE USTED SUFRA. LA RESPONSABILIDAD TOTAL DE BNEI, YA PROCEDA DE RESPONSABILIDAD CONTRACTUAL, EXTRACONTRACTUAL U OBJETIVA, DE PRODUCTO, GARANTÍA, VULNERACIÓN DE LA PROPIEDAD INTELECTUAL O DE OTRO PRINCIPIO LEGAL, QUE SE DERIVE O QUE ESTÉ RELACIONADA CON EL USO O CON LA IMPOSIBILIDAD DE USO DEL JUEGO O CON ESTAS CONDICIONES, NO EXCEDERÁ EN NINGÚN CASO LOS CIEN DÓLARES ESTADOUNIDENSES (100 USD) O, DE SER MAYOR, EL IMPORTE QUE USTED HAYA PAGADO A BNEI PARA PODER USAR EL JUEGO. LA PRESENTE CLÁUSULA 13 NO LIMITARÁ NINGUNA GARANTÍA OBLIGATORIA O LEGAL QUE NO PUEDA LIMITARSE POR CONTRATO CON ARREGLO A LA LEGISLACIÓN DE SU JURISDICCIÓN LOCAL.\n",
+ "spanishFontType":3,
+ "chineseTText":"13.責任限制。除非 (1) BNEI 的疏忽造成死亡或個人傷害,(2) BNEI 有欺騙或欺詐行為,(3) BNEI 有故意行為或嚴重疏忽,(4) 由於使用遊戲造成個人有形資產的損失或破壞,以及 (5) 任何其他不受適用法律限制或被排除在外的責任,任何情況下,BNEI 或其子公司、關係企業、管理人員、員工、代理商及其他合作夥伴和供應商均不對任何間接、特殊、衍生性或懲罰性損害,或任何其他損害,包括但不限於所受損害、所失利益,無論是在合約、侵權行為(包括疏忽)或其他任何方式引起的或以任何方式連接使用或無法使用遊戲或透過遊戲或未能獲得支持服務或存取內容負責。根據本合約,如有輕微或普遍的疏忽,或違反 BNEI 的基本義務時,BNEI 的責任僅限於您所遭受的直接和可以承受的損失。在任何情況下,因使用或無法使用遊戲,BNEI 的合約責任,無論是合約、擔保、侵權、產品責任、無過失責任、智慧財產權侵權或其他理論,BNEI 支付給您的遊戲費用皆不超過一百美元($100)。第 13 條不限制根據您當地管轄範圍的法律限制的任何強制或法定擔保。",
+ "chineseTFontType":1,
+ "koreanText":"13. 책임 제한. (1) BNEI의 과실로 인한 사망이나 신체 상해, (2) BNEI에 의한 사기나 사기적 허위 표시, (3) BNEI의 고의적 행위나 중과실, (4) 본 게임 이용으로 인한 유형 동산의 상실이나 멸실, 그리고 (5) 관련 법상 제한이나 배제가 불가능한 기타 책임의 경우를 제외하고는, BNEI나 그 자회사, 계열사, 임원, 직원, 대리인 및 기타 제휴자 및 공급자는, 본 게임 또는 본 게임에 포함되거나 본 게임을 통해 접근 가능한 콘텐츠의 이용 혹은 이용불가로 인해 또는 지원 서비스 제공 미비로 인해(또는 어떤 형태로든 이상과 관련하여) 발생하는 일체의 간접손해, 특별손해, 징벌적 손해 또는 기타 손해(여기에는 계약법에 근거한 법 절차인지 불법행위법(과실 포함)에 근거한 법 절차인지를 불문하고 사용이익의 상실과 수익의 상실이 포함되며 이에 한정되지 않음)에 대해 어떤 경우에도 아무런 책임이 없습니다. 경과실이나 일반 과실의 경우 또는 BNEI가 본 계약상 필수적 의무를 위반한 경우, BNEI의 책임 범위는 귀하에게 발생한 예견 가능 직접손해에 한합니다. 본 게임의 이용이나 이용 불가로 인해(혹은 이와 관련하여) 또는 본 계약의 조건과 관련하여 발생하는 BNEI의 책임 총액은, 계약, 보증, 불법행위, 제조물 책임, 무과실 책임, 지적재산권 침해, 또는 기타 어떤 법리에 근거한 것인지를 불문하고, 어떤 경우에도 일백 달러($100) 또는 귀하가 본 게임 이용을 위해 BNEI에 지불한 금액 중 높은 액수를 초과할 수 없습니다. 본 제13절은 귀하가 속한 현지 관할권의 법상 계약을 통해 제한할 수 없는 의무적 혹은 법정 보증을 제한하지 않습니다.",
+ "koreanFontType":2,
+ "portugueseText":"13. LIMITAÇÃO DE RESPONSABILIDADE. EXCETO EM CASO DE (1) MORTE OU LESÃO PESSOAL CAUSADA PELA NEGLIGÊNCIA DA BNEI, (2) FRAUDE OU DECLARAÇÃO FALSA DA BNEI, (3) DOLO OU CULPA DA BNEI, (4) PERDA OU DESTRUIÇÃO DE PROPRIEDADE PESSOAL TANGÍVEL CAUSADA PELO USO DO JOGO E (5) QUALQUER OUTRA RESPONSABILIDADE QUE NÃO POSSA SER LIMITADA NEM EXCLUÍDA PELA LEI APLICÁVEL, SOB NENHUMA CIRCUNSTÂNCIA A BNEI OU SUBSIDIÁRIAS, AFILIADAS, OFICIAIS, FUNCIONÁRIOS, AGENTES OU OUTROS PARCEIROS E FORNECEDORES DA BNEI SERÃO RESPONSÁVEIS POR QUAISQUER DANOS INDIRETOS, ESPECIAIS, CONSEQUENTES OU PUNITIVOS, OU QUALQUER OUTRO TIPO DE DANO, INCLUINDO, ENTRE OUTROS, A PERDA DE USO E A PERDA DE LUCROS, SEJA EM UMA AÇÃO EM CONTRATO, DELITO (INCLUINDO NEGLIGÊNCIA) OU OUTRO, ADVINDO DE OU CONECTADO DE ALGUMA FORMA COM O USO OU A INCAPACIDADE DE USAR O JOGO OU CONTEÚDOS DELE OU QUE POSSAM SER ACESSADOS POR MEIO DELE OU A FALHA EM FORNECER SERVIÇOS DE SUPORTE. NO CASO DE NEGLIGÊNCIA LEVE OU COMUM, OU DE VIOLAÇÃO DAS OBRIGAÇÕES ESSENCIAIS DA BNEI SOB ESTE CONTRATO, A RESPONSABILIDADE DA BNEI DEVERÁ SER LIMITADA AOS DANOS DIRETOS E PREVISÍVEIS SOFRIDOS POR VOCÊ. SOB NENHUMA CIRCUNSTÂNCIA, A RESPONSABILIDADE AGREGADA DA BNEI, SEJA EM CONTRATO, GARANTIA, DELITO, RESPONSABILIDADE DE PRODUTO, RESPONSABILIDADE ESTRITA, VIOLAÇÃO DE PROPRIEDADE INTELECTUAL OU OUTRA TEORIA, ADVINDA DE, RELACIONADA AO USO DE OU À INCAPACIDADE DE USAR O JOGO OU RELACIONADA A ESSES TERMOS EXCEDERÁ CEM DÓLARES (US$ 100,00) OU, SE SUPERIOR, EXCEDERÁ A QUANTIA PAGA POR VOCÊ À BNEI PELO SEU USO DO JOGO. ESTA SEÇÃO 13 NÃO PRETENDE LIMITAR QUAISQUER DIREITOS OU RECURSOS DE CONSUMIDORES, OBRIGATÓRIOS OU REGULAMENTARES, QUE NÃO POSSAM SER LIMITADOS POR CONTRATO SOB AS LEIS DE SUA JURISDIÇÃO LOCAL.",
+ "portugueseFontType":2,
+ "russianText":"13. ОГРАНИЧЕНИЕ ОТВЕТСТВЕННОСТИ. ЗА ИСКЛЮЧЕНИЕМ СЛУЧАЕВ (1) ПРИЧИНЕНИЯ СМЕРТИ ИЛИ ВРЕДА ЗДОРОВЬЮ ПО ПРИЧИНЕ ХАЛАТНОСТИ КОМПАНИИ BNEI, (2) МОШЕННИЧЕСТВА ИЛИ ВВЕДЕНИЯ В ЗАБЛУЖДЕНИЕ СО СТОРОНЫ КОМПАНИИ BNEI, (3) УМЫШЛЕННОЙ ВИНЫ ИЛИ ГРУБОЙ ХАЛАТНОСТИ КОМПАНИИ BNEI, (4) УТРАТЫ ИЛИ УНИЧТОЖЕНИЯ ЛИЧНОЙ СОБСТВЕННОСТИ ПО ПРИЧИНЕ ИСПОЛЬЗОВАНИЯ ИГРЫ, А ТАКЖЕ (5) ВОЗНИКНОВЕНИЯ ЛЮБОЙ ДРУГОЙ ОТВЕТСТВЕННОСТИ, КОТОРАЯ НЕ МОЖЕТ БЫТЬ ИСКЛЮЧЕНА В СООТВЕТСТВИИ С ДЕЙСТВУЮЩИМ ЗАКОНОДАТЕЛЬСТВОМ, НИ ПРИ КАКИХ ОБСТОЯТЕЛЬСТВАХ КОМПАНИЯ BNEI ИЛИ ЕЕ ДОЧЕРНИЕ КОМПАНИИ, АФФИЛИРОВАННЫЕ ОРГАНИЗАЦИИ, СЛУЖАЩИЕ, СОТРУДНИКИ, АГЕНТЫ И ДРУГИЕ ПАРТНЕРЫ И ПОСТАВЩИКИ НЕ БУДУТ НЕСТИ ОТВЕТСТВЕННОСТЬ ЗА ЛЮБОЙ ПОБОЧНЫЙ, НЕПРЯМОЙ, КОСВЕННЫЙ ИЛИ ПОКАЗАТЕЛЬНЫЙ УЩЕРБ ИЛИ ДРУГИЕ ВИДЫ УЩЕРБА, ВКЛЮЧАЯ, ПОМИМО ПРОЧЕГО, НЕВОЗМОЖНОСТЬ ИСПОЛЬЗОВАНИЯ, УПУЩЕННУЮ ВЫГОДУ, ВОЗНИКШИЕ ПО ДОГОВОРНОМУ ИСКУ, ВВИДУ ПРОТИВОПРАВНОГО ДЕЯНИЯ (ВКЛЮЧАЯ ХАЛАТНОСТЬ) ИЛИ ПО ДРУГОЙ ПРИЧИНЕ, ВОЗНИКАЮЩИЕ ВВИДУ ИЛИ В ЛЮБОЙ СТЕПЕНИ В СВЯЗИ С ИСПОЛЬЗОВАНИЕМ ИЛИ НЕВОЗМОЖНОСТЬЮ ИСПОЛЬЗОВАНИЯ ИГРЫ ИЛИ СОДЕРЖАЩЕГОСЯ В НЕЙ ИЛИ ДОСТУПНОГО ЧЕРЕЗ НЕЕ КОНТЕНТА, ЛИБО ВВИДУ НЕПРЕДОСТАВЛЕНИЯ УСЛУГ ПО ПОДДЕРЖКЕ. В СЛУЧАЕ НЕЗНАЧИТЕЛЬНОЙ ХАЛАТНОСТИ ИЛИ ПРОСТОЙ НЕОСТОРОЖНОСТИ ЛИБО НАРУШЕНИЯ ОСНОВНЫХ ОБЯЗАТЕЛЬСТВ КОМПАНИИ BNEI В СООТВЕТСТВИИ С НАСТОЯЩИМ СОГЛАШЕНИЕМ, ОТВЕТСТВЕННОСТЬ КОМПАНИИ BNEI БУДЕТ ОГРАНИЧЕНА ПРИЧИНЕННЫМ ВАМ ПРЯМЫМ И ПРОГНОЗИРУЕМЫМ УЩЕРБОМ. НИ ПРИ КАКИХ ОБСТОЯТЕЛЬСТВАХ СОВОКУПНАЯ ОТВЕТСТВЕННОСТЬ КОМПАНИИ BNEI, ОБУСЛОВЛЕННАЯ ДОГОВОРНЫМИ, ГАРАНТИЙНЫМИ ОБЯЗАТЕЛЬСТВАМИ, ПРОТИВОПРАВНЫМИ ДЕЯНИЯМИ, ТОВАРНОЙ ИЛИ ОБЪЕКТИВНОЙ ОТВЕТСТВЕННОСТЬЮ, НАРУШЕНИЕМ ПРАВ НА ИНТЕЛЛЕКТУАЛЬНУЮ СОБСТВЕННОСТЬ ИЛИ ИНОЙ ТЕОРЕТИЧЕСКОЙ ВОЗМОЖНОСТЬЮ, ВОЗНИКАЮЩАЯ ВВИДУ ИЛИ СВЯЗАННАЯ С ИСПОЛЬЗОВАНИЕМ ИЛИ НЕВОЗМОЖНОСТЬЮ ИСПОЛЬЗОВАНИЯ ИГРЫ ИЛИ В СООТВЕТСТВИИ С НАСТОЯЩИМИ ПОЛОЖЕНИЯМИ НЕ БУДЕТ ПРЕВЫШАТЬ СУММУ В СТО ДОЛЛАРОВ США ($100) ИЛИ, ПРИ БОЛЕЕ ВЫСОКОМ ЗНАЧЕНИИ, СУММУ, ВЫПЛАЧЕННУЮ ВАМИ КОМПАНИИ BNEI ЗА ИСПОЛЬЗОВАНИЕ ИГРЫ. ПОЛОЖЕНИЯ РАЗДЕЛА 13 НЕ ПРЕДУСМАТРИВАЮТ ОГРАНИЧЕНИЙ ОБЯЗАТЕЛЬНЫХ ИЛИ ЗАКОННЫХ ГАРАНТИЙ, КОТОРЫЕ НЕЛЬЗЯ ОГРАНИЧИТЬ ПО УСЛОВИЯМ ДОГОВОРА В СООТВЕТСТВИИ С ЗАКОНОДАТЕЛЬСТВОМ ВНУТРЕННЕЙ ЮРИСДИКЦИИ.",
+ "russianFontType":2,
+ "turkishText":"13. SORUMLULUĞUN SINIRLANDIRILMASI. (1) BNEI'NİN İHMALİNDEN KAYNAKLANAN ÖLÜM VEYA YARALANMA, (2) SAHTEKARLIĞI VEYA HİLELİ YANLIŞ İFADESİ, (3) KASTİ EYLEMLERİ VEYA AĞIR İHMALİ, (4) OYUNUN KULLANIMINDAN KAYNAKLANAN KİŞİSEL FİZİKİ MAL KAYBI VE (5) GEÇERLİ YASANIN SINIRLI VEYA HARİÇ TUTMADIĞI BAŞKA BİR YÜKÜMLÜLÜK OLMASI HARİCİNDE, BNEI, BAĞLI ŞİRKETLERİ, İŞTİRAKLERİ, YÖNETİCİLERİ, ÇALIŞANLARI, TEMSİLCİLERİ VE DİĞER ORTAKLARI VE TEDARİKÇİLERİ, OYUNUN VEYA OYUNDA BULUNAN YA DA OYUNLA ERİŞİLEN İÇERİĞİN KULLANILMASI VEYA KULLANILMAMASI YA DA DESTEK HİZMETLERİNİN VERİLEMEMESİNDEN KAYNAKLANAN, SÖZLEŞMEDE YER ALAN BİR EYLEM, HAKSIZ FİİL (İHMAL DAHİL) VEYA BAŞKA BİR ŞEKİLDE OLMASINA BAKILMAKSIZIN, DOLAYLI, ÖZEL, SONUÇ OLARAK OLUŞAN VEYA CEZA GEREKTİREN YA DA KULLANIM KAYBI VE KÂR KAYBI DAHİL FAKAT BUNLARLA SINIRLI OLMAMAK ÜZERE DİĞER HİÇBİR ZARARDAN YÜKÜMLÜ OLMAYACAKTIR. HAFİF VEYA OLAĞAN İHMAL YA DA BNEI'NİN BU ANLAŞMADAKİ TEMEL YÜKÜMLÜLÜKLERİNİ İHMAL ETMESİ HALİNDE, BNEI'NİN YÜKÜMLÜLÜĞÜ UĞRADIĞINIZ DOĞRUDAN VE ÖNGÖRÜLEBİLİR ZARARLARLA SINIRLI OLACAKTIR. SÖZLEŞMEDE, GARANTİDE, HAKSIZ FİİLDE, ÜRÜN YÜKÜMLÜLÜĞÜNDE, KATİ YÜKÜMLÜLÜKTE, FİKRİ MÜLKİYET İHLALİNDE VEYA BAŞKA BİR TEORİDE OLMASINA BAKILMAKSIZIN, BNEI'NİN OYUNUN KULLANILMASI VEYA KULLANILMAMASINDAN YA DA BU ŞARTLARDAN KAYNAKLANAN TOPLAM SORUMLULUĞU HİÇBİR ŞEKİLDE YÜZ DOLARI (100$) AŞMAYACAK OLUP, AŞMASI HALİNDE OYUNU KULLANMAK İÇİN BNEI'YE ÖDEDİĞİNİZ TUTARIN ÜSTÜNDE OLMAYACAKTIR. BU BÖLÜM 13 YEREL YARGI ALANINIZIN YASALARI UYARINCA SÖZLEŞMEYLE SINIRLANAMAYACAK ZORUNLU VEYA YASAL GARANTİLERİ SINIRLAMAMAKTADIR.",
+ "turkishFontType":2,
+ "arabicText":"13. تحديد المسؤولية\nباستثناء (1) الوفاة أو الضرر الشخصي الناجم عن إهمال BNEI؛ (2) الغش أو التضليل المشوب بالغش من قِبلBNEI؛ (3) الأفعال المتعمدة أو الإهمال الجسيم من قِبل BNEI؛ (4) ضياع أو تلف الممتلكات الشخصية الملموسة الناجم عن استخدام اللعبة؛ (5) أي مسؤولية أخرى لا يمكن حصرها أو استبعادها في القانون المعمول به، لا تُعدُّ BNEI أو الشركات التابعة أو الفروع أو المسؤولون أو الموظفون أو الوكلاء أو الموردون أو الشركاء الآخرون مسؤولين بأي حال من الأحوال عن أي تعويض غير مباشر أو خاص أو تبعية أو جزائي أو أي تعويض آخر بما في ذلك، على سبيل المثال لا الحصر، فوات الانتفاع وخسارة الأرباح، سواء كان واجبًا استنادًا إلى المسؤولية العقدية أو التقصيرية (بما في ذلك الإهمال) أو المترتب أو المرتبط بأي حال من الأحوال باستخدام أو تعذُّر استخدام اللعبة أو المحتوى الموجود في اللعبة أو الذي يمكن الوصول إليه عبرها أو الإخفاق في توفير خدمات الدعم. في حالات الإهمال البسيط أو العادي أو الإخلال بالتزامات BNEI الأساسية في ظل هذه الاتفاقية، تقتصر مسؤولية BNEI على التعويض عن الأضرار المباشرة أو المتوقَّعة التي تقع عليك. لا يجوز بأي حال من الأحوال ألا تتجاوز المسؤولية الكلية لشركة (التأكد من النص) BNEI، سواءً استنادًا إلى العقد أو الضمان أو المسؤولية التقصيرية أو المسؤولية عن المنتج أو المسؤولية القانونية المطلقة أو التعدي على الملكية الفكرية أو غيرها من النظريات القانونية، الناجمة عن أو المرتبطة باستخدام اللعبة أو تعذُّر استخدامها أو باستخدام تلك البنود، عن مبلغ وقدره (100) مائة دولار أمريكي أو، إذا كانت القيمة أعلى، المبلغ الذي سددته إلى BNEI مقابل استخدام اللعبة. لا تَحدُّ هذه المادة رقم (13) من أي ضمانات إلزامية أو قانونية لا يمكن تقييدها بموجب العقد في ظل القوانين المعمول بها في منطقتك.",
+ "arabicFontType":2,
+ "dutchText":"13. BEPERKING VAN AANSPRAKELIJKHEID. MET UITZONDERING VAN (1) OVERLIJDEN OF PERSOONLIJK LETSEL ALS GEVOLG VAN DE NALATIGHEID VAN BNEI, (2) FRAUDE OF FRAUDULEUZE ONJUISTE VOORSTELLING DOOR BNEI, (3) OPZETTELIJKE HANDELINGEN OF GROVE NALATIGHEID VAN BNEI, (4) VERLIES OF VERNIETIGING VAN MATERIEEL PERSOONLIJK EIGENDOM, VEROORZAAKT DOOR HET GEBRUIK VAN DE GAME EN (5) ENIGE ANDERE AANSPRAKELIJKHEID DIE NIET KAN WORDEN BEPERKT OF UITGESLOTEN DOOR TOEPASSELIJKE WETGEVING, ZULLEN IN GEEN GEVAL BNEI OF HAAR DOCHTERONDERNEMINGEN, GEAFFILIEERDE BEDRIJVEN, FUNCTIONARISSEN, WERKNEMERS, AGENTEN EN ANDERE PARTNERS EN LEVERANCIERS AANSPRAKELIJK ZIJN VOOR ENIGE INDIRECTE, SPECIALE, GEVOLG- OF STRAFRECHTELIJKE SCHADE, OF ENIGE ANDERE SCHADE, INCLUSIEF MAAR NIET BEPERKT TOT VERLIES VAN GEBRUIK, WINSTDERVING, HETZIJ IN EEN ACTIE IN CONTRACT, ONRECHTMATIGE DAAD (MET INBEGRIP VAN NALATIGHEID) OF ANDERSZINS, VOORTVLOEIEND UIT OF OP ENIGERLEI WIJZE VERBAND HOUDEND MET HET GEBRUIK VAN OF HET ONVERMOGEN TOT GEBRUIK VAN DE GAME OF DE INHOUD ERVAN OF INHOUD DIE VIA DE GAME TOEGANKELIJK IS OF HET NIET KUNNEN LEVEREN VAN ONDERSTEUNENDE DIENSTEN. IN HET GEVAL VAN LICHTE OF GEWONE NALATIGHEID OF SCHENDING VAN DE ESSENTIËLE VERPLICHTINGEN VAN BNEI CONFORM DEZE OVEREENKOMST, IS DE AANSPRAKELIJKHEID VAN BNEI BEPERKT TOT RECHTSTREEKSE EN VOORZIENBARE DOOR U GELEDEN SCHADE. IN GEEN GEVAL ZAL DE TOTALE AANSPRAKELIJKHEID VAN BNEI, HETZIJ IN CONTRACT, GARANTIE, ONRECHTMATIGE DAAD, PRODUCTAANSPRAKELIJKHEID, STRIKTE AANSPRAKELIJKHEID, INBREUK OP INTELLECTUEEL EIGENDOM OF ANDERE ONDERSTELLING, VOORTVLOEIEND UIT OF BETREKKING HEBBEND OP HET GEBRUIK VAN OF HET ONVERMOGEN TOT HET GEBRUIK VAN DE GAME OF CONFORM DEZE VOORWAARDEN HONDERD DOLLAR ($ 100) TE BOVEN GAAN OF, INDIEN HOGER, HET BEDRAG DAT U AAN BNEI BETAALD HEEFT VOOR UW GEBRUIK VAN DE GAME. DEZE CLAUSULE 13 BEPERKT GEEN VERPLICHTE OF WETTELIJKE GARANTIES DIE NIET KUNNEN WORDEN BEPERKT DOOR EEN CONTRACT ONDER DE WETGEVING VAN UW LOKALE RECHTSGEBIED.",
+ "dutchFontType":2,
+ "chineseSText":"13. 责任限制。除非(1)BNEI的疏忽造成的死亡或个人伤害,(2)BNEI有欺骗或欺诈行为,(3)BNEI有故意行为或严重疏忽,(4)由于使用游戏造成的有形个人财产的损失或破坏,以及(5)任何其他不受适用法律限制或被排除在外的责任,任何情况下,BNEI或其子公司、关联公司、官员、员工、代理商及其他合作伙伴和供应商不负责任何间接、特殊、后果性或惩罚性损害或任何其他的损害,包括但不限于使用损失、利润损失,无论是在合同、侵权行为(包括疏忽)或其他任何方式引起、以任何方式连接使用或无法使用游戏、通过游戏或未能获得支持服务或访问内容。根据本协议,发生轻微或普遍的疏忽或违反BNEI的基本义务时,BNEI的责任仅限于您所遭受的直接和可以承受的损失。在任何情况下,由于使用或无法使用游戏,BNEI的合同责任,无论基于合同、担保、侵权、产品责任、严格责任、知识产权侵权或其他理论条款,BNEI向您支付的游戏费用都不会超过一百美元($100)。本部分第13节不限制根据您当地管辖范围的法律限制的任何强制或法定担保。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_21",
+ "japaneseText":"\n14. 拘束力のある仲裁\n\n\n\n本第14条の適用対象は、米国またはカナダ(ケベック州およびオンタリオ州を除きます)の居住者であるお客様に限定されます。\n\n\n\n以下の規定をよくお読みください。かかる規定は、BNEIとの間で生じる一切の紛争(知的財産に関する所定の請求を除きます)について拘束力のある仲裁への付託(陪審員による審理の放棄)をお客様に義務付けるものであるとともに、お客様によるBNEIへの救済請求の方法に制限(クラス形式仲裁、クラスアクションおよび代表訴訟の禁止)を加えるものです。\n\na) お客様およびBNEIは、本契約またはお客様による本件ゲームの利用に起因または関連する一切の訴訟原因、請求または意見相違(「紛争等」)を仲裁に付託する旨を、合意します。ただし、著作権、商標、商号、ロゴ、営業秘密または特許の不正使用を主張内容とする衡平法上の救済その他の救済の申立てがいずれかの当事者によりなされている紛争のいずれについても、お客様およびBNEIが仲裁を義務付けられることはないものとします。お客様において裁判所にて訴訟を提起することまたは陪審員による審理を受けることのいずれも、仲裁により妨げられることになります。\n\nb) 紛争等が生じた場合、お客様またはBNEIは、他方当事者に対し紛争等の通知を行う必要があるものとし、当該通知は、通知を行う側の当事者の社名、所在地および連絡先情報、当該紛争等の原因となった事由、ならびに救済として求める内容を記載した書面によるものとします。お客様からBNEIへの紛争等の通知のいずれも、次のいずれかの方法による必要があります。郵便(日本国 〒108-0014 東京都港区芝5-37-8 株式会社バンダイナムコエンターテインメント 法務部/仲裁通知担当宛て)、またはファクシミリ(+81-3-6711-5403 法務部/仲裁通知担当宛て)。当社は、紛争等についてのお客様へのいかなる通知も、お客様について当社に登録されている連絡先に宛てて送付するものとします。お客様およびBNEIは、紛争等の通知の送付日から60日以内に非公式の交渉を通じて紛争等の解決を試みるものとします。60日の経過後においては、お客様または当社のいずれも、仲裁を開始できるものとします。お客様およびBNEIは、いかなる紛争等の開始または申立ても紛争等の発生から1年以内になされる必要がある旨に、同意します。1年を経過した場合、当該紛争等の申立てが永久に禁止されることになります。\n\nc) お客様およびBNEIは、いかなる仲裁もその仲裁地がカリフォルニア州サンフランシスコ郡となる旨、また、アメリカ仲裁協会(「AAA」)の仲裁人1名により非公開にて実施される旨について、合意します。仲裁人は、実務レベルの日本語読み書き能力を備えた者である必要があります。お客様およびBNEIは、クラス形式での仲裁または代表訴訟の実施権限を仲裁人が有しない旨について、合意します。仲裁は、AAAの消費者仲裁規則に基づいて実施されるものとし、同規則は、本契約に組み込まれたことになります。AAAの消費者仲裁規則その他AAAに関する情報は、http://www.adr.org、電話(1-800-778-7879)または郵便(120 Broadway, Floor 21, New York, NY 10271)にて入手いただけます。本契約の締結により、お客様は、(1) AAAの消費者仲裁規則を読んで理解した旨を確認したことになるか、または (2) AAAの消費者仲裁規則を読むことを放棄したうえで態様の如何を問わずAAAの消費者仲裁規則が不公平である旨の一切の主張を放棄したことになります。\n\nd) お客様およびBNEIは、本契約が州際通商取引を裏付けるものである旨、また、その結果として本条の解釈および執行が米国連邦仲裁法により規律されることとなる旨について、合意します。",
+ "englishUsText":"14. BINDING ARBITRATION.\n\nTHIS SECTION 14 APPLIES TO YOU ONLY IF YOU RESIDE IN THE UNITED STATES OR CANADA, EXCLUDING THE PROVINCES OF QUEBEC AND ONTARIO.\n\nPLEASE READ THE FOLLOWING SECTION CAREFULLY BECAUSE IT REQUIRES YOU TO SUBMIT TO BINDING ARBITRATION (JURY TRIAL WAIVER) OF ANY AND ALL DISPUTES (OTHER THAN SPECIFIED INTELLECTUAL PROPERTY CLAIMS) WITH BNEI AND IT LIMITS THE MANNER IN WHICH YOU CAN SEEK RELIEF FROM BNEI (NO CLASS ARBITRATIONS, CLASS ACTIONS OR REPRESENTATIVE ACTIONS).\na)You and BNEI agree to arbitrate any cause of action, claim, or controversy (“Dispute”) arising from or relating to this Agreement or your use of the Game, except that you and BNEI are NOT required to arbitrate any Dispute in which either party seeks equitable and other relief for the alleged unlawful use of copyrights, trademarks, trade names, logos, trade secrets, or patents. ARBITRATION PREVENTS YOU FROM SUING IN COURT OR FROM HAVING A JURY TRIAL. \nb)In the event of a Dispute, you or BNEI must send to the other party a notice of Dispute, which is a written statement that sets forth the name, address and contact information of the party giving the notice, the facts giving rise to the Dispute, and the relief requested. You must send any notice of Dispute to BNEI Entertainment Inc., either by mail at 5-37-8 Shiba, Minato-ku, Tokyo 108-0014, Japan, Attention: Legal Department/Arbitration Notice, or by facsimile at +81-3-6711-5403, Attention: Legal Department/Arbitration Notice. We will send any notice of Dispute to you at the contact information we have for you. You and BNEI will attempt to resolve a Dispute through informal negotiation within sixty (60) days from the date the notice of Dispute is sent. After sixty (60) days, you or we may commence arbitration. You and BNEI agree that any Dispute must be commenced or filed within one year of a Dispute arising; otherwise, the Dispute is permanently barred. \nc)You and BNEI agree that any arbitration will occur in San Francisco County, California, and that arbitration will be conducted confidentially by a single arbitrator of the American Arbitration Association (“AAA”). The arbitrator shall have working level competency in written and spoken Japanese. You and BNEI agree that the arbitrator does not have the power to conduct a class arbitration or a representative action. The arbitration will be conducted pursuant to the AAA Consumer Arbitration Rules, which are incorporated into this Agreement. The AAA Consumer Arbitration Rules and other information about AAA are readily available at http://www.adr.org, by calling 1-800-778-7879, or by mail at 120 Broadway, Floor 21, New York, NY 10271. By entering into this Agreement, you either (1) acknowledge that you have read and understand the AAA Consumer Arbitration Rules or (2) waive reading the AAA Consumer Arbitration Rules and waive any claim that the AAA Consumer Arbitration Rules are unfair in any way. \nd)You and BNEI agree that this Agreement evidences a transaction in interstate commerce, and, thus, the Federal Arbitration Act governs the interpretation and enforcement of this section.",
+ "englishUsFontType":3,
+ "frenchText":"14. ARBITRAGE EXÉCUTOIRE.\n\nLE PRÉSENT ARTICLE 25 S'APPLIQUE À VOTRE PERSONNE UNIQUEMENT SI VOUS RÉSIDEZ AUX ÉTATS-UNIS OU AU CANADA, À L'EXCEPTION DES PROVINCES DE QUÉBEC ET D'ONTARIO.\n\nVEUILLEZ LIRE ATTENTIVEMENT L'ARTICLE SUIVANT CAR IL EXIGE QUE VOUS VOUS SOUMETTIEZ À UN ARBITRAGE EXÉCUTOIRE (RENONCIATION À UN PROCÈS AVEC JURY) DE TOUS DIFFÉRENDS (AUTRES QUE DES ACTIONS DÉSIGNÉES EN PROPRIÉTÉ INTELLECTUELLE) AVEC BNEI ET IL LIMITE LA MANIÈRE SELON LAQUELLE VOUS POUVEZ DEMANDER DES MESURES DE REDRESSEMENT AUPRÈS DE BNEI (PAS D'ARBITRAGES COLLECTIFS, D'ACTIONS COLLECTIVES NI D'ACTIONS REPRÉSENTATIVES).\na) Vous et BNEI convenez d'arbitrer tout(e) cause d'action, réclamation, ou litige (« Différend ») découlant du ou se rapportant au présent Contrat ou à votre utilisation des Jeu, à ceci près que vous et BNEI N'êtes PAS tenus d'arbitrer tout Différend au cours duquel l'une ou l'autre des parties demande des mesures de redressement équitables et autres mesures de redressement pour une utilisation illicite présumée de droits d'auteur, marques de commerce, noms de marque, logos, secrets de fabrique, ou brevets. UN ARBITRAGE VOUS EMPÊCHE D'INTENTER UNE ACTION EN JUSTICE AUPRÈS D'UN TRIBUNAL OU D'AVOIR UN PROCÈS AVEC JURY. \nb) En cas de Différend, vous devez ou BNEI doit envoyer à l'autre partie une notification de Différend, à savoir une déclaration écrite qui énonce le nom, l'adresse et les coordonnées de la partie signifiant la notification, les faits donnant lieu au Différend, et les mesures de redressement demandées. Vous devez envoyer toute notification de Différend à BANDAI NAMCO Entertainment Inc., par courrier à l'adresse suivante : 5-37-8 Shiba, Minato-ku, Tokyo 108-0014, Japon, À l'attention de : Legal Department/Arbitration Notice, ou par télécopie au +81-3-6711-5403, À l'attention de : Legal Department/Arbitration Notice. Nous vous enverrons toute notification de Différend aux coordonnées que nous possédons pour vous. Vous et BNEI tenterez de résoudre un Différend au moyen de négociations informelles dans les soixante (60) jours suivant la date d'envoi de la notification de Différend. Au terme dudit délai de soixante (60) jours, vous pouvez ou nous pouvons entamer une procédure d'arbitrage. Vous et BNEI convenez que toute procédure pour Différend doit être entamée ou déposée dans les douze mois suivant la survenue d'un Différend, faute de quoi le Différend sera définitivement frappé de prescription. \nc) Vous et BNEI convenez que tout arbitrage aura lieu dans le Comté de San Francisco, Californie, et que l'arbitrage sera conduit de manière confidentielle par un arbitre individuel de l'American Arbitration Association (« AAA ») (association américaine d'arbitrage). L'arbitre aura une connaissance correcte du japonais écrit et parlé. Vous et BNEI convenez que l'arbitre n'a pas le pouvoir de conduire un arbitrage collectif ou une action représentative. L'arbitrage sera conduit conformément au Règlement d'Arbitrage Consommateurs de l'AAA, qui est incorporé au présent Contrat. Le Règlement d'Arbitrage Consommateurs de l'AAA et d'autres informations au sujet de l'AAA peuvent être facilement obtenus à l'adresse http://www.adr.org, en appelant le 1-800-778-7879, ou par courrier à 120 Broadway, Floor 21, New York, NY 10271. En concluant le présent Contrat, vous (1) reconnaissez avoir lu et comprendre le Règlement d'Arbitrage Consommateurs de l'AAA ou (2) renoncez à lire le Règlement d'Arbitrage Consommateurs de l'AAA et renoncez à toute réclamation selon laquelle le Règlement d'Arbitrage Consommateurs de l'AAA est injuste à quelque égard que ce soit. \nd) Vous et BNEI convenez que le présent Contrat témoigne d'une transaction de commerce inter-états, et, par conséquent, la loi Federal Arbitration Act (loi fédérale relative à l'arbitrage) régit l'interprétation et l'application du présent article.",
+ "frenchFontType":3,
+ "italianText":"14. ARBITRATO VINCOLANTE.\n\nLA PRESENTE SEZIONE 14 SI APPLICA ALL'UTENTE ESCLUSIVAMENTE QUALORA RISIEDA NEGLI STATI UNITI O IN CANADA, AD ESCLUSIONE DELLE PROVINCE DEL QUEBEC E DELL'ONTARIO.\n\nL'UTENTE È PREGATO DI LEGGERE ATTENTAMENTE LA SEGUENTE SEZIONE POICHÉ GLI RICHIEDE DI SOTTOPORSI AD ARBITRATO VINCOLANTE (RINUNCIA AL PROCESSO PER GIURIA) DI TUTTE LE EVENTUALI CONTROVERSIE (DIVERSE DALLE RIVENDICAZIONI DI PROPRIETÀ INTELLETTUALE SPECIFICATE) CON BNEI E LIMITA LA MODALITÀ CON LA QUALE L'UTENTE PUÒ RICHIEDERE UN RISARCIMENTO DA BNEI (NESSUN ARBITRATO COLLETTIVO, AZIONE COLLETTIVA O AZIONE RAPPRESENTATIVA).\na) L'Utente e BNEI accettano di arbitrare qualsiasi causa di azione, rivendicazione o disputa (\"Controversia\") derivante da o relativa al presente Accordo o all'utilizzo dei Gioco, fatta eccezione per il caso in cui l'Utente e BNEI NON sono tenuti ad arbitrare le Controversie in cui una delle parti richieda un equo indennizzo e di altra natura per il presunto uso illegale di diritti d'autore, marchi, nomi commerciali, loghi, segreti commerciali o brevetti. L'ARBITRATO IMPEDISCE ALL'UTENTE DI PRESENTARE UNA CAUSA AVANTI AL TRIBUNALE O DI AVERE UN PROCESSO CON GIURIA.\nb) In caso di Controversia, l'Utente o BNEI devono inviare alla controparte un avviso della Controversia, ovvero una dichiarazione scritta contenente il nome, indirizzo e i recapiti della parte che trasmette l'avviso, i fatti all'origine della disputa e l'indennizzo richiesto. L'Utente è tenuto a inviare qualsiasi avviso di comunicazione di una Controversia a BANDAI NAMCO Entertainment Inc., tramite posta ordinaria all'indirizzo 5-37-8 Shiba, Minato-ku, Tokyo 108-0014, Japan, Attenzione: Reparto Legale/Avviso di arbitrato, o tramite fax al numero +81-3-6711-5403, Attenzione: Reparto Legale/Avviso di arbitrato. Provvederemo a inviare un avviso della Controversia all'Utente utilizzando i dati di recapito in nostro possesso. L'Utente e BNEI tenteranno di risolvere una Controversia per via negoziale informale entro sessanta (60) giorni dalla data di invio della comunicazione della Controversia. Dopo sessanta (60) giorni, l'Utente o noi potremmo avviare una procedura di arbitrato. L'Utente e BNEI riconoscono che qualsiasi Controversia debba essere avviata o presentata entro un anno dall'insorgenza della Controversia stessa; in caso contrario, la Controversia risulterà preclusa in modo permanente.\nc) L'Utente e BNEI riconoscono che qualsiasi arbitrato si svolgerà a San Francisco County, in California, e che l'arbitrato sarà condotto in maniera confidenziale da un unico arbitro appartenente alla American Arbitration Association (“AAA”). L'arbitro deve possedere un livello di competenza professionale nel giapponese scritto e parlato. L'Utente e BNEI riconoscono che l'arbitro non ha il potere di condurre un arbitrato collettivo o un'azione rappresentativa. L'arbitrato si svolgerà in conformità alle AAA Consumer Arbitration Rules, che sono integrate nel presente Accordo. Le AAA Consumer Arbitration Rules e altre informazioni riguardanti l'AAA sono prontamente consultabili sul sito http://www.adr.org, chiamando il numero 1-800-778-7879, o tramite posta ordinaria all'indirizzo 120 Broadway, Floor 21, New York, NY 10271. Con la sottoscrizione del presente Accordo, l'Utente (1) dichiara di aver letto e compreso le AAA Consumer Arbitration Rules oppure (2) rinuncia la lettura delle AAA Consumer Arbitration Rules e contestualmente rinuncia a qualsiasi pretesa in merito a qualsivoglia inequità delle AAA Consumer Arbitration Rules.\nd) L'Utente e BNEI riconoscono che il presente Accordo rappresenta una transazione nel commercio interstatale, e, pertanto, il Federal Arbitration Act disciplina l'interpretazione e l'applicazione della presente sezione.",
+ "italianFontType":3,
+ "germanText":"14. VERBINDLICHES SCHIEDSVERFAHREN.\n\nDIESER ABSCHNITT 14 IST NUR AUF SIE ANWENDBAR, WENN SIE IN DEN VEREINIGTEN STAATEN VON AMERIKA ODER IN KANADA (AUSGENOMMEN DER PROVINZEN QUEBEC UND ONTARIO) ANSÄSSIG SIND.\n\nBITTE LESEN SIE DEN FOLGENDEN ABSCHNITT SORGFÄLTIG DURCH, DA SIE SICH DAMIT FÜR SÄMTLICHE STREITIGKEITEN MIT BNEI (MIT AUSNAHME DER GENANNTEN ANSPRÜCHE AUF GEISTIGE EIGENTUMSRECHTE) EINEM VERBINDLICHEN SCHIEDSGERICHTSVERFAHREN UNTERWERFEN (VERZICHT AUF SCHWURGERICHTSVERFAHREN) UND DER ABSCHNITT DIE ART UND WEISE BESCHRÄNKT, IN DER SIE ENTSCHÄDIGUNG VON BNEI FORDERN KÖNNEN (KEINE SAMMELSCHIEDSVERFAHREN, GEMEINSCHAFTSKLAGEN ODER STELLVERTRETERKLAGEN).\na) Sie und BNEI kommen überein, alle Klagegründe, Ansprüche oder Auseinandersetzungen (“Streitigkeiten”), die sich aus oder im Zusammenhang mit diesem Vertrag oder Ihrer Verwendung der Spiel ergeben, durch ein Schiedsgericht entscheiden zu lassen, wobei Sie und BNEI jedoch NICHT verpflichtet sind, Streitigkeiten, bei denen eine Partei einen billigkeitsrechtlichen oder anderen Rechtsbehelf für die behauptete unrechtmäßige Verwendung von Urheberrechten, Warenzeichen, Warennamen, Logos, Geschäftsgeheimnissen oder Patenten geltend macht, durch ein Schiedsgericht entscheiden zu lassen. EIN SCHIEDSGERICHTSVERFAHREN STEHT EINER KLAGE VOR EINEM GERICHT ODER DER INANSPRUCHNAHME EINES SCHWURGERICHTSVERFAHRENS ENTGEGEN. \nb) Im Falle einer Streitigkeit müssen Sie oder BNEI der jeweils anderen Partei eine Streitanzeige senden. Dies ist eine schriftliche Erklärung, die Namen, Anschrift und Kontaktinformationen der anzeigenden Partei, den zu den Streitigkeiten führenden Sachverhalt sowie den beantragten Rechtsbehelf enthält. Sie müssen eine solche Streitanzeige an BANDAI NAMCO Entertainment Inc., entweder per Post an 5-37-8 Shiba, Minato-ku, Tokyo 108-0014, Japan, Attention: Legal Department/Arbitration Notice oder per Telefax an +81-3-6711-5403, Attention: Legal Department/Arbitration Notice senden. Wir senden Ihnen eine Streitanzeige unsererseits an die uns für Sie vorliegende Kontaktadresse. Sie und BNEI werden sich bemühen, eine Streitigkeit durch informelle Verhandlungen innerhalb von 60 (sechzig) Tagen nach dem Datum der Versendung der Streitanzeige beizulegen. Nach 60 (sechzig) Tagen können Sie bzw. wir ein Schiedsverfahren einleiten. Sie und BNEI vereinbaren, dass ein Streit innerhalb eines Jahres nach Entstehen einer Streitigkeit eingeleitet werden muss; danach ist ein solcher Streit unwiderruflich verjährt.\nc) Sie und BNEI vereinbaren, dass Schiedsgerichtsverfahren in San Francisco County, Kalifornien stattfinden, und von einem Einzelschiedsrichter der American Arbitration Association (“AAA”) vertraulich durchgeführt wird. Der Schiedsrichter wird ausreichende mündliche und schriftliche japanische Sprachkenntnisse haben. Sie und BNEI vereinbaren, dass der Schiedsrichter nicht zur Durchführung eines Sammelschiedsverfahrens oder eines Stellvertreterverfahrens befugt ist. Das Schiedsverfahren wird gemäß den AAA Consumer Arbitration Rules durchgeführt, die Bestandteil des vorliegenden Vertrags sind. Die AAA Consumer Arbitration Rules sowie andere Informationen bezüglich der AAA können Sie jederzeit auf http://www.adr.org oder auf Anfrage mit Anruf unter 1-800-778-7879 oder per Post an 120 Broadway, Floor 21, New York, NY 10271 einsehen. Durch Abschluss dieses Vertrags bestätigen Sie entweder, dass Sie (1) die AAA Consumer Arbitration Rules gelesen und verstanden haben oder (2) auf ein Lesen der AAA Consumer Arbitration Rules und damit auf sämtliche Ansprüche hinsichtlich einer wie auch immer gearteten Unbilligkeit der AAA Consumer Arbitration Rules verzichten. \nd) Sie und BNEI vereinbaren, dass dieser Vertrag ein zwischenstaatliches Handelsgeschäft belegt und entsprechend der Federal Arbitration Act die Auslegung und Durchsetzung dieses Abschnitts regelt. ",
+ "germanFontType":3,
+ "spanishText":"14. ARBITRAJE VINCULANTE.\n\nEL PRESENTE ARTÍCULO 14 SE LE APLICARÁ ÚNICAMENTE SI RESIDE EN LOS ESTADOS UNIDOS O CANADÁ, EXCLUIDAS LAS PROVINCIAS DE QUEBEC Y ONTARIO.\n\nLEA EL SIGUIENTE ARTÍCULO CON ATENCIÓN YA QUE LE OBLIGA A SOMETER A ARBITRAJE VINCULANTE (RENUNCIA AL JUICIO CON JURADO) CUALESQUIERA LITIGIOS (DISTINTOS DE LAS RECLAMACIONES POR PROPIEDAD INTELECTUAL ESPECIFICADAS) CON BNEI Y LIMITA LA FORMA EN QUE PUEDE SOLICITAR MEDIDAS POR PARTE DE BNEI (SIN PROCEDIMIENTOS DE ARBITRAJE COLECTIVO, DEMANDAS COLECTIVAS O ACCIONES CONJUNTAS).\na) Usted y BNEI acuerdan someter a arbitraje cualquier fundamento de acción legal, reclamación o controversia (un «Litigio») que se derive de, o relacione con, el presente Contrato o el uso por su parte de los Juego, con la excepción de que BNEI y usted NO estarán obligados a someter a arbitraje ningún Litigio en el que alguna de las parte solicite una medida en equidad o de otro tipo por el supuesto uso ilícito de derechos de autor, marcas comerciales, denominaciones comerciales, logotipos, secretos comerciales o patentes. EL ARBITRAJE LE IMPEDIRÁ PRESENTAR UNA DEMANDA ANTE LOS TRIBUNALES Y TENER UN JUICIO CON JURADO. \nb) Si surgiera algún Litigio, usted o BNEI deberán enviar a la otra parte una notificación al respecto, que deberá ser una declaración escrita en la que se recoja el nombre, dirección y datos de contacto de la parte que la envía, los hechos que han dado lugar al Litigio y las medidas solicitadas. Usted deberá enviar sus notificaciones de Litigio a BANDAI NAMCO Entertainment Inc., ya sea por correo postal a 5-37-8 Shiba, Minato-ku, Tokio 108-0014, Japón, a la atención del Departamento legal/Notificaciones de arbitraje, o por fax al +81-3-6711-5403, a la atención del Departamento legal/Notificaciones de arbitraje. Le enviaremos una notificación de de Litigio a los datos de contacto de usted de los que dispongamos. Usted y BNEI tratarán de resolver los Litigios a través de negociaciones informales en el plazo de sesenta (60) días a contar a partir del envío de la notificación de Litigio. Al cabo de sesenta (60) días, usted o nosotros podremos comenzar el arbitraje. Usted y BNEI acuerdan que cualquier procedimiento relativo a un Litigio deberá comenzar o solicitarse en el plazo de un año desde el acaecimiento del mismo; de lo contario, este caducará de forma permanente. \nc) Usted y BNEI acuerdan que cualquier procedimiento de arbitraje tendrá lugar en el condado de San Francisco, California, y que se desarrollará de forma confidencial a través de un único árbitro de la Asociación Americana de Arbitraje (la «AAA»). El árbitro deberá contar con una competencia de nivel profesional escrito y oral de la lengua japonesa. Usted y BNEI acuerdan que el árbitro no estará facultado para desarrollar acciones de arbitraje colectivas o conjuntas. El arbitraje se desarrollará con arreglo al Reglamento de Arbitraje de Consumo de la AAA, que se incorpora al presente Contrato. Dicho Reglamento y otra información acerca de la AAA están disponibles en http://www.adr.org, en el 1-800-778-7879 o en 120 Broadway, Floor 21, Nueva York, NY 10271. Al suscribir el presente Contrato, (1) reconoce usted que ha leído y comprende el Reglamento de Arbitraje de Consumo de la AAA o (2) renuncia a leer dicho Reglamento así como a reclamar que el mismo es injusto de cualquier forma. \nd) Usted y BNEI acuerdan que el presente Contrato recoge una transacción de comercio interestatal y que, por tanto, la Ley federal de arbitraje regirá la interpretación y ejecución del presente artículo.",
+ "spanishFontType":3,
+ "chineseTText":"14.具約束力的仲裁\n\n\n\n本第14條僅在您居於美國或加拿大(不包括魁北克省和安大略省)的情況下,方對您適用。 \n\n\n\n請仔細閱讀以下條文,因為條文規定在您在與BNEI發生任何爭議(指明的知識產權申索除外)時,須服從具約束力的仲裁(放棄陪審團審判),且該等條文限制您向BNEI 尋求法律濟助的方式(不得進行集體仲裁、集體訴訟或代表訴訟)。\n\na)您和BNEI同意通過仲裁解決任何因本協議或您使用遊戲而引起或與之相關的訴因、申索或爭論(「爭議」);但是,對於任何一方對所指的版權、商標、商用名稱、標誌、商業秘密或專利的非法使用而尋求衡平法或其他濟助的爭議,您和BNEI 無須通過仲裁解決。進行仲裁,會令您不能向法院提起訴訟或進行陪審團審判。\n\nb)如有爭議,您或BNEI必須向對方發出爭議通知,爭議通知是一份書面陳述,載有發出通知方的名稱、地址和聯繫資料、引起爭議的事實,以及所要求的濟助。您必須以郵寄或傳真方式,將爭議通知發送給 BANDAI NAMCO Entertainment Inc.,郵寄地址:日本国東京都港區芝五丁目37番8號(郵編108-0014) ,收件人:法務部/仲裁通知;傳真號碼:+81-3-6711-5403,收件人:法務部/仲裁通知。本公司會按本公司現有的您的聯繫資料,向您發出爭議通知。您和BNEI要在爭議通知發送當日起六十 (60) 天內,嘗試通過非正式協商解決爭議。該六十 (60) 天期限結束後,您或本公司可提起仲裁。您和BNEI同意,任何爭議必須在爭議發生的一年內展開或提出,否則,該項爭議將永久不得受理。 \n\nc)您和BNEI同意,任何仲裁將會在加利福尼亞州三藩市縣舉行,且仲裁將會由美國仲裁協會 (「美國仲裁協會」)的單一名仲裁員以保密形式進行。仲裁員必須擁有可應付工作的書面和口頭日語能力。您和BNEI同意,仲裁員無權進行集體仲裁或代表仲裁。仲裁將會根據已納入本協議的、美國仲裁協會《消費者仲裁規則》進行。美國仲裁協會《消費者仲裁規則》及該協會的其他資料載於http://www.adr.org,亦可致電1-800-778-7879或郵寄120 Broadway, Floor 21, New York, NY 10271索取相關資料。一經簽訂本協議,您:(1) 確認您已閱讀和明白美國仲裁協會《消費者仲裁規則》;或 (2) 放棄閱讀美國仲裁協會《消費者仲裁規則》,並放棄指稱美國仲裁協會《消費者仲裁規則》在任何方面有任何不公平之處。 \n\nd)您和BNEI同意,本協議證明一宗涉及州際貿易的交易;據此,本條文的解釋和強制執行受《聯邦仲裁法》管轄。",
+ "chineseTFontType":1,
+ "koreanText":"14. 중재에 대한 구속력 있는 합의\n\n제14조는 귀하가 미국 또는 퀘벡과 온타리오 주를 제외한 캐나다에 거주하고 있을 경우에만 귀하에 대한 관계에서 적용됩니다.\n\n아래의 내용은 귀하에게 BNEI와의 사이에서 발생하는 모든 (특정 지적 재산권 주장을 제외한) 분쟁에 대하여 구속력 있는 중재에 복종할 것 (배심재판 배제)을 의무화하고 귀하가 BNEI 로부터 구제를 받을 수 있는 수단을 제한하고 있으므로(단체중재, 단체소송 또는 대표소송 배제) 주의하여 읽어주시기 바랍니다.\na)귀하와 BNEI가 주장된 저작권, 상표, 상호, 로고, 영업 비밀 또는 특허의 불법 이용에 관하여 각 당사자가 공정한 다른 구제 방법을 찾는 어떠한 분쟁에 대해서 중재를 해야 할 의무가 없는 경우를 제외하고, 귀하와 BNEI는 본 계약과 귀하의 본 게임 이용에서 발생하거나 관련되는 행위, 주장, 또는 논란의 모든 원인(이하 “분쟁”)을 중재할 것에 동의합니다. 중재가 제기된 경우, 귀하는 법원에 소송을 제기하거나 배심재판을 하는 것을 금지합니다.\nb)분쟁 발생시, 귀하와 BNEI는 상대방에게 통지를 보내는 당사자의 이름, 주소, 연락 정보, 분쟁과 관련한 사실관계와 자신이 요청하는 구제방법에 대하여 서면으로 작성한 분쟁의 통지를 보내야 합니다. 귀하는 반드시 모든 분쟁의 통지를 우편으로 일본 도쿄미나토 구 시바5-37-8, 108-0014(4-5-15 Higashi-shinagawa, Shinagawa-ku, Tokyo 140-8590, Japan), 받는 사람: 법무실/중재통지(Attn: Legal Department/Arbitration Notice) 또는 팩스로 +81-3-6711-5403, 받는 사람: 법무실/중재통지(Attn: Legal Department/Arbitration Notice)으로 작성하여 BANDAI NAMCO Entertainment Inc.에게 보내야 합니다. 당사는 당사가 가지고 있는 귀하에 대한 연락 정보를 통해 분쟁에 관한 통지 일체를 보낼 것입니다. 귀하와 BNEI는 분쟁의 통지가 보내진 날로부터 60일 이내에 비공식적 협상을 통해 분쟁을 해결하려고 노력합니다. 60일이 경과하면, 귀하 또는 당사는 중재를 시작할 수 있습니다. 귀하와 BNEI는 모든 분쟁은 발생한 날로부터 1년 이내에 시작되거나 신청되어야 하며, 그렇지 아니할 경우 그에 대하여 다투는 것이 영원히 금지된다는 데 동의합니다.\nc)귀하와 BNEI는 모든 중재는 California 주 San Francisco County에서 이루어지며, 중재는 미국중재협회(American Arbitration Association, 이하 “AAA”)의 한 명의 중재인에 의하여 비밀리에 이루어질 것이라는 데에 동의합니다. 중재인은 일본어로 업무를 수행할 수 있을 정도로 일본어를 읽고 일본어로 회화를 할 수 있어야 합니다. 귀하와 BNEI는 중재인이 단체중재 또는 대표소송을 수행할 권한이 없음에 동의합니다. 중재는 본 계약에 편입되어 있는 AAA의 소비자 중재 규정(Consumer Arbitration Rules)에 의해 이루어질 것입니다. AAA의 소비자 중재 규정과 AAA에 관한 다른 정보는 http://www.adr.org, 1-800-778-7879으로 전화하거나 또는 120 Broadway, Floor 21, New York, NY 10271으로 우편을 보냄으로써 편리하게 입수할 수 있습니다. 본 계약을 체결함으로써 귀하는 (1) 귀하가 AAA의 소비자 중재 규정을 읽고 이해하였다는 것을 인정하거나, (2) AAA의 소비자 중재 규정을 읽는 것을 포기하고 AAA 소비자 중재 규정이 어떤 방식으로 불공정하다는 주장 일체를 포기합니다.\nd)귀하와 BNEI는 본 계약이 주와 주 사이 상거래의 증거이며, 그러므로 이 조항의 해석과 강제집행은 미국 연방중재법(Federal Arbitration Act)에 따른다는 것에 동의합니다.",
+ "koreanFontType":2,
+ "portugueseText":"14. ARBITRAGEM VINCULANTE.\n\nESTA SEÇÃO 14 APLICA-SE A VOCÊ SOMENTE SE RESIDIR NOS ESTADOS UNIDOS OU NO CANADÁ, EXCETO NAS PROVÍNCIAS DO QUEBEC E ONTÁRIO.\n\nLEIA A SEÇÃO A SEGUIR COM CUIDADO, POIS ELA EXIGE QUE VOCÊ SE SUJEITE A UMA ARBITRAGEM VINCULANTE (RENÚNCIA A JULGAMENTO POR JÚRI) DE TODO E QUALQUER PLEITO (ALÉM DAS ALEGAÇÕES DE PROPRIEDADE INTELECTUAL ESPECIFICADAS) COM A BNEI E SEUS LIMITES, DE MANEIRA A QUE VOCÊ POSSA BUSCAR TUTELA DA BNEI (NENHUMA ARBITRAGEM DE CLASSE, AÇÕES DE CLASSE NEM AÇÕES POR SUBSTITUIÇÃO DERIVADA).\na) Você e a BNEI concordam em arbitrar qualquer ação, pedido ou controvérsia (\"Pleito\") advindo de ou relativo a este Contrato ou seu uso do Jogo, exceto que você e a BNEI NÃO precisam arbitrar qualquer Pleito no qual qualquer uma das partes busque tutela de equidade ou outra de suposto uso ilegal dos direitos autorais, marcas comerciais, nomes comerciais, logos, segredos comerciais ou patentes. A ARBITRAGEM IMPEDE VOCÊ DE PROCESSAR EM TRIBUNAL OU TER UM JULGAMENTO POR JÚRI. \nb) No caso de um Pleito, você ou a BNEI devem enviar à outra parte um aviso do Pleito, em declaração por escrito que define o nome, o endereço e as informações de contato da parte que está enviando o aviso, os fatos que levaram ao Pleito e a tutela solicitada. Você deve enviar qualquer aviso de Pleito à BNEI Entertainment Inc., por correio, para 5-37-8 Shiba, Minato-ku, Tokyo 108-0014 - Japan, Attention: Legal Department/Arbitration Notice, ou por fax, por +81-3-6711-5403, Attention: Legal Department/Arbitration Notice. Enviaremos qualquer aviso de Pleito nas informações de contato que tivermos de você. Você e a BNEI tentarão resolver um Pleito por meio de negociação informal no prazo de sessenta (60) dias a partir da data em que o aviso de Pleito for enviado. Após sessenta (60) dias, você ou nós poderemos iniciar a arbitragem. Você e a BNEI concordam que qualquer Pleito deve ser iniciado ou registrado dentro do prazo de um ano após o seu surgimento, do contrário será barrado em caráter permanente. \nc) Você e a BNEI concordam que qualquer arbitragem ocorrerá na Comarca da cidade de San Francisco, na Califórnia, e será conduzida confidencialmente por um único árbitro da American Arbitration Association (“AAA”, Associação de Arbitragem Norte-Americana). O árbitro deverá ter competência em japonês escrito e falado em nível profissional. Você e a BNEI concordam que o árbitro não tem poder de conduzir uma arbitragem de classe nem uma ação por substituição derivada. A arbitragem será conduzida de acordo com as Regras de Arbitragem para Consumidores da AAA, incorporadas neste Contrato. As Regras de Arbitragem para Consumidores da AAA e outras informações sobre a AAA estão disponíveis em: http://www.adr.org, pelo número 1-800-778-7879 ou por correio, em 120 Broadway, Floor 21, New York, NY 10271. Ao assinar este Contrato, você (1) reconhece que leu e entende as Regras de Arbitragem para Consumidores da AAA, ou (2) renuncia a ler as Regras de Arbitragem para Consumidores da AAA e a qualquer alegação de que as Regras de Arbitragem para Consumidores da AAA são de qualquer maneira injustas. \nd) Você e a BNEI concordam que este Contrato evidencia uma transação no comércio interestadual e, portanto, a Lei Federal sobre Arbitragem rege a interpretação e a aplicação desta seção.",
+ "portugueseFontType":2,
+ "russianText":"14. ОБЯЗАТЕЛЬНЫЙ АРБИТРАЖ.\n\nНАСТОЯЩИЙ РАЗДЕЛ 14 ПРИМЕНИМ ТОЛЬКО В ТОМ СЛУЧАЕ, ЕСЛИ ВЫ ПРОЖИВАЕТЕ В СОЕДИНЕННЫХ ШТАТАХ ИЛИ КАНАДЕ, ЗА ИСКЛЮЧЕНИЕМ ПРОВИНЦИЙ КВЕБЕК И ОНТАРИО.\n\nВНИМАТЕЛЬНО ПРОЧТИТЕ СЛЕДУЮЩИЙ РАЗДЕЛ, ПОСКОЛЬКУ В НЕМ ТРЕБУЕТСЯ, ЧТОБЫ ВСЕ ПРЕТЕНЗИИ К BNEI (ЗА ИСКЛЮЧЕНИЕМ УКАЗАННЫХ ПРЕТЕНЗИЙ, СВЯЗАННЫХ С ИНТЕЛЛЕКТУАЛЬНОЙ СОБСТВЕННОСТЬЮ) НАПРАВЛЯЛИСЬ В ТРЕТЕЙСКИЙ СУД (ОТКАЗ ОТ СУДА ПРИСЯЖНЫХ), ЧЕМ ОГРАНИЧИВАЕТСЯ ПОРЯДОК ТРЕБОВАНИЯ ПРАВОВОЙ ЗАЩИТЫ В ОТНОШЕНИИ BNEI (БЕЗ ВОЗМОЖНОСТИ ПОДАЧИ ГРУППОВЫХ, КОЛЛЕКТИВНЫХ ИСКОВ И ИСКОВ ПО ПРЕДСТАВИТЕЛЬСТВУ).\na) Вы и BNEI соглашаетесь передавать на рассмотрение в третейский суд все вопросы, претензии и разногласия («Спор»), проистекающие из настоящего Соглашения или возникшие в связи с использованием вами Игры, за исключением тех случаев, когда от вас и BNEI НЕ требуется урегулировать какой-либо Спор в третейском суде, по которому какая-либо из сторон требует применения средств правовой защиты по праву справедливости и иного освобождения от ответственности за предполагаемое незаконное использование авторских прав, товарных знаков, фирменных наименований, логотипов, коммерческой тайны или патентов. ОБЯЗАТЕЛЬНЫЙ АРБИТРАЖ ЛИШАЕТ СТОРОНЫ ВОЗМОЖНОСТИ ПОДАВАТЬ ИСКИ В СУД ОБЩЕЙ ЮРИСДИКЦИИ ИЛИ ПРИБЕГАТЬ К СУДУ ПРИСЯЖНЫХ. \nb) В случае возникновения Спора вы или BNEI должны отправить второй стороне уведомление о Споре, которое представляет собой письменное заявление с указанием имени, адреса и контактной информации стороны, направившей такое уведомление, а также с указанием фактов, послуживших основанием для Спора, и требуемого средства правовой защиты. Все уведомления о Споре необходимо направлять в BNEI Entertainment Inc. либо почтовым отправлением на адрес: 5-37-8 Shiba, Minato-ku, Tokyo 108-0014, Japan, Attention: Legal Department/Arbitration Notice, либо по факсу: +81-3-6711-5403, Attention: Legal Department/Arbitration Notice. Мы отправим вам уведомление о Споре по указанному в контактных данных адресу. Вами и BNEI будет предпринята попытка разрешить Спор путем переговоров в течение 60 (шестидесяти) дней с момента отправки уведомления о Споре. Через 60 (шестьдесят) дней вы или мы вправе обратиться в арбитраж. Вы и BNEI соглашаетесь, что любой Спор может быть инициирован или направлен в суд не позднее одного года с момента его возникновения, в противном случае Спор безвозвратно аннулируется. \nc) Вы и BNEI соглашаетесь с тем, что любое арбитражное разбирательство будет проводиться конфиденциально в округе Сан-Франциско, штат Калифорния, одним арбитром Американской арбитражной ассоциации («AAA»). Арбитр должен иметь необходимый для работы уровень знания японского языка (письменного, устного). Вы и BNEI соглашаетесь с тем, что арбитр не имеет полномочий на рассмотрение групповых и представительских исков. Арбитраж будет проводиться в соответствии с Регламентом потребительского арбитража ААА, включенным в настоящее Соглашение. Регламент потребительского арбитража ААА и другая информация об ААА доступны по адресу http://www.adr.org, а также их можно получить по телефону 1-800-778-7879 или по адресу: 120 Broadway, Floor 21, New York, NY 10271. Заключая настоящее Соглашение, вы либо (1) подтверждаете, что прочитали и поняли Регламент потребительского арбитража AAA, либо (2) отказываетесь от ознакомления с ним и от каких-либо претензий в отношении справедливости Регламента потребительского арбитража AAA. \nd) Вы и BNEI соглашаетесь с тем, что настоящее Соглашение свидетельствует о международной сделке и, таким образом, толкование и применение данного раздела регулируется положениями Федерального арбитражного акта.",
+ "russianFontType":2,
+ "turkishText":"14. BAĞLAYICI TAHKİM.\n\nBU BÖLÜM 14 QUEBEC VE ONTARIO HARİÇ OLMAK ÜZERE SADECE BİRLEŞİK DEVLETLER VEYA KANADA'DA YAŞAMANIZ HALİNDE GEÇERLİDİR.\n\nBNEI İLE TÜM ANLAŞMAZLIKLARINIZIN (FİKRİ MÜLKİYET TALEPLERİNDE BELİRTİLENLER HARİÇ) BAĞLAYICI TAHKİMİNE (JÜRİ DURUŞMASINDAN FERAGAT) UYMANIZI GEREKTİRDİĞİNDEN VE BNEI'DEN ÇÖZÜM İSTEME YÖNTEMİNİZİ SINIRLADIĞINDAN (TOPLU TAHKİME İZİN VERİLMEZ, TOPLU DAVA VEYA TEMSİLİ DAVA HAKKI MEVCUTTUR) AŞAĞIDAKİ BÖLÜMÜ DİKKATLE OKUYUNUZ.\na) Sizin ve BNEI'nin telif hakları, ticari markalar, logolar, ticari sırlar veya patentlerin iddia edilen yasa dışı kullanımı için tarafların adil ve başka bir çözüm aradığı dava, talep veya ihtilafı (\"Anlaşmazlık\") tahkim etmenizin GEREKMEDİĞİ haller haricinde, siz ve BNEI bu Sözleşmeden veya Oyunu kullanımınızdan kaynaklanan her Anlaşmazlık sebebini tahkim etmeyi kabul ediyorsunuz. TAHKİM MAHKEMEDE DAVA VEYA JÜRİLİ DURUŞMA HAKKINIZI ENGELLEMEKTEDİR. \nb) Bir Anlaşmazlık durumunda siz veya BNEI diğer tarafa Anlaşmazlık bildirimi göndermelisiniz. Bu bildirim, bildirimi yapan tarafın adını, adresini ve iletişim bilgilerini, Anlaşmazlığa yol açan olguları ve talep edilen çözümü içermelidir. Anlaşmazlık bildirimini 5-37-8 Shiba, Minato-ku, Tokyo 108-0014, Japonya, Dikkatine: Legal Department/Arbitration Notice adresine posta ile veya +81-3-6711-5403, Dikkatine: Legal Department/Arbitration Notice no'lu numaraya faks ile göndermelisiniz. Biz Anlaşmazlık bildirimlerini bizde bulunan iletişim bilgilerinize göndereceğiz. Siz ve BNEI, Anlaşmazlık bildiriminin gönderildiği tarihten itibaren altmış (60) gün içinde Anlaşmazlığı gayriresmi müzakerelerle çözmeye çalışacaksınız. Altmış (60) gün sonrasında, siz veya biz tahkim başlatabiliriz. Siz ve BNEI Anlaşmazlıkların Anlaşmazlığın ortaya çıktığı bir yıl içerisinde başlatılması veya sunulması gerektiğini kabul ediyorsunuz; aksi halde Anlaşmazlık kalıcı olarak zaman aşımına uğrayacaktır. \nc) Siz ve BNEI tahkimin San Francisco İlçesi, California'da gerçekleşeceğini ve Amerikan Tahkim Birliği'nin (“AAA”) tek bir hakemi tarafından gizlilik içinde yürütüleceğini kabul etmektesiniz. Hakem, yazılı ve sözlü Japonca'da iş düzeyinde yeterliliğe sahip olacaktır. Siz ve BNEI, hakemin toplu tahkim veya temsili dava yürütme yetkisi olmadığını kabul etmektesiniz. Tahkim, bu Sözleşmeye dahil edilen AAA Tüketici Tahkim Kurallarına uygun olarak gerçekleştirilecektir. AAA Tüketici Tahkim Kuralları ve AAA hakkında bilgilere http://www.adr.org adresine girerek, 1-800-778-7879 numarasını arayarak veya 120 Broadway, Floor 21, New York, NY 10271 adresinden posta ile ulaşabilirsiniz. Bu Sözleşmeyi imzalayarak (1) AAA Tüketici Tahkim Kurallarını okuyup anladığınızı veya (2) AAA Tüketici Tahkim Kurallarını okumayı reddettiğinizi ve AAA Tüketici Tahkim Kurallarının herhangi bir şekilde adil olmadığı talebinde bulunmaktan feragat ettiğinizi kabul etmektesiniz. \nd) Siz ve BNEI, bu Sözleşmenin eyaletler arası ticaret işlemini kanıtladığını ve dolayısıyla bu bölümün yorumlanması ve uygulanmasında Federal Tahkim Yasası'nın geçerli olacağını kabul etmektesiniz.",
+ "turkishFontType":2,
+ "arabicText":"14. التحكيم الملزم.\n\nيسري القسم 14 هذا عليك فقط إذا كنت تقيم في الولايات المتحدة أو كندا، باستثناء مقاطعتيْ كيبك وأونتاريو.\n\nيُرجى قراءة القسم التالي قراءةً دقيقةً، لأنه يلزمك بالخضوع للتحكيم الملزم (التنازل عن المحاكمة أمام هيئة المحلفين) لأي وجميع النزاعات (بخلاف الادعاءات المُحددة المتعلقة بالملكية الفكرية) مع شركة BNEI، كما أنه يضع حدودًا للطريقة التي يمكن لك أن تلتمس الانتصاف بها من شركة BNEI (منع التحكيم الجماعي أو الدعاوى الجماعية أو الدعاوى التمثيلية).\na)تتفق أنت وشركة BNEI على التحكيم في أيّ سبب دعوى أو مطالبة أو جدال (\"نزاع\") ينشأ أو يتعلق بهذه الاتفاقية أو باستخدامك للعبة، إلا أنك وشركة BNEI غير مُلزمين بالتحكيم في أي نزاع يلتمس فيه أحد الطرفين الانتصاف العادل وغيره فيما يتعلق بالاستخدام غير القانوني المزعوم لحقوق الطبع والنشر، أو العلامات التجارية، أو الأسماء التجارية، أو الشعارات، أو الأسرار التجارية، أو براءات الاختراع. ويمنعك التحكيم من رفع الدعاوى القضائية في المحكمة أو من المحاكمة أمام هيئة المحلفين. \nb)في حالة نشوء نزاع، يجب عليك أنت أو شركة BNEI إرسال إخطار بالنزاع إلى الطرف الآخر، وهو بيان خطي يُبين اسم الطرف المُقدِّم للإخطار وعنوانه وبيانات الاتصال به، بالإضافة إلى الحقائق التي أدت إلى نشوب النزاع، والالتماس المطلوب. يجب عليك إرسال أيّ إخطار نزاع إلى شركة BNEI Entertainment Inc، إما عن طريق البريد على عنوان 5-37-8 Shiba, Minato-ku, Tokyo 108-0014, Japan، عناية: إدارة الشؤون القانونية/إخطار التحكيم، أو عن طريق الفاكس على الرقم 5403-6711-3-81+، عناية: إدارة الشؤون القانونية/إشعار التحكيم. سنُرسِل إليك أيّ إخطار نزاع على معلومات اتصالك التي لدينا. وستحاول أنت وشركة BNEI حل النزاع بالتفاوض غير الرسمي خلال ستين (60) يومًا من تاريخ إرسال إخطار النزاع. وبعد مرور الستين (60) يومًا، يجوز لك أو لنا بدء التحكيم. تتفق أنت وشركة BNEI أنه يجب البدء في إجراءات أيّ نزاع أو تقديمه في غضون عامٍ واحد من النزاع الناشئ؛ وإلا فسيُعد النزاع باطلاً بصورة نهائية. \nc)تتفق أنت وشركة BNEI على إقامة أيّ تحكيم في مقاطعة سان فرانسيسكو بولاية كاليفورنيا، وأن مُحِّكمًا واحدًا من جمعية التحكيم الأمريكية (\"AAA\") هو الذي سيُجري هذا التحكيم سريًا. ويتقن المُحكم اللغة اليابانية نطقًا وكتابةً على المستوى العملي. وتتفق أنت وشركة BNEI أن المُحِّكم لا يتمتع بصلاحية إجراء التحكيم الجماعي أو الدعوى التمثيلية. وسيُجرى التحكيم وفق قواعد التحكيم الخاصة بالمستهلك التابعة لجمعية التحكيم الأمريكية، وهي مُضمَّنة في هذه الاتفاقية. تتوفر قواعد التحكيم الخاصة بالمستهلك التابعة لجمعية التحكيم الأمريكية وغيرها من المعلومات عن جمعية التحكيم الأمريكية بسهولة على http://www.adr.org، أو بالاتصال على 7879-778-800-1، أو عبر البريد على عنوان 120 Broadway, Floor 21, New York, NY 10271. بإبرام هذه الاتفاقية، فإنك إما (1) تقرّ بقراءة وفهم قواعد التحكيم الخاصة بالمستهلك التابعة لجمعية التحكيم الأمريكية أو (2) تعدل عن قراءة قواعد التحكيم الخاصة بالمستهلك التابعة لجمعية التحكيم الأمريكية، وتتنازل عن أيّ دعوى تزعم أن قواعد التحكيم الخاصة بالمستهلك التابعة لجمعية التحكيم الأمريكية غير عادلة بأيّ شكل من الأشكال. \nd)تتفق أنت وشركة BNEI أن هذه الاتفاقية تُمثل دليلاً على المعاملة في مجال التجارة بين الدول، وعليه، ينظم قانون التحكيم الفيدرالي تفسير هذا القسم وتنفيذه. ",
+ "arabicFontType":2,
+ "dutchText":"14. BINDENDE ARBITRAGE.\n\nDEZE CLAUSULE 14 IS ALLEEN OP U VAN TOEPASSING INDIEN U WOONACHTIG BENT IN DE VERENIGDE STATEN OF CANADA, MET UITZONDERING VAN DE PROVINCIES QUEBEC EN ONTARIO.\n\nLEES HET VOLGENDE ZORGVULDIG DOOR, OMDAT HET U VERPLICHT OM MEE TE WERKEN AAN ARBITRAGE (AFSTAND DOEN VAN JURYRECHTSPRAAK) BIJ ALLE GESCHILLEN (MET UITZONDERING VAN GESPECIFICEERDE VORDERINGEN MET BETREKKING TOT INTELLECTUEEL EIGENDOM) MET BNEI EN HET BEPERKT DE MANIER WAAROP U KUNT EEN TEGEMOETKOMING KUNT EISEN VAN BNEI (GEEN GROEPSARBITRAGE, GROEPSVORDERINGEN OF VERTEGENWOORDIGENDE VORDERINGEN).\na) U en BNEI gaan akkoord met arbitrage van enige reden tot actie, vordering of controverse (\"Geschil\") die voortvloeit uit of verband houdt met deze Overeenkomst of uw gebruik van de Game, behalve dat u en BNEI NIET verplicht zijn om Geschillen te beslechten waarbij een van beide partijen een billijke en andere tegemoetkoming verlangt voor het vermeende onwettige gebruik van auteursrechten, handelsmerken, handelsnamen, logo's, handelsgeheimen of patenten. DOOR ARBITRAGE KUNT U GEEN RECHTSZAAK AANSPANNEN OF GEBRUIKMAKEN VAN JURYRECHTSPRAAK. \nb) In het geval van een Geschil moet u of BNEI de andere partij een kennisgeving van Geschil sturen. Dit is een schriftelijke verklaring waarin de naam, het adres en de contactgegevens van de partij die de kennisgeving verstuurt, de feiten die aanleiding zijn voor het geschil en de gevraagde tegemoetkoming vermeld worden. U dient een kennisgeving van Geschil te sturen aan BNEI Entertainment Inc., hetzij via post naar 5-37-8 Shiba, Minato-ku, Tokyo 108-0014, Japan, Attention: Legal Department/Arbitration Notice of via fax naar +81-3-6711-5403, Attention: Legal Department/Arbitration Notice. We zullen een kennisgeving van Geschil sturen naar de contactgegevens die we van u hebben. U en BNEI zullen trachten een Geschil op te lossen door middel van informele onderhandelingen binnen zestig (60) dagen vanaf de datum waarop de kennisgeving van Geschil werd verstuurd. Na zestig (60) dagen kunnen u of wij doorgaan met arbitrage. U en BNEI komen overeen dat elk Geschil moet worden gemeld of ingediend binnen een jaar na het ontstaan van een geschil, anders wordt het geschil permanent niet ontvankelijk verklaard. \nc) U en BNEI komen overeen dat elke arbitrage zal plaatsvinden in San Francisco County, Californië, Verenigde Staten en dat arbitrage vertrouwelijk zal worden uitgevoerd door een enkele arbiter van de American Arbitration Association (\"AAA\"). De arbiter dient de Japanse taal in woord en geschrift te beheersen. U en BNEI komen overeen dat de arbiter niet bevoegd is om een groepsarbitrage of een vertegenwoordigende actie op te starten. De arbitrage zal uitgevoerd worden conform de AAA Consumer Arbitration Rules, die zijn opgenomen in deze Overeenkomst. De AAA Consumer Arbitration Rules en andere informatie over AAA zijn direct opvraagbaar op http://www.adr.org, door te bellen naar +1-800-778-7879 of per post: 120 Broadway, Floor 21, New York, NY 10271, Verenigde Staten. Door deze Overeenkomst aan te gaan, bevestigt u dat u (1) de AAA Consumer Arbitration Rules hebt gelezen en begrijpt of (2) afziet van het lezen van de AAA Consumer Arbitration Rules en afziet van enige claim dat de AAA Consumer Arbitration Rules op enigerlei wijze oneerlijk zijn. \nd) U en BNEI komen overeen dat deze Overeenkomst een transactie in handel tussen staten aantoont, en derhalve is de Federal Arbitration Act leidend voor de interpretatie en handhaving van deze Clausule.",
+ "dutchFontType":2,
+ "chineseSText":"14. 具约束力的仲裁\n\n本第14条仅在您居于美国或加拿大(不包括魁北克省和安大略省)的情况下,方对您适用。 \n\n请仔细阅读以下条文,因为条文规定在您在与BNEI发生任何争议(指明的知识产权主张除外)时,须服从具约束力的仲裁(放弃陪审团审判),且该等条文限制您向BNEI 寻求法律济助的方式(不得进行集体仲裁、集体诉讼或代表诉讼)。\na) 您和BNEI同意通过仲裁解决任何因本协议或您使用游戏而引起或与之相关的诉因、主张或争论(「争议」);但是,对于任何一方对所指的著作权、商标、商用名称、标志、商业秘密或专利的非法使用而寻求衡平法或其他济助的争议,您和BNEI 无须通过仲裁解决。进行仲裁,会令您不能向法院提起诉讼或进行陪审团审判。\nb) 如有争议,您或BNEI必须向对方发出争议通知,争议通知是一份书面陈述,载有发出通知方的名称、地址和联系信息、引起争议的事实,以及所要求的济助。您必须以邮寄或传真方式,将争议通知发送给 BANDAI NAMCO Entertainment Inc.,邮寄地址:日本国东京都港区芝五丁目37番8号(邮编108-0014) ,收件人:法务部/仲裁通知;传真号码:+81-3-6711-5403,收件人:法务部/仲裁通知。本公司会按本公司现有的您的联系信息,向您发出争议通知。您和BNEI要在争议通知发送当日起六十 (60) 天内,尝试通过非正式协商解决争议。该六十 (60) 天期限结束后,您或本公司可提起仲裁。您和BNEI同意,任何争议必须在争议发生的一年内展开或提出,否则,该项争议将永久不得受理。 \nc) 您和BNEI同意,任何仲裁将会在加利福尼亚州三藩市县举行,且仲裁将会由美国仲裁协会 (「美国仲裁协会」)的单一名仲裁员以保密形式进行。仲裁员必须拥有可应付工作的书面和口头日语能力。您和BNEI同意,仲裁员无权进行集体仲裁或代表仲裁。仲裁将会根据已纳入本协议的、美国仲裁协会《消费者仲裁规则》进行。美国仲裁协会《消费者仲裁规则》及该协会的其他信息载于http://www.adr.org,亦可致电1-800-778-7879或邮寄120 Broadway, Floor 21, New York, NY 10271索取相关信息。一经签订本协议,您:(1) 确认您已阅读和明白美国仲裁协会《消费者仲裁规则》;或 (2) 放弃阅读美国仲裁协会《消费者仲裁规则》,并放弃指称美国仲裁协会《消费者仲裁规则》在任何方面有任何不公平之处。 \nd) 您和BNEI同意,本协议证明一宗涉及州际贸易的交易;据此,本条文的解释和强制执行受《联邦仲裁法》管辖。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_22",
+ "japaneseText":"\n15. クラスアクションの放棄\n\n\n\n本第15条の適用対象は、米国またはカナダ(ケベック州およびオンタリオ州を除きます)の居住者であるお客様に限定されます。\n\n\n\n紛争等の審理が仲裁または裁判所のいずれにて実施される場合であれ、お客様は、本契約の締結により、クラスアクション、クラスアクション形式の仲裁その他の代表形式の訴訟または手続のいずれについてもお客様およびBNEIの各自が参加権を放棄したことになる旨に、同意します。",
+ "englishUsText":"15. CLASS ACTION WAIVER. \n\nTHIS SECTION 15 APPLIES TO YOU ONLY IF YOU RESIDE IN THE UNITED STATES OR CANADA, EXCLUDING THE PROVINCES OF QUEBEC AND ONTARIO.\n\nWHETHER THE DISPUTE IS HEARD IN ARBITRATION OR IN COURT, YOU AGREE THAT, BY ENTERING INTO THIS AGREEMENT, YOU AND BNEI ARE EACH WAIVING THE RIGHT TO PARTICIPATE IN A CLASS ACTION, CLASS ACTION ARBITRATION OR OTHER REPRESENTATIVE ACTION OR PROCEEDING.",
+ "englishUsFontType":3,
+ "frenchText":"15. RENONCIATION À UNE ACTION COLLECTIVE. \n\nLE PRÉSENT ARTICLE 26 S'APPLIQUE À VOTRE PERSONNE UNIQUEMENT SI VOUS RÉSIDEZ AUX ÉTATS-UNIS OU AU CANADA, À L'EXCEPTION DES PROVINCES DE QUÉBEC ET D'ONTARIO.\n\nQUE LE DIFFÉREND SOIT ENTENDU PAR ARBITRAGE OU AU TRIBUNAL, VOUS CONVENEZ QU'EN CONCLUANT LE PRÉSENT CONTRAT, VOUS ET BNEI RENONCEZ CHACUN AU DROIT DE PARTICIPER À UNE ACTION COLLECTIVE, UN ARBITRAGE D'ACTION COLLECTIVE OU AUTRE ACTION OU PROCÉDURE REPRÉSENTATIVE.",
+ "frenchFontType":3,
+ "italianText":"15. RINUNCIA ALL'AZIONE COLLETTIVA. \n\nLA PRESENTE SEZIONE 15 SI APPLICA ALL'UTENTE ESCLUSIVAMENTE QUALORA RISIEDA NEGLI STATI UNITI O IN CANADA, AD ESCLUSIONE DELLE PROVINCE DEL QUEBEC E DELL'ONTARIO.\n\nSIA CHE LA CONTROVERSIA VENGA UDITA NELL'AMBITO DI UN ARBITRATO O IN TRIBUNALE, L'UTENTE RICONOSCE CHE, CON LA STIPULA DEL PRESENTE ACCORDO, L'UTENTE E BNEI RINUNCIANO RECIPROCAMENTE AL DIRITTO DI PARTECIPARE A UN'AZIONE COLLETTIVA, ARBITRATO COLLETTIVO O ALTRA AZIONE O PROCEDIMENTO RAPPRESENTATIVO.",
+ "italianFontType":3,
+ "germanText":"15. VERZICHT AUF GEMEINSCHAFTSKLAGEN. \n\nDIESER ABSCHNITT 15 IST NUR AUF SIE ANWENDBAR, WENN SIE IN DEN VEREINIGTEN STAATEN VON AMERIKA ODER IN KANADA (AUSGENOMMEN DER PROVINZEN QUEBEC UND ONTARIO) ANSÄSSIG SIND.\n\nUNABHÄNGIG DAVON, OB DIE STREITIGKEIT VOR EINEM SCHIEDSGERICHT ODER EINEM ORDENTLICHEN GERICHT GEHÖRT WIRD, ERKLÄREN SIE SICH DAMIT EINVERSTANDEN; DASS SIE UND BNEI MIT ABSCHLUSS DIESES VERTRAGS AUF DAS RECHT ZUR TEILNAHME AN EINER GEMEINSCHAFTSKLAGE, EINEM SAMMELSCHIEDSVERFAHREN ODER EINEM ANDEREN STELLVERTRETERVERFAHREN VERZICHTEN.",
+ "germanFontType":3,
+ "spanishText":"15. RENUNCIA A ACCIONES COLECTIVAS. \n\nEL PRESENTE ARTÍCULO 26 SE LE APLICARÁ SOLAMENTE SI RESIDE USTED EN LOS ESTADOS UNIDOS O CANADÁ, EXCLUIDAS LAS PROVINCIAS DE QUEBEC Y ONTARIO.\n\nTANTO SI EL LITIGIO SE SOMETE A ARBITRAJE COMO A LOS TRIBUNALES, AL SUSCRIBIR EL PRESENTE CONTRATO, USTED Y BNEI RENUNCIAN A SU DERECHO A PARTICIPAR EN ACCIONES COLECTIVAS, PROCEDIMIENTOS DE ARBITRAJE COLECTIVOS U OTRAS ACCIONES O PROCEDIMIENTOS CONJUNTOS.",
+ "spanishFontType":3,
+ "chineseTText":"15.放棄集體訴訟。 \n\n本第15條僅在您居於美國或加拿大(不包括魁北克省和安大略省)的情況下,方對您適用。 \n\n不論爭議通過仲裁或在法院進行聆訊,您同意,一經簽訂本協議,您和BNEI均放棄參與集體訴訟、集體訴訟仲裁或其他代表人訴訟或法律程序的權利。",
+ "chineseTFontType":1,
+ "koreanText":"15. 단체소송 배제\n\n제15조는 귀하가 미국 또는 퀘벡과 온타리오 주를 제외한 캐나다에 거주하고 있을 경우에만 귀하에게 적용됩니다.\n\n분쟁이 중재 또는 법원에서 해결되는지 여부를 불문하고, 귀하는 본 계약을 체결함으로써 귀하와 BNEI가 각각 단체소송, 단체중재 또는 기타 대표소송 및 절차에 참여할 수 있는 권리를 포기한다는 점에 동의합니다.",
+ "koreanFontType":2,
+ "portugueseText":"15. RENÚNCIA À AÇÃO DE CLASSE. \n\nESTA SEÇÃO 15 APLICA-SE A VOCÊ SOMENTE SE RESIDIR NOS ESTADOS UNIDOS OU NO CANADÁ, EXCETO NAS PROVÍNCIAS DO QUEBEC E ONTÁRIO.\n\nSEJA O PLEITO OUVIDO NA ARBITRAGEM OU EM TRIBUNAL, VOCÊ CONCORDA QUE, AO ASSINAR ESTE CONTRATO, VOCÊ E A BNEI RENUNCIAM AO DIREITO DE PARTICIPAR DE UMA AÇÃO DE CLASSE, ARBITRAGEM DE AÇÃO DE CLASSE OU OUTRA AÇÃO DE SUBSTITUIÇÃO DERIVADA OU PROCEDIMENTOS.",
+ "portugueseFontType":2,
+ "russianText":"15. ОТКАЗ ОТ ГРУППОВЫХ ИСКОВ. \n\nНАСТОЯЩИЙ РАЗДЕЛ 15 ПРИМЕНИМ ТОЛЬКО В ТОМ СЛУЧАЕ, ЕСЛИ ВЫ ПРОЖИВАЕТЕ В СОЕДИНЕННЫХ ШТАТАХ ИЛИ КАНАДЕ, ЗА ИСКЛЮЧЕНИЕМ ПРОВИНЦИЙ КВЕБЕК И ОНТАРИО.\n\nПРИ СЛУШАНИИ СПОРА В АРБИТРАЖНОМ ИЛИ ОБЫЧНОМ СУДЕ ВЫ СОГЛАШАЕТЕСЬ, ЧТО, ЗАКЛЮЧИВ НАСТОЯЩЕЕ СОГЛАШЕНИЕ, ВЫ И BNEI ОТКАЗЫВАЕТЕСЬ ОТ ПРАВА УЧАСТВОВАТЬ В ГРУППОВЫХ ИСКАХ, АРБИТРАЖАХ ПО ТАКИМ ИСКАМ, А ТАКЖЕ ОТ ДРУГИХ ПРЕДСТАВИТЕЛЬСКИХ ИСКОВ И РАЗБИРАТЕЛЬСТВ.",
+ "russianFontType":2,
+ "turkishText":"15. TOPLU DAVA REDDİ. \n\nBU BÖLÜM 15 QUEBEC VE ONTARIO HARİÇ OLMAK ÜZERE SADECE BİRLEŞİK DEVLETLER VEYA KANADA'DA YAŞAMANIZ HALİNDE GEÇERLİDİR.\n\nANLAŞMAZLIĞIN TAHKİMLE VEYA MAHKEMEDE DİNLENMESİNDE BAKILMAKSIZIN, BU SÖZLEŞMEYİ İMZALAYARAK SİZ VE BNEI'NİN BİR TOPLU DAVADA, TOPLU DAVA TAHKİMİNDE VEYA BAŞKA BİR TEMSİLİ DAVADA YA DA KOVUŞTURMADA BULUNMA HAKKINDAN FERAGAT ETTİĞİNİ KABUL ETMEKTESİNİZ.",
+ "turkishFontType":2,
+ "arabicText":"15. التنازل عن الدعوى الجماعية. \n\nيسري القسم 15 هذا عليك فقط إذا كنت تقيم في الولايات المتحدة أو كندا، باستثناء مقاطعتيْ كيبك وأونتاريو.\n\nسواء كان يُنظَر في النزاع في التحكيم أو داخل المحكمة، فأنت توافق، بإبرامك لهذه الاتفاقية، على تنازلك أنت وشركة BNEI عن حقكما في المشاركة في الدعوى الجماعية أو التحكيم في الدعوى الجماعية أو غير ذلك من الدعاوى أو الإجراءات التمثيلية. ",
+ "arabicFontType":2,
+ "dutchText":"15. VERKLARING VAN AFSTAND VAN GROEPSVORDERING. \n\nDEZE CLAUSULE 15 IS ALLEEN OP U VAN TOEPASSING INDIEN U WOONACHTIG BENT IN DE VERENIGDE STATEN OF CANADA, MET UITZONDERING VAN DE PROVINCIES QUEBEC EN ONTARIO.\n\nU STEMT ERMEE IN DAT U EN BNEI DOOR DEZE OVEREENKOMST AAN TE GAAN AFZIEN VAN ELK RECHT OM AAN EEN GROEPSVORDERING, GROEPSARBITRAGE OF ANDERE VERTEGENWOORDIGENDE ACTIE OF PROCEDURE DEEL TE NEMEN, ONGEACHT OF HET GESCHIL IN ARBITRAGE OF IN DE RECHTBANK WORDT BEHANDELD.",
+ "dutchFontType":2,
+ "chineseSText":"15. 放弃集体诉讼。 \n\n本第15条仅在您居于美国或加拿大(不包括魁北克省和安大略省)的情况下,方对您适用。 \n\n不论争议通过仲裁或在法院进行聆讯,您同意,一经签订本协议,您和BNEI均放弃参与集体诉讼、集体诉讼仲裁或其他代表人诉讼或法律程序的权利。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_23",
+ "japaneseText":"\n16. 準拠法\n\nお客様が米国またはカナダの居住者である場合には、以下が適用されます。\n\n本契約に起因または関連する両当事者間のいかなる紛争も、仲裁の対象となるか否かにかかわらず、本契約、カリフォルニア州法および適用のある米国連邦法に準拠するものとします。ただし、別法域の法律の適用を生じさせることのある抵触法原則は、効力を有しないものとします。\n\n\n\nお客様が欧州連合の加盟国の居住者である場合には、以下が適用されます。\n\n本契約に起因または関連する両当事者間のいかなる紛争も、本契約およびお客様の居住国の法律に準拠するものとします。ただし、別法域の法律の適用を生じさせることのある抵触法原則は、効力を有しないものとします。\n\n\n\nお客様が上記以外の地域の居住者である場合には、以下が適用されます。\n\n本契約に起因または関連する両当事者間のいかなる紛争も、日本法に準拠するものとします。ただし、別法域の法律の適用を生じさせることのある抵触法原則は、効力を有しないものとします。",
+ "englishUsText":"16. GOVERNING LAW. \nIf you reside in the United States or Canada:\nAny dispute between the parties arising from or relating to this Agreement, whether or not subject to arbitration, will be governed by this Agreement and the laws of the State of California and applicable United States law, without giving effect to any conflict of laws principles that may provide for the application of the law of another jurisdiction.\n\nIf you reside in a Member State of the European Union:\nAny dispute between the parties arising from or relating to this Agreement will be governed by this Agreement and the laws of the State of your residence, without giving effect to any conflict of laws principles that may provide for the application of the law of another jurisdiction.\n\nIf you reside in any other location: \nAny dispute between the parties arising from or relating to this Agreement will be governed by this Agreement and the laws of Japan, without giving effect to any conflict of laws principles that may provide for the application of the law of another jurisdiction.",
+ "englishUsFontType":3,
+ "frenchText":"16. DROIT APPLICABLE. \nSi vous résidez aux États-Unis ou au Canada :\nTout différend entre les parties découlant du ou se rapportant au présent Contrat, qu'il soit ou non soumis à arbitrage, sera régi par le présent Contrat et les lois de l'État de Californie et le droit applicable des États-Unis, en ne donnant effet à aucun principe de conflit de lois susceptible de prévoir l'application de la loi d'une autre juridiction.\n\nSi vous résidez dans un État Membre de l'Union Européenne :\nTout différend entre les parties découlant du ou se rapportant au présent Contrat sera régi par le présent Contrat et les lois de votre État de résidence, en ne donnant effet à aucun principe de conflit de lois susceptible de prévoir l'application de la loi d'une autre juridiction.\n\nSi vous résidez dans tout autre pays : \nTout différend entre les parties découlant du ou se rapportant au présent Contrat sera régi par le présent Contrat et les lois du Japon, en ne donnant effet à aucun principe de conflit de lois susceptible de prévoir l'application de la loi d'une autre juridiction.",
+ "frenchFontType":3,
+ "italianText":"16. LEGISLAZIONE VIGENTE. \nQualora l'Utente risieda negli Stati Uniti o in Canada:\nQualsiasi controversia tra le parti derivante da o relativa al presente Accordo, che sia soggetta o meno ad arbitrato, sarà disciplinata dal presente Accordo e dalle leggi dello Stato della California e dalla vigente legge statunitense, senza dar luogo ad alcun conflitto dei principi di legge che potrebbero prevedere l'applicazione della legge di un'altra giurisdizione.\n\nSe l'Utente risiede in uno Stato membro dell'Unione Europea:\nQualsiasi controversia tra le parti derivante da o relativa al presente Accordo sarà disciplinata dal presente Accordo e dalle leggi vigenti nel proprio Stato di residenza, senza dar luogo ad alcun conflitto dei principi di legge che potrebbero prevedere l'applicazione della legge di un'altra giurisdizione.\n\nSe l'Utente risiede in qualsiasi altro stato: \nQualsiasi controversia tra le parti derivante da o relativa al presente Accordo sarà regolata dal presente Accordo e dalle leggi del Giappone, senza dar luogo ad alcun conflitto dei principi di legge che potrebbero prevedere l'applicazione della legge di un'altra giurisdizione.",
+ "italianFontType":3,
+ "germanText":"16. GELTENDES RECHT. \nFalls Sie in den Vereinigten Staaten von Amerika oder Kanada ansässig sind:\nStreitigkeiten zwischen den Parteien, die sich aus oder im Zusammenhang mit diesem Vertrag ergeben, unterliegen unabhängig davon, ob sie in einem Schiedsgerichtsverfahren entschieden werden, diesem Vertrag sowie dem Recht des Staates Kalifornien und anwendbarem US-amerikanischen Recht ohne Berücksichtigung kollisionsrechtlicher Bestimmungen, die u.U. die Anwendung des Rechts eines anderen Landes vorsehen.\n\nFalls Sie in einem Mitgliedstaat der Europäischen Union ansässig sind: \nStreitigkeiten zwischen den Parteien, die sich aus oder im Zusammenhang mit diesem Vertrag ergeben, unterliegen diesem Vertrag und dem Recht des Staates, in dem Sie ansässig sind, ohne Berücksichtigung kollisionsrechtlicher Bestimmungen, die u.U. die Anwendung des Rechts eines anderen Landes vorsehen.\n\nFalls Sie in einem anderen Land ansässig sind: \nStreitigkeiten zwischen den Parteien, die sich aus oder im Zusammenhang mit diesem Vertrag ergeben, unterliegen diesem Vertrag und dem Recht Japans ohne Berücksichtigung kollisionsrechtlicher Bestimmungen, die u.U. die Anwendung des Rechts eines anderen Landes vorsehen.",
+ "germanFontType":3,
+ "spanishText":"16. LEGISLACIÓN APLICABLE. \nSi reside usted en los Estados Unidos o Canadá:\nCualquier litigio entre las partes derivado de, o vinculado con, el presente Contrato, tanto si se somete como si no a arbitraje, se regirá por este instrumento y las leyes del estado de California y las leyes aplicables de los Estados Unidos, sin que sea efectivo ningún principio legal en materia de conflicto de legislaciones que pueda dar lugar a la aplicación de la legislación de otra jurisdicción.\n\nSi reside usted en un Estado miembro de la Unión Europea:\nCualquier litigio entre las partes derivado de, o vinculado con, el presente Contrato se regirá por este instrumento y las leyes del estado en el que resida usted, sin que sea efectivo ningún principio legal en materia de conflicto de legislaciones que pueda dar lugar a la aplicación de la legislación de otra jurisdicción.\n\nSi reside usted en cualquier otro lugar: \nCualquier litigio entre las partes derivado de, o vinculado con, el presente Contrato se regirá por este instrumento y las leyes de Japón, sin que sea efectivo ningún principio legal en materia de conflicto de legislaciones que pueda dar lugar a la aplicación de la legislación de otra jurisdicción.",
+ "spanishFontType":3,
+ "chineseTText":"16.管轄法律。\n若您居於美國或加拿大:\n雙方之間任何因本協議引起或與之相關的爭議,不論是否須接受仲裁,均受本協議和加利福尼亞州的法律及適用的美國法律管轄,而且不執行任何可能規定要引用另一司法管轄區法律的衝突法原則。\n\n若您居於歐盟任何成員國:\n雙方之間任何因本協議引起或與之相關的爭議,均受本協議及您所居住的國家的法律管轄,而且不執行任何可能規定要引用另一司法管轄區法律的衝突法原則。\n\n若您居於任何其他地點:\n雙方之間任何因本協議引起或與之相關的爭議,均受本協議和日本法律管轄,而且不執行任何可能規定要引用另一司法管轄區法律的衝突法原則。",
+ "chineseTFontType":1,
+ "koreanText":"16. 준거법\n만약 귀하가 미국 또는 캐나다에 살고 있다면:\n본 계약으로부터 유래한 또는 그와 관련된 당사자들 사이의 분쟁 일체는, 중재의 대상이 되는지 여부를 불문하고, 본 계약과 캘리포니아 주 법, 그리고 적용가능한 미국 법률의 적용을 받습니다. 이 때 다른 관할권의 법률의 적용을 초래할 수 있는 국제사법의 적용은 부정됩니다.\n\n만약 귀하가 EU 회원국에 살고 있다면:\n본 계약으로부터 유래한 또는 그와 관련된 당사자들 사이의 분쟁 일체는 본 계약과 귀하의 거주 국가 법률의 적용을 받을 것입니다. 이 때 다른 관할권의 법률의 적용을 초래할 수 있는 국제사법의 적용은 부정됩니다.\n\n만약 귀하가 그 외 다른 지역에 거주하고 있다면:\n본 계약으로부터 유래한 또는 그와 관련된 당사자들 사이의 분쟁 일체는, 본 계약과 일본 법률의 적용을 받을 것입니다. 이 때 다른 관할권의 법률의 적용을 초래할 수 있는 국제사법의 적용은 부정됩니다.",
+ "koreanFontType":2,
+ "portugueseText":"16. LEI REGENTE. \nSe você reside nos Estados Unidos ou no Canadá:\nQualquer pleito entre as partes advindo de ou relativo a este Contrato, seja ou não sujeito à arbitragem, será regido por este Contrato e pelas leis do Estado da Califórnia e pela lei aplicável dos Estados Unidos, sem dar efeito a nenhum conflito de princípios de leis que possam prover pela aplicação da lei de outra jurisdição.\n\nSe você reside em um Estado Membro da União Europeia:\nQualquer pleito entre as partes advindo de ou relativo a este Contrato será regido por este Contrato e pelas leis do Estado onde você reside, sem dar efeito a nenhum conflito de princípios de leis que possam prover pela aplicação da lei de outra jurisdição.\n\nSe você reside em qualquer outra localidade: \nQualquer pleito entre as partes advindo de ou relativo a este Contrato será regido por este Contrato e pelas leis do Japão, sem dar efeito a nenhum conflito de princípios de leis que possam prover pela aplicação da lei de outra jurisdição.",
+ "portugueseFontType":2,
+ "russianText":"16. ПРИМЕНИМОЕ ЗАКОНОДАТЕЛЬСТВО. \nЕсли вы проживаете в Соединенных Штатах или Канаде:\nЛюбой спор между сторонами, проистекающий из настоящего Соглашения или связанный с ним, независимо от того, подлежит ли он арбитражному разбирательству или нет, урегулируется согласно положениям настоящего Соглашения, законам штата Калифорния и применимому законодательству США без учета каких-либо принципов коллизионного права, предусматривающего применение законодательства другой юрисдикции.\n\nЕсли вы проживаете в государстве-члене Европейского Союза:\nЛюбой спор между сторонами, проистекающий из настоящего Соглашения или связанный с ним, подлежит урегулированию согласно положениям настоящего Соглашения и законодательству страны вашего проживания без учета каких-либо принципов коллизионного права, предусматривающего применение законодательства другой юрисдикции.\n\nЕсли вы проживаете в каком-либо другом регионе: \nЛюбой спор между сторонами, проистекающий из настоящего Соглашения или связанный с ним, подлежит урегулированию согласно положениям настоящего Соглашения и законодательству Японии без учета каких-либо принципов коллизионного права, предусматривающего применение законодательства другой юрисдикции.",
+ "russianFontType":2,
+ "turkishText":"16. GEÇERLİ KANUN. \nBirleşik Devletler veya Kanada'da yaşıyorsanız:\nTahkime tabi olsun ya da olmasın, taraflar arasında bu Anlaşmadan kaynaklanan anlaşmazlıklar, başka bir yargı bölgesinin yasalarının uygulanmasını sağlayabilecek yasa çatışması ilkelerini yürürlüğe koymaksızın, bu Sözleşme ve California eyaleti yasaları ve geçerli Birleşik Devletler yasasına tabi olacaktır.\n\nAvrupa Birliği Üye Ülkelerinden birinde yaşıyorsanız:\nTahkime tabi olsun ya da olmasın, taraflar arasında bu Sözleşmeden kaynaklanan anlaşmazlıklar, başka bir yargı bölgesinin yasalarının uygulanmasını sağlayabilecek yasa çatışması ilkelerini yürürlüğe koymaksızın bu Sözleşme ve yaşadığınız Ülkenin yasalarına tabi olacaktır.\n\nBaşka bir yerde yaşıyorsanız: \nTahkime tabi olsun ya da olmasın, taraflar arasında bu Sözleşmeden kaynaklanan anlaşmazlıklar, başka bir yargı bölgesinin yasalarının uygulanmasını sağlayabilecek yasa çatışması ilkelerini yürürlüğe koymaksızın bu Sözleşme ve Japonya yasalarına tabi olacaktır.",
+ "turkishFontType":2,
+ "arabicText":"16. القانون واجب التطبيق. \nإذا كنت تقيم في الولايات المتحدة أو كندا:\nفتسري هذه الاتفاقية وقوانين ولاية كاليفورنيا والقوانين السارية بالولايات المتحدة على أي نزاع بين الطرفين ينشأ عن هذه الاتفاقية أو يتصل بها، دون تطبيق أيّ مبدأ من مبادئ تنازع القوانين التي قد تنص على تطبيق قانون ولاية قضائية مختصة أخرى.\n\nإذا كنت تقيم في إحدى الدول الأعضاء في الاتحاد الأوروبي:\nفتسري هذه الاتفاقية وقوانين ولاية إقامتك على أي نزاع بين الطرفين ينشأ عن هذه الاتفاقية أو يتعلق بها، دون تطبيق أيّ مبدأ من مبادئ تنازع القوانين التي قد تنص على تطبيق قانون ولاية قضائية مختصة أخرى.\n\nإذا كنت مقيمًا في أي مكانٍ آخر: \nفتسري هذه الاتفاقية وقوانين دولة اليابان على أي نزاع بين الطرفين ينشأ عن هذه الاتفاقية أو يتعلق بها، دون تطبيق مبادئ تنازع القوانين التي قد تنص على تطبيق قانون دولة أخرى.",
+ "arabicFontType":2,
+ "dutchText":"16. TOEPASSELIJK RECHT. \nIndien u woonachtig bent in de Verenigde Staten of Canada:\nElk Geschil tussen de partijen, al dan niet onderworpen aan arbitrage, dat voortvloeit uit of verband houdt met deze Overeenkomst zal onderhevig zijn aan deze Overeenkomst en de wetten van de staat Californië en de toepasselijke Amerikaanse wetgeving, zonder conflicten op te leveren met wettelijke principes die kunnen voorzien in de toepassing van de wetgeving van een ander rechtsgebied.\n\nIndien u woonachtig bent in een lidstaat van de Europese Unie:\nElk Geschil tussen de partijen dat voortvloeit uit of verband houdt met deze Overeenkomst zal onderhevig zijn aan deze Overeenkomst en de wetten van het land waarin u woonachtig bent, zonder conflicten op te leveren met wettelijke principes die kunnen voorzien in de toepassing van de wetgeving van een ander rechtsgebied.\n\nIndien u ergens anders woonachtig bent: \nElk Geschil tussen de partijen dat voortvloeit uit of verband houdt met deze Overeenkomst zal onderhevig zijn aan deze Overeenkomst en de wetten van Japan, zonder conflicten op te leveren met wettelijke principes die kunnen voorzien in de toepassing van de wetgeving van een ander rechtsgebied.",
+ "dutchFontType":2,
+ "chineseSText":"16. 管辖法律。\n若您居于美国或加拿大:\n双方之间任何因本协议引起或与之相关的争议,不论是否须接受仲裁,均受本协议和加利福尼亚州的法律及适用的美国法律管辖,而且不执行任何可能规定要引用另一司法管辖区法律的冲突法原则。\n\n若您居于欧盟任何成员国:\n双方之间任何因本协议引起或与之相关的争议,均受本协议及您所居住的国家的法律管辖,而且不执行任何可能规定要引用另一司法管辖区法律的冲突法原则。\n\n若您居于任何其他地点:\n双方之间任何因本协议引起或与之相关的争议,均受本协议和日本法律管辖,而且不执行任何可能规定要引用另一司法管辖区法律的冲突法原则。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_24",
+ "japaneseText":"\n17. 裁判地\n\nお客様が米国またはカナダの居住者である場合には、以下が適用されます。\n\n本契約に起因または関連する両当事者間の紛争のうち、仲裁の対象とならないかまたは仲裁が選択されなかったもののいずれも、カリフォルニア州サンフランシスコ郡の州裁判所および連邦裁判所の裁定によるものとし、お客様およびBNEIは、当該裁判所の人的管轄権に服する旨について、合意しているものとします。\n\n\n\nお客様が欧州連合の加盟国の居住者である場合には、以下が適用されます。\n\n本契約に起因または関連する両当事者間のいかなる紛争も、お客様の居住国の裁判所の裁定によるものとします。\n\n\n\nお客様が上記以外の地域の居住者である場合には、以下が適用されます。\n\n本契約に起因または関連する当事者間のいかなる紛争も、東京地方裁判所の裁定によるものとし、お客様およびBNEIは、当該裁判所の人的管轄権に服することについて、合意しているものとします。",
+ "englishUsText":"17. VENUE. \nIf you reside in the United States or Canada:\nAny dispute between the parties arising from or relating to this Agreement not subject to arbitration, or where no election to arbitrate has been made, shall be decided by the state and federal courts in San Francisco County, California, and you and BNEI agree to submit to the personal jurisdiction of that court.\n\nIf you reside in a Member State of the European Union:\nAny dispute between the parties arising from or relating to this Agreement shall be decided by the courts in your State of residence.\n\nIf you reside in any other location: \nAny dispute between the parties arising from or relating to this Agreement shall be decided by the Tokyo District Court, and you and BNEI agree to submit to the personal jurisdiction of that court.",
+ "englishUsFontType":3,
+ "frenchText":"17. LIEU. \nSi vous résidez aux États-Unis ou au Canada :\nTout différend entre les parties découlant du ou se rapportant au présent Contrat, non soumis à arbitrage, ou lorsqu'un arbitrage n'a pas été choisi, sera statué par les tribunaux d'État et fédéraux du Comté de San Francisco, Californie, et vous et BNEI convenez de vous soumettre à la compétence individuelle desdits tribunaux.\n\nSi vous résidez dans un État Membre de l'Union Européenne :\nTout différend entre les parties découlant du ou se rapportant au présent Contrat sera statué par les tribunaux de votre État de résidence.\n\nSi vous résidez dans tout autre pays : \na)Tout différend entre les parties découlant du ou se rapportant au présent Contrat sera statué par le Tribunal de Première Instance de Tokyo, et vous et BNEI convenez de vous soumettre à la compétence individuelle dudit tribunal.",
+ "frenchFontType":3,
+ "italianText":"17. FORO COMPETENTE. \nQualora l'Utente risieda negli Stati Uniti o in Canada:\nQualsiasi controversia tra le parti derivante da o relativa al presente Accordo non soggetta ad arbitrato, o per la quale si sia scelto di non procedere per via arbitrale, sarà decisa dalle corti statali e federali a San Francisco County, in California, e l'Utente e BNEI convengono di rimettersi alla giurisdizione personale di tale tribunale.\n\nSe l'Utente risiede in uno Stato membro dell'Unione Europea:\nQualsiasi controversia tra le parti derivante da o relativa al presente Accordo sarà decisa dai tribunali nel proprio Stato di residenza.\n\nSe l'Utente risiede in qualsiasi altro stato: \nQualsiasi controversia tra le parti derivante da o relativa al presente Accordo sarà decisa dal Tribunale distrettuale di Tokyo, e l'Utente e BNEI convengono di rimettersi alla giurisdizione personale di tale tribunale.",
+ "italianFontType":3,
+ "germanText":"17. GERICHTSSTAND. \nFalls Sie in den Vereinigten Staaten von Amerika oder Kanada ansässig sind:\nStreitigkeiten zwischen den Parteien, die sich aus oder im Zusammenhang mit diesem Vertrag ergeben und die nicht in einem Schiedsgerichtsverfahren entschieden werden oder bei denen keine Wahl eines Schiedsverfahrens stattgefunden hat, werden von den einzel- und bundesstaatlichen Gerichten in San Francisco County, Kalifornien entschieden; und Sie und BNEI verpflichten sich, sich der Zuständigkeit dieser Gerichte zu unterwerfen. \n\nFalls Sie in einem Mitgliedstaat der Europäischen Union ansässig sind: \nStreitigkeiten zwischen den Parteien, die sich aus oder im Zusammenhang mit diesem Vertrag ergeben, werden von den Gerichten in Ihrem Wohnsitzland entschieden.\n\nFalls Sie in einem anderen Land ansässig sind: \nStreitigkeiten zwischen den Parteien, die sich aus oder im Zusammenhang mit diesem Vertrag ergeben, werden vom Tokyo District Court entschieden; und Sie und BNEI verpflichten sich, sich der Zuständigkeit dieses Gerichts zu unterwerfen.",
+ "germanFontType":3,
+ "spanishText":"17. JURISDICCIÓN. \nSi reside usted en los Estados Unidos o Canadá:\nCualquier litigio entre las partes derivado de, o vinculado con, el presente Contrato, tanto si se somete como si no a arbitraje, o si no se ha optado por el arbitraje, será resuelto por los tribunales estatales y federales del condado de San Francisco, California, y usted y BNEI aceptan someterse a la jurisdicción personal de dichos tribunales.\n\nSi reside usted en un Estado miembro de la Unión Europea:\nCualquier litigio entre las partes derivado de, o vinculado con, el presente Contrato será resuelto por los tribunales del estado en el que resida usted.\n\nSi reside usted en cualquier otro lugar: \nCualquier litigio entre las partes derivado de, o vinculado con, el presente Contrato será resuelto por el Tribunal de Distrito de Tokio y usted y BNEI aceptan someterse a la jurisdicción personal de dicho tribunal.",
+ "spanishFontType":3,
+ "chineseTText":"17.仲裁地點。 \n若您居於美國或加拿大:\n雙方之間任何因本協議引起或與之相關的爭議如不受仲裁管轄,或雙方並無選擇進行仲裁的,該爭議應由加利福尼亞州三藩市縣的州法院或聯邦法院裁決,而您和BNEI同意服從該法院的個人司法管轄權。\n\n若您居於歐盟任何成員國:\n雙方之間任何因本協議引起或與之相關的爭議,應由您所居住的國家的法院裁決。\n\n若您居於任何其他地點: \nl) 雙方之間任何因本協議引起或與之相關的爭議,應由東京地區法院裁決,而您和BNEI同意服從該法院的個人司法管轄權。",
+ "chineseTFontType":1,
+ "koreanText":"17. 법정지\n만약 귀하가 미국 또는 캐나다에 살고 있다면:\n본 계약에서 비롯된 또는 본 계약과 관련되어 발생한 당사자들 사이의 분쟁 중 중재의 대상이 아닌 것 또는 중재를 하기로 하는 선택이 있지 않은 경우 당해 분쟁은 California 주 San Francisco County에 있는 주 법원 및 연방 법원에서 결정되어야 하며, 귀하와 BNEI는 그 법원의 속인적 관할권에 복종할 것을 동의합니다.\n\n만약 귀하가 EU 회원국에 살고 있다면:\n본 계약에서 비롯된 또는 본 계약과 관련되어 발생한 당사자들 사이의 분쟁은 귀하의 거주국 내 법원에 의하여 결정되어야 합니다.\n\n만약 귀하가 그 외 다른 지역에 거주하고 있다면:\n본 계약에서 비롯된 또는 본 계약과 관련되어 발생한 당사자들 사이의 분쟁은 도쿄 지방 법원에서 결정되어야 하며, 귀하와 BNEI는 그 법원의 속인적 관할권에 복종할 것을 동의합니다.",
+ "koreanFontType":2,
+ "portugueseText":"17. FORO. \nSe você reside nos Estados Unidos ou no Canadá:\nQualquer pleito entre as partes advindo de ou em relação a este Contrato não sujeito à arbitragem, ou onde nenhuma escolha para arbitrar tenha sido feita, será decidido pelas cortes estaduais e federais na Comarca da cidade de San Francisco, na Califórnia, e você e a BNEI concordam em se submeter à jurisdição pessoal do tribunal.\n\nSe você reside em um Estado Membro da União Europeia:\nQualquer pleito entre as partes advindo de ou em relação a este Contrato será decidido pelas cortes no Estado onde você mora.\n\nSe você reside em qualquer outra localidade: \nQualquer pleito entre as partes advindo de ou em relação a este Contrato será decidido pelo Tribunal do Distrito de Tóquio, e você e a BNEI concordam em se submeter à jurisdição pessoal do tribunal.",
+ "portugueseFontType":2,
+ "russianText":"17. МЕСТО РАССМОТРЕНИЯ СПОРОВ. \nЕсли вы проживаете в Соединенных Штатах или Канаде:\nЛюбой спор между сторонами, проистекающий из настоящего Соглашения или связанный с ним и не подлежащий арбитражу, а также в случае если арбитражный орган не выбран, урегулируется федеральными судами округа Сан-Франциско, Калифорния, и вы и BNEI соглашаетесь подчиниться юрисдикции такого суда.\n\nЕсли вы проживаете в государстве-члене Европейского Союза:\nЛюбой спор между сторонами, проистекающий из настоящего Соглашения или связанный с ним, разрешается судебным органом в стране вашего проживания.\n\nЕсли вы проживаете в каком-либо другом регионе: \nЛюбой спор между сторонами, проистекающий из настоящего Соглашения или связанный с ним, решается Окружным судом Токио, и вы и BNEI соглашаетесь подчиниться юрисдикции этого суда.",
+ "russianFontType":2,
+ "turkishText":"17. YER. \nBirleşik Devletler veya Kanada'da yaşıyorsanız:\nTaraflar arasında bu Sözleşmeden kaynaklanan ve tahkime tabi olmayan ya da tahkim için seçimin yapılmadığı anlaşmazlıklara, San Francisco İlçesi, California'da bulunan eyalet ve federal mahkemeleri karar verecek olup siz ve BNEI, o mahkemenin kişisel yargı yetkisine uyacağınızı kabul etmektesiniz.\n\nAvrupa Birliği Üye Ülkelerinden birinde yaşıyorsanız:\nTaraflar arasında bu Sözleşmeden kaynaklanan anlaşmazlıklara, yaşadığınız Ülkenin mahkemeleri karar verecektir.\n\nBaşka bir yerde yaşıyorsanız: \nTaraflar arasında bu Sözleşmeden kaynaklanan anlaşmazlıklara, Tokyo İli Mahkemesi karar verecek olup siz ve BNEI, o mahkemenin kişisel yargı yetkisine uyacağınızı kabul etmektesiniz.",
+ "turkishFontType":2,
+ "arabicText":"17. المكان. \nإذا كنت تقيم في الولايات المتحدة أو كندا:\nتفصل محاكم الولاية والمحاكم الفيدرالية بمقاطعة سان فرانسيسكو بولاية كاليفورنيا في أي نزاع بين الطرفين ينشأ عن هذه الاتفاقية أو يتعلق بها، أو في حالة عدم اختيار التحكيم، وكذلك توافق أنت وشركة BNEI على الخضوع للاختصاص القضائي الشخصي لتلك المحكمة.\n\nإذا كنت تقيم في إحدى الدول الأعضاء في الاتحاد الأوروبي:\nتفصل المحاكم الموجودة في ولاية إقامتك في أيّ نزاع بين الطرفين ينشأ عن هذه الاتفاقية أو يتعلق بها.\n\nإذا كنت مقيمًا في أي مكانٍ آخر: \nتفصل محكمة طوكيو المحلية في أي نزاع بين الطرفين ينشأ عن هذه الاتفاقية أو يتعلق بها، وهكذا توافق أنت وشركة BNEI على الخضوع للاختصاص القضائي الشخصي لتلك المحكمة.",
+ "arabicFontType":2,
+ "dutchText":"17. LOCATIE. \nIndien u woonachtig bent in de Verenigde Staten of Canada:\nElk Geschil tussen de partijen, dat voortvloeit uit of verband houdt met deze Overeenkomst en niet onderworpen is aan arbitrage of waar niet voor arbitrage gekozen is, zal worden beslist door de staats- en federale rechtbank in San Francisco County, Californië in de Verenigde Staten en u en BNEI stemmen ermee in zich te onderwerpen aan de persoonlijke jurisdictie van die rechtbank.\n\nIndien u woonachtig bent in een lidstaat van de Europese Unie:\nElk Geschil tussen de partijen, dat voortvloeit uit of verband houdt met deze Overeenkomst zal worden beslist door de rechtbank van het land waarin u woonachtig bent.\n\nIndien u ergens anders woonachtig bent: \nElk Geschil tussen de partijen, dat voortvloeit uit of verband houdt met deze Overeenkomst zal worden beslist door de rechtbank van het district Tokio en u en BNEI stemmen ermee in zich te onderwerpen aan de persoonlijke jurisdictie van die rechtbank.",
+ "dutchFontType":2,
+ "chineseSText":"17. 仲裁地点。 \n若您居于美国或加拿大:\n双方之间任何因本协议引起或与之相关的争议如不受仲裁管辖,或双方并无选择进行仲裁的,该争议应由加利福尼亚州三藩市县的州法院或联邦法院裁决,而您和BNEI同意服从该法院的个人司法管辖权。\n\n若您居于欧盟任何成员国:\n双方之间任何因本协议引起或与之相关的争议,应由您所居住的国家的法院裁决。\n\n若您居于任何其他地点: \n双方之间任何因本协议引起或与之相关的争议,应由东京地区法院裁决,而您和BNEI同意服从该法院的个人司法管辖权。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_25",
+ "japaneseText":"\n18. 第三受益者\n\n本規約の当事者以外のいかなる第三者も、いかなる法律においてであれ、本規約のいかなる規定も行使する権利を有しません。これは、かかる第三者の名指しがある場合においても、同様とします。本条のいずれの規定も、本規約についての許可された譲受人または被移転者のいずれの権利にも影響を及ぼすものではありません。お客様は、Apple Inc.(以下「Apple」といいます)およびその子会社が本契約の第三受益者となる旨について了承し同意するとともに、次についても了承し同意します。(a)本契約の条件へのお客様による同意により、Appleがお客様に対し第三者として本契約を行使する権利を有する(かつ当該権利を受け入れたとみなされる)こととなる旨、(b)本契約は、お客様とBNEIのみとの間で実施されるものであり、Appleとの間で実施されるものではない旨、(c)本件ソフトウェアおよびそのコンテンツについてBNEIが単独で責任を負い、Appleは責任を負わない旨、(d)Appleが本件ソフトウェアについていかなるメンテナンスおよびサポートサービスの提供義務も負わない旨、(e)適用法上許容される最大限の範囲で、Appleは、本件ソフトウェアについていかなる保証義務も負わず、該当の保証内容への本件ソフトウェアの不適合に帰すべき一切の請求、損失、責任、損害、費用および経費についてBNEIが責任を負い、Appleは責任を負わない旨、(f)本件ソフトウェアそれ自体または本件ソフトウェアのお客様による所持および利用により第三者の知的財産権の侵害が生じていることを内容とする請求が当該第三者からなされた場合、かかる知的財産侵害請求のいずれについての調査、防御活動、和解および債務履行に対してもAppleが責任を負わない旨、および (g)本件ソフトウェアそれ自体ならびに/または本件ソフトウェアのお客様による所持および/もしくは利用に関係するお客様による請求または第三者による請求(次に掲げるものも含みますが、これらに限定されません)のいずれについても、対処の責任をAppleが負わない旨。(i)製造物責任に基づく請求、(ii)該当の法律上または規制上の要件への本件ソフトウェアの不適合を内容とする請求、および (iii)消費者保護またはこれに類する法制に起因する請求。",
+ "englishUsText":"18. THIRD-PARTY BENEFICIARIES. Any person or entity who is not a party to this Agreement shall have no rights under any law to enforce any terms of this Agreement, regardless of whether such person or entity has been identified by name. Nothing in this section shall affect the rights of any permitted assignee or transferee of this Agreement. You acknowledge and agree that Apple Inc. (\"Apple\") and its subsidiaries are third-party beneficiaries of this Agreement and further that (a) upon your acceptance of the terms and conditions of this Agreement, Apple will have the right (and will be deemed to have accepted the right) to enforce this Agreement against you as a third-party; (b) this Agreement is conducted between you and BNEI only, and not Apple; (c) BNEI , and not Apple, is solely responsible for the Software and the content thereof; (d) Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the Software; (e) to the maximum extent permitted by applicable law, Apple will have no warranty obligation with respect to the Software; and BNEI , and not Apple, will be responsible for any claims, losses, liabilities, damages, costs or expenses attributable to any failure of the Software to conform to any applicable warranty; (f) in the event of any third party claim that the Software or your possession and use of that Software infringes that third party's intellectual property rights, Apple will not be responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim; and (g) Apple will not be responsible for addressing any of your claims or any third party claims relating to the Software or your possession and/or use of the Software, including, but not limited to: (i) product liability claims; (ii) any claim that the Software fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.",
+ "englishUsFontType":3,
+ "frenchText":"18. TIERS BÉNÉFICIAIRES. Toute personne ou entité qui ne serait une partie du présent Contrat n’aura aucun droit en vertu de toute loi que ce soit d’exécuter une des dispositions du présent Contrat, que la personne ou entité ait ou non été identifiée nominativement. Rien dans le présent article ne saurait affecter les droits de tout cessionnaire ou bénéficiaire autorisé du présent Contrat. Eu égard aux Logiciels installés et utilisés sur vos Appareils iOS, vous reconnaissez et convenez que la société Apple Inc. (« Apple ») et ses filiales sont des bénéficiaires tiers du présent Contrat et également que (a) à votre acceptation des conditions générales du présent Contrat, Apple aura le droit (et sera réputée avoir accepté le droit) de faire appliquer le présent Contrat à votre encontre en tant que tiers ; (b) le présent Contrat est négocié entre vous et BNEI uniquement, et non pas Apple ; (c) BNEI, et non pas Apple, est seule responsable des Logiciels et du contenu de ces derniers ; (d) Apple n'est en aucun cas dans l'obligation de fournir tous services de maintenance et d'assistance eu égard aux Logiciels ; (e) dans la pleine mesure permise par la loi applicable, Apple n'assumera aucune obligation de garantie eu égard aux Logiciels ; et BNEI, et non pas Apple, sera responsable de tout(e) réclamation, perte, responsabilité, dommage, coût ou dépense imputable à toute incapacité des Logiciels à se conformer à toute garantie applicable ; (f) en cas de réclamation de tiers selon laquelle les Logiciels ou votre possession et votre utilisation desdits Logiciels constituent une contrefaçon des droits de propriété intellectuelle dudit tiers, Apple ne sera pas responsable de l'investigation, de la défense, du règlement et de l'acquittement de toute dite réclamation en contrefaçon de propriété intellectuelle ; et (g) Apple ne sera pas responsable du traitement de l'une quelconque de vos réclamations ou de réclamations de tiers relatives aux Logiciels ou à votre possession et/ou utilisation des Logiciels, y compris, mais sans y être limité : (i) réclamations en responsabilité du fait des produits ; (ii) toute réclamation selon laquelle les Logiciels ne sont pas conformes à toute exigence légale ou réglementaire applicable ; et (iii) réclamations se rapportant à la législation de protection des consommateurs ou une législation similaire.",
+ "frenchFontType":3,
+ "italianText":"18. BENEFICIARI DI TERZE PARTI. Nessuna persona o entità che non sia una parte contraente del presente Accordo è autorizzata, in forza di alcuna legge, a imporre qualsiasi termine del presente Accordo, indipendentemente dal fatto che tale persona o entità sia stata identificata per nome. Nessuna disposizione della presente sezione deve pregiudicare i diritti di eventuali assegnatari o cessionari autorizzati del presente Accordo. Per quanto riguarda il Software installato e utilizzato sui dispositivi iOS, l'Utente riconosce e accetta che Apple Inc. (\"Apple\") e le sue controllate sono beneficiari terzi del presente Accordo e, inoltre, che (a) previa accettazione da parte dell'Utente dei termini e condizioni del presente Accordo, Apple avrà il diritto (e si considererà che abbia accettato il diritto) di far rispettare il presente Accordo nei confronti dell'Utente come terza parte; (b) il presente Accordo viene stipulato esclusivamente tra l'Utente e BNEI, e non Apple; (c) BNEI, e non Apple, è unicamente responsabile del Software e dei relativi contenuti; (d) Apple non ha alcun obbligo di fornire servizi di manutenzione e di supporto in relazione al Software; (e) nella misura massima consentita dalla legge applicabile, Apple non avrà alcun obbligo di garanzia rispetto al Software; e BNEI, e non Apple, sarà responsabile a fronte di eventuali rivendicazioni, perdite, responsabilità, danni, costi o spese attribuibili in caso mancata conformità del Software a qualsiasi garanzia applicabile; (f) nel caso di qualsiasi rivendicazione di terzi secondo la quale il Software o il possesso e l'uso di tale Software da parte dell'Utente violi i diritti di proprietà intellettuale di terzi, Apple non sarà responsabile dell'istruttoria, difesa, composizione ed esenzione di qualsiasi tale rivendicazione di violazione della proprietà intellettuale; e (g) Apple non sarà responsabile a fronte delle rivendicazioni dell'Utente o di terzi relative al Software o al possesso e/o utilizzo del Software da parte dell'Utente, ivi comprese, a titolo esemplificativo ma non esaustivo: (i) rivendicazioni di responsabilità del prodotto; (ii) qualsiasi rivendicazione in merito alla mancata conformità del Software a qualsiasi requisito legale o normativo applicabile; e (iii) rivendicazioni derivanti ai sensi della legge sulla tutela del consumatore o legislazione simile.",
+ "italianFontType":3,
+ "germanText":"18. BEGÜNSTIGTE DRITTE: Sämtliche Personen oder Körperschaften, die keine Partei der vorliegenden Vereinbarung sind, sind nicht kraft Gesetz zur Durchsetzung irgendwelcher Bestimmungen der vorliegenden Vereinbarung berechtigt, egal, ob diese Person oder Körperschaft namentlich genannt wird. Nichts in diesem Abschnitt wirkt sich auf die Rechte irgendwelcher zulässigen Abtretungsempfänger der vorliegenden Vereinbarung aus. In Bezug auf die auf Ihrem iOS-Gerät installierte und verwendete Software erklären Sie sich damit einverstanden, dass Apple Inc. (\"Apple\") und ihre Tochtergesellschaften Drittbegünstigte dieses Vertrags sind und (a) dass Apple nach Ihrer Annahme der Vertragsbedingungen berechtigt ist (wobei die Annahme dieser Berechtigung durch Apple vorausgesetzt wird), diesen Vertrag als Dritte gegen Sie durchzusetzen; (b) dass dieser Vertrag nur zwischen Ihnen und BNEI und nicht Apple erfolgt; (c) dass BNEI und nicht Apple allein für die Software und den Inhalt derselben verantwortlich ist; (d) dass Apple keinerlei Verpflichtung hat, Wartungs- und Supportdienste hinsichtlich der Software bereitzustellen; (e) dass Apple im größtmöglichen gesetzlich zulässigen Umfang keine Gewährleistungsverpflichtung bezüglich der Software hat, und dass BNEI und nicht Apple für Forderungen, Verluste, Haftungen, Schadensersatz, Kosten oder Aufwendungen haftbar ist, die darauf zurückzuführen sind, dass die Software nicht der geltenden Gewährleistung entspricht; (f) dass im Falle einer Geltendmachung seitens eines Dritten, dass die Software oder Ihr Besitz und Ihre Verwendung der Software die geistigen Eigentumsrechte dieses Dritten verletzen, Apple nicht für die Untersuchung, Verteidigung, Regelung und Erfüllung eines solchen Anspruchs bezüglich einer Schutzrechtsverletzung verantwortlich ist; (g) dass Apple nicht dafür zuständig ist, auf Ihre Ansprüche oder Ansprüche Dritter in Bezug auf die Software oder Ihren Besitz und/oder Ihre Verwendung der Software wie u.a. (i) Produkthaftungsansprüche; (ii) Ansprüche dahingehend, dass die Software nicht geltenden gesetzlichen oder aufsichtsrechtlichen Vorschriften genügt; und (iii) Ansprüche im Zusammenhang mit Verbraucherschutz- und ähnlicher Gesetzgebung einzugehen.",
+ "germanFontType":3,
+ "spanishText":"18. TERCEROS BENEFICIARIOS. Toda persona o entidad que no sea parte en el presente Contrato no tendrá derecho alguno en virtud de ninguna ley para exigir el cumplimiento de las condiciones que aquí se estipulan, con independencia de si dicha persona o entidad es identificada por su nombre. Las disposiciones de la presente cláusula no afectarán a los derechos de aquellos cesionarios o beneficiarios contemplados en este Contrato. En lo relativo al Software instalado y utilizado en sus Dispositivos iOS, reconoce y acuerda usted que Apple Inc. («Apple») y sus filiales son beneficiarios terceros del presente Contrato y que (a) tras la aceptación por su parte de las condiciones de este instrumento, Apple tendrá derecho (y se considerará que aceptado dicho derecho) a ejecutar el presente Contrato contra usted como tercero; (b) el presente Contrato les afecta a usted y a BNEI solamente, no a Apple; (c) BNEI, y no Apple, será el único responsable del Software y del contenido del mismo; (d) Apple no tendrá obligación alguna a prestar ningún servicio de mantenimiento o soporte con respecto al Software; (e) en la máxima medida permitida por la legislación aplicable, Apple no tendrá obligación de garantía alguna con respecto al Software; y BNEI, y no Apple, será el responsable de cualesquiera reclamaciones, pérdidas, responsabilidades, daños, costes o gastos atribuibles a cualquier inconformidad del Software con respecto a las garantías aplicables; (f) si un tercero reclama que el Software o la posesión o el uso por su parte del mismo infringe sus derechos de propiedad intelectual, Apple no será responsable de la investigación, defensa, liquidación y resolución de dicha reclamación de propiedad intelectual; y (g) Apple no estará obligado a ocuparse de ninguna de sus reclamaciones o de las reclamaciones de terceros relativas al Software o la posesión y/o uso por su parte del mismo, incluidas, entre otras: (i) las reclamaciones por responsabilidad de producto; (ii) las reclamaciones por la inconformidad del Software con cualquier requisito legal o normativo aplicable; y (iii) las reclamaciones derivadas de la legislación en materia de protección del consumidor y similar.",
+ "spanishFontType":3,
+ "chineseTText":"18.第三方受益人。任何非本合約締約方的個人或實體,不受任何法律規定執行本合約的任何條款,均不享有任何權利,不論該人或實體是否已經過姓名加以確認。本條不影響本合約任何許可的受託人或承讓人之權利。對於在您的iOS 裝置上安裝和使用的有關軟件,您確認知曉並同意蘋果公司(「蘋果公司」)及其附屬公司是本協議的第三方受益人,而且:(a) 在您接受本協議的條款和條件後,蘋果公司有權(且被視為已接納該等權利)以第三方的身份向您強制執行本協議;(b) 本協議僅由您與BNEI訂立,而非您與蘋果公司訂立; (c) BNEI(而非蘋果公司)會對有關軟件及其內容承擔全部責任;(d) 蘋果公司無需承擔任何責任,就有關軟件提供任何維修保養和支援服務;(e) 在適用法律允許的最大範圍內,蘋果公司對有關軟件不承擔任何保證責任;且BNEI(而非蘋果公司)會對因有關軟件未能滿足任何的適用保證而產生的索償、損失、責任、損害賠償、費用或開支承擔責任;(f) 如有第三方聲稱有關軟件本身或您管有及使用有關軟件的行為侵犯了該第三方的知識產權權利,蘋果公司不會就任何該等知識產權侵權索償的調查、抗辯、和解及解除承擔任何責任;及 (g) 蘋果公司不會負責處理您或任何第三方就有關軟件而提出,或就您管有和/或使用有關軟件而提出的申索,包括但不限於:(i) 產品責任索償;(ii) 任何有關軟件未能符合任何適用的法律或監管要求的申索;及 (iii) 任何根據消費者保護或類似法規產生的申索。",
+ "chineseTFontType":1,
+ "koreanText":"18. 제3자 수익자. 본 계약의 당사자가 아닌 개인이나 단체는 어떤 법하에서도 본 계약의 어떤 조건도 집행할 권리가 없으며, 이는 해당 개인이나 단체의 이름 명시 여부와 관계없이 마찬가지입니다. 본 절은 본 계약을 유효하게 양수한 수탁자나 양수인의 권리에는 영향을 미치지 않습니다. 귀하의 iOS 디바이스에 설치되고 이용되고 있는 소프트웨어에 대하여, 귀하는 Apple Inc. (이하 “애플”)과 그 자회사들이 본 계약에 따른 제3의 수익자에 해당하게 된다는 사실과 (a) 귀하가 본 계약의 내용에 동의하는 경우, 애플이 제3자로서 귀하에 대하여 본 계약을 강제할 수 있는 권리를 가진다는 점(그리고 그러한 권리를 받아들였다고 의제된다는 것), (b) 본 계약은 귀하와 BNEI 사이에서 체결된 것이지, 애플과의 사이에서 체결된 것이 아니라는 점, (c) 애플이 아니라 BNEI가 단독으로 소프트웨어와 그 콘텐츠에 대해서 책임진다는 점, (d) 애플은 소프트웨어에 대하여 유지와 지원 서비스를 제공할 의무가 전혀 없다는 점, (e) 적용 법률에 의해 허용되는 최대 범위까지 애플은 소프트웨어에 대하여 보증 의무가 없으며, 애플이 아니라 BNEI가 모든 적용가능한 보증사항을 준수하지 못함으로 인하여 발생한 모든 주장, 손실, 책임, 손해, 비용 등에 대하여 책임을 부담한다는 점, (f) 제3자가 소프트웨어, 귀하의 소프트웨어 소유와 이용이 제3자의 지적 재산권을 침해한다고 주장하는 경우, 애플은 그러한 모든 지적 재산권 침해 주장에 대한 조사, 방어, 분쟁 해결, 해방에 대하여 책임이 없다는 것, 그리고 (g) 애플은 (i) 제조물 책임 주장, (ii) 소프트웨어가 적용 법률 또는 규제 요구사항을 준수하고 있지 못한다는 주장 일체, (iii) 소비자 보호 또는 유사한 법률에 따라 제기된 주장 등을 포함하지만 이에 제한되지는 아니하는 소프트웨어 또는 귀하의 소프트웨어 소유 및 이용에 관한 귀하 또는 기타 제3자의 주장에 답변을 하여야 할 책임이 없다는 것을 인지하고 동의합니다.",
+ "koreanFontType":2,
+ "portugueseText":"18. TERCEIROS BENEFICIÁRIOS. Qualquer pessoa física ou jurídica que não seja uma parte deste Contrato não terá direitos sob qualquer lei para aplicar qualquer termo deste Contrato, independentemente de a pessoa física ou jurídica ter sido identificada por nome. Nada nesta seção afetará os direitos de qualquer cessionário ou aceitante deste Contrato. Você reconhece e concorda que a Apple Inc. (\"Apple\") e suas subsidiárias são beneficiárias terceiras deste Contrato e também que (a) ao aceitar os termos e condições deste Contrato, a Apple terá o direito (e será considerada como tendo aceitado o direito) de aplicar este Contrato a você como parte terceira; (b) este Contrato é conduzido apenas entre você e a BNEI, e não a Apple; (c) a BNEI, e não a Apple, é a responsável exclusiva pelo Software e o conteúdo do mesmo; (d) a Apple não tem obrigação nenhuma de oferecer qualquer serviço de manutenção ou suporte com respeito ao Software; (e) à extensão máxima permitida pela legislação em vigor, a Apple não terá obrigação de garantia com respeito ao Software; e a BNEI, e não a Apple, será responsável por qualquer pedido, perda, responsabilidades legais, danos, custos ou despesas atribuíveis a qualquer falha do Software conforme qualquer garantia aplicável; (f) no caso de qualquer reivindicação de terceiros de que o Software ou sua posse e uso violam direitos de propriedade intelectual de tais terceiros, a Apple não será responsável pela investigação, defesa, acordo e dispensa dessas reivindicações de violação de propriedade intelectual; e (g) a Apple não será responsável por atender a nenhuma das suas reivindicações ou a reivindicações de terceiros relativas ao Software ou à sua posse e/ou uso do Software, incluindo, entre outros: (i) reivindicações de responsabilidade legal pelo produto; (ii) qualquer reivindicação de que o Software falha em obedecer a qualquer requisito legal ou normativo em vigor; e (iii) reivindicações advindas de legislação de proteção ao consumidor ou semelhantes.",
+ "portugueseFontType":2,
+ "russianText":"18. СТОРОННИЕ БЕНЕФИЦИАРЫ. Ни одно физическое лицо или организация, не являющиеся сторонами данного Соглашения, не имеют право ни по какому закону применять любые положения настоящего Соглашения, независимо от факта упоминания имени такового лица или названия организации. Ни одно из утверждений в этом разделе не влияет на права разрешенных правопреемников или правоприобретателей настоящего Соглашения. Вы признаете и соглашаетесь с тем, что Apple Inc. («Apple») и ее дочерние компании являются сторонними бенефициарами по настоящему Соглашению, а также, что: (a) после принятия вами условий настоящего Соглашения Apple вправе (считается получившей право) обеспечить исполнение настоящего Соглашения вами как третьей стороной; (b) настоящее Соглашение заключается только между вами и BNEI, а не Apple; (c) BNEI, а не Apple несет исключительную ответственность за Программное обеспечение и его содержимое; (d) Apple не имеет никаких обязательств по предоставлению каких-либо услуг по обслуживанию и поддержке Программного обеспечения; (e) в максимальной степени, разрешенной применимым законодательством, Apple освобождается от гарантийных обязательств в отношении Программного обеспечения; и BNEI, а не Apple, несет ответственность за все претензии, убытки, обязательства, потери, издержки и расходы, связанные с неудовлетворением Программным обеспечением какой-либо применимой гарантии; (f) в случае претензий какой-либо третьей стороны к тому, что Программное обеспечение или владение и использование его вами нарушают права такой стороны на интеллектуальную собственность, Apple не несет ответственности за расследование, правовую защиту, устранение и урегулирование таких претензий; и (g) Apple не несет ответственности за рассмотрение каких-либо ваших претензий и претензий третьих сторон, касающихся Программного обеспечения или владения и/или использования его вами, включая, в частности: (i) претензии к качеству продукции; (ii) какие-либо претензии в части несоответствия Программного обеспечения каким-либо применимым законодательным или нормативным требованиям; и (iii) претензии, проистекающие из положений законодательства о защите прав потребителей или аналогичного законодательства.",
+ "russianFontType":2,
+ "turkishText":"18. ÜÇÜNCÜ TARAF FAYDALANICILAR. Bu Sözleşmeye taraf olmayan kişi veya kurumlar, bu kişi veya kurumun isimle tanımlanmış olmasına bakılmaksızın, hiçbir yasa altında bu Sözleşmenin şartlarını uygulama hakkına sahip olmayacaktır. Bu bölümde geçen hiçbir şey, bu Sözleşmenin izin verilen vekilinin veya Sözleşmeyi devralan kişinin haklarını etkilemeyecektir. Apple Inc. (\"Apple\") ve bağlı şirketlerinin bu Sözleşmenin üçüncü taraf faydalanıcıları olduğunu ve ayrıca (a) bu Sözleşmenin şartlarını ve koşullarını kabul etmeniz üzerine Apple'ın bu Sözleşmeyi size karşı üçüncü taraf olarak uygulama hakkına sahip olduğunu (ve bu hakkı kabul etmiş sayılacağını); (b) bu Sözleşmenin Apple ile değil sadece siz ve BNEI arasında uygulandığını; (c) Yazılım ve içeriğinden Apple değil sadece BNEI'nin sorumlu olduğunu; (d) Apple'ın Yazılımla ilgili bakım ve destek hizmeti sağlama yükümlülüğünün olmadığını; (e) yasanın izin verdiği azami ölçüde, Apple'ın Yazılımla ilgili bir garanti sorumluluğu olmadığını ve Yazılımın geçerli garantiye uymamasına atfedilebilecek talepler, zararlar, yükümlülükler, hasarlar, maliyetler ve harcamalardan Apple değil BNEI'nin sorumlu olacağını; (f) Yazılımın veya o Yazılıma sahip olmanızın ya da kullanımınızın üçüncü bir tarafın fikri mülkiyet haklarını ihlal ettiğine dair bir üçüncü taraf talebi olması halinde, bu fikri mülkiyet hakkı ihlalinin araştırılması, savunması, çözüme kavuşturulması ve yerine getirilmesinden Apple'ın sorumlu olmayacağını ve (g) Yazılım veya Yazılıma sahip olmanız ve/veya kullanımınızla ilgili bunlarla sınırlı olmamak üzere aşağıdakiler dahil talepleriniz veya üçüncü taraf taleplerinin ele alınmasından Apple'ın sorumlu olmayacağını kabul etmektesiniz: (i) ürün yükümlülük talepleri; (ii) Yazılımın geçerli yasal veya düzenleyici bir gerekliliğe uymadığını belirten talepler ve (iii) tüketicinin korunması yasası veya benzer bir yasadan kaynaklanan talepler.",
+ "turkishFontType":2,
+ "arabicText":"18. المستفيدون من الغير. لا يحق لأي شخصٍ أو كيانٍ ليس طرفًا في هذه الاتفاقية بموجب أي قانون إنفاذ أي بندٍ من بنود هذه الاتفاقية، بصرف النظر عما إذا كان هذا الشخص أو الكيان قد تم تحديده بالاسم. لا يؤثِّر أي شيءٍ في هذا القسم على حقوق المنقول إليه أو المُحال إليه المسموح له بموجب هذه الاتفاقية. أنت تقر وتوافق أن شركة Apple Inc. (ويُشار إليها باسم \"Apple\") وفروعها تُعد جهات خارجية مُستفيدة من هذه الاتفاقية، وتوافق كذلك على ما يلي: (أ) بقبولك لشروط وأحكام هذه الاتفاقية، سيحق لشركة Apple (وسيُعتبر أنها قبلت هذا الحق) تطبيق هذه الاتفاقية تجاهك بوصفها طرفًا خارجيًا؛ (ب) هذه الاتفاقية مُبرمة بينك وشركة BNEI فقط، وليس شركة Apple؛ (ج) تتولى شركة BNEI وحدها، وليست شركة Apple، مسؤولية البرنامج والمحتوى الوارد بداخله؛ (د) لا تلتزم شركة Apple بأيّ شكل من الأشكال بتزويد خدمات الصيانة والدعم المتعلقة بالبرنامج؛ (هـ) لا تلتزم شركة Apple بضمان البرنامج إلى أقصى حد يسمح به القانون الساري، وتتولى شركة BNEI، وليست شركة Apple، مسؤولية أيّ ادعاءات، أو خسائر، أو التزامات، أو أضرار، أو تكاليف، أو نفقات تُعزى إلى عدم التزام البرنامج بالضمان الساري؛ (و) إذا ادّعى أي طرف خارجي أن البرنامج أو امتلاكك للبرنامج أو استخدامك له ينتهك حقوق الملكية الفكرية الخاصة بالطرف الخارجي، فلن تتحمل شركة Apple مسؤولية التحقيق والدفاع والتسوية وصرف النظر في أيّ دعوى انتهاك حقوق الملكية الفكرية من هذا القبيل؛ (ح) لن تتحمل شركة Apple مسؤولية النظر في أيٍّ من ادعاءاتك أو ادعاءات طرف خارجي فيما يتعلق بالبرنامج أو امتلاكك للبرامج أو استخدامك له أو الحالتين كلتيهما، وهذا يتضمن على سبيل المثال لا الحصر ما يلي: (1) ادعاءات المسؤولية عن المنتج؛ (2) أي ادعاء بعدم التزام البرنامج بأي شرط قانوني أو تنظيمي منطبق؛ (3) الادعاءات الناشئة بموجب حماية المستهلك أو تشريع مشابه.",
+ "arabicFontType":2,
+ "dutchText":"18. DERDE BEGUNSTIGDEN. Een persoon of entiteit die geen partij is bij deze Overeenkomst, heeft geen rechten krachtens enige wet om bepalingen van deze Overeenkomst af te dwingen, ongeacht of die persoon of entiteit bij name is geïdentificeerd. Niets in deze Clausule zal van invloed zijn op de rechten van een toegestane gevolmachtigde of cessionaris van deze Overeenkomst. U erkent en stemt ermee in dat Apple Inc. (\"Apple\") en haar dochterondernemingen derde begunstigden zijn van deze Overeenkomst en verder dat (a) Apple, na uw aanvaarding van de bepalingen en voorwaarden van deze Overeenkomst, het recht zal hebben (en wordt geacht het recht aanvaard te hebben) om deze Overeenkomst tegen u als derde partij af te dwingen; (b) deze Overeenkomst wordt alleen tussen u en BNEI aangegaan, en niet Apple; (c) BNEI, en niet Apple, is als enige verantwoordelijk voor de Software en de inhoud daarvan; (d) Apple heeft geen enkele verplichting om onderhouds- en ondersteuningsdiensten met betrekking tot de Software te leveren; (e) voor zover maximaal toegestaan door toepasselijke wetgeving heeft Apple geen garantieverplichting met betrekking tot de Software; en BNEI, en niet Apple, is verantwoordelijk voor alle vorderingen, verliezen, aansprakelijkheden, schade, kosten of uitgaven die toe te schrijven zijn aan het falen van de Software om aan enige toepasselijke garantie te voldoen; (f) in het geval van een vordering van een derde partij dat de Software of uw bezit en gebruik van desbetreffende Software inbreuk maakt op de intellectuele eigendomsrechten van die derde partij, zal Apple niet verantwoordelijk zijn voor het onderzoeken, verdedigen, schikken en kwijting van een dergelijke vordering op inbreuk van intellectuele eigendomsrechten; en (g) is Apple niet verantwoordelijk voor het behandelen van enigerlei van uw vorderingen of vorderingen van derden met betrekking tot de Software of uw bezit en/of gebruik van de Software, inclusief maar niet beperkt tot: (i) vorderingen met betrekking tot productaansprakelijkheid; (ii) elke vordering dat de Software niet voldoet aan alle van toepassing zijnde wettelijke of reglementaire vereisten; en (iii) vorderingen uit hoofde van consumentenbescherming of vergelijkbare wetgeving.",
+ "dutchFontType":2,
+ "chineseSText":"18. 第三方受益人。任何非本协议缔约方的个人或实体,不受任何法律规定执行本协议的任何条款,均不享有任何权利,不论该个人或实体是否以姓名/名称标识。本节不得影响本协议任何被许可的受托人或承让人的权利。对于在您的iOS 装置上安装和使用的有关软件,您确认知晓并同意苹果公司(「苹果公司」)及其附属公司是本协议的第三方受益人,而且:(a) 在您接受本协议的条款和条件后,苹果公司有权(且被视为已接纳该等权利)以第三方的身份向您强制执行本协议;(b) 本协议仅由您与BNEI订立,而非您与苹果公司订立; (c) BNEI(而非苹果公司)会对有关软件及其内容承担全部责任;(d) 苹果公司无需承担任何责任,就有关软件提供任何维修保养和支援服务;(e) 在适用法律允许的最大范围内,苹果公司对有关软件不承担任何保证责任;且BNEI(而非苹果公司)会对因有关软件未能满足任何的适用保证而产生的索偿、损失、责任、损害赔偿、费用或开支承担责任;(f) 如有第三方声称有关软件本身或您管有及使用有关软件的行为侵犯了该第三方的知识产权权利,苹果公司不会就任何该等知识产权侵权索偿的调查、抗辩、和解及解除承担任何责任;及 (g) 苹果公司不会负责处理您或任何第三方就有关软件而提出,或就您管有和/或使用有关软件而提出的主张,包括但不限于:(i) 产品责任索偿;(ii) 任何有关软件未能符合任何适用的法律或监管要求的主张;及 (iii) 任何根据消费者保护或类似法规产生的主张。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"eula_26",
+ "japaneseText":"\n19. 雑則\n\n本規約は、本件ゲームの利用に関してお客様と当社との間の合意内容のすべてを余すところなく記載したものです。本規約の何らかの条項が無効または執行不能と判断された場合においても、当該条項により本規約の重要な部分が本規約から失われることとなる場合を除き、本規約の残余部分は、その残余期間その他第4条(d)に記載の期間にわたり、引き続き完全な効力を有するものとします。お客様は、当社の書面による事前同意を得ない限り、本規約または本規約に基づく自己の権利のいずれも、譲渡することはできません。かかる同意を得ることなく試みられたいかなる譲渡も、無効とします。上述の制約内容を条件として、本規約は、弊社およびその各々の承継人および譲受人に対し完全な拘束力を有し、これらの者の利益のために効力を生じ、かつこれらの者により行使できるものとします。本規約における何らかの権利または条項について当社による行使または履行強制がなされなかった場合においても、当該権利または条項が放棄されたことにはなりません。本規約の条文見出しは、便宜のみを目的とするものであって、何らの法律上または契約上の効果も有しないものとします。BNEIへのお問い合わせの方法は、当社のサポートページ(http://bnfaq.channel.or.jp/)に記載の手順のとおりです。",
+ "englishUsText":"19. MISCELLANEOUS. This Agreement contains the entire agreement between you and BNEI regarding the use of the Game. If any provision of this Agreement is held invalid or unenforceable, the remainder of this Agreement shall continue in full force and effect for the remainder of the term, or as otherwise set forth in Section 4(d), except if such provision deprives the Agreement from its essential obligations. You may not assign this Agreement or any of its rights under this Agreement without the prior written consent of BNEI, and any attempted assignment without such consent shall be void. Subject to the foregoing restriction, this Agreement will be fully binding upon, inure to the benefit of, and be enforceable by us and our respective successors and assigns. The failure of BNEI to exercise or enforce any right or provision of this Agreement shall not operate as a waiver of such right or provision. The section titles in this Agreement are for convenience only and have no legal or contractual effect. To contact BNEI, please follow the process described on our support page located at http://bnfaq.channel.or.jp/.",
+ "englishUsFontType":3,
+ "frenchText":"19. DIVERS. Le présent Contrat contient l’intégralité de l’accord entre vous et BNEI quant à l’utilisation du Jeu. Dans le cas où l’une des dispositions du présent Contrat est déclarée non valide ou inapplicable, les dispositions restantes du présent Contrat resteront pleinement applicables jusqu’à son terme, ou selon les conditions exposées par ailleurs à l’article 4(d), sauf si la disposition en question vide le Contrat de ses obligations fondamentales. Vous ne pouvez pas transférer le présent Contrat ou les droits énoncés aux présentes sans l’accord préalable écrit de BNEI et toute tentative de transfert serait nulle et sans effet. Sous réserve de ce qui précède, le présent Contrat liera les parties et sera applicable au bénéfice de celles-ci et de leurs successeurs et ayants droit respectifs. L’inexécution par BNEI d’un droit ou d’une disposition prévu(e) dans le présent Contrat ne saurait constituer une renonciation de ce droit ou de cette disposition. Les libellés des articles du présent Contrat n’ont qu’une vocation pratique et n’ont aucun effet légal ou contractuel. Pour contacter BNEI, veuillez suivre la procédure décrite à notre page assistance située à http://bnfaq.channel.or.jp/.",
+ "frenchFontType":3,
+ "italianText":"19. VARIE ED EVENTUALI. Il presente documento contiene l'accordo completo stipulato tra l'utente e BNEI in merito all'utilizzo del Gioco. Se una qualunque disposizione del presente Accordo è ritenuta non valida o non applicabile, le rimanenti disposizioni continueranno a essere valide e applicabili per tutta la durata prevista dell'Accordo o come altrimenti disposto nella sezione 4(d), a meno che tale disposizione non privi l'Accordo dei suoi obblighi fondamentali. L'utente non può cedere il presente Accordo o alcuno dei diritti in esso previsti senza il preventivo consenso scritto di BNEI. Ogni tentativo in questo senso senza tale consenso sarà considerato nullo. Fatta salva tale restrizione, il presente Accordo estenderà i suoi effetti (in termini di vincoli e benefici) su di noi e sui nostri assegnatari e successori e potrà essere fatto valere da noi e dai nostri assegnatari e successori. L'incapacità di BNEI a esercitare o applicare uno qualunque dei diritti o delle disposizioni previsti dal presente Accordo non comporta una sua rinuncia a usufruire di tale diritto o disposizione. I titoli delle sezioni del presente Accordo sono stati scelti per comodità e non hanno alcun effetto legale o contrattuale. Per contattare BNEI, seguire la procedura descritta sulla nostra pagina di supporto disponibile all'indirizzo http://bnfaq.channel.or.jp/.",
+ "italianFontType":3,
+ "germanText":"19. VERSCHIEDENES: Die vorliegende Vereinbarung stellt die gesamte Vereinbarung zwischen Ihnen und BNEI mit Blick auf die Nutzung des Spiels dar. Wird eine beliebige Bestimmung der vorliegenden Vereinbarung für ungültig oder nicht durchsetzbar befunden, bleibt der Rest der Vereinbarung für die verbleibende Laufzeit, oder wie ansonsten in Abschnitt 4(d) dargelegt, in vollem Umfang in Kraft, es sei denn, diese Bestimmung entzieht der Vereinbarung ihre wesentlichen Verpflichtungen. Sie dürfen die vorliegende Vereinbarung oder jedwede darin enthaltenen Rechte gemäß der Vereinbarung nicht ohne die vorherige schriftliche Einwilligung von BNEI abtreten, und sämtliche Abtretungsversuche ohne Einwilligung sind nichtig. Vorbehaltlich der vorstehenden Beschränkung ist die vorliegende Vereinbarung voll verbindlich für uns und unsere jeweiligen Nachfolger und Abtretungsempfänger, wirkt zu Gunsten von uns und unseren jeweiligen Nachfolgern und Abtretungsempfängern sowie ist von uns und unseren jeweiligen Nachfolgern und Abtretungsempfängern durchsetzbar. Das Versäumnis von BNEI, irgendwelche Rechte oder Bestimmungen der vorliegenden Vereinbarung auszuüben oder durchzusetzen, stellt keinen Verzicht auf diese Rechte oder Bestimmungen dar. Die Abschnittsüberschriften in der vorliegenden Vereinbarung dienen nur zur besseren Orientierung und haben keine rechtliche oder vertragliche Wirkung.",
+ "germanFontType":3,
+ "spanishText":"19. DISPOSICIONES VARIAS. Este Contrato contiene el acuerdo íntegro entre usted y BNEI en relación con el uso del Juego. En caso de que alguna disposición de este Contrato resultara inválida o no pudiera ejecutarse, el resto de disposiciones seguirá manteniendo todo su efecto durante la vigencia restante del Contrato, o según se establezca el apartado (d) de la cláusula 4, salvo si dicha disposición priva al Contrato de sus obligaciones esenciales. Usted no podrá ceder este Contrato ni ninguno de sus derechos adquiridos en virtud del mismo sin el consentimiento previo escrito de BNEI. Resultará nulo cualquier intento de cesión sin dicho consentimiento. Sin perjuicio de la restricción precedente, este Contrato será totalmente vinculante, redundará en beneficio y será ejecutado por nosotros y por nuestros respectivos sucesores y cesionarios. En caso de que BNEI no ejercite o ejecute alguno de sus derechos o alguna disposición del presente Contrato, no deberá considerarse una renuncia por su parte sobre dicho derecho o disposición. Los títulos de las cláusulas en que se divide este Contrato se ofrecen únicamente con fines ilustrativos, y no tendrán ningún efecto legal o contractual. Para ponerse en contacto con BNEI, siga el proceso que se describe en nuestra página de soporte en http://bnfaq.channel.or.jp/.",
+ "spanishFontType":3,
+ "chineseTText":"19.其他。本合約包含您與 BNEI 之間關於使用遊戲的完整合約。若本合約的任何條款被視為無效或不可執行,則本合約的其餘部分將在該條款的剩餘時間內持續有效,或根據第 4(d) 條另行規定,除非該項條款免除了合約的基本義務。未經 BNEI 事先書面同意,您不得轉讓本合約或本合約下的任何權利,任何未經同意的轉讓企圖均無效。在符合上述限制的情況下,本合約將對我們及我們各自的繼承人與受讓人具有充分的約束力,可由其施行。若 BNEI 未能行使或執行本合約的任何權利或規定,不得視為放棄此類權利或規定。本合約中的各條之標題僅為方便起見,無法律或合約效力。如希望聯絡BNEI,請依循本公司 http://bnfaq.channel.or.jp/支援頁所載程序與BNEI聯絡。",
+ "chineseTFontType":1,
+ "koreanText":"19. 기타. 본 계약은 본 게임 이용과 관련하여 귀하와 BNEI 간의 합의 전체를 담고 있습니다. 본 계약의 일부 조항이 무효 혹은 집행 불가로 결정되더라도, 본 계약의 나머지 부분은 잔여기간 또는 제4(d)절에서 정하는 기간 동안 유효합니다. 단, 해당 조항이 본 계약의 본질적 약정 내용을 박탈하는 경우는 예외입니다. 귀하는 BNEI의 사전 서면 동의 없이는 본 계약이나 본 계약에 따른 권리를 양도할 수 없으며, 이 같은 동의가 없는 양도 시도는 무효입니다. 전술한 제한의 범위에서, 당사 그리고 당사의 각 승계인 및 양수인은 본 계약에 온전히 구속되고 본 계약의 효력 대상이 되며 본 계약을 집행할 수 있습니다. BNEI가 본 계약상의 권리 혹은 조항을 행사하지 않거나 집행하지 않더라도, 이는 해당 권리 혹은 조항의 포기가 아닙니다. 본 계약 내 각 절의 제목은 오직 편의를 위한 것으로, 법적 효력이나 계약적 효력이 없습니다. BNEI와 연락하기 위해서는 http://bnfaq.channel.or.jp/ 에 있는 당사의 지원 페이지에 설명되어 있는 절차를 따르시기 바랍니다.",
+ "koreanFontType":2,
+ "portugueseText":"19. DIVERSOS. Este Contrato contém o acordo completo entre você e a BNEI com relação ao uso do Jogo. Se qualquer disposição deste Contrato for considerada inválida ou inaplicável, o restante do Contrato continuará em pleno vigor e efeito pelo restante do termo, ou conforme tiver sido definido na Seção 4(d), exceto se tal disposição privar o Contrato de suas obrigações essenciais. Você não pode transferir este Contrato ou qualquer parte dos direitos sob este Contrato sem o consentimento prévio por escrito da BNEI e qualquer tentativa de transferência sem tal consentimento será considerada nula. Sujeito à restrição supramencionada, este Contrato trará obrigações e benefícios para e será aplicável por nós e nossos respectivos sucessores e cessionários. Caso a BNEI não exerça ou aplique algum direito ou disposição deste Contrato, isso não deverá valer como renúncia de tal direito ou disposição. Os títulos das seções neste Contrato destinam-se somente à conveniência e não têm qualquer efeito legal ou contratual. Para entrar em contato com a BNEI, siga o processo descrito em nossa página de suporte, em: http://bnfaq.channel.or.jp/.",
+ "portugueseFontType":2,
+ "russianText":"19. ПРОЧИЕ ПОЛОЖЕНИЯ. В настоящем Соглашении приводится полное соглашение между вами и компанией BNEI в отношении использования Игры. Если какое-либо положение настоящего Соглашения признается недействительным или не имеющим юридической силы, то остальные положения сохраняют свое действие и юридическую силу на протяжении срока действия Соглашения или согласно условиям, обозначенным в разделе 6(d), помимо случаев, когда такое положение исключает из Соглашения неотъемлемые обязанности. Вы не имеете права переуступать настоящее Соглашение или предоставляемые по нему права без предварительного получения письменного разрешения компании BNEI, а любая попытка переуступки без получения такого соглашения будет считаться недействительной. С учетом наложенного выше ограничения условия настоящего Соглашения являются обязательными и вступают в силу в пользу нас и наших соответствующих правопреемников. Неспособность компании BNEI соблюдать права или положения, предоставляемые по настоящему Соглашению, не является отказом от обеспечения соблюдения этих прав или положений. Названия разделов используются в настоящем Соглашении исключительно для удобства чтения и не имеют юридической или договорной силы. Процедура обращения в BNEI приведена на странице нашей службы поддержки по адресу: http://bnfaq.channel.or.jp/.",
+ "russianFontType":2,
+ "turkishText":"19. ÇEŞİTLİ. Bu Sözleşme, siz ve BNEI arasında Oyunun kullanılmasına ilişkin yapılan anlaşmanın tamamını içerir. Bu Sözleşmenin bir Hükmünün geçersiz ve uygulanamaz olması halinde, o Hükmün Sözleşmeyi temel yükümlülüklerinden mahrum etmesi haricinde, Sözleşmenin geri kalanı Sözleşme süresi boyunca veya Bölüm 4(d)'de belirtildiği şekilde yürürlükte kalmaya devam edecektir. Bu Sözleşmeyi veya Sözleşmenin sağladığı hakları, BNEI'nin önceden yazılı izni olmadan devredemezsiniz. Onay vermeden yapılan böyle bir devir girişimi geçersiz sayılacaktır. Önceki kısıtlamaya tabi olarak bu Sözleşme biz ve ilgili haleflerimiz ve vekillerimiz için tamamen bağlayıcı olacak, lehimize hüküm ifade edecek ve tarafımızca uygulanabilir olacaktır. BNEI'nin bu Sözleşmenin herhangi bir hakkını veya hükmünü uygulayamaması bu hak veya hükmün feragati olarak işlem görmeyecektir. Bu Sözleşmedeki bölüm başlıkları sadece kolaylık amaçlıdır ve yasal veya sözleşmeye bağlı bir geçerliliği yoktur. BNEI ile iletişim kurmak için lütfen http://bnfaq.channel.or.jp/ adresinde bulunan destek sayfamızda açıklanan süreci izleyin.",
+ "turkishFontType":2,
+ "arabicText":"19. أحكام متفرقة\nتحتوي هذه الاتفاقية على كامل الاتفاقية المبرمة بينك وبين BNEI بشأن استخدام اللعبة. إذا كان أي من أحكام هذه الاتفاقية غير صالح أو غير قابل للإنفاذ، فإن باقي هذه الاتفاقية يظل نافذًا بكامل القوة والتأثير خلال الفترة المتبقية من المدة، أو كما هو موضح في القسم (6)-(د)، إلا إذا كان هذا النص يلغي الالتزامات الأساسية من الاتفاقية. لا يجوز التنازل عن هذه الاتفاقية أو أي حقٍ من حقوقك في ظل هذه الاتفاقية دون موافقة خطية مسبقة من BNEI، وأي محاولة لإجراء هذا التنازل دون الحصول على هذا التنازل تُعدُّ باطلة. مع مراعاة التقييد السابق، فإن هذه الاتفاقية ستكون ملزمةً بالكامل وقابلةً للإنفاذ لصالحنا ومن قبلنا وخلفنا والمتنازل لهم. لا يُعدُّ إخفاق BNEI في ممارسة أو إنفاذ أي حق أو نص من نصوص هذه الاتفاقية بمثابة تنازل عن هذا الحق أو النص. ترد عناوين القسم في هذه الاتفاقية لأغراض الملائمة فقط، وليس لها أي أثر في ظل القانون أو العقد. للتواصل مع شركة BNEI، يُرجى اتِّباع الإجراء المُوضَّح على صفحة الدعم لدينا الموجودة عبر http://bnfaq.channel.or.jp/.",
+ "arabicFontType":2,
+ "dutchText":"19. DIVERSEN. Deze Overeenkomst omvat de volledige overeenkomst tussen u en BNEI met betrekking tot het gebruik van de Game. Indien enige bepaling van deze Overeenkomst ongeldig of niet-afdwingbaar wordt verklaard, blijft de rest van deze Overeenkomst volledig van kracht voor de rest van de looptijd, of zoals anderszins bepaald in Clausule 4(d), behalve indien een dergelijke bepaling de Overeenkomst ontheft van haar wezenlijke rechtsplichten. Het is u niet toegestaan deze Overeenkomst of enigerlei van de rechten onder deze Overeenkomst over te dragen zonder voorafgaande schriftelijke toestemming van BNEI en enigerlei poging tot overdracht zonder genoemde toestemming zal nietig zijn. Onder voorbehoud van de voorgaande beperking, is deze Overeenkomst volledig bindend voor, ten voordele van en afdwingbaar zijn door ons en onze respectievelijke opvolgers en gevolmachtigden. Indien BNEI er niet in slaagt enigerlei van haar rechten of bepalingen van deze Overeenkomst uit te voeren of af te dwingen, dan betekent dit niet dat er afstand gedaan wordt van deze rechten of bepalingen. De Clausuletitels in deze Overeenkomst zijn alleen bedoeld voor het gemak en hebben geen wettelijke of contractuele gevolgen. Om contact op te nemen met BNEI volgt u de procedure op: http://bnfaq.channel.or.jp/.",
+ "dutchFontType":2,
+ "chineseSText":"19. 杂项。本协议包含您与BNEI之间关于使用游戏的完整协议。如果本协议的任何条款被视为无效或不可执行,则本协议的其余部分将在该条款的剩余时间内继续有效,或遵守第4(d)条的另外规定,除非该条款剥夺了协议的基本义务。未经BNEI事先书面同意,您不得转让本协议或本协议下的任何权利,任何未经同意的尝试转让均无效。在符合上述限制的情况下,本协议将对我们及我们各自的继承人和受托人具有充分约束力,可由其强制执行。如果BNEI未能行使或执行本协议的任何权利或规定不得视为放弃此类权利或规定。本协议中的章节标题仅为方便起见,无法律或合同效力。如希望联系BNEI,请依循本公司 http://bnfaq.channel.or.jp/ 支援页所载程序与BNEI联系。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"quickvs_search_found",
+ "japaneseText":"対戦相手がみつかったよ!",
+ "englishUsText":"Opponent found!",
+ "englishUsFontType":3,
+ "frenchText":"Adversaire trouvé !",
+ "frenchFontType":3,
+ "italianText":"Avversario trovato!",
+ "italianFontType":3,
+ "germanText":"Gegner gefunden!",
+ "germanFontType":3,
+ "spanishText":"¡Rival encontrado!",
+ "spanishFontType":3,
+ "chineseTText":"找到對戰對手了!",
+ "chineseTFontType":1,
+ "koreanText":"대전 상대를 찾았어!",
+ "koreanFontType":2,
+ "portugueseText":"Adversário encontrado!",
+ "portugueseFontType":2,
+ "russianText":"Противник найден!",
+ "russianFontType":2,
+ "turkishText":"Rakip bulundu!",
+ "turkishFontType":2,
+ "arabicText":"تم العثور على منافس!",
+ "arabicFontType":2,
+ "dutchText":"Tegenstander gevonden!",
+ "dutchFontType":2,
+ "chineseSText":"找到对战对手了!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"kisekae_ok",
+ "japaneseText":"きがえる!",
+ "englishUsText":"Let's go with this!",
+ "englishUsFontType":3,
+ "frenchText":"Va pour cet objet !",
+ "frenchFontType":3,
+ "italianText":"Indossalo!",
+ "italianFontType":3,
+ "germanText":"Das sieht gut aus!",
+ "germanFontType":3,
+ "spanishText":"¡A marcar estilo!",
+ "spanishFontType":3,
+ "chineseTText":"換裝!",
+ "chineseTFontType":1,
+ "koreanText":"꾸미기!",
+ "koreanFontType":2,
+ "portugueseText":"Vamos nessa!",
+ "portugueseFontType":2,
+ "russianText":"Смена костюма!",
+ "russianFontType":2,
+ "turkishText":"Bu kostümle devam edelim!",
+ "turkishFontType":2,
+ "arabicText":"دعنا نذهب مع هذا!",
+ "arabicFontType":2,
+ "dutchText":"Laten we hiermee doorgaan!",
+ "dutchFontType":2,
+ "chineseSText":"换装!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_desc_title",
+ "japaneseText":"通信プレイのあそびかた",
+ "englishUsText":"Playing Online",
+ "englishUsFontType":3,
+ "frenchText":"Comment jouer en ligne",
+ "frenchFontType":3,
+ "italianText":"Come giocare online",
+ "italianFontType":3,
+ "germanText":"So spielst du online.",
+ "germanFontType":3,
+ "spanishText":"Cómo jugar en línea",
+ "spanishFontType":3,
+ "chineseTText":"通訊遊玩的方式",
+ "chineseTFontType":1,
+ "koreanText":"통신 플레이 방법",
+ "koreanFontType":2,
+ "portugueseText":"Como jogar online",
+ "portugueseFontType":2,
+ "russianText":"Игра по сети",
+ "russianFontType":2,
+ "turkishText":"Online oynama",
+ "turkishFontType":2,
+ "arabicText":"اللعب عبر الإنترنت",
+ "arabicFontType":2,
+ "dutchText":"Online spelen",
+ "dutchFontType":2,
+ "chineseSText":"通信游玩的方式",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_desc_text_1",
+ "japaneseText":"ともだちと通信プレイするときは、この画面でともだちと同じあいことばを入力してつながってね!",
+ "englishUsText":"To play online with a friend\nenter the same Secret Code\non this screen!",
+ "englishUsFontType":3,
+ "frenchText":"Pour jouer avec un\nami, tapez tous les \ndeux le MdP affiché\nà l'écran !",
+ "frenchFontType":3,
+ "italianText":"Per giocare online\ncon gli amici,\ninserisci la stessa\nparola d'ordine qui!",
+ "italianFontType":3,
+ "germanText":"Möchtest du mit einem \nFreund online spielen,\ngebt beide hier das\ngleiche Codewort ein!",
+ "germanFontType":3,
+ "spanishText":"¡Para conectar con \namigos y jugar en línea,\nintroduce aquí la misma\npalabra secreta!",
+ "spanishFontType":3,
+ "chineseTText":"若要和朋友一起通訊遊玩,\n在這個畫面和朋友\n輸入相同的暗號並連線吧!",
+ "chineseTFontType":1,
+ "koreanText":"친구와의 통신 플레이는 \n이 화면에서 \n친구와 같은 암호를\n입력해서 연결하면 돼!",
+ "koreanFontType":2,
+ "portugueseText":"Para jogar com um amigo, você tem\nque inserir a mesma senha dele!",
+ "portugueseFontType":2,
+ "russianText":"Чтобы играть онлайн с другом,\nвведите такой же секретный код\nна этом экране!",
+ "russianFontType":2,
+ "turkishText":"Online bir oyunu\narkadaşınla oynamak\niçin bu ekranda\naynı gizli kodu gir!",
+ "turkishFontType":2,
+ "arabicText":"للعب مع أحد الأصدقاء،\nيُرجى إدراج الرمز ذاته\n في هذه الشاشة!",
+ "arabicFontType":2,
+ "dutchText":"Voer op dit scherm\ndezelfde geheime code in\nom met een vriend online te spelen!",
+ "dutchFontType":2,
+ "chineseSText":"若要和朋友一起通信游玩,\n在这个画面和朋友\n输入相同的暗号并连线吧!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"connect_desc_text_2",
+ "japaneseText":"世界中のプレイヤーとすぐに対戦プレイするときは、「曲をえらぶ」画面で「クイック通信対戦」のパネルをえらんでね!",
+ "englishUsText":"Jump right into a game with\nsomeone around the world by\nchoosing “Quick Match-up”\non the “Select Song” menu!",
+ "englishUsFontType":3,
+ "frenchText":"Choisis \"Défi rapide\nen ligne\" lors du\nchoix du titre pour\ndéfier des joueurs ! ",
+ "frenchFontType":3,
+ "italianText":"Quando scegli una\ncanzone, usa \"Sfida\nonline veloce\" per\nscontri immediati.",
+ "italianFontType":3,
+ "germanText":"Möchtest du gegen Spieler \naus der ganzen Welt antreten,\nwähle „Quick-Online-Duell“ auf\ndem Songwahl-Bildschirm!",
+ "germanFontType":3,
+ "spanishText":"Compite con jugadores\nde todo el mundo en\nJuego rápido en línea,\nen la pantalla de selección.",
+ "spanishFontType":3,
+ "chineseTText":"若要立即與\n全世界的玩家對戰,\n在「選擇樂曲」畫面選擇\n「迅速通訊對戰」吧!",
+ "chineseTFontType":1,
+ "koreanText":"전 세계 플레이어들과의\n대전 플레이는 ‘곡 선택’에서\n‘빠른 통신 대전’\n버튼을 선택해 봐!",
+ "koreanFontType":2,
+ "portugueseText":"Jogue com qualquer pessoa do mundo,\nescolhendo \"Batalha Online Rápida\"\nem \"Sel. música\"!",
+ "portugueseFontType":2,
+ "russianText":"Сыграйте онлайн\nс любым противником,\nвыбрав \"Быстрая дуэль\"\nв меню \"Выбор песни\"!",
+ "russianFontType":2,
+ "turkishText":"Şarkı Seç menüsünde\nHızlı Eşleşme'yi seç\nve rasgele biriyle\nhemen oyuna başla!",
+ "turkishFontType":2,
+ "arabicText":"لتبدأ مباشرة لعبة مع أحد\n اللاعبين حول العالم،\nاختر \"مطابقة سريعة\" \nفي قائمة \"اختيار الأغنية\"!",
+ "arabicFontType":2,
+ "dutchText":"Kies \"Snelle online strijdmodus\"\nin \"Liedselectie\"\nom\ntegen iemand te spelen!",
+ "dutchFontType":2,
+ "chineseSText":"若要立即与\n全世界的玩家对战,\n在“选择乐曲”画面选择\n“迅速通信对战”吧!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"vs_fullcombo",
+ "japaneseText":"フルコンボだドン!",
+ "englishUsText":"Full Combo! Out-DON 'em!",
+ "englishUsFontType":3,
+ "frenchText":"Combo MAX, don !",
+ "frenchFontType":3,
+ "italianText":"Perfetto, don!",
+ "italianFontType":3,
+ "germanText":"Volle Kombo, don!",
+ "germanFontType":3,
+ "spanishText":"¡Combo completo!",
+ "spanishFontType":3,
+ "chineseTText":"達成全連段咚!",
+ "chineseTFontType":1,
+ "koreanText":"풀 콤보다쿵!",
+ "koreanFontType":2,
+ "portugueseText":"Combo Completo! DON!",
+ "portugueseFontType":2,
+ "russianText":"Полн. комбо!",
+ "russianFontType":2,
+ "turkishText":"Tam Kombo, don!",
+ "turkishFontType":2,
+ "arabicText":"كومبو كامل! خارج DON 'م!",
+ "arabicFontType":2,
+ "dutchText":"Full combo, DONders!",
+ "dutchFontType":2,
+ "chineseSText":"达成全连段咚!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_kakunin3",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_kakunin3",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_kakunin3",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_quickmatch",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_quickmatch",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_quickmatch",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"privacy_1",
+ "japaneseText":"バンダイナムコエンターテインメント\nTAIKO NO TATSUJIN POP TAP BEAT\nプライバシーポリシー",
+ "englishUsText":"BANDAI NAMCO ENTERTAINMENT INC.\nTAIKO NO TATSUJIN POP TAP BEAT\nPRIVACY POLICY",
+ "englishUsFontType":3,
+ "frenchText":"BANDAI NAMCO ENTERTAINMENT INC.\nTAIKO NO TATSUJIN POP TAP BEAT\nPOLITIQUE DE CONFIDENTIALITÉ",
+ "frenchFontType":3,
+ "italianText":"BANDAI NAMCO ENTERTAINMENT INC.\nTAIKO NO TATSUJIN POP TAP BEAT\nINFORMATIVA SULLA PRIVACY",
+ "italianFontType":3,
+ "germanText":"BANDAI NAMCO ENTERTAINMENT INC.\nTAIKO NO TATSUJIN POP TAP BEAT\nDATENSCHUTZERKLÄRUNG",
+ "germanFontType":3,
+ "spanishText":"BANDAI NAMCO ENTERTAINMENT INC.\nTAIKO NO TATSUJIN POP TAP BEAT\nPOLÍTICA DE PRIVACIDAD",
+ "spanishFontType":3,
+ "chineseTText":"BANDAI NAMCO ENTERTAINMENT INC.\nTAIKO NO TATSUJIN POP TAP BEAT\n私隱政策",
+ "chineseTFontType":1,
+ "koreanText":"BANDAI NAMCO ENTERTAINMENT INC.\nTAIKO NO TATSUJIN POP TAP BEAT\n개인정보처리방침",
+ "koreanFontType":2,
+ "portugueseText":"BANDAI NAMCO ENTERTAINMENT INC.\nTAIKO NO TATSUJIN POP TAP BEAT\nPOLÍTICA DE PRIVACIDADE",
+ "portugueseFontType":2,
+ "russianText":"BANDAI NAMCO ENTERTAINMENT INC.\nTAIKO NO TATSUJIN POP TAP BEAT\nПОЛИТИКА КОНФИДЕНЦИАЛЬНОСТИ",
+ "russianFontType":2,
+ "turkishText":"BANDAI NAMCO ENTERTAINMENT INC.\nTAIKO NO TATSUJIN POP TAP BEAT\nGİZLİLİK POLİTİKASI",
+ "turkishFontType":2,
+ "arabicText":"BANDAI NAMCO ENTERTAINMENT INC\nTAIKO NO TATSUJIN POP TAP BEAT\nسياسة الخصوصية",
+ "arabicFontType":2,
+ "dutchText":"BANDAI NAMCO ENTERTAINMENT INC.\nTAIKO NO TATSUJIN POP TAP BEAT\nPRIVACYBELEID",
+ "dutchFontType":2,
+ "chineseSText":"BANDAI NAMCO ENTERTAINMENT INC.\nTAIKO NO TATSUJIN POP TAP BEAT\n隐私政策",
+ "chineseSFontType":4
+ },
+ {
+ "key":"privacy_2",
+ "japaneseText":"最終更新: 2020 年 4 月1日",
+ "englishUsText":"Last Updated: April 1, 2020",
+ "englishUsFontType":3,
+ "frenchText":"Dernière mise à jour : 1 avril 2020",
+ "frenchFontType":3,
+ "italianText":"Ultimo aggiornamento: 1 aprile 2020",
+ "italianFontType":3,
+ "germanText":"Zuletzt aktualisiert: 1. April 2020",
+ "germanFontType":3,
+ "spanishText":"Última actualización: 1 de abril de 2020",
+ "spanishFontType":3,
+ "chineseTText":"最後更新日期:2020年4月22日",
+ "chineseTFontType":1,
+ "koreanText":"최종 업데이트: 2020년 4월1일",
+ "koreanFontType":2,
+ "portugueseText":"Última atualização: 1 de abril de 2020",
+ "portugueseFontType":2,
+ "russianText":"Последнее обновление: 1 апреля 2020 г.",
+ "russianFontType":2,
+ "turkishText":"Son Güncelleştirme: 1 Nisan 2020",
+ "turkishFontType":2,
+ "arabicText":"تاريخ آخر تحديث: 1 أبريل 2020\n",
+ "arabicFontType":2,
+ "dutchText":"Laatst bijgewerkt: 1 april 2020",
+ "dutchFontType":2,
+ "chineseSText":"最后更新日期: 2020年4月1日",
+ "chineseSFontType":4
+ },
+ {
+ "key":"privacy_3",
+ "japaneseText":"本プライバシーポリシーでは、お客様がTaiko no Tatsujin Pop Tap Beat(「本件ゲーム」といいます)を利用する際に、株式会社バンダイナムコエンターテインメント(「BNEI」、または「当社」といいます)がお客様に関する情報を収集、使用、および開示する方法について説明します。BNEIは、EU一般データ保護規則の目的上、お客様の個人情報のデータ管理者となります。",
+ "englishUsText":"This Privacy Policy explains how information about you is collected, used and disclosed by BANDAI NAMCO Entertainment Inc., (“BNEI”, “us”, “we” or “our”) when you use Taiko no Tatsujin Pop Tap Beat (the “Game”). BNEI is the data controller of your personal information for purposes of the EU General Data Protection Regulation.",
+ "englishUsFontType":3,
+ "frenchText":"La présente Politique de confidentialité explique comment les informations vous concernant sont collectées, utilisées et divulguées par BANDAI NAMCO Entertainment Inc., (« BNEI », « nous », « nos » ou « notre ») lorsque vous utilisez Taiko no Tatsujin Pop Tap Beat (le « Jeu »). BNEI est le responsable du traitement de vos informations à caractère personnel au titre du règlement général sur la protection des données de l'Union européenne.",
+ "frenchFontType":3,
+ "italianText":"La presente Informativa sulla privacy illustra le modalità con cui le informazioni sull'Utente sono raccolte, utilizzate e divulgate da BANDAI NAMCO Entertainment Inc., (\"BNEI\", \"ci\", \"noi\" o \"nostro/a/e/i\") nel momento in cui l'Utente utilizza Taiko no Tatsujin Pop Tap Beat (il ''Gioco''). BNEI è responsabile del trattamento dei dati personali dell'Utente conformemente al Regolamento generale sulla protezione dei dati dell'UE.",
+ "italianFontType":3,
+ "germanText":"Diese Datenschutzerklärung beschreibt, wie BANDAI NAMCO Entertainment Inc. („BNEI“, „wir“, „uns“, „unser“) Ihre Daten sammelt, verwendet und weitergibt, wenn Sie Taiko no Tatsujin Pop Tap Beat („das Spiel“) nutzen. BNEI ist Datenverantwortlicher für Ihre personenbezogenen Daten im Sinne der EU-Datenschutz-Grundverordnung.",
+ "germanFontType":3,
+ "spanishText":"Esta política de privacidad explica cómo BANDAI NAMCO Entertainment Inc. («BNEI», «nosotros» o cualquier referencia a la primera persona del plural) recopila, utiliza y divulga información sobre usted cuando utiliza Taiko no Tatsujin Pop Tap Beat (en conjunto, el «Juego»). BNEI es el responsable del tratamiento de los datos de su información personal de acuerdo con el Reglamento General de Protección de Datos de la UE.",
+ "spanishFontType":3,
+ "chineseTText":"本私隱政策解釋 BANDAI NAMCO Entertainment Inc.,(「BNEI」、「我們」或「我們的」)將如何在您使用Taiko no Tatsujin Pop Tap Beat(「遊戲」)時收集、使用和披露與您有關的資訊。為履行歐盟《一般資料保護規則》,BNEI 充當您個人資訊的數據控制公司。",
+ "chineseTFontType":1,
+ "koreanText":"본 개인정보 처리방침은 귀하가 Taiko no Tatsujin Pop Tap Beat (이하 “게임”)을(를) 이용할 때 BANDAI NAMCO Entertainment Inc.(이하 “BNEI” 또는 “당사”)에서 귀하에 관한 정보를 수집, 이용, 공개하는 방식을 설명합니다. BNEI는 EU 일반 개인정보 보호법에 따라 귀하의 개인정보를 관리하는 데이터 관리자입니다.",
+ "koreanFontType":2,
+ "portugueseText":"Esta Política de Privacidade explica como suas informações são coletadas, usadas e divulgadas pela BANDAI NAMCO Entertainment Inc. (“BNEI”, “nós”, “nosso” ou “conosco”) quando você usa Taiko no Tatsujin Pop Tap Beat (o “Jogo”). A BNEI é a controladora de dados das suas informações pessoais para os fins do Regulamento Geral sobre a Proteção de Dados da União Europeia.",
+ "portugueseFontType":2,
+ "russianText":"Настоящая Политика конфиденциальности определяет порядок сбора, использования и разглашения вашей информации BANDAI NAMCO Entertainment Inc. («BNEI», «нас», «мы» или «наши») во время использования вами Taiko no Tatsujin Pop Tap Beat («Игра»). BNEI является оператором ваших персональных данных в соответствии с положениями Общего регламента ЕС по защите персональных данных.",
+ "russianFontType":2,
+ "turkishText":"Bu Gizlilik Politikası, Taiko no Tatsujin Pop Tap Beat (\"Oyun\") kullandığınızda hakkınızdaki bilgilerin BANDAI NAMCO Entertainment Inc. (\"BNEI\", \"biz\", \"bize\" veya \"bizim\") tarafından nasıl toplandığını, kullanıldığını ve paylaşıldığını açıklar. BNEI, AB Genel Veri Koruma Tüzüğü çerçevesinde kişisel bilgilerinizin veri sorumlusudur.",
+ "turkishFontType":2,
+ "arabicText":"تشرح سياسة الخصوصية هذه كيفية جمع المعلومات عنك واستخدامها والكشف عنها بواسطةBANDAI NAMCO Entertainment Inc. (المشار إليها بـBNEI أو \"نحن\" أو \"نا\") عند استخدامك Taiko no Tatsujin Pop Tap Beat (\"اللعبة\"). إن BNEI مراقب بيانات معلوماتك الشخصية لأغراض نظام حماية البيانات العامة للاتحاد الأوروبي.",
+ "arabicFontType":2,
+ "dutchText":"Dit Privacybeleid legt uit hoe BANDAI NAMCO Entertainment Inc., (“BNEI”, “ons”, “wij” of “onze”) informatie over u verzamelt, gebruikt en openbaart wanneer u Taiko no Tatsujin Pop Tap Beat (de “Game”) gebruikt. BNEI is de verwerkingsverantwoordelijke voor uw persoonsgegevens in het kader van de Algemene Verordening Gegevensbescherming.",
+ "dutchFontType":2,
+ "chineseSText":"本隐私政策解释 BANDAI NAMCO Entertainment Inc., “BNEI”、“我们”或“我们的”)将如何在您使用Taiko no Tatsujin Pop Tap Beat(“游戏”)时收集、使用及披露与您有关的信息。为履行欧盟《通用数据保护条例》,BNEI 充当您个人信息的数据收集方。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"privacy_4",
+ "japaneseText":"I.個人情報の収集と使用",
+ "englishUsText":"I.Collection and Use of Personal Information",
+ "englishUsFontType":3,
+ "frenchText":"I.Collecte et utilisation de vos informations à caractère personnel",
+ "frenchFontType":3,
+ "italianText":"I.Raccolta e utilizzo delle informazioni personali",
+ "italianFontType":3,
+ "germanText":"I.Erhebung und Verwendung von personenbezogenen Daten",
+ "germanFontType":3,
+ "spanishText":"I.Recopilación y uso de información personal",
+ "spanishFontType":3,
+ "chineseTText":"I.個人資訊的收集和使用",
+ "chineseTFontType":1,
+ "koreanText":"I.개인정보의 수집 및 이용",
+ "koreanFontType":2,
+ "portugueseText":"I.Coleta e Uso de Informações Pessoais",
+ "portugueseFontType":2,
+ "russianText":"I.Сбор и использование персональных данных",
+ "russianFontType":2,
+ "turkishText":"I.Kişisel Bilgilerin Toplanması ve Kullanımı",
+ "turkishFontType":2,
+ "arabicText":"I.جمع واستخدام معلوماتك الشخصية",
+ "arabicFontType":2,
+ "dutchText":"I.Verzameling en gebruik van persoonsgegevens",
+ "dutchFontType":2,
+ "chineseSText":"I.个人信息的收集和使用",
+ "chineseSFontType":4
+ },
+ {
+ "key":"privacy_5",
+ "japaneseText":"当社は、本件ゲームを通じて個人を特定できる情報を収集せず、保存しません。 ",
+ "englishUsText":"We do not collect or store any personal identifiable information through this Game.",
+ "englishUsFontType":3,
+ "frenchText":"Nous ne collectons ni ne conservons aucune information à caractère personnel identifiable grâce au présent Jeu. ",
+ "frenchFontType":3,
+ "italianText":"Non raccogliamo né archiviamo alcuna informazione personale identificabile attraverso questo Gioco.",
+ "italianFontType":3,
+ "germanText":"Wir erheben oder speichern keine identifizierbaren personenbezogenen Daten durch dieses Spiel. ",
+ "germanFontType":3,
+ "spanishText":"No recopilamos ni almacenamos información personalmente identificable en el Juego.",
+ "spanishFontType":3,
+ "chineseTText":"我們不會透過此遊戲收集或儲存任何個人可識別資訊。 ",
+ "chineseTFontType":1,
+ "koreanText":"본 게임을 통해 당사는 개인 식별이 가능한 어떠한 정보도 수집하거나 저장하지 않습니다. ",
+ "koreanFontType":2,
+ "portugueseText":"Não coletamos nem armazenamos qualquer informação pessoalmente identificável por meio deste Jogo. ",
+ "portugueseFontType":2,
+ "russianText":"Посредством этой Игры мы не собираем никакие ваши персональные данные и не храним их.",
+ "russianFontType":2,
+ "turkishText":"Bu Oyun aracılığıyla kimliği teşhir eden kişisel hiçbir bilgiyi toplamaz ve saklamayız. ",
+ "turkishFontType":2,
+ "arabicText":"نحن لا نجمع أو نخزن أي معلومات يمكنها تحديد الشخصية من خلال هذه اللعبة. ",
+ "arabicFontType":2,
+ "dutchText":"Wij verzamelen of bewaren geen persoonlijk identificeerbare gegevens via deze Game. ",
+ "dutchFontType":2,
+ "chineseSText":"我们不会通过此游戏收集或存储任何个人可识别信息。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"privacy_6",
+ "japaneseText":"当社は、音楽著作権管理団体への報告のため、特定の楽曲が最初に再生された時、個人を特定できない集約利用データを収集し、保存しています。このデータは、最初に利用された時のみ収集され、お客様に関する情報が保存されることはありません。",
+ "englishUsText":"We collect and store non-identifiable aggregate usage data when certain songs are first played for reporting to music rights management organizations. The data is collected only upon first use, and no information about you is stored.",
+ "englishUsFontType":3,
+ "frenchText":"Nous collectons et conservons des données d'utilisation agrégées anonymes quand certaines chansons sont jouées pour la première fois à des fins de communication aux organisations qui gèrent les droits musicaux. Ces données ne sont collectées que la première fois et nous ne conservons aucune information vous concernant.",
+ "frenchFontType":3,
+ "italianText":"Raccogliamo e archiviamo dati di utilizzo aggregati non identificabili quando certi brani sono riprodotti per la prima volta, al fine della segnalazione alle organizzazioni di gestione dei diritti musicali. I dati sono raccolti esclusivamente al primo utilizzo e non vengono archiviate informazioni sull'Utente.",
+ "italianFontType":3,
+ "germanText":"Wir erheben und speichern nicht identifizierbare aggregierte Nutzungsdaten, wenn bestimmte Lieder zum ersten Mal gespielt werden, zum Zweck der Meldung bei Verwertungsgesellschaften für Musikrechte. Die Daten werden nur bei der ersten Nutzung gesammelt; es werden keine Daten über Sie gespeichert.",
+ "germanFontType":3,
+ "spanishText":"Recopilamos y almacenamos datos de uso agregados no identificables cuando se reproducen ciertas canciones por primera vez para informar a las entidades responsables de la gestión de derechos de autor. Esta información se recopila únicamente durante el primer uso y no almacenamos ningún dato sobre usted.",
+ "spanishFontType":3,
+ "chineseTText":"我們會在特定歌曲首次播放時收集並儲存不可識別、經過整合的資料,以便向音樂版權管理組織報告。此資料只會在首次使用時收集,且不會儲存與您有關的資訊。",
+ "chineseTFontType":1,
+ "koreanText":"당사는 특정 음악이 처음 플레이될 때 음악 저작권 관리 기관에 보고하기 위한 목적으로 개인 식별이 불가능한 종합적인 이용 내역 데이터를 수집하고 저장합니다. 이러한 데이터는 처음 이용 시에만 수집되고 귀하에 관한 정보는 전혀 저장되지 않습니다.",
+ "koreanFontType":2,
+ "portugueseText":"Coletamos e armazenamos dados não identificáveis de uso geral quando certas músicas são tocadas pela primeira vez para informar organizações de gestão de direitos musicais. Os dados são coletados apenas no primeiro uso e nenhuma informação sobre você é armazenada.",
+ "portugueseFontType":2,
+ "russianText":"Мы собираем и храним обезличенные данные о совокупной интенсивности использования, когда определенные композиции проигрываются впервые, чтобы предоставить соответствующие отчеты правообладателям таких композиций. Данные собираются только при первичном использовании, при этом ваши персональные данные не сохраняются.",
+ "russianFontType":2,
+ "turkishText":"Belirli şarkılar ilk kez çalındığında, müzik telif hakkı yönetim kuruluşlarına raporlamak üzere kimliği teşhir etmeyen toplu kullanım verilerini toplar ve saklarız. Veriler sadece ilk kullanımda toplanır ve hakkınızda hiçbir veri saklanmaz.",
+ "turkishFontType":2,
+ "arabicText":"نحن نجمع ونخزن بيانات استخدام مجمعة لا يمكنها تحديد الشخصية عند تشغيل أغانٍ محددة لأول مرة لتقديم تقارير إلى منظمات إدارة الحقوق الموسيقية. يتم جمع البيانات عند الاستخدام الأول فقط، ولا يتم تخزين أي معلومات عنك.",
+ "arabicFontType":2,
+ "dutchText":"Wij verzamelen en bewaren niet-identificeerbare, geaggregeerde gebruiksdata wanneer bepaalde nummers voor het eerst worden afgespeeld om dit te kunnen melden bij de beheerorganisaties van muziekrechten. Deze gegevens worden uitsluitend verzameld bij het eerste gebruik en er wordt geen informatie over u opgeslagen.",
+ "dutchFontType":2,
+ "chineseSText":"我们会在特定歌曲首次播放时收集并存储不可识别的整合使用数据,以便向音乐版权管理组织报告。我们只会在首次使用时收集数据,且不会存储与您有关的信息。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"privacy_7",
+ "japaneseText":"本件ゲームは、個人の特定ができない一部のゲームプレイデータを収集します。このデータは、ゲーム進行を記録するためにiCloudに保存され、アチーブメントやマルチプレイのためにGame Centerに保存されるものです。また、この個人を特定できないデータは、本件ゲームの運営における当社の正当な利益を目的として使われます。",
+ "englishUsText":"The Game collects certain non-identifiable gameplay data that is stored on iCloud for game progression and on Game Center for achievements and multiplayer. That non-identifiable data is used for the purpose of our legitimate interest in the operation of the Game.",
+ "englishUsFontType":3,
+ "frenchText":"Le Jeu nous permet également de recueillir un certain nombre de données anonymes quant à la jouabilité, qui sont conservées, pour ce qui est de la progression, sur iCloud et, en ce qui concerne les succès et les paramètres multijoueurs, sur Game Center. L'utilisation de ces données anonymes constitue un de nos intérêts légitimes pour exploiter le Jeu.",
+ "frenchFontType":3,
+ "italianText":"Il Gioco raccoglie determinati dati di gioco non identificabili che sono archiviati su iCloud per i progressi di gioco e su Game Center per obiettivi e partite multigiocatore. Tali dati non identificabili sono utilizzati ai fini del nostro legittimo interesse per il funzionamento del Gioco.",
+ "italianFontType":3,
+ "germanText":"Das Spiel erhebt bestimmte nicht identifizierbare Gameplay-Daten, die auf iCloud für Spielstände und auf Game Center für Erfolge und Mehrspieler-Modi gespeichert werden. Diese nicht identifizierbaren Daten werden zur Verfolgung unserer berechtigten Interessen beim Betrieb des Spiels gespeichert.",
+ "germanFontType":3,
+ "spanishText":"Se recopilan determinados datos de uso no identificables que se almacenan en iCloud para avanzar en el Juego y en Game Center en el caso de los logros y del sistema multijugador. La información no identificable se usa en nuestro interés legítimo para el correcto funcionamiento del Juego.",
+ "spanishFontType":3,
+ "chineseTText":"遊戲將收集儲存在 iCloud 中與遊戲進度有關以及 Game Center 中與成就和多人遊戲有關的特定不可識別遊戲資料。不可識別資料將用於維護我們在遊戲營運過程中的合法利益。",
+ "chineseTFontType":1,
+ "koreanText":"본 게임은 게임 진행 상황을 위해 iCloud에 저장되는 정보와 성취 및 멀티 플레이를 위해 Game Center에 저장되는 정보와 같이 개인 식별이 불가능한 특정 게임 플레이 데이터를 수집합니다. 이러한 개인 식별이 불가능한 데이터는 게임 운영과 관련하여 정당한 관심 측면에서 이용됩니다.",
+ "koreanFontType":2,
+ "portugueseText":"O Jogo coleta certos dados não identificáveis de jogabilidade que são armazenados no iCloud para manter o progresso do jogo e na Central de Jogos para conquistas e multijogador. Esses dados não identificáveis são utilizados para atender nosso interesse legítimo em manter a operação do Jogo.",
+ "portugueseFontType":2,
+ "russianText":"В ходе Игры собираются определенные обезличенные игровые данные, сохраняющиеся в iCloud для учета прохождения Игры, а также в Game Center для регистрации игровых достижений и сетевой игры. Такие обезличенные данные используются согласно нашему законному праву на обеспечение функционирования Игры.",
+ "russianFontType":2,
+ "turkishText":"Oyun, kimliği teşhir etmeyen belirli oyun verilerini toplar ve bu veriler iCloud'da oyun ilerlemesi için, Game Center'da ise elde edilen başarı ve çoklu oyuncu modu için saklanır. Kimliği teşhir etmeyen bu veriler, Oyun faaliyetlerinde meşru menfaatlerimiz amacıyla kullanılır.",
+ "turkishFontType":2,
+ "arabicText":"تجمع اللعبة بعض بيانات لعب محددة لا يمكنها تحديد الشخصية والتي يتم تخزينها على iCloud لتقدم اللعبة وعلى Game Center للإنجازات واللاعبين المتعددين. تُستخدم هذه البيانات التي لا يمكنها تحديد الشخصية لغرض مصلحتنا المشروعة في تشغيل اللعبة.",
+ "arabicFontType":2,
+ "dutchText":"De Game slaat bepaalde niet-identificeerbare spelgegevens op in iCloud omwille van de spelvoortgang en in Game Center omwille van achievements en multiplayer. Deze niet-identificeerbare gegevens gebruiken we voor ons legitieme belang bij het functioneren van de Game.",
+ "dutchFontType":2,
+ "chineseSText":"游戏会收集存储在 iCloud 中与游戏进度有关以及 Game Center 中与成就和多人游戏相关的不可识别游戏数据。不可识别的数据将用于维护我们运营游戏过程中的合法权益。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"privacy_8",
+ "japaneseText":"Appleのサービスで保存されるデータについて、詳しくはAppleのプライバシーポリシーをご参照ください。",
+ "englishUsText":"For information on any data stored by Apple services, please refer to Apple’s privacy policy.",
+ "englishUsFontType":3,
+ "frenchText":"Pour toute information concernant les données que les services d'Apple conservent, veuillez consulter la politique de confidentialité d'Apple.",
+ "frenchFontType":3,
+ "italianText":"Per informazioni su tutti i dati archiviati dai servizi Apple, si rimanda all'Informativa sulla privacy di Apple.",
+ "italianFontType":3,
+ "germanText":"Informationen über Daten, die bei Apple-Diensten gespeichert werden, finden Sie in der Datenschutzerklärung von Apple.",
+ "germanFontType":3,
+ "spanishText":"Consulte la política de privacidad de Apple para informarse sobre los datos que almacenan los servicios de Apple.",
+ "spanishFontType":3,
+ "chineseTText":"如需獲取有關由 Apple 服務儲存的任何資料的資訊,請參閱 Apple 的私隱政策。",
+ "chineseTFontType":1,
+ "koreanText":"Apple 서비스에 저장되는 모든 데이터에 관한 정보는 Apple의 개인정보 처리방침을 참조하십시오.",
+ "koreanFontType":2,
+ "portugueseText":"Para obter informações sobre quaisquer dados armazenados pelos serviços da Apple, queira consultar a política de privacidade da Apple.",
+ "portugueseFontType":2,
+ "russianText":"Для получения информации о каких-либо данных, хранящихся в службах Apple, обратитесь к Политике конфиденциальности Apple.",
+ "russianFontType":2,
+ "turkishText":"Apple hizmetleri tarafından saklanan diğer veri bilgileri için lütfen Apple'ın gizlilik politikasına göz atın.",
+ "turkishFontType":2,
+ "arabicText":"لمعرفة معلومات عن أي بيانات مخزنة بواسطة خدمات Apple، يُرجى الرجوع إلى سياسة خصوصية Apple.",
+ "arabicFontType":2,
+ "dutchText":"Voor informatie over eventuele gegevens die door de services van Apple worden bewaard, verwijzen wij u naar het privacybeleid van Apple.",
+ "dutchFontType":2,
+ "chineseSText":"如需了解与 Apple 服务存储的任何数据相关的信息,请参阅 Apple 的隐私政策。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"privacy_9",
+ "japaneseText":"お客様がカスタマーサポートを通じて当社に連絡された場合、当社は、カスタマーサポートのウェブページにあるプライバシーポリシーに従って、お客様の個人情報を使用します。こちらのプライバシーポリシーは、https://legal.bandainamcoent.co.jp/privacyでご覧いただけます。 ",
+ "englishUsText":"If you contact us through customer support, our use of your personal information is covered by the privacy policy located on the customer support webpage. It is available at this link: https://legal.bandainamcoent.co.jp/privacy.",
+ "englishUsFontType":3,
+ "frenchText":"Si vous nous contactez par l'intermédiaire de l'assistance client, l'utilisation que nous faisons de vos données à caractère personnel est régie par la politique de confidentialité de ce service, que vous pouvez consulter à l'adresse suivante : https://legal.bandainamcoent.co.jp/privacy/ . ",
+ "frenchFontType":3,
+ "italianText":"Se l'Utente ci contatta tramite l'assistenza clienti, il nostro utilizzo delle sue informazioni personali è coperto dall'Informativa sulla privacy riportata sulla pagina Web dell'assistenza clienti. Questa è consultabile al link: https://legal.bandainamcoent.co.jp/privacy. ",
+ "italianFontType":3,
+ "germanText":"Wenn Sie sich an unseren Kunden-Support wenden, ist unsere Nutzung Ihrer personenbezogenen Daten durch die Datenschutzerklärung auf der Kunden-Support-Website gedeckt. Sie ist unter diesem Link zu finden: https://legal.bandainamcoent.co.jp/privacy.",
+ "germanFontType":3,
+ "spanishText":"Si se pone en contacto con nosotros a través del servicio de asistencia al cliente, nuestro uso de su información personal se regirá por la política de privacidad disponible en la página web de dicho servicio. Puede consultarla en este enlace: https://legal.bandainamcoent.co.jp/privacy. ",
+ "spanishFontType":3,
+ "chineseTText":"如果您透過客戶支援與我們聯絡,可以在客戶支援頁面查看私隱政策,其中敘述了我們使用您個人資訊的相關規定。您可造訪此連結查閱:https://legal.bandainamcoent.co.jp/privacy/。",
+ "chineseTFontType":1,
+ "koreanText":"고객 지원을 통해 당사에 연락한 경우에 귀하가 제공한 개인 정보를 당사에서 사용하는 방식은 고객 지원 웹페이지의 개인정보 처리방침을 따릅니다. 해당 내용은 https://legal.bandainamcoent.co.jp/privacy에서 확인할 수 있습니다. ",
+ "koreanFontType":2,
+ "portugueseText":"Se entrar em contato conosco por meio do suporte ao cliente, nosso uso de suas informações pessoais estará coberto pela política de privacidade localizada na página da Web de suporte ao cliente. Ela está disponível neste link: https://legal.bandainamcoent.co.jp/privacy.",
+ "portugueseFontType":2,
+ "russianText":"Ваши персональные данные, полученные при вашем обращении к нам посредством службы поддержки клиентов, используются нами согласно Политике конфиденциальности, размещенной на веб-странице службы поддержки клиентов. Доступно по этой ссылке: https://legal.bandainamcoent.co.jp/privacy.",
+ "russianFontType":2,
+ "turkishText":"Müşteri desteği hattından bize ulaşıyorsanız kişisel bilgilerinizi kullanımımız, müşteri desteği internet sayfasında yer alan gizlilik politikası kapsamında değerlendirilecektir. Bu bağlantıdan ulaşabilirsiniz: https://legal.bandainamcoent.co.jp/privacy. ",
+ "turkishFontType":2,
+ "arabicText":"إن اتصلت بنا من خلال دعم العملاء، فإن استخدامنا لمعلوماتك الشخصية مشمول بسياسة الخصوصية الموجودة على الموقع الإلكتروني لدعم العملاء. متاح على هذا الرابط: https://legal.bandainamcoent.co.jp/privacy. ",
+ "arabicFontType":2,
+ "dutchText":"Indien u contact opneemt met onze klantenservice: ons gebruik van uw persoonsgegevens wordt beschreven in het Privacybeleid dat te vinden is op onze klantenservice-webpagina. Dit kunt u hier inzien: https://legal.bandainamcoent.co.jp/privacy. ",
+ "dutchFontType":2,
+ "chineseSText":"如果您通过客户支持联系我们,则可参阅客户支持页面的隐私政策,其中载明了我们对您个人信息使用的相关规定。您可点击此链接查看:https://legal.bandainamcoent.co.jp/privacy/ ",
+ "chineseSFontType":4
+ },
+ {
+ "key":"privacy_10",
+ "japaneseText":"II.データ保護の権利",
+ "englishUsText":"II.Data Protection Rights",
+ "englishUsFontType":3,
+ "frenchText":"II.Droits en matière de protection des données",
+ "frenchFontType":3,
+ "italianText":"II.Diritti di tutela dei dati",
+ "italianFontType":3,
+ "germanText":"II.Datenschutzrechte",
+ "germanFontType":3,
+ "spanishText":"II.Derechos de protección de datos",
+ "spanishFontType":3,
+ "chineseTText":"II.數據保護權",
+ "chineseTFontType":1,
+ "koreanText":"II.데이터 보호 권한",
+ "koreanFontType":2,
+ "portugueseText":"II.Direitos sobre a proteção de dados",
+ "portugueseFontType":2,
+ "russianText":"II.Права на защиту данных",
+ "russianFontType":2,
+ "turkishText":"II.Veri Koruma Hakları",
+ "turkishFontType":2,
+ "arabicText":"II.حقوق حماية البيانات\n",
+ "arabicFontType":2,
+ "dutchText":"II.Gegevensbeschermingsrechten",
+ "dutchFontType":2,
+ "chineseSText":"II.数据保护权",
+ "chineseSFontType":4
+ },
+ {
+ "key":"privacy_11",
+ "japaneseText":"お客様、およびお客様の法定後見人(お客様が未成年者の場合)は、適用される法律に基づきデータ保護に関する一定の権利を行使できる場合があります。適用される法律に基づくお客様の権利には、以下が含まれる場合があります。",
+ "englishUsText":"You, and your legal guardian if you are a minor, may be able to exercise certain data protection rights under applicable law. Your rights under applicable law may include:",
+ "englishUsFontType":3,
+ "frenchText":"Vous et votre tuteur légal, si vous êtes mineur, disposez de certains droits en matière de protection des données conformément aux lois applicables. Ces droits peuvent inclure :",
+ "frenchFontType":3,
+ "italianText":"L'Utente e il proprio tutore legale, qualora l'Utente fosse minorenne, godono determinati diritti di tutela dei dati in base alle leggi applicabili, quali:",
+ "italianFontType":3,
+ "germanText":"Sie und Ihr gesetzlicher Vormund, falls Sie minderjährig sind, haben bestimmte Datenschutzrechte gemäß geltendem Recht. Zu Ihren Rechten unter geltendem Recht können zählen:",
+ "germanFontType":3,
+ "spanishText":"Usted, y su tutor legal si es menor, ejercen determinados derechos de protección de datos según la legislación aplicable. Entre otros, sus derechos de conformidad con la legislación aplicable pueden ser:",
+ "spanishFontType":3,
+ "chineseTText":"您若是未成年人,您與您的監護人在適用法律項下有某些數據保護權利,您在適用法律項下的權利包括:",
+ "chineseTFontType":1,
+ "koreanText":"귀하(귀하가 미성년자라면 귀하의 법정대리인)는 관련 법에 따른 데이터 보호 권한이 있습니다. 관련 법에 따라 보장되는 권한에는 다음이 포함될 수 있습니다:",
+ "koreanFontType":2,
+ "portugueseText":"Você, e seu guardião legal caso seja menor de idade, têm direitos específicos em relação à proteção de dados de acordo com a legislação em vigor. Segundo a legislação, seus direitos podem incluir:",
+ "portugueseFontType":2,
+ "russianText":"В соответствии с действующим законодательством вы и ваш законный опекун (если вы являетесь несовершеннолетним лицом) имеете определенные права на защиту данных. Ваши права в соответствии с действующим законодательством могут включать:",
+ "russianFontType":2,
+ "turkishText":"Siz ve reşit değilseniz yasal vasiniz, yürürlükteki yasalar çerçevesinde belirli veri koruma haklarını kullanabilirsiniz. Yürürlükteki yasalar çerçevesinde haklarınız şunları içerebilir:",
+ "turkishFontType":2,
+ "arabicText":"تتمتع أنت وولي أمرك القانوني، إذا كنت قاصرًا، بحقوق معينة لحماية البيانات، بموجب القانون المعمول به. قد تتضمن حقوقك بموجب القانون المعمول به ما يلي:\n",
+ "arabicFontType":2,
+ "dutchText":"U, en indien u minderjarig bent uw wettelijke voogd, kunt mogelijk onder toepasselijke wetgeving bepaalde gegevensbeschermingsrechten uitoefenen. Uw rechten onder toepasselijke wetgeving kunnen het volgende omvatten:",
+ "dutchFontType":2,
+ "chineseSText":"您若是未成年人,您与您的监护人拥有适用法律项下的某些数据保护权利。您在适用法律项下的权利包括:",
+ "chineseSFontType":4
+ },
+ {
+ "key":"privacy_12",
+ "japaneseText":"·お客様について弊社が処理する個人情報へのアクセス、およびデータポータビリティの権利",
+ "englishUsText":"·Access to the personal information we process about you as well as the right to data portability,",
+ "englishUsFontType":3,
+ "frenchText":"·Le droit d'accès aux données personnelles vous concernant que nous traitons, ainsi que le droit à la portabilité des données ;",
+ "frenchFontType":3,
+ "italianText":"·il diritto di accesso alle informazioni personali da noi trattate sul suo conto, come pure il diritto alla portabilità dei dati,",
+ "italianFontType":3,
+ "germanText":"·Das Recht auf Zugriff auf Ihre personenbezogenen Daten, die wir verarbeiten, sowie das Recht auf Datenübertragbarkeit;",
+ "germanFontType":3,
+ "spanishText":"·Acceso a la información personal que procesemos sobre usted, así como derecho a la portabilidad de datos;",
+ "spanishFontType":3,
+ "chineseTText":"·存取我們處理的關於您的個人資料,以及有權進行數據遷移;",
+ "chineseTFontType":1,
+ "koreanText":"·당사가 처리하고 있는 귀하의 개인정보에 대한 열람권 및 개인정보 이동권",
+ "koreanFontType":2,
+ "portugueseText":"·O acesso às informações pessoais que processamos a seu respeito, bem como o direito à portabilidade dos dados; ",
+ "portugueseFontType":2,
+ "russianText":"·доступ к обрабатываемой нами вашей личной информации, а также право на переносимость данных; ",
+ "russianFontType":2,
+ "turkishText":"·Hakkınızda işlediğimiz kişisel bilgilere erişim ve ayrıca veri taşınabilirliği hakkı,",
+ "turkishFontType":2,
+ "arabicText":"·الوصول للمعلومات الشخصية التي نعالجها عنك وكذلك الحق في إمكانية نقل البيانات، \n",
+ "arabicFontType":2,
+ "dutchText":"·Het recht tot toegang tot de persoonsgegevens welke we over u verwerken evenals het recht tot gegevensoverdraagbaarheid,",
+ "dutchFontType":2,
+ "chineseSText":"·访问我们处理的关于您的个人信息,以及有权进行数据迁移;",
+ "chineseSFontType":4
+ },
+ {
+ "key":"privacy_13",
+ "japaneseText":"·個人情報の修正または消去を行わせる権利",
+ "englishUsText":"·The right to have personal information corrected or erased,",
+ "englishUsFontType":3,
+ "frenchText":"·Le droit de faire corriger ou supprimer vos données personnelles ;",
+ "frenchFontType":3,
+ "italianText":"·il diritto di richiedere la correzione o l’eliminazione delle proprie informazioni personali,",
+ "italianFontType":3,
+ "germanText":"·Das Recht, personenbezogene Daten berichtigen oder löschen zu lassen;",
+ "germanFontType":3,
+ "spanishText":"·El derecho a corregir o eliminar información personal;",
+ "spanishFontType":3,
+ "chineseTText":"·有權改正或清除個人資料;",
+ "chineseTFontType":1,
+ "koreanText":"·개인정보 수정 또는 삭제 권한",
+ "koreanFontType":2,
+ "portugueseText":"·O direito de ter informações pessoais corrigidas ou apagadas; ",
+ "portugueseFontType":2,
+ "russianText":"·право на исправление или удаление личной информации; ",
+ "russianFontType":2,
+ "turkishText":"·Kişisel bilgilerinizi düzeltme veya sildirme hakkı,",
+ "turkishFontType":2,
+ "arabicText":"·الحق في تصحيح المعلومات الشخصية أو محوها، \n",
+ "arabicFontType":2,
+ "dutchText":"·Het recht om persoonsgegevens te laten rectificeren of wissen,",
+ "dutchFontType":2,
+ "chineseSText":"·有权改正或删除个人信息;",
+ "chineseSFontType":4
+ },
+ {
+ "key":"privacy_14",
+ "japaneseText":"·個人情報の処理を制限する権利",
+ "englishUsText":"·The right to restrict the processing of your personal information",
+ "englishUsFontType":3,
+ "frenchText":"·Le droit de limiter le traitement de vos données personnelles ;",
+ "frenchFontType":3,
+ "italianText":"·il diritto di limitare il trattamento delle proprie informazioni personali,",
+ "italianFontType":3,
+ "germanText":"·Das Recht, die Verarbeitung Ihrer personenbezogenen Daten einschränken zu lassen;",
+ "germanFontType":3,
+ "spanishText":"·El derecho a restringir el procesamiento de su información personal.;",
+ "spanishFontType":3,
+ "chineseTText":"·有權限制處理您的個人資料;",
+ "chineseTFontType":1,
+ "koreanText":"·귀하의 개인정보 처리를 제한할 권한",
+ "koreanFontType":2,
+ "portugueseText":"·O direito de restringir o processamento das suas informações pessoais;",
+ "portugueseFontType":2,
+ "russianText":"·право ограничить обработку вашей личной информации;",
+ "russianFontType":2,
+ "turkishText":"·Kişisel bilgilerinizin işlenmesini sınırlandırma hakkı",
+ "turkishFontType":2,
+ "arabicText":"·الحد في تقييد معالجة معلوماتك الشخصية\n",
+ "arabicFontType":2,
+ "dutchText":"·Het recht om de verwerking van uw persoonsgegevens te beperken,",
+ "dutchFontType":2,
+ "chineseSText":"·有权限制处理您的个人信息;",
+ "chineseSFontType":4
+ },
+ {
+ "key":"privacy_15",
+ "japaneseText":"·弊社がお客様から得た同意をいつでも取り下げる権利。ただし、これによっても、取り下げ前に行われた処理の合法性は影響を受けないものとします。",
+ "englishUsText":"·The right to withdraw your consent at any time for consent we have obtained from you, although this will not affect the lawfulness of the processing prior to the withdrawal.",
+ "englishUsFontType":3,
+ "frenchText":"·Le droit de retirer à tout moment le consentement que vous nous avez accordé, sans que cela n’affecte la légalité du traitement de vos données personnelles effectué avant ce retrait ;",
+ "frenchFontType":3,
+ "italianText":"·il diritto di revocare in qualunque momento il consenso accordatoci, sebbene tale revoca non pregiudichi la legittimità del trattamento precedente alla revoca.",
+ "italianFontType":3,
+ "germanText":"·Das Recht, Ihre Einwilligung zu widerrufen, zu einem jeglichen Zeitpunkt, für Einwilligungen, die wir von Ihnen erhalten haben, wobei dies nicht die Rechtmäßigkeit der Verarbeitung vor dem Widerruf beeinflusst.",
+ "germanFontType":3,
+ "spanishText":"·El derecho a retirar el consentimiento que hayamos recibido de usted en cualquier momento aunque ello no afectará a la legitimidad del procesamiento con anterioridad al momento en que lo retire;",
+ "spanishFontType":3,
+ "chineseTText":"·有權隨時撤回我們獲得的您的同意,儘管撤回前不會影響處理的合法性。",
+ "chineseTFontType":1,
+ "koreanText":"·당사가 귀하로부터 확보한 동의를 언제라도 철회할 수 있는 권한. 철회 표명 이전의 데이터 처리의 합법성에는 영향을 미치지 않습니다.",
+ "koreanFontType":2,
+ "portugueseText":"·O direito de, a qualquer tempo, revogar o consentimento que obtivemos de você, embora isso não vá afetar a legalidade do processamento anterior à retirada; ",
+ "portugueseFontType":2,
+ "russianText":"·право в любое время отозвать ваше согласие, имея в виду что такой отзыв не повлияет на законность обработки данных, осуществленной до отзыва вашего согласия; ",
+ "russianFontType":2,
+ "turkishText":"·Sizden alınan izni istediğiniz zaman geri çekme hakkı. Ancak bu durum, izin geri çekilmeden önceki veri işleme işlemlerini gayrimeşru kılmaz.",
+ "turkishFontType":2,
+ "arabicText":"·الحق في سحب موافقتك في أي وقت للحصول على الموافقة التي حصلنا عليها منك، على الرغم من أن هذا لن يؤثر على قانونية المعالجة قبل الانسحاب. \n",
+ "arabicFontType":2,
+ "dutchText":"·Het recht om te allen tijde de van u verkregen toestemming in te trekken, met dien verstande dat dit niet van invloed is op de rechtmatigheid van de verwerking voorafgaand aan de intrekking.",
+ "dutchFontType":2,
+ "chineseSText":"·有权随时撤销本公司获得的您的同意,尽管撤销前不会影响处理的合法性。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"privacy_16",
+ "japaneseText":"·また、お客様には、BNEIの正当な利益を根拠とするお客様の個人情報の処理に対していつでも異議を申し立てられる権利もあります。",
+ "englishUsText":"·You have also have the right to object, at any time, to the processing of your personal information which is based on BNEI’s legitimate interests.",
+ "englishUsFontType":3,
+ "frenchText":"·Le droit de vous opposer à tout moment au traitement de vos données personnelles dans le cadre des intérêts légitimes de BNEI ;",
+ "frenchFontType":3,
+ "italianText":"·L’Utente ha diritto di opporsi in qualsiasi momento al trattamento dei propri dati personali anche quando tale trattamento avvenga nel rispetto degli interessi legittimi di BNEI.",
+ "italianFontType":3,
+ "germanText":"·Sie haben auch das Recht, zu einem jeglichen Zeitpunkt der Verarbeitung Ihrer personenbezogenen Daten basierend auf berechtigtem Interesse von BNEI zu widersprechen.",
+ "germanFontType":3,
+ "spanishText":"·También tiene derecho a oponerse, en todo momento, al procesamiento de su información personal que se base en los intereses legítimos de BNEI.",
+ "spanishFontType":3,
+ "chineseTText":"·您還有權隨時反對處理您的個人資料",
+ "chineseTFontType":1,
+ "koreanText":"·BNEI의 합법적인 이익을 위해 실시되는 귀하의 개인정보 처리에 대한 이의 제기 권한",
+ "koreanFontType":2,
+ "portugueseText":"·Você também tem o direito de discordar, a qualquer tempo, do processamento das suas informações pessoais, o qual tem como base os interesses legítimos da BNEI; ",
+ "portugueseFontType":2,
+ "russianText":"·вы также имеете право в любое время возражать против обработки вашей личной информации, основанной на законных интересах BNEI; ",
+ "russianFontType":2,
+ "turkishText":"·Ayrıca BNEI'nin yasal çıkarlarını temel alarak işlenen kişisel bilgilerinizin işlenmesine istediğiniz zaman itiraz etme hakkına sahipsiniz.",
+ "turkishFontType":2,
+ "arabicText":"·تتمتع أيضًا بحق الاعتراض، في أي وقت، على معالجة معلوماتك الشخصية التي تستند على مصالح مشروعة لشركة BNEI. \n",
+ "arabicFontType":2,
+ "dutchText":"·U hebt tevens het recht om te allen tijde bezwaar te maken tegen de verwerking van uw persoonsgegevens, welke gebaseerd is op het legitieme belang van BNEI.",
+ "dutchFontType":2,
+ "chineseSText":"·您还有权随时反对处理您的个人信息",
+ "chineseSFontType":4
+ },
+ {
+ "key":"privacy_17",
+ "japaneseText":"·弊社がダイレクトマーケティングの目的で(ダイレクトマーケティングに関係する限りにおいて、プロファイリングする目的も含まれます)お客様の個人情報を処理する場合、お客様には、当該処理に異議を申し立てる権利があります。お客様がダイレクトマーケティング目的での処理に異議を申し立てた場合、弊社は、それ以降その目的でお客様の個人情報を処理することはありません。その場合でも、弊社から取引関係に関するメッセージを送ることがありますが、継続中の取引関係に関するメッセージのみをお送りします。",
+ "englishUsText":"·Where we process your personal information for direct marketing purposes, you have the right to object at any time to such processing, including for profiling purposes to the extent that it is related to direct marketing. If you object to processing for direct marketing purposes, we will no longer process your personal information for such purposes. In that case we may still send you transactional or relationship messages, but only about our ongoing business relations.",
+ "englishUsFontType":3,
+ "frenchText":"·Le droit de vous opposer à tout moment au traitement de vos données personnelles à des fins de marketing direct et notamment à votre profilage. En cas d'opposition de votre part, nous cesserons tout traitement de vos données personnelles aux fins susmentionnées. Nous pourrons cependant continuer à vous adresser des messages d'information ou relatifs à vos transactions dans le cadre exclusif de nos relations commerciales en cours.",
+ "frenchFontType":3,
+ "italianText":"·Quando trattiamo i dati personali dell’Utente per finalità di marketing, l’Utente ha diritto di opporsi in qualsiasi momento a tale trattamento (incluso il caso di elaborazione a scopo di profilazione) in misura consona alle finalità di marketing. Se l’Utente si oppone al trattamento per finalità di marketing, i suoi dati personali non saranno più trattati a tali scopi. Potremmo comunque inviargli dei messaggi relativi a eventuali transazioni o a relazioni commerciali in corso.",
+ "italianFontType":3,
+ "germanText":"·Wenn wir Ihre personenbezogenen Daten für Zwecke des Direktmarketings verwenden, haben Sie das Recht, dieser Verarbeitung, einschließlich zu Zwecken der Profilerstellung in einem Sinne, der mit dem Direktmarketing in Verbindung steht, zu einem jeglichen Zeitpunkt zu widersprechen. Wenn Sie der Bearbeitung für Zwecke des Direktmarketings widersprechen, werden wir Ihre personenbezogenen Daten nicht weiter für diese Zwecke verarbeiten. In diesem Fall können wir Ihnen weiterhin Nachrichten zum Zwecke von Transaktionen oder zu anderen Belangen senden, dies jedoch ausschließlich zu laufenden Geschäftsbeziehungen.",
+ "germanFontType":3,
+ "spanishText":"·Si procesamos su información personal con fines de marketing directo, tiene derecho a oponerse en todo momento a dicho procesamiento, incluso con fines de creación de perfiles en la medida en que esto esté relacionado con el marketing directo. Si se opone al procesamiento con fines de marketing directo, ya no procesaremos su información personal para tal fin. En ese caso, seguiremos pudiendo enviarle mensajes transaccionales o relacionales, pero solo sobre nuestras relaciones comerciales en curso.",
+ "spanishFontType":3,
+ "chineseTText":"·如果我們出於直銷目的處理您的個人資料,您有權隨時提出反對這類處理,包括與直銷有關的個人資料的創建。如果您反對為直銷目的而處理個人資料,本公司將不再為此處理您的個人資料。在這種情況下,我們仍將向您傳送事務性或關聯性訊息,但僅與我們的持續業務關係相關。",
+ "chineseTFontType":1,
+ "koreanText":"·직접 마케팅을 위해 당사가 귀하의 개인정보를 처리하는 경우, 직접 마케팅과 관련된 프로파일링 목적을 위한 처리를 포함한 정보 처리에 대해 이의를 제기할 권한. 이러한 직접 마케팅을 위한 정보 처리에 이의를 제기하는 경우 당사는 해당 목적을 위한 귀하의 개인정보 처리를 더 이상 실시하지 않을 것입니다. 이러한 경우 당사는 거래 및 당사가 계속 진행하는 사업과 관련된 메시지만 귀하에게 발송합니다.",
+ "koreanFontType":2,
+ "portugueseText":"·Nos casos em que processamos suas informações pessoais para fins de marketing direto, você tem o direito de discordar, a qualquer tempo, de tal processamento, incluindo para fins de definição de perfil na medida em que isso esteja relacionado a esse marketing direto. Se você discordar do processamento para fins de marketing direto, não mais processaremos suas informações pessoais para tal. Nesse caso, ainda podemos enviar a você mensagens transacionais ou de relacionamento, mas apenas sobre nossas relações comerciais em andamento.",
+ "portugueseFontType":2,
+ "russianText":"·если мы обрабатываем вашу личную информацию в целях прямого маркетинга, вы имеете право в любое время возражать против такой обработки, в том числе против обработки данных, осуществляемых с целью профилирования (в той мере, в какой она связана с прямым маркетингом). Если вы возражаете против обработки в целях прямого маркетинга, мы больше не будем обрабатывать вашу личную информацию для таких целей. При этом мы по-прежнему можем отправлять вам сообщения об операциях и отношениях, однако речь в них будет идти исключительно о текущих деловых отношениях.",
+ "russianFontType":2,
+ "turkishText":"·Kişisel bilgilerinizi pazarlama amacıyla işlediğimiz durumlarda, doğrudan pazarlama ile bağlantılı olduğu ölçüde profil çıkarma dahil olmak üzere bu tür bilgi işleme süreçlerine istediğiniz zaman itiraz etme hakkınız vardır. Bilgilerinizin doğrudan pazarlama amaçlarıyla işlenmesine itiraz ederseniz kişisel bilgileriniz artık bu amaçla işlenmeyecektir. Bu durumda size ancak devam eden iş bağlantılarıyla ilgili olmak şartıyla işlemlerinizle ve bağlantılarınızla ilgili mesaj gönderebiliriz.",
+ "turkishFontType":2,
+ "arabicText":"·عندما نعالج معلوماتك الشخصية لأغراض تسويقية مباشرة، تتمتع بحق الاعتراض في أي وقت على هذه المعالجة، بما في ذلك أغراض التوسيم إلى الحد الذي ترتبط فيه بالتسويق المباشر. إذا اعترضت على معالجة الأغراض التسويقية المباشرة، فلن نعالج بعد الآن معلوماتك الشخصية لهذه الأغراض. في هذه الحالة، قد نرسل لك رسائل المعاملات أو العلاقات، ولكن فقط حول علاقات العمل الجارية لدينا.",
+ "arabicFontType":2,
+ "dutchText":"·Wanneer wij persoonsgegevens verwerken ten behoeve van direct marketing, hebt u te allen tijde het recht bezwaar te maken tegen een dergelijke verwerking, met inbegrip van profilering die betrekking heeft op direct marketing. Wanneer u bezwaar maakt tegen verwerking voor direct marketing, zullen wij niet langer uw persoonsgegevens verwerken voor dergelijke doeleinden. In dat geval kunnen we u mogelijk nog steeds transactie- of relationele berichten sturen, maar uitsluitend over onze lopende zakelijke relatie.",
+ "dutchFontType":2,
+ "chineseSText":"·如果我们处理您的个人信息以进行直销,则您有权随时反对这类处理,包括与直销有关的个人资料的创建。如果您反对为了直销而处理个人信息,本公司将不再出于该等目的处理您的个人数据。在这种情况下,我们仍将向您发送事务性或关联性信息,但仅与我们持续的业务关系有关。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"privacy_18",
+ "japaneseText":"これらの権利を行使するには、以下の連絡先情報をお使いの上で、要求を行ってください。弊社によるお客様の要求の取り扱い方にご満足いただけない場合、お客様の居住国の監督機関に対して苦情を申し立てることができます。",
+ "englishUsText":"To exercise these rights, you should make a request using our contact details set out below. If you are not satisfied with the way we handle your request, you may lodge a complaint with a supervisory authority in your country of residence.",
+ "englishUsFontType":3,
+ "frenchText":"Afin d’exercer ces droits, vous devez présenter une requête en utilisant les coordonnées indiquées ci-après. Si la manière dont nous traitons votre requête ne vous satisfait pas, vous pourrez présenter une réclamation auprès de l’autorité de supervision de votre pays de résidence.",
+ "frenchFontType":3,
+ "italianText":"Per esercitare tali diritti l’Utente deve inviare una richiesta utilizzando i dati di contatto forniti di seguito. Se non è soddisfatto del modo in cui trattiamo la sua richiesta, può presentare un reclamo all'autorità di vigilanza del suo Paese di residenza.",
+ "italianFontType":3,
+ "germanText":"Um diese Rechte in Anspruch zu nehmen, stellen Sie einen entsprechenden Antrag über die unten angegebenen Kontaktdaten. Wenn Sie mit der Art, wie Ihr Antrag behandelt wird, nicht zufrieden sind, können Sie eine Beschwerde bei der Aufsichtsbehörde Ihres Wohnsitzlandes einreichen.",
+ "germanFontType":3,
+ "spanishText":"Para ejercer estos derechos, debe realizar una solicitud a través de nuestros datos de contacto indicados más adelante. Si no queda satisfecho con la forma en que gestionemos su solicitud, puede presentar una reclamación ante una autoridad de control de su país de residencia.",
+ "spanishFontType":3,
+ "chineseTText":"如要行使這些權利,您應通過下方載列的連絡人詳細資料提出請求。如果您對我們處理您請求的方式不滿意,您可向您居住國家的監管機構提出訴訟。",
+ "chineseTFontType":1,
+ "koreanText":"이러한 권한을 행사하려면 아래의 연락처로 당사에 요청해야 합니다. 귀하의 요청에 대한 당사의 처리 방식이 마음에 들지 않을 경우 해당 거주 국가의 감독 당국에 불만 사항을 제출할 수 있습니다. ",
+ "koreanFontType":2,
+ "portugueseText":"Para exercer esses direitos, você deve fazer uma solicitação usando nossas informações de contato indicadas abaixo. Se achar que não lidamos direito com sua solicitação, você poderá fazer uma reclamação com a autoridade supervisora pertinente no seu país de domicílio.",
+ "portugueseFontType":2,
+ "russianText":"Свои запросы и требования можно направлять по адресу ppolicy@bandainamcoent.co.jp. ",
+ "russianFontType":2,
+ "turkishText":"Bu hakları kullanmak için aşağıda belirtilen iletişim detaylarını kullanarak bir talep oluşturmanız gerekir. Talebinizin işlenişi sizi memnun etmezse ikamet ettiğiniz ülkedeki denetleme mercilerine şikayette bulunabilirsiniz.",
+ "turkishFontType":2,
+ "arabicText":"إذا كان لديك مثل هذا الطلب، يمكنك إرسال طلباتك إلى ppolicy@bandainamcoent.co.jp. \n",
+ "arabicFontType":2,
+ "dutchText":"Om deze rechten uit te oefenen, dient u een verzoek in te dienen met behulp van de onderstaande contactgegevens. Indien u niet tevreden bent over de manier waarop we uw verzoek afhandelen, kunt u een klacht indienen bij de toezichthoudende autoriteit in het land waar u woonachtig bent.",
+ "dutchFontType":2,
+ "chineseSText":"如需行使这些权利,您应通过我们载列在下方的联系信息作出请求。如果您对我们处理您请求的方式不满意,您可向您居住国的监管机构提起诉讼。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"privacy_19",
+ "japaneseText":"III.連絡先",
+ "englishUsText":"III.Contact",
+ "englishUsFontType":3,
+ "frenchText":"III.Nous contacter",
+ "frenchFontType":3,
+ "italianText":"III.Contatti",
+ "italianFontType":3,
+ "germanText":"III.Kontakt",
+ "germanFontType":3,
+ "spanishText":"III.Contacto",
+ "spanishFontType":3,
+ "chineseTText":"III.聯絡資料",
+ "chineseTFontType":1,
+ "koreanText":"III.연락처",
+ "koreanFontType":2,
+ "portugueseText":"III.Contato",
+ "portugueseFontType":2,
+ "russianText":"III.Контактные данные",
+ "russianFontType":2,
+ "turkishText":"III.İletişim",
+ "turkishFontType":2,
+ "arabicText":"III.التواصل\n",
+ "arabicFontType":2,
+ "dutchText":"III.Contact",
+ "dutchFontType":2,
+ "chineseSText":"III.联系信息",
+ "chineseSFontType":4
+ },
+ {
+ "key":"privacy_20",
+ "japaneseText":"本プライバシーポリシーまたは弊社の業務についてご質問がある場合、以下の連絡先まで連絡してください。 ",
+ "englishUsText":"If you have any questions about this Privacy Policy or our practices, please contact us at: ",
+ "englishUsFontType":3,
+ "frenchText":"Si vous avez des questions au sujet de la présente Politique de confidentialité ou de nos pratiques, veuillez nous contacter à l’adresse :",
+ "frenchFontType":3,
+ "italianText":"In caso di domande sulla nostra Informativa sulla privacy o sulle nostre prassi, si prega di contattarci all'indirizzo:",
+ "italianFontType":3,
+ "germanText":"Falls Sie Fragen bezüglich dieser Datenschutzerklärung haben, kontaktieren Sie uns unter:",
+ "germanFontType":3,
+ "spanishText":"Si tiene alguna pregunta relativa a la presente Política de privacidad, póngase en contacto con nosotros en:",
+ "spanishFontType":3,
+ "chineseTText":"如對本私隱政策或本公司的處理方法有任何疑問,請聯絡本公司以下職員:",
+ "chineseTFontType":1,
+ "koreanText":"귀하가 본 개인정보처리방침 또는 당사의 실무에 대해서 질문이 있을 경우, 아래의 연락처를 통해 당사에게 연락하여 주시기 바랍니다.",
+ "koreanFontType":2,
+ "portugueseText":"Se você tiver quaisquer dúvidas sobre esta Política de Privacidade ou nossas práticas, fale conosco: ",
+ "portugueseFontType":2,
+ "russianText":"Если у вас возникли вопросы о настоящей Политике конфиденциальности и наших правилах, свяжитесь с нами по адресу: ",
+ "russianFontType":2,
+ "turkishText":"İşbu Gizlilik Politikası veya uygulamalarımızla ilgili tüm sorularınız için bizimle buradan iletişime geçebilirsiniz: ",
+ "turkishFontType":2,
+ "arabicText":"إذا كانت لديك أي استفسارات حول سياسة الخصوصية هذه أو ممارساتنا، يُرجى التواصل معنا من خلال:",
+ "arabicFontType":2,
+ "dutchText":"Indien u vragen hebt over dit Privacybeleid of onze handelwijze, kunt u contact met ons opnemen: ",
+ "dutchFontType":2,
+ "chineseSText":"如对本隐私政策或本公司的处理方法有任何疑问,请联系本公司以下职员:",
+ "chineseSFontType":4
+ },
+ {
+ "key":"privacy_21",
+ "japaneseText":"株式会社バンダイナムコエンターテインメント\n宛先:個人情報に関する連絡先\n東京都港区芝5丁目37番8号\n(郵便番号 108-0014)\n日本国\n+81-3-6744-6112(電話番号)\nprivacycontact@bandainamcoent.co.jp ",
+ "englishUsText":"BANDAI NAMCO Entertainment Inc.\nAttn: Contact for Personal Information Matter\n5-37-8 Shiba\nMinato-ku, Tokyo 108-0014\nJapan\n+81-3-6744-6112 (phone)\nprivacycontact@bandainamcoent.co.jp ",
+ "englishUsFontType":3,
+ "frenchText":"BANDAI NAMCO Entertainment Inc.\nAttn : Contact for Personal Information Matter\n5-37-8 Shiba\nMinato-ku, Tokyo 108-0014\nJapon\n+81-3-6744-6112 (téléphone)\nprivacycontact@bandainamcoent.co.jp",
+ "frenchFontType":3,
+ "italianText":"BANDAI NAMCO Entertainment Inc.\nAttn: Contact for Personal Information Matter\n5-37-8 Shiba\nMinato-ku, Tokyo 108-0014\nJapan\n+81-3-6744-6112 (telefono)\nprivacycontact@bandainamcoent.co.jp",
+ "italianFontType":3,
+ "germanText":"BANDAI NAMCO Entertainment Inc.\nAttn: Contact for Personal Information Matter\n5-37-8 Shiba\nMinato-ku, Tokyo 108-0014\nJapan\n+81-3-6744-6112 (telefon)\nprivacycontact@bandainamcoent.co.jp ",
+ "germanFontType":3,
+ "spanishText":"BANDAI NAMCO Entertainment Inc.\nAttn: Contact for Personal Information Matter\n5-37-8 Shiba\nMinato-ku, Tokyo 108-0014\nJapan\nTel.: +81-3-6744-6112\nprivacycontact@bandainamcoent.co.jp",
+ "spanishFontType":3,
+ "chineseTText":"BANDAI NAMCO Entertainment Inc.\nAttn: Contact for Personal Information Matter\n日本東京都港區芝五丁目37番8號\n+81-3-6744-6112 (電話)\nprivacycontact@bandainamcoent.co.jp ",
+ "chineseTFontType":1,
+ "koreanText":"BANDAI NAMCO Entertainment Inc.\nAttn: Contact for Personal Information Matter\n5-37-8 Shiba, Minato-ku, Tokyo 108-0014, Japan [일본 도쿄미나토 구 시바5-37-8 (우편번호 108-0014)]\n전화번호: +81-3-6744-6112\nprivacycontact@bandainamcoent.co.jp",
+ "koreanFontType":2,
+ "portugueseText":"BANDAI NAMCO Entertainment Inc.\nAttn: Contact for Personal Information Matter\n5-37-8 Shiba\nMinato-ku, Tokyo 108-0014\nJapão\n+81-3-6744-6112 (telefone)\nprivacycontact@bandainamcoent.co.jp ",
+ "portugueseFontType":2,
+ "russianText":"BANDAI NAMCO Entertainment Inc.\nКому: Contact for Personal Information Matter (Связь по вопросам, касающимся личной информации)\n5-37-8 Shiba\nMinato-ku, Tokyo 108-0014\nЯпония\n+81-3-6744-6112 (телефон)\nppolicy@bandainamcoent.co.jp ",
+ "russianFontType":2,
+ "turkishText":"BANDAI NAMCO Entertainment Inc.\nİlgi: Kişisel Bilgilerin Korunması Hakkında\n5-37-8 Shiba\nMinato-ku, Tokyo 108-0014\nJaponya\n+81-3-6744-6112 (telefon)\nprivacycontact@bandainamcoent.co.jp ",
+ "turkishFontType":2,
+ "arabicText":".BANDAI NAMCO Entertainment Inc\nAttn: Contact for Personal Information Matter\n5-37-8 Shiba\nMinato-ku, Tokyo 108-0014\nJapan\n+81-3-6744-6112 (هاتف)\nppolicy@bandainamcoent.co.jp ",
+ "arabicFontType":2,
+ "dutchText":"BANDAI NAMCO Entertainment Inc.\nAttn: Contact for Personal Information Matter\n5-37-8 Shiba\nMinato-ku, Tokyo 108-0014\nJapan\n+81-3-6744-6112 (telefoon)\nprivacycontact@bandainamcoent.co.jp",
+ "dutchFontType":2,
+ "chineseSText":"BANDAI NAMCO Entertainment Inc.\nAttn: Contact for Personal Information Matter\n日本东京都港区芝五丁目37番8号\n+81-3-6744-6112 (电话)\nprivacycontact@bandainamcoent.co.jp ",
+ "chineseSFontType":4
+ },
+ {
+ "key":"privacy_22",
+ "japaneseText":"欧州連合内にお住いの場合、以下の連絡先までご連絡ください。",
+ "englishUsText":"If you are located in the European Union, you can also contact us at:",
+ "englishUsFontType":3,
+ "frenchText":"Si vous résidez au sein de l’Union européenne, vous pouvez également nous contacter à l’adresse suivante : ",
+ "frenchFontType":3,
+ "italianText":"Se l’Utente risiede nell’Unione europea, può contattarci anche all’indirizzo:",
+ "italianFontType":3,
+ "germanText":"Wenn Sie Ihren Wohnsitz in der Europäischen Union haben, können Sie uns auch über folgenden Weg kontaktieren:",
+ "germanFontType":3,
+ "spanishText":"Si reside en la Unión Europea, también puede ponerse en contacto con nosotros a través de:",
+ "spanishFontType":3,
+ "chineseTText":"如果您位於歐盟地區,您還可以撥打電話聯絡我們,號碼:",
+ "chineseTFontType":1,
+ "koreanText":"유럽연합 내에 거주하는 경우 다음 연락처로 연락할 수 있습니다: ",
+ "koreanFontType":2,
+ "portugueseText":"Se estiver na União Europeia, também é possível entrar em contato pelo seguinte endereço:",
+ "portugueseFontType":2,
+ "russianText":"Если вы находитесь в Европейском Союзе, вы также можете связаться с нами по адресу:",
+ "russianFontType":2,
+ "turkishText":"Avrupa Birliği'nde ikamet ediyorsanız bize buradan da erişebilirsiniz:",
+ "turkishFontType":2,
+ "arabicText":"إذا كنت مقيمًا في الاتحاد الأوروبي، يمكنك أيضًا التواصل معنا على:\n",
+ "arabicFontType":2,
+ "dutchText":"Indien u woonachtig bent in de Europese Unie kunt u tevens hier contact met ons opnemen:",
+ "dutchFontType":2,
+ "chineseSText":"如果您位于欧盟地区,您还可以拨打电话联系我们,号码:",
+ "chineseSFontType":4
+ },
+ {
+ "key":"privacy_23",
+ "japaneseText":"BANDAI NAMCO Entertainment Europe S.A.S.\n49, 51 Rue des Docks CS\n90618 69258 LYON Cedex 09 FRANCE\nprivacy@bandainamcoent.eu",
+ "englishUsText":"BANDAI NAMCO Entertainment Europe S.A.S.\n49, 51 Rue des Docks CS\n90618 69258 LYON Cedex 09 FRANCE\nprivacy@bandainamcoent.eu",
+ "englishUsFontType":3,
+ "frenchText":"BANDAI NAMCO Entertainment Europe S.A.S.\n49, 51 Rue des Docks CS\n90618 69258 LYON Cedex 09 FRANCE\nprivacy@bandainamcoent.eu",
+ "frenchFontType":3,
+ "italianText":"BANDAI NAMCO Entertainment Europe S.A.S.\n49, 51 Rue des Docks CS\n90618 69258 LYON Cedex 09 FRANCE\nprivacy@bandainamcoent.eu",
+ "italianFontType":3,
+ "germanText":"BANDAI NAMCO Entertainment Europe S.A.S.\n49, 51 Rue des Docks CS\n90618 69258 LYON Cedex 09 FRANCE\nprivacy@bandainamcoent.eu",
+ "germanFontType":3,
+ "spanishText":"BANDAI NAMCO Entertainment Europe S.A.S.\n49, 51 Rue des Docks CS\n90618 69258 LYON Cedex 09 FRANCE\nprivacy@bandainamcoent.eu",
+ "spanishFontType":3,
+ "chineseTText":"BANDAI NAMCO Entertainment Europe S.A.S.\n49, 51 Rue des Docks CS\n90618 69258 LYON Cedex 09 FRANCE\nprivacy@bandainamcoent.eu",
+ "chineseTFontType":1,
+ "koreanText":"BANDAI NAMCO Entertainment Europe S.A.S.\n49, 51 Rue des Docks CS\n90618 69258 LYON Cedex 09 FRANCE\nprivacy@bandainamcoent.eu",
+ "koreanFontType":2,
+ "portugueseText":"BANDAI NAMCO Entertainment Europe S.A.S.\n49, 51 Rue des Docks CS\n90618 69258 LYON Cedex 09 FRANÇA\nprivacy@bandainamcoent.eu",
+ "portugueseFontType":2,
+ "russianText":"BANDAI NAMCO Entertainment Europe S.A.S.\n49, 51 Rue des Docks CS\n90618 69258 LYON Cedex 09 ФРАНЦИЯ\nprivacy@bandainamcoent.eu ",
+ "russianFontType":2,
+ "turkishText":"BANDAI NAMCO Entertainment Europe S.A.S.\n49, 51 Rue des Docks CS\n90618 69258 LYON Cedex 09 FRANSA\nprivacy@bandainamcoent.eu",
+ "turkishFontType":2,
+ "arabicText":".BANDAI NAMCO Entertainment Europe S.A.S\n49, 51 Rue des Docks CS\n90618 69258 LYON Cedex 09 FRANCE\nprivacy@bandainamcoent.eu ",
+ "arabicFontType":2,
+ "dutchText":"BANDAI NAMCO Entertainment Europe S.A.S.\n49, 51 Rue des Docks CS\n90618 69258 LYON Cedex 09 FRANKRIJK\nprivacy@bandainamcoent.eu",
+ "dutchFontType":2,
+ "chineseSText":"BANDAI NAMCO Entertainment Europe S.A.S.\n49, 51 Rue des Docks CS\n90618 69258 LYON Cedex 09 FRANCE\nprivacy@bandainamcoent.eu",
+ "chineseSFontType":4
+ },
+ {
+ "key":"datatrans_1",
+ "japaneseText":"当社は、権利保有者へ集約利用情報を報告するため、特定の楽曲が最初に演奏された時、匿名の利用データを収集し、保存しています。当社によるお客様のデータの使用方法について、詳しくは当社の個人情報保護方針(プライバシーポリシー)をご参照ください。",
+ "englishUsText":"We collect and store anonymous usage data when certain songs are first played so that we can report aggregate usage information to rights holders. You can learn more about how we use your data by viewing our privacy policy.",
+ "englishUsFontType":3,
+ "frenchText":"Nous collectons et conservons des données d'utilisation anonymes quand certaines chansons sont jouées pour la première fois afin de communiquer des informations d'utilisation agrégées aux détenteurs des droits. Reportez-vous à notre politique de confidentialité pour en savoir plus sur notre utilisation de vos données.",
+ "frenchFontType":3,
+ "italianText":"Raccogliamo e archiviamo dati di utilizzo anonimi quando alcuni brani sono riprodotti per la prima volta, in modo da poter segnalare informazioni di utilizzo aggregate ai titolari dei diritti. Per saperne di più su come utilizziamo i dati dell'Utente, si rimanda alla nostra Informativa sulla privacy.",
+ "italianFontType":3,
+ "germanText":"Wir erheben und speichern anonyme Nutzungsdaten, wenn bestimmte Lieder zum ersten Mal gespielt werden, damit wir den Rechteinhabern aggregierte Nutzungsdaten mitteilen können. Mehr über unsere Nutzung Ihrer Daten erfahren Sie aus unserer Datenschutzerklärung.",
+ "germanFontType":3,
+ "spanishText":"Recopilamos y almacenamos datos de uso anónimos cuando se reproducen ciertas canciones por primera vez para informar a las entidades responsables de la gestión de derechos de autor. Consulte nuestra política de privacidad para informarse sobre cómo usamos sus datos.",
+ "spanishFontType":3,
+ "chineseTText":"我們會在特定歌曲首次播放時收集並儲存匿名使用的資料,以便向版權持有者報告經整合的使用資訊。您可以查閱我們的私隱政策,了解有關我們如何使用您的資料的詳情。",
+ "chineseTFontType":1,
+ "koreanText":"당사는 특정 음악이 처음 플레이될 때 저작권 소유자에게 종합적인 이용 정보를 보고할 수 있도록 익명 처리된 이용 내역 데이터를 수집하고 저장합니다. 당사의 개인정보 처리방침에서 당사가 귀하의 데이터를 이용하는 방법에 대한 자세한 정보를 살펴보실 수 있습니다.",
+ "koreanFontType":2,
+ "portugueseText":"Coletamos e armazenamos dados de uso anônimo quando certas músicas são tocadas pela primeira vez para comunicar informações de uso geral aos detentores dos direitos. Confira mais informações sobre como utilizamos seus dados em nossa Política de Privacidade.",
+ "portugueseFontType":2,
+ "russianText":"Мы собираем и храним обезличенные данные об интенсивности использования, когда определенные композиции проигрываются в первый раз, в целях предоставления правообладателям отчетов, содержащих информацию о совокупной интенсивности использования. Чтобы узнать больше об использовании ваших данных, ознакомьтесь с нашей Политикой конфиденциальности.",
+ "russianFontType":2,
+ "turkishText":"Belirli şarkılar ilk kez çalındığında, telif hakkı sahiplerine toplu kullanım bilgilerini raporlayabilmek amacıyla anonim kullanım verileri toplar ve saklarız. Gizlilik politikamızı gözden geçirerek verilerinizin kullanımı hakkında daha fazla bilgi alabilirsiniz.",
+ "turkishFontType":2,
+ "arabicText":"نحن نجمع ونخزن بيانات استخدام مجهولة عند تشغيل بعض الأغاني لأول مرة لكي نتمكن من الإبلاغ عن معلومات الاستخدام الكلي لأصحاب الحقوق. يمكنك معرفة المزيد بخصوص كيفية استخدامنا لبياناتك من خلال عرض سياسة الخصوصية الخاصة بنا.\n",
+ "arabicFontType":2,
+ "dutchText":"We verzamelen en bewaren anonieme gebruiksdata wanneer bepaalde nummers voor het eerst worden afgespeeld, zodat we geaggregeerde gebruiksinformatie kunnen doorgeven aan rechthebbenden. Voor meer informatie over hoe wij uw gegevens gebruiken, verwijzen wij u naar ons Privacybeleid.",
+ "dutchFontType":2,
+ "chineseSText":"我们会在特定歌曲首次播放时收集并存储匿名使用数据,以便向版权持有方报告经整合的使用信息。您可以查阅我们的隐私政策进一步了解我们如何使用您的数据。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"quickvs_total_play",
+ "japaneseText":"あそんだ回数",
+ "englishUsText":"Match-up(s)",
+ "englishUsFontType":3,
+ "frenchText":"fois",
+ "frenchFontType":3,
+ "italianText":"Partite giocate",
+ "italianFontType":3,
+ "germanText":"Gespielt",
+ "germanFontType":3,
+ "spanishText":"Partidas",
+ "spanishFontType":3,
+ "chineseTText":"遊玩次數",
+ "chineseTFontType":1,
+ "koreanText":"플레이 횟수 ",
+ "koreanFontType":2,
+ "portugueseText":"batalha(s)",
+ "portugueseFontType":2,
+ "russianText":"Сыграно",
+ "russianFontType":2,
+ "turkishText":"Oynanan süre",
+ "turkishFontType":2,
+ "arabicText":"عدد مرات اللعب",
+ "arabicFontType":2,
+ "dutchText":"Keren gespeeld",
+ "dutchFontType":2,
+ "chineseSText":"游玩次数",
+ "chineseSFontType":4
+ },
+ {
+ "key":"quickvs_total_won",
+ "japaneseText":"かち",
+ "englishUsText":"Won",
+ "englishUsFontType":3,
+ "frenchText":"vict.",
+ "frenchFontType":3,
+ "italianText":"Vinte",
+ "italianFontType":3,
+ "germanText":"Gewonnen",
+ "germanFontType":3,
+ "spanishText":"Victorias",
+ "spanishFontType":3,
+ "chineseTText":"勝",
+ "chineseTFontType":1,
+ "koreanText":"승",
+ "koreanFontType":2,
+ "portugueseText":"vitória(s)",
+ "portugueseFontType":2,
+ "russianText":"Поб.",
+ "russianFontType":2,
+ "turkishText":"Kazanma",
+ "turkishFontType":2,
+ "arabicText":"فوز1%",
+ "arabicFontType":2,
+ "dutchText":"gewonnen",
+ "dutchFontType":2,
+ "chineseSText":"胜",
+ "chineseSFontType":4
+ },
+ {
+ "key":"savedata_corrupt_warning",
+ "japaneseText":"セーブデータのバージョンが違います。\n最新のバージョンへアップデートしてください。",
+ "englishUsText":"The save data file you've chosen and the version of the Game does not match.\nPlease update the App to the newest version.",
+ "englishUsFontType":3,
+ "frenchText":"La sauvegarde ne correspond pas avec la ver. du jeu. \nVeuillez mettre à jour l'appli.",
+ "frenchFontType":3,
+ "italianText":"La versione dei dati selezionati\nnon corrisponde. Aggiorna il gioco.",
+ "italianFontType":3,
+ "germanText":"Gewählte Speicherdatei stimmt nicht mit\nSpielversion überein. Bitte aktualisiere die App.",
+ "germanFontType":3,
+ "spanishText":"Tus datos y versión del juego son\ndiferentes. ¡Actualiza para poder jugar!",
+ "spanishFontType":3,
+ "chineseTText":"遊戲與存檔紀錄版本不同。\n請更新至最新版本。",
+ "chineseTFontType":1,
+ "koreanText":"세이브 데이터의 버전이 다릅니다.\n최신 버전으로 업데이트해 주세요.",
+ "koreanFontType":2,
+ "portugueseText":"Os dados salvos não correspondem à versão do aplicativo.\nAtualize o aplicativo para uma versão mais recente.",
+ "portugueseFontType":2,
+ "russianText":"Данное сохранение не совпадает\nс версией игры. Обновите приложение.",
+ "russianFontType":2,
+ "turkishText":"Seçili veri kayıt dosyası ve oyun sürümü eşleşmiyor.\nUygulamayı güncelleyin.",
+ "turkishFontType":2,
+ "arabicText":"البيانات غير متطابقة مع الإصدار.\nتحديث.",
+ "arabicFontType":2,
+ "dutchText":"Andere versie opslagdata.\nUpdate de app.",
+ "dutchFontType":2,
+ "chineseSText":"游戏与存档记录版本不同。\n请更新至最新版本。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"savedata_newdata",
+ "japaneseText":"新規セーブデータ",
+ "englishUsText":"New save data",
+ "englishUsFontType":3,
+ "frenchText":"Nouv. sauvegarde",
+ "frenchFontType":3,
+ "italianText":"Nuovi dati salvati",
+ "italianFontType":3,
+ "germanText":"Neue Speicherdateien",
+ "germanFontType":3,
+ "spanishText":"Crear nuevos datos",
+ "spanishFontType":3,
+ "chineseTText":"新增存檔紀錄",
+ "chineseTFontType":1,
+ "koreanText":"신규 세이브 데이터",
+ "koreanFontType":2,
+ "portugueseText":"Novo",
+ "portugueseFontType":2,
+ "russianText":"Новые сохраненные данные",
+ "russianFontType":2,
+ "turkishText":"Yeni",
+ "turkishFontType":2,
+ "arabicText":"جديد",
+ "arabicFontType":2,
+ "dutchText":"Nieuw",
+ "dutchFontType":2,
+ "chineseSText":"新增存档记录",
+ "chineseSFontType":4
+ },
+ {
+ "key":"netplay_disagree_desc",
+ "japaneseText":"この曲は相手プレイヤーが遊べない曲となっております。",
+ "englishUsText":"This song is not available for your friend to play",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"select_device_title",
+ "japaneseText":"設定をするデバイスをえらんでください",
+ "englishUsText":"Game Controller Device Settings",
+ "englishUsFontType":3,
+ "frenchText":"Sélection périphérique de contrôle",
+ "frenchFontType":3,
+ "italianText":"Scegli il dispositivo da impostare",
+ "italianFontType":3,
+ "germanText":"Gerät zum Einstellen wählen",
+ "germanFontType":3,
+ "spanishText":"Elige el dispositivo a configurar",
+ "spanishFontType":3,
+ "chineseTText":"請選擇要設定的裝置",
+ "chineseTFontType":1,
+ "koreanText":"설정할 장치를 선택해 주세요",
+ "koreanFontType":2,
+ "portugueseText":"Configurações do dispositivo de controle do jogo",
+ "portugueseFontType":2,
+ "russianText":"Выберите настраиваемое устройство",
+ "russianFontType":2,
+ "turkishText":"Oyun Kumandası Cihaz Ayarları",
+ "turkishFontType":2,
+ "arabicText":"إعدادات وحدة تحكم بالألعاب",
+ "arabicFontType":2,
+ "dutchText":"Apparaatinstellingen gamecontroller",
+ "dutchFontType":2,
+ "chineseSText":"请选择要设定的装置",
+ "chineseSFontType":4
+ },
+ {
+ "key":"select_device_touch",
+ "japaneseText":"iPhone iPad",
+ "englishUsText":"iPhone iPad",
+ "englishUsFontType":3,
+ "frenchText":"iPhone iPad",
+ "frenchFontType":3,
+ "italianText":"iPhone iPad",
+ "italianFontType":3,
+ "germanText":"iPhone iPad",
+ "germanFontType":3,
+ "spanishText":"iPhone iPad",
+ "spanishFontType":3,
+ "chineseTText":"iPhone iPad",
+ "chineseTFontType":1,
+ "koreanText":"iPhone iPad",
+ "koreanFontType":2,
+ "portugueseText":"iPhone iPad",
+ "portugueseFontType":2,
+ "russianText":"iPhone iPad",
+ "russianFontType":2,
+ "turkishText":"iPhone iPad",
+ "turkishFontType":2,
+ "arabicText":"iPhone iPad",
+ "arabicFontType":2,
+ "dutchText":"iPhone iPad",
+ "dutchFontType":2,
+ "chineseSText":"iPhone iPad",
+ "chineseSFontType":4
+ },
+ {
+ "key":"select_device_controller",
+ "japaneseText":"ゲームコントローラー",
+ "englishUsText":"Game Controller",
+ "englishUsFontType":3,
+ "frenchText":"Manette",
+ "frenchFontType":3,
+ "italianText":"Controller",
+ "italianFontType":3,
+ "germanText":"Gamecontroller",
+ "germanFontType":3,
+ "spanishText":"Mando",
+ "spanishFontType":3,
+ "chineseTText":"遊戲控制器",
+ "chineseTFontType":1,
+ "koreanText":"게임 컨트롤러",
+ "koreanFontType":2,
+ "portugueseText":"Controle do jogo",
+ "portugueseFontType":2,
+ "russianText":"Игровой контроллер",
+ "russianFontType":2,
+ "turkishText":"Oyun Kumandası",
+ "turkishFontType":2,
+ "arabicText":"وحدة تحكم بالألعاب",
+ "arabicFontType":2,
+ "dutchText":"Gamecontroller",
+ "dutchFontType":2,
+ "chineseSText":"游戏控制器",
+ "chineseSFontType":4
+ },
+ {
+ "key":"select_device_keybard",
+ "japaneseText":"キーボード",
+ "englishUsText":"Keyboard",
+ "englishUsFontType":3,
+ "frenchText":"Clavier",
+ "frenchFontType":3,
+ "italianText":"Tastiera",
+ "italianFontType":3,
+ "germanText":"Tastatur",
+ "germanFontType":3,
+ "spanishText":"Teclado",
+ "spanishFontType":3,
+ "chineseTText":"鍵盤",
+ "chineseTFontType":1,
+ "koreanText":"키보드",
+ "koreanFontType":2,
+ "portugueseText":"Teclado",
+ "portugueseFontType":2,
+ "russianText":"Клавиатура",
+ "russianFontType":2,
+ "turkishText":"Klavye",
+ "turkishFontType":2,
+ "arabicText":"لوحة المفاتيح",
+ "arabicFontType":2,
+ "dutchText":"Toetsenbord",
+ "dutchFontType":2,
+ "chineseSText":"键盘",
+ "chineseSFontType":4
+ },
+ {
+ "key":"select_device_connect_on",
+ "japaneseText":"接続中!",
+ "englishUsText":"Connected!",
+ "englishUsFontType":3,
+ "frenchText":"Connecté !",
+ "frenchFontType":3,
+ "italianText":"Connessione in corso",
+ "italianFontType":3,
+ "germanText":"Verbunden!",
+ "germanFontType":3,
+ "spanishText":"Conectado",
+ "spanishFontType":3,
+ "chineseTText":"連線中!",
+ "chineseTFontType":1,
+ "koreanText":"연결 중!",
+ "koreanFontType":2,
+ "portugueseText":"Conectado!",
+ "portugueseFontType":2,
+ "russianText":"Подключено!",
+ "russianFontType":2,
+ "turkishText":"Bağlandı!",
+ "turkishFontType":2,
+ "arabicText":"متصلة!",
+ "arabicFontType":2,
+ "dutchText":"Verbonden!",
+ "dutchFontType":2,
+ "chineseSText":"连线中!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"select_device_connect_off",
+ "japaneseText":"接続なし",
+ "englishUsText":"Not connected",
+ "englishUsFontType":3,
+ "frenchText":"Déconnecté",
+ "frenchFontType":3,
+ "italianText":"Nessuna connessione",
+ "italianFontType":3,
+ "germanText":"Keine Verbindung",
+ "germanFontType":3,
+ "spanishText":"Desconectado",
+ "spanishFontType":3,
+ "chineseTText":"沒有連線",
+ "chineseTFontType":1,
+ "koreanText":"연결된 장치 없음",
+ "koreanFontType":2,
+ "portugueseText":"Sem Conexão",
+ "portugueseFontType":2,
+ "russianText":"Нет соединения",
+ "russianFontType":2,
+ "turkishText":"Bağlanmadı",
+ "turkishFontType":2,
+ "arabicText":"غير متصلة",
+ "arabicFontType":2,
+ "dutchText":"Geen verbinding",
+ "dutchFontType":2,
+ "chineseSText":"没有连线",
+ "chineseSFontType":4
+ },
+ {
+ "key":"select_device_connect_ng",
+ "japaneseText":"使用できません",
+ "englishUsText":"Cannot be used",
+ "englishUsFontType":3,
+ "frenchText":"Utilisation impossible",
+ "frenchFontType":3,
+ "italianText":"Non utilizzabile",
+ "italianFontType":3,
+ "germanText":"Nicht verfügbar",
+ "germanFontType":3,
+ "spanishText":"Incompatible",
+ "spanishFontType":3,
+ "chineseTText":"無法使用",
+ "chineseTFontType":1,
+ "koreanText":"사용할 수 없습니다",
+ "koreanFontType":2,
+ "portugueseText":"Não pode ser usado",
+ "portugueseFontType":2,
+ "russianText":"Не используется",
+ "russianFontType":2,
+ "turkishText":"Kullanılamıyor",
+ "turkishFontType":2,
+ "arabicText":"لا يمكن استخدامها",
+ "arabicFontType":2,
+ "dutchText":"Kan niet worden gebruikt",
+ "dutchFontType":2,
+ "chineseSText":"无法使用",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_control",
+ "japaneseText":"演奏ゲームの操作設定",
+ "englishUsText":"Taiko Mode Settings",
+ "englishUsFontType":3,
+ "frenchText":"Paramètres du mode Taiko",
+ "frenchFontType":3,
+ "italianText":"Imposta controlli",
+ "italianFontType":3,
+ "germanText":"Spielsteuerung",
+ "germanFontType":3,
+ "spanishText":"Configurar controles",
+ "spanishFontType":3,
+ "chineseTText":"演奏遊戲操作設定",
+ "chineseTFontType":1,
+ "koreanText":"연주 모드 조작 설정",
+ "koreanFontType":2,
+ "portugueseText":"Configurações de Modo Taiko",
+ "portugueseFontType":2,
+ "russianText":"Настройки управления",
+ "russianFontType":2,
+ "turkishText":"Taiko Mod Ayarları",
+ "turkishFontType":2,
+ "arabicText":"إعدادات وضع تايكو",
+ "arabicFontType":2,
+ "dutchText":"Instellingen Taiko-modus",
+ "dutchFontType":2,
+ "chineseSText":"演奏游戏操作设定",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_controller_title",
+ "japaneseText":"ゲームコントローラーの操作設定",
+ "englishUsText":"Game Controller Settings",
+ "englishUsFontType":3,
+ "frenchText":"Paramètres de la manette",
+ "frenchFontType":3,
+ "italianText":"Imposta controller",
+ "italianFontType":3,
+ "germanText":"Gamecontroller- Steuerungseinstellungen",
+ "germanFontType":3,
+ "spanishText":"Configurar mando",
+ "spanishFontType":3,
+ "chineseTText":"遊戲控制器操作設定",
+ "chineseTFontType":1,
+ "koreanText":"게임 컨트롤러 조작 설정",
+ "koreanFontType":2,
+ "portugueseText":"Configurações de Controle do Jogo",
+ "portugueseFontType":2,
+ "russianText":"Настройки управления контроллера",
+ "russianFontType":2,
+ "turkishText":"Oyun Kumanda Ayarları",
+ "turkishFontType":2,
+ "arabicText":"إعدادات وحدة تحكم بالألعاب",
+ "arabicFontType":2,
+ "dutchText":"Instellingen van gamecontroller",
+ "dutchFontType":2,
+ "chineseSText":"游戏控制器操作设定",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_controller_type_1",
+ "japaneseText":"操作タイプ A",
+ "englishUsText":"Type A",
+ "englishUsFontType":3,
+ "frenchText":"Type A",
+ "frenchFontType":3,
+ "italianText":"Tipo A",
+ "italianFontType":3,
+ "germanText":"Steuerungstyp A",
+ "germanFontType":3,
+ "spanishText":"Configuración A",
+ "spanishFontType":3,
+ "chineseTText":"操作類型A",
+ "chineseTFontType":1,
+ "koreanText":"조작 타입 A",
+ "koreanFontType":2,
+ "portugueseText":"Controle tipo A",
+ "portugueseFontType":2,
+ "russianText":"Тип управления А",
+ "russianFontType":2,
+ "turkishText":"Tip A",
+ "turkishFontType":2,
+ "arabicText":"النوع أ",
+ "arabicFontType":2,
+ "dutchText":"Type A",
+ "dutchFontType":2,
+ "chineseSText":"操作类型A",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_controller_type_2",
+ "japaneseText":"操作タイプ B",
+ "englishUsText":"Type B",
+ "englishUsFontType":3,
+ "frenchText":"Type B",
+ "frenchFontType":3,
+ "italianText":"Tipo B",
+ "italianFontType":3,
+ "germanText":"Steuerungstyp B",
+ "germanFontType":3,
+ "spanishText":"Configuración B",
+ "spanishFontType":3,
+ "chineseTText":"操作類型B",
+ "chineseTFontType":1,
+ "koreanText":"조작 타입 B",
+ "koreanFontType":2,
+ "portugueseText":"Controle tipo B",
+ "portugueseFontType":2,
+ "russianText":"Тип управления Б",
+ "russianFontType":2,
+ "turkishText":"Tip B",
+ "turkishFontType":2,
+ "arabicText":"النوع ب",
+ "arabicFontType":2,
+ "dutchText":"Type B",
+ "dutchFontType":2,
+ "chineseSText":"操作类型B",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_controller_type_3",
+ "japaneseText":"操作タイプ C",
+ "englishUsText":"Type C",
+ "englishUsFontType":3,
+ "frenchText":"Type C",
+ "frenchFontType":3,
+ "italianText":"Tipo C",
+ "italianFontType":3,
+ "germanText":"Steuerungstyp C",
+ "germanFontType":3,
+ "spanishText":"Configuración C",
+ "spanishFontType":3,
+ "chineseTText":"操作類型C",
+ "chineseTFontType":1,
+ "koreanText":"조작 타입 C",
+ "koreanFontType":2,
+ "portugueseText":"Controle tipo C",
+ "portugueseFontType":2,
+ "russianText":"Тип управления В",
+ "russianFontType":2,
+ "turkishText":"Tip C",
+ "turkishFontType":2,
+ "arabicText":"النوع ج",
+ "arabicFontType":2,
+ "dutchText":"Type C",
+ "dutchFontType":2,
+ "chineseSText":"操作类型C",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_keyboard_title",
+ "japaneseText":"キーボードの操作設定",
+ "englishUsText":"Keyboard Settings",
+ "englishUsFontType":3,
+ "frenchText":"Paramètres du clavier",
+ "frenchFontType":3,
+ "italianText":"Imposta tastiera",
+ "italianFontType":3,
+ "germanText":"Tastatur-\nSteuerungseinstellungen",
+ "germanFontType":3,
+ "spanishText":"Configurar teclado",
+ "spanishFontType":3,
+ "chineseTText":"鍵盤操作設定",
+ "chineseTFontType":1,
+ "koreanText":"키보드 조작 설정",
+ "koreanFontType":2,
+ "portugueseText":"Configurações do Teclado",
+ "portugueseFontType":2,
+ "russianText":"Настройки клавиатуры",
+ "russianFontType":2,
+ "turkishText":"Klavye Ayarları",
+ "turkishFontType":2,
+ "arabicText":"إعدادات لوحة مفاتيح",
+ "arabicFontType":2,
+ "dutchText":"Toetsenbordinstellingen",
+ "dutchFontType":2,
+ "chineseSText":"键盘操作设定",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_keyboard_desc",
+ "japaneseText":"変更するキーをえらんで、Enterキーを押してください",
+ "englishUsText":"Select key to change and press Enter.",
+ "englishUsFontType":3,
+ "frenchText":"Sélectionne la touche à modifier et appuie sur Entrée",
+ "frenchFontType":3,
+ "italianText":"Scegli il tasto da modificare e premi Invio",
+ "italianFontType":3,
+ "germanText":"Zu ändernde Taste wählen und \"Enter\" drücken.",
+ "germanFontType":3,
+ "spanishText":"Elige la tecla a cambiar y pulsa Entrar",
+ "spanishFontType":3,
+ "chineseTText":"請選擇要變更的按鍵後,按下Enter鍵",
+ "chineseTFontType":1,
+ "koreanText":"변경할 키를 선택하고 Enter를 눌러 주세요",
+ "koreanFontType":2,
+ "portugueseText":"Selecione a tecla que deseja alterar e pressione Enter",
+ "portugueseFontType":2,
+ "russianText":"Выберите изменяемую клавишу и нажмите Enter",
+ "russianFontType":2,
+ "turkishText":"Değiştirmek için tuşu seçin ve Enter'a basın.",
+ "turkishFontType":2,
+ "arabicText":"حدد المفتاح للتغيير ثم اضغط على إدخال.",
+ "arabicFontType":2,
+ "dutchText":"Kies een toets om te wijzigen en druk op Enter.",
+ "dutchFontType":2,
+ "chineseSText":"请选择要变更的按键后,按下Enter键",
+ "chineseSFontType":4
+ },
+ {
+ "key":"desc_tv_nopad",
+ "japaneseText":"本機でこのゲームをプレイされる場合は、\nゲームコントローラーの接続が必要となります。",
+ "englishUsText":"You need to connect to\na controller to play.",
+ "englishUsFontType":3,
+ "frenchText":"Tu dois connecter une manette\npour jouer.",
+ "frenchFontType":3,
+ "italianText":"È necessario collegare\nun controller per poter giocare.",
+ "italianFontType":3,
+ "germanText":"Gamecontroller verbinden,\num auf diesem Gerät zu spielen.",
+ "germanFontType":3,
+ "spanishText":"Tienes que conectar un mando\npara jugar.",
+ "spanishFontType":3,
+ "chineseTText":"在此機器遊玩本遊戲時,\n必須連接遊戲控制器。",
+ "chineseTFontType":1,
+ "koreanText":"이 기기로 게임을 플레이하기 위해서는\n게임 컨트롤러를 연결해야 합니다.",
+ "koreanFontType":2,
+ "portugueseText":"É necessário conectar a\num controle para jogar.",
+ "portugueseFontType":2,
+ "russianText":"Для игры требуется\nподключить контроллер.",
+ "russianFontType":2,
+ "turkishText":"Oynamak için bir kumandaya bağlanın.",
+ "turkishFontType":2,
+ "arabicText":"تحتاج للاتصال\nبوحدة تحكم للّعب.",
+ "arabicFontType":2,
+ "dutchText":"Verbind met\neen gamecontroller om te spelen.",
+ "dutchFontType":2,
+ "chineseSText":"在此机器游玩本游戏时,\n必须连接游戏控制器。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_kisekae_0_alt_kbpad",
+ "japaneseText":"①試着して",
+ "englishUsText":"① Try costume on",
+ "englishUsFontType":3,
+ "frenchText":"① Essaie la tenue",
+ "frenchFontType":3,
+ "italianText":"1. Prova",
+ "italianFontType":3,
+ "germanText":"① Anprobieren",
+ "germanFontType":3,
+ "spanishText":"1. Elige tu estilo",
+ "spanishFontType":3,
+ "chineseTText":"①試穿",
+ "chineseTFontType":1,
+ "koreanText":"①장착하고",
+ "koreanFontType":2,
+ "portugueseText":"① Experimente",
+ "portugueseFontType":2,
+ "russianText":"① Примерьте костюм",
+ "russianFontType":2,
+ "turkishText":"① Kostümü deneyin",
+ "turkishFontType":2,
+ "arabicText":"① جرّب ارتداء الزي",
+ "arabicFontType":2,
+ "dutchText":"① Aanproberen",
+ "dutchFontType":2,
+ "chineseSText":"①试穿",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_songselect_2_alt_kbpad",
+ "japaneseText":"③決定して演奏かいし!",
+ "englishUsText":"③ Confirm and begin!",
+ "englishUsFontType":3,
+ "frenchText":"③ Confirme et commence le jeu !",
+ "frenchFontType":3,
+ "italianText":"2. Conferma e gioca!",
+ "italianFontType":3,
+ "germanText":"③ Bestätigen und spielen!",
+ "germanFontType":3,
+ "spanishText":"3. Confirma y...\n¡Música, maestro!",
+ "spanishFontType":3,
+ "chineseTText":"③決定並開始演奏!",
+ "chineseTFontType":1,
+ "koreanText":"③선택해서 연주 시작!",
+ "koreanFontType":2,
+ "portugueseText":"③ Confirme e comece!",
+ "portugueseFontType":2,
+ "russianText":"③ Выберите и играйте",
+ "russianFontType":2,
+ "turkishText":"③ Onayla ve başla!",
+ "turkishFontType":2,
+ "arabicText":"③ قم بالتأكيد وابدأ!",
+ "arabicFontType":2,
+ "dutchText":"③ Kiezen en spelen!",
+ "dutchFontType":2,
+ "chineseSText":"③决定并开始演奏!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_tsunagaru_3_alt_kbpad",
+ "japaneseText":"最近あそんだ友達\n前回のあいことばとあそんだ結果が見られるよ",
+ "englishUsText":"Recent Friends\nView latest Secret Code and results!",
+ "englishUsFontType":3,
+ "frenchText":"Amis récents\nDerniers MdP et résultats",
+ "frenchFontType":3,
+ "italianText":"Partite recenti con amici\nVedi parola d'ordine e risultati.",
+ "italianFontType":3,
+ "germanText":"Letzte Spielpartner\nBisherige Codewörter und Ergebnisse ",
+ "germanFontType":3,
+ "spanishText":"Partidas recientes con amigos\n¡Mira los resultados y contraseñas!",
+ "spanishFontType":3,
+ "chineseTText":"最近一起遊玩的朋友\n會顯示上次的暗號與遊玩結果喔",
+ "chineseTFontType":1,
+ "koreanText":"최근 같이 논 친구\n지난번 암호와 결과를 볼 수 있어",
+ "koreanFontType":2,
+ "portugueseText":"Amigos recentes\nVer última senha e resultados!",
+ "portugueseFontType":2,
+ "russianText":"Недавние друзья\nПроверьте последний код и результаты!",
+ "russianFontType":2,
+ "turkishText":"Yeni Arkadaşlar\nEn son Gizli Kod ve sonucu gör!",
+ "turkishFontType":2,
+ "arabicText":"أصدقاء جدد\nعرض أحدث رمز سر والنتائج!",
+ "arabicFontType":2,
+ "dutchText":"Recente vrienden\nNieuwste geheime code en resultaten tonen",
+ "dutchFontType":2,
+ "chineseSText":"最近一起游玩的朋友\n会显示上次的暗号与游玩结果哦",
+ "chineseSFontType":4
+ },
+ {
+ "key":"help_tsunagaru_4_alt_kbpad",
+ "japaneseText":"いままでの結果が見られるよ",
+ "englishUsText":"View previous results!",
+ "englishUsFontType":3,
+ "frenchText":"Retrouve les résultats précédents",
+ "frenchFontType":3,
+ "italianText":"Qui puoi vedere i tuoi risultati.",
+ "italianFontType":3,
+ "germanText":"Du kannst bisherige Ergebnisse sehen. ",
+ "germanFontType":3,
+ "spanishText":"¡Puedes ver tus resultados hasta ahora!",
+ "spanishFontType":3,
+ "chineseTText":"會顯示到目前為止的結果喔",
+ "chineseTFontType":1,
+ "koreanText":"지금까지의 결과를 볼 수 있어",
+ "koreanFontType":2,
+ "portugueseText":"Ver resultados até agora!",
+ "portugueseFontType":2,
+ "russianText":"Проверьте прежние результаты!",
+ "russianFontType":2,
+ "turkishText":"Önceki sonuçları gör!",
+ "turkishFontType":2,
+ "arabicText":"عرض النتائج السابقة!",
+ "arabicFontType":2,
+ "dutchText":"Bekijk eerdere resultaten",
+ "dutchFontType":2,
+ "chineseSText":"会显示到目前为止的结果哦",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_onpu_indicate_pos",
+ "japaneseText":"音符の表示位置",
+ "englishUsText":"Note Position",
+ "englishUsFontType":3,
+ "frenchText":"Position des notes",
+ "frenchFontType":3,
+ "italianText":"Posizione note",
+ "italianFontType":3,
+ "germanText":"Noten-Anzeige",
+ "germanFontType":3,
+ "spanishText":"Lugar de las notas",
+ "spanishFontType":3,
+ "chineseTText":"音符的顯示位置",
+ "chineseTFontType":1,
+ "koreanText":"음표의 표시 위치",
+ "koreanFontType":2,
+ "portugueseText":"Posição das notas",
+ "portugueseFontType":2,
+ "russianText":"Положение нот",
+ "russianFontType":2,
+ "turkishText":"Müzik Nota Pozisyonu",
+ "turkishFontType":2,
+ "arabicText":"مكان نغمة الموسيقى",
+ "arabicFontType":2,
+ "dutchText":"Positie muzieknoten",
+ "dutchFontType":2,
+ "chineseSText":"音符的显示位置",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_onpu_judge_pos",
+ "japaneseText":"音符の判定位置",
+ "englishUsText":"Note Timing",
+ "englishUsFontType":3,
+ "frenchText":"Timing des notes",
+ "frenchFontType":3,
+ "italianText":"Calibrazione note",
+ "italianFontType":3,
+ "germanText":"Noten-Timing",
+ "germanFontType":3,
+ "spanishText":"Precisión de notas",
+ "spanishFontType":3,
+ "chineseTText":"音符的判定位置",
+ "chineseTFontType":1,
+ "koreanText":"음표의 판정 위치",
+ "koreanFontType":2,
+ "portugueseText":"Tempo das notas",
+ "portugueseFontType":2,
+ "russianText":"Скорость нот",
+ "russianFontType":2,
+ "turkishText":"Müzik Nota Zamanlaması",
+ "turkishFontType":2,
+ "arabicText":"توقيت نغمة الموسيقى",
+ "arabicFontType":2,
+ "dutchText":"Timing muzieknoten",
+ "dutchFontType":2,
+ "chineseSText":"音符的判定位置",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_onpu_judge_desc",
+ "japaneseText":"音符の判定位置を調整します\n+の数値が大きいほど音符の判定タイミングを早くします\n-の数値が大きいほど音符の判定タイミングを遅くします",
+ "englishUsText":"Adjust the timing for judging accuracy\n+ values make the timing earlier\n- values make the timing later.",
+ "englishUsFontType":3,
+ "frenchText":"Ajuste le timing entre les sons et les notes\nLes valeurs + accélèrent le timing\nLes valeurs - ralentissent le timing ",
+ "frenchFontType":3,
+ "italianText":"Valori positivi anticipano il momento in cui\nviene giudicato il tuo tempismo nel colpire\nle note, valori negativi lo posticipano.",
+ "italianFontType":3,
+ "germanText":"Noten-Timing einstellen.\nPositive Werte beschleunigen\ndas Noten-Timing,\nnegative Werte verlangsamen es.",
+ "germanFontType":3,
+ "spanishText":"Ajusta la precisión para valorar las notas.\n+ adelantará el momento de evaluar tu toque.\n- retrasará el momento de evaluar tu toque.",
+ "spanishFontType":3,
+ "chineseTText":"調整音符的判定位置\n+的數值越大,音符的判定時機就越早\n-的數值越大,音符的判定時機就越慢",
+ "chineseTFontType":1,
+ "koreanText":"음표의 판정 위치를 조정합니다\n+수치가 클수록 음표의 판정 타이밍이 빠릅니다\n-수치가 클수록 음표의 판정 타이밍이 느립니다",
+ "koreanFontType":2,
+ "portugueseText":"Ajuste o tempo de julgamento de precisão das notas musicais\n+ torna o tempo mais rápido\n- tona o tempo mais lento.",
+ "portugueseFontType":2,
+ "russianText":"Изменение скорости нот\nЧем больше значение [+], тем ноты быстрее.\nЧем больше значение [-], тем ноты медленнее.",
+ "russianFontType":2,
+ "turkishText":"Ses ve notaların zamanını ayarla\n+ zamanı azaltır\n- zamanı arttırır",
+ "turkishFontType":2,
+ "arabicText":"ضبط توقيت الحكم على الدقة\nالقيم + تجعل التوقيت مبكرًا\nالقيم - تجعل التوقيت متأخرًا.",
+ "arabicFontType":2,
+ "dutchText":"Pas de timing van de muzieknoten aan.\n+ stelt de timing vroeger in.\n- stelt de timing later in.",
+ "dutchFontType":2,
+ "chineseSText":"调整音符的判定位置\n+的数值越大,音符的判定时机就越早\n-的数值越大,音符的判定时机就越慢",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_onpu_desc_title",
+ "japaneseText":"音符の表示位置を調整します",
+ "englishUsText":"Adjusts where music notes appear on the screen.",
+ "englishUsFontType":3,
+ "frenchText":"Ajuste l'endroit où les notes de musique apparaissent à l'écran.",
+ "frenchFontType":3,
+ "italianText":"Regola la posizione delle note sullo schermo.",
+ "italianFontType":3,
+ "germanText":"Position der Noten auf dem Bildschirm einstellen.",
+ "germanFontType":3,
+ "spanishText":"Ajuste de la posición de las notas.",
+ "spanishFontType":3,
+ "chineseTText":"調整音符的顯示位置",
+ "chineseTFontType":1,
+ "koreanText":"음표가 표시되는 위치를 조정합니다",
+ "koreanFontType":2,
+ "portugueseText":"Ajusta onde as notas musicais aparecem na tela. ",
+ "portugueseFontType":2,
+ "russianText":"Изменение расположения нот",
+ "russianFontType":2,
+ "turkishText":"Müzik notalarının ekranda göründüğü yerleri ayarla.",
+ "turkishFontType":2,
+ "arabicText":"ضبط مكان ظهور النوتات الموسيقية على الشاشة. تحرك قيم ",
+ "arabicFontType":2,
+ "dutchText":"Past aan waar de muzieknoten op het scherm verschijnen.",
+ "dutchFontType":2,
+ "chineseSText":"调整音符的显示位置",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_onpu_desc_body",
+ "japaneseText":"+の数値が大きいほど音符の表示位置が右側に動きます\n-の数値が大きいほど音符の表示位置が左側に動きます",
+ "englishUsText":"+ values move notes to the right\n- values move notes to the left.",
+ "englishUsFontType":3,
+ "frenchText":"Les valeurs + déplacent les notes\nà droite, les valeurs - à gauche.",
+ "frenchFontType":3,
+ "italianText":"Valori positivi spostano le note a destra,\nvalori negativi le spostano a sinistra.",
+ "italianFontType":3,
+ "germanText":"Plus-Werte verschieben die Noten nach rechts,\nMinus-Werte nach links.",
+ "germanFontType":3,
+ "spanishText":"A mayor valor de +, estas se desplazarán más hacia la derecha.\nA mayor valor de -, estas se desplazarán más a la izquierda.",
+ "spanishFontType":3,
+ "chineseTText":"+的數值越大,音符的顯示位置就越向右側移動\n-的數值越大,音符的顯示位置就越向左側移動",
+ "chineseTFontType":1,
+ "koreanText":"+수치가 클수록 음표 표시 위치가 우측으로 이동합니다\n-수치가 클수록 음표 표시 위치가 좌측으로 이동합니다",
+ "koreanFontType":2,
+ "portugueseText":"+ move para a direita\n- move para a esquerda.",
+ "portugueseFontType":2,
+ "russianText":"Чем больше значение \"+\", тем ноты правее.\nЧем больше значение \"-\", тем ноты левее.",
+ "russianFontType":2,
+ "turkishText":"+ değerler notayı sağa hareket ettirir\n- değerler ise notayı sola hareket ettirir.",
+ "turkishFontType":2,
+ "arabicText":"+ النوتات إلى جهة اليمين، بينما تحرك قيم \n- النوتات إلى جهة اليسار.",
+ "arabicFontType":2,
+ "dutchText":"+ verplaatst de noten naar rechts,\n- verplaatst de noten naar links.",
+ "dutchFontType":2,
+ "chineseSText":"+的数值越大,音符的显示位置就越向右侧移动\n-的数值越大,音符的显示位置就越向左侧移动",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_onpu_judge_desc_title",
+ "japaneseText":"音符の判定位置を調整します",
+ "englishUsText":"Adjust the timing for judging accuracy",
+ "englishUsFontType":3,
+ "frenchText":"Ajuste le timing entre les sons et les notes",
+ "frenchFontType":3,
+ "italianText":"Valori positivi anticipano il momento in cui",
+ "italianFontType":3,
+ "germanText":"Noten-Timing einstellen.",
+ "germanFontType":3,
+ "spanishText":"Ajusta la precisión para valorar las notas.",
+ "spanishFontType":3,
+ "chineseTText":"調整音符的判定位置",
+ "chineseTFontType":1,
+ "koreanText":"음표의 판정 위치를 조정합니다",
+ "koreanFontType":2,
+ "portugueseText":"Ajuste o tempo de julgamento de precisão das notas musicais",
+ "portugueseFontType":2,
+ "russianText":"Изменение скорости нот",
+ "russianFontType":2,
+ "turkishText":"Ses ve notaların zamanını ayarla",
+ "turkishFontType":2,
+ "arabicText":"ضبط توقيت الحكم على الدقة",
+ "arabicFontType":2,
+ "dutchText":"Pas de timing van de muzieknoten aan.",
+ "dutchFontType":2,
+ "chineseSText":"调整音符的判定位置",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_onpu_judge_desc_body",
+ "japaneseText":"+の数値が大きいほど音符の判定タイミングを早くします\n-の数値が大きいほど音符の判定タイミングを遅くします",
+ "englishUsText":"+ values make the timing earlier\n- values make the timing later",
+ "englishUsFontType":3,
+ "frenchText":"Les valeurs + accélèrent le timing\nLes valeurs - ralentissent le timing ",
+ "frenchFontType":3,
+ "italianText":"viene giudicato il tuo tempismo nel colpire\nle note, valori negativi lo posticipano.",
+ "italianFontType":3,
+ "germanText":"Positive Werte beschleunigen das Noten-Timing,\nnegative Werte verlangsamen es.",
+ "germanFontType":3,
+ "spanishText":"+ adelantará el momento de evaluar tu toque.\n- retrasará el momento de evaluar tu toque.",
+ "spanishFontType":3,
+ "chineseTText":"+的數值越大,音符的判定時機就越早\n-的數值越大,音符的判定時機就越慢",
+ "chineseTFontType":1,
+ "koreanText":"+수치가 클수록 음표의 판정 타이밍이 빠릅니다\n-수치가 클수록 음표의 판정 타이밍이 느립니다",
+ "koreanFontType":2,
+ "portugueseText":"+ torna o tempo mais rápido\n- tona o tempo mais lento.",
+ "portugueseFontType":2,
+ "russianText":"Чем больше значение [+], тем ноты быстрее.\nЧем больше значение [-], тем ноты медленнее.",
+ "russianFontType":2,
+ "turkishText":"+ zamanı azaltır\n- zamanı arttırır",
+ "turkishFontType":2,
+ "arabicText":"القيم + تجعل التوقيت مبكرًا\nالقيم - تجعل التوقيت متأخرًا.",
+ "arabicFontType":2,
+ "dutchText":"+ stelt de timing vroeger in.\n- stelt de timing later in.",
+ "dutchFontType":2,
+ "chineseSText":"+的数值越大,音符的判定时机就越早\n-的数值越大,音符的判定时机就越慢",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_zense",
+ "japaneseText":"前前前世",
+ "englishUsText":"Zenzenzense",
+ "englishUsFontType":3,
+ "frenchText":"Zenzenzense",
+ "frenchFontType":3,
+ "italianText":"Zenzenzense",
+ "italianFontType":3,
+ "germanText":"Zenzenzense",
+ "germanFontType":3,
+ "spanishText":"Zenzenzense",
+ "spanishFontType":3,
+ "chineseTText":"前前前世",
+ "chineseTFontType":1,
+ "koreanText":"전 전 전생",
+ "koreanFontType":2,
+ "portugueseText":"Zenzenzense",
+ "portugueseFontType":3,
+ "russianText":"Zenzenzense",
+ "russianFontType":3,
+ "turkishText":"Zenzenzense",
+ "turkishFontType":3,
+ "arabicText":"Zenzenzense",
+ "arabicFontType":3,
+ "dutchText":"Zenzenzense",
+ "dutchFontType":3,
+ "chineseSText":"前前前世",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_zense",
+ "japaneseText":"映画「君の名は。」より",
+ "englishUsText":"From \" Your name. \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Your name. \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Your name. \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Your name. \"",
+ "germanFontType":3,
+ "spanishText":"De \" Your name. \"",
+ "spanishFontType":3,
+ "chineseTText":"來自電影 \" 你的名字。 \"",
+ "chineseTFontType":1,
+ "koreanText":"영화 \"너의 이름은.\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" Your name. \"",
+ "portugueseFontType":3,
+ "russianText":"From \" Your name. \"",
+ "russianFontType":3,
+ "turkishText":"From \" Your name. \"",
+ "turkishFontType":3,
+ "arabicText":"From \" Your name. \"",
+ "arabicFontType":3,
+ "dutchText":"From \" Your name. \"",
+ "dutchFontType":3,
+ "chineseSText":"出自电影 \" 你的名字。 \"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_zense",
+ "japaneseText":"",
+ "englishUsText":"前前前世",
+ "englishUsFontType":0,
+ "frenchText":"前前前世",
+ "frenchFontType":0,
+ "italianText":"前前前世",
+ "italianFontType":0,
+ "germanText":"前前前世",
+ "germanFontType":0,
+ "spanishText":"前前前世",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"前前前世",
+ "koreanFontType":0,
+ "portugueseText":"前前前世",
+ "portugueseFontType":0,
+ "russianText":"前前前世",
+ "russianFontType":0,
+ "turkishText":"前前前世",
+ "turkishFontType":0,
+ "arabicText":"前前前世",
+ "arabicFontType":0,
+ "dutchText":"前前前世",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_mlpony",
+ "japaneseText":"My Little Pony Theme Song",
+ "englishUsText":"My Little Pony Theme Song",
+ "englishUsFontType":3,
+ "frenchText":"My Little Pony Theme Song",
+ "frenchFontType":3,
+ "italianText":"My Little Pony Theme Song",
+ "italianFontType":3,
+ "germanText":"My Little Pony Theme Song",
+ "germanFontType":3,
+ "spanishText":"My Little Pony Theme Song",
+ "spanishFontType":3,
+ "chineseTText":"My Little Pony Theme Song",
+ "chineseTFontType":1,
+ "koreanText":"My Little Pony Theme Song",
+ "koreanFontType":2,
+ "portugueseText":"My Little Pony Theme Song",
+ "portugueseFontType":3,
+ "russianText":"My Little Pony Theme Song",
+ "russianFontType":3,
+ "turkishText":"My Little Pony Theme Song",
+ "turkishFontType":3,
+ "arabicText":"My Little Pony Theme Song",
+ "arabicFontType":3,
+ "dutchText":"My Little Pony Theme Song",
+ "dutchFontType":3,
+ "chineseSText":"My Little Pony Theme Song",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_mlpony",
+ "japaneseText":"「My Little Pony Friendship is Magic」より",
+ "englishUsText":"From \" My Little Pony Friendship is Magic \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" My Little Pony Friendship is Magic \"",
+ "frenchFontType":3,
+ "italianText":"Da \" My Little Pony Friendship is Magic \"",
+ "italianFontType":3,
+ "germanText":"Aus \" My Little Pony Friendship is Magic \"",
+ "germanFontType":3,
+ "spanishText":"De \" My Little Pony Friendship is Magic \"",
+ "spanishFontType":3,
+ "chineseTText":"來自 \" My Little Pony Friendship is Magic \"",
+ "chineseTFontType":1,
+ "koreanText":"\" My Little Pony Friendship is Magic \"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" My Little Pony Friendship is Magic \"",
+ "portugueseFontType":3,
+ "russianText":"From \" My Little Pony Friendship is Magic \"",
+ "russianFontType":3,
+ "turkishText":"From \" My Little Pony Friendship is Magic \"",
+ "turkishFontType":3,
+ "arabicText":"From \" My Little Pony Friendship is Magic \"",
+ "arabicFontType":3,
+ "dutchText":"From \" My Little Pony Friendship is Magic \"",
+ "dutchFontType":3,
+ "chineseSText":"出自 \" My Little Pony Friendship is Magic \"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_mlpony",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_eva",
+ "japaneseText":"残酷な天使のテーゼ",
+ "englishUsText":"A Cruel Angel's Thesis",
+ "englishUsFontType":3,
+ "frenchText":"A Cruel Angel's Thesis",
+ "frenchFontType":3,
+ "italianText":"A Cruel Angel's Thesis",
+ "italianFontType":3,
+ "germanText":"A Cruel Angel's Thesis",
+ "germanFontType":3,
+ "spanishText":"A Cruel Angel's Thesis",
+ "spanishFontType":3,
+ "chineseTText":"殘酷天使的行動綱領",
+ "chineseTFontType":1,
+ "koreanText":"잔코쿠나텐시노테제",
+ "koreanFontType":2,
+ "portugueseText":"A Cruel Angel's Thesis",
+ "portugueseFontType":3,
+ "russianText":"A Cruel Angel's Thesis",
+ "russianFontType":3,
+ "turkishText":"A Cruel Angel's Thesis",
+ "turkishFontType":3,
+ "arabicText":"MOETE HERO",
+ "arabicFontType":3,
+ "dutchText":"A Cruel Angel's Thesis",
+ "dutchFontType":3,
+ "chineseSText":"残酷天使的行动纲领",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_eva",
+ "japaneseText":"「新世紀エヴァンゲリオン」より",
+ "englishUsText":"From \" Neon Genesis EVANGELION \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Neon Genesis EVANGELION \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Neon Genesis EVANGELION \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Neon Genesis EVANGELION \"",
+ "germanFontType":3,
+ "spanishText":"De \" Neon Genesis EVANGELION \"",
+ "spanishFontType":3,
+ "chineseTText":"來自 \" 新世紀福音戰士 \"",
+ "chineseTFontType":1,
+ "koreanText":"\"신세기 에반게리온\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" Neon Genesis EVANGELION \"",
+ "portugueseFontType":3,
+ "russianText":"From \" Neon Genesis EVANGELION \"",
+ "russianFontType":3,
+ "turkishText":"From \" Neon Genesis EVANGELION \"",
+ "turkishFontType":3,
+ "arabicText":"From \" Captain Tsubasa \"",
+ "arabicFontType":3,
+ "dutchText":"From \" Neon Genesis EVANGELION \"",
+ "dutchFontType":3,
+ "chineseSText":"出自 \" 新世纪福音战士 \"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_eva",
+ "japaneseText":"",
+ "englishUsText":"残酷な天使のテーゼ",
+ "englishUsFontType":0,
+ "frenchText":"残酷な天使のテーゼ",
+ "frenchFontType":0,
+ "italianText":"残酷な天使のテーゼ",
+ "italianFontType":0,
+ "germanText":"残酷な天使のテーゼ",
+ "germanFontType":0,
+ "spanishText":"残酷な天使のテーゼ",
+ "spanishFontType":0,
+ "chineseTText":"残酷な天使のテーゼ",
+ "chineseTFontType":0,
+ "koreanText":"残酷な天使のテーゼ",
+ "koreanFontType":0,
+ "portugueseText":"残酷な天使のテーゼ",
+ "portugueseFontType":0,
+ "russianText":"残酷な天使のテーゼ",
+ "russianFontType":0,
+ "turkishText":"残酷な天使のテーゼ",
+ "turkishFontType":0,
+ "arabicText":"残酷な天使のテーゼ",
+ "arabicFontType":0,
+ "dutchText":"残酷な天使のテーゼ",
+ "dutchFontType":0,
+ "chineseSText":"残酷な天使のテーゼ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_cap283",
+ "japaneseText":"燃えてヒーロー",
+ "englishUsText":"MOETE HERO",
+ "englishUsFontType":3,
+ "frenchText":"MOETE HERO",
+ "frenchFontType":3,
+ "italianText":"MOETE HERO",
+ "italianFontType":3,
+ "germanText":"MOETE HERO",
+ "germanFontType":3,
+ "spanishText":"MOETE HERO",
+ "spanishFontType":3,
+ "chineseTText":"燃燒的英雄",
+ "chineseTFontType":1,
+ "koreanText":"MOETE HERO",
+ "koreanFontType":2,
+ "portugueseText":"MOETE HERO",
+ "portugueseFontType":3,
+ "russianText":"MOETE HERO",
+ "russianFontType":3,
+ "turkishText":"MOETE HERO",
+ "turkishFontType":3,
+ "arabicText":"MOETE HERO",
+ "arabicFontType":3,
+ "dutchText":"MOETE HERO",
+ "dutchFontType":3,
+ "chineseSText":"燃烧的英雄",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_cap283",
+ "japaneseText":"「キャプテン翼」より",
+ "englishUsText":"From \" Captain Tsubasa \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Captain Tsubasa \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Captain Tsubasa \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Captain Tsubasa \"",
+ "germanFontType":3,
+ "spanishText":"De \" Captain Tsubasa \"",
+ "spanishFontType":3,
+ "chineseTText":"來自 \" 足球小將 \"",
+ "chineseTFontType":1,
+ "koreanText":"\" Captain Tsubasa \"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" Captain Tsubasa \"",
+ "portugueseFontType":3,
+ "russianText":"From \" Captain Tsubasa \"",
+ "russianFontType":3,
+ "turkishText":"From \" Captain Tsubasa \"",
+ "turkishFontType":3,
+ "arabicText":"From \" Captain Tsubasa \"",
+ "arabicFontType":3,
+ "dutchText":"From \" Captain Tsubasa \"",
+ "dutchFontType":3,
+ "chineseSText":"出自 \" 足球小将 \"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_cap283",
+ "japaneseText":"",
+ "englishUsText":"燃えてヒーロー",
+ "englishUsFontType":0,
+ "frenchText":"燃えてヒーロー",
+ "frenchFontType":0,
+ "italianText":"燃えてヒーロー",
+ "italianFontType":0,
+ "germanText":"燃えてヒーロー",
+ "germanFontType":0,
+ "spanishText":"燃えてヒーロー",
+ "spanishFontType":0,
+ "chineseTText":"燃えてヒーロー",
+ "chineseTFontType":0,
+ "koreanText":"燃えてヒーロー",
+ "koreanFontType":0,
+ "portugueseText":"燃えてヒーロー",
+ "portugueseFontType":0,
+ "russianText":"燃えてヒーロー",
+ "russianFontType":0,
+ "turkishText":"燃えてヒーロー",
+ "turkishFontType":0,
+ "arabicText":"燃えてヒーロー",
+ "arabicFontType":0,
+ "dutchText":"燃えてヒーロー",
+ "dutchFontType":0,
+ "chineseSText":"燃えてヒーロー",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_clsca",
+ "japaneseText":"カルメン 組曲一番終曲",
+ "englishUsText":"Carmen Prelude",
+ "englishUsFontType":3,
+ "frenchText":"Carmen Prelude",
+ "frenchFontType":3,
+ "italianText":"Carmen Prelude",
+ "italianFontType":3,
+ "germanText":"Carmen Prelude",
+ "germanFontType":3,
+ "spanishText":"Carmen Prelude",
+ "spanishFontType":3,
+ "chineseTText":"卡門第一組曲 鬥牛士之歌",
+ "chineseTFontType":1,
+ "koreanText":"카르멘 조곡 1번 종곡",
+ "koreanFontType":2,
+ "portugueseText":"Carmen Prelude",
+ "portugueseFontType":3,
+ "russianText":"Carmen Prelude",
+ "russianFontType":3,
+ "turkishText":"Carmen Prelude",
+ "turkishFontType":3,
+ "arabicText":"Carmen Prelude",
+ "arabicFontType":3,
+ "dutchText":"Carmen Prelude",
+ "dutchFontType":3,
+ "chineseSText":"卡门第一组曲 鬥牛士之歌",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_clsca",
+ "japaneseText":"ビゼー",
+ "englishUsText":"Georges Bizet",
+ "englishUsFontType":3,
+ "frenchText":"Georges Bizet",
+ "frenchFontType":3,
+ "italianText":"Georges Bizet",
+ "italianFontType":3,
+ "germanText":"Georges Bizet",
+ "germanFontType":3,
+ "spanishText":"Georges Bizet",
+ "spanishFontType":3,
+ "chineseTText":"比才",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"Georges Bizet",
+ "portugueseFontType":3,
+ "russianText":"Georges Bizet",
+ "russianFontType":3,
+ "turkishText":"Georges Bizet",
+ "turkishFontType":3,
+ "arabicText":"Georges Bizet",
+ "arabicFontType":3,
+ "dutchText":"Georges Bizet",
+ "dutchFontType":3,
+ "chineseSText":"比才",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_clsca",
+ "japaneseText":"",
+ "englishUsText":"カルメン 組曲一番終曲",
+ "englishUsFontType":0,
+ "frenchText":"カルメン 組曲一番終曲",
+ "frenchFontType":0,
+ "italianText":"カルメン 組曲一番終曲",
+ "italianFontType":0,
+ "germanText":"カルメン 組曲一番終曲",
+ "germanFontType":0,
+ "spanishText":"カルメン 組曲一番終曲",
+ "spanishFontType":0,
+ "chineseTText":"カルメン 組曲一番終曲",
+ "chineseTFontType":0,
+ "koreanText":"カルメン 組曲一番終曲",
+ "koreanFontType":0,
+ "portugueseText":"カルメン 組曲一番終曲",
+ "portugueseFontType":0,
+ "russianText":"カルメン 組曲一番終曲",
+ "russianFontType":0,
+ "turkishText":"カルメン 組曲一番終曲",
+ "turkishFontType":0,
+ "arabicText":"カルメン 組曲一番終曲",
+ "arabicFontType":0,
+ "dutchText":"カルメン 組曲一番終曲",
+ "dutchFontType":0,
+ "chineseSText":"カルメン 組曲一番終曲",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_genpe3",
+ "japaneseText":"World of GENPEI TOMADEN",
+ "englishUsText":"World of GENPEI TOMADEN",
+ "englishUsFontType":3,
+ "frenchText":"World of GENPEI TOMADEN",
+ "frenchFontType":3,
+ "italianText":"World of GENPEI TOMADEN",
+ "italianFontType":3,
+ "germanText":"World of GENPEI TOMADEN",
+ "germanFontType":3,
+ "spanishText":"World of GENPEI TOMADEN",
+ "spanishFontType":3,
+ "chineseTText":"World of GENPEI TOMADEN",
+ "chineseTFontType":1,
+ "koreanText":"World of GENPEI TOMADEN",
+ "koreanFontType":2,
+ "portugueseText":"World of GENPEI TOMADEN",
+ "portugueseFontType":3,
+ "russianText":"World of GENPEI TOMADEN",
+ "russianFontType":3,
+ "turkishText":"World of GENPEI TOMADEN",
+ "turkishFontType":3,
+ "arabicText":"World of GENPEI TOMADEN",
+ "arabicFontType":3,
+ "dutchText":"World of GENPEI TOMADEN",
+ "dutchFontType":3,
+ "chineseSText":"World of GENPEI TOMADEN",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_genpe3",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_genpe3",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_kokoo",
+ "japaneseText":"太鼓侍",
+ "englishUsText":"TAIKO ZAMURAI",
+ "englishUsFontType":3,
+ "frenchText":"TAIKO ZAMURAI",
+ "frenchFontType":3,
+ "italianText":"TAIKO ZAMURAI",
+ "italianFontType":3,
+ "germanText":"TAIKO ZAMURAI",
+ "germanFontType":3,
+ "spanishText":"TAIKO ZAMURAI",
+ "spanishFontType":3,
+ "chineseTText":"太鼓侍",
+ "chineseTFontType":1,
+ "koreanText":"타이코 자무라이",
+ "koreanFontType":2,
+ "portugueseText":"TAIKO ZAMURAI",
+ "portugueseFontType":3,
+ "russianText":"TAIKO ZAMURAI",
+ "russianFontType":3,
+ "turkishText":"TAIKO ZAMURAI",
+ "turkishFontType":3,
+ "arabicText":"TAIKO ZAMURAI",
+ "arabicFontType":3,
+ "dutchText":"TAIKO ZAMURAI",
+ "dutchFontType":3,
+ "chineseSText":"太鼓侍",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_kokoo",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_kokoo",
+ "japaneseText":"",
+ "englishUsText":"太鼓侍",
+ "englishUsFontType":0,
+ "frenchText":"太鼓侍",
+ "frenchFontType":0,
+ "italianText":"太鼓侍",
+ "italianFontType":0,
+ "germanText":"太鼓侍",
+ "germanFontType":0,
+ "spanishText":"太鼓侍",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"太鼓侍",
+ "koreanFontType":0,
+ "portugueseText":"太鼓侍",
+ "portugueseFontType":0,
+ "russianText":"太鼓侍",
+ "russianFontType":0,
+ "turkishText":"太鼓侍",
+ "turkishFontType":0,
+ "arabicText":"太鼓侍",
+ "arabicFontType":0,
+ "dutchText":"太鼓侍",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_helhal",
+ "japaneseText":"ハロー! ハロウィン",
+ "englishUsText":"Hello! Halloween",
+ "englishUsFontType":3,
+ "frenchText":"Hello! Halloween",
+ "frenchFontType":3,
+ "italianText":"Hello! Halloween",
+ "italianFontType":3,
+ "germanText":"Hello! Halloween",
+ "germanFontType":3,
+ "spanishText":"Hello! Halloween",
+ "spanishFontType":3,
+ "chineseTText":"Hello! Halloween",
+ "chineseTFontType":1,
+ "koreanText":"Hello! Halloween",
+ "koreanFontType":2,
+ "portugueseText":"Hello! Halloween",
+ "portugueseFontType":3,
+ "russianText":"Hello! Halloween",
+ "russianFontType":3,
+ "turkishText":"Hello! Halloween",
+ "turkishFontType":3,
+ "arabicText":"Hello! Halloween",
+ "arabicFontType":3,
+ "dutchText":"Hello! Halloween",
+ "dutchFontType":3,
+ "chineseSText":"Hello! Halloween",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_helhal",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_helhal",
+ "japaneseText":"",
+ "englishUsText":"ハロー! ハロウィン",
+ "englishUsFontType":0,
+ "frenchText":"ハロー! ハロウィン",
+ "frenchFontType":0,
+ "italianText":"ハロー! ハロウィン",
+ "italianFontType":0,
+ "germanText":"ハロー! ハロウィン",
+ "germanFontType":0,
+ "spanishText":"ハロー! ハロウィン",
+ "spanishFontType":0,
+ "chineseTText":"ハロー! ハロウィン",
+ "chineseTFontType":0,
+ "koreanText":"ハロー! ハロウィン",
+ "koreanFontType":0,
+ "portugueseText":"ハロー! ハロウィン",
+ "portugueseFontType":0,
+ "russianText":"ハロー! ハロウィン",
+ "russianFontType":0,
+ "turkishText":"ハロー! ハロウィン",
+ "turkishFontType":0,
+ "arabicText":"ハロー! ハロウィン",
+ "arabicFontType":0,
+ "dutchText":"ハロー! ハロウィン",
+ "dutchFontType":0,
+ "chineseSText":"ハロー! ハロウィン",
+ "chineseSFontType":0
+ },
+ {
+ "key":"setting_faq_nolink",
+ "japaneseText":"お問い合わせ",
+ "englishUsText":"Got a Question?",
+ "englishUsFontType":3,
+ "frenchText":"Contact",
+ "frenchFontType":3,
+ "italianText":"Fai una domanda",
+ "italianFontType":3,
+ "germanText":"Anfrage",
+ "germanFontType":3,
+ "spanishText":"Consultas",
+ "spanishFontType":3,
+ "chineseTText":"聯絡我們",
+ "chineseTFontType":1,
+ "koreanText":"문의",
+ "koreanFontType":2,
+ "portugueseText":"Perguntas?",
+ "portugueseFontType":2,
+ "russianText":"Связаться с нами",
+ "russianFontType":2,
+ "turkishText":"Bir sorun mu var?",
+ "turkishFontType":2,
+ "arabicText":"هل لديك أي سؤال؟ ",
+ "arabicFontType":2,
+ "dutchText":"Heb je een vraag?",
+ "dutchFontType":2,
+ "chineseSText":"联络我们",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_faq",
+ "japaneseText":"お問い合わせ",
+ "englishUsText":"Got a Question?",
+ "englishUsFontType":3,
+ "frenchText":"Contact",
+ "frenchFontType":3,
+ "italianText":"Fai una domanda",
+ "italianFontType":3,
+ "germanText":"Anfrage",
+ "germanFontType":3,
+ "spanishText":"Consultas",
+ "spanishFontType":3,
+ "chineseTText":"聯絡我們",
+ "chineseTFontType":1,
+ "koreanText":"문의",
+ "koreanFontType":2,
+ "portugueseText":"Perguntas?",
+ "portugueseFontType":2,
+ "russianText":"Связаться с нами",
+ "russianFontType":2,
+ "turkishText":"Bir sorun mu var?",
+ "turkishFontType":2,
+ "arabicText":"هل لديك أي سؤال؟ ",
+ "arabicFontType":2,
+ "dutchText":"Heb je een vraag?",
+ "dutchFontType":2,
+ "chineseSText":"联络我们",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_faq_desc",
+ "japaneseText":"Support site URL:",
+ "englishUsText":"Support site URL:",
+ "englishUsFontType":3,
+ "frenchText":"Support site URL:",
+ "frenchFontType":3,
+ "italianText":"Support site URL:",
+ "italianFontType":3,
+ "germanText":"Support site URL:",
+ "germanFontType":3,
+ "spanishText":"Support site URL:",
+ "spanishFontType":3,
+ "chineseTText":"Support site URL:",
+ "chineseTFontType":1,
+ "koreanText":"Support site URL:",
+ "koreanFontType":2,
+ "portugueseText":"Support site URL:",
+ "portugueseFontType":2,
+ "russianText":"Support site URL:",
+ "russianFontType":2,
+ "turkishText":"Support site URL:",
+ "turkishFontType":2,
+ "arabicText":"Support site URL:",
+ "arabicFontType":2,
+ "dutchText":"Support site URL:",
+ "dutchFontType":2,
+ "chineseSText":"Support site URL:",
+ "chineseSFontType":4
+ },
+ {
+ "key":"desc_parental_control",
+ "japaneseText":"現在お使いのアカウントは、\nオンラインでのゲームプレイが許可されておりません。\nアカウント管理者にご確認下さい。",
+ "englishUsText":"This account cannot be used for playing\nonline. Please check your permissions\nwith the account owner.",
+ "englishUsFontType":3,
+ "frenchText":"Jeu en ligne non autorisé\nsur ce compte.\nVeuillez consulter son responsable.",
+ "frenchFontType":3,
+ "italianText":"Non puoi giocare online\ncon questo account. Contatta\nil proprietario dell'account.",
+ "italianFontType":3,
+ "germanText":"Der Online-Modus wurde für das\naktuelle Konto nicht freigegeben.\nBitte an den Kontoinhaber wenden.",
+ "germanFontType":3,
+ "spanishText":"Esta cuenta no tiene permiso\npara jugar en línea.\nCompruébalo con el propietario de la cuenta.",
+ "spanishFontType":3,
+ "chineseTText":"您現在使用的帳號無法在線上進行遊戲。\n請向帳號管理者確認。",
+ "chineseTFontType":1,
+ "koreanText":"현재 사용 중인 계정은\n온라인 게임 플레이가 허가된 계정이 아닙니다.\n계정 관리자에게 확인 바랍니다.",
+ "koreanFontType":2,
+ "portugueseText":"Esta conta não permite jogo\nonline. Verifique com suas permissões com\no administrador da sua conta.",
+ "portugueseFontType":2,
+ "russianText":"У данного аккаунта нет доступа\nк игре онлайн. Обратитесь к\nвладельцу аккаунта.",
+ "russianFontType":2,
+ "turkishText":"Bu hesap online oynamak için\nkullanılamaz. Lütfen hesap sahibi\nile izinlerinizi kontrol edin.",
+ "turkishFontType":2,
+ "arabicText":"لا يمكن استخدام هذا الحساب للعب \nعبر الانترنت. يرجى التحقق من\nأذوناتك مع صاحب الحساب.",
+ "arabicFontType":2,
+ "dutchText":"Met dit account kun je niet\nonline spelen. De accountbeheerder\nkan dat veranderen.",
+ "dutchFontType":2,
+ "chineseSText":"您当前使用的账号无法进行在线游戏。\n请向账号管理员确认。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"language_setting_button",
+ "japaneseText":"言語の設定",
+ "englishUsText":"Language",
+ "englishUsFontType":3,
+ "frenchText":"Langue du jeu",
+ "frenchFontType":3,
+ "italianText":"Lingua",
+ "italianFontType":3,
+ "germanText":"Spracheinstellungen",
+ "germanFontType":3,
+ "spanishText":"Idioma",
+ "spanishFontType":3,
+ "chineseTText":"語言設定",
+ "chineseTFontType":1,
+ "koreanText":"언어 설정",
+ "koreanFontType":2,
+ "portugueseText":"Idioma",
+ "portugueseFontType":2,
+ "russianText":"Язык",
+ "russianFontType":2,
+ "turkishText":"Dil",
+ "turkishFontType":2,
+ "arabicText":"اللغة",
+ "arabicFontType":2,
+ "dutchText":"Taal",
+ "dutchFontType":2,
+ "chineseSText":"语言设定",
+ "chineseSFontType":4
+ },
+ {
+ "key":"language_setting_title",
+ "japaneseText":"言語の設定",
+ "englishUsText":"Language Settings",
+ "englishUsFontType":3,
+ "frenchText":"Sélection de la langue",
+ "frenchFontType":3,
+ "italianText":"Impostazioni lingua",
+ "italianFontType":3,
+ "germanText":"Spracheinstellungen",
+ "germanFontType":3,
+ "spanishText":"Idioma",
+ "spanishFontType":3,
+ "chineseTText":"語言設定",
+ "chineseTFontType":1,
+ "koreanText":"언어 설정",
+ "koreanFontType":2,
+ "portugueseText":"Configurações de Idioma",
+ "portugueseFontType":2,
+ "russianText":"Настройки языка",
+ "russianFontType":2,
+ "turkishText":"Dil Ayarları",
+ "turkishFontType":2,
+ "arabicText":"إعدادات اللغة",
+ "arabicFontType":2,
+ "dutchText":"Taalinstellingen",
+ "dutchFontType":2,
+ "chineseSText":"语言设定",
+ "chineseSFontType":4
+ },
+ {
+ "key":"controller_confirm_button",
+ "japaneseText":"ゲームコントローラの設定を確認",
+ "englishUsText":"Game Controls",
+ "englishUsFontType":3,
+ "frenchText":"Confirmer les réglages",
+ "frenchFontType":3,
+ "italianText":"Controller",
+ "italianFontType":3,
+ "germanText":"Gamecontroller-Einstellungen",
+ "germanFontType":3,
+ "spanishText":"Elegir mando",
+ "spanishFontType":3,
+ "chineseTText":"確認遊戲控制器設定",
+ "chineseTFontType":1,
+ "koreanText":"게임 컨트롤러 설정 확인",
+ "koreanFontType":2,
+ "portugueseText":"Controles de Jogo",
+ "portugueseFontType":2,
+ "russianText":"Управление",
+ "russianFontType":2,
+ "turkishText":"Oyun Kontrolleri",
+ "turkishFontType":2,
+ "arabicText":"عناصر التحكم في اللعبة",
+ "arabicFontType":2,
+ "dutchText":"Controllerinstellingen",
+ "dutchFontType":2,
+ "chineseSText":"确认游戏控制器设定",
+ "chineseSFontType":4
+ },
+ {
+ "key":"controller_confirm_title",
+ "japaneseText":"ゲームコントローラの設定確認",
+ "englishUsText":"Game Controls",
+ "englishUsFontType":3,
+ "frenchText":"Confirmation des réglages",
+ "frenchFontType":3,
+ "italianText":"Impostazioni controller",
+ "italianFontType":3,
+ "germanText":"Gamecontroller-Einstellungen",
+ "germanFontType":3,
+ "spanishText":"Elegir mando",
+ "spanishFontType":3,
+ "chineseTText":"遊戲控制器設定確認",
+ "chineseTFontType":1,
+ "koreanText":"게임 컨트롤러 설정 확인",
+ "koreanFontType":2,
+ "portugueseText":"Controles de Jogo",
+ "portugueseFontType":2,
+ "russianText":"Управление",
+ "russianFontType":2,
+ "turkishText":"Oyun Kontrolleri",
+ "turkishFontType":2,
+ "arabicText":"عناصر التحكم في اللعبة",
+ "arabicFontType":2,
+ "dutchText":"Controllerinstellingen",
+ "dutchFontType":2,
+ "chineseSText":"游戏控制器设定确认",
+ "chineseSFontType":4
+ },
+ {
+ "key":"language_age",
+ "japaneseText":"日本語",
+ "englishUsText":"English",
+ "englishUsFontType":3,
+ "frenchText":"Français",
+ "frenchFontType":3,
+ "italianText":"Italiano",
+ "italianFontType":3,
+ "germanText":"Deutsch",
+ "germanFontType":3,
+ "spanishText":"Español",
+ "spanishFontType":3,
+ "chineseTText":"繁體中文",
+ "chineseTFontType":1,
+ "koreanText":"한국어",
+ "koreanFontType":2,
+ "portugueseText":"Português (Brasil)",
+ "portugueseFontType":2,
+ "russianText":"Русский",
+ "russianFontType":2,
+ "turkishText":"Türkçe",
+ "turkishFontType":2,
+ "arabicText":"العربية",
+ "arabicFontType":2,
+ "dutchText":"Nederlands",
+ "dutchFontType":2,
+ "chineseSText":"简体中文",
+ "chineseSFontType":4
+ },
+ {
+ "key":"osirase_setting_button",
+ "japaneseText":"おしらせ一覧",
+ "englishUsText":"Notices",
+ "englishUsFontType":3,
+ "frenchText":"Annonces",
+ "frenchFontType":3,
+ "italianText":"Notifiche",
+ "italianFontType":3,
+ "germanText":"Nachrichtenliste",
+ "germanFontType":3,
+ "spanishText":"Avisos",
+ "spanishFontType":3,
+ "chineseTText":"公告一覽",
+ "chineseTFontType":1,
+ "koreanText":"알림 목록",
+ "koreanFontType":2,
+ "portugueseText":"Lista de Avisos",
+ "portugueseFontType":2,
+ "russianText":"Уведомления",
+ "russianFontType":2,
+ "turkishText":"Bildirimler",
+ "turkishFontType":2,
+ "arabicText":"الإشعارات",
+ "arabicFontType":2,
+ "dutchText":"Berichten",
+ "dutchFontType":2,
+ "chineseSText":"公告一览",
+ "chineseSFontType":4
+ },
+ {
+ "key":"osirase_title",
+ "japaneseText":"おしらせ",
+ "englishUsText":"Notices",
+ "englishUsFontType":3,
+ "frenchText":"Annonce",
+ "frenchFontType":3,
+ "italianText":"Notifiche",
+ "italianFontType":3,
+ "germanText":"Nachrichten",
+ "germanFontType":3,
+ "spanishText":"Avisos",
+ "spanishFontType":3,
+ "chineseTText":"公告",
+ "chineseTFontType":1,
+ "koreanText":"알림",
+ "koreanFontType":2,
+ "portugueseText":"Avisos",
+ "portugueseFontType":2,
+ "russianText":"Уведомление",
+ "russianFontType":2,
+ "turkishText":"Bildirimler",
+ "turkishFontType":2,
+ "arabicText":"الإشعارات",
+ "arabicFontType":2,
+ "dutchText":"Berichten",
+ "dutchFontType":2,
+ "chineseSText":"公告",
+ "chineseSFontType":4
+ },
+ {
+ "key":"load_game_title",
+ "japaneseText":"セーブデータをよみこむ",
+ "englishUsText":"Load Save Data",
+ "englishUsFontType":3,
+ "frenchText":"Charger une partie",
+ "frenchFontType":3,
+ "italianText":"Carica salvataggio",
+ "italianFontType":3,
+ "germanText":"Speicherdatei laden",
+ "germanFontType":3,
+ "spanishText":"Cargar partida",
+ "spanishFontType":3,
+ "chineseTText":"讀取存檔紀錄",
+ "chineseTFontType":1,
+ "koreanText":"세이브 데이터 불러오기",
+ "koreanFontType":2,
+ "portugueseText":"Ler dados salvos",
+ "portugueseFontType":2,
+ "russianText":"Загрузить данные",
+ "russianFontType":2,
+ "turkishText":"Kayıtlı veriyi yükle",
+ "turkishFontType":2,
+ "arabicText":"تحميل البيانات المحفوظة",
+ "arabicFontType":2,
+ "dutchText":"Spel laden",
+ "dutchFontType":2,
+ "chineseSText":"读取存档记录",
+ "chineseSFontType":4
+ },
+ {
+ "key":"load_game_desc",
+ "japaneseText":"よみこむセーブデータをえらんで、けっていボタンを押してください。",
+ "englishUsText":"Select save data to load and press Confirm.",
+ "englishUsFontType":3,
+ "frenchText":"Choisissez la partie à charger et appuyez sur Confirmer.",
+ "frenchFontType":3,
+ "italianText":"Scegli un salvataggio e premi OK.",
+ "italianFontType":3,
+ "germanText":"Wähle die zu ladende Speicherdatei und drücke Bestätigen.",
+ "germanFontType":3,
+ "spanishText":"Elige la partida que quieres cargar y pulsa Confirmar.",
+ "spanishFontType":3,
+ "chineseTText":"請選擇要讀取的存檔紀錄後,按下確定鍵。",
+ "chineseTFontType":1,
+ "koreanText":"불러올 세이브 데이터를 선택하고 결정 버튼을 눌러 주세요.",
+ "koreanFontType":2,
+ "portugueseText":"Escolha e pressione Confirmar.",
+ "portugueseFontType":2,
+ "russianText":"Выберите данные для загрузки и нажмите «Подтвердить».",
+ "russianFontType":2,
+ "turkishText":"Yüklemek için kayıtlı veriyi seç ve Onayla'e bas.",
+ "turkishFontType":2,
+ "arabicText":"اختر البيانات المحفوظة لتحميلها ثم اضغط موافق.",
+ "arabicFontType":2,
+ "dutchText":"Selecteer welk spel je wilt laden en druk op Bevestigen.",
+ "dutchFontType":2,
+ "chineseSText":"请选择要读取的存档记录后,按下确定键。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"load_game_emptyslot",
+ "japaneseText":"空きスロット",
+ "englishUsText":"Empty",
+ "englishUsFontType":3,
+ "frenchText":"Emplacement vide",
+ "frenchFontType":3,
+ "italianText":"Slot vuoto",
+ "italianFontType":3,
+ "germanText":"Freier Slot",
+ "germanFontType":3,
+ "spanishText":"No hay datos",
+ "spanishFontType":3,
+ "chineseTText":"空白欄位",
+ "chineseTFontType":1,
+ "koreanText":"빈 슬롯",
+ "koreanFontType":2,
+ "portugueseText":"Vazio",
+ "portugueseFontType":2,
+ "russianText":"Свободный слот",
+ "russianFontType":2,
+ "turkishText":"Boş",
+ "turkishFontType":2,
+ "arabicText":"فارغة",
+ "arabicFontType":2,
+ "dutchText":"Leeg",
+ "dutchFontType":2,
+ "chineseSText":"空白栏位",
+ "chineseSFontType":4
+ },
+ {
+ "key":"load_game_data_yes",
+ "japaneseText":"このスロットのセーブデータをよみこんでタイトル画面にもどります。\nよろしいですか?",
+ "englishUsText":"Load this save data and return to the title screen?",
+ "englishUsFontType":3,
+ "frenchText":"Charger ces données vous renverra à l'écran-titre.\nConfirmer ?",
+ "frenchFontType":3,
+ "italianText":"Carichi questo salvataggio e torni al titolo?",
+ "italianFontType":3,
+ "germanText":"Speicherdatei dieses Slots wird geladen und\ndu kehrst zum Titelbildschirm zurück.\nFortfahren?",
+ "germanFontType":3,
+ "spanishText":"¿Quieres cargar esta partida?\nVolverás a la pantalla de inicio.",
+ "spanishFontType":3,
+ "chineseTText":"將讀取此欄位的存檔紀錄並返回標題畫面。\n確定要繼續嗎?",
+ "chineseTFontType":1,
+ "koreanText":"이 슬롯의 세이브 데이터를 불러오고 \n타이틀 화면으로 돌아갑니다.\n계속하시겠습니까?",
+ "koreanFontType":2,
+ "portugueseText":"Escolher dados e voltar à tela de título?",
+ "portugueseFontType":2,
+ "russianText":"Загрузить выбранные данные\nи вернуться в главное меню?",
+ "russianFontType":2,
+ "turkishText":"Bu kayıtlı veriyi yükleyip başlık ekranına dönülsün mü?",
+ "turkishFontType":2,
+ "arabicText":"هل ترغب في تحميل البيانات المحفوظة هذه والرجوع إلى عنوان الشاشة؟",
+ "arabicFontType":2,
+ "dutchText":"Wil je dit spel laden en terugkeren naar het beginscherm?",
+ "dutchFontType":2,
+ "chineseSText":"将读取此栏位的存档记录并返回标题画面。\n确定要继续吗?",
+ "chineseSFontType":4
+ },
+ {
+ "key":"load_game_data_no",
+ "japaneseText":"さいしょから始めます。よろしいですか?",
+ "englishUsText":"Start new game?",
+ "englishUsFontType":3,
+ "frenchText":"Vous commencerez une nouvelle partie. Confirmer ?",
+ "frenchFontType":3,
+ "italianText":"Ricominci dall'inizio?",
+ "italianFontType":3,
+ "germanText":"Neues Spiel wird begonnen. Fortfahren?",
+ "germanFontType":3,
+ "spanishText":"¿Quieres empezar una partida nueva?",
+ "spanishFontType":3,
+ "chineseTText":"將從頭開始新的遊戲。確定要繼續嗎?",
+ "chineseTFontType":1,
+ "koreanText":"처음부터 다시 시작합니다. 계속하시겠습니까?",
+ "koreanFontType":2,
+ "portugueseText":"Começar novo jogo?",
+ "portugueseFontType":2,
+ "russianText":"Начать сначала?",
+ "russianFontType":2,
+ "turkishText":"Yeni oyun başlatılsın mı?",
+ "turkishFontType":2,
+ "arabicText":"هل تريد بدء لعبة جديدة؟",
+ "arabicFontType":2,
+ "dutchText":"Wil je een nieuw spel beginnen?",
+ "dutchFontType":2,
+ "chineseSText":"将从头开始新的游戏。确定要继续吗?",
+ "chineseSFontType":4
+ },
+ {
+ "key":"delete_data_title",
+ "japaneseText":"セーブデータの削除",
+ "englishUsText":"Delete Save Data",
+ "englishUsFontType":3,
+ "frenchText":"Effacer une sauvegarde",
+ "frenchFontType":3,
+ "italianText":"Cancella salvataggio",
+ "italianFontType":3,
+ "germanText":"Speicherdatei löschen",
+ "germanFontType":3,
+ "spanishText":"Borrar partida",
+ "spanishFontType":3,
+ "chineseTText":"刪除存檔紀錄",
+ "chineseTFontType":1,
+ "koreanText":"세이브 데이터 삭제",
+ "koreanFontType":2,
+ "portugueseText":"Excluir dados salvos",
+ "portugueseFontType":2,
+ "russianText":"Удалить сохраненные данные",
+ "russianFontType":2,
+ "turkishText":"Kayıtlı veriyi sil",
+ "turkishFontType":2,
+ "arabicText":"حذف البيانات المحفوظة",
+ "arabicFontType":2,
+ "dutchText":"Spel verwijderen",
+ "dutchFontType":2,
+ "chineseSText":"删除存档记录",
+ "chineseSFontType":4
+ },
+ {
+ "key":"delete_data_desc",
+ "japaneseText":"削除するセーブデータをえらんで、けっていボタンを押してください。",
+ "englishUsText":"Select save data to delete and press Confirm.",
+ "englishUsFontType":3,
+ "frenchText":"Choisissez la partie à effacer et appuyez sur Confirmer.",
+ "frenchFontType":3,
+ "italianText":"Scegli il salvataggio da cancellare e premi OK.",
+ "italianFontType":3,
+ "germanText":"Wähle die zu löschende Speicherdatei und drücke Bestätigen.",
+ "germanFontType":3,
+ "spanishText":"Elige la partida que quieres borrar y pulsa Confirmar.",
+ "spanishFontType":3,
+ "chineseTText":"請選擇要刪除的存檔紀錄後,按下確定鍵。",
+ "chineseTFontType":1,
+ "koreanText":"삭제할 세이브 데이터를 선택하고 결정 버튼을 눌러 주세요.",
+ "koreanFontType":2,
+ "portugueseText":"Escolha os dados a excluir e pressione Confirmar.",
+ "portugueseFontType":2,
+ "russianText":"Выберите данные для удаления и нажмите «Подтвердить».",
+ "russianFontType":2,
+ "turkishText":"Silmek için kayıtlı veriyi seç ve Onayla'e bas.",
+ "turkishFontType":2,
+ "arabicText":"حدد البيانات المحفوظة لحذفها ثم اضغط موافق.",
+ "arabicFontType":2,
+ "dutchText":"Selecteer wat je wilt verwijderen en druk op Bevestigen.",
+ "dutchFontType":2,
+ "chineseSText":"请选择要删除的存档记录后,按下确定键。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"delete_data_emptyslot",
+ "japaneseText":"あきスロット",
+ "englishUsText":"Empty",
+ "englishUsFontType":3,
+ "frenchText":"Emplacement vide",
+ "frenchFontType":3,
+ "italianText":"Slot vuoto",
+ "italianFontType":3,
+ "germanText":"Freier Slot",
+ "germanFontType":3,
+ "spanishText":"No hay datos",
+ "spanishFontType":3,
+ "chineseTText":"空白欄位",
+ "chineseTFontType":1,
+ "koreanText":"빈 슬롯",
+ "koreanFontType":2,
+ "portugueseText":"Vazio",
+ "portugueseFontType":2,
+ "russianText":"Свободный слот",
+ "russianFontType":2,
+ "turkishText":"Boş",
+ "turkishFontType":2,
+ "arabicText":"فارغة",
+ "arabicFontType":2,
+ "dutchText":"Leeg",
+ "dutchFontType":2,
+ "chineseSText":"空白栏位",
+ "chineseSFontType":4
+ },
+ {
+ "key":"delete_data_dialog_1",
+ "japaneseText":"現在使用しているスロットのセーブデータを削除します。\nよろしいですか?",
+ "englishUsText":"The save data currently in use will be deleted.\nProceed?",
+ "englishUsFontType":3,
+ "frenchText":"Cela effacera les données de l'emplacement\nutilisé. Confirmer ?",
+ "frenchFontType":3,
+ "italianText":"Cancelli il salvataggio nello slot in uso?",
+ "italianFontType":3,
+ "germanText":"Speicherdatei im aktuell\ngenutzten Slot wird gelöscht.\nFortfahren?",
+ "germanFontType":3,
+ "spanishText":"¿Quieres borrar la partida actual?",
+ "spanishFontType":3,
+ "chineseTText":"將刪除目前使用欄位的存檔紀錄。\n確定要繼續嗎?",
+ "chineseTFontType":1,
+ "koreanText":"현재 사용 중인 슬롯의 세이브 데이터를 삭제합니다.\n계속하시겠습니까?",
+ "koreanFontType":2,
+ "portugueseText":"Os dados salvos atualmente em uso serão excluídos.\nContinuar?",
+ "portugueseFontType":2,
+ "russianText":"Удалить сохраненные данные из выбранного слота?",
+ "russianFontType":2,
+ "turkishText":"Kullanımdaki kayıtlı veri silinecek.\nDevam?",
+ "turkishFontType":2,
+ "arabicText":"سيتم حذف البيانات المحفوظة.\nهل ترغب في المتابعة؟",
+ "arabicFontType":2,
+ "dutchText":"Weet je zeker dat je het huidige spel\nwilt verwijderen?",
+ "dutchFontType":2,
+ "chineseSText":"将删除目前使用栏位的存档记录。\n确定要继续吗?",
+ "chineseSFontType":4
+ },
+ {
+ "key":"delete_data_dialog_2",
+ "japaneseText":"進行中のデータが全て失われます。やめますか?",
+ "englishUsText":"You will lose all data of the game you are\ncurrently using. Cancel?",
+ "englishUsFontType":3,
+ "frenchText":"Toute votre progression sera perdue.\nAnnuler ?",
+ "frenchFontType":3,
+ "italianText":"Perderai tutti i progressi. Vuoi annullare?",
+ "italianFontType":3,
+ "germanText":"Alle Daten des Spielstands gehen verloren.\nAbbrechen?",
+ "germanFontType":3,
+ "spanishText":"Perderás todo tu progreso.\n¿Estás seguro?",
+ "spanishFontType":3,
+ "chineseTText":"遊玩中的紀錄將會全部消失。要放棄刪除嗎?",
+ "chineseTFontType":1,
+ "koreanText":"진행 중인 데이터가 모두 사라집니다. \n삭제를 그만두시겠습니까?",
+ "koreanFontType":2,
+ "portugueseText":"Você perderá os dados do jogo que está\nusando atualmente. Cancelar?",
+ "portugueseFontType":2,
+ "russianText":"Текущие данные будут потеряны. Продолжить?",
+ "russianFontType":2,
+ "turkishText":"Kullandığın tüm oyun verilerin silinecek.\nİptal?",
+ "turkishFontType":2,
+ "arabicText":"ستفقد جميع بيانات اللعب التي تستخدمها حاليًا.\nهل تريد الإلغاء؟",
+ "arabicFontType":2,
+ "dutchText":"De spelgegevens zullen verloren gaan.\nWil je deze actie annuleren?",
+ "dutchFontType":2,
+ "chineseSText":"游玩中的记录将会全部消失。要放弃删除吗?",
+ "chineseSFontType":4
+ },
+ {
+ "key":"delete_data_dialog_3",
+ "japaneseText":"リセットして最初からはじめます。よろしいですか?",
+ "englishUsText":"You will reset your current game and start anew.\nProceed?",
+ "englishUsFontType":3,
+ "frenchText":"La partie sera réinitialisée. Confirmer ?",
+ "frenchFontType":3,
+ "italianText":"Ripristini per ricominciare dall'inizio?",
+ "italianFontType":3,
+ "germanText":"Spielstand wird zurückgesetzt und\ndu beginnst das Spiel neu. Fortfahren?",
+ "germanFontType":3,
+ "spanishText":"¿Quieres borrar los datos\ny empezar desde el principio?",
+ "spanishFontType":3,
+ "chineseTText":"重置後將從頭開始新的遊戲。確定要繼續嗎?",
+ "chineseTFontType":1,
+ "koreanText":"초기화 후 처음부터 다시 시작합니다. 계속하시겠습니까?",
+ "koreanFontType":2,
+ "portugueseText":"O jogo atual será reiniciado e começará como novo.\nContinuar?",
+ "portugueseFontType":2,
+ "russianText":"Сбросить и начать с самого начала?",
+ "russianFontType":2,
+ "turkishText":"Geçerli oyun sıfırlanıp yeni bir oyun başlatılacak.\nDevam?",
+ "turkishFontType":2,
+ "arabicText":"ستعيد ضبط لعبتك الحالية وستبدأ من جديد.\n هل تريد المتابعة؟",
+ "arabicFontType":2,
+ "dutchText":"Wil je de spelgegevens resetten\nen opnieuw beginnen?",
+ "dutchFontType":2,
+ "chineseSText":"重置后将从头开始新的游戏。确定要继续吗?",
+ "chineseSFontType":4
+ },
+ {
+ "key":"delete_data_dialog_not_use_now",
+ "japaneseText":"選択したスロットのセーブデータを削除します。\nよろしいですか?",
+ "englishUsText":"The selected save data will be deleted. Proceed?",
+ "englishUsFontType":3,
+ "frenchText":"Cela effacera les données de l'emplacement\nsélectionné. Confirmer ?",
+ "frenchFontType":3,
+ "italianText":"Cancelli il salvataggio in questo slot?",
+ "italianFontType":3,
+ "germanText":"Speicherdatei im ausgewählten Slot\nwird gelöscht. Fortfahren?",
+ "germanFontType":3,
+ "spanishText":"¿Quieres borrar la partida seleccionada?",
+ "spanishFontType":3,
+ "chineseTText":"將刪除所選擇欄位的存檔紀錄。\n確定要繼續嗎?",
+ "chineseTFontType":1,
+ "koreanText":"선택한 슬롯의 세이브 데이터를 삭제합니다.\n계속하시겠습니까?",
+ "koreanFontType":2,
+ "portugueseText":"Os dados salvos selecionados serão excluídos. Continuar?",
+ "portugueseFontType":2,
+ "russianText":"Удалить сохраненные данные выбранного слота?",
+ "russianFontType":2,
+ "turkishText":"Seçili kayıtlı veri silinecek. Devam?",
+ "turkishFontType":2,
+ "arabicText":"سيتم حذف البيانات المحفوظة المحددة. هل تريد المتابعة؟",
+ "arabicFontType":2,
+ "dutchText":"Wil je het geselecteerde spel verwijderen?",
+ "dutchFontType":2,
+ "chineseSText":"将删除所选择栏位的存档记录。\n确定要继续吗?",
+ "chineseSFontType":4
+ },
+ {
+ "key":"select_data_in_used",
+ "japaneseText":"使用中",
+ "englishUsText":"In Use",
+ "englishUsFontType":3,
+ "frenchText":"En cours d'utilisation",
+ "frenchFontType":3,
+ "italianText":"In uso",
+ "italianFontType":3,
+ "germanText":"In Verwendung",
+ "germanFontType":3,
+ "spanishText":"Contiene datos",
+ "spanishFontType":3,
+ "chineseTText":"使用中",
+ "chineseTFontType":1,
+ "koreanText":"사용 중",
+ "koreanFontType":2,
+ "portugueseText":"Em uso",
+ "portugueseFontType":2,
+ "russianText":"Используется",
+ "russianFontType":2,
+ "turkishText":"Kullanımda",
+ "turkishFontType":2,
+ "arabicText":"قيد الاستخدام",
+ "arabicFontType":2,
+ "dutchText":"In gebruik",
+ "dutchFontType":2,
+ "chineseSText":"使用中",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_totoro",
+ "japaneseText":"となりのトトロ",
+ "englishUsText":"My Neighbor Totoro – Ending Theme Song",
+ "englishUsFontType":3,
+ "frenchText":"Mon Voisin Totoro - générique de fin",
+ "frenchFontType":3,
+ "italianText":"Il mio vicino Totoro - Tema principale",
+ "italianFontType":3,
+ "germanText":"Mein Nachbar Totoro – Abspann",
+ "germanFontType":3,
+ "spanishText":"Mi Vecino Totoro (Tema principal - Tema final)",
+ "spanishFontType":3,
+ "chineseTText":"隔壁的龍貓",
+ "chineseTFontType":1,
+ "koreanText":"이웃집 토토로",
+ "koreanFontType":2,
+ "portugueseText":"My Neighbor Totoro – Ending Theme Song",
+ "portugueseFontType":3,
+ "russianText":"My Neighbor Totoro – Ending Theme Song",
+ "russianFontType":3,
+ "turkishText":"My Neighbor Totoro – Ending Theme Song",
+ "turkishFontType":3,
+ "arabicText":"My Neighbor Totoro – Ending Theme Song",
+ "arabicFontType":3,
+ "dutchText":"My Neighbor Totoro – Ending Theme Song",
+ "dutchFontType":3,
+ "chineseSText":"隔壁的龙猫",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_totoro",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_totoro",
+ "japaneseText":"",
+ "englishUsText":"となりのトトロ",
+ "englishUsFontType":0,
+ "frenchText":"となりのトトロ",
+ "frenchFontType":0,
+ "italianText":"となりのトトロ",
+ "italianFontType":0,
+ "germanText":"となりのトトロ",
+ "germanFontType":0,
+ "spanishText":"となりのトトロ",
+ "spanishFontType":0,
+ "chineseTText":"となりのトトロ",
+ "chineseTFontType":0,
+ "koreanText":"となりのトトロ",
+ "koreanFontType":0,
+ "portugueseText":"となりのトトロ",
+ "portugueseFontType":0,
+ "russianText":"となりのトトロ",
+ "russianFontType":0,
+ "turkishText":"となりのトトロ",
+ "turkishFontType":0,
+ "arabicText":"となりのトトロ",
+ "arabicFontType":0,
+ "dutchText":"となりのトトロ",
+ "dutchFontType":0,
+ "chineseSText":"となりのトトロ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_pacm40",
+ "japaneseText":"JOIN THE PAC - 太鼓の達人 Ver. -",
+ "englishUsText":"JOIN THE PAC -Taiko No Tatsujin Ver.-",
+ "englishUsFontType":3,
+ "frenchText":"JOIN THE PAC -Taiko No Tatsujin Ver.-",
+ "frenchFontType":3,
+ "italianText":"JOIN THE PAC -Taiko No Tatsujin Ver.-",
+ "italianFontType":3,
+ "germanText":"JOIN THE PAC -Taiko No Tatsujin Ver.-",
+ "germanFontType":3,
+ "spanishText":"JOIN THE PAC -Taiko No Tatsujin Ver.-",
+ "spanishFontType":3,
+ "chineseTText":"JOIN THE PAC - 太鼓之達人 Ver. -",
+ "chineseTFontType":1,
+ "koreanText":"JOIN THE PAC - 태고의 달인 Ver. -",
+ "koreanFontType":2,
+ "portugueseText":"JOIN THE PAC -Taiko No Tatsujin Ver.-",
+ "portugueseFontType":3,
+ "russianText":"JOIN THE PAC -Taiko No Tatsujin Ver.-",
+ "russianFontType":3,
+ "turkishText":"JOIN THE PAC -Taiko No Tatsujin Ver.-",
+ "turkishFontType":3,
+ "arabicText":"JOIN THE PAC -Taiko No Tatsujin Ver.-",
+ "arabicFontType":3,
+ "dutchText":"JOIN THE PAC -Taiko No Tatsujin Ver.-",
+ "dutchFontType":3,
+ "chineseSText":"JOIN THE PAC - 太鼓之达人 Ver. -",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_pacm40",
+ "japaneseText":"パックマン40周年公式テーマ楽曲",
+ "englishUsText":"Official Theme Song for PAC-MAN 40th Anniversary",
+ "englishUsFontType":3,
+ "frenchText":"Official Theme Song for PAC-MAN 40th Anniversary",
+ "frenchFontType":3,
+ "italianText":"Official Theme Song for PAC-MAN 40th Anniversary",
+ "italianFontType":3,
+ "germanText":"Official Theme Song for PAC-MAN 40th Anniversary",
+ "germanFontType":3,
+ "spanishText":"Official Theme Song for PAC-MAN 40th Anniversary",
+ "spanishFontType":3,
+ "chineseTText":"PAC-MAN 40周年官方主題曲",
+ "chineseTFontType":1,
+ "koreanText":"PAC-MAN 40주년 공식 테마곡",
+ "koreanFontType":2,
+ "portugueseText":"Official Theme Song for PAC-MAN 40th Anniversary",
+ "portugueseFontType":3,
+ "russianText":"Official Theme Song for PAC-MAN 40th Anniversary",
+ "russianFontType":3,
+ "turkishText":"Official Theme Song for PAC-MAN 40th Anniversary",
+ "turkishFontType":3,
+ "arabicText":"Official Theme Song for PAC-MAN 40th Anniversary",
+ "arabicFontType":3,
+ "dutchText":"Official Theme Song for PAC-MAN 40th Anniversary",
+ "dutchFontType":3,
+ "chineseSText":"PAC-MAN 40周年官方主题曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_pacm40",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_acex2",
+ "japaneseText":"IN THE ZONE",
+ "englishUsText":"IN THE ZONE",
+ "englishUsFontType":3,
+ "frenchText":"IN THE ZONE",
+ "frenchFontType":3,
+ "italianText":"IN THE ZONE",
+ "italianFontType":3,
+ "germanText":"IN THE ZONE",
+ "germanFontType":3,
+ "spanishText":"IN THE ZONE",
+ "spanishFontType":3,
+ "chineseTText":"IN THE ZONE",
+ "chineseTFontType":1,
+ "koreanText":"IN THE ZONE",
+ "koreanFontType":2,
+ "portugueseText":"IN THE ZONE",
+ "portugueseFontType":3,
+ "russianText":"IN THE ZONE",
+ "russianFontType":3,
+ "turkishText":"IN THE ZONE",
+ "turkishFontType":3,
+ "arabicText":"IN THE ZONE",
+ "arabicFontType":3,
+ "dutchText":"IN THE ZONE",
+ "dutchFontType":3,
+ "chineseSText":"IN THE ZONE",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_acex2",
+ "japaneseText":"「ACE COMBAT X2 JOINT ASSAULT」より",
+ "englishUsText":"From \" ACE COMBAT X2 JOINT ASSAULT \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" ACE COMBAT X2 JOINT ASSAULT \"",
+ "frenchFontType":3,
+ "italianText":"Da \" ACE COMBAT X2 JOINT ASSAULT \"",
+ "italianFontType":3,
+ "germanText":"Aus \" ACE COMBAT X2 JOINT ASSAULT \"",
+ "germanFontType":3,
+ "spanishText":"De \" ACE COMBAT X2 JOINT ASSAULT \"",
+ "spanishFontType":3,
+ "chineseTText":"來自 \" 空戰奇兵X2 JOINT ASSAULT \"",
+ "chineseTFontType":1,
+ "koreanText":"\"ACE COMBAT X2 JOINT ASSAULT \"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" ACE COMBAT X2 JOINT ASSAULT \"",
+ "portugueseFontType":3,
+ "russianText":"From \" ACE COMBAT X2 JOINT ASSAULT \"",
+ "russianFontType":3,
+ "turkishText":"From \" ACE COMBAT X2 JOINT ASSAULT \"",
+ "turkishFontType":3,
+ "arabicText":"From \" ACE COMBAT X2 JOINT ASSAULT \"",
+ "arabicFontType":3,
+ "dutchText":"From \" ACE COMBAT X2 JOINT ASSAULT \"",
+ "dutchFontType":3,
+ "chineseSText":"出自 \" 空战奇兵X2 JOINT ASSAULT \"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_acex2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_clsr",
+ "japaneseText":"クラシックメドレー (ロック編)",
+ "englishUsText":"Classical Music Medley (Rock version)",
+ "englishUsFontType":3,
+ "frenchText":"Classical Music Medley (Rock version)",
+ "frenchFontType":3,
+ "italianText":"Classical Music Medley (Rock version)",
+ "italianFontType":3,
+ "germanText":"Classical Music Medley (Rock version)",
+ "germanFontType":3,
+ "spanishText":"Classical Music Medley (Rock version)",
+ "spanishFontType":3,
+ "chineseTText":"古典樂組曲(搖滾篇)",
+ "chineseTFontType":1,
+ "koreanText":"클래식 메들리(록 편)",
+ "koreanFontType":2,
+ "portugueseText":"Classical Music Medley (Rock version)",
+ "portugueseFontType":3,
+ "russianText":"Classical Music Medley (Rock version)",
+ "russianFontType":3,
+ "turkishText":"Classical Music Medley (Rock version)",
+ "turkishFontType":3,
+ "arabicText":"Classical Music Medley (Rock version)",
+ "arabicFontType":3,
+ "dutchText":"Classical Music Medley (Rock version)",
+ "dutchFontType":3,
+ "chineseSText":"古典乐组曲(摇滚篇)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_clsr",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_clsr",
+ "japaneseText":"",
+ "englishUsText":"クラシックメドレー (ロック編)",
+ "englishUsFontType":0,
+ "frenchText":"クラシックメドレー (ロック編)",
+ "frenchFontType":0,
+ "italianText":"クラシックメドレー (ロック編)",
+ "italianFontType":0,
+ "germanText":"クラシックメドレー (ロック編)",
+ "germanFontType":0,
+ "spanishText":"クラシックメドレー (ロック編)",
+ "spanishFontType":0,
+ "chineseTText":"クラシックメドレー (ロック編)",
+ "chineseTFontType":0,
+ "koreanText":"クラシックメドレー (ロック編)",
+ "koreanFontType":0,
+ "portugueseText":"クラシックメドレー (ロック編)",
+ "portugueseFontType":0,
+ "russianText":"クラシックメドレー (ロック編)",
+ "russianFontType":0,
+ "turkishText":"クラシックメドレー (ロック編)",
+ "turkishFontType":0,
+ "arabicText":"クラシックメドレー (ロック編)",
+ "arabicFontType":0,
+ "dutchText":"クラシックメドレー (ロック編)",
+ "dutchFontType":0,
+ "chineseSText":"クラシックメドレー (ロック編)",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_clskum",
+ "japaneseText":"熊蜂の飛行",
+ "englishUsText":"Flight of the Bumblebee",
+ "englishUsFontType":3,
+ "frenchText":"Le Vol du Bourdon",
+ "frenchFontType":3,
+ "italianText":"Il volo del calabrone",
+ "italianFontType":3,
+ "germanText":"Hummelflug",
+ "germanFontType":3,
+ "spanishText":"El vuelo del moscardón",
+ "spanishFontType":3,
+ "chineseTText":"大黃蜂的飛行",
+ "chineseTFontType":1,
+ "koreanText":"왕벌의 비행",
+ "koreanFontType":2,
+ "portugueseText":"Flight of the Bumblebee",
+ "portugueseFontType":3,
+ "russianText":"Flight of the Bumblebee",
+ "russianFontType":3,
+ "turkishText":"Flight of the Bumblebee",
+ "turkishFontType":3,
+ "arabicText":"Flight of the Bumblebee",
+ "arabicFontType":3,
+ "dutchText":"Flight of the Bumblebee",
+ "dutchFontType":3,
+ "chineseSText":"野蜂飞舞",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_clskum",
+ "japaneseText":"リムスキー=コルサコフ",
+ "englishUsText":"Nikolai Rimsky-Korsakov",
+ "englishUsFontType":3,
+ "frenchText":"Nikolai Rimsky-Korsakov",
+ "frenchFontType":3,
+ "italianText":"Nikolai Rimsky-Korsakov",
+ "italianFontType":3,
+ "germanText":"Nikolai Rimsky-Korsakov",
+ "germanFontType":3,
+ "spanishText":"Nikolai Rimsky-Korsakov",
+ "spanishFontType":3,
+ "chineseTText":"林姆斯基-高沙可夫",
+ "chineseTFontType":1,
+ "koreanText":"니콜라이 림스키코르사코프",
+ "koreanFontType":2,
+ "portugueseText":"Nikolai Rimsky-Korsakov",
+ "portugueseFontType":3,
+ "russianText":"Nikolai Rimsky-Korsakov",
+ "russianFontType":3,
+ "turkishText":"Nikolai Rimsky-Korsakov",
+ "turkishFontType":3,
+ "arabicText":"Nikolai Rimsky-Korsakov",
+ "arabicFontType":3,
+ "dutchText":"Nikolai Rimsky-Korsakov",
+ "dutchFontType":3,
+ "chineseSText":"里姆斯基-科萨科夫",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_clskum",
+ "japaneseText":"",
+ "englishUsText":"熊蜂の飛行",
+ "englishUsFontType":0,
+ "frenchText":"熊蜂の飛行",
+ "frenchFontType":0,
+ "italianText":"熊蜂の飛行",
+ "italianFontType":0,
+ "germanText":"熊蜂の飛行",
+ "germanFontType":0,
+ "spanishText":"熊蜂の飛行",
+ "spanishFontType":0,
+ "chineseTText":"熊蜂の飛行",
+ "chineseTFontType":0,
+ "koreanText":"熊蜂の飛行",
+ "koreanFontType":0,
+ "portugueseText":"熊蜂の飛行",
+ "portugueseFontType":0,
+ "russianText":"熊蜂の飛行",
+ "russianFontType":0,
+ "turkishText":"熊蜂の飛行",
+ "turkishFontType":0,
+ "arabicText":"熊蜂の飛行",
+ "arabicFontType":0,
+ "dutchText":"熊蜂の飛行",
+ "dutchFontType":0,
+ "chineseSText":"熊蜂の飛行",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_20tfes",
+ "japaneseText":"轟け!太鼓の達人",
+ "englishUsText":"Resound! Taiko no Tatsujin!",
+ "englishUsFontType":3,
+ "frenchText":"Resound! Taiko no Tatsujin!",
+ "frenchFontType":3,
+ "italianText":"Resound! Taiko no Tatsujin!",
+ "italianFontType":3,
+ "germanText":"Resound! Taiko no Tatsujin!",
+ "germanFontType":3,
+ "spanishText":"Resound! Taiko no Tatsujin!",
+ "spanishFontType":3,
+ "chineseTText":"震天動地!太鼓之達人",
+ "chineseTFontType":1,
+ "koreanText":"토도로케! 태고의 달인",
+ "koreanFontType":2,
+ "portugueseText":"Resound! Taiko no Tatsujin!",
+ "portugueseFontType":3,
+ "russianText":"Resound! Taiko no Tatsujin!",
+ "russianFontType":3,
+ "turkishText":"Resound! Taiko no Tatsujin!",
+ "turkishFontType":3,
+ "arabicText":"Resound! Taiko no Tatsujin!",
+ "arabicFontType":3,
+ "dutchText":"Resound! Taiko no Tatsujin!",
+ "dutchFontType":3,
+ "chineseSText":"震天动地!太鼓之达人",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_20tfes",
+ "japaneseText":"太鼓deタイムトラベル20's/steμ×マスブチ×ササオカ feat.谷本貴義&たかはし智秋",
+ "englishUsText":"Taiko de TimeTravel 20's/steμ×Masubuchi×Sasaoka feat.TakayoshiTanimoto&ChiakiTakahashi",
+ "englishUsFontType":3,
+ "frenchText":"Taiko de TimeTravel 20's/steμ×Masubuchi×Sasaoka feat.TakayoshiTanimoto&ChiakiTakahashi",
+ "frenchFontType":3,
+ "italianText":"Taiko de TimeTravel 20's/steμ×Masubuchi×Sasaoka feat.TakayoshiTanimoto&ChiakiTakahashi",
+ "italianFontType":3,
+ "germanText":"Taiko de TimeTravel 20's/steμ×Masubuchi×Sasaoka feat.TakayoshiTanimoto&ChiakiTakahashi",
+ "germanFontType":3,
+ "spanishText":"Taiko de TimeTravel 20's/steμ×Masubuchi×Sasaoka feat.TakayoshiTanimoto&ChiakiTakahashi",
+ "spanishFontType":3,
+ "chineseTText":"Taiko de TimeTravel 20's/steμ×Masubuchi×Sasaoka feat.TakayoshiTanimoto&ChiakiTakahashi",
+ "chineseTFontType":1,
+ "koreanText":"Taiko de TimeTravel 20's/steμ×Masubuchi×Sasaoka feat.TakayoshiTanimoto&ChiakiTakahashi",
+ "koreanFontType":2,
+ "portugueseText":"Taiko de TimeTravel 20's/steμ×Masubuchi×Sasaoka feat.TakayoshiTanimoto&ChiakiTakahashi",
+ "portugueseFontType":3,
+ "russianText":"Taiko de TimeTravel 20's/steμ×Masubuchi×Sasaoka feat.TakayoshiTanimoto&ChiakiTakahashi",
+ "russianFontType":3,
+ "turkishText":"Taiko de TimeTravel 20's/steμ×Masubuchi×Sasaoka feat.TakayoshiTanimoto&ChiakiTakahashi",
+ "turkishFontType":3,
+ "arabicText":"Taiko de TimeTravel 20's/steμ×Masubuchi×Sasaoka feat.TakayoshiTanimoto&ChiakiTakahashi",
+ "arabicFontType":3,
+ "dutchText":"Taiko de TimeTravel 20's/steμ×Masubuchi×Sasaoka feat.TakayoshiTanimoto&ChiakiTakahashi",
+ "dutchFontType":3,
+ "chineseSText":"Taiko de TimeTravel 20's/steμ×Masubuchi×Sasaoka feat.TakayoshiTanimoto&ChiakiTakahashi",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_20tfes",
+ "japaneseText":"",
+ "englishUsText":"轟け!太鼓の達人",
+ "englishUsFontType":0,
+ "frenchText":"轟け!太鼓の達人",
+ "frenchFontType":0,
+ "italianText":"轟け!太鼓の達人",
+ "italianFontType":0,
+ "germanText":"轟け!太鼓の達人",
+ "germanFontType":0,
+ "spanishText":"轟け!太鼓の達人",
+ "spanishFontType":0,
+ "chineseTText":"轟け!太鼓の達人",
+ "chineseTFontType":0,
+ "koreanText":"轟け!太鼓の達人",
+ "koreanFontType":0,
+ "portugueseText":"轟け!太鼓の達人",
+ "portugueseFontType":0,
+ "russianText":"轟け!太鼓の達人",
+ "russianFontType":0,
+ "turkishText":"轟け!太鼓の達人",
+ "turkishFontType":0,
+ "arabicText":"轟け!太鼓の達人",
+ "arabicFontType":0,
+ "dutchText":"轟け!太鼓の達人",
+ "dutchFontType":0,
+ "chineseSText":"轟け!太鼓の達人",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_carniv",
+ "japaneseText":"The Carnivorous Carnival",
+ "englishUsText":"The Carnivorous Carnival",
+ "englishUsFontType":3,
+ "frenchText":"The Carnivorous Carnival",
+ "frenchFontType":3,
+ "italianText":"The Carnivorous Carnival",
+ "italianFontType":3,
+ "germanText":"The Carnivorous Carnival",
+ "germanFontType":3,
+ "spanishText":"The Carnivorous Carnival",
+ "spanishFontType":3,
+ "chineseTText":"The Carnivorous Carnival",
+ "chineseTFontType":1,
+ "koreanText":"The Carnivorous Carnival",
+ "koreanFontType":2,
+ "portugueseText":"The Carnivorous Carnival",
+ "portugueseFontType":3,
+ "russianText":"The Carnivorous Carnival",
+ "russianFontType":3,
+ "turkishText":"The Carnivorous Carnival",
+ "turkishFontType":3,
+ "arabicText":"The Carnivorous Carnival",
+ "arabicFontType":3,
+ "dutchText":"The Carnivorous Carnival",
+ "dutchFontType":3,
+ "chineseSText":"The Carnivorous Carnival",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_carniv",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_carniv",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_butou",
+ "japaneseText":"画竜点睛",
+ "englishUsText":"GARYOU TENSEI",
+ "englishUsFontType":3,
+ "frenchText":"GARYOU TENSEI",
+ "frenchFontType":3,
+ "italianText":"GARYOU TENSEI",
+ "italianFontType":3,
+ "germanText":"GARYOU TENSEI",
+ "germanFontType":3,
+ "spanishText":"GARYOU TENSEI",
+ "spanishFontType":3,
+ "chineseTText":"畫龍點睛",
+ "chineseTFontType":1,
+ "koreanText":"화룡점정",
+ "koreanFontType":2,
+ "portugueseText":"GARYOU TENSEI",
+ "portugueseFontType":3,
+ "russianText":"GARYOU TENSEI",
+ "russianFontType":3,
+ "turkishText":"GARYOU TENSEI",
+ "turkishFontType":3,
+ "arabicText":"GARYOU TENSEI",
+ "arabicFontType":3,
+ "dutchText":"GARYOU TENSEI",
+ "dutchFontType":3,
+ "chineseSText":"画龙点睛",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_butou",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_butou",
+ "japaneseText":"",
+ "englishUsText":"画竜点睛",
+ "englishUsFontType":0,
+ "frenchText":"画竜点睛",
+ "frenchFontType":0,
+ "italianText":"画竜点睛",
+ "italianFontType":0,
+ "germanText":"画竜点睛",
+ "germanFontType":0,
+ "spanishText":"画竜点睛",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"画竜点睛",
+ "koreanFontType":0,
+ "portugueseText":"画竜点睛",
+ "portugueseFontType":0,
+ "russianText":"画竜点睛",
+ "russianFontType":0,
+ "turkishText":"画竜点睛",
+ "turkishFontType":0,
+ "arabicText":"画竜点睛",
+ "arabicFontType":0,
+ "dutchText":"画竜点睛",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_sora1x",
+ "japaneseText":"SORA-I アースライズ",
+ "englishUsText":"SORA-I Earthrise",
+ "englishUsFontType":3,
+ "frenchText":"SORA-I Earthrise",
+ "frenchFontType":3,
+ "italianText":"SORA-I Earthrise",
+ "italianFontType":3,
+ "germanText":"SORA-I Earthrise",
+ "germanFontType":3,
+ "spanishText":"SORA-I Earthrise",
+ "spanishFontType":3,
+ "chineseTText":"SORA-I Earthrise",
+ "chineseTFontType":1,
+ "koreanText":"SORA-I Earthrise",
+ "koreanFontType":2,
+ "portugueseText":"SORA-I Earthrise",
+ "portugueseFontType":3,
+ "russianText":"SORA-I Earthrise",
+ "russianFontType":3,
+ "turkishText":"SORA-I Earthrise",
+ "turkishFontType":3,
+ "arabicText":"SORA-I Earthrise",
+ "arabicFontType":3,
+ "dutchText":"SORA-I Earthrise",
+ "dutchFontType":3,
+ "chineseSText":"SORA-I Earthrise",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_sora1x",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_sora1x",
+ "japaneseText":"",
+ "englishUsText":"SORA-I アースライズ",
+ "englishUsFontType":0,
+ "frenchText":"SORA-I アースライズ",
+ "frenchFontType":0,
+ "italianText":"SORA-I アースライズ",
+ "italianFontType":0,
+ "germanText":"SORA-I アースライズ",
+ "germanFontType":0,
+ "spanishText":"SORA-I アースライズ",
+ "spanishFontType":0,
+ "chineseTText":"SORA-I アースライズ",
+ "chineseTFontType":0,
+ "koreanText":"SORA-I アースライズ",
+ "koreanFontType":0,
+ "portugueseText":"SORA-I アースライズ",
+ "portugueseFontType":0,
+ "russianText":"SORA-I アースライズ",
+ "russianFontType":0,
+ "turkishText":"SORA-I アースライズ",
+ "turkishFontType":0,
+ "arabicText":"SORA-I アースライズ",
+ "arabicFontType":0,
+ "dutchText":"SORA-I アースライズ",
+ "dutchFontType":0,
+ "chineseSText":"SORA-I アースライズ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_kecha",
+ "japaneseText":"ケチャドン2000",
+ "englishUsText":"KECHADON 2000",
+ "englishUsFontType":3,
+ "frenchText":"KECHADON 2000",
+ "frenchFontType":3,
+ "italianText":"KECHADON 2000",
+ "italianFontType":3,
+ "germanText":"KECHADON 2000",
+ "germanFontType":3,
+ "spanishText":"KECHADON 2000",
+ "spanishFontType":3,
+ "chineseTText":"KECHADON 2000",
+ "chineseTFontType":1,
+ "koreanText":"케챠동 2000",
+ "koreanFontType":2,
+ "portugueseText":"KECHADON 2000",
+ "portugueseFontType":3,
+ "russianText":"KECHADON 2000",
+ "russianFontType":3,
+ "turkishText":"KECHADON 2000",
+ "turkishFontType":3,
+ "arabicText":"KECHADON 2000",
+ "arabicFontType":3,
+ "dutchText":"KECHADON 2000",
+ "dutchFontType":3,
+ "chineseSText":"KECHADON 2000",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_kecha",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_kecha",
+ "japaneseText":"",
+ "englishUsText":"ケチャドン2000",
+ "englishUsFontType":0,
+ "frenchText":"ケチャドン2000",
+ "frenchFontType":0,
+ "italianText":"ケチャドン2000",
+ "italianFontType":0,
+ "germanText":"ケチャドン2000",
+ "germanFontType":0,
+ "spanishText":"ケチャドン2000",
+ "spanishFontType":0,
+ "chineseTText":"ケチャドン2000",
+ "chineseTFontType":0,
+ "koreanText":"ケチャドン2000",
+ "koreanFontType":0,
+ "portugueseText":"ケチャドン2000",
+ "portugueseFontType":0,
+ "russianText":"ケチャドン2000",
+ "russianFontType":0,
+ "turkishText":"ケチャドン2000",
+ "turkishFontType":0,
+ "arabicText":"ケチャドン2000",
+ "arabicFontType":0,
+ "dutchText":"ケチャドン2000",
+ "dutchFontType":0,
+ "chineseSText":"ケチャドン2000",
+ "chineseSFontType":0
+ },
+ {
+ "key":"osirase_v1_1_0",
+ "japaneseText":"太鼓の達人 Pop Tap Beat をプレイ頂き、ありがとうございます!\n\nソフトウェアのアップデートを行いました(Ver.1.1.0)\n\n・ランキングウィンドウを追加\n ハイスコアランキング(Leaderboards)を、\n 「曲をえらぶ」画面の右上のランキングボタンから\n ゲーム内でウィンドウ表示できるようになりました。\n (全世界のランカーのきせかえも見られますよ!)\n\n・お知らせウィンドウを追加\n アップデート、新曲の追加などのニュースを表示します。\n ゲームの設定 > おしらせ一覧\n から過去のお知らせを参照できます。\n (このウィンドウです!)\n\n・セーブデータが3つに\n セーブデータを3つまで保存できるようになりました。\n べつのゲームをロードしたり、削除したりできますよ。\n ゲームの設定 > セーブデータをよみこむ\n ゲームの設定 > セーブデータの削除 \n\n・大音符の入力を改善\n 同時入力の判定がかなりシビアだった‥大音符の判定を、\n 成功しやすく改善しました。\n\n・いくつかの不具合の修正、パフォーマンス調整を行いました。\n\n★新曲追加★\n 太鼓の達人 20周年記念楽曲「轟け!太鼓の達人」をはじめとした\n 幅広いジャンルの楽曲を、今後も定期的に追加していきます!",
+ "englishUsText":"Thank you for playing Taiko no Tatsujin Pop Tap Beat!\n\nThe game has been updated (Ver.1.1.0).\n\n・Addition of Leaderboard Window\n Players can now access the High Scores \n Leaderboard from the song selection screen,\n by pressing the \"High Scores\" button at the\n top right of the screen. (You can also check\n out the costumes donned by each Top Ranker!)\n\n・Addition of Notices Window\n Players can now view news about updates and\n newly added songs in one place. (It's this very\n window!) Access by going to\n Game Settings > Notices\n\n・Expansion of Save Data Slots to 3\n Players can now save the data for up to three\n different games. When playing, you can load\n a different saved game, or delete that save\n data. Access by going to\n Game Settings > Load Save Data\n Game Settings > Delete Save Data\n\n・Improvements to Tap Recognition\n The conditions for recognizing simultaneous\n inputs for large notes have been relaxed so\n that it is easier for players to achieve them.\n\n・Other minor improvements and bug fixes\n\n★Addition of New Songs★\n Starting with \"Resound! Taiko no Tatsujin,\"\n released to mark the 20th Anniversary of this\n franchise, look out for the wide range of\n songs that we will be periodically adding\n to the game going forward!",
+ "englishUsFontType":3,
+ "frenchText":"Merci de jouer à Taiko no Tatsujin\nPop Tap Beat !\n\nMise à jour du logiciel (Ver.1.1.0)\n\n- Ajout d'une page de classement\n Il est désormais possible d'afficher\n le classement des meilleurs scores via\n le bouton « Classement » en haut à droite\n de l'écran « Choix de la chanson ».\n (Vous pouvez aussi voir les tenues\n des joueurs classés du monde entier !)\n\n- Ajout d'une fenêtre d'annonces\n Les annonces de mises à jour, d'ajouts de\n chansons et autres y sont affichées.\n Allez dans\n Réglages du jeu > Annonces\n pour voir les annonces passées.\n (C'est cette fenêtre !)\n\n- Jusqu'à trois sauvegardes\n Vous pouvez désormais avoir jusqu'à trois\n sauvegardes. Cela vous permet de charger\n ou d'effacer différentes parties.\n Réglages du jeu > Charger une partie\n Réglages du jeu > Effacer une sauvegarde\n\n- Amélioration de la validation\ndes grosses notes\n Valider de grosses notes simultanément était\n drôlement difficile. Il est désormais\n plus facile de le faire !\n\n- Correction de certains bugs et\néquilibrage des performances.\n\n★ Ajout de nouvelles chansons ★\n Nous ajouterons régulièrement des chansons\n diverses et variées avec pour commencer celle\n des 20 ans de Taiko no Tatsujin,\n « Resound! Taiko no Tatsujin! » !",
+ "frenchFontType":3,
+ "italianText":"Grazie per aver giocato a Taiko no Tatsujin\nPop Tap Beat!\n\nAbbiamo aggiornato il gioco. (Ver. 1.1.0)\n\nNovità: finestra della classifica\n Potrai visualizzare questa finestra premendo\n il pulsante \"Classifica\" nell'angolo in alto\n a destra della schermata di selezione canzoni.\n Vedrai anche i costumi di tutti i presenti\n in classifica!\n\nNovità: finestra delle notifiche\n Qui potrai leggere le notizie riguardanti\n gli aggiornamenti e i nuovi brani.\n Le comunicazioni precedenti sono\n visibili scegliendo \"Impostazioni di sistema\"\n e poi \"notifiche\".\n (È la finestra che stai leggendo adesso!).\n\nTre salvataggi disponibili\n Ora potrai usare fino a tre salvataggi,\n caricarli e anche cancellarli.\n Scegli \"Impostazioni di sistema\" e poi\n \"Carica salvataggio\" o \"Cancella salvataggio\".\n\nFacilitazione per le note grandi\n Premere due note grandi insieme\n era molto difficile... ma abbiamo modificato\n la valutazione in modo che sia\n più facile avere successo!\n\nCorrezione di vari bug\ne miglioramenti delle prestazioni.\n\nNuovi brani\n Oltre al brano commemorativo\n per i vent'anni della serie\n \"Resound! Taiko no Tatsujin!\",\n continueremo ad aggiungere periodicamente\n un'ampia gamma di brani!",
+ "italianFontType":3,
+ "germanText":"Vielen Dank fürs Spielen von\nTaiko no Tatsujin Pop Tap Beat!\n\nDie Software wurde aktualisiert (Ver.1.1.0).\n\n・Rangliste-Fenster wurde hinzugefügt\n Die Punkterekord-Rangliste (Leaderboards)\n kann nun mit der Rangliste-Taste rechts oben\n auf dem Songwahl-Bildschirm während des\n Spiels in einem Fenster angezeigt werden.\n (Du kannst auch die Kostüme\n der weltweit Besten sehen!)\n\n・Nachrichtenfenster wurde hinzugefügt\n Hier werden Neuigkeiten zu Aktualisierungen,\n neue Songs und vieles mehr angezeigt.\n Ältere Nachrichten können über\n Spieleinstellungen --> Nachrichtenliste\n eingesehen werden.\n (Das ist dieses Fenster!)\n\n・Erweiterung auf 3 Speicherdateien\n Es ist nun möglich, bis zu 3 Speicherdateien\n anzulegen. So kann ein anderer Spielstand\n geladen oder ein Spielstand gelöscht werden.\n Spieleinstellungen --> Speicherdatei laden\n Spieleinstellungen --> Speicherdatei löschen\n\n・Verbesserung der Eingabe von großen Noten\n Die Beurteilung gleichzeitiger Eingaben war\n bisher ziemlich streng...\n Wir haben die Beurteilung bei großen Noten\n so verbessert, dass sie leichter gelingen.\n\n・Fehlerbehebungen und Leistungsanpassungen\n\n★Neue Songs★\n Neben dem Song zum 20-jährigen\n Jubiläum von Taiko no Tatsujin\n \"Resound! Taiko no Tatsujin\"\n werden auch künftig regelmäßig Songs\n verschiedenster Genres hinzugefügt!",
+ "germanFontType":3,
+ "spanishText":"¡Gracias por jugar a Taiko no Tatsujin Pop tap Beat!\n\nNovedades de la última actualización (ver. 1.1.0)\n\nNueva ventana de clasificaciones\n ¡Ya puedes consultar la clasificación (y los trajes)\n de jugadores de todo el mundo\n desde la pantalla donde eliges las canciones!\n Toca el botón de clasificaciones\n que verás en la parte superior derecha.\n\nNueva ventana de avisos\n Accede a todos los detalles de las nuevas\n canciones y actualizaciones.\n También puedes consultar avisos más antiguos\n desde esta misma ventana, a la que puedes\n acceder desde Ajustes > Avisos.\n\n¡Hasta 3 partidas guardadas!\n Ahora ya puedes guardar hasta 3 partidas diferentes.\n Carga partidas en Ajustes > Cargar partida\n o bórralas en Ajustes > Borrar partida. \n\nMejoras en la precisión de notas grandes\n Ahora te resultará más fácil acertar\n esas notas grandes tan difíciles.\n\nTambién hemos arreglado otros errores y mejorado el rendimiento\n\n★¡Nuevas canciones!★\n Celebramos el 20 aniversario de Taiko no Tatsujin\n con Resound! Taiko no Tatsujin\n y añadiremos regularmente muchas otras\n nuevas canciones de mogollón de géneros.",
+ "spanishFontType":3,
+ "chineseTText":"感謝您遊玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本軟體已更新(Ver.1.1.0)。\n\n‧追加排名視窗\n 高成績排名(Leaderboards)在按下\n 「選擇樂曲」畫面右上方的排名按鈕後,\n 即會在遊戲內顯示視窗。\n (也可以看見全世界排名玩家的換裝喔!)\n\n‧追加公告視窗\n 公告視窗會顯示更新、追加新曲等消息。\n 可以從遊戲設定 > 公告一覽\n 確認過去的公告。\n (就是這個視窗!)\n\n‧存檔紀錄欄增加至3筆\n 現在已可保存最多3筆存檔紀錄。\n 可以讀取或刪除不同的遊戲紀錄。\n 遊戲設定 > 讀取存檔紀錄\n 遊戲設定 > 刪除存檔紀錄 \n\n‧改善大音符的輸入\n 同時輸入判定相當嚴格的大音符……\n 現已調整成較容易成功。\n\n‧已修正部分異常以及調整遊戲表現。\n\n★追加新曲★\n 已追加太鼓之達人 20週年紀念樂曲《震天動地!太鼓之達人》\n 今後也會定期追加各種不同類型的樂曲!",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 Pop Tap Beat를 플레이해주셔서 감사합니다!\n\n소프트웨어를 업데이트했습니다.(Ver.1.1.0)\n\n・랭킹 창 추가\n '곡 선택' 화면 오른쪽 상단의 랭킹 버튼을 눌러\n 하이 스코어 랭킹(Leaderboards) 창을\n 게임 내에 표시할 수 있게 되었습니다.\n (전 세계의 랭커들이 꾸민 캐릭터도 볼 수 있습니다!)\n\n・알림 창 추가\n 업데이트, 신곡 추가 등 새로운 소식이 표시됩니다.\n 게임 설정 > 알림 목록\n 에서 과거의 알림 내용을 확인할 수 있습니다.\n (이 창입니다!)\n\n・세이브 데이터를 3개로 확장\n 세이브 데이터를 3개까지 저장할 수 있게 되었습니다.\n 다른 게임을 불러오거나 삭제할 수 있습니다.\n 게임 설정 > 세이브 데이터 불러오기\n 게임 설정 > 세이브 데이터 삭제\n\n・큰 음표의 입력 개선\n 동시 입력 시 판정이 상당히 엄격했던 큰 음표의 판정을\n 성공하기 쉽게 개선했습니다.\n\n・그 외 오류를 수정하고 퍼포먼스를 조정했습니다.\n\n★신곡 추가★\n 태고의 달인 20주년 기념곡 '토도로케! 태고의 달인'을 비롯한\n 다양한 장르의 곡을 앞으로도 정기적으로 추가할 예정입니다!",
+ "koreanFontType":2,
+ "portugueseText":"Obrigado por jogar Taiko no Tatsujin Pop Tap Beat!\n\n O software foi atualizado (Ver.1.1.0). \n\n ・ Adição da janela do Placar\n Os jogadores agora podem acessar os Recordes \n Placar de classificação na tela de seleção de músicas, \n pressionando o botão \"Recordes\" no\n canto superior direito da tela. (Você também pode verificar\n as fantasias vestidas por cada jogador nos recordes!)\n\n ・ Adição do Quadro de Avisos\n Os jogadores agora podem ver notícias sobre atualizações e\n canções recém-adicionadas em um só lugar. (É uma janela\n aberta!) Acesse em\n Configurações de jogo> Avisos\n\n ・ Expansão dos espaços de dados salvos para 3 \n Os jogadores agora podem salvar os dados de até três\n jogos diferentes. Ao jogar, você pode carregar\n um jogo salvo diferente ou excluir os dados\n salvos. Acesse em\n Configurações de jogo> Ler dados salvos\n Configurações de jogo> Excluir dados salvos\n\n ・ Melhorias no reconhecimento do toque \n As condições para o reconhecimento simultâneo\n de entradas para notas longas foram flexibilizadas, então\n é mais fácil para os jogadores alcançá-las.\n\n ・ Outras pequenas melhorias e correções de erros\n\n ★ Adição de novas músicas ★ \n Começando com \"Resound! Taiko no Tatsujin\",\n lançada para marcar o 20º aniversário deste\n franquia, procure pela ampla gama de\n canções que iremos adicionar periodicamente\n ao jogo daqui para frente!",
+ "portugueseFontType":2,
+ "russianText":"Спасибо, что играете в\nМастер Тайко Pop Tap Beat!\n\nПрограммное обеспечение\nобновлено (версия 1.1.0)\n\nОкно рейтинга\n Рейтинг доступен\n в правом верхнем углу экрана «Выбор песни».\n Теперь окно можно отображать во время игры.\n (Доступен рейтинг игроков со всего мира!)\n\nОкно уведомлений\n Отображение новостей, таких как обновления\n и новые песни.\n Настройки игры> Список уведомлений\n Вы можете также посмотреть прошлые\n уведомления здесь. (В этом окне!)\n\n3 сохранения\n Теперь можно создать до 3 сохранений,\n а также загрузить или удалить другую игру.\n Настройки игры> Загрузить данные\n Настройки игры> Удалить сохраненные данные\n\nВвод больших нот\n Одновременное отбивание больших нот\n стало легче.\n Теперь будет проще добиться успеха!\n\nИсправлены ошибки\nи улучшена производительность.\n\n★ Добавлена новая песня ★\n Песня, посвященная 20-летию Мастера Тайко!\n Мы продолжим регулярно добавлять песни\n самых разных жанров!",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat'i oynadığın\niçin teşekkürler!\n\nOyun güncellendi (Ver.1.1.0).\n\n・Liderlik Penceresi Eklendi\n Oyuncular artık şarkı seçim ekranından\n \"Yüksek Skorlar\" tuşuna ekranın sağ üst\n köşesinden basarak en yüksek skor \n sıralamasına ulaşabilecek. (Her bir birincinin\n yaptığı kostümlere de göz atabilirsin!)\n\n・Bildirim Ekranı Eklendi\n Oyuncular artık güncellemeler ve yeni eklenen\n şarkılara dair bilgileri tek bir pencerede \n görebilecek. (Tam da bu pencerede!)\n Oyun Ayarları > Bildirimler'den etkinleştirin.\n\n・Veri Kaydetme Yuvaları 3'e Çıkarıldı\n Oyuncular artık verileri üç farklı oyun için \n kaydedebilecek. Oynarken, farklı bir \n kaydedilmiş oyun verisini yükleyebilir \n veya kayıtlı verileri silebilirsiniz. \n Oyun Ayarları > Kayıtlı veriyi yükle\n Oyun Ayarları > Kayıtlı veriyi sil\n etkinleştirin.\n\n・Dokunma Algısı İyileştirildi\n Büyük notalar için eşzamanlı girişleri tanımak \n için koşullar, oyuncuların onlara ulaşması daha \n kolay olacak şekilde kolaylaştırıldı.\n\n・Diğer İyileştirme ve Hata Onarımları\n\n★Yeni Şarkılar Eklendi★\n \"Resound! Taiko NO Tatsujin\" ile başlayarak, \n bu şirketin 20. yıldönümüne dikkat çekmek \n için yayınlanan farklı şarkılara dikkat edin, \n onları periyodik olarak oyun ilerlerken\n ekleyeceğiz!",
+ "turkishFontType":2,
+ "arabicText":"نشكرك على لعب Taiko no Tatsujin Pop Tap Beat!\n\nلقد تم تحديث اللعبة (نسخة 1.1.0).\n\n・تم إضافة نافذة لقائمة المتصدرين\n\n يستطيع اللاعبون الآن الوصول إلى اعلى نتائج لوحة المتصدرين\n عبر شاشة اختيار الأغاني\n، من خلال الضغط على زر \"أعلى النتائج\"\n في أعلى يمين الشاشة. (ويمكنك كذلك التحقق من \n الأزياء التي يرتديها أيٌّ ممن يتصدرون التصنيف!)\n\n・إضافة نافذة الإشعارات\n يستطيع اللاعبون الآن مشاهدة أخبار تتعلق\n بالتحديثات والأغنيات المضافة حديثًا\n في مكان واحد. (وهي هذه \nالنافذة!) يمكن الوصول إليها من خلال الانتقال إلى\n إعدادات اللعبة > الإشعارات\n\n・تم زيادة عدد الخانات الخاصة\nبالبيانات المحفوظة إلى 3\n يستطيع اللاعبون الآن حفظ بيانات ما يصل إلى ثلاث\n ألعاب مختلفة. عند اللعب، يمكنك تحميل\nلعبة مختلفة محفوظة \n أو حذف البيانات المحفوظة هذه. ويمكن الوصول إلىمن خلال الانتقال إلى\n إعدادات اللعبة > تحميل البيانات المحفوظة\n إعدادات اللعبة > حذف البيانات المحفوظة\n\n・تحسينات في التعرف على النقرات\n تم تخفيف ظروف التعرف على المدخلات المتزامنة\n للمقطوعة الموسيقية الكبيرة\n بهدف تسهيل إنجازها على اللاعبين.\n\n・تحسينات أخرى طفيفة وتصحيح للأخطاء\n\n★تمت إضافة أغانٍ جديدة★\n بدءًا من أغنية \"Resound! Taiko no Tatsujin،\"\n التي تم إصدارها للاحتفال بالذكرى السنوية العشرين\n لحق الامتياز هذا، تطلّع إلى مجموعة واسعة\n من الأغاني التي سنضيفها بشكل دوري إلى اللعبة\n من الآن فصاعدًا!",
+ "arabicFontType":2,
+ "dutchText":"Bedankt dat je Taiko no Tatsujin Pop Tap Beat\nspeelt!\n\nDe software is geüpdatet. (Ver.1.1.0)\n\nEr is een ranglijst-scherm toegevoegd.\n Met een knop rechts bovenaan\n het liedjeskeuzescherm kun je nu de topscores\n bekijken in een venster in het spel. (Je kunt\n er ook de kostuums van de topspelers\n bekijken!)\n\nEr is een berichtenscherm toegevoegd.\n Hier kun je nieuws lezen over updates,\n de toevoeging van nieuwe liedjes en meer.\n Je kunt eerdere berichten bekijken via\n Game-instellingen > Berichten\n (Hier dus!)\n\nJe kunt nu 3 spellen opslaan.\n Je kunt nu maximaal drie verschillende\n spellen opslaan. Je kunt wisselen tussen\n de spellen of opgeslagen spellen verwijderen.\n Dit doe je in\n Game-instellingen > Spel laden\n Game-instellingen > Spel verwijderen\n\nHet raken van grote noten is vergemakkelijkt.\n Grote noten raken was erg lastig. De input\n hoeft nu minder precies te zijn om de noot\n te raken.\n\nEr zijn verschillende bugs opgelost en\nde performance van het spel is verbeterd.\n\n★Nieuwe liedjes★\n Het liedje \"Resound! Taiko no Tatsujin\" dat\n het 20-jarig bestaan van Taiko no Tatsujin\n viert, is nu speelbaar. Nog vele liedjes van\n allerlei genres zullen met regelmaat\n worden toegevoegd!",
+ "dutchFontType":2,
+ "chineseSText":"感谢您游玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本软件已更新(Ver.1.1.0)。\n\n·追加排名窗口\n 高成绩排名(Leaderboards)在按下\n “选择乐曲”画面右上方的排名按钮后,\n 即会在游戏内显示窗口。\n (也可以看见全世界排名玩家的换装哦!)\n\n·追加公告窗口\n 公告窗口会显示更新、追加新曲等消息。\n 可以从游戏设定 > 公告一览\n 确认过去的公告。\n (就是这个窗口!)\n\n·存档记录栏增加至3笔\n 现在已可保存最多3笔存档记录。\n 可以读取或删除不同的游戏记录。\n 游戏设定 > 读取存档记录\n 游戏设定 > 删除存档记录 \n\n·改善大音符的输入\n 同时输入判定相当严格的大音符……\n 现已调整成较容易成功。\n\n·已修正部分异常并调整游戏表现。\n\n★追加新曲★\n 已追加太鼓之达人 20周年纪念乐曲《震天动地!太鼓之达人》\n 今后也会定期追加各种不同类型的乐曲!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"osirase_v1_1_0_title",
+ "japaneseText":"ソフトウェアのアップデートを行いました(Ver.1.1.0)",
+ "englishUsText":"The game has been updated (Ver.1.1.0)",
+ "englishUsFontType":3,
+ "frenchText":"Mise à jour du logiciel (Ver.1.1.0)",
+ "frenchFontType":3,
+ "italianText":"Abbiamo aggiornato il gioco. (Ver.1.1.0)",
+ "italianFontType":3,
+ "germanText":"Die Software wurde aktualisiert (Ver.1.1.0)",
+ "germanFontType":3,
+ "spanishText":"Novedades de la última actualización (ver. 1.1.0)",
+ "spanishFontType":3,
+ "chineseTText":"本軟體已更新(Ver.1.1.0)",
+ "chineseTFontType":1,
+ "koreanText":"소프트웨어를 업데이트했습니다.(Ver.1.1.0)",
+ "koreanFontType":2,
+ "portugueseText":"O software foi atualizado (Ver.1.1.0)",
+ "portugueseFontType":2,
+ "russianText":"Программное обеспечение обновлено (версия 1.1.0)",
+ "russianFontType":2,
+ "turkishText":"Oyun güncellendi (Ver.1.1.0)",
+ "turkishFontType":2,
+ "arabicText":"لقد تم تحديث اللعبة (نسخة 1.1.0)",
+ "arabicFontType":2,
+ "dutchText":"De software is geüpdatet. (Ver.1.1.0)",
+ "dutchFontType":2,
+ "chineseSText":"本软件已更新(Ver.1.1.0)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"ranking_title",
+ "japaneseText":"ハイスコアランキング",
+ "englishUsText":"High Scores",
+ "englishUsFontType":3,
+ "frenchText":"Classement Meilleurs scores",
+ "frenchFontType":3,
+ "italianText":"Classifica dei record",
+ "italianFontType":3,
+ "germanText":"Punkterekord-Rangliste",
+ "germanFontType":3,
+ "spanishText":"Clasificación",
+ "spanishFontType":3,
+ "chineseTText":"高成績排名",
+ "chineseTFontType":1,
+ "koreanText":"하이 스코어 랭킹",
+ "koreanFontType":2,
+ "portugueseText":"Recordes",
+ "portugueseFontType":2,
+ "russianText":"Рейтинг игроков",
+ "russianFontType":2,
+ "turkishText":"Yüksek Skorlar",
+ "turkishFontType":2,
+ "arabicText":"أعلى النتائج",
+ "arabicFontType":2,
+ "dutchText":"Ranglijst",
+ "dutchFontType":2,
+ "chineseSText":"高成绩排名",
+ "chineseSFontType":4
+ },
+ {
+ "key":"ranking_rankup",
+ "japaneseText":"ランクアップ!",
+ "englishUsText":"Rank UP!",
+ "englishUsFontType":3,
+ "frenchText":"Rang Sup. !",
+ "frenchFontType":3,
+ "italianText":"Promozione!",
+ "italianFontType":3,
+ "germanText":"Rangaufstieg!",
+ "germanFontType":3,
+ "spanishText":"¡Asciendes!",
+ "spanishFontType":3,
+ "chineseTText":"排名提升!",
+ "chineseTFontType":1,
+ "koreanText":"랭크 업!",
+ "koreanFontType":2,
+ "portugueseText":"SUBIR!",
+ "portugueseFontType":2,
+ "russianText":"Рейтинг+!",
+ "russianFontType":2,
+ "turkishText":"Kademe ATLANDI!",
+ "turkishFontType":2,
+ "arabicText":"رتبة أعلى!",
+ "arabicFontType":2,
+ "dutchText":"Promotie!",
+ "dutchFontType":2,
+ "chineseSText":"排名提升!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"select_data_corrupt_panel_0",
+ "japaneseText":"本体\n%1\n%2",
+ "englishUsText":"device\n%1\n%2",
+ "englishUsFontType":3,
+ "frenchText":"l'appareil\n%1\n%2",
+ "frenchFontType":3,
+ "italianText":"dispositivo\n%1\n%2",
+ "italianFontType":3,
+ "germanText":"Gerät\n%1\n%2",
+ "germanFontType":3,
+ "spanishText":"dispositivo\n%1\n%2",
+ "spanishFontType":3,
+ "chineseTText":"裝置\n%1\n%2",
+ "chineseTFontType":1,
+ "koreanText":"본체\n%1\n%2",
+ "koreanFontType":2,
+ "portugueseText":"dispositivo\n%1\n%2",
+ "portugueseFontType":2,
+ "russianText":"память устройства\n%1\n%2",
+ "russianFontType":2,
+ "turkishText":"cihaz\n%1\n%2",
+ "turkishFontType":2,
+ "arabicText":"تم الحفظ من %2\nإلى الجهاز في %1",
+ "arabicFontType":2,
+ "dutchText":"apparaat\n%1\n%2",
+ "dutchFontType":2,
+ "chineseSText":"装置\n%1\n%2",
+ "chineseSFontType":4
+ },
+ {
+ "key":"select_data_corrupt_panel_1",
+ "japaneseText":"iCloud\n%1\n%2",
+ "englishUsText":"iCloud\n%1\n%2",
+ "englishUsFontType":3,
+ "frenchText":"iCloud\n%1\n%2",
+ "frenchFontType":3,
+ "italianText":"iCloud\n%1\n%2",
+ "italianFontType":3,
+ "germanText":"iCloud\n%1\n%2 ",
+ "germanFontType":3,
+ "spanishText":"iCloud\n%1\n%2",
+ "spanishFontType":3,
+ "chineseTText":"iCloud\n%1\n%2",
+ "chineseTFontType":1,
+ "koreanText":"iCloud\n%1\n%2",
+ "koreanFontType":2,
+ "portugueseText":"iCloud\n%1\n%2",
+ "portugueseFontType":2,
+ "russianText":"iCloud\n%1\n%2",
+ "russianFontType":2,
+ "turkishText":"iCloud\n%1\n%2",
+ "turkishFontType":2,
+ "arabicText":"تم الحفظ من %2\nإلى iCloud في %1",
+ "arabicFontType":2,
+ "dutchText":"iCloud\n%1\n%2",
+ "dutchFontType":2,
+ "chineseSText":"iCloud\n%1\n%2",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_starws",
+ "japaneseText":"Star Wars : Main Title",
+ "englishUsText":"Star Wars : Main Title",
+ "englishUsFontType":3,
+ "frenchText":"Star Wars : Main Title",
+ "frenchFontType":3,
+ "italianText":"Star Wars : Main Title",
+ "italianFontType":3,
+ "germanText":"Star Wars : Main Title",
+ "germanFontType":3,
+ "spanishText":"Star Wars : Main Title",
+ "spanishFontType":3,
+ "chineseTText":"Star Wars : Main Title",
+ "chineseTFontType":1,
+ "koreanText":"Star Wars : Main Title",
+ "koreanFontType":2,
+ "portugueseText":"Star Wars : Main Title",
+ "portugueseFontType":3,
+ "russianText":"Star Wars : Main Title",
+ "russianFontType":3,
+ "turkishText":"Star Wars : Main Title",
+ "turkishFontType":3,
+ "arabicText":"Star Wars : Main Title",
+ "arabicFontType":3,
+ "dutchText":"Star Wars : Main Title",
+ "dutchFontType":3,
+ "chineseSText":"Star Wars : Main Title",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_starws",
+ "japaneseText":"「スター・ウォーズ」より",
+ "englishUsText":"From \" STAR WARS \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" STAR WARS \"",
+ "frenchFontType":3,
+ "italianText":"Da \" STAR WARS \"",
+ "italianFontType":3,
+ "germanText":"Aus \" STAR WARS \"",
+ "germanFontType":3,
+ "spanishText":"De \" STAR WARS \"",
+ "spanishFontType":3,
+ "chineseTText":"來自 \" 星際大戰 \"",
+ "chineseTFontType":1,
+ "koreanText":"\"스타워즈\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" STAR WARS \"",
+ "portugueseFontType":3,
+ "russianText":"From \" STAR WARS \"",
+ "russianFontType":3,
+ "turkishText":"From \" STAR WARS \"",
+ "turkishFontType":3,
+ "arabicText":"From \" STAR WARS \"",
+ "arabicFontType":3,
+ "dutchText":"From \" STAR WARS \"",
+ "dutchFontType":3,
+ "chineseSText":"出自 \" 星球大战 \"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_starws",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_pirate",
+ "japaneseText":"He's a Pirate",
+ "englishUsText":"He's a Pirate",
+ "englishUsFontType":3,
+ "frenchText":"He's a Pirate",
+ "frenchFontType":3,
+ "italianText":"He's a Pirate",
+ "italianFontType":3,
+ "germanText":"He's a Pirate",
+ "germanFontType":3,
+ "spanishText":"He's a Pirate",
+ "spanishFontType":3,
+ "chineseTText":"He's a Pirate ",
+ "chineseTFontType":1,
+ "koreanText":"He's a Pirate ",
+ "koreanFontType":2,
+ "portugueseText":"He's a Pirate",
+ "portugueseFontType":3,
+ "russianText":"He's a Pirate",
+ "russianFontType":3,
+ "turkishText":"He's a Pirate",
+ "turkishFontType":3,
+ "arabicText":"He's a Pirate",
+ "arabicFontType":3,
+ "dutchText":"He's a Pirate",
+ "dutchFontType":3,
+ "chineseSText":"He's a Pirate ",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_pirate",
+ "japaneseText":"「パイレーツ・オブ・カリビアン」より",
+ "englishUsText":"From \" Pirates of the Caribbean \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Pirates des Caraïbes \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Pirati dei Caraibi \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Pirates of the Caribbean \"",
+ "germanFontType":3,
+ "spanishText":"De \" Piratas del Caribe \"",
+ "spanishFontType":3,
+ "chineseTText":"來自 \" 加勒比海盜 \"",
+ "chineseTFontType":1,
+ "koreanText":"\"캐리비안의 해적\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" Pirates of the Caribbean \"",
+ "portugueseFontType":3,
+ "russianText":"From \" Pirates of the Caribbean \"",
+ "russianFontType":3,
+ "turkishText":"From \" Pirates of the Caribbean \"",
+ "turkishFontType":3,
+ "arabicText":"From \" Pirates of the Caribbean \"",
+ "arabicFontType":3,
+ "dutchText":"From \" Pirates of the Caribbean \"",
+ "dutchFontType":3,
+ "chineseSText":"出自 \" 加勒比海盜 \"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_pirate",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_clsbut",
+ "japaneseText":"サーフサイド・サティ",
+ "englishUsText":"Surfside Satie",
+ "englishUsFontType":3,
+ "frenchText":"Surfside Satie",
+ "frenchFontType":3,
+ "italianText":"Surfside Satie",
+ "italianFontType":3,
+ "germanText":"Surfside Satie",
+ "germanFontType":3,
+ "spanishText":"Surfside Satie",
+ "spanishFontType":3,
+ "chineseTText":"Surfside Satie",
+ "chineseTFontType":1,
+ "koreanText":"서프사이드 사티",
+ "koreanFontType":2,
+ "portugueseText":"Surfside Satie",
+ "portugueseFontType":3,
+ "russianText":"Surfside Satie",
+ "russianFontType":3,
+ "turkishText":"Surfside Satie",
+ "turkishFontType":3,
+ "arabicText":"Surfside Satie",
+ "arabicFontType":3,
+ "dutchText":"Surfside Satie",
+ "dutchFontType":3,
+ "chineseSText":"Surfside Satie",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_clsbut",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_clsbut",
+ "japaneseText":"",
+ "englishUsText":"サーフサイド・サティ",
+ "englishUsFontType":0,
+ "frenchText":"サーフサイド・サティ",
+ "frenchFontType":0,
+ "italianText":"サーフサイド・サティ",
+ "italianFontType":0,
+ "germanText":"サーフサイド・サティ",
+ "germanFontType":0,
+ "spanishText":"サーフサイド・サティ",
+ "spanishFontType":0,
+ "chineseTText":"サーフサイド・サティ",
+ "chineseTFontType":0,
+ "koreanText":"サーフサイド・サティ",
+ "koreanFontType":0,
+ "portugueseText":"サーフサイド・サティ",
+ "portugueseFontType":0,
+ "russianText":"サーフサイド・サティ",
+ "russianFontType":0,
+ "turkishText":"サーフサイド・サティ",
+ "turkishFontType":0,
+ "arabicText":"サーフサイド・サティ",
+ "arabicFontType":0,
+ "dutchText":"サーフサイド・サティ",
+ "dutchFontType":0,
+ "chineseSText":"サーフサイド・サティ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_20tftb",
+ "japaneseText":"パラレルロリポップ",
+ "englishUsText":"Parallel Lollipop",
+ "englishUsFontType":3,
+ "frenchText":"Parallel Lollipop",
+ "frenchFontType":3,
+ "italianText":"Parallel Lollipop",
+ "italianFontType":3,
+ "germanText":"Parallel Lollipop",
+ "germanFontType":3,
+ "spanishText":"Parallel Lollipop",
+ "spanishFontType":3,
+ "chineseTText":"Parallel Lollipop",
+ "chineseTFontType":1,
+ "koreanText":"Parallel Lollipop",
+ "koreanFontType":2,
+ "portugueseText":"Parallel Lollipop",
+ "portugueseFontType":3,
+ "russianText":"Parallel Lollipop",
+ "russianFontType":3,
+ "turkishText":"Parallel Lollipop",
+ "turkishFontType":3,
+ "arabicText":"Parallel Lollipop",
+ "arabicFontType":3,
+ "dutchText":"Parallel Lollipop",
+ "dutchFontType":3,
+ "chineseSText":"Parallel Lollipop",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_20tftb",
+ "japaneseText":"太鼓 de タイムトラベル10's / Sho Okada",
+ "englishUsText":"Taiko de Time Travel 10's / Sho Okada",
+ "englishUsFontType":3,
+ "frenchText":"Taiko de Time Travel 10's / Sho Okada",
+ "frenchFontType":3,
+ "italianText":"Taiko de Time Travel 10's / Sho Okada",
+ "italianFontType":3,
+ "germanText":"Taiko de Time Travel 10's / Sho Okada",
+ "germanFontType":3,
+ "spanishText":"Taiko de Time Travel 10's / Sho Okada",
+ "spanishFontType":3,
+ "chineseTText":"Taiko de Time Travel 10's / Sho Okada",
+ "chineseTFontType":1,
+ "koreanText":"Taiko de Time Travel 10's / Sho Okada",
+ "koreanFontType":2,
+ "portugueseText":"Taiko de Time Travel 10's / Sho Okada",
+ "portugueseFontType":3,
+ "russianText":"Taiko de Time Travel 10's / Sho Okada",
+ "russianFontType":3,
+ "turkishText":"Taiko de Time Travel 10's / Sho Okada",
+ "turkishFontType":3,
+ "arabicText":"Taiko de Time Travel 10's / Sho Okada",
+ "arabicFontType":3,
+ "dutchText":"Taiko de Time Travel 10's / Sho Okada",
+ "dutchFontType":3,
+ "chineseSText":"Taiko de Time Travel 10's / Sho Okada",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_20tftb",
+ "japaneseText":"",
+ "englishUsText":"パラレルロリポップ",
+ "englishUsFontType":0,
+ "frenchText":"パラレルロリポップ",
+ "frenchFontType":0,
+ "italianText":"パラレルロリポップ",
+ "italianFontType":0,
+ "germanText":"パラレルロリポップ",
+ "germanFontType":0,
+ "spanishText":"パラレルロリポップ",
+ "spanishFontType":0,
+ "chineseTText":"パラレルロリポップ",
+ "chineseTFontType":0,
+ "koreanText":"パラレルロリポップ",
+ "koreanFontType":0,
+ "portugueseText":"パラレルロリポップ",
+ "portugueseFontType":0,
+ "russianText":"パラレルロリポップ",
+ "russianFontType":0,
+ "turkishText":"パラレルロリポップ",
+ "turkishFontType":0,
+ "arabicText":"パラレルロリポップ",
+ "arabicFontType":0,
+ "dutchText":"パラレルロリポップ",
+ "dutchFontType":0,
+ "chineseSText":"パラレルロリポップ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_goth",
+ "japaneseText":"DON'T CUT",
+ "englishUsText":"DON'T CUT",
+ "englishUsFontType":3,
+ "frenchText":"DON'T CUT",
+ "frenchFontType":3,
+ "italianText":"DON'T CUT",
+ "italianFontType":3,
+ "germanText":"DON'T CUT",
+ "germanFontType":3,
+ "spanishText":"DON'T CUT",
+ "spanishFontType":3,
+ "chineseTText":"DON'T CUT",
+ "chineseTFontType":1,
+ "koreanText":"DON'T CUT",
+ "koreanFontType":2,
+ "portugueseText":"DON'T CUT",
+ "portugueseFontType":3,
+ "russianText":"DON'T CUT",
+ "russianFontType":3,
+ "turkishText":"DON'T CUT",
+ "turkishFontType":3,
+ "arabicText":"DON'T CUT",
+ "arabicFontType":3,
+ "dutchText":"DON'T CUT",
+ "dutchFontType":3,
+ "chineseSText":"DON'T CUT",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_goth",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_goth",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"osirase_v1_2_0_title",
+ "japaneseText":"ソフトウェアのアップデートを行いました(Ver.1.2.0)",
+ "englishUsText":"The game has been updated (Ver.1.2.0)",
+ "englishUsFontType":3,
+ "frenchText":"Mise à jour du logiciel (Ver.1.2.0)",
+ "frenchFontType":3,
+ "italianText":"Abbiamo aggiornato il gioco. (Ver.1.2.0)",
+ "italianFontType":3,
+ "germanText":"Die Software wurde aktualisiert (Ver.1.2.0)",
+ "germanFontType":3,
+ "spanishText":"Novedades de la última actualización (Ver.1.2.0)",
+ "spanishFontType":3,
+ "chineseTText":"本軟體已更新(Ver.1.2.0)",
+ "chineseTFontType":1,
+ "koreanText":"소프트웨어를 업데이트했습니다.(Ver.1.2.0)",
+ "koreanFontType":2,
+ "portugueseText":"O software foi atualizado (Ver.1.2.0)",
+ "portugueseFontType":2,
+ "russianText":"Программное обеспечение обновлено (версия 1.2.0)",
+ "russianFontType":2,
+ "turkishText":"Oyun güncellendi (Ver.1.2.0)",
+ "turkishFontType":2,
+ "arabicText":"لقد تم تحديث اللعبة (نسخة 1.2.0)",
+ "arabicFontType":2,
+ "dutchText":"De software is geüpdatet. (Ver.1.2.0)",
+ "dutchFontType":2,
+ "chineseSText":"本软件已更新(Ver.1.2.0)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"osirase_v1_2_0",
+ "japaneseText":"太鼓の達人 Pop Tap Beat をプレイ頂き、ありがとうございます!\n\nソフトウェアのアップデートを行いました(Ver.1.2.0)\n\n・いくつかの不具合の修正、パフォーマンス調整を行いました。\n\n★新曲追加★\n 太鼓の達人20周年記念楽曲「パラレルロリポップ」をはじめ5曲を追加しました。\n 太鼓の達人 Pop Tap Beatはこれからも定期的に楽曲を追加します。\n",
+ "englishUsText":"Thank you for playing Taiko no Tatsujin Pop Tap Beat!\n\nThe game has been updated (Ver. 1.2.0).\n\n・We have carried out various minor improvements and bug fixes.\n\n★New Songs Added★\n5 more songs to play, starting with\n\"Parallel Lollipop,\" one of the songs\nreleased to mark the 20th anniversary\nof the franchise.\n\nWe'll keep adding new songs to Taiko no\nTatsujin Pop Tap Beat regularly, so keep\nan eye out for them!\n",
+ "englishUsFontType":3,
+ "frenchText":"Merci de jouer à Taiko no Tatsujin\nPop Tap Beat !\n\nMise à jour du logiciel (Ver.1.2.0)\n\n- Correction de certains bugs et\néquilibrage des performances.\n\n★ Ajout de nouvelles chansons ★\n Nous ajouterons régulièrement des chansons\n diverses et variées avec pour commencer\n 5 chansons dont celle des 20 ans de Taiko no\n Tatsujin : « Parallel Lollipop » !",
+ "frenchFontType":3,
+ "italianText":"Grazie per aver giocato a Taiko no Tatsujin\nPop Tap Beat!\n\nAbbiamo aggiornato il gioco.\n(Ver.1.2.0)\n\nCorrezione di vari bug e miglioramenti delle\nprestazioni.\n\n★Nuovi brani★\nAbbiamo aggiunto 5 nuovi brani,\ntra cui \"Parallel Lollipop\",\nil brano commemorativo per\ni vent'anni della serie.\n\nContinueremo ad aggiungere\nperiodicamente nuovi brani su Taiko no\nTatsujin Pop Tap Beat!",
+ "italianFontType":3,
+ "germanText":"Vielen Dank fürs Spielen von\nTaiko no Tatsujin Pop Tap Beat!\n\nDie Software wurde aktualisiert (Ver.1.2.0).\n\nFehlerbehebungen und Leistungsanpassungen\n\n★Neue Songs★\nZum 20-jährigen Jubiläum von\nTaiko no Tatsujin wurden 5 weitere Songs,\ninklusive \"Parallel Lollipop\", hinzugefügt.\nTaiko no Tatsujin Pop Tap Beat wird auch\nkünftig weiterhin regelmäßig mit neuen\nSongs erweitert.",
+ "germanFontType":3,
+ "spanishText":"¡Gracias por jugar a Taiko no Tatsujin Pop Tap Beat!\n\nNueva actualización del juego (ver.1.2.0).\n\n・Hemos arreglado errores y realizado algunas mejoras.\n\n★Nuevas canciones★\nCelebramos el 20.º aniversario de Taiko\nno Tatsujin con 5 nuevas canciones,\nentre ellas \"Parallel Lollipop\".\n\nAdemás, seguiremos añadiendo canciones\nnuevas a Taiko no Tatsujin Pop Tap Beat\nde manera regular. ¡No te las pierdas!",
+ "spanishFontType":3,
+ "chineseTText":"感謝您遊玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本軟體已更新(Ver.1.2.0)。\n\n‧已修正部分異常以及調整遊戲表現。\n\n★追加新曲★\n 已追加太鼓之達人20週年紀念樂曲\n 《Parallel Lollipop》等5首新曲。\n 《Taiko no Tatsujin POP TAP BEAT》之後也會定期追加新樂曲。\n",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 Pop Tap Beat를 플레이해주셔서 감사합니다!\n\n소프트웨어를 업데이트했습니다.(Ver.1.2.0)\n\n・기타 오류를 수정하고 퍼포먼스를 조정했습니다.\n\n★신곡 추가★\n 태고의 달인 20주년 기념곡 '패럴렐 롤리팝'을 비롯한 \n 5개 곡을 추가했습니다.\n 태고의 달인 Pop Tap Beat에는 앞으로도 정기적으로 \n 곡이 추가될 예정입니다.",
+ "koreanFontType":2,
+ "portugueseText":"Obrigado por jogar\nTaiko no Tatsujin Pop Tap Beat!\n\nO jogo foi atualizado (Ver.1.2.0)\n\n・Corrigimos alguns defeitos\n e ajustamos o desempenho.\n\n★Novas Músicas adicionadas★\n Adicionamos mais 5 músicas, começando por\n \"Parallel Lollipop\", uma das músicas lançadas para\n comemorar o 20º aniversário da franquia.\n\n Vamos adicionar novas músicas a\n Taiko no Tatsujin Pop Tap Beat\n periodicamente, fique de olho!",
+ "portugueseFontType":2,
+ "russianText":"Спасибо, что играете в\nTaiko no Tatsujin Pop Tap Beat!\n\nПрограммное обеспечение\nобновлено (версия 1.2.0)\n\n■Исправлены некоторые ошибки,\nи проведена оптимизация.\n\n★Добавлены новые песни★\nДобавлено 5 песен, в том числе\nParallel Lollipop, посвященная\n20-летию франшизы.\nВ Taiko no Tatsujin Pop Tap Beat будут и дальше\nрегулярно добавляться песни.",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat'i oynadığın\niçin teşekkürler!\n\nOyun güncellendi (Sür.1.2.0).\n\n・Bir dizi ufak iyileştirme\nve hata düzeltmesi yaptık.\n\n★Yeni şarkılar eklendi★\n 20. yıl dönümünün bir nişanesi olarak eklenen \"Parallel Lollipop\" da dahil 5 şarkı daha ekledik.\n Taiko no Tatsujin Pop Tap Beat'e düzenli\n olarak şarkı eklemeye devam edeceğiz,\n o yüzden gözünü dört aç!",
+ "turkishFontType":2,
+ "arabicText":"شكرًا لك على لعب Taiko no Tatsujin Pop Tap Beat!\n\nتم تحديث اللعبة (نسخة 1.2.0).\n\n・ لقد أجرينا العديد من التحديثات الطفيفة وإصلاح الأخطاء.\n\n★تمت إضافة أغانٍ جديدة★\n إمكانية تشغيل 5 أغانِ إضافية، تتصدرها من\n أغنية \"Parallel Lollipop\"، وهي إحدى الأغاني\n التي تم إصدارها لتخليد الذكرى السنوية\n العشرين للحصول على الامتياز. \n سنستمر في إضافة أغانِ جديدة إلى Taiko no\n Tatsujin Pop Tap Beat بانتظام، لذا، ترقبهم عن كثب!",
+ "arabicFontType":2,
+ "dutchText":"Bedankt dat je Taiko no Tatsujin Pop Tap Beat\nspeelt!\n\nDe game is geüpdatet. (Ver.1.2.0)\n\nEr zijn verschillende kleine verbeteringen doorgevoerd en bugs opgelost.\n\n★Nieuwe liedjes toegevoegd★\nEr zijn nu 5 meer liedjes speelbaar, met\nals eerste \"Parallel Lollipop\", dat het\n20-jarig bestaan van de serie viert.\nWe zullen met regelmaat nieuwe liedjes\ntoevoegen aan Taiko no Tatsujin Pop Tap Beat. Houd ons in de gaten!",
+ "dutchFontType":2,
+ "chineseSText":"感谢您游玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本软件已更新(Ver.1.2.0)。\n\n·已修正部分异常并调整游戏表现。\n\n★追加新曲★\n 已追加太鼓之达人20周年纪念乐曲\n 《Parallel Lollipop》等5首新曲。\n 《Taiko no Tatsujin POP TAP BEAT》之后也会定期追加新乐曲。\n",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_indyjo",
+ "japaneseText":"インディ・ジョーンズのテーマ",
+ "englishUsText":"Theme From Indiana Jones",
+ "englishUsFontType":3,
+ "frenchText":"Theme From Indiana Jones",
+ "frenchFontType":3,
+ "italianText":"Theme From Indiana Jones",
+ "italianFontType":3,
+ "germanText":"Theme From Indiana Jones",
+ "germanFontType":3,
+ "spanishText":"Theme From Indiana Jones",
+ "spanishFontType":3,
+ "chineseTText":"印第安納瓊斯 主題曲",
+ "chineseTFontType":1,
+ "koreanText":"인디아나 존스 테마곡",
+ "koreanFontType":2,
+ "portugueseText":"Theme From Indiana Jones",
+ "portugueseFontType":3,
+ "russianText":"Theme From Indiana Jones",
+ "russianFontType":3,
+ "turkishText":"Theme From Indiana Jones",
+ "turkishFontType":3,
+ "arabicText":"Theme From Indiana Jones",
+ "arabicFontType":3,
+ "dutchText":"Theme From Indiana Jones",
+ "dutchFontType":3,
+ "chineseSText":"印第安纳琼斯 主题曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_indyjo",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_indyjo",
+ "japaneseText":"",
+ "englishUsText":"インディ・ジョーンズのテーマ",
+ "englishUsFontType":0,
+ "frenchText":"インディ・ジョーンズのテーマ",
+ "frenchFontType":0,
+ "italianText":"インディ・ジョーンズのテーマ",
+ "italianFontType":0,
+ "germanText":"インディ・ジョーンズのテーマ",
+ "germanFontType":0,
+ "spanishText":"インディ・ジョーンズのテーマ",
+ "spanishFontType":0,
+ "chineseTText":"インディ・ジョーンズのテーマ",
+ "chineseTFontType":0,
+ "koreanText":"インディ・ジョーンズのテーマ",
+ "koreanFontType":0,
+ "portugueseText":"インディ・ジョーンズのテーマ",
+ "portugueseFontType":0,
+ "russianText":"インディ・ジョーンズのテーマ",
+ "russianFontType":0,
+ "turkishText":"インディ・ジョーンズのテーマ",
+ "turkishFontType":0,
+ "arabicText":"インディ・ジョーンズのテーマ",
+ "arabicFontType":0,
+ "dutchText":"インディ・ジョーンズのテーマ",
+ "dutchFontType":0,
+ "chineseSText":"インディ・ジョーンズのテーマ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_kata",
+ "japaneseText":"塊オンザロック~メインテーマ",
+ "englishUsText":"KATAMARI on the rock ~main theme",
+ "englishUsFontType":3,
+ "frenchText":"KATAMARI on the rock ~main theme",
+ "frenchFontType":3,
+ "italianText":"KATAMARI on the rock ~main theme",
+ "italianFontType":3,
+ "germanText":"KATAMARI on the rock ~main theme",
+ "germanFontType":3,
+ "spanishText":"KATAMARI on the rock ~main theme",
+ "spanishFontType":3,
+ "chineseTText":"塊 on the rock ~main theme",
+ "chineseTFontType":1,
+ "koreanText":"KATAMARI on the rock ~main theme",
+ "koreanFontType":2,
+ "portugueseText":"KATAMARI on the rock ~main theme",
+ "portugueseFontType":3,
+ "russianText":"KATAMARI on the rock ~main theme",
+ "russianFontType":3,
+ "turkishText":"KATAMARI on the rock ~main theme",
+ "turkishFontType":3,
+ "arabicText":"KATAMARI on the rock ~main theme",
+ "arabicFontType":3,
+ "dutchText":"KATAMARI on the rock ~main theme",
+ "dutchFontType":3,
+ "chineseSText":"块 on the rock ~main theme",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_kata",
+ "japaneseText":"「塊魂」より",
+ "englishUsText":"From \" KATAMARI DAMACY \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" KATAMARI DAMACY \"",
+ "frenchFontType":3,
+ "italianText":"Da \" KATAMARI DAMACY \"",
+ "italianFontType":3,
+ "germanText":"Aus \" KATAMARI DAMACY \"",
+ "germanFontType":3,
+ "spanishText":"De \" KATAMARI DAMACY \"",
+ "spanishFontType":3,
+ "chineseTText":"來自 \" 塊魂 \"",
+ "chineseTFontType":1,
+ "koreanText":"\"괴혼\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" KATAMARI DAMACY \"",
+ "portugueseFontType":3,
+ "russianText":"From \" KATAMARI DAMACY \"",
+ "russianFontType":3,
+ "turkishText":"From \" KATAMARI DAMACY \"",
+ "turkishFontType":3,
+ "arabicText":"From \" KATAMARI DAMACY \"",
+ "arabicFontType":3,
+ "dutchText":"From \" KATAMARI DAMACY \"",
+ "dutchFontType":3,
+ "chineseSText":"出自 \" 块魂 \"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_kata",
+ "japaneseText":"",
+ "englishUsText":"塊オンザロック~メインテーマ",
+ "englishUsFontType":0,
+ "frenchText":"塊オンザロック~メインテーマ",
+ "frenchFontType":0,
+ "italianText":"塊オンザロック~メインテーマ",
+ "italianFontType":0,
+ "germanText":"塊オンザロック~メインテーマ",
+ "germanFontType":0,
+ "spanishText":"塊オンザロック~メインテーマ",
+ "spanishFontType":0,
+ "chineseTText":"塊オンザロック~メインテーマ",
+ "chineseTFontType":0,
+ "koreanText":"塊オンザロック~メインテーマ",
+ "koreanFontType":0,
+ "portugueseText":"塊オンザロック~メインテーマ",
+ "portugueseFontType":0,
+ "russianText":"塊オンザロック~メインテーマ",
+ "russianFontType":0,
+ "turkishText":"塊オンザロック~メインテーマ",
+ "turkishFontType":0,
+ "arabicText":"塊オンザロック~メインテーマ",
+ "arabicFontType":0,
+ "dutchText":"塊オンザロック~メインテーマ",
+ "dutchFontType":0,
+ "chineseSText":"塊オンザロック~メインテーマ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_20tvcl",
+ "japaneseText":"4+1のそれぞれの未来",
+ "englishUsText":"4+1 Myriad Futures",
+ "englishUsFontType":3,
+ "frenchText":"4+1 Myriad Futures",
+ "frenchFontType":3,
+ "italianText":"4+1 Myriad Futures",
+ "italianFontType":3,
+ "germanText":"4+1 Myriad Futures",
+ "germanFontType":3,
+ "spanishText":"4+1 Myriad Futures",
+ "spanishFontType":3,
+ "chineseTText":"4+1的各自的未來",
+ "chineseTFontType":1,
+ "koreanText":"4+1노 소레조레노 미라이",
+ "koreanFontType":2,
+ "portugueseText":"4+1 Myriad Futures",
+ "portugueseFontType":3,
+ "russianText":"4+1 Myriad Futures",
+ "russianFontType":3,
+ "turkishText":"4+1 Myriad Futures",
+ "turkishFontType":3,
+ "arabicText":"4+1 Myriad Futures",
+ "arabicFontType":3,
+ "dutchText":"4+1 Myriad Futures",
+ "dutchFontType":3,
+ "chineseSText":"4+1的各自的未来",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_20tvcl",
+ "japaneseText":"太鼓 de タイムトラベル00's / cosMo@暴走P feat.初音ミク",
+ "englishUsText":"Taiko de Time Travel 00's / cosMo@Bousou-P feat.HATSUNE MIKU",
+ "englishUsFontType":3,
+ "frenchText":"Taiko de Time Travel 00's / cosMo@Bousou-P feat.HATSUNE MIKU",
+ "frenchFontType":3,
+ "italianText":"Taiko de Time Travel 00's / cosMo@Bousou-P feat.HATSUNE MIKU",
+ "italianFontType":3,
+ "germanText":"Taiko de Time Travel 00's / cosMo@Bousou-P feat.HATSUNE MIKU",
+ "germanFontType":3,
+ "spanishText":"Taiko de Time Travel 00's / cosMo@Bousou-P feat.HATSUNE MIKU",
+ "spanishFontType":3,
+ "chineseTText":"Taiko de Time Travel 00's /cosMo@暴走P feat.初音未來",
+ "chineseTFontType":1,
+ "koreanText":"Taiko de Time Travel 00's / cosMo@Bousou-P feat.하츠네 미쿠",
+ "koreanFontType":2,
+ "portugueseText":"Taiko de Time Travel 00's / cosMo@Bousou-P feat.HATSUNE MIKU",
+ "portugueseFontType":3,
+ "russianText":"Taiko de Time Travel 00's / cosMo@Bousou-P feat.HATSUNE MIKU",
+ "russianFontType":3,
+ "turkishText":"Taiko de Time Travel 00's / cosMo@Bousou-P feat.HATSUNE MIKU",
+ "turkishFontType":3,
+ "arabicText":"Taiko de Time Travel 00's / cosMo@Bousou-P feat.HATSUNE MIKU",
+ "arabicFontType":3,
+ "dutchText":"Taiko de Time Travel 00's / cosMo@Bousou-P feat.HATSUNE MIKU",
+ "dutchFontType":3,
+ "chineseSText":"Taiko de Time Travel 00's /cosMo@暴走P feat.初音未来",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_20tvcl",
+ "japaneseText":"",
+ "englishUsText":"4+1のそれぞれの未来",
+ "englishUsFontType":0,
+ "frenchText":"4+1のそれぞれの未来",
+ "frenchFontType":0,
+ "italianText":"4+1のそれぞれの未来",
+ "italianFontType":0,
+ "germanText":"4+1のそれぞれの未来",
+ "germanFontType":0,
+ "spanishText":"4+1のそれぞれの未来",
+ "spanishFontType":0,
+ "chineseTText":"4+1のそれぞれの未来",
+ "chineseTFontType":0,
+ "koreanText":"4+1のそれぞれの未来",
+ "koreanFontType":0,
+ "portugueseText":"4+1のそれぞれの未来",
+ "portugueseFontType":0,
+ "russianText":"4+1のそれぞれの未来",
+ "russianFontType":0,
+ "turkishText":"4+1のそれぞれの未来",
+ "turkishFontType":0,
+ "arabicText":"4+1のそれぞれの未来",
+ "arabicFontType":0,
+ "dutchText":"4+1のそれぞれの未来",
+ "dutchFontType":0,
+ "chineseSText":"4+1のそれぞれの未来",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_butou3",
+ "japaneseText":"月下美人",
+ "englishUsText":"GEKKA BIJIN",
+ "englishUsFontType":3,
+ "frenchText":"GEKKA BIJIN",
+ "frenchFontType":3,
+ "italianText":"GEKKA BIJIN",
+ "italianFontType":3,
+ "germanText":"GEKKA BIJIN",
+ "germanFontType":3,
+ "spanishText":"GEKKA BIJIN",
+ "spanishFontType":3,
+ "chineseTText":"月下美人",
+ "chineseTFontType":1,
+ "koreanText":"월하미인",
+ "koreanFontType":2,
+ "portugueseText":"GEKKA BIJIN",
+ "portugueseFontType":3,
+ "russianText":"GEKKA BIJIN",
+ "russianFontType":3,
+ "turkishText":"GEKKA BIJIN",
+ "turkishFontType":3,
+ "arabicText":"GEKKA BIJIN",
+ "arabicFontType":3,
+ "dutchText":"GEKKA BIJIN",
+ "dutchFontType":3,
+ "chineseSText":"月下美人",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_butou3",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_butou3",
+ "japaneseText":"",
+ "englishUsText":"月下美人",
+ "englishUsFontType":0,
+ "frenchText":"月下美人",
+ "frenchFontType":0,
+ "italianText":"月下美人",
+ "italianFontType":0,
+ "germanText":"月下美人",
+ "germanFontType":0,
+ "spanishText":"月下美人",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"月下美人",
+ "koreanFontType":0,
+ "portugueseText":"月下美人",
+ "portugueseFontType":0,
+ "russianText":"月下美人",
+ "russianFontType":0,
+ "turkishText":"月下美人",
+ "turkishFontType":0,
+ "arabicText":"月下美人",
+ "arabicFontType":0,
+ "dutchText":"月下美人",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"osirase_v1_3_0_title",
+ "japaneseText":"ソフトウェアのアップデートを行いました(Ver.1.3.0)",
+ "englishUsText":"The game has been updated (Ver.1.3.0)",
+ "englishUsFontType":3,
+ "frenchText":"Mise à jour du logiciel (Ver.1.3.0)",
+ "frenchFontType":3,
+ "italianText":"Abbiamo aggiornato il gioco. (Ver.1.3.0)",
+ "italianFontType":3,
+ "germanText":"Die Software wurde aktualisiert (Ver.1.3.0)",
+ "germanFontType":3,
+ "spanishText":"Novedades de la última actualización (Ver.1.3.0)",
+ "spanishFontType":3,
+ "chineseTText":"本軟體已更新(Ver.1.3.0)",
+ "chineseTFontType":1,
+ "koreanText":"소프트웨어를 업데이트했습니다.(Ver.1.3.0)",
+ "koreanFontType":2,
+ "portugueseText":"O software foi atualizado (Ver.1.3.0)",
+ "portugueseFontType":2,
+ "russianText":"Программное обеспечение обновлено (версия 1.3.0)",
+ "russianFontType":2,
+ "turkishText":"Oyun güncellendi (Ver.1.3.0)",
+ "turkishFontType":2,
+ "arabicText":"لقد تم تحديث اللعبة (نسخة 1.3.0)",
+ "arabicFontType":2,
+ "dutchText":"De software is geüpdatet. (Ver.1.3.0)",
+ "dutchFontType":2,
+ "chineseSText":"本软件已更新(Ver.1.3.0)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"osirase_v1_3_0",
+ "japaneseText":"太鼓の達人 Pop Tap Beat をプレイ頂き、ありがとうございます!\n\nソフトウェアのアップデートを行いました(Ver.1.3.0)\n\n・いくつかの不具合の修正、パフォーマンス調整を行いました。\n\n★新曲追加★\n 太鼓の達人20周年記念楽曲「4+1のそれぞれの未来」をはじめ5曲を追加しました。\n 太鼓の達人 Pop Tap Beatはこれからも定期的に楽曲を追加します。\n",
+ "englishUsText":"Thank you for playing Taiko no Tatsujin Pop Tap Beat!\n\nThe game has been updated (Ver. 1.3.0).\n\n・We have carried out various minor improvements and bug fixes.\n\n★New Songs Added★\n5 more songs to play, starting with\n\"4+1 Myriad Futures,\" one of the songs\nreleased to mark the 20th anniversary\nof the franchise.\n\nWe'll keep adding new songs to Taiko no\nTatsujin Pop Tap Beat regularly, so keep\nan eye out for them!\n",
+ "englishUsFontType":3,
+ "frenchText":"Merci de jouer à Taiko no Tatsujin\nPop Tap Beat !\n\nMise à jour du logiciel (Ver.1.3.0)\n\n- Correction de certains bugs et\néquilibrage des performances.\n\n★ Ajout de nouvelles chansons ★\n Nous ajouterons régulièrement des chansons\n diverses et variées avec pour commencer\n 5 chansons dont celle des 20 ans de Taiko\n no Tatsujin : « 4+1 Myriad Futures » !",
+ "frenchFontType":3,
+ "italianText":"Grazie per aver giocato a Taiko no Tatsujin\nPop Tap Beat!\n\nAbbiamo aggiornato il gioco.\n(Ver.1.3.0)\n\nCorrezione di vari bug e miglioramenti delle\nprestazioni.\n\n★Nuovi brani★\nAbbiamo aggiunto 5 nuovi brani,\ntra cui \"4+1 Myriad Futures\",\nil brano commemorativo per\ni vent'anni della serie.\n\nContinueremo ad aggiungere\nperiodicamente nuovi brani su Taiko no\nTatsujin Pop Tap Beat!",
+ "italianFontType":3,
+ "germanText":"Vielen Dank fürs Spielen von\nTaiko no Tatsujin Pop Tap Beat!\n\nDie Software wurde aktualisiert (Ver.1.3.0).\n\nFehlerbehebungen und Leistungsanpassungen\n\n★Neue Songs★\nZum 20-jährigen Jubiläum von\nTaiko no Tatsujin wurden 5 weitere Songs, \ninklusive \"4+1 Myriad Futures\", hinzugefügt.\nTaiko no Tatsujin Pop Tap Beat wird auch\nkünftig weiterhin regelmäßig mit neuen\nSongs erweitert.",
+ "germanFontType":3,
+ "spanishText":"¡Gracias por jugar a Taiko no Tatsujin Pop Tap Beat!\n\nNueva actualización del juego (ver.1.3.0).\n\n・Hemos arreglado errores y realizado algunas mejoras.\n\n★Nuevas canciones★\nCelebramos el 20.º aniversario de Taiko no\nTatsujin con 5 nuevas canciones, entre ellas\n\"4+1 Myriad Futures\".\n\nAdemás, seguiremos añadiendo más canciones\nnuevas a Taiko no Tatsujin Pop Tap Beat\nde manera regular.",
+ "spanishFontType":3,
+ "chineseTText":"感謝您遊玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本軟體已更新(Ver.1.3.0)。\n\n‧已修正部分異常以及調整遊戲表現。\n\n★追加新曲★\n 已追加太鼓之達人20週年紀念樂曲《4+1的各自的未來》等5首新曲。\n 《Taiko no Tatsujin POP TAP BEAT》之後也會定期追加新樂曲。\n",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 Pop Tap Beat를 플레이해주셔서 감사합니다!\n\n소프트웨어를 업데이트했습니다.(Ver.1.3.0)\n\n・기타 오류를 수정하고 퍼포먼스를 조정했습니다.\n\n★신곡 추가★\n 태고의 달인 20주년 기념곡 '4+1노 소레조레노 미라이'를 \n 비롯한 5개 곡을 추가했습니다.\n 태고의 달인 Pop Tap Beat에는 앞으로도 \n 정기적으로 곡이 추가될 예정입니다.",
+ "koreanFontType":2,
+ "portugueseText":"Obrigado por jogar\nTaiko no Tatsujin Pop Tap Beat!\n\nO jogo foi atualizado (Ver.1.3.0)\n\n・Corrigimos alguns defeitos\n e ajustamos o desempenho.\n\n★Novas Músicas adicionadas★\n Adicionamos mais 5 músicas, começando por\n \"4+1 Myriad Futures\", uma das músicas\n lançadas para comemorar o 20º aniversário\n da franquia.\n\n Vamos adicionar novas músicas a\n Taiko no Tatsujin Pop Tap Beat\n periodicamente, portanto fique de olho!",
+ "portugueseFontType":2,
+ "russianText":"Спасибо, что играете в\nTaiko no Tatsujin Pop Tap Beat!\n\nПрограммное обеспечение\nобновлено (версия 1.3.0)\n\n■Исправлены некоторые ошибки,\nи проведена оптимизация.\n\n★Добавлены новые песни★\nДобавлено 5 песен, в том числе\n«4+1 Myriad Futures», посвященная\n20-летию игры «Taiko no Tatsujin».\nВ «Taiko no Tatsujin Pop Tap Beat» будут и дальше\nрегулярно добавляться песни.",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat'i oynadığın\niçin teşekkürler!\n\nOyun güncellendi (Sür.1.3.0).\n\n・Bir dizi ufak iyileştirme\nve hata düzeltmesi yaptık.\n\n★Yeni şarkılar eklendi★\n \"4+1 Myriad Futures\" ile başlayan ve\n içlerinden biri de oyunun 20. yıl dönümünün bir\n nişanesi olan 5 şarkı daha ekledik.\n Taiko no Tatsujin Pop Tap Beat'e düzenli\n olarak şarkı eklemeye devam edeceğiz,\n o yüzden, gözünü dört aç!",
+ "turkishFontType":2,
+ "arabicText":"شكرًا لك على لعب Taiko no Tatsujin Pop Tap Beat!\n\nتم تحديث اللعبة (نسخة 1.3.0).\n\n・ لقد أجرينا العديد من التحديثات الطفيفة وإصلاح الأخطاء.\n\n★تمت إضافة أغانٍ جديدة★\nإمكانية تشغيل 5 أغانِ إضافية، تتصدرها\nأغنية \"4+1 Myriad Futures\"، وهي إحدى الأغاني\nالتي تم إصدارها لتخليد الذكرى السنوية\nالعشرين للحصول على الامتياز.\n\nسنستمر في إضافة أغانِ جديدة إلى Taiko no\nTatsujin Pop Tap Beat بانتظام، لذا، \nترقبهم عن كثب!",
+ "arabicFontType":2,
+ "dutchText":"Bedankt dat je Taiko no Tatsujin Pop Tap Beat\nspeelt!\n\nDe game is geüpdatet. (Ver.1.3.0)\n\nEr zijn verschillende kleine verbeteringen doorgevoerd en bugs opgelost.\n\n★Nieuwe liedjes toegevoegd★\nEr zijn nu 5 meer liedjes speelbaar, met\nals eerste \"4+1 Myriad Futures\", een van \nde liedjes die zijn uitgegeven om het \n20-jarig bestaan van de serie te vieren.\n\nWe zullen met regelmaat nieuwe liedjes \ntoevoegen aan Taiko no Tatsujin Pop Tap Beat! \nHoud ons in de gaten!",
+ "dutchFontType":2,
+ "chineseSText":"感谢您游玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本软件已更新(Ver.1.3.0)。\n\n·已修正部分异常并调整游戏表现。\n\n★追加新曲★\n 已追加太鼓之达人20周年纪念乐曲\n 《4+1的各自的未来》等5首新曲。\n 《Taiko no Tatsujin POP TAP BEAT》之后也会定期追加新乐曲。\n",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_20tdnc",
+ "japaneseText":"Hold me tight",
+ "englishUsText":"Hold me tight",
+ "englishUsFontType":3,
+ "frenchText":"Hold me tight",
+ "frenchFontType":3,
+ "italianText":"Hold me tight",
+ "italianFontType":3,
+ "germanText":"Hold me tight",
+ "germanFontType":3,
+ "spanishText":"Hold me tight",
+ "spanishFontType":3,
+ "chineseTText":"Hold me tight",
+ "chineseTFontType":1,
+ "koreanText":"Hold me tight",
+ "koreanFontType":2,
+ "portugueseText":"Hold me tight",
+ "portugueseFontType":3,
+ "russianText":"Hold me tight",
+ "russianFontType":3,
+ "turkishText":"Hold me tight",
+ "turkishFontType":3,
+ "arabicText":"Hold me tight",
+ "arabicFontType":3,
+ "dutchText":"Hold me tight",
+ "dutchFontType":3,
+ "chineseSText":"Hold me tight",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_20tdnc",
+ "japaneseText":"太鼓 de タイムトラベル90's / Tatsh&musica with パークマンサー",
+ "englishUsText":"Taiko de Time Travel 90's / Tatsh&musica with PARC MANTHER",
+ "englishUsFontType":3,
+ "frenchText":"Taiko de Time Travel 90's / Tatsh&musica with PARC MANTHER",
+ "frenchFontType":3,
+ "italianText":"Taiko de Time Travel 90's / Tatsh&musica with PARC MANTHER",
+ "italianFontType":3,
+ "germanText":"Taiko de Time Travel 90's / Tatsh&musica with PARC MANTHER",
+ "germanFontType":3,
+ "spanishText":"Taiko de Time Travel 90's / Tatsh&musica with PARC MANTHER",
+ "spanishFontType":3,
+ "chineseTText":"Taiko de Time Travel 90's / Tatsh&musica with PARC MANTHER",
+ "chineseTFontType":1,
+ "koreanText":"Taiko de Time Travel 90's / Tatsh&musica with PARC MANTHER",
+ "koreanFontType":2,
+ "portugueseText":"Taiko de Time Travel 90's / Tatsh&musica with PARC MANTHER",
+ "portugueseFontType":3,
+ "russianText":"Taiko de Time Travel 90's / Tatsh&musica with PARC MANTHER",
+ "russianFontType":3,
+ "turkishText":"Taiko de Time Travel 90's / Tatsh&musica with PARC MANTHER",
+ "turkishFontType":3,
+ "arabicText":"Taiko de Time Travel 90's / Tatsh&musica with PARC MANTHER",
+ "arabicFontType":3,
+ "dutchText":"Taiko de Time Travel 90's / Tatsh&musica with PARC MANTHER",
+ "dutchFontType":3,
+ "chineseSText":"Taiko de Time Travel 90's / Tatsh&musica with PARC MANTHER",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_20tdnc",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_shing2",
+ "japaneseText":"紅蓮の弓矢",
+ "englishUsText":"Guren no Yumiya",
+ "englishUsFontType":3,
+ "frenchText":"Guren no Yumiya",
+ "frenchFontType":3,
+ "italianText":"Guren no Yumiya",
+ "italianFontType":3,
+ "germanText":"Guren no Yumiya",
+ "germanFontType":3,
+ "spanishText":"Guren no Yumiya",
+ "spanishFontType":3,
+ "chineseTText":"紅蓮的弓矢",
+ "chineseTFontType":1,
+ "koreanText":"홍련의 화살",
+ "koreanFontType":2,
+ "portugueseText":"Guren no Yumiya",
+ "portugueseFontType":3,
+ "russianText":"Guren no Yumiya",
+ "russianFontType":3,
+ "turkishText":"Guren no Yumiya",
+ "turkishFontType":3,
+ "arabicText":"Guren no Yumiya",
+ "arabicFontType":3,
+ "dutchText":"Guren no Yumiya",
+ "dutchFontType":3,
+ "chineseSText":"红莲的弓矢",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_shing2",
+ "japaneseText":"「進撃の巨人」より",
+ "englishUsText":"From \" Attack on Titan \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Attack on Titan \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Attack on Titan \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Attack on Titan \"",
+ "germanFontType":3,
+ "spanishText":"De \" Attack on Titan \"",
+ "spanishFontType":3,
+ "chineseTText":"來自 \" 進擊的巨人 \"",
+ "chineseTFontType":1,
+ "koreanText":"\"진격의 거인\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" Attack on Titan \"",
+ "portugueseFontType":3,
+ "russianText":"From \" Attack on Titan \"",
+ "russianFontType":3,
+ "turkishText":"From \" Attack on Titan \"",
+ "turkishFontType":3,
+ "arabicText":"From \" Attack on Titan \"",
+ "arabicFontType":3,
+ "dutchText":"From \" Attack on Titan \"",
+ "dutchFontType":3,
+ "chineseSText":"出自 \" 进击的巨人 \"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_shing2",
+ "japaneseText":"",
+ "englishUsText":"紅蓮の弓矢",
+ "englishUsFontType":0,
+ "frenchText":"紅蓮の弓矢",
+ "frenchFontType":0,
+ "italianText":"紅蓮の弓矢",
+ "italianFontType":0,
+ "germanText":"紅蓮の弓矢",
+ "germanFontType":0,
+ "spanishText":"紅蓮の弓矢",
+ "spanishFontType":0,
+ "chineseTText":"紅蓮の弓矢",
+ "chineseTFontType":0,
+ "koreanText":"紅蓮の弓矢",
+ "koreanFontType":0,
+ "portugueseText":"紅蓮の弓矢",
+ "portugueseFontType":0,
+ "russianText":"紅蓮の弓矢",
+ "russianFontType":0,
+ "turkishText":"紅蓮の弓矢",
+ "turkishFontType":0,
+ "arabicText":"紅蓮の弓矢",
+ "arabicFontType":0,
+ "dutchText":"紅蓮の弓矢",
+ "dutchFontType":0,
+ "chineseSText":"紅蓮の弓矢",
+ "chineseSFontType":0
+ },
+ {
+ "key":"setting_taiko_4",
+ "japaneseText":"左右にわける② しっかり表示",
+ "englishUsText":"Split ② - solid",
+ "englishUsFontType":3,
+ "frenchText":"Partager à gauche et à droite ②, opaque",
+ "frenchFontType":3,
+ "italianText":"Destra/sinistra ② - Opaco",
+ "italianFontType":3,
+ "germanText":"Links & rechts trennen② - Klar anzeigen",
+ "germanFontType":3,
+ "spanishText":"Separado nítido②",
+ "spanishFontType":3,
+ "chineseTText":"左右兩側② 清晰顯示",
+ "chineseTFontType":1,
+ "koreanText":"좌우로 나눔② 진하게 표시",
+ "koreanFontType":2,
+ "portugueseText":"Direita/Esquerda ② - Nítido",
+ "portugueseFontType":2,
+ "russianText":"Четко слева и справа ②",
+ "russianFontType":2,
+ "turkishText":"Ayrı ② - opak",
+ "turkishFontType":2,
+ "arabicText":"② منقسم - غَيْر شَفّافٍ",
+ "arabicFontType":2,
+ "dutchText":"Split screen ② - ondoorschijnend",
+ "dutchFontType":2,
+ "chineseSText":"左右两侧② 清晰显示",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_taiko_5",
+ "japaneseText":"左右にわける② うっすら表示",
+ "englishUsText":"Split ② - semitransparent",
+ "englishUsFontType":3,
+ "frenchText":"Partager à gauche et à droite ②, transparent",
+ "frenchFontType":3,
+ "italianText":"Destra/sinistra ② - Semitrasparente",
+ "italianFontType":3,
+ "germanText":"Links & rechts trennen② - Schwach anzeigen",
+ "germanFontType":3,
+ "spanishText":"Separado semitransparente②",
+ "spanishFontType":3,
+ "chineseTText":"左右兩側② 半透明顯示",
+ "chineseTFontType":1,
+ "koreanText":"좌우로 나눔② 연하게 표시",
+ "koreanFontType":2,
+ "portugueseText":"Direita/Esquerda ② - Semitransparente",
+ "portugueseFontType":2,
+ "russianText":"Полупрозрачно слева и справа ②",
+ "russianFontType":2,
+ "turkishText":"Ayrı ② - yarısaydam",
+ "turkishFontType":2,
+ "arabicText":"② منقسم - نصف شفّاف",
+ "arabicFontType":2,
+ "dutchText":"Split screen ② - halfdoorschijnend",
+ "dutchFontType":2,
+ "chineseSText":"左右两侧② 半透明显示",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_taiko_6",
+ "japaneseText":"左右にわける③ しっかり表示",
+ "englishUsText":"Split ③ - solid",
+ "englishUsFontType":3,
+ "frenchText":"Partager à gauche et à droite ③, opaque",
+ "frenchFontType":3,
+ "italianText":"Destra/sinistra ③ - Opaco",
+ "italianFontType":3,
+ "germanText":"Links & rechts trennen③ - Klar anzeigen",
+ "germanFontType":3,
+ "spanishText":"Separado nítido③",
+ "spanishFontType":3,
+ "chineseTText":"左右兩側③ 清晰顯示",
+ "chineseTFontType":1,
+ "koreanText":"좌우로 나눔③ 진하게 표시",
+ "koreanFontType":2,
+ "portugueseText":"Direita/Esquerda ③ - Nítido",
+ "portugueseFontType":2,
+ "russianText":"Четко слева и справа ③",
+ "russianFontType":2,
+ "turkishText":"Ayrı ③ - opak",
+ "turkishFontType":2,
+ "arabicText":"③ منقسم - غَيْر شَفّافٍ",
+ "arabicFontType":2,
+ "dutchText":"Split screen ③ - ondoorschijnend",
+ "dutchFontType":2,
+ "chineseSText":"左右两侧③ 清晰显示",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_taiko_7",
+ "japaneseText":"左右にわける③ うっすら表示",
+ "englishUsText":"Split ③ - semitransparent",
+ "englishUsFontType":3,
+ "frenchText":"Partager à gauche et à droite ③, transparent",
+ "frenchFontType":3,
+ "italianText":"Destra/sinistra ③ - Semitrasparente",
+ "italianFontType":3,
+ "germanText":"Links & rechts trennen③ - Schwach anzeigen",
+ "germanFontType":3,
+ "spanishText":"Separado semitransparente③",
+ "spanishFontType":3,
+ "chineseTText":"左右兩側③ 半透明顯示",
+ "chineseTFontType":1,
+ "koreanText":"좌우로 나눔③ 연하게 표시",
+ "koreanFontType":2,
+ "portugueseText":"Direita/Esquerda ③ - Semitransparente",
+ "portugueseFontType":2,
+ "russianText":"Полупрозрачно слева и справа ③",
+ "russianFontType":2,
+ "turkishText":"Ayrı ③ - yarısaydam",
+ "turkishFontType":2,
+ "arabicText":"③ منقسم - نصف شفّاف",
+ "arabicFontType":2,
+ "dutchText":"Split screen ③ - halfdoorschijnend",
+ "dutchFontType":2,
+ "chineseSText":"左右两侧③ 半透明显示",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_taiko_8",
+ "japaneseText":"左右にわける④ しっかり表示",
+ "englishUsText":"Split ④ - solid",
+ "englishUsFontType":3,
+ "frenchText":"Partager à gauche et à droite ④, opaque",
+ "frenchFontType":3,
+ "italianText":"Destra/sinistra ④ - Opaco",
+ "italianFontType":3,
+ "germanText":"Links & rechts trennen④ - Klar anzeigen",
+ "germanFontType":3,
+ "spanishText":"Separado nítido④",
+ "spanishFontType":3,
+ "chineseTText":"左右兩側④ 清晰顯示",
+ "chineseTFontType":1,
+ "koreanText":"좌우로 나눔④ 진하게 표시",
+ "koreanFontType":2,
+ "portugueseText":"Direita/Esquerda ④ - Nítido",
+ "portugueseFontType":2,
+ "russianText":"Четко слева и справа ④",
+ "russianFontType":2,
+ "turkishText":"Ayrı ④ - opak",
+ "turkishFontType":2,
+ "arabicText":"④ منقسم - غَيْر شَفّافٍ",
+ "arabicFontType":2,
+ "dutchText":"Split screen ④ - ondoorschijnend",
+ "dutchFontType":2,
+ "chineseSText":"左右两侧④ 清晰显示",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_taiko_9",
+ "japaneseText":"左右にわける④ うっすら表示",
+ "englishUsText":"Split ④ - semitransparent",
+ "englishUsFontType":3,
+ "frenchText":"Partager à gauche et à droite ④, transparent",
+ "frenchFontType":3,
+ "italianText":"Destra/sinistra ④ - Semitrasparente",
+ "italianFontType":3,
+ "germanText":"Links & rechts trennen④ - Schwach anzeigen",
+ "germanFontType":3,
+ "spanishText":"Separado semitransparente④",
+ "spanishFontType":3,
+ "chineseTText":"左右兩側④ 半透明顯示",
+ "chineseTFontType":1,
+ "koreanText":"좌우로 나눔④ 연하게 표시",
+ "koreanFontType":2,
+ "portugueseText":"Direita/Esquerda ④ - Semitransparente",
+ "portugueseFontType":2,
+ "russianText":"Полупрозрачно слева и справа ④",
+ "russianFontType":2,
+ "turkishText":"Ayrı ④ - yarısaydam",
+ "turkishFontType":2,
+ "arabicText":"④ منقسم - نصف شفّاف",
+ "arabicFontType":2,
+ "dutchText":"Split screen ④ - halfdoorschijnend",
+ "dutchFontType":2,
+ "chineseSText":"左右两侧④ 半透明显示",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_taiko_10",
+ "japaneseText":"まんなか② しっかり表示",
+ "englishUsText":"Center ② - solid",
+ "englishUsFontType":3,
+ "frenchText":"Au centre ②, opaque",
+ "frenchFontType":3,
+ "italianText":"Centro ② - Opaco",
+ "italianFontType":3,
+ "germanText":"Mitte②- Klar anzeigen",
+ "germanFontType":3,
+ "spanishText":"Centro nítido②",
+ "spanishFontType":3,
+ "chineseTText":"中央② 清晰顯示",
+ "chineseTFontType":1,
+ "koreanText":"가운데② 진하게 표시",
+ "koreanFontType":2,
+ "portugueseText":"Centro ② - Nítido",
+ "portugueseFontType":2,
+ "russianText":"Четко в центре ②",
+ "russianFontType":2,
+ "turkishText":"Merkezde ② - opak",
+ "turkishFontType":2,
+ "arabicText":"② في المنتصف - غَيْر شَفّافٍ",
+ "arabicFontType":2,
+ "dutchText":"Midden ② - ondoorschijnend",
+ "dutchFontType":2,
+ "chineseSText":"中央② 清晰显示",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_taiko_11",
+ "japaneseText":"まんなか② うっすら表示",
+ "englishUsText":"Center ② - semitransparent",
+ "englishUsFontType":3,
+ "frenchText":"Au centre ②, transparent",
+ "frenchFontType":3,
+ "italianText":"Centro ② - Semitrasparente",
+ "italianFontType":3,
+ "germanText":"Mitte② - Schwach anzeigen",
+ "germanFontType":3,
+ "spanishText":"Centro semitransparente②",
+ "spanishFontType":3,
+ "chineseTText":"中央② 半透明顯示",
+ "chineseTFontType":1,
+ "koreanText":"가운데② 연하게 표시",
+ "koreanFontType":2,
+ "portugueseText":"Centro ② - Semitransparente",
+ "portugueseFontType":2,
+ "russianText":"Полупрозрачно в центре ②",
+ "russianFontType":2,
+ "turkishText":"Merkezde ② - yarısaydam",
+ "turkishFontType":2,
+ "arabicText":"② في المنتصف - نصف شفّاف",
+ "arabicFontType":2,
+ "dutchText":"Midden ② - doorschijnend",
+ "dutchFontType":2,
+ "chineseSText":"中央② 半透明显示",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_taiko_12",
+ "japaneseText":"まんなか③ しっかり表示",
+ "englishUsText":"Center ③ - solid",
+ "englishUsFontType":3,
+ "frenchText":"Au centre ③, opaque",
+ "frenchFontType":3,
+ "italianText":"Centro ③ - Opaco",
+ "italianFontType":3,
+ "germanText":"Mitte③- Klar anzeigen",
+ "germanFontType":3,
+ "spanishText":"Centro nítido③",
+ "spanishFontType":3,
+ "chineseTText":"中央③ 清晰顯示",
+ "chineseTFontType":1,
+ "koreanText":"가운데③ 진하게 표시",
+ "koreanFontType":2,
+ "portugueseText":"Centro ③ - Nítido",
+ "portugueseFontType":2,
+ "russianText":"Четко в центре ③",
+ "russianFontType":2,
+ "turkishText":"Merkezde ③ - opak",
+ "turkishFontType":2,
+ "arabicText":"③ في المنتصف - غَيْر شَفّافٍ",
+ "arabicFontType":2,
+ "dutchText":"Midden ③ - ondoorschijnend",
+ "dutchFontType":2,
+ "chineseSText":"中央③ 清晰显示",
+ "chineseSFontType":4
+ },
+ {
+ "key":"setting_taiko_13",
+ "japaneseText":"まんなか③ うっすら表示",
+ "englishUsText":"Center ③ - semitransparent",
+ "englishUsFontType":3,
+ "frenchText":"Au centre ③, transparent",
+ "frenchFontType":3,
+ "italianText":"Centro ③ - Semitrasparente",
+ "italianFontType":3,
+ "germanText":"Mitte③ - Schwach anzeigen",
+ "germanFontType":3,
+ "spanishText":"Centro semitransparente③",
+ "spanishFontType":3,
+ "chineseTText":"中央③ 半透明顯示",
+ "chineseTFontType":1,
+ "koreanText":"가운데③ 연하게 표시",
+ "koreanFontType":2,
+ "portugueseText":"Centro ③ - Semitransparente",
+ "portugueseFontType":2,
+ "russianText":"Полупрозрачно в центре ③",
+ "russianFontType":2,
+ "turkishText":"Merkezde ③ - yarısaydam",
+ "turkishFontType":2,
+ "arabicText":"③ في المنتصف - نصف شفّاف",
+ "arabicFontType":2,
+ "dutchText":"Midden ③ - doorschijnend",
+ "dutchFontType":2,
+ "chineseSText":"中央③ 半透明显示",
+ "chineseSFontType":4
+ },
+ {
+ "key":"osirase_v1_4_0_title",
+ "japaneseText":"ソフトウェアのアップデートを行いました(Ver.1.4.0)",
+ "englishUsText":"The game has been updated (Ver.1.4.0)",
+ "englishUsFontType":3,
+ "frenchText":"Mise à jour du logiciel (Ver.1.4.0)",
+ "frenchFontType":3,
+ "italianText":"Abbiamo aggiornato il gioco. (Ver.1.4.0)",
+ "italianFontType":3,
+ "germanText":"Die Software wurde aktualisiert (Ver.1.4.0)",
+ "germanFontType":3,
+ "spanishText":"Novedades de la última actualización (Ver.1.4.0)",
+ "spanishFontType":3,
+ "chineseTText":"本軟體已更新(Ver.1.4.0)",
+ "chineseTFontType":1,
+ "koreanText":"소프트웨어를 업데이트했습니다.(Ver.1.4.0)",
+ "koreanFontType":2,
+ "portugueseText":"O software foi atualizado (Ver.1.4.0)",
+ "portugueseFontType":2,
+ "russianText":"Программное обеспечение обновлено (версия 1.4.0)",
+ "russianFontType":2,
+ "turkishText":"Oyun güncellendi (Ver.1.4.0)",
+ "turkishFontType":2,
+ "arabicText":"لقد تم تحديث اللعبة (نسخة 1.4.0)",
+ "arabicFontType":2,
+ "dutchText":"De software is geüpdatet. (Ver.1.4.0)",
+ "dutchFontType":2,
+ "chineseSText":"本软件已更新(Ver.1.4.0)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_tugaru",
+ "japaneseText":"津軽海峡・冬景色",
+ "englishUsText":"TSUGARU KAIKYOU FUYUGESHIKI",
+ "englishUsFontType":3,
+ "frenchText":"TSUGARU KAIKYOU FUYUGESHIKI",
+ "frenchFontType":3,
+ "italianText":"TSUGARU KAIKYOU FUYUGESHIKI",
+ "italianFontType":3,
+ "germanText":"TSUGARU KAIKYOU FUYUGESHIKI",
+ "germanFontType":3,
+ "spanishText":"TSUGARU KAIKYOU FUYUGESHIKI",
+ "spanishFontType":3,
+ "chineseTText":"TSUGARU KAIKYOU FUYUGESHIKI",
+ "chineseTFontType":1,
+ "koreanText":"TSUGARU KAIKYOU FUYUGESHIKI",
+ "koreanFontType":2,
+ "portugueseText":"TSUGARU KAIKYOU FUYUGESHIKI",
+ "portugueseFontType":3,
+ "russianText":"TSUGARU KAIKYOU FUYUGESHIKI",
+ "russianFontType":3,
+ "turkishText":"TSUGARU KAIKYOU FUYUGESHIKI",
+ "turkishFontType":3,
+ "arabicText":"TSUGARU KAIKYOU FUYUGESHIKI",
+ "arabicFontType":3,
+ "dutchText":"TSUGARU KAIKYOU FUYUGESHIKI",
+ "dutchFontType":3,
+ "chineseSText":"TSUGARU KAIKYOU FUYUGESHIKI",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_tugaru",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_tugaru",
+ "japaneseText":"",
+ "englishUsText":"津軽海峡・冬景色",
+ "englishUsFontType":0,
+ "frenchText":"津軽海峡・冬景色",
+ "frenchFontType":0,
+ "italianText":"津軽海峡・冬景色",
+ "italianFontType":0,
+ "germanText":"津軽海峡・冬景色",
+ "germanFontType":0,
+ "spanishText":"津軽海峡・冬景色",
+ "spanishFontType":0,
+ "chineseTText":"津軽海峡・冬景色",
+ "chineseTFontType":0,
+ "koreanText":"津軽海峡・冬景色",
+ "koreanFontType":0,
+ "portugueseText":"津軽海峡・冬景色",
+ "portugueseFontType":0,
+ "russianText":"津軽海峡・冬景色",
+ "russianFontType":0,
+ "turkishText":"津軽海峡・冬景色",
+ "turkishFontType":0,
+ "arabicText":"津軽海峡・冬景色",
+ "arabicFontType":0,
+ "dutchText":"津軽海峡・冬景色",
+ "dutchFontType":0,
+ "chineseSText":"津軽海峡・冬景色",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_anayu2",
+ "japaneseText":"Let It Go",
+ "englishUsText":"Let It Go",
+ "englishUsFontType":3,
+ "frenchText":"Let It Go",
+ "frenchFontType":3,
+ "italianText":"Let It Go",
+ "italianFontType":3,
+ "germanText":"Let It Go",
+ "germanFontType":3,
+ "spanishText":"Let It Go",
+ "spanishFontType":3,
+ "chineseTText":"Let It Go",
+ "chineseTFontType":1,
+ "koreanText":"Let It Go",
+ "koreanFontType":2,
+ "portugueseText":"Let It Go",
+ "portugueseFontType":3,
+ "russianText":"Let It Go",
+ "russianFontType":3,
+ "turkishText":"Let It Go",
+ "turkishFontType":3,
+ "arabicText":"Let It Go",
+ "arabicFontType":3,
+ "dutchText":"Let It Go",
+ "dutchFontType":3,
+ "chineseSText":"Let It Go",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_anayu2",
+ "japaneseText":"「Frozen」より",
+ "englishUsText":"From \" Frozen \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Frozen \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Frozen \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Frozen \"",
+ "germanFontType":3,
+ "spanishText":"De \" Frozen \"",
+ "spanishFontType":3,
+ "chineseTText":"來自 \" Frozen \"",
+ "chineseTFontType":1,
+ "koreanText":"\" Frozen \"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" Frozen \"",
+ "portugueseFontType":3,
+ "russianText":"From \" Frozen \"",
+ "russianFontType":3,
+ "turkishText":"From \" Frozen \"",
+ "turkishFontType":3,
+ "arabicText":"From \" Frozen \"",
+ "arabicFontType":3,
+ "dutchText":"From \" Frozen \"",
+ "dutchFontType":3,
+ "chineseSText":"出自 \" Frozen \"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_anayu2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_kimetu",
+ "japaneseText":"紅蓮華",
+ "englishUsText":"Gurenge",
+ "englishUsFontType":3,
+ "frenchText":"Gurenge",
+ "frenchFontType":3,
+ "italianText":"Gurenge",
+ "italianFontType":3,
+ "germanText":"Gurenge",
+ "germanFontType":3,
+ "spanishText":"Gurenge",
+ "spanishFontType":3,
+ "chineseTText":"紅蓮華",
+ "chineseTFontType":1,
+ "koreanText":"Gurenge",
+ "koreanFontType":2,
+ "portugueseText":"Gurenge",
+ "portugueseFontType":3,
+ "russianText":"Gurenge",
+ "russianFontType":3,
+ "turkishText":"Gurenge",
+ "turkishFontType":3,
+ "arabicText":"Gurenge",
+ "arabicFontType":3,
+ "dutchText":"Gurenge",
+ "dutchFontType":3,
+ "chineseSText":"红莲华",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_kimetu",
+ "japaneseText":"「鬼滅の刃」より",
+ "englishUsText":"From \" DEMON SLAYER : KIMETSU NO YAIBA \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" DEMON SLAYER : KIMETSU NO YAIBA \"",
+ "frenchFontType":3,
+ "italianText":"Da \" DEMON SLAYER : KIMETSU NO YAIBA \"",
+ "italianFontType":3,
+ "germanText":"Aus \" DEMON SLAYER : KIMETSU NO YAIBA \"",
+ "germanFontType":3,
+ "spanishText":"De \" DEMON SLAYER : KIMETSU NO YAIBA \"",
+ "spanishFontType":3,
+ "chineseTText":"來自 \" 鬼滅之刃 \"",
+ "chineseTFontType":1,
+ "koreanText":"\"귀멸의 칼날\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" DEMON SLAYER : KIMETSU NO YAIBA \"",
+ "portugueseFontType":3,
+ "russianText":"From \" DEMON SLAYER : KIMETSU NO YAIBA \"",
+ "russianFontType":3,
+ "turkishText":"From \" DEMON SLAYER : KIMETSU NO YAIBA \"",
+ "turkishFontType":3,
+ "arabicText":"From \" DEMON SLAYER : KIMETSU NO YAIBA \"",
+ "arabicFontType":3,
+ "dutchText":"From \" DEMON SLAYER : KIMETSU NO YAIBA \"",
+ "dutchFontType":3,
+ "chineseSText":"出自 \" 鬼灭之刃 \"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_kimetu",
+ "japaneseText":"",
+ "englishUsText":"紅蓮華",
+ "englishUsFontType":0,
+ "frenchText":"紅蓮華",
+ "frenchFontType":0,
+ "italianText":"紅蓮華",
+ "italianFontType":0,
+ "germanText":"紅蓮華",
+ "germanFontType":0,
+ "spanishText":"紅蓮華",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"紅蓮華",
+ "koreanFontType":0,
+ "portugueseText":"紅蓮華",
+ "portugueseFontType":0,
+ "russianText":"紅蓮華",
+ "russianFontType":0,
+ "turkishText":"紅蓮華",
+ "turkishFontType":0,
+ "arabicText":"紅蓮華",
+ "arabicFontType":0,
+ "dutchText":"紅蓮華",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_clsnut",
+ "japaneseText":"行進曲「くるみ割り人形」から",
+ "englishUsText":"March from The Nutcracker",
+ "englishUsFontType":3,
+ "frenchText":"Marche de Casse-noisette",
+ "frenchFontType":3,
+ "italianText":"Marcia da Lo schiaccianoci",
+ "italianFontType":3,
+ "germanText":"Marsch aus Der Nussknacker",
+ "germanFontType":3,
+ "spanishText":"El Cascanueces: Marcha",
+ "spanishFontType":3,
+ "chineseTText":"「胡桃鉗」進行曲節選",
+ "chineseTFontType":1,
+ "koreanText":"\"호두까기 인형\" 행진곡",
+ "koreanFontType":2,
+ "portugueseText":"March from The Nutcracker",
+ "portugueseFontType":3,
+ "russianText":"March from The Nutcracker",
+ "russianFontType":3,
+ "turkishText":"March from The Nutcracker",
+ "turkishFontType":3,
+ "arabicText":"March from The Nutcracker",
+ "arabicFontType":3,
+ "dutchText":"March from The Nutcracker",
+ "dutchFontType":3,
+ "chineseSText":"「胡桃钳」进行曲节选",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_clsnut",
+ "japaneseText":"チャイコフスキー",
+ "englishUsText":"Pyotr Ilyich Tchaikovsky",
+ "englishUsFontType":3,
+ "frenchText":"Pyotr Ilyich Tchaikovsky",
+ "frenchFontType":3,
+ "italianText":"Pyotr Ilyich Tchaikovsky",
+ "italianFontType":3,
+ "germanText":"Pyotr Ilyich Tchaikovsky",
+ "germanFontType":3,
+ "spanishText":"Pyotr Ilyich Tchaikovsky",
+ "spanishFontType":3,
+ "chineseTText":"柴可夫斯基",
+ "chineseTFontType":1,
+ "koreanText":"표트르 일리치 차이콥스키",
+ "koreanFontType":2,
+ "portugueseText":"Pyotr Ilyich Tchaikovsky",
+ "portugueseFontType":3,
+ "russianText":"Pyotr Ilyich Tchaikovsky",
+ "russianFontType":3,
+ "turkishText":"Pyotr Ilyich Tchaikovsky",
+ "turkishFontType":3,
+ "arabicText":"Pyotr Ilyich Tchaikovsky",
+ "arabicFontType":3,
+ "dutchText":"Pyotr Ilyich Tchaikovsky",
+ "dutchFontType":3,
+ "chineseSText":"柴可夫斯基",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_clsnut",
+ "japaneseText":"",
+ "englishUsText":"行進曲「くるみ割り人形」から",
+ "englishUsFontType":0,
+ "frenchText":"行進曲「くるみ割り人形」から",
+ "frenchFontType":0,
+ "italianText":"行進曲「くるみ割り人形」から",
+ "italianFontType":0,
+ "germanText":"行進曲「くるみ割り人形」から",
+ "germanFontType":0,
+ "spanishText":"行進曲「くるみ割り人形」から",
+ "spanishFontType":0,
+ "chineseTText":"行進曲「くるみ割り人形」から",
+ "chineseTFontType":0,
+ "koreanText":"行進曲「くるみ割り人形」から",
+ "koreanFontType":0,
+ "portugueseText":"行進曲「くるみ割り人形」から",
+ "portugueseFontType":0,
+ "russianText":"行進曲「くるみ割り人形」から",
+ "russianFontType":0,
+ "turkishText":"行進曲「くるみ割り人形」から",
+ "turkishFontType":0,
+ "arabicText":"行進曲「くるみ割り人形」から",
+ "arabicFontType":0,
+ "dutchText":"行進曲「くるみ割り人形」から",
+ "dutchFontType":0,
+ "chineseSText":"行進曲「くるみ割り人形」から",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_santa",
+ "japaneseText":"ジングルベル第765番",
+ "englishUsText":"Jingle Bells No.765",
+ "englishUsFontType":3,
+ "frenchText":"Jingle Bells No.765",
+ "frenchFontType":3,
+ "italianText":"Jingle Bells No.765",
+ "italianFontType":3,
+ "germanText":"Jingle Bells No.765",
+ "germanFontType":3,
+ "spanishText":"Jingle Bells No.765",
+ "spanishFontType":3,
+ "chineseTText":"Jingle Bells 第765號",
+ "chineseTFontType":1,
+ "koreanText":"Jingle Bells 765번",
+ "koreanFontType":2,
+ "portugueseText":"Jingle Bells No.765",
+ "portugueseFontType":3,
+ "russianText":"Jingle Bells No.765",
+ "russianFontType":3,
+ "turkishText":"Jingle Bells No.765",
+ "turkishFontType":3,
+ "arabicText":"Jingle Bells No.765",
+ "arabicFontType":3,
+ "dutchText":"Jingle Bells No.765",
+ "dutchFontType":3,
+ "chineseSText":"Jingle Bells 第765号",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_santa",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_santa",
+ "japaneseText":"",
+ "englishUsText":"ジングルベル第765番",
+ "englishUsFontType":0,
+ "frenchText":"ジングルベル第765番",
+ "frenchFontType":0,
+ "italianText":"ジングルベル第765番",
+ "italianFontType":0,
+ "germanText":"ジングルベル第765番",
+ "germanFontType":0,
+ "spanishText":"ジングルベル第765番",
+ "spanishFontType":0,
+ "chineseTText":"ジングルベル第765番",
+ "chineseTFontType":0,
+ "koreanText":"ジングルベル第765番",
+ "koreanFontType":0,
+ "portugueseText":"ジングルベル第765番",
+ "portugueseFontType":0,
+ "russianText":"ジングルベル第765番",
+ "russianFontType":0,
+ "turkishText":"ジングルベル第765番",
+ "turkishFontType":0,
+ "arabicText":"ジングルベル第765番",
+ "arabicFontType":0,
+ "dutchText":"ジングルベル第765番",
+ "dutchFontType":0,
+ "chineseSText":"ジングルベル第765番",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_ssnkjs",
+ "japaneseText":"怪獣少女は火を吹かない",
+ "englishUsText":"No Fire for Monster Girl",
+ "englishUsFontType":3,
+ "frenchText":"No Fire for Monster Girl",
+ "frenchFontType":3,
+ "italianText":"No Fire for Monster Girl",
+ "italianFontType":3,
+ "germanText":"No Fire for Monster Girl",
+ "germanFontType":3,
+ "spanishText":"No Fire for Monster Girl",
+ "spanishFontType":3,
+ "chineseTText":"No Fire for Monster Girl",
+ "chineseTFontType":1,
+ "koreanText":"No Fire for Monster Girl",
+ "koreanFontType":2,
+ "portugueseText":"No Fire for Monster Girl",
+ "portugueseFontType":3,
+ "russianText":"No Fire for Monster Girl",
+ "russianFontType":3,
+ "turkishText":"No Fire for Monster Girl",
+ "turkishFontType":3,
+ "arabicText":"No Fire for Monster Girl",
+ "arabicFontType":3,
+ "dutchText":"No Fire for Monster Girl",
+ "dutchFontType":3,
+ "chineseSText":"No Fire for Monster Girl",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_ssnkjs",
+ "japaneseText":"粗品 feat. 初音ミク",
+ "englishUsText":"Soshina feat. HATSUNE MIKU",
+ "englishUsFontType":3,
+ "frenchText":"Soshina feat. HATSUNE MIKU",
+ "frenchFontType":3,
+ "italianText":"Soshina feat. HATSUNE MIKU",
+ "italianFontType":3,
+ "germanText":"Soshina feat. HATSUNE MIKU",
+ "germanFontType":3,
+ "spanishText":"Soshina feat. HATSUNE MIKU",
+ "spanishFontType":3,
+ "chineseTText":"粗品 feat. 初音未來",
+ "chineseTFontType":1,
+ "koreanText":"Soshina feat. HATSUNE MIKU",
+ "koreanFontType":2,
+ "portugueseText":"Soshina feat. HATSUNE MIKU",
+ "portugueseFontType":3,
+ "russianText":"Soshina feat. HATSUNE MIKU",
+ "russianFontType":3,
+ "turkishText":"Soshina feat. HATSUNE MIKU",
+ "turkishFontType":3,
+ "arabicText":"Soshina feat. HATSUNE MIKU",
+ "arabicFontType":3,
+ "dutchText":"Soshina feat. HATSUNE MIKU",
+ "dutchFontType":3,
+ "chineseSText":"粗品 feat. 初音未来",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_ssnkjs",
+ "japaneseText":"",
+ "englishUsText":"怪獣少女は火を吹かない",
+ "englishUsFontType":0,
+ "frenchText":"怪獣少女は火を吹かない",
+ "frenchFontType":0,
+ "italianText":"怪獣少女は火を吹かない",
+ "italianFontType":0,
+ "germanText":"怪獣少女は火を吹かない",
+ "germanFontType":0,
+ "spanishText":"怪獣少女は火を吹かない",
+ "spanishFontType":0,
+ "chineseTText":"怪獣少女は火を吹かない",
+ "chineseTFontType":0,
+ "koreanText":"怪獣少女は火を吹かない",
+ "koreanFontType":0,
+ "portugueseText":"怪獣少女は火を吹かない",
+ "portugueseFontType":0,
+ "russianText":"怪獣少女は火を吹かない",
+ "russianFontType":0,
+ "turkishText":"怪獣少女は火を吹かない",
+ "turkishFontType":0,
+ "arabicText":"怪獣少女は火を吹かない",
+ "arabicFontType":0,
+ "dutchText":"怪獣少女は火を吹かない",
+ "dutchFontType":0,
+ "chineseSText":"怪獣少女は火を吹かない",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_20tcty",
+ "japaneseText":"Donder Time",
+ "englishUsText":"Donder Time",
+ "englishUsFontType":3,
+ "frenchText":"Donder Time",
+ "frenchFontType":3,
+ "italianText":"Donder Time",
+ "italianFontType":3,
+ "germanText":"Donder Time",
+ "germanFontType":3,
+ "spanishText":"Donder Time",
+ "spanishFontType":3,
+ "chineseTText":"Donder Time",
+ "chineseTFontType":1,
+ "koreanText":"Donder Time",
+ "koreanFontType":2,
+ "portugueseText":"Donder Time",
+ "portugueseFontType":3,
+ "russianText":"Donder Time",
+ "russianFontType":3,
+ "turkishText":"Donder Time",
+ "turkishFontType":3,
+ "arabicText":"Donder Time",
+ "arabicFontType":3,
+ "dutchText":"Donder Time",
+ "dutchFontType":3,
+ "chineseSText":"Donder Time",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_20tcty",
+ "japaneseText":"太鼓 de タイムトラベル80's / おおがみまさこ feat.団地ノ宮琴子",
+ "englishUsText":"Taiko de Time Travel 80's / Masako Ogami feat.Kotoko from Danchinomiya",
+ "englishUsFontType":3,
+ "frenchText":"Taiko de Time Travel 80's / Masako Ogami feat.Kotoko from Danchinomiya",
+ "frenchFontType":3,
+ "italianText":"Taiko de Time Travel 80's / Masako Ogami feat.Kotoko from Danchinomiya",
+ "italianFontType":3,
+ "germanText":"Taiko de Time Travel 80's / Masako Ogami feat.Kotoko from Danchinomiya",
+ "germanFontType":3,
+ "spanishText":"Taiko de Time Travel 80's / Masako Ogami feat.Kotoko from Danchinomiya",
+ "spanishFontType":3,
+ "chineseTText":"Taiko de Time Travel 80's / Masako Ogami feat.Kotoko from Danchinomiya",
+ "chineseTFontType":1,
+ "koreanText":"Taiko de Time Travel 80's / Masako Ogami feat.Kotoko from Danchinomiya",
+ "koreanFontType":2,
+ "portugueseText":"Taiko de Time Travel 80's / Masako Ogami feat.Kotoko from Danchinomiya",
+ "portugueseFontType":3,
+ "russianText":"Taiko de Time Travel 80's / Masako Ogami feat.Kotoko from Danchinomiya",
+ "russianFontType":3,
+ "turkishText":"Taiko de Time Travel 80's / Masako Ogami feat.Kotoko from Danchinomiya",
+ "turkishFontType":3,
+ "arabicText":"Taiko de Time Travel 80's / Masako Ogami feat.Kotoko from Danchinomiya",
+ "arabicFontType":3,
+ "dutchText":"Taiko de Time Travel 80's / Masako Ogami feat.Kotoko from Danchinomiya",
+ "dutchFontType":3,
+ "chineseSText":"Taiko de Time Travel 80's / Masako Ogami feat.Kotoko from Danchinomiya",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_20tcty",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_20tidl",
+ "japaneseText":"恋はドント・ダウト",
+ "englishUsText":"Don't Doubt This Love",
+ "englishUsFontType":3,
+ "frenchText":"Don't Doubt This Love",
+ "frenchFontType":3,
+ "italianText":"Don't Doubt This Love",
+ "italianFontType":3,
+ "germanText":"Don't Doubt This Love",
+ "germanFontType":3,
+ "spanishText":"Don't Doubt This Love",
+ "spanishFontType":3,
+ "chineseTText":"Don't Doubt This Love",
+ "chineseTFontType":1,
+ "koreanText":"Don't Doubt This Love",
+ "koreanFontType":2,
+ "portugueseText":"Don't Doubt This Love",
+ "portugueseFontType":3,
+ "russianText":"Don't Doubt This Love",
+ "russianFontType":3,
+ "turkishText":"Don't Doubt This Love",
+ "turkishFontType":3,
+ "arabicText":"Don't Doubt This Love",
+ "arabicFontType":3,
+ "dutchText":"Don't Doubt This Love",
+ "dutchFontType":3,
+ "chineseSText":"Don't Doubt This Love",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_20tidl",
+ "japaneseText":"太鼓 de タイムトラベル70's / Kawagen Kollagen with yuzuki",
+ "englishUsText":"Taiko de Time Travel 70's / Kawagen Kollagen with yuzuki",
+ "englishUsFontType":3,
+ "frenchText":"Taiko de Time Travel 70's / Kawagen Kollagen with yuzuki",
+ "frenchFontType":3,
+ "italianText":"Taiko de Time Travel 70's / Kawagen Kollagen with yuzuki",
+ "italianFontType":3,
+ "germanText":"Taiko de Time Travel 70's / Kawagen Kollagen with yuzuki",
+ "germanFontType":3,
+ "spanishText":"Taiko de Time Travel 70's / Kawagen Kollagen with yuzuki",
+ "spanishFontType":3,
+ "chineseTText":"Taiko de Time Travel 70's / Kawagen Kollagen with yuzuki",
+ "chineseTFontType":1,
+ "koreanText":"Taiko de Time Travel 70's / Kawagen Kollagen with yuzuki",
+ "koreanFontType":2,
+ "portugueseText":"Taiko de Time Travel 70's / Kawagen Kollagen with yuzuki",
+ "portugueseFontType":3,
+ "russianText":"Taiko de Time Travel 70's / Kawagen Kollagen with yuzuki",
+ "russianFontType":3,
+ "turkishText":"Taiko de Time Travel 70's / Kawagen Kollagen with yuzuki",
+ "turkishFontType":3,
+ "arabicText":"Taiko de Time Travel 70's / Kawagen Kollagen with yuzuki",
+ "arabicFontType":3,
+ "dutchText":"Taiko de Time Travel 70's / Kawagen Kollagen with yuzuki",
+ "dutchFontType":3,
+ "chineseSText":"Taiko de Time Travel 70's / Kawagen Kollagen with yuzuki",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_20tidl",
+ "japaneseText":"",
+ "englishUsText":"恋はドント・ダウト",
+ "englishUsFontType":0,
+ "frenchText":"恋はドント・ダウト",
+ "frenchFontType":0,
+ "italianText":"恋はドント・ダウト",
+ "italianFontType":0,
+ "germanText":"恋はドント・ダウト",
+ "germanFontType":0,
+ "spanishText":"恋はドント・ダウト",
+ "spanishFontType":0,
+ "chineseTText":"恋はドント・ダウト",
+ "chineseTFontType":0,
+ "koreanText":"恋はドント・ダウト",
+ "koreanFontType":0,
+ "portugueseText":"恋はドント・ダウト",
+ "portugueseFontType":0,
+ "russianText":"恋はドント・ダウト",
+ "russianFontType":0,
+ "turkishText":"恋はドント・ダウト",
+ "turkishFontType":0,
+ "arabicText":"恋はドント・ダウト",
+ "arabicFontType":0,
+ "dutchText":"恋はドント・ダウト",
+ "dutchFontType":0,
+ "chineseSText":"恋はドント・ダウト",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_20tanm",
+ "japaneseText":"大冒険タツドン",
+ "englishUsText":"DAIBOUKEN TATSUDON",
+ "englishUsFontType":3,
+ "frenchText":"DAIBOUKEN TATSUDON",
+ "frenchFontType":3,
+ "italianText":"DAIBOUKEN TATSUDON",
+ "italianFontType":3,
+ "germanText":"DAIBOUKEN TATSUDON",
+ "germanFontType":3,
+ "spanishText":"DAIBOUKEN TATSUDON",
+ "spanishFontType":3,
+ "chineseTText":"大冒險TATSUDON",
+ "chineseTFontType":1,
+ "koreanText":"DAIBOUKEN TATSUDON",
+ "koreanFontType":2,
+ "portugueseText":"DAIBOUKEN TATSUDON",
+ "portugueseFontType":3,
+ "russianText":"DAIBOUKEN TATSUDON",
+ "russianFontType":3,
+ "turkishText":"DAIBOUKEN TATSUDON",
+ "turkishFontType":3,
+ "arabicText":"DAIBOUKEN TATSUDON",
+ "arabicFontType":3,
+ "dutchText":"DAIBOUKEN TATSUDON",
+ "dutchFontType":3,
+ "chineseSText":"大冒险TATSUDON",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_20tanm",
+ "japaneseText":"太鼓 de タイムトラベル60's / 田島勝朗 feat. シックスティーズ・クワイヤーズ",
+ "englishUsText":"Taiko de Time Travel 60's / Katsuro Tajima feat. Sixties Choirs",
+ "englishUsFontType":3,
+ "frenchText":"Taiko de Time Travel 60's / Katsuro Tajima feat. Sixties Choirs",
+ "frenchFontType":3,
+ "italianText":"Taiko de Time Travel 60's / Katsuro Tajima feat. Sixties Choirs",
+ "italianFontType":3,
+ "germanText":"Taiko de Time Travel 60's / Katsuro Tajima feat. Sixties Choirs",
+ "germanFontType":3,
+ "spanishText":"Taiko de Time Travel 60's / Katsuro Tajima feat. Sixties Choirs",
+ "spanishFontType":3,
+ "chineseTText":"Taiko de Time Travel 60's / 田島勝朗 feat. Sixties Choirs",
+ "chineseTFontType":1,
+ "koreanText":"Taiko de Time Travel 60's / Katsuro Tajima feat. Sixties Choirs",
+ "koreanFontType":2,
+ "portugueseText":"Taiko de Time Travel 60's / Katsuro Tajima feat. Sixties Choirs",
+ "portugueseFontType":3,
+ "russianText":"Taiko de Time Travel 60's / Katsuro Tajima feat. Sixties Choirs",
+ "russianFontType":3,
+ "turkishText":"Taiko de Time Travel 60's / Katsuro Tajima feat. Sixties Choirs",
+ "turkishFontType":3,
+ "arabicText":"Taiko de Time Travel 60's / Katsuro Tajima feat. Sixties Choirs",
+ "arabicFontType":3,
+ "dutchText":"Taiko de Time Travel 60's / Katsuro Tajima feat. Sixties Choirs",
+ "dutchFontType":3,
+ "chineseSText":"Taiko de Time Travel 60's / 田島勝朗 feat. Sixties Choirs",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_20tanm",
+ "japaneseText":"",
+ "englishUsText":"大冒険タツドン",
+ "englishUsFontType":0,
+ "frenchText":"大冒険タツドン",
+ "frenchFontType":0,
+ "italianText":"大冒険タツドン",
+ "italianFontType":0,
+ "germanText":"大冒険タツドン",
+ "germanFontType":0,
+ "spanishText":"大冒険タツドン",
+ "spanishFontType":0,
+ "chineseTText":"大冒険タツドン",
+ "chineseTFontType":0,
+ "koreanText":"大冒険タツドン",
+ "koreanFontType":0,
+ "portugueseText":"大冒険タツドン",
+ "portugueseFontType":0,
+ "russianText":"大冒険タツドン",
+ "russianFontType":0,
+ "turkishText":"大冒険タツドン",
+ "turkishFontType":0,
+ "arabicText":"大冒険タツドン",
+ "arabicFontType":0,
+ "dutchText":"大冒険タツドン",
+ "dutchFontType":0,
+ "chineseSText":"大冒険タツドン",
+ "chineseSFontType":0
+ },
+ {
+ "key":"osirase_v1_4_0_upper",
+ "japaneseText":"太鼓の達人 Pop Tap Beat をプレイ頂き、ありがとうございます!\n\nソフトウェアのアップデートを行いました(Ver.1.4.0)\n\n★タッチ太鼓のバリエーションを追加しました★\n お使いの端末のサイズ、プレイスタイルにあわせて選んでくださいね。\n ゲームの設定>タッチ太鼓の設定\n から変更できますよ。\n",
+ "englishUsText":"Thank you for playing Taiko no Tatsujin Pop Tap Beat!\n\nThe game has been updated (Ver.1.4.0).\n\n・Touch Drum Variations Added\n Change your Touch Drum settings to match\n your device and play style. Access by going to\n Game Settings > Touch Drum\n",
+ "englishUsFontType":3,
+ "frenchText":"Merci de jouer à Taiko no Tatsujin\nPop Tap Beat !\n\nMise à jour du logiciel (Ver.1.4.0)\n\n★ Ajout de variations de tambour tactile ★\n Adaptez vos réglages de tambour tactile\n à votre appareil et à votre style de jeu.\n Allez dans\n Réglages du jeu > Tambour tactile\n pour faire les modifications.\n",
+ "frenchFontType":3,
+ "italianText":"Grazie per aver giocato a Taiko no Tatsujin\nPop Tap Beat!\n\nAbbiamo aggiornato il gioco. (Ver. 1.4.0)\n\nNovità: varianti per il touch\n Potrai scegliere varie opzioni in base al\n dispositivo che utilizzi e al tuo stile di gioco.\n Per cambiare, scegli \"Impostazioni di sistema\"\n e poi \"Impostazioni touch\".\n",
+ "italianFontType":3,
+ "germanText":"Vielen Dank fürs Spielen von \nTaiko no Tatsujin Pop Tap Beat!\n\nDie Softare wurde aktualisiert(Ver.1.4.0)\n\n★Variationen für Touch-Trommel hinzugefügt★\n Passe die Touch-Trommel an die Größe \n deines Endgerätes und deinen Spielstil an.\n Änderungen kannst du über Spieleinstellungen \n -> Touch-Trommel-Einstellungen vornehmen. \n",
+ "germanFontType":3,
+ "spanishText":"¡Gracias por jugar a Taiko no Tatsujin Pop Tap Beat!\n\nNovedades de la última actualización (ver. 1.4.0)\n\n★Nuevos tambores táctiles★\n Elige los tambores que mejor se adapten\n al tamaño de tu dispositivo y tu estilo de juego.\n Puedes configurarlos desde\n Ajustes >Tambor táctil.\n",
+ "spanishFontType":3,
+ "chineseTText":"感謝您遊玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本軟體已更新(Ver.1.4.0)。\n\n★已追加觸控太鼓的玩法變化★\n 請配合您使用的裝置尺寸以及遊玩方式來選擇。\n 可以從遊戲設定>觸控太鼓設定\n 進行變更。\n",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 Pop Tap Beat를 플레이해주셔서 감사합니다!\n\n소프트웨어를 업데이트했습니다.(Ver.1.4.0)\n\n★다양한 터치 북 설정을 추가했습니다★\n 사용 중인 단말기의 사이즈, 플레이 스타일에 맞춰 선택해 주세요.\n 게임 설정 > 터치 북 설정\n 에서 변경할 수 있습니다.\n",
+ "koreanFontType":2,
+ "portugueseText":"Obrigado por jogar Taiko no Tatsujin Pop Tap Beat!\n\n O software foi atualizado (Ver.1.4.0). \n\n ★ Adição de variações de Tambor Touch ★ \n Você pode escolher aquele que melhor se adapta\n ao tamanho e estilo de jogo de seu dispositivo.\n Acesse em Configurações de jogo> Tambor Touch\n",
+ "portugueseFontType":2,
+ "russianText":"Спасибо, что играете в Taiko no Tatsujin Pop Tap Beat!\n\n Программное обеспечение обновлено (Версия 1.4.0).\n\n・Добавлены вариации сенсорных барабанов.\n Выбирайте барабан, подходящий под размер\n вашего устройства и стиль игры.\n Вы можете их изменить в разделе Настройки игры > Настройка сенсорных барабанов.\n",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat'i oynadığın\niçin teşekkürler!\n\nOyun güncellendi (Ver.1.4.0).\n\n・Davula vurma seçenekleri eklendi\n Cihazınız ve oyun tarzınızla eşleşmesi için\n Davula vurma ayarlarınızı değiştirin. Oyun \n ayarları ve Bildirimler bölümünden erişebilirsiniz.\n",
+ "turkishFontType":2,
+ "arabicText":"نشكرك على لعب Taiko no Tatsujin Pop Tap Beat!\n\nلقد تم تحديث اللعبة (الإصدار 1.4.0).\n\n・حيث تمت إضافة تنوعات لطبلة اللمس\nيمكنك تغيير إعدادات طبلة اللمس خاصتك لتلائم\nجهازك وأسلوب لعبك. للقيام بذلك ادخل إلى\n إعدادات اللعبة > الإشعارات\n",
+ "arabicFontType":2,
+ "dutchText":"Bedankt dat je Taiko no Tatsujin Pop Tap Beat\nspeelt!\n\nDe software is geüpdatet (Ver.1.4.0).\n\n・Touch Drum-variaties toegevoegd\n Pas je Touch Drum-instellingen aan\n jouw apparaat en speelstijl aan.\n Je vindt de opties in\n Game-instellingen > Drum aanraken",
+ "dutchFontType":2,
+ "chineseSText":"感谢您游玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本软件已更新(Ver.1.4.0)。\n\n★已追加触控太鼓的玩法变化★\n 请配合您使用的装置尺寸以及游玩方式来选择。\n 可以从游戏设定>触控太鼓设定\n 进行变更。\n",
+ "chineseSFontType":4
+ },
+ {
+ "key":"osirase_v1_4_0_bottom",
+ "japaneseText":"\n・いくつかの不具合の修正、パフォーマンス調整を行いました。\n\n★新曲追加★\n みなさまに愛され誕生から20年!\n\n 和太鼓リズムゲームの定番”太鼓の達人”のApple Arcade版が\n バージョンアップで60曲以上ドドンとたたき放題\n\n 通信対戦でもドンカツ盛り上がれる 太鼓の達人Pop Tap Beat!",
+ "englishUsText":"\n・Other minor improvements and bug fixes\n\n・New Songs Added\n Well-loved for 20 years around the world!\n\n The Apple Arcade version of the classic \n rhythmic drumming game Taiko no Tatsujin has \n been updated to offer over 60 songs\n to play however and whenever you want!\n\n Drum your heart out -- by yourself or \n against friends online -- with Taiko no\n Tatsujin Pop Tap Beat!",
+ "englishUsFontType":3,
+ "frenchText":"\n- Correction de certains bugs et\néquilibrage des performances\n\n★ Ajout de nouvelles chansons ★\n Adoré aux quatre coins\n du monde depuis 20 ans !\n\n La version Apple Arcade du classique des\n jeux de rythme au tambour japonais,\n Taiko no Tatsujin, a été enrichie et\n contient plus de 60 chansons à jouer où\n et quand vous voulez !\n\n Tambourinez tout votre soûl, seul ou\n contre vos amis en ligne, dans Taiko no\n Tatsujin Pop Tap Beat !",
+ "frenchFontType":3,
+ "italianText":"\nCorrezione di vari bug\ne miglioramenti delle prestazioni.\n\nNuovi brani\n Festeggiamo tutti insieme i vent'anni\n della serie!\n\n Con questo aggiornamento, l'edizione Apple\n Arcade del classico dei giochi musicali\n Taiko no Tatsujin ha oltre 60 brani\n tutti da suonare!\n\n Continua a battere sui tamburi anche online!",
+ "italianFontType":3,
+ "germanText":"\nVerschiedene Bugs wurden korrigiert und \nPerformance-Anpassungen durchgeführt.\n\n★Neue Songs verfügbar★\n Nun schon seit 20 Jahren heißgeliebt!\n\n Im neuesten Update der Apple-Arcade Version \n des beliebten Taiko-Rythmus-Spiel-Klassikers \n \"Taiko no Tatsujin\" gibt es über 60 neue \n Songs. Trommle nach Herzenslust! \n\n Taiko no Tatsujin Pop Tap Beat ist \n auch im Online-Duell ein Riesenspaß!",
+ "germanFontType":3,
+ "spanishText":"\nTambién hemos arreglado otros errores y mejorado el rendimiento\n\n★¡Nuevas canciones!★\n ¡20 años de apoyo incondicional!\n\n La actualización del juego de tambores\n japoneses, Taiko no Tatsujin, en su versión\n para Apple Arcade viene con más de\n 60 canciones para tocar de manera ilimitada.\n\n ¡Pásatelo bomba también en el modo Juego\n en línea de Taiko no Tatsujin Pop Tap Beat!",
+ "spanishFontType":3,
+ "chineseTText":"\n‧已修正部分異常以及調整遊戲表現。\n\n★追加新曲★\n 誕生20年來深受大眾喜愛!\n\n 經典和太鼓節奏遊戲《太鼓之達人》的Apple Arcade版\n 改版後可盡情遊玩超過60首樂曲。\n\n 通訊對戰也能咚咔嗨翻天的《Taiko no Tatsujin POP TAP BEAT》!",
+ "chineseTFontType":1,
+ "koreanText":"\n・그 외 오류를 수정하고 퍼포먼스를 조정했습니다.\n\n★신곡 추가★\n 여러분의 사랑에 힘입어 맞이한 20주년!\n\n 일본 북 리듬 게임의 정석 \"태고의 달인\" Apple Arcade판이\n 버전 업하여 60곡 이상의 곡을 보유! 쿠쿵, 계속 두드리자!\n\n 통신 대전에서도 쿵딱! 달아오르는 태고의 달인 Pop Tap Beat!",
+ "koreanFontType":2,
+ "portugueseText":"\n ・Outras pequenas melhorias e correções de erros\n\n ★ Adição de novas músicas ★ \n A franquia celebrou seu 20º aniversário\n graças ao amor e apoio de todos!\n\n A versão Apple Arcade do famoso jogo de ritmo \"Taiko no Tatsujin\"\n foi atualizada e tem agora mais de 60 canções para tocar!\n\n Taiko no Tatsujin Pop Tap Beat permite-lhe que você\n se divirta jogando contra outros jogadores!",
+ "portugueseFontType":2,
+ "russianText":"\n・Исправлены некоторые ошибки и скорректирована производительность.\n\n・Добавлены новые песни.\n Всеми любимой игре исполняется 20 лет!\n\n С обновлением версии классической японской\n ритм-игры с барабанами Taiko no Tatsujin для\n Apple Arcade вы можете исполнить более\n 60 песен!\n\n Играть в Taiko no Tatsujin Pop Tap Beat можно одному или\n онлайн с друзьями!",
+ "russianFontType":2,
+ "turkishText":"\n・Diğer İyileştirme ve Hata Onarımları\n\n・Yeni Şarkılar Eklendi\n Dünyada 20 yıldır çok sevilen şarkılar!\n\n Klasik ritmik davul çalma oyunu Taiko no \n Tatsujin'in Apple Arcade versiyonu, \n istediğiniz zaman ve istediğiniz şekilde \n çalmanız için 60'tan fazla yeni şarkı ile \n güncellendi!\n\n Kalbin güm güm atsın -- kendi başına ya da \n online olarak arkadaşlarına karşı -- Taiko no\n Tatsujin Pop Tap Beat!",
+ "turkishFontType":2,
+ "arabicText":"\n・كما تمت إضافة تحسينات طفيفة أخرى وتصحيحات للأخطاء\n\n・وإضافة أغانٍ جديدة\nالأغاني المحبوبة من جميع أنحاء العالم طوال 20 عامًا!\n\nتم تحديث إصدار Apple Arcade من لعبة الطبول\nالإيقاعية الكلاسيكية Taiko no Tatsujin بأكثر من\n60 أغنية جديدة يمكن لعبها كيفما ومتى شئت!\nاستمتع بعزف الطبلة بقلبك - بمفردك أو نافس الأصدقاء\nعلى اللإنترنت - في لعبة Taiko no\n Tatsujin Pop Tap Beat!",
+ "arabicFontType":2,
+ "dutchText":"\n・Andere kleine verbeteringen en bug-fixes\n\n・Nieuwe liedjes toegevoegd\n Al 20 jaar geliefd over de hele wereld!\n\n De Apple Arcade-versie van het klassieke\n drum en ritmespel Taiko no Tatsujin\n heeft er 60 nieuwe liedjes bij gekregen\n die je kan spelen hoe en wanneer je wilt!\n\n Trommel erop los, alleen of online\n tegen je vrienden, met Taiko no Tatsujin\n Pop Tap Beat!",
+ "dutchFontType":2,
+ "chineseSText":"\n‧已修正部分异常并调整游戏表现。\n\n★追加新曲★\n 诞生20年来深受大家喜爱!\n\n 经典和太鼓节奏游戏《太鼓之达人》的Apple Arcade版\n 改版后可尽情游玩超过60首乐曲。\n\n 通信对战也能咚咔嗨翻天的《Taiko no Tatsujin POP TAP BEAT》!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"osirase_v1_5_0",
+ "japaneseText":"太鼓の達人 Pop Tap Beat をプレイ頂き、ありがとうございます!\n\nソフトウェアのアップデートを行いました(Ver.1.5.0)\n\n・いくつかの不具合の修正、パフォーマンス調整を行いました。\n\n★新曲追加★\n 粗品(霜降り明星)が手掛ける太鼓の達人20周年記念ソング「大好きな太鼓の音 / 粗品 feat. どんちゃん」をはじめ8曲を追加!",
+ "englishUsText":"Thank you for playing Taiko no Tatsujin Pop Tap Beat!\n\nThe game has been updated (Ver.1.5.0).\n\n・Minor improvements and bug fixes\n\n★Addition of New Songs★\n 8 new songs now added, starting with\n \"Favorite Sounds of Taiko / Soshina \n feat. DON-chan\", which was produced by \n Soshina from the comedy duo Shimofuri \n Myojo to mark the 20th Anniversary of\n Taiko no Tatsujin!",
+ "englishUsFontType":3,
+ "frenchText":"Merci de jouer à Taiko no Tatsujin\nPop Tap Beat !\n\nMise à jour du logiciel (Ver.1.5.0)\n\n- Correction de certains bugs et\néquilibrage des performances.\n\n★ Ajout de nouvelles chansons ★\nNous avons ajouté 8 nouvelles chansons dont « Les sons favoris de Taiko/Soshina feat. DON-chan » pour commencer ! Cette chanson a été créée par Soshina (du duo comique « Shimofuri Myojo ») pour les 20 ans de Taiko no Tatsujin !\n",
+ "frenchFontType":3,
+ "italianText":"Grazie per aver giocato a Taiko no Tatsujin\nPop Tap Beat!\n\nAbbiamo aggiornato il gioco. (Ver. 1.5.0)\n\nCorrezione di vari bug\ne miglioramenti delle prestazioni.\n\n★Nuovi brani★\n Abbiamo aggiunto 8 nuovi brani, compreso \"Favorite Sounds of Taiko - Soshina feat. DON-chan\", con la partecipazione di Soshina (Shimofuri Myojo) per i vent'anni della serie!",
+ "italianFontType":3,
+ "germanText":"Vielen Dank fürs Spielen von\nTaiko no Tatsujin Pop Tap Beat!\n\nDie Software wurde aktualisiert (Ver.1.5.0).\n\n・Wir haben Fehlerbehebungen und Leistungsanpassungen vorgenommen\n\n★Neue Songs★\n8 neue Songs wurden hinzugefügt, darunter \"Favorite Sounds of Taiko / Soshina feat. DON-chan\", ein Song zum 20. Jubiläum von Taiko No Tatsujin, gespielt von Soshina vom Comedy-Duo Shimofuri Myojo.",
+ "germanFontType":3,
+ "spanishText":"¡Gracias por jugar a Taiko no Tatsujin Pop tap Beat!\n\nSe ha actualizado el juego (ver. 1.5.0).\n\nHemos arreglado errores y mejorado el rendimiento\n\n★Nuevas canciones★\n 8 nuevas canciones, entre ellas la canción del 20 aniversario de Taiko \"Favorite Sounds of Taiko / Soshina feat. DON-chan\", producida por Soshina, del dúo cómico Shimofuri Myojo.\n",
+ "spanishFontType":3,
+ "chineseTText":"感謝您遊玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本軟體已更新(Ver.1.5.0)。\n\n‧已修正部分異常以及調整遊戲表現。\n\n★追加新曲★\n 已追加由粗品(霜降明星)創作的太鼓之達人20週年紀念樂曲\n 《最喜歡的太鼓鼓聲/粗品 feat. 小咚》等8首新曲!",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 Pop Tap Beat를 플레이해주셔서 감사합니다!\n\n소프트웨어를 업데이트했습니다.(Ver.1.5.0)\n\n・그 외 오류를 수정하고 퍼포먼스를 조정했습니다.\n\n★신곡 추가★\n Shimofuri Myojo의 Soshina가 직접 제작한 태고의 달인 20주년 기념곡 '정말 좋아하는 태고 소리 / Soshina feat. 동이'를 비롯한 8개 곡을 추가!",
+ "koreanFontType":2,
+ "portugueseText":"Obrigado por jogar Taiko no Tatsujin Pop Tap Beat!\n\n O software foi atualizado (Ver.1.5.0). \n\n Outras pequenas melhorias e correções de erros\n\n★ Adicionamos novas músicas ★\n 8 novas canções foram adicionadas, começando com\n \"Favorite Sounds of Taiko\", de Soshina \n com DON-chan, produzida por \n Soshina da dupla de comediantes Shimofuri\n Myojo para celebrar o 20º Aniversário de\n Taiko no Tatsujin!",
+ "portugueseFontType":2,
+ "russianText":"Спасибо, что играете в Taiko no Tatsujin Pop Tap Beat!\n\nПрограммное обеспечение обновлено (версия 1.5.0).\n\nИсправлены некоторые ошибки, и улучшена производительность.\n\n★Добавлена новая песня★\nБыло добавлено 8 новых песен,\nв том числе песня к 20-летию Taiko no Tatsujin, спродюсированная артистом Soshina из комедийного дуэта Shimofuri Myojo:\nSoshina feat. DON-chan — Favorite Sounds of Taiko!",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat'i oynadığın\niçin teşekkürler!\n\nOyun güncellendi (Ver.1.5.0).\n\n・İyileştirmeler ve hata düzeltmeleri yapıldı\n\n★Yeni Şarkılar Eklendi★\n Soshina feat. DON-chan'dan \"Favorite Sounds of Taiko\"\n ile başlayan 8 yeni şarkı eklendi. Taiko no\n Tatsujin'in 20. yıl dönümü için düzenlenen\n Shimofuri Myojo komedi ikilisinden, yine \n Soshina'nın eseri olan bir şarkı!",
+ "turkishFontType":2,
+ "arabicText":"نشكرك على لعب Taiko no Tatsujin Pop Tap Beat!\n\nلقد تم تحديث اللعبة (الإصدار 1.5.0).\n\n・تم اعتماد تحسينات طفيفة وتصحيحات للأخطاء\n\n★تمت إضافة أغانٍ جديدة★\nبالإضافة إلى 8 أغانٍ جديدة، بداية من أغنية\n\"Favourite Sounds of Taiko\" لـ\"Soshina\"\nبالاشتراك مع \"DON-chan\"، والتي أنتجها \"Soshina\" \nعضو الثنائي الكوميدي \"Shimofuri Myojo\" \nللاحتفال بالذكرى السنوية العشرين لـ \nTaiko no Tatsujin!",
+ "arabicFontType":2,
+ "dutchText":"Bedankt dat je Taiko no Tatsujin Pop Tap Beat\nspeelt!\n\nDe game is geüpdatet (versie 1.5.0).\n\n・Kleine verbeteringen en bugs opgelost\n\n★Nieuwe liedjes★\n Er zijn 8 nieuwe liedjes toegevoegd,\n waaronder \"Favorite Sounds of\n Taiko\" van Soshina feat. Don-chan, geproduceerd door\n Soshina van het comedyduo Shimofuri Myojo, ter gelegenheid van het 20-jarige jubileum van Taiko no Tatsujin!",
+ "dutchFontType":2,
+ "chineseSText":"感谢您游玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本软件已更新(Ver.1.5.0)。\n\n‧已修正部分异常并调整游戏表现。\n\n★追加新曲★\n 已追加由粗品(霜降明星)创作的太鼓之达人20周年纪念乐曲\n 《最喜欢的太鼓鼓声/粗品 feat. 小咚》等8首新曲!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_ssnrns",
+ "japaneseText":"乱数調整のリバースシンデレラ",
+ "englishUsText":"RNG Cinderella",
+ "englishUsFontType":3,
+ "frenchText":"RNG Cinderella",
+ "frenchFontType":3,
+ "italianText":"RNG Cinderella",
+ "italianFontType":3,
+ "germanText":"RNG Cinderella",
+ "germanFontType":3,
+ "spanishText":"RNG Cinderella",
+ "spanishFontType":3,
+ "chineseTText":"亂數調整的反轉灰姑娘",
+ "chineseTFontType":1,
+ "koreanText":"RNG Cinderella",
+ "koreanFontType":2,
+ "portugueseText":"RNG Cinderella",
+ "portugueseFontType":3,
+ "russianText":"RNG Cinderella",
+ "russianFontType":3,
+ "turkishText":"RNG Cinderella",
+ "turkishFontType":3,
+ "arabicText":"RNG Cinderella",
+ "arabicFontType":3,
+ "dutchText":"RNG Cinderella",
+ "dutchFontType":3,
+ "chineseSText":"乱数调整的反转灰姑娘",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_ssnrns",
+ "japaneseText":"粗品 feat. 彩宮すう(CV:竹達彩奈)",
+ "englishUsText":"Soshina feat. Su Ayamiya (CV: Ayana Taketatsu)",
+ "englishUsFontType":3,
+ "frenchText":"Soshina feat. Su Ayamiya (CV: Ayana Taketatsu)",
+ "frenchFontType":3,
+ "italianText":"Soshina feat. Su Ayamiya (CV: Ayana Taketatsu)",
+ "italianFontType":3,
+ "germanText":"Soshina feat. Su Ayamiya (CV: Ayana Taketatsu)",
+ "germanFontType":3,
+ "spanishText":"Soshina feat. Su Ayamiya (CV: Ayana Taketatsu)",
+ "spanishFontType":3,
+ "chineseTText":"粗品 feat. Su Ayamiya(CV:竹達彩奈)",
+ "chineseTFontType":1,
+ "koreanText":"Soshina feat. Su Ayamiya (CV: Ayana Taketatsu)",
+ "koreanFontType":2,
+ "portugueseText":"Soshina feat. Su Ayamiya (CV: Ayana Taketatsu)",
+ "portugueseFontType":3,
+ "russianText":"Soshina feat. Su Ayamiya (CV: Ayana Taketatsu)",
+ "russianFontType":3,
+ "turkishText":"Soshina feat. Su Ayamiya (CV: Ayana Taketatsu)",
+ "turkishFontType":3,
+ "arabicText":"Soshina feat. Su Ayamiya (CV: Ayana Taketatsu)",
+ "arabicFontType":3,
+ "dutchText":"Soshina feat. Su Ayamiya (CV: Ayana Taketatsu)",
+ "dutchFontType":3,
+ "chineseSText":"粗品 feat. Su Ayamiya (CV: Ayana Taketatsu)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_ssnrns",
+ "japaneseText":"",
+ "englishUsText":"乱数調整のリバースシンデレラ",
+ "englishUsFontType":0,
+ "frenchText":"乱数調整のリバースシンデレラ",
+ "frenchFontType":0,
+ "italianText":"乱数調整のリバースシンデレラ",
+ "italianFontType":0,
+ "germanText":"乱数調整のリバースシンデレラ",
+ "germanFontType":0,
+ "spanishText":"乱数調整のリバースシンデレラ",
+ "spanishFontType":0,
+ "chineseTText":"乱数調整のリバースシンデレラ",
+ "chineseTFontType":0,
+ "koreanText":"乱数調整のリバースシンデレラ",
+ "koreanFontType":0,
+ "portugueseText":"乱数調整のリバースシンデレラ",
+ "portugueseFontType":0,
+ "russianText":"乱数調整のリバースシンデレラ",
+ "russianFontType":0,
+ "turkishText":"乱数調整のリバースシンデレラ",
+ "turkishFontType":0,
+ "arabicText":"乱数調整のリバースシンデレラ",
+ "arabicFontType":0,
+ "dutchText":"乱数調整のリバースシンデレラ",
+ "dutchFontType":0,
+ "chineseSText":"乱数調整のリバースシンデレラ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_lupin",
+ "japaneseText":"ルパン三世のテーマ'78",
+ "englishUsText":"THEME FROM LUPIN III '78",
+ "englishUsFontType":3,
+ "frenchText":"THEME FROM LUPIN III '78",
+ "frenchFontType":3,
+ "italianText":"THEME FROM LUPIN III '78",
+ "italianFontType":3,
+ "germanText":"THEME FROM LUPIN III '78",
+ "germanFontType":3,
+ "spanishText":"THEME FROM LUPIN III '78",
+ "spanishFontType":3,
+ "chineseTText":"THEME FROM LUPIN III '78",
+ "chineseTFontType":1,
+ "koreanText":"THEME FROM LUPIN III '78",
+ "koreanFontType":2,
+ "portugueseText":"THEME FROM LUPIN III '78",
+ "portugueseFontType":3,
+ "russianText":"THEME FROM LUPIN III '78",
+ "russianFontType":3,
+ "turkishText":"THEME FROM LUPIN III '78",
+ "turkishFontType":3,
+ "arabicText":"THEME FROM LUPIN III '78",
+ "arabicFontType":3,
+ "dutchText":"THEME FROM LUPIN III '78",
+ "dutchFontType":3,
+ "chineseSText":"THEME FROM LUPIN III '78",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_lupin",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_lupin",
+ "japaneseText":"",
+ "englishUsText":"ルパン三世のテーマ'78",
+ "englishUsFontType":0,
+ "frenchText":"ルパン三世のテーマ'78",
+ "frenchFontType":0,
+ "italianText":"ルパン三世のテーマ'78",
+ "italianFontType":0,
+ "germanText":"ルパン三世のテーマ'78",
+ "germanFontType":0,
+ "spanishText":"ルパン三世のテーマ'78",
+ "spanishFontType":0,
+ "chineseTText":"ルパン三世のテーマ'78",
+ "chineseTFontType":0,
+ "koreanText":"ルパン三世のテーマ'78",
+ "koreanFontType":0,
+ "portugueseText":"ルパン三世のテーマ'78",
+ "portugueseFontType":0,
+ "russianText":"ルパン三世のテーマ'78",
+ "russianFontType":0,
+ "turkishText":"ルパン三世のテーマ'78",
+ "turkishFontType":0,
+ "arabicText":"ルパン三世のテーマ'78",
+ "arabicFontType":0,
+ "dutchText":"ルパン三世のテーマ'78",
+ "dutchFontType":0,
+ "chineseSText":"ルパン三世のテーマ'78",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_anp",
+ "japaneseText":"アンパンマンのマーチ",
+ "englishUsText":"ANPANMAN'S MARCH",
+ "englishUsFontType":3,
+ "frenchText":"ANPANMAN'S MARCH",
+ "frenchFontType":3,
+ "italianText":"ANPANMAN’S MARCH",
+ "italianFontType":3,
+ "germanText":"ANPANMAN’S MARCH",
+ "germanFontType":3,
+ "spanishText":"ANPANMAN’S MARCH",
+ "spanishFontType":3,
+ "chineseTText":"麵包超人進行曲",
+ "chineseTFontType":1,
+ "koreanText":"ANPANMAN'S MARCH",
+ "koreanFontType":2,
+ "portugueseText":"ANPANMAN'S MARCH",
+ "portugueseFontType":3,
+ "russianText":"ANPANMAN'S MARCH",
+ "russianFontType":3,
+ "turkishText":"ANPANMAN'S MARCH",
+ "turkishFontType":3,
+ "arabicText":"ANPANMAN'S MARCH",
+ "arabicFontType":3,
+ "dutchText":"ANPANMAN'S MARCH",
+ "dutchFontType":3,
+ "chineseSText":"面包超人进行曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_anp",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_anp",
+ "japaneseText":"",
+ "englishUsText":"アンパンマンのマーチ",
+ "englishUsFontType":0,
+ "frenchText":"アンパンマンのマーチ",
+ "frenchFontType":0,
+ "italianText":"アンパンマンのマーチ",
+ "italianFontType":0,
+ "germanText":"アンパンマンのマーチ",
+ "germanFontType":0,
+ "spanishText":"アンパンマンのマーチ",
+ "spanishFontType":0,
+ "chineseTText":"アンパンマンのマーチ",
+ "chineseTFontType":0,
+ "koreanText":"アンパンマンのマーチ",
+ "koreanFontType":0,
+ "portugueseText":"アンパンマンのマーチ",
+ "portugueseFontType":0,
+ "russianText":"アンパンマンのマーチ",
+ "russianFontType":0,
+ "turkishText":"アンパンマンのマーチ",
+ "turkishFontType":0,
+ "arabicText":"アンパンマンのマーチ",
+ "arabicFontType":0,
+ "dutchText":"アンパンマンのマーチ",
+ "dutchFontType":0,
+ "chineseSText":"アンパンマンのマーチ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_clscds",
+ "japaneseText":"チャーリー ダッシュ!",
+ "englishUsText":"Csardas!",
+ "englishUsFontType":3,
+ "frenchText":"Csardas!",
+ "frenchFontType":3,
+ "italianText":"Csardas!",
+ "italianFontType":3,
+ "germanText":"Csardas!",
+ "germanFontType":3,
+ "spanishText":"Csardas!",
+ "spanishFontType":3,
+ "chineseTText":"奔馳的查理!",
+ "chineseTFontType":1,
+ "koreanText":"찰리 대시!",
+ "koreanFontType":2,
+ "portugueseText":"Csardas!",
+ "portugueseFontType":3,
+ "russianText":"Csardas!",
+ "russianFontType":3,
+ "turkishText":"Csardas!",
+ "turkishFontType":3,
+ "arabicText":"Csardas!",
+ "arabicFontType":3,
+ "dutchText":"Csardas!",
+ "dutchFontType":3,
+ "chineseSText":"奔驰的查理!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_clscds",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_clscds",
+ "japaneseText":"",
+ "englishUsText":"チャーリー ダッシュ!",
+ "englishUsFontType":0,
+ "frenchText":"チャーリー ダッシュ!",
+ "frenchFontType":0,
+ "italianText":"チャーリー ダッシュ!",
+ "italianFontType":0,
+ "germanText":"チャーリー ダッシュ!",
+ "germanFontType":0,
+ "spanishText":"チャーリー ダッシュ!",
+ "spanishFontType":0,
+ "chineseTText":"チャーリー ダッシュ!",
+ "chineseTFontType":0,
+ "koreanText":"チャーリー ダッシュ!",
+ "koreanFontType":0,
+ "portugueseText":"チャーリー ダッシュ!",
+ "portugueseFontType":0,
+ "russianText":"チャーリー ダッシュ!",
+ "russianFontType":0,
+ "turkishText":"チャーリー ダッシュ!",
+ "turkishFontType":0,
+ "arabicText":"チャーリー ダッシュ!",
+ "arabicFontType":0,
+ "dutchText":"チャーリー ダッシュ!",
+ "dutchFontType":0,
+ "chineseSText":"チャーリー ダッシュ!",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_ssn3rd",
+ "japaneseText":"大好きな太鼓の音",
+ "englishUsText":"Favorite Sounds of Taiko",
+ "englishUsFontType":3,
+ "frenchText":"Les sons favoris de Taiko",
+ "frenchFontType":3,
+ "italianText":"Favorite Sounds of Taiko",
+ "italianFontType":3,
+ "germanText":"Favorite Sounds of Taiko",
+ "germanFontType":3,
+ "spanishText":"Favorite Sounds of Taiko",
+ "spanishFontType":3,
+ "chineseTText":"最喜歡的太鼓鼓聲",
+ "chineseTFontType":1,
+ "koreanText":"정말 좋아하는 태고 소리",
+ "koreanFontType":2,
+ "portugueseText":"Favorite Sounds of Taiko",
+ "portugueseFontType":3,
+ "russianText":"Favorite Sounds of Taiko",
+ "russianFontType":3,
+ "turkishText":"Favorite Sounds of Taiko",
+ "turkishFontType":3,
+ "arabicText":"Favorite Sounds of Taiko",
+ "arabicFontType":3,
+ "dutchText":"Favorite Sounds of Taiko",
+ "dutchFontType":3,
+ "chineseSText":"最喜欢的太鼓鼓声",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_ssn3rd",
+ "japaneseText":"太鼓の達人20周年記念ソング / 粗品 feat. どんちゃん",
+ "englishUsText":"Taiko No Tatsujin 20th Anniversary Song / Soshina feat. DON-chan",
+ "englishUsFontType":3,
+ "frenchText":"Taiko No Tatsujin 20th Anniversary Song / Soshina feat. DON-chan",
+ "frenchFontType":3,
+ "italianText":"Taiko No Tatsujin 20th Anniversary Song / Soshina feat. DON-chan",
+ "italianFontType":3,
+ "germanText":"Taiko No Tatsujin 20th Anniversary Song / Soshina feat. DON-chan",
+ "germanFontType":3,
+ "spanishText":"Taiko No Tatsujin 20th Anniversary Song / Soshina feat. DON-chan",
+ "spanishFontType":3,
+ "chineseTText":"太鼓之達人20周年曲 / 粗品 feat. 小咚",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 20주년 곡 / Soshina feat. 동이",
+ "koreanFontType":2,
+ "portugueseText":"Taiko No Tatsujin 20th Anniversary Song / Soshina feat. DON-chan",
+ "portugueseFontType":3,
+ "russianText":"Taiko No Tatsujin 20th Anniversary Song / Soshina feat. DON-chan",
+ "russianFontType":3,
+ "turkishText":"Taiko No Tatsujin 20th Anniversary Song / Soshina feat. DON-chan",
+ "turkishFontType":3,
+ "arabicText":"Taiko No Tatsujin 20th Anniversary Song / Soshina feat. DON-chan",
+ "arabicFontType":3,
+ "dutchText":"Taiko No Tatsujin 20th Anniversary Song / Soshina feat. DON-chan",
+ "dutchFontType":3,
+ "chineseSText":"太鼓之達人20周年曲 / 粗品 feat. 小咚",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_ssn3rd",
+ "japaneseText":"",
+ "englishUsText":"大好きな太鼓の音",
+ "englishUsFontType":0,
+ "frenchText":"大好きな太鼓の音",
+ "frenchFontType":0,
+ "italianText":"大好きな太鼓の音",
+ "italianFontType":0,
+ "germanText":"大好きな太鼓の音",
+ "germanFontType":0,
+ "spanishText":"大好きな太鼓の音",
+ "spanishFontType":0,
+ "chineseTText":"大好きな太鼓の音",
+ "chineseTFontType":0,
+ "koreanText":"大好きな太鼓の音",
+ "koreanFontType":0,
+ "portugueseText":"大好きな太鼓の音",
+ "portugueseFontType":0,
+ "russianText":"大好きな太鼓の音",
+ "russianFontType":0,
+ "turkishText":"大好きな太鼓の音",
+ "turkishFontType":0,
+ "arabicText":"大好きな太鼓の音",
+ "arabicFontType":0,
+ "dutchText":"大好きな太鼓の音",
+ "dutchFontType":0,
+ "chineseSText":"大好きな太鼓の音",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_20thei",
+ "japaneseText":"平等院鳳凰ドン vs 鳥獣戯カッ",
+ "englishUsText":"Byoudouin Hou-ou-DON vs Choju-gi-KATSU",
+ "englishUsFontType":3,
+ "frenchText":"Byoudouin Hou-ou-DON vs Choju-gi-KATSU",
+ "frenchFontType":3,
+ "italianText":"Byoudouin Hou-ou-DON vs Choju-gi-KATSU",
+ "italianFontType":3,
+ "germanText":"Byoudouin Hou-ou-DON vs Choju-gi-KATSU",
+ "germanFontType":3,
+ "spanishText":"Byoudouin Hou-ou-DON vs Choju-gi-KATSU",
+ "spanishFontType":3,
+ "chineseTText":"平等院鳳凰咚 vs 鳥獸戲咔",
+ "chineseTFontType":1,
+ "koreanText":"뵤도인호오 동 vs 쵸쥬기 딱",
+ "koreanFontType":2,
+ "portugueseText":"Byoudouin Hou-ou-DON vs Choju-gi-KATSU",
+ "portugueseFontType":3,
+ "russianText":"Byoudouin Hou-ou-DON vs Choju-gi-KATSU",
+ "russianFontType":3,
+ "turkishText":"Byoudouin Hou-ou-DON vs Choju-gi-KATSU",
+ "turkishFontType":3,
+ "arabicText":"Byoudouin Hou-ou-DON vs Choju-gi-KATSU",
+ "arabicFontType":3,
+ "dutchText":"Byoudouin Hou-ou-DON vs Choju-gi-KATSU",
+ "dutchFontType":3,
+ "chineseSText":"平等院凤凰咚 vs 鸟兽戏咔",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_20thei",
+ "japaneseText":"太鼓 de タイムトラベル平安 / コバヤシユウヤ(IOSYS) feat. miko",
+ "englishUsText":"Taiko de Time Travel Heian / Yuya Kobayashi(IOSYS) feat. miko",
+ "englishUsFontType":3,
+ "frenchText":"Taiko de Time Travel Heian / Yuya Kobayashi(IOSYS) feat. miko",
+ "frenchFontType":3,
+ "italianText":"Taiko de Time Travel Heian / Yuya Kobayashi(IOSYS) feat. miko",
+ "italianFontType":3,
+ "germanText":"Taiko de Time Travel Heian / Yuya Kobayashi(IOSYS) feat. miko",
+ "germanFontType":3,
+ "spanishText":"Taiko de Time Travel Heian / Yuya Kobayashi(IOSYS) feat. miko",
+ "spanishFontType":3,
+ "chineseTText":"Taiko de Time Travel Heian / Yuya Kobayashi(IOSYS) feat. miko",
+ "chineseTFontType":1,
+ "koreanText":"Taiko de Time Travel Heian / Yuya Kobayashi(IOSYS) feat. miko",
+ "koreanFontType":2,
+ "portugueseText":"Taiko de Time Travel Heian / Yuya Kobayashi(IOSYS) feat. miko",
+ "portugueseFontType":3,
+ "russianText":"Taiko de Time Travel Heian / Yuya Kobayashi(IOSYS) feat. miko",
+ "russianFontType":3,
+ "turkishText":"Taiko de Time Travel Heian / Yuya Kobayashi(IOSYS) feat. miko",
+ "turkishFontType":3,
+ "arabicText":"Taiko de Time Travel Heian / Yuya Kobayashi(IOSYS) feat. miko",
+ "arabicFontType":3,
+ "dutchText":"Taiko de Time Travel Heian / Yuya Kobayashi(IOSYS) feat. miko",
+ "dutchFontType":3,
+ "chineseSText":"Taiko de Time Travel Heian / Yuya Kobayashi(IOSYS) feat. miko",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_20thei",
+ "japaneseText":"",
+ "englishUsText":"平等院鳳凰ドン vs 鳥獣戯カッ",
+ "englishUsFontType":0,
+ "frenchText":"平等院鳳凰ドン vs 鳥獣戯カッ",
+ "frenchFontType":0,
+ "italianText":"平等院鳳凰ドン vs 鳥獣戯カッ",
+ "italianFontType":0,
+ "germanText":"平等院鳳凰ドン vs 鳥獣戯カッ",
+ "germanFontType":0,
+ "spanishText":"平等院鳳凰ドン vs 鳥獣戯カッ",
+ "spanishFontType":0,
+ "chineseTText":"平等院鳳凰ドン vs 鳥獣戯カッ",
+ "chineseTFontType":0,
+ "koreanText":"平等院鳳凰ドン vs 鳥獣戯カッ",
+ "koreanFontType":0,
+ "portugueseText":"平等院鳳凰ドン vs 鳥獣戯カッ",
+ "portugueseFontType":0,
+ "russianText":"平等院鳳凰ドン vs 鳥獣戯カッ",
+ "russianFontType":0,
+ "turkishText":"平等院鳳凰ドン vs 鳥獣戯カッ",
+ "turkishFontType":0,
+ "arabicText":"平等院鳳凰ドン vs 鳥獣戯カッ",
+ "arabicFontType":0,
+ "dutchText":"平等院鳳凰ドン vs 鳥獣戯カッ",
+ "dutchFontType":0,
+ "chineseSText":"平等院鳳凰ドン vs 鳥獣戯カッ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_20tbtu",
+ "japaneseText":"一世風靡",
+ "englishUsText":"ISSEIFUBI",
+ "englishUsFontType":3,
+ "frenchText":"ISSEIFUBI",
+ "frenchFontType":3,
+ "italianText":"ISSEIFUBI",
+ "italianFontType":3,
+ "germanText":"ISSEIFUBI",
+ "germanFontType":3,
+ "spanishText":"ISSEIFUBI",
+ "spanishFontType":3,
+ "chineseTText":"一世風靡",
+ "chineseTFontType":1,
+ "koreanText":"잇세이후비",
+ "koreanFontType":2,
+ "portugueseText":"ISSEIFUBI",
+ "portugueseFontType":3,
+ "russianText":"ISSEIFUBI",
+ "russianFontType":3,
+ "turkishText":"ISSEIFUBI",
+ "turkishFontType":3,
+ "arabicText":"ISSEIFUBI",
+ "arabicFontType":3,
+ "dutchText":"ISSEIFUBI",
+ "dutchFontType":3,
+ "chineseSText":"一世风靡",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_20tbtu",
+ "japaneseText":"太鼓 de タイムトラベル江戸 / 西込加久見",
+ "englishUsText":"Taiko de Time Travel Edo / Kakumi Nishigomi",
+ "englishUsFontType":3,
+ "frenchText":"Taiko de Time Travel Edo / Kakumi Nishigomi",
+ "frenchFontType":3,
+ "italianText":"Taiko de Time Travel Edo / Kakumi Nishigomi",
+ "italianFontType":3,
+ "germanText":"Taiko de Time Travel Edo / Kakumi Nishigomi",
+ "germanFontType":3,
+ "spanishText":"Taiko de Time Travel Edo / Kakumi Nishigomi",
+ "spanishFontType":3,
+ "chineseTText":"Taiko de Time Travel Edo / 西込加久見",
+ "chineseTFontType":1,
+ "koreanText":"Taiko de Time Travel Edo / Kakumi Nishigomi",
+ "koreanFontType":2,
+ "portugueseText":"Taiko de Time Travel Edo / Kakumi Nishigomi",
+ "portugueseFontType":3,
+ "russianText":"Taiko de Time Travel Edo / Kakumi Nishigomi",
+ "russianFontType":3,
+ "turkishText":"Taiko de Time Travel Edo / Kakumi Nishigomi",
+ "turkishFontType":3,
+ "arabicText":"Taiko de Time Travel Edo / Kakumi Nishigomi",
+ "arabicFontType":3,
+ "dutchText":"Taiko de Time Travel Edo / Kakumi Nishigomi",
+ "dutchFontType":3,
+ "chineseSText":"Taiko de Time Travel Edo / 西込加久見",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_20tbtu",
+ "japaneseText":"",
+ "englishUsText":"一世風靡",
+ "englishUsFontType":0,
+ "frenchText":"一世風靡",
+ "frenchFontType":0,
+ "italianText":"一世風靡",
+ "italianFontType":0,
+ "germanText":"一世風靡",
+ "germanFontType":0,
+ "spanishText":"一世風靡",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"一世風靡",
+ "koreanFontType":0,
+ "portugueseText":"一世風靡",
+ "portugueseFontType":0,
+ "russianText":"一世風靡",
+ "russianFontType":0,
+ "turkishText":"一世風靡",
+ "turkishFontType":0,
+ "arabicText":"一世風靡",
+ "arabicFontType":0,
+ "dutchText":"一世風靡",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_butou4",
+ "japaneseText":"黒船来航",
+ "englishUsText":"KUROFUNE RAIKOU",
+ "englishUsFontType":3,
+ "frenchText":"KUROFUNE RAIKOU",
+ "frenchFontType":3,
+ "italianText":"KUROFUNE RAIKOU",
+ "italianFontType":3,
+ "germanText":"KUROFUNE RAIKOU",
+ "germanFontType":3,
+ "spanishText":"KUROFUNE RAIKOU",
+ "spanishFontType":3,
+ "chineseTText":"黑船來航",
+ "chineseTFontType":1,
+ "koreanText":"KUROFUNE RAIKOU",
+ "koreanFontType":2,
+ "portugueseText":"KUROFUNE RAIKOU",
+ "portugueseFontType":3,
+ "russianText":"KUROFUNE RAIKOU",
+ "russianFontType":3,
+ "turkishText":"KUROFUNE RAIKOU",
+ "turkishFontType":3,
+ "arabicText":"KUROFUNE RAIKOU",
+ "arabicFontType":3,
+ "dutchText":"KUROFUNE RAIKOU",
+ "dutchFontType":3,
+ "chineseSText":"黑船来航",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_butou4",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_butou4",
+ "japaneseText":"",
+ "englishUsText":"黒船来航",
+ "englishUsFontType":0,
+ "frenchText":"黒船来航",
+ "frenchFontType":0,
+ "italianText":"黒船来航",
+ "italianFontType":0,
+ "germanText":"黒船来航",
+ "germanFontType":0,
+ "spanishText":"黒船来航",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"黒船来航",
+ "koreanFontType":0,
+ "portugueseText":"黒船来航",
+ "portugueseFontType":0,
+ "russianText":"黒船来航",
+ "russianFontType":0,
+ "turkishText":"黒船来航",
+ "turkishFontType":0,
+ "arabicText":"黒船来航",
+ "arabicFontType":0,
+ "dutchText":"黒船来航",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"osirase_v1_5_0_title",
+ "japaneseText":"ソフトウェアのアップデートを行いました(Ver.1.5.0)",
+ "englishUsText":"The game has been updated (Ver.1.5.0)",
+ "englishUsFontType":3,
+ "frenchText":"Mise à jour du logiciel (Ver.1.5.0)",
+ "frenchFontType":3,
+ "italianText":"Abbiamo aggiornato il gioco. (Ver.1.5.0)",
+ "italianFontType":3,
+ "germanText":"Die Software wurde aktualisiert (Ver.1.5.0)",
+ "germanFontType":3,
+ "spanishText":"Novedades de la última actualización (Ver.1.5.0)",
+ "spanishFontType":3,
+ "chineseTText":"本軟體已更新(Ver.1.5.0)",
+ "chineseTFontType":1,
+ "koreanText":"소프트웨어를 업데이트했습니다.(Ver.1.5.0)",
+ "koreanFontType":2,
+ "portugueseText":"O software foi atualizado (Ver.1.5.0)",
+ "portugueseFontType":2,
+ "russianText":"Программное обеспечение обновлено (версия 1.5.0)",
+ "russianFontType":2,
+ "turkishText":"Oyun güncellendi (Ver.1.5.0)",
+ "turkishFontType":2,
+ "arabicText":"لقد تم تحديث اللعبة (نسخة 1.5.0)",
+ "arabicFontType":2,
+ "dutchText":"De software is geüpdatet. (Ver.1.5.0)",
+ "dutchFontType":2,
+ "chineseSText":"本软件已更新(Ver.1.5.0)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"notification_setting_button",
+ "japaneseText":"通知の設定",
+ "englishUsText":"Notifications",
+ "englishUsFontType":3,
+ "frenchText":"Notifications",
+ "frenchFontType":3,
+ "italianText":"Notifiche",
+ "italianFontType":3,
+ "germanText":"Nachrichteneinst.",
+ "germanFontType":3,
+ "spanishText":"Notificaciones",
+ "spanishFontType":3,
+ "chineseTText":"推播設定",
+ "chineseTFontType":1,
+ "koreanText":"알림 설정",
+ "koreanFontType":2,
+ "portugueseText":"Notificações",
+ "portugueseFontType":2,
+ "russianText":"Уведомления",
+ "russianFontType":2,
+ "turkishText":"Bildirimler",
+ "turkishFontType":2,
+ "arabicText":"الإشعارات",
+ "arabicFontType":2,
+ "dutchText":"Meldingenfunctie",
+ "dutchFontType":2,
+ "chineseSText":"推播设定",
+ "chineseSFontType":4
+ },
+ {
+ "key":"dialog_notification",
+ "japaneseText":"太鼓の達人 Pop Tap Beat をプレイいただき、ありがとうございます!\n新曲の追加やアップデートの際、こちらの端末に通知をお送りしてもよろしいですか?\n※お使いの端末に直接通知をお送りしますが、個人情報の収集・利用は行いません\n※通知の設定は、ゲームの設定、または端末の設定画面でいつでも変更できます",
+ "englishUsText":"Thank you for playing Taiko no Tatsujin Pop Tap Beat!\nWould you like to receive notifications about new song\nreleases and updates?\n*Although you will receive notifications, your user data\nwill not be collected or used.\n*You can change these settings at any time from Game\nSettings or your device's settings.",
+ "englishUsFontType":3,
+ "frenchText":"Merci de jouer à Taiko no Tatsujin Pop Tap Beat !\n\nVoulez-vous recevoir une notification sur cet appareil lors\nde l'ajout de nouvelles chansons ou lors d'une nouvelle\nmise à jour ?\n* Vous recevrez une notification directement sur votre\nappareil, mais vos données personnelles ne seront ni\nrecueillies ni utilisées.\n* Vous pouvez activer et désactiver les notifications\nn'importe quand depuis les réglages du jeu ou de votre\nappareil.",
+ "frenchFontType":3,
+ "italianText":"Grazie per aver giocato a Taiko no Tatsujin Pop Tap Beat!\nConsenti al gioco di inviare notifiche per l'aggiunta\ndi brani e aggiornamenti su questo dispositivo?\n* Non raccoglieremo informazioni personali\nattraverso l'invio diretto delle notifiche.\n* Potrai modificare la configurazione delle\nnotifiche in qualsiasi momento dalle\nimpostazioni del gioco o del dispositivo.",
+ "italianFontType":3,
+ "germanText":"Vielen Dank fürs Spielen von Taiko no Tatsujin Pop Tap Beat!\nSollen wir dir Nachrichten zusenden, sobald neue Funktionen \noder Songs verfügbar sind?\n* Für das Zusenden von Nachrichten werden keine \npersönlichen Informationen gesammelt oder verarbeitet.\n* Du kannst die betreffenden Einstellungen jederzeit über \ndie Spieleinstellungen oder die Benachrichtigungsfenster \nändern.",
+ "germanFontType":3,
+ "spanishText":"¡Gracias por jugar a Taiko no Tatsujin Pop Tap Beat!\n¿Quieres recibir notificaciones en este dispositivo cuando\nse añadan canciones nuevas o haya una actualización?\n* Aunque enviamos notificaciones directamente a tu\ndispositivo, no recopilamos o usamos información personal.\n* Puedes controlar las notificaciones en cualquier momento\ndesde las opciones del juego o desde la configuración de\ntu dispositivo.",
+ "spanishFontType":3,
+ "chineseTText":"感謝您遊玩《Taiko no Tatsujin POP TAP BEAT》!\n是否允許系統於追加新曲或更新時,發送推播到本裝置?\n※系統將直接發送推播到您使用的裝置,但不會收集與利用您的個人資料。\n※可隨時在遊戲設定或裝置的設定畫面變更推播設定。",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 Pop Tap Beat를 플레이해주셔서 감사합니다!\n신곡 추가 또는 업데이트 시 \n이 단말기로 알림을 받으시겠습니까?\n※사용 중인 단말기로 직접 알림이 보내지며, \n개인 정보 수집 및 이용은 발생하지 않습니다.\n※알림 설정은 게임 설정 또는 단말기 설정 화면에서 \n언제든지 변경할 수 있습니다.",
+ "koreanFontType":2,
+ "portugueseText":"Obrigado por jogar Taiko no Tatsujin Pop Tap Beat!\nQuer receber notificações sobre\nnovas músicas e atualizações?\n*Enviaremos notificações diretamente para seu dispositivo,\nmas não recolhemos nem utilizamos seus dados pessoais.\n*Você pode alterar a configuração de notificações quando\ndesejar através do menu do jogo ou do seu aparelho.",
+ "portugueseFontType":2,
+ "russianText":"Спасибо, что играете в Taiko no Tatsujin Pop Tap Beat!\nВключить уведомления о новых\nпеснях и обновлениях на этом устройстве?\n*Мы не собираем и не используем вашу личную информацию.\n*Вы всегда можете отключить их\nв настройках игры или устройства.",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat'i oynadığınız için teşekkürler!\nYeni şarkı eklemeleri ve güncellemelere dair bildirim \nalmak ister misiniz?\n*Bildirim alacak olmanıza rağmen, verileriniz toplanmayacak\nya da kullanılmayacaktır.\n*Oyun ayarlarından ya da cihaz ayarlarından bu ayarı\ndilediğiniz zaman değiştirebilirsiniz.",
+ "turkishFontType":2,
+ "arabicText":"نشكرك على لعب Taiko no Tatsujin Pop Tap Beat!\nهل ترغب في تلقي إشعارات حول تحديثات وإضافات الأغاني الجديدة؟\n*لن يتم جمع أو استخدام بيانات المستخدم الخاصة بك عند تلقيك للإشعارات.\n*يمكنك تغيير هذه الإعدادات في أي وقت من خلال إعدادات اللعبة أو إعدادات جهازك.",
+ "arabicFontType":2,
+ "dutchText":"Bedankt dat je Taiko no Tatsujin Pop Tap Beat speelt!\nMogen we je op dit apparaat een melding sturen\nals er een nieuw liedje of een update is toegevoegd?\n*Er wordt naar dit apparaat een bericht gestuurd,\nmaar er wordt geen persoonlijke informatie verzameld\nof ingezet.\n*Je kunt de meldingsinstellingen op ieder moment\nveranderen in de instellingen van het spel of het apparaat.",
+ "dutchFontType":2,
+ "chineseSText":"感谢您游玩《Taiko no Tatsujin POP TAP BEAT》!\n追加新曲或更新时,是否允许系统发送推播到本装置?\n※系统将直接发送推播到您使用的装置,但不会收集与利用您的个人资料。\n※可随时在游戏设定或装置的设定画面变更推播设定。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"dialog_notification_agree",
+ "japaneseText":"太鼓の達人 Pop Tap Beat からの通知が 許可 に設定されました。\n※通知の設定は、ゲームの設定、または端末の設定画面でいつでも変更できます",
+ "englishUsText":"You have turned on notifications from Taiko no Tatsujin\nPop Tap Beat.\n*You can change these settings at any time from Game\nSettings or your device's settings.",
+ "englishUsFontType":3,
+ "frenchText":"Vous avez autorisé les notifications de Taiko no Tatsujin\nPop Tap Beat.\n* Vous pouvez activer et désactiver les notifications\nn'importe quand depuis les réglages du jeu ou de votre\nappareil.",
+ "frenchFontType":3,
+ "italianText":"Hai autorizzato l'invio delle notifiche\nda parte di Taiko no Tatsujin Pop Tap Beat.\n* Potrai modificare la configurazione delle\nnotifiche in qualsiasi momento dalle\nimpostazioni del gioco o del dispositivo.",
+ "italianFontType":3,
+ "germanText":"Nachrichten von Taiko no Tatsujin Pop Tap Beat \nwurden erlaubt. \n* Du kannst dies jederzeit in den Spieleinstellungen oder \nden Einstellungen deines Endgeräts ändern. ",
+ "germanFontType":3,
+ "spanishText":"Te llegarán notificaciones de Taiko no Tatsujin Pop Tap\nBeat.\n* Puedes controlar las notificaciones en cualquier momento\ndesde las opciones del juego o desde la configuración de\ntu dispositivo.",
+ "spanishFontType":3,
+ "chineseTText":"已將設定變更為「允許」《Taiko no Tatsujin POP TAP BEAT》發送推播。\n※可隨時在遊戲設定或裝置的設定畫面變更推播設定。",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 Pop Tap Beat의 알림이 \n'허용'으로 설정되었습니다.\n※알림 설정은 게임 설정 또는 단말기 설정 화면에서 \n언제든지 변경할 수 있습니다.",
+ "koreanFontType":2,
+ "portugueseText":"As notificações de Taiko no Tatsujin Pop Tap Beat\nforam permitidas.\n*Você pode alterar a configuração de notificações quando\ndesejar através do menu do jogo ou do seu aparelho.",
+ "portugueseFontType":2,
+ "russianText":"Вы согласились получать\nуведомления от Taiko no Tatsujin Pop Tap Beat.\n*Вы всегда можете отключить их\nв настройках игры или устройства.",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat'in bildirimlerini\naktifleştirdiniz.\n*Oyun ayarlarından ya da cihaz ayarlarından bu ayarı\ndilediğiniz zaman değiştirebilirsiniz.",
+ "turkishFontType":2,
+ "arabicText":"لقد قمت بتشغيل الإشعارات من Taiko no Tatsujin\nPop Tap Beat.\n*يمكنك تغيير هذه الإعدادات في أي وقت من خلال إعدادات اللعبة أو إعدادات جهازك.",
+ "arabicFontType":2,
+ "dutchText":"Je hebt gekozen om meldingen te ontvangen\nvan Taiko no Tatsujin Pop Tap Beat.\n*Je kunt de meldingsinstellingen op ieder moment\nveranderen in de instellingen van het spel of het apparaat.",
+ "dutchFontType":2,
+ "chineseSText":"已将设定变更为“允许”《Taiko no Tatsujin POP TAP BEAT》发送推播。\n※可随时在游戏设定或装置的设定画面变更推播设定。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"dialog_notification_disagree",
+ "japaneseText":"太鼓の達人 Pop Tap Beat からの通知が 不許可 に設定されました。\n※通知の設定は、ゲームの設定、または端末の設定画面でいつでも変更できます",
+ "englishUsText":"You have turned off notifications from Taiko no Tatsujin\nPop Tap Beat.\n*You can change these settings at any time from Game\nSettings or your device's settings.",
+ "englishUsFontType":3,
+ "frenchText":"Vous n'avez pas autorisé les notifications de Taiko\nno Tatsujin Pop Tap Beat.\n* Vous pouvez activer et désactiver les notifications\nn'importe quand depuis les réglages du jeu ou de votre\nappareil.",
+ "frenchFontType":3,
+ "italianText":"Hai bloccato l'invio delle notifiche\nda parte di Taiko no Tatsujin Pop Tap Beat.\n* Potrai modificare la configurazione delle\nnotifiche in qualsiasi momento dalle\nimpostazioni del gioco o del dispositivo.",
+ "italianFontType":3,
+ "germanText":"Nachrichten von Taiko no Tatsujin Pop Tap Beat \nwurden deaktiviert.\n* Du kannst dies jederzeit in den Spieleinstellungen oder \nden Einstellungen deines Endgeräts ändern. ",
+ "germanFontType":3,
+ "spanishText":"Las notificaciones de Taiko no Tatsujin Pop Tap Beat\nfueron bloqueadas.\n* Puedes controlar las notificaciones en cualquier momento\ndesde las opciones del juego o desde la configuración de\ntu dispositivo.",
+ "spanishFontType":3,
+ "chineseTText":"已將設定變更為「不允許」《Taiko no Tatsujin POP TAP BEAT》發送推播。\n※可隨時在遊戲設定或裝置的設定畫面變更推播設定。",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 Pop Tap Beat의 알림이 \n'허용 안 함'으로 설정되었습니다.\n※알림 설정은 게임 설정 또는 단말기 설정 화면에서 \n언제든지 변경할 수 있습니다.",
+ "koreanFontType":2,
+ "portugueseText":"As notificações de Taiko no Tatsujin Pop Tap Beat\nforam recusadas.\n*Você pode alterar a configuração de notificações quando\ndesejar através do menu do jogo ou do seu aparelho.",
+ "portugueseFontType":2,
+ "russianText":"Вы отключили уведомления от Taiko no Tatsujin Pop Tap Beat.\n*Вы всегда можете включить их\nв настройках игры или устройства.",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat'in bildirimlerini\nkapattınız.\n*Oyun ayarlarından ya da cihaz ayarlarından bu\nayarı dilediğiniz zaman değiştirebilirsiniz.",
+ "turkishFontType":2,
+ "arabicText":"لقد قمت بتعطيل الإشعارات من Taiko no Tatsujin\nPop Tap Beat.\n*يمكنك تغيير هذه الإعدادات في أي وقت من خلال إعدادات اللعبة أو إعدادات جهازك.",
+ "arabicFontType":2,
+ "dutchText":"Je hebt gekozen om geen meldingen te ontvangen\nvan Taiko no Tatsujin Pop Tap Beat.\n*Je kunt de meldingsinstellingen op ieder moment\nveranderen in de instellingen van het spel of het apparaat.",
+ "dutchFontType":2,
+ "chineseSText":"已将设定变更为“不允许”《Taiko no Tatsujin POP TAP BEAT》发送推播。\n※可随时在游戏设定或装置的设定画面变更推播设定。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"dialog_notification_transition",
+ "japaneseText":"通知の設定を変更します。\n本体の設定画面に移動しますか?",
+ "englishUsText":"Change notification settings.\nMove to your device's settings menu?",
+ "englishUsFontType":3,
+ "frenchText":"Vous allez modifier les paramètres des notifications.\nSouhaitez-vous aller à l'écran des réglages de cet\nappareil ?",
+ "frenchFontType":3,
+ "italianText":"Vai alla schermata delle impostazioni del dispositivo\nper modificare la configurazione delle notifiche?",
+ "italianFontType":3,
+ "germanText":"Nachrichteneinstellungen werden geändert.\nZu den Einstellungen wechseln?",
+ "germanFontType":3,
+ "spanishText":"Cambio de la configuración de notificaciones.\n¿Quieres ver la pantalla de configuración de tu dispositivo?",
+ "spanishFontType":3,
+ "chineseTText":"變更推播設定。\n是否移動至裝置的設定畫面?",
+ "chineseTFontType":1,
+ "koreanText":"알림 설정을 변경합니다.\n본체 설정 화면으로 이동하시겠습니까?",
+ "koreanFontType":2,
+ "portugueseText":"Alterará sua configuração de notificações.\nDeseja ir para a tela de configurações do aparelho?",
+ "portugueseFontType":2,
+ "russianText":"Настройки уведомлений изменены.\nВернуться в меню настроек?",
+ "russianFontType":2,
+ "turkishText":"Bildirim ayarlarını değiştirme.\nCihaz ayarları menüsüne gitmek ister misiniz?",
+ "turkishFontType":2,
+ "arabicText":"تغيير إعدادات الإشعارات.\nهل تريد الانتقال إلى قائمة الإعدادات بجهازك؟",
+ "arabicFontType":2,
+ "dutchText":"Wil je naar het instellingenmenu van dit apparaat gaan\nom de meldingsinstellingen aan te passen?",
+ "dutchFontType":2,
+ "chineseSText":"变更推播设定。\n是否移动至装置的设定画面?",
+ "chineseSFontType":4
+ },
+ {
+ "key":"dialog_notification_button_agree",
+ "japaneseText":"許可する",
+ "englishUsText":"Allow",
+ "englishUsFontType":3,
+ "frenchText":"Autoriser",
+ "frenchFontType":3,
+ "italianText":"Consenti",
+ "italianFontType":3,
+ "germanText":"Erlauben",
+ "germanFontType":3,
+ "spanishText":"Permitir",
+ "spanishFontType":3,
+ "chineseTText":"允許",
+ "chineseTFontType":1,
+ "koreanText":"허용",
+ "koreanFontType":2,
+ "portugueseText":"Permitir",
+ "portugueseFontType":2,
+ "russianText":"Разрешить",
+ "russianFontType":2,
+ "turkishText":"İzin ver",
+ "turkishFontType":2,
+ "arabicText":"سماح",
+ "arabicFontType":2,
+ "dutchText":"Toestaan",
+ "dutchFontType":2,
+ "chineseSText":"允许",
+ "chineseSFontType":4
+ },
+ {
+ "key":"dialog_notification_button_disagree",
+ "japaneseText":"許可しない",
+ "englishUsText":"Don't Allow",
+ "englishUsFontType":3,
+ "frenchText":"Refuser",
+ "frenchFontType":3,
+ "italianText":"Blocca",
+ "italianFontType":3,
+ "germanText":"Nicht erlauben",
+ "germanFontType":3,
+ "spanishText":"No permitir",
+ "spanishFontType":3,
+ "chineseTText":"不允許",
+ "chineseTFontType":1,
+ "koreanText":"허용 안 함",
+ "koreanFontType":2,
+ "portugueseText":"Recusar",
+ "portugueseFontType":2,
+ "russianText":"Отклонить",
+ "russianFontType":2,
+ "turkishText":"İzin verme",
+ "turkishFontType":2,
+ "arabicText":"عدم السماح",
+ "arabicFontType":2,
+ "dutchText":"Weigeren",
+ "dutchFontType":2,
+ "chineseSText":"不允许",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_bshar2",
+ "japaneseText":"Baby Shark",
+ "englishUsText":"Baby Shark",
+ "englishUsFontType":3,
+ "frenchText":"Baby Shark",
+ "frenchFontType":3,
+ "italianText":"Baby Shark",
+ "italianFontType":3,
+ "germanText":"Baby Shark",
+ "germanFontType":3,
+ "spanishText":"Baby Shark",
+ "spanishFontType":3,
+ "chineseTText":"Baby Shark",
+ "chineseTFontType":1,
+ "koreanText":"Baby Shark",
+ "koreanFontType":2,
+ "portugueseText":"Baby Shark",
+ "portugueseFontType":3,
+ "russianText":"Baby Shark",
+ "russianFontType":3,
+ "turkishText":"Baby Shark",
+ "turkishFontType":3,
+ "arabicText":"Baby Shark",
+ "arabicFontType":3,
+ "dutchText":"Baby Shark",
+ "dutchFontType":3,
+ "chineseSText":"Baby Shark",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_bshar2",
+ "japaneseText":"太鼓の達人 Pop Tap Beat feat. ののちゃん",
+ "englishUsText":"Taiko no Tatsujin Pop Tap Beat feat. NONOKA",
+ "englishUsFontType":3,
+ "frenchText":"Taiko no Tatsujin Pop Tap Beat feat. NONOKA",
+ "frenchFontType":3,
+ "italianText":"Taiko no Tatsujin Pop Tap Beat feat. NONOKA",
+ "italianFontType":3,
+ "germanText":"Taiko no Tatsujin Pop Tap Beat feat. NONOKA",
+ "germanFontType":3,
+ "spanishText":"Taiko no Tatsujin Pop Tap Beat feat. NONOKA",
+ "spanishFontType":3,
+ "chineseTText":"Taiko no Tatsujin Pop Tap Beat feat. NONOKA",
+ "chineseTFontType":1,
+ "koreanText":"Taiko no Tatsujin Pop Tap Beat feat. NONOKA",
+ "koreanFontType":2,
+ "portugueseText":"Taiko no Tatsujin Pop Tap Beat feat. NONOKA",
+ "portugueseFontType":3,
+ "russianText":"Taiko no Tatsujin Pop Tap Beat feat. NONOKA",
+ "russianFontType":3,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat feat. NONOKA",
+ "turkishFontType":3,
+ "arabicText":"Taiko no Tatsujin Pop Tap Beat feat. NONOKA",
+ "arabicFontType":3,
+ "dutchText":"Taiko no Tatsujin Pop Tap Beat feat. NONOKA",
+ "dutchFontType":3,
+ "chineseSText":"Taiko no Tatsujin Pop Tap Beat feat. NONOKA",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_bshar2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_toystr",
+ "japaneseText":"You've Got a Friend in Me",
+ "englishUsText":"You've Got a Friend in Me",
+ "englishUsFontType":3,
+ "frenchText":"You've Got a Friend in Me",
+ "frenchFontType":3,
+ "italianText":"You've Got a Friend in Me",
+ "italianFontType":3,
+ "germanText":"You've Got a Friend in Me",
+ "germanFontType":3,
+ "spanishText":"You've Got a Friend in Me",
+ "spanishFontType":3,
+ "chineseTText":"You've Got a Friend in Me",
+ "chineseTFontType":1,
+ "koreanText":"You've Got a Friend in Me",
+ "koreanFontType":2,
+ "portugueseText":"You've Got a Friend in Me",
+ "portugueseFontType":3,
+ "russianText":"You've Got a Friend in Me",
+ "russianFontType":3,
+ "turkishText":"You've Got a Friend in Me",
+ "turkishFontType":3,
+ "arabicText":"You've Got a Friend in Me",
+ "arabicFontType":3,
+ "dutchText":"You've Got a Friend in Me",
+ "dutchFontType":3,
+ "chineseSText":"You've Got a Friend in Me",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_toystr",
+ "japaneseText":"「トイ・ストーリー」より",
+ "englishUsText":"From \" TOY STORY \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" TOY STORY \"",
+ "frenchFontType":3,
+ "italianText":"Da \" TOY STORY \"",
+ "italianFontType":3,
+ "germanText":"Aus \" TOY STORY \"",
+ "germanFontType":3,
+ "spanishText":"De \" TOY STORY \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「玩具總動員」",
+ "chineseTFontType":1,
+ "koreanText":"\"토이 스토리\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" TOY STORY \"",
+ "portugueseFontType":3,
+ "russianText":"From \" TOY STORY \"",
+ "russianFontType":3,
+ "turkishText":"From \" TOY STORY \"",
+ "turkishFontType":3,
+ "arabicText":"From \" TOY STORY \"",
+ "arabicFontType":3,
+ "dutchText":"From \" TOY STORY \"",
+ "dutchFontType":3,
+ "chineseSText":"出自 \" 玩具总动员 \"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_toystr",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_moana2",
+ "japaneseText":"SHINY",
+ "englishUsText":"SHINY",
+ "englishUsFontType":3,
+ "frenchText":"SHINY",
+ "frenchFontType":3,
+ "italianText":"SHINY",
+ "italianFontType":3,
+ "germanText":"SHINY",
+ "germanFontType":3,
+ "spanishText":"SHINY",
+ "spanishFontType":3,
+ "chineseTText":"SHINY",
+ "chineseTFontType":1,
+ "koreanText":"SHINY",
+ "koreanFontType":2,
+ "portugueseText":"SHINY",
+ "portugueseFontType":3,
+ "russianText":"SHINY",
+ "russianFontType":3,
+ "turkishText":"SHINY",
+ "turkishFontType":3,
+ "arabicText":"SHINY",
+ "arabicFontType":3,
+ "dutchText":"SHINY",
+ "dutchFontType":3,
+ "chineseSText":"SHINY",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_moana2",
+ "japaneseText":"「モアナと伝説の海」より",
+ "englishUsText":"From \" MOANA \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" MOANA \"",
+ "frenchFontType":3,
+ "italianText":"Da \" MOANA \"",
+ "italianFontType":3,
+ "germanText":"Aus \" MOANA \"",
+ "germanFontType":3,
+ "spanishText":"De \" MOANA \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「海洋奇緣」",
+ "chineseTFontType":1,
+ "koreanText":"\"모아나\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" MOANA \"",
+ "portugueseFontType":3,
+ "russianText":"From \" MOANA \"",
+ "russianFontType":3,
+ "turkishText":"From \" MOANA \"",
+ "turkishFontType":3,
+ "arabicText":"From \" MOANA \"",
+ "arabicFontType":3,
+ "dutchText":"From \" MOANA \"",
+ "dutchFontType":3,
+ "chineseSText":"出自 \" 海洋奇缘 \"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_moana2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_clslps",
+ "japaneseText":"ラプソディ・イン・ブルー",
+ "englishUsText":"Rhapsody in Blue",
+ "englishUsFontType":3,
+ "frenchText":"Rhapsody in Blue",
+ "frenchFontType":3,
+ "italianText":"Rhapsody in Blue",
+ "italianFontType":3,
+ "germanText":"Rhapsody in Blue",
+ "germanFontType":3,
+ "spanishText":"Rhapsody in Blue",
+ "spanishFontType":3,
+ "chineseTText":"藍色狂想曲",
+ "chineseTFontType":1,
+ "koreanText":"랩소디 인 블루",
+ "koreanFontType":2,
+ "portugueseText":"Rhapsody in Blue",
+ "portugueseFontType":3,
+ "russianText":"Rhapsody in Blue",
+ "russianFontType":3,
+ "turkishText":"Rhapsody in Blue",
+ "turkishFontType":3,
+ "arabicText":"Rhapsody in Blue",
+ "arabicFontType":3,
+ "dutchText":"Rhapsody in Blue",
+ "dutchFontType":3,
+ "chineseSText":"蓝色狂想曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_clslps",
+ "japaneseText":"ガーシュウィン",
+ "englishUsText":"George Gershwin",
+ "englishUsFontType":3,
+ "frenchText":"George Gershwin",
+ "frenchFontType":3,
+ "italianText":"George Gershwin",
+ "italianFontType":3,
+ "germanText":"George Gershwin",
+ "germanFontType":3,
+ "spanishText":"George Gershwin",
+ "spanishFontType":3,
+ "chineseTText":"喬治・蓋希文",
+ "chineseTFontType":1,
+ "koreanText":"조지 거슈윈",
+ "koreanFontType":2,
+ "portugueseText":"George Gershwin",
+ "portugueseFontType":3,
+ "russianText":"George Gershwin",
+ "russianFontType":3,
+ "turkishText":"George Gershwin",
+ "turkishFontType":3,
+ "arabicText":"George Gershwin",
+ "arabicFontType":3,
+ "dutchText":"George Gershwin",
+ "dutchFontType":3,
+ "chineseSText":"乔治・格什温",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_clslps",
+ "japaneseText":"",
+ "englishUsText":"ラプソディ・イン・ブルー",
+ "englishUsFontType":0,
+ "frenchText":"ラプソディ・イン・ブルー",
+ "frenchFontType":0,
+ "italianText":"ラプソディ・イン・ブルー",
+ "italianFontType":0,
+ "germanText":"ラプソディ・イン・ブルー",
+ "germanFontType":0,
+ "spanishText":"ラプソディ・イン・ブルー",
+ "spanishFontType":0,
+ "chineseTText":"ラプソディ・イン・ブルー",
+ "chineseTFontType":0,
+ "koreanText":"ラプソディ・イン・ブルー",
+ "koreanFontType":0,
+ "portugueseText":"ラプソディ・イン・ブルー",
+ "portugueseFontType":0,
+ "russianText":"ラプソディ・イン・ブルー",
+ "russianFontType":0,
+ "turkishText":"ラプソディ・イン・ブルー",
+ "turkishFontType":0,
+ "arabicText":"ラプソディ・イン・ブルー",
+ "arabicFontType":0,
+ "dutchText":"ラプソディ・イン・ブルー",
+ "dutchFontType":0,
+ "chineseSText":"ラプソディ・イン・ブルー",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_troika",
+ "japaneseText":"ロシア民謡メドレー",
+ "englishUsText":"Russian Folk Songs Medley",
+ "englishUsFontType":3,
+ "frenchText":"Russian Folk Songs Medley",
+ "frenchFontType":3,
+ "italianText":"Russian Folk Songs Medley",
+ "italianFontType":3,
+ "germanText":"Russian Folk Songs Medley",
+ "germanFontType":3,
+ "spanishText":"Russian Folk Songs Medley",
+ "spanishFontType":3,
+ "chineseTText":"俄羅斯民謠組曲",
+ "chineseTFontType":1,
+ "koreanText":"러시아 민요 메들리",
+ "koreanFontType":2,
+ "portugueseText":"Russian Folk Songs Medley",
+ "portugueseFontType":3,
+ "russianText":"Russian Folk Songs Medley",
+ "russianFontType":3,
+ "turkishText":"Russian Folk Songs Medley",
+ "turkishFontType":3,
+ "arabicText":"Russian Folk Songs Medley",
+ "arabicFontType":3,
+ "dutchText":"Russian Folk Songs Medley",
+ "dutchFontType":3,
+ "chineseSText":"俄罗斯民谣组曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_troika",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_troika",
+ "japaneseText":"",
+ "englishUsText":"ロシア民謡メドレー",
+ "englishUsFontType":0,
+ "frenchText":"ロシア民謡メドレー",
+ "frenchFontType":0,
+ "italianText":"ロシア民謡メドレー",
+ "italianFontType":0,
+ "germanText":"ロシア民謡メドレー",
+ "germanFontType":0,
+ "spanishText":"ロシア民謡メドレー",
+ "spanishFontType":0,
+ "chineseTText":"ロシア民謡メドレー",
+ "chineseTFontType":0,
+ "koreanText":"ロシア民謡メドレー",
+ "koreanFontType":0,
+ "portugueseText":"ロシア民謡メドレー",
+ "portugueseFontType":0,
+ "russianText":"ロシア民謡メドレー",
+ "russianFontType":0,
+ "turkishText":"ロシア民謡メドレー",
+ "turkishFontType":0,
+ "arabicText":"ロシア民謡メドレー",
+ "arabicFontType":0,
+ "dutchText":"ロシア民謡メドレー",
+ "dutchFontType":0,
+ "chineseSText":"ロシア民謡メドレー",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_20tbc",
+ "japaneseText":"たいこの2000",
+ "englishUsText":"TAIKO NO 2000",
+ "englishUsFontType":3,
+ "frenchText":"TAIKO NO 2000",
+ "frenchFontType":3,
+ "italianText":"TAIKO NO 2000",
+ "italianFontType":3,
+ "germanText":"TAIKO NO 2000",
+ "germanFontType":3,
+ "spanishText":"TAIKO NO 2000",
+ "spanishFontType":3,
+ "chineseTText":"TAIKO NO 2000",
+ "chineseTFontType":1,
+ "koreanText":"TAIKO NO 2000",
+ "koreanFontType":2,
+ "portugueseText":"TAIKO NO 2000",
+ "portugueseFontType":3,
+ "russianText":"TAIKO NO 2000",
+ "russianFontType":3,
+ "turkishText":"TAIKO NO 2000",
+ "turkishFontType":3,
+ "arabicText":"TAIKO NO 2000",
+ "arabicFontType":3,
+ "dutchText":"TAIKO NO 2000",
+ "dutchFontType":3,
+ "chineseSText":"TAIKO NO 2000",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_20tbc",
+ "japaneseText":"太鼓 de タイムトラベル紀元前 / LindaAI-CUE",
+ "englishUsText":"Taiko de Time Travel B.C.E. / LindaAI-CUE",
+ "englishUsFontType":3,
+ "frenchText":"Taiko de Time Travel B.C.E. / LindaAI-CUE",
+ "frenchFontType":3,
+ "italianText":"Taiko de Time Travel B.C.E. / LindaAI-CUE",
+ "italianFontType":3,
+ "germanText":"Taiko de Time Travel B.C.E. / LindaAI-CUE",
+ "germanFontType":3,
+ "spanishText":"Taiko de Time Travel B.C.E. / LindaAI-CUE",
+ "spanishFontType":3,
+ "chineseTText":"Taiko de Time Travel B.C.E. / LindaAI-CUE",
+ "chineseTFontType":1,
+ "koreanText":"Taiko de Time Travel B.C.E. / LindaAI-CUE",
+ "koreanFontType":2,
+ "portugueseText":"Taiko de Time Travel B.C.E. / LindaAI-CUE",
+ "portugueseFontType":3,
+ "russianText":"Taiko de Time Travel B.C.E. / LindaAI-CUE",
+ "russianFontType":3,
+ "turkishText":"Taiko de Time Travel B.C.E. / LindaAI-CUE",
+ "turkishFontType":3,
+ "arabicText":"Taiko de Time Travel B.C.E. / LindaAI-CUE",
+ "arabicFontType":3,
+ "dutchText":"Taiko de Time Travel B.C.E. / LindaAI-CUE",
+ "dutchFontType":3,
+ "chineseSText":"Taiko de Time Travel B.C.E. / LindaAI-CUE",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_20tbc",
+ "japaneseText":"",
+ "englishUsText":"たいこの2000",
+ "englishUsFontType":0,
+ "frenchText":"たいこの2000",
+ "frenchFontType":0,
+ "italianText":"たいこの2000",
+ "italianFontType":0,
+ "germanText":"たいこの2000",
+ "germanFontType":0,
+ "spanishText":"たいこの2000",
+ "spanishFontType":0,
+ "chineseTText":"たいこの2000",
+ "chineseTFontType":0,
+ "koreanText":"たいこの2000",
+ "koreanFontType":0,
+ "portugueseText":"たいこの2000",
+ "portugueseFontType":0,
+ "russianText":"たいこの2000",
+ "russianFontType":0,
+ "turkishText":"たいこの2000",
+ "turkishFontType":0,
+ "arabicText":"たいこの2000",
+ "arabicFontType":0,
+ "dutchText":"たいこの2000",
+ "dutchFontType":0,
+ "chineseSText":"たいこの2000",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_20t765",
+ "japaneseText":"The Future of the 太鼓ドラム",
+ "englishUsText":"The Future of the TAIKO DRUM",
+ "englishUsFontType":3,
+ "frenchText":"The Future of the TAIKO DRUM",
+ "frenchFontType":3,
+ "italianText":"The Future of the TAIKO DRUM",
+ "italianFontType":3,
+ "germanText":"The Future of the TAIKO DRUM",
+ "germanFontType":3,
+ "spanishText":"The Future of the TAIKO DRUM",
+ "spanishFontType":3,
+ "chineseTText":"The Future of the TAIKO DRUM",
+ "chineseTFontType":1,
+ "koreanText":"The Future of the TAIKO DRUM",
+ "koreanFontType":2,
+ "portugueseText":"The Future of the TAIKO DRUM",
+ "portugueseFontType":3,
+ "russianText":"The Future of the TAIKO DRUM",
+ "russianFontType":3,
+ "turkishText":"The Future of the TAIKO DRUM",
+ "turkishFontType":3,
+ "arabicText":"The Future of the TAIKO DRUM",
+ "arabicFontType":3,
+ "dutchText":"The Future of the TAIKO DRUM",
+ "dutchFontType":3,
+ "chineseSText":"The Future of the TAIKO DRUM",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_20t765",
+ "japaneseText":"太鼓 de タイムトラベル2765 / かめりあ",
+ "englishUsText":"Taiko de Time Travel 2765 / Camellia",
+ "englishUsFontType":3,
+ "frenchText":"Taiko de Time Travel 2765 / Camellia",
+ "frenchFontType":3,
+ "italianText":"Taiko de Time Travel 2765 / Camellia",
+ "italianFontType":3,
+ "germanText":"Taiko de Time Travel 2765 / Camellia",
+ "germanFontType":3,
+ "spanishText":"Taiko de Time Travel 2765 / Camellia",
+ "spanishFontType":3,
+ "chineseTText":"Taiko de Time Travel 2765 / 山茶花",
+ "chineseTFontType":1,
+ "koreanText":"Taiko de Time Travel 2765 / Camellia",
+ "koreanFontType":2,
+ "portugueseText":"Taiko de Time Travel 2765 / Camellia",
+ "portugueseFontType":3,
+ "russianText":"Taiko de Time Travel 2765 / Camellia",
+ "russianFontType":3,
+ "turkishText":"Taiko de Time Travel 2765 / Camellia",
+ "turkishFontType":3,
+ "arabicText":"Taiko de Time Travel 2765 / Camellia",
+ "arabicFontType":3,
+ "dutchText":"Taiko de Time Travel 2765 / Camellia",
+ "dutchFontType":3,
+ "chineseSText":"Taiko de Time Travel 2765 / 山茶花",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_20t765",
+ "japaneseText":"",
+ "englishUsText":"The Future of the 太鼓ドラム",
+ "englishUsFontType":0,
+ "frenchText":"The Future of the 太鼓ドラム",
+ "frenchFontType":0,
+ "italianText":"The Future of the 太鼓ドラム",
+ "italianFontType":0,
+ "germanText":"The Future of the 太鼓ドラム",
+ "germanFontType":0,
+ "spanishText":"The Future of the 太鼓ドラム",
+ "spanishFontType":0,
+ "chineseTText":"The Future of the 太鼓ドラム",
+ "chineseTFontType":0,
+ "koreanText":"The Future of the 太鼓ドラム",
+ "koreanFontType":0,
+ "portugueseText":"The Future of the 太鼓ドラム",
+ "portugueseFontType":0,
+ "russianText":"The Future of the 太鼓ドラム",
+ "russianFontType":0,
+ "turkishText":"The Future of the 太鼓ドラム",
+ "turkishFontType":0,
+ "arabicText":"The Future of the 太鼓ドラム",
+ "arabicFontType":0,
+ "dutchText":"The Future of the 太鼓ドラム",
+ "dutchFontType":0,
+ "chineseSText":"The Future of the 太鼓ドラム",
+ "chineseSFontType":0
+ },
+ {
+ "key":"osirase_v1_6_0_title",
+ "japaneseText":"ソフトウェアのアップデートを行いました(Ver.1.6.0)",
+ "englishUsText":"The game has been updated (Ver.1.6.0)",
+ "englishUsFontType":3,
+ "frenchText":"Mise à jour du logiciel (Ver.1.6.0)",
+ "frenchFontType":3,
+ "italianText":"Abbiamo aggiornato il gioco. (Ver.1.6.0)",
+ "italianFontType":3,
+ "germanText":"Die Software wurde aktualisiert (Ver.1.6.0)",
+ "germanFontType":3,
+ "spanishText":"Novedades de la última actualización (Ver.1.6.0)",
+ "spanishFontType":3,
+ "chineseTText":"本軟體已更新(Ver.1.6.0)",
+ "chineseTFontType":1,
+ "koreanText":"소프트웨어를 업데이트했습니다.(Ver.1.6.0)",
+ "koreanFontType":2,
+ "portugueseText":"O software foi atualizado (Ver.1.6.0)",
+ "portugueseFontType":2,
+ "russianText":"Программное обеспечение обновлено (версия 1.6.0)",
+ "russianFontType":2,
+ "turkishText":"Oyun güncellendi (Ver.1.6.0)",
+ "turkishFontType":2,
+ "arabicText":"لقد تم تحديث اللعبة (نسخة 1.6.0)",
+ "arabicFontType":2,
+ "dutchText":"De software is geüpdatet. (Ver.1.6.0)",
+ "dutchFontType":2,
+ "chineseSText":"本软件已更新(Ver.1.6.0)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"osirase_v1_6_0",
+ "japaneseText":"太鼓の達人 Pop Tap Beat をプレイ頂き、ありがとうございます!\n\nソフトウェアのアップデートを行いました(Ver.1.6.0)\n\n・通知機能を追加しました。 iOS\n新曲や新機能を追加したときに、お使いの端末に通知でお知らせします。\nぜひご利用ください。\n\n・いくつかの不具合の修正、パフォーマンス調整を行いました。\n\n★新曲追加★\nBaby Shark 太鼓の達人 Pop Tap Beat feat. ののちゃん\n\n世界中に元気と笑顔を届ける2018年生まれの小さな歌姫”ののちゃん”が歌う太鼓の達人 Pop Tap Beat 限定のBaby Sharkが登場!\n\nそのほかにもクラシックや有名映画の楽曲を含めて6曲を追加!",
+ "englishUsText":"Thank you for playing Taiko no Tatsujin Pop Tap Beat!\n\nThe game has been updated (Ver.1.6.0).\n\n・Addition of Notifications iOS\n Players can now receive notifications on their devices when new songs or functions have been added to the game. Try it out!\n\n・Bug Fixes and Performance Adjustments\n\n★Addition of New Songs★\n Baby Shark - Taiko no Tatsujin Pop Tap Beat feat.NONOKA\n\n Limited to Taiko no Tatsujin Pop Tap Beat! A special version of the hit song sung by young pop sensation NONOKA is now available! \n\n From classics to famous movie themes, a total of six new songs have been added!",
+ "englishUsFontType":3,
+ "frenchText":"Merci de jouer à Taiko no Tatsujin Pop Tap Beat !\n\nMise à jour du logiciel (Ver.1.6.0)\n\n- Ajout d'une fonctionnalité de notification iOS\n Il est désormais possible de recevoir une notification lors de l'ajout d'une nouvelle chanson ou d'une nouvelle fonctionnalité.\n N'hésitez pas à en profiter !\n\n- Corrections d'erreurs diverses et optimisation des performances\n\n★ Ajout de nouvelles chansons ★\n Baby Shark - Taiko no Tatsujin Pop Tap Beat feat. NONOKA\n\n Découvrez « Baby Shark », un morceau exclusif à Taiko No Tatsujin PopTapBeat et chanté par NONOKA, la jeune artiste née en 2018 qui sème sourires et énergie dans le monde entier !\n\n Six chansons, dont notamment des morceaux de films célèbres et de musique classique, ont également été ajoutées !",
+ "frenchFontType":3,
+ "italianText":"Grazie per aver giocato a Taiko no Tatsujin\nPop Tap Beat!\n\nAbbiamo aggiornato il gioco. (Ver. 1.6.0)\n\nNovità: notifiche iOS\n Ogni volta che aggiungeremo un brano o una funzione, ti verrà inviata una notifica sul tuo dispositivo.\n\nCorrezione di vari bug\ne miglioramenti delle prestazioni.\n\nNuovi brani\n Baby Shark - Taiko no Tatsujin Pop Tap Beat feat.NONOKA\n La giovanissima NONOKA, che fa sorridere il mondo intero, canta Baby Shark in una versione esclusiva per Taiko no Tatsujin Pop Tap Beat!\n In più, 6 nuovi brani, tra cui pezzi di musica classica e colonne sonore di film famosi!",
+ "italianFontType":3,
+ "germanText":"Vielen Dank fürs Spielen von\nTaiko no Tatsujin Pop Tap Beat!\n\nDie Software wurde aktualisiert (Ver.1.6.0).\n\n・Benachrichtigungsfunktion wurde hinzugefügt iOS\n Sobald neue Funktionen oder Songs verfügbar sind, erhältst du nun eine Nachricht. \n Lass dir keine Neuigkeit mehr entgehen! \n\n・Fehlerbehebungen und Leistungsanpassungen\n\n★Neue Songs★\n Taiko no Tatsujin Pop Tap Beat feat. NONOKA: Baby Shark\n\n Endlich verfügbar! Dieser Song lässt die Herzen auf der ganzen Welt höherschlagen und zaubert ein Lächeln auf jedes Gesicht! \n Baby Shark vom 2018 geborenen Popsternchen NONOKA, jetzt exklusiv für Taiko no Tatsujin Pop Tap Beat!\n\n Daneben 6 weitere Titel aus der Klassik und berühmten Filmsoundtracks!",
+ "germanFontType":3,
+ "spanishText":"¡Gracias por jugar a Taiko no Tatsujin Pop tap Beat!\n\nNovedades de la última actualización (ver. 1.6.0)\n\nNueva función: notificaciones iOS\n Te enviaremos notificaciones cuando se añadan canciones nuevas o haya una actualización.\n ¡No te pierdas nada!\n\nTambién hemos arreglado otros errores y mejorado el rendimiento\n\n★¡Nuevas canciones!★\n Baby Shark - Taiko no Tatsujin Pop tap Beat feat. NONOKA\n\n La pequeña gran diva NONOKA, nacida en 2018, trae energía y sonrisas a todo el mundo con la canción Baby Shark.\n ¡Una edición especial de Baby Shark solo en Taiko no Tatsujin Pop tap Beat!\n\n ¡Y además, se añadieron otras 6 canciones de películas clásicas y famosas!",
+ "spanishFontType":3,
+ "chineseTText":"感謝您遊玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本軟體已更新(Ver.1.6.0)。\n\n‧已追加推播功能。 iOS\n 追加新曲或新功能時,會發送推播到您使用的裝置。\n 敬請善加利用。\n\n‧已修正部分異常以及調整遊戲表現。\n\n★追加新曲★\n 《Baby Shark - Taiko no Tatsujin Pop Tap Beat feat.NONOKA》\n\n 由2018年出生的小歌姬,替世界帶來活力與歡笑的「NONOKA」所演唱。\n 《Taiko no Tatsujin POP TAP BEAT》限定的《Baby Shark》即將登場!\n\n另外還會追加古典音樂與知名電影歌曲等6首新曲!",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 Pop Tap Beat를 플레이해주셔서 감사합니다!\n\n소프트웨어를 업데이트했습니다.(Ver.1.6.0)\n\n・알림 기능을 추가했습니다. iOS\n 신곡이나 신규 기능이 추가되었을 때 사용 중인 단말기로 알림이 보내집니다.\n 꼭 이용해 보세요.\n\n・그 외 오류를 수정하고 퍼포먼스를 조정했습니다.\n\n★신곡 추가★\n Baby Shark - Taiko no Tatsujin Pop Tap Beat feat.NONOKA\n\n 전 세계에 활기와 미소를 전하는 2018년생 꼬마 가수 \"NONOKA\"가 부르는\n 태고의 달인 Pop Tap Beat 한정 Baby Shark가 등장!\n\n 그 밖에도 클래식 및 유명 영화 삽입곡을 포함한 6개 곡을 추가!",
+ "koreanFontType":2,
+ "portugueseText":"Obrigado por jogar Taiko no Tatsujin Pop Tap Beat!\n\nO software foi atualizado (Ver.1.6.0).\n\n・Adição de notificações iOS\n Os jogadores agora podem receber notificações em seus dispositivos quando lançamos novas músicas ou funcionalidades. Experimente!\n\n・Outras pequenas melhorias e correções de erros\n\n★Adição de novas músicas★\n Baby Shark - Taiko no Tatsujin Pop Tap Beat feat.NONOKA\n\n Exclusiva de Taiko no Tatsujin Pop Tap Beat! Uma versão especial do grande sucesso cantado pela jovem sensação da música pop NONOKA está disponível! \n\n Adicionámos um total de 6 músicas, incluindo canções clássicas e temas de filmes populares!",
+ "portugueseFontType":2,
+ "russianText":"Спасибо, что играете в Taiko no Tatsujin Pop Tap Beat!\n\nПрограммное обеспечение обновлено (версия 1.6.0)\n\n・Добавлена функция уведомлений. iOS\n Уведомления о новых песнях и функциях на вашем устройстве.\n Непременно воспользуйтесь этой функцией.\n\n・Исправление неполадок, улучшение производительности.\n\n★Добавлены новые песни★\n Baby Shark - Taiko no Tatsujin Pop Tap Beat feat. NONOKA\n \n Песня Baby Shark исполнена маленькой дивой NONOKA, родившейся в 2018 году и радующей весь мир своей энергией и улыбкой!\n Только в Taiko no Tatsujin Pop Tap Beat.\n\n Также были добавлены 6 песен, в том числе классические песни и известные песни из фильмов!",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat'i oynadığınız için teşekkür ederiz!\n\nOyun güncellendi (Ver.1.6.0).\n\n・Bildirimler Eklendi iOS\n Oyuncular artık oyuna yeni şarkılar ya da fonksiyonlar eklendiğinde cihazlarına bildirim alabilecekler. Yeni özelliğe göz atın! \n\n・Hata düzeltmeleri ve Performans iyileştirmeleri\n\n★Yeni şarkılar eklendi★\n Baby Shark - Taiko no Tatsujin Pop Tap Beat feat.NONOKA\n\n Taiko no Tatsujin Pop Tap Beat'e özel! Genç pop akımı NONOKA tarafından özel olarak seslendirilen bu hit şarkı artık oyunca mevcut! \n\n Klasiklerden ünlü filmlerdeki şarkılara kadar, altı yeni şarkı eklendi!",
+ "turkishFontType":2,
+ "arabicText":"نشكرك على لعب Taiko no Tatsujin Pop Tap Beat!\n\nلقد تم تحديث اللعبة (نسخة 1.6.0).\n\n・إشعارات الإضافة iOS\n يمكن للاعبين الآن تلقي إشعارات على أجهزتهم عند إضافة أغانٍ أو وظائف جديدة للعبة. جربها الآن!\n\n・تحسينات في الأداء وتصحيحات للأخطاء\n\n★تمت إضافة أغانٍ جديدة★\n Baby Shark - Taiko no Tatsujin Pop Tap Beat feat.NONOKA\n\n حصريًا لـ Taiko no Tatsujin Pop Tap Beat! نسخة خاصة من الأغنية الناجحة تغنيها نجمة البوب الصغيرة NONOKA متاحة الآن!\n\n تمت إضافة سبع أغانٍ جديدة متنوعة ما بين الكلاسيكيات وأغاني الأفلام المشهورة!",
+ "arabicFontType":2,
+ "dutchText":"Bedankt dat je Taiko no Tatsujin Pop Tap Beat speelt!\n\nDe software is geüpdatet. (Ver.1.6.0)\n\n・Er is een meldingenfunctie toegevoegd. iOS\n Als er nieuwe liedjes of functies zijn toegevoegd, ontvang je een melding op je apparaat.\n We raden je van harte aan deze te gebruiken!\n\n・Er zijn verschillende bugs opgelost en\nde performance van het spel is verbeterd.\n\n★Nieuwe liedjes★\n Baby Shark - Taiko no Tatsujin Pop Tap Beat feat.NONOKA\n\n Een exclusieve versie van het liedje Baby Shark, gezongen door de schattige NONOKA, is nu ook beschikbaar in Taiko no Tatsujin Pop Tap Beat!\n\n Daarnaast zijn er nog 6 andere liedjes toegevoegd, waaronder klassiekers en muziek uit beroemde films!",
+ "dutchFontType":2,
+ "chineseSText":"感谢您游玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本软件已更新(Ver.1.6.0)。\n\n‧已追加推播功能。 iOS\n 追加新曲或新功能时,会发送推播到您使用的装置。\n 敬请善加利用。\n\n‧已修正部分异常并调整游戏表现。\n\n★追加新曲★\n 《Baby Shark - Taiko no Tatsujin Pop Tap Beat feat.NONOKA》\n\n 由2018年出生的小歌姬,给世界带来活力与欢笑的“NONOKA”所演唱。\n 《Taiko no Tatsujin POP TAP BEAT》限定的《Baby Shark》即将登场!\n\n 另外还会追加古典音乐与知名电影歌曲等6首新曲!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"dialog_datausage_title",
+ "japaneseText":"データ利用の設定",
+ "englishUsText":"Data Usage Settings",
+ "englishUsFontType":3,
+ "frenchText":"Paramètres des données",
+ "frenchFontType":3,
+ "italianText":"Impostazioni uso dati",
+ "italianFontType":3,
+ "germanText":"Datenerfassung",
+ "germanFontType":3,
+ "spanishText":"Uso de datos",
+ "spanishFontType":3,
+ "chineseTText":"使用資料設定",
+ "chineseTFontType":1,
+ "koreanText":"데이터 이용 설정",
+ "koreanFontType":2,
+ "portugueseText":"Configuração de uso de dados",
+ "portugueseFontType":2,
+ "russianText":"Настройки данных",
+ "russianFontType":2,
+ "turkishText":"Veri Kullanımı",
+ "turkishFontType":2,
+ "arabicText":"إعدادات استخدام البيانات",
+ "arabicFontType":2,
+ "dutchText":"Instellingen gegevensgebuik",
+ "dutchFontType":2,
+ "chineseSText":"使用数据设定",
+ "chineseSFontType":4
+ },
+ {
+ "key":"dialog_datausage_body_1",
+ "japaneseText":"太鼓の達人 Pop Tap Beatをプレイ頂き、ありがとうございます!\nバンダイナムコエンターテインメントでは、太鼓の達人 Pop Tap Beatをよりよく改善するために、あなたのゲームプレイ情報を利用したいと考えています。\n※ゲームプレイの情報は匿名であり、私たちがあなたの個人情報を収集したり、利用したりすることはできません。",
+ "englishUsText":"Thank you for playing Taiko no Tatsujin Pop Tap Beat!\nIn order to improve the player experience, Bandai Namco Entertainment Inc. would like to collect your Taiko no Tatsujin Pop Tap Beat game play data.\n*Game play data will be collected anonymously, and Bandai Namco Entertainment Inc. will not have access to your personal information.",
+ "englishUsFontType":3,
+ "frenchText":"Merci de jouer à Taiko no Tatsujin Pop Tap Beat !\nBandai Namco Entertainment envisage de collecter vos données de jeu dans le but d'améliorer l'expérience de jeu de Taiko no Tatsujin Pop Tap Beat.\n* Les données collectées resteront anonymes et n'incluront pas d'informations personnelles.",
+ "frenchFontType":3,
+ "italianText":"Grazie per aver giocato a Taiko no Tatsujin Pop Tap Beat!\nNoi di Bandai Namco Entertainment vorremmo utilizzare le tue informazioni di gioco per rendere Taiko no Tatsujin Pop Tap Beat ancora migliore.\nI dati raccolti saranno anonimi. Non raccoglieremo né utilizzeremo i tuoi dati personali.",
+ "italianFontType":3,
+ "germanText":"Vielen Dank fürs Spielen von Taiko no Tatsujin Pop Tap Beat!\nBandai Namco Entertainment möchte deine Spieldaten auswerten, um das Spielerlebnis von Taiko no Tatsujin Pop Tap Beat zu verbessern. Die Spieldaten bleiben anonym und wir erfassen keine persönlichen Daten oder verwenden diese weiter.",
+ "germanFontType":3,
+ "spanishText":"¡Gracias por jugar a Taiko no Tatsujin Pop Tap Beat!\nEn Bandai Namco Entertainment nos gustaría utilizar tu información de juego para mejorar Taiko no Tatsujin Pop Tap Beat.\n* La información de juego es anónima y no recopilamos ni utilizamos ninguna información personal tuya.",
+ "spanishFontType":3,
+ "chineseTText":"感謝您遊玩《Taiko no Tatsujin POP TAP BEAT》!\n萬代南夢宮娛樂為了讓《Taiko no Tatsujin POP TAP BEAT》能有更好的改善,因此想使用您的遊玩資料。\n※遊玩資料將以匿名方式收集,我們無法收集或使用您的個人資料。",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 Pop Tap Beat를 플레이해주셔서 감사합니다!\n반다이 남코 엔터테인먼트는 태고의 달인 Pop Tap Beat의 품질 개선을 위해 고객님의 게임 플레이 정보를 이용하고자 합니다.\n※게임 플레이 정보는 익명으로 이용되며, 반다이 남코 엔터테인먼트는 고객님의 개인 정보를 수집하거나 이용할 수 없습니다.",
+ "koreanFontType":2,
+ "portugueseText":"Obrigado por jogar Taiko no Tatsujin Pop Tap Beat!\nDe forma a melhorar Taiko no Tatsujin Pop Tap Beat, a Bandai Namco Entertainment Inc. gostaria de coletar suas informações de jogo.\n*As informações de jogo serão coletadas anonimamente, e a Bandai Namco Entertainment Inc. não acessará suas informações pessoais.",
+ "portugueseFontType":2,
+ "russianText":"Спасибо, что играете в Taiko no Tatsujin Pop Tap Beat!\nBandai Namco Entertainment хочет использовать информацию о вашем игровом процессе, чтобы сделать игру еще лучше.\n*Информация об игровом процессе является анонимной, и мы не будем собирать или использовать ваши личные данные.",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat'i oynadığınız için teşekkür ederiz!\nOyuncu deneyimini geliştirmek adına, Bandai Namco Entertainment Taiko no Tatsujin Pop Tap Beat oynanış verini toplamak istiyor.\n*Oyun verisi anonim olarak toplanacaktır ve Bandai Namco Entertainment Inc.'in kişisel verilerinize erişimi olmayacaktır.",
+ "turkishFontType":2,
+ "arabicText":"نشكرك على لعب Taiko no Tatsujin Pop Tap Beat!\nمن أجل تحسين تجربة اللاعب، تود شركة Bandai Namco Entertainment جمع بيانات اللعب الخاصة يك فيTaiko no Tatsujin Pop Tap Beat.\n*سيتم جمع البيانات بشكل مجهول المصدر، ولن تتمكن Bandai Namco Entertainment Inc. من الوصول إلى معلوماتك الشخصية.",
+ "arabicFontType":2,
+ "dutchText":"Bedankt dat je Taiko no Tatsujin Pop Tap Beat speelt!\nBandai Namco Entertainment Inc. zou graag jouw gameplay-gegevens gebruiken om Taiko no Tatsujin Pop Tap Beat nog beter te maken.\n*De verzamelde gameplay-gegevens zijn anoniem en Bandai Namco Entertainment Inc. heeft geen toegang tot je persoonlijke gegevens.",
+ "dutchFontType":2,
+ "chineseSText":"感谢您游玩《Taiko no Tatsujin POP TAP BEAT》!\n万代南梦宫娱乐为了让《Taiko no Tatsujin POP TAP BEAT》能有更好的改善,因此想使用您的游玩数据。\n※游玩数据将以匿名方式收集,我们无法收集或使用您的个人信息。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"dialog_datausage_body_2",
+ "japaneseText":"ゲームプレイ情報を利用してもよろしいでしょうか?",
+ "englishUsText":"Allow collection of Taiko no Tatsujin Pop Tap Beat game play data?",
+ "englishUsFontType":3,
+ "frenchText":"Autorisez-vous l'utilisation de vos données de jeu ?",
+ "frenchFontType":3,
+ "italianText":"Autorizzi l'uso dei tuoi dati di gioco?",
+ "italianFontType":3,
+ "germanText":"Dürfen wir deine Spieldaten verwenden?",
+ "germanFontType":3,
+ "spanishText":"¿Podemos usar la información de tu juego?",
+ "spanishFontType":3,
+ "chineseTText":"是否同意我們使用遊玩資料?",
+ "chineseTFontType":1,
+ "koreanText":"게임 플레이 정보 이용을 허용하시겠습니까?",
+ "koreanFontType":2,
+ "portugueseText":"Permitir a coleta das informações de jogo de Taiko no Tatsujin Pop Tap Beat?",
+ "portugueseFontType":2,
+ "russianText":"Вы разрешаете использовать вашу информацию?",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat'in veri toplamasına izin veriyor musunuz?",
+ "turkishFontType":2,
+ "arabicText":"هل تريد السماح بجمع بيانات لعب Taiko no Tatsujin Pop Tap Beat؟",
+ "arabicFontType":2,
+ "dutchText":"Mogen we jouw gameplay-gegevens gebruiken?",
+ "dutchFontType":2,
+ "chineseSText":"是否同意我们使用游玩数据?",
+ "chineseSFontType":4
+ },
+ {
+ "key":"dialog_datausage_agree",
+ "japaneseText":"太鼓の達人 Pop Tap Beat の改善にご協力いただき、ありがとうございます!",
+ "englishUsText":"Thank you for cooperation to improve Taiko no Tatsujin Pop Tap Beat!",
+ "englishUsFontType":3,
+ "frenchText":"Merci de contribuer à l'amélioration de Taiko no Tatsujin Pop Tap Beat !",
+ "frenchFontType":3,
+ "italianText":"Ti ringraziamo per il tuo contributo al miglioramento di Taiko no Tatsujin Pop Tap Beat!",
+ "italianFontType":3,
+ "germanText":"Vielen Dank, dass du mithilfst, Taiko no Tatsujin Pop Tap Beat zu verbessern!",
+ "germanFontType":3,
+ "spanishText":"¡Gracias por ayudarnos a mejorar el Taiko no Tatsujin Pop Tap Beat!",
+ "spanishFontType":3,
+ "chineseTText":"感謝您協助改善《Taiko no Tatsujin POP TAP BEAT》!",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 Pop Tap Beat 개선에 협조해 주셔서 감사합니다!",
+ "koreanFontType":2,
+ "portugueseText":"Obrigado por colaborar para melhorarmos Taiko no Tatsujin Pop Tap Beat!",
+ "portugueseFontType":2,
+ "russianText":"Благодарим вас за помощь в улучшении игры Taiko no Tatsujin Pop Tap Beat!",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat'i geliştirmek amacıyla yaptığınız katkılar için teşekkürler!",
+ "turkishFontType":2,
+ "arabicText":"نشكرك على تعاونك في تحسين Taiko no Tatsujin Pop Tap Beat!",
+ "arabicFontType":2,
+ "dutchText":"Bedankt dat je Taiko no Tatsujin Pop Tap Beat helpt te verbeteren!",
+ "dutchFontType":2,
+ "chineseSText":"感谢您协助改善《Taiko no Tatsujin POP TAP BEAT》!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"dialog_datausage_disagree",
+ "japaneseText":"太鼓の達人 Pop Tap Beat の改善のためにあなたのゲームプレイ情報を利用することはありません。",
+ "englishUsText":"Game play data for Taiko no Tatsujin Pop Tap Beat will not be collected.",
+ "englishUsFontType":3,
+ "frenchText":"Vos données de jeu ne seront pas utilisées dans le cadre de l'amélioration de Taiko no Tatsujin Pop Tap Beat.",
+ "frenchFontType":3,
+ "italianText":"Le tue informazioni di gioco non saranno usate per il miglioramento di Taiko no Tatsujin Pop Tap Beat.",
+ "italianFontType":3,
+ "germanText":"Deine Spieldaten werden nicht verwendet, um Taiko no Tatsujin Pop Tap Beat zu verbessern.",
+ "germanFontType":3,
+ "spanishText":"No utilizaremos tu información de juego para mejoras en Taiko no Tatsujin Pop Tap Beat.",
+ "spanishFontType":3,
+ "chineseTText":"您的遊玩資料不會被用於改善《Taiko no Tatsujin POP TAP BEAT》。",
+ "chineseTFontType":1,
+ "koreanText":"고객님의 게임 플레이 정보를 태고의 달인 Pop Tap Beat 개선에 이용하지 않습니다.",
+ "koreanFontType":2,
+ "portugueseText":"Os dados de jogo de Taiko no Tatsujin Pop Tap Beat não serão coletados.",
+ "portugueseFontType":2,
+ "russianText":"Мы не будем использовать вашу информацию для улучшения игры.",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat için oynanış verisi toplanmayacak.",
+ "turkishFontType":2,
+ "arabicText":"لن يتم جمع بيانات اللعب في Taiko no Tatsujin Pop Tap Beat.",
+ "arabicFontType":2,
+ "dutchText":"Er worden voor Taiko no Tatsujin Pop Tap Beat geen gameplay-gegevens verzameld.",
+ "dutchFontType":2,
+ "chineseSText":"您的游玩数据不会被用于改善《Taiko no Tatsujin POP TAP BEAT》。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_plstlv",
+ "japaneseText":"プラスティック・ラブ",
+ "englishUsText":"PLASTIC LOVE",
+ "englishUsFontType":3,
+ "frenchText":"PLASTIC LOVE",
+ "frenchFontType":3,
+ "italianText":"PLASTIC LOVE",
+ "italianFontType":3,
+ "germanText":"PLASTIC LOVE",
+ "germanFontType":3,
+ "spanishText":"PLASTIC LOVE",
+ "spanishFontType":3,
+ "chineseTText":"PLASTIC LOVE",
+ "chineseTFontType":1,
+ "koreanText":"PLASTIC LOVE",
+ "koreanFontType":2,
+ "portugueseText":"PLASTIC LOVE",
+ "portugueseFontType":3,
+ "russianText":"PLASTIC LOVE",
+ "russianFontType":3,
+ "turkishText":"PLASTIC LOVE",
+ "turkishFontType":3,
+ "arabicText":"PLASTIC LOVE",
+ "arabicFontType":3,
+ "dutchText":"PLASTIC LOVE",
+ "dutchFontType":3,
+ "chineseSText":"PLASTIC LOVE",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_plstlv",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_plstlv",
+ "japaneseText":"",
+ "englishUsText":"プラスティック・ラブ",
+ "englishUsFontType":0,
+ "frenchText":"プラスティック・ラブ",
+ "frenchFontType":0,
+ "italianText":"プラスティック・ラブ",
+ "italianFontType":0,
+ "germanText":"プラスティック・ラブ",
+ "germanFontType":0,
+ "spanishText":"プラスティック・ラブ",
+ "spanishFontType":0,
+ "chineseTText":"プラスティック・ラブ",
+ "chineseTFontType":0,
+ "koreanText":"プラスティック・ラブ",
+ "koreanFontType":0,
+ "portugueseText":"プラスティック・ラブ",
+ "portugueseFontType":0,
+ "russianText":"プラスティック・ラブ",
+ "russianFontType":0,
+ "turkishText":"プラスティック・ラブ",
+ "turkishFontType":0,
+ "arabicText":"プラスティック・ラブ",
+ "arabicFontType":0,
+ "dutchText":"プラスティック・ラブ",
+ "dutchFontType":0,
+ "chineseSText":"プラスティック・ラブ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_evam20",
+ "japaneseText":"Battaille Décisive",
+ "englishUsText":"Battaille Décisive",
+ "englishUsFontType":3,
+ "frenchText":"Battaille Décisive",
+ "frenchFontType":3,
+ "italianText":"Battaille Décisive",
+ "italianFontType":3,
+ "germanText":"Battaille Décisive",
+ "germanFontType":3,
+ "spanishText":"Battaille Décisive",
+ "spanishFontType":3,
+ "chineseTText":"Battaille Décisive",
+ "chineseTFontType":1,
+ "koreanText":"Battaille Décisive",
+ "koreanFontType":2,
+ "portugueseText":"Battaille Décisive",
+ "portugueseFontType":3,
+ "russianText":"Battaille Décisive",
+ "russianFontType":3,
+ "turkishText":"Battaille Décisive",
+ "turkishFontType":3,
+ "arabicText":"Battaille Décisive",
+ "arabicFontType":3,
+ "dutchText":"Battaille Décisive",
+ "dutchFontType":3,
+ "chineseSText":"Battaille Décisive",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_evam20",
+ "japaneseText":"「ヱヴァンゲリヲン新劇場版:序」より",
+ "englishUsText":"From \" EVANGELION:1.11 YOU ARE (NOT) ALONE. \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" EVANGELION:1.11 YOU ARE (NOT) ALONE. \"",
+ "frenchFontType":3,
+ "italianText":"Da \" EVANGELION:1.11 YOU ARE (NOT) ALONE. \"",
+ "italianFontType":3,
+ "germanText":"Aus \" EVANGELION:1.11 YOU ARE (NOT) ALONE. \"",
+ "germanFontType":3,
+ "spanishText":"De \" EVANGELION:1.11 YOU ARE (NOT) ALONE. \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「新世紀福音戰士新劇場版:序」",
+ "chineseTFontType":1,
+ "koreanText":"\"에반게리온:서\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" EVANGELION:1.11 YOU ARE (NOT) ALONE. \"",
+ "portugueseFontType":3,
+ "russianText":"From \" EVANGELION:1.11 YOU ARE (NOT) ALONE. \"",
+ "russianFontType":3,
+ "turkishText":"From \" EVANGELION:1.11 YOU ARE (NOT) ALONE. \"",
+ "turkishFontType":3,
+ "arabicText":"From \" EVANGELION:1.11 YOU ARE (NOT) ALONE. \"",
+ "arabicFontType":3,
+ "dutchText":"From \" EVANGELION:1.11 YOU ARE (NOT) ALONE. \"",
+ "dutchFontType":3,
+ "chineseSText":"出自 \" 新世纪福音战士新剧场版:序 \"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_evam20",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_tmbeat",
+ "japaneseText":"テルミービート",
+ "englishUsText":"TELL ME BEAT",
+ "englishUsFontType":3,
+ "frenchText":"TELL ME BEAT",
+ "frenchFontType":3,
+ "italianText":"TELL ME BEAT",
+ "italianFontType":3,
+ "germanText":"TELL ME BEAT",
+ "germanFontType":3,
+ "spanishText":"TELL ME BEAT",
+ "spanishFontType":3,
+ "chineseTText":"TELL ME BEAT",
+ "chineseTFontType":1,
+ "koreanText":"TELL ME BEAT",
+ "koreanFontType":2,
+ "portugueseText":"TELL ME BEAT",
+ "portugueseFontType":3,
+ "russianText":"TELL ME BEAT",
+ "russianFontType":3,
+ "turkishText":"TELL ME BEAT",
+ "turkishFontType":3,
+ "arabicText":"TELL ME BEAT",
+ "arabicFontType":3,
+ "dutchText":"TELL ME BEAT",
+ "dutchFontType":3,
+ "chineseSText":"TELL ME BEAT",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_tmbeat",
+ "japaneseText":"キノシタ feat. 鏡音リン",
+ "englishUsText":"kinoshita feat. KAGAMINE RIN",
+ "englishUsFontType":3,
+ "frenchText":"kinoshita feat. KAGAMINE RIN",
+ "frenchFontType":3,
+ "italianText":"kinoshita feat. KAGAMINE RIN",
+ "italianFontType":3,
+ "germanText":"kinoshita feat. KAGAMINE RIN",
+ "germanFontType":3,
+ "spanishText":"kinoshita feat. KAGAMINE RIN",
+ "spanishFontType":3,
+ "chineseTText":"kinoshita feat. 鏡音鈴",
+ "chineseTFontType":1,
+ "koreanText":"kinoshita feat. 카가미네 린",
+ "koreanFontType":2,
+ "portugueseText":"kinoshita feat. KAGAMINE RIN",
+ "portugueseFontType":3,
+ "russianText":"kinoshita feat. KAGAMINE RIN",
+ "russianFontType":3,
+ "turkishText":"kinoshita feat. KAGAMINE RIN",
+ "turkishFontType":3,
+ "arabicText":"kinoshita feat. KAGAMINE RIN",
+ "arabicFontType":3,
+ "dutchText":"kinoshita feat. KAGAMINE RIN",
+ "dutchFontType":3,
+ "chineseSText":"kinoshita feat. 镜音铃",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_tmbeat",
+ "japaneseText":"",
+ "englishUsText":"テルミービート",
+ "englishUsFontType":0,
+ "frenchText":"テルミービート",
+ "frenchFontType":0,
+ "italianText":"テルミービート",
+ "italianFontType":0,
+ "germanText":"テルミービート",
+ "germanFontType":0,
+ "spanishText":"テルミービート",
+ "spanishFontType":0,
+ "chineseTText":"テルミービート",
+ "chineseTFontType":0,
+ "koreanText":"テルミービート",
+ "koreanFontType":0,
+ "portugueseText":"テルミービート",
+ "portugueseFontType":0,
+ "russianText":"テルミービート",
+ "russianFontType":0,
+ "turkishText":"テルミービート",
+ "turkishFontType":0,
+ "arabicText":"テルミービート",
+ "arabicFontType":0,
+ "dutchText":"テルミービート",
+ "dutchFontType":0,
+ "chineseSText":"テルミービート",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_20tftr",
+ "japaneseText":"GO ON ~未来へ~",
+ "englishUsText":"GO ON ~Into the Future~",
+ "englishUsFontType":3,
+ "frenchText":"GO ON ~Dans le Futur~",
+ "frenchFontType":3,
+ "italianText":"GO ON ~Nel futuro~",
+ "italianFontType":3,
+ "germanText":"GO ON ~In die Zukunft~",
+ "germanFontType":3,
+ "spanishText":"GO ON ~Adentro del Futuro~",
+ "spanishFontType":3,
+ "chineseTText":"GO ON ~朝向未來~",
+ "chineseTFontType":1,
+ "koreanText":"GO ON ~미래로~",
+ "koreanFontType":2,
+ "portugueseText":"GO ON ~Into the Future~",
+ "portugueseFontType":3,
+ "russianText":"GO ON ~Into the Future~",
+ "russianFontType":3,
+ "turkishText":"GO ON ~Into the Future~",
+ "turkishFontType":3,
+ "arabicText":"GO ON ~Into the Future~",
+ "arabicFontType":3,
+ "dutchText":"GO ON ~Into the Future~",
+ "dutchFontType":3,
+ "chineseSText":"GO ON ~朝向未来~",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_20tftr",
+ "japaneseText":"太鼓 de タイムトラベル2022 / steμ respecting タイムトラベラーズ",
+ "englishUsText":"Taiko de Time Travel 2022 / steμ respecting Time Travelers",
+ "englishUsFontType":3,
+ "frenchText":"Taiko de Time Travel 2022 / steμ respecting Time Travelers",
+ "frenchFontType":3,
+ "italianText":"Taiko de Time Travel 2022 / steμ respecting Time Travelers",
+ "italianFontType":3,
+ "germanText":"Taiko de Time Travel 2022 / steμ respecting Time Travelers",
+ "germanFontType":3,
+ "spanishText":"Taiko de Time Travel 2022 / steμ respecting Time Travelers",
+ "spanishFontType":3,
+ "chineseTText":"Taiko de Time Travel 2022 / steμ respecting Time Travelers",
+ "chineseTFontType":1,
+ "koreanText":"Taiko de Time Travel 2022 / steμ respecting Time Travelers",
+ "koreanFontType":2,
+ "portugueseText":"Taiko de Time Travel 2022 / steμ respecting Time Travelers",
+ "portugueseFontType":3,
+ "russianText":"Taiko de Time Travel 2022 / steμ respecting Time Travelers",
+ "russianFontType":3,
+ "turkishText":"Taiko de Time Travel 2022 / steμ respecting Time Travelers",
+ "turkishFontType":3,
+ "arabicText":"Taiko de Time Travel 2022 / steμ respecting Time Travelers",
+ "arabicFontType":3,
+ "dutchText":"Taiko de Time Travel 2022 / steμ respecting Time Travelers",
+ "dutchFontType":3,
+ "chineseSText":"Taiko de Time Travel 2022 / steμ respecting Time Travelers",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_20tftr",
+ "japaneseText":"",
+ "englishUsText":"GO ON ~未来へ~",
+ "englishUsFontType":0,
+ "frenchText":"GO ON ~未来へ~",
+ "frenchFontType":0,
+ "italianText":"GO ON ~未来へ~",
+ "italianFontType":0,
+ "germanText":"GO ON ~未来へ~",
+ "germanFontType":0,
+ "spanishText":"GO ON ~未来へ~",
+ "spanishFontType":0,
+ "chineseTText":"GO ON ~未来へ~",
+ "chineseTFontType":0,
+ "koreanText":"GO ON ~未来へ~",
+ "koreanFontType":0,
+ "portugueseText":"GO ON ~未来へ~",
+ "portugueseFontType":0,
+ "russianText":"GO ON ~未来へ~",
+ "russianFontType":0,
+ "turkishText":"GO ON ~未来へ~",
+ "turkishFontType":0,
+ "arabicText":"GO ON ~未来へ~",
+ "arabicFontType":0,
+ "dutchText":"GO ON ~未来へ~",
+ "dutchFontType":0,
+ "chineseSText":"GO ON ~未来へ~",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_mgwrt",
+ "japaneseText":"季曲",
+ "englishUsText":"KIKYOKU",
+ "englishUsFontType":3,
+ "frenchText":"KIKYOKU",
+ "frenchFontType":3,
+ "italianText":"KIKYOKU",
+ "italianFontType":3,
+ "germanText":"KIKYOKU",
+ "germanFontType":3,
+ "spanishText":"KIKYOKU",
+ "spanishFontType":3,
+ "chineseTText":"季曲",
+ "chineseTFontType":1,
+ "koreanText":"KIKYOKU",
+ "koreanFontType":2,
+ "portugueseText":"KIKYOKU",
+ "portugueseFontType":3,
+ "russianText":"KIKYOKU",
+ "russianFontType":3,
+ "turkishText":"KIKYOKU",
+ "turkishFontType":3,
+ "arabicText":"KIKYOKU",
+ "arabicFontType":3,
+ "dutchText":"KIKYOKU",
+ "dutchFontType":3,
+ "chineseSText":"季曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_mgwrt",
+ "japaneseText":"~Seasons of Asia~",
+ "englishUsText":"~Seasons of Asia~",
+ "englishUsFontType":3,
+ "frenchText":"~Seasons of Asia~",
+ "frenchFontType":3,
+ "italianText":"~Seasons of Asia~",
+ "italianFontType":3,
+ "germanText":"~Seasons of Asia~",
+ "germanFontType":3,
+ "spanishText":"~Seasons of Asia~",
+ "spanishFontType":3,
+ "chineseTText":"~Seasons of Asia~",
+ "chineseTFontType":1,
+ "koreanText":"~Seasons of Asia~",
+ "koreanFontType":2,
+ "portugueseText":"~Seasons of Asia~",
+ "portugueseFontType":3,
+ "russianText":"~Seasons of Asia~",
+ "russianFontType":3,
+ "turkishText":"~Seasons of Asia~",
+ "turkishFontType":3,
+ "arabicText":"~Seasons of Asia~",
+ "arabicFontType":3,
+ "dutchText":"~Seasons of Asia~",
+ "dutchFontType":3,
+ "chineseSText":"~Seasons of Asia~",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_mgwrt",
+ "japaneseText":"",
+ "englishUsText":"季曲",
+ "englishUsFontType":0,
+ "frenchText":"季曲",
+ "frenchFontType":0,
+ "italianText":"季曲",
+ "italianFontType":0,
+ "germanText":"季曲",
+ "germanFontType":0,
+ "spanishText":"季曲",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"季曲",
+ "koreanFontType":0,
+ "portugueseText":"季曲",
+ "portugueseFontType":0,
+ "russianText":"季曲",
+ "russianFontType":0,
+ "turkishText":"季曲",
+ "turkishFontType":0,
+ "arabicText":"季曲",
+ "arabicFontType":0,
+ "dutchText":"季曲",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"osirase_v1_7_0_title",
+ "japaneseText":"ソフトウェアのアップデートを行いました(Ver.1.7.0)",
+ "englishUsText":"The game has been updated (Ver.1.7.0)",
+ "englishUsFontType":3,
+ "frenchText":"Mise à jour du logiciel (Ver.1.7.0)",
+ "frenchFontType":3,
+ "italianText":"Abbiamo aggiornato il gioco. (Ver.1.7.0)",
+ "italianFontType":3,
+ "germanText":"Die Software wurde aktualisiert (Ver.1.7.0)",
+ "germanFontType":3,
+ "spanishText":"Novedades de la última actualización (Ver.1.7.0)",
+ "spanishFontType":3,
+ "chineseTText":"本軟體已更新(Ver.1.7.0)",
+ "chineseTFontType":1,
+ "koreanText":"소프트웨어를 업데이트했습니다.(Ver.1.7.0)",
+ "koreanFontType":2,
+ "portugueseText":"O software foi atualizado (Ver.1.7.0)",
+ "portugueseFontType":2,
+ "russianText":"Программное обеспечение обновлено (версия 1.7.0)",
+ "russianFontType":2,
+ "turkishText":"Oyun güncellendi (Ver.1.7.0)",
+ "turkishFontType":2,
+ "arabicText":"لقد تم تحديث اللعبة (نسخة 1.7.0)",
+ "arabicFontType":2,
+ "dutchText":"De software is geüpdatet. (Ver.1.7.0)",
+ "dutchFontType":2,
+ "chineseSText":"本软件已更新(Ver.1.7.0)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"osirase_v1_7_0",
+ "japaneseText":"太鼓の達人 Pop Tap Beat をプレイ頂き、ありがとうございます!\n\nソフトウェアのアップデートを行いました(Ver.1.7.0)\n\n・ゲーム体験の向上にご協力を!\nお客様のプレイ情報を匿名で集めるデータ収集機能を追加しました。\n集めたデータは本タイトルでのみ今後の運営に活用させて頂きます。\nご協力頂けるとうれしいです!\n\n・いくつかの不具合の修正、パフォーマンス調整を行いました。\n\n★新曲追加★\n1970年代後半から1980年代にかけて日本で流行した楽曲の一部が\n「シティ・ポップ」 と呼ばれ、海外でも人気を呼んでいます。\nそんなシティ・ポップの中から「プラスティック・ラブ」 が太鼓の達人\nシリーズ初登場!\n\nヱヴァンゲリヲン新劇場版:序 の劇伴曲から「Battaille Décisive」 が登場!\nヤシマ作戦の興奮を太鼓の達人で体験してください。\n\nその他、ナムコオリジナル曲を含めて5曲を追加しました。",
+ "englishUsText":"Thank you for playing Taiko no Tatsujin Pop Tap Beat!\n\n The game has been updated (Ver.1.7.0).\n\n ・Help us improve!\n A feature that gathers anonymous game play data has been added. Only Taiko no Tatsujin Pop Tap Beat game play data will be collected and analyzed to help us improve the game experience. We appreciate your cooperation!\n\n ・Other minor improvements and bug fixes.\n\n ★New Songs Added★\n From the late 1970s to the 1980s, a genre of music called \"City Pop\" became popular in both Japan and overseas. In this update, the City Pop song \"PLASTIC LOVE\" makes its Taiko no Tatsujin series debut!\n\n \"Battaille Décisive\" from Evangelion: 1.0 You Are (Not) Alone is also newly available. Relive the tension of Operation Yashima in Taiko no Tatsujin!\n\n In total, five new songs have been added, including two NAMCO Original songs.",
+ "englishUsFontType":3,
+ "frenchText":"Merci de jouer à Taiko no Tatsujin Pop Tap Beat !\n\n Mise à jour du logiciel (Ver.1.7.0)\n\n - Aidez-nous à améliorer votre expérience de jeu !\n Vous pouvez désormais nous permettre de collecter vos données de jeu. Seules les données de Taiko no Tatsujin Pop Tap Beat seront collectées dans le cadre d'analyses ultérieures.\n Nous comptons sur vous !\n\n - Correction de certains bugs et équilibrage des performances.\n\n ★ Ajout de nouvelles chansons ★\n Plusieurs de ces nouvelles chansons proviennent du genre musical « city pop ». Ce genre, apparu au Japon vers la fin des années 1970, est devenu populaire à travers le monde, et a atteint son paroxysme dans les années 80. Découvrez ainsi pour la première fois dans Taiko no Tatsujin la chanson issue de la city pop « PLASTIC LOVE » !\n\n Découvrez la chanson « Battaille Décisive » de Evangelion: 1.0 You are (Not) Alone ! Plongez au cœur de l'Opération Yashima avec Taiko no Tatsujin !\n\n Au total, 5 chansons ont été ajoutées, dont des titres NAMCO Original.",
+ "frenchFontType":3,
+ "italianText":"Grazie per aver giocato a Taiko no Tatsujin\nPop Tap Beat!\n\nAbbiamo aggiornato il gioco. (Ver. 1.7.0)\n\nAiutaci a migliorare il gioco!\n Abbiamo aggiunto una funzione per raccogliere i tuoi dati di gioco in forma anonima.\n Saranno limitati a questo titolo e li useremo per i suoi sviluppi futuri.\n Ti ringraziamo se vorrai fornirci l'accesso ai tuoi dati!\n\nCorrezione di vari bug\ne miglioramenti delle prestazioni.\n\nNuovi brani\n C'è un genere di musica andato di moda in Giappone dagli anni '70 agli anni '80 e noto in tutto il mondo con il nome di \"city pop\".\n Il genere fa la sua prima apparizione in Taiko no Tatsujin grazie a \"Plastic Love\"!\n\n Da \"EVANGELION 1.0 YOU ARE(NOT)ALONE\" arriva \"Battaille Décisive\"!\n Prova tutta l'emozione dell'operazione Yashima su Taiko no Tatsujin!\n\n Sono stati aggiunti 5 brani, incluse alcune tracce originali Namco.",
+ "italianFontType":3,
+ "germanText":"Vielen Dank fürs Spielen von Taiko no Tatsujin Pop Tap Beat! \n \n Die Software wurde aktualisiert (Ver.1.7.0).\n \n ・Hilf bei der Verbesserung d. Spielerlebnisses\n Wir haben eine Datenerfassungsfunktion hinzugefügt, die deine Spieldaten anonym erfasst. Die gesammelten Daten werden nur für die Weiterentwicklung dieses Titels verwendet. Wir wären dir für deine Kooperation sehr dankbar. \n \n ・Fehlerbehebungen und Leistungsanpassungen\n \n ★Neue Songs★\n Eine Musikrichtung, die in Japan vom Ende der 1970er bis 1980er Jahre populär war, und auch im Ausland Beliebtheit genoß, ist der City Pop. Ein beliebter Song des City Pop, PLASTIC LOVE, ist nun erstmals in Taiko no Tatsujin verfügbar. \n \n Außerdem verfügbar: \"Battaille Décisive\" aus dem Soundtrack von \"EVANGELION 1.0 YOU ARE(NOT)ALONE\". Spüre hautnah den Nervenkitzel der Operation Yashima in Taiko no Tatsujin. \n \n Insgesamt wurden 5 neue Songs hinzugefügt, darunter NAMCO-Originale.",
+ "germanFontType":3,
+ "spanishText":"¡Gracias por jugar a Taiko no Tatsujin Pop Tap Beat!\n\nNovedades de la última actualización (ver. 1.7.0)\n\n¡Ayúdanos a mejorar la experiencia de juego!\n Hemos añadido una función de recopilación de datos que anónimamente recopila información sobre tu juego. Los datos recopilados serán usados para este juego solo y nos servirá para futuras actualizaciones. ¡Nos alegraría mucho si nos ayudaras!\n\nTambién hemos arreglado otros errores y mejorado el rendimiento\n\n★¡Nuevas canciones!★\n Música de la segunda mitad de los setenta y ochenta de Japón llamada City pop ha estado ganando popularidad alrededor del mundo. ¡La canción PLASTIC LOVE hace su primera aparición en Taiko no Tatsujin!\n\n ¡Battaille Décisive de Evangelion: 1.0 You Are (Not) Alone! ¡Siente la emoción de la Operación Yashima en Taiko no Tatsujin!\n\n ¡En total se añadieron otras 5 canciones incluyendo canciones originales de Namco!",
+ "spanishFontType":3,
+ "chineseTText":"感謝您遊玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本軟體已更新(Ver.1.7.0)。\n\n‧請協助提升遊戲體驗!\n 已追加收集資料功能,會以匿名方式收集玩家的遊玩資料。\n 所收集的資料只會在本遊戲中用作今後營運。\n 希望您能協助一起改善遊戲體驗!\n\n‧已修正部分異常以及調整遊戲表現。\n\n★追加新曲★\n 從1970年代後半到1980年代於日本流行的一部分樂曲\n 被稱為「City Pop」,在海外也很受歡迎。\n 而從City Pop樂曲精選的《PLASTIC LOVE》 \n 將首次在太鼓之達人系列登場!\n\n 從《福音戰士 新劇場版:序》 配樂精選的\n 《Battaille Décisive》 即將登場!\n 請在太鼓之達人體驗屋島作戰的激昂感。\n\n 另外已追加包含NAMCO原創音樂曲在內的5首樂曲。",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 Pop Tap Beat를 플레이해주셔서 감사합니다!\n\n소프트웨어를 업데이트했습니다.(Ver.1.7.0)\n\n・더 나은 게임 플레이를 위해 협조해 주시기 바랍니다!\n 고객님의 게임 플레이 정보를 익명으로 수집하는 데이터 수집 기능을 추가했습니다.\n 태고의 달인 Pop Tap Beat의 데이터만 수집되며, 향후 게임 운영을 위해 이용됩니다.\n 데이터 수집에 협조해 주시기 바랍니다!\n\n・그 외 오류를 수정하고 퍼포먼스를 조정했습니다.\n\n★신곡 추가★\n 1970년대 후반부터 1980년대에 걸쳐 일본에서 유행했던 곡 중 일부가\n '시티 팝'이라 불리며 해외에서도 인기를 끌고 있습니다.\n 이 시티 팝 중 'PLASTIC LOVE'가 태고의 달인 시리즈 최초로 등장!\n\n 영화 \"에반게리온: 서\" 배경 음악 'Battaille Décisive'가 등장!\n 야시마 작전의 흥분을 태고의 달인에서 느껴보세요.\n\n 그 밖에도 남코 오리지널 곡을 비롯한 5개 곡을 추가했습니다.",
+ "koreanFontType":2,
+ "portugueseText":"Obrigado por jogar Taiko no Tatsujin Pop Tap Beat!\n\n O software foi atualizado (Ver.1.7.0). \n\n ・ Ajude-nos a melhorar a experiência do jogo!\n Adicionamos uma funcionalidade que permite coletar as informações de jogo dos usuários de forma anônima. Apenas dados deste título serão coletados e analisados para melhorar o jogo. Ficamos muito gratos por sua cooperação!\n\n ・ Outras pequenas melhorias e correções de erros\n\n ★ Adição de novas músicas ★ \n Muitas canções japonesas famosas do final da década de 70 até a década de 80 se tornaram populares inclusive no estrangeiro e receberam o nome \"City Pop\". Nesta atualização, \"PLASTIC LOVE\", uma canção de \"City Pop\", aparece pela primeira vez na série Taiko no Tatsujin!\n\n \"Battaille Décisive\" do filme “EVANGELION 1.0 YOU ARE(NOT)ALONE\" também foi adicionada! Experimente a emoção da Operação Yashima com Taiko no Tatsujin.\n\n Adicionamos 5 canções no toal, incluindo canções originais da NAMCO.",
+ "portugueseFontType":2,
+ "russianText":"Спасибо, что играете в Taiko no Tatsujin Pop Tap Beat!\n\nПрограммное обеспечение обновлено (версия 1.7.0)\n\n ・Помогите нам улучшить игровой процесс!\n Добавлена функция анонимного сбора игровой информации пользователей.\n Собранные данные предназначаются только для бизнес-целей данной игры.\n Мы будем очень признательны за ваше сотрудничество!\n\n ・Исправлены ошибки, и улучшена производительность.\n\n★Добавлены новые песни★\n Ставший популярным в Японии с конца 1970-х по 1980-е годы так называемый City Pop стремительно набирает популярность и за рубежом.\n Песня в этом жанре — PLASTIC LOVE — впервые появилась в серии игр Taiko no Tatsujin!\n\n Добавлен трек из аниме «EVANGELION 1.0 YOU ARE(NOT)ALONE»: Battaille Décisive!\n Почувствуйте всю мощь операции «Ясима» с Taiko no Tatsujin.\n\n Кроме того, были добавлены 5 песен, включая 2 оригинальных трека от NAMCO.",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat'i oynadığınız için teşekkür ederiz!\n\n Oyun güncellendi (Ver.1.7.0).\n\n ・Gelişmemize yardım edin!\n Anonim oynanış verilerini toplayan bir özellik eklendi. Sadece Taiko no Tatsujin Pop Tap Beat oynanış verisi toplanacak ve oyun deneyimini geliştirmemiz için bize yardımcı olması amacıyla analiz edilecek. İşbirliğiniz için teşekkürler!\n\n ・Diğer iyileştirme ve hata onarımları\n\n ★Yeni Şarkılar Eklendi★\n 1970'lerin sonundan 1980'lere kadar, \"City Pop\" olarak isimlendirilen müzik türü Japonya ve tüm dünyada popüler hale geldi. Bu güncellemede, \"PLASTIC LOVE\" isimli City Pop şarkısı, Taiko no Tatsujin serisinde ilk kez yer alıyor!\n\n Evangelion'dan \"Battaille Décisive\": 1.0 You Are (Not) Alone da şimdi yeni içerikler arasında. Taiko no Tatsujin'de Yashima Operasyonunun gerginliğini üzerinizden atın!\n\nToplamda NAMCO Orijinal şarkısı da dahil olacak şekilde beş yeni şarkı eklendi.",
+ "turkishFontType":2,
+ "arabicText":"نشكرك على لعب Taiko no Tatsujin Pop Tap Beat!\n\n لقد تم تحديث اللعبة (نسخة 1.7.0).\n\n ・ساعدنا لنتحسن! \n تمت إضافة خاصية تقوم بجمع بيانات اللَعِب بدون الإفصاح عن هويتك. سيتم جمع وتحليل بيانات لعب Taiko no Tatsujin Pop Tap Beat فقط لمساعدتنا في تحسين تجربة اللعب. نُقَدِّر تعاونك!\n\n ・تحسينات طفيفة أخرى وإصلاح للأخطاء.\n\n ★تمت إضافة أغانٍ جديدة★[1]\n من أواخر السبعينات إلى الثمانينات، أصبح هناك نوع من الموسيقى شائعًا في اليابان وكذلك خارجها يسمى \"City Pop\". في هذا التحديث، سيكون الظهور الأول لأغنية \"PLASTIC LOVE\" من نوع الـ City Pop في سلسلة Taiko no Tatsujin! \n\n \"Battaille Décisive\" من Evangelion: 1.0 You Are (Not) Alone أصبحت متاحة الآن كذلك. عش من جديد توتُّر Operation Yashima في Taiko no Tatsujin!\n\nفي المجموع، تمت إضافة خمس أغنيات جديدة، بما في ذلك أغنيتان أصليتان من NAMCO.",
+ "arabicFontType":2,
+ "dutchText":"Bedankt dat je Taiko no Tatsujin Pop Tap Beat speelt!\n\n De software is geüpdatet. (Ver.1.7.0)\n\n Help ons het spel te verbeteren!\n Er is een functie toegevoegd waarmee op anonieme wijze gameplay-data kan worden verzameld. Deze data zal uitsluitend worden gebruikt voor het verbeteren van dit specifieke spel. Jouw medewerking zou ontzettend gewaardeerd worden!\n\n Er zijn verschillende bugs opgelost en kleine verbeteringen doorgevoerd.\n\n ★Nieuwe liedjes★\n Van halverwege de jaren 70 tot het einde van de jaren 80 behoorden veel van de populaire liedjes in Japan tot het genre 'city pop'. Daarnaast heeft het genre ook liefhebbers over de hele wereld. Het bekende city pop liedje \"PLASTIC LOVE\" is nu toegevoegd aan het Taiko no Tatsujin repertoire!\n\n Het lied \"Battaille Décisive\" uit de film Evangelion: 1.0 You Are (Not) Alone is nu speelbaar! Ervaar de spanning van Operatie Yashima nu ook met Taiko no Tatsujin.\n\n Verder zijn er 5 nieuwe liedjes toegevoegd, o.a. 2 NAMCO Original liedjes.",
+ "dutchFontType":2,
+ "chineseSText":"感谢您游玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本软件已更新(Ver.1.7.0)。\n\n‧请协助提升游戏体验!\n 已追加收集数据功能,会以匿名方式收集玩家的游玩数据。\n 所收集的数据只会用于本游戏的今后运营。\n 希望您能协助一起改善游戏体验!\n\n‧已修正部分异常并调整游戏表现。\n\n★追加新曲★\n 从1970年代后半到1980年代于日本流行的一部分乐曲\n 被称为“City Pop”,在海外也很受欢迎。\n 而从City Pop乐曲精选的《PLASTIC LOVE》\n 将首次在太鼓之达人系列登场!\n\n 从《福音战士 新剧场版:序》 配乐精选的\n 《Battaille Décisive》 即将登场!\n 请在太鼓之达人体验屋岛作战的激昂感。\n\n 另外已追加包含NAMCO原创音乐曲在内的5首乐曲。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_powlov",
+ "japaneseText":"The Power Of Love",
+ "englishUsText":"The Power Of Love",
+ "englishUsFontType":3,
+ "frenchText":"The Power Of Love",
+ "frenchFontType":3,
+ "italianText":"The Power Of Love",
+ "italianFontType":3,
+ "germanText":"The Power Of Love",
+ "germanFontType":3,
+ "spanishText":"The Power Of Love",
+ "spanishFontType":3,
+ "chineseTText":"The Power Of Love",
+ "chineseTFontType":1,
+ "koreanText":"The Power Of Love",
+ "koreanFontType":2,
+ "portugueseText":"The Power Of Love",
+ "portugueseFontType":3,
+ "russianText":"The Power Of Love",
+ "russianFontType":3,
+ "turkishText":"The Power Of Love",
+ "turkishFontType":3,
+ "arabicText":"The Power Of Love",
+ "arabicFontType":3,
+ "dutchText":"The Power Of Love",
+ "dutchFontType":3,
+ "chineseSText":"The Power Of Love",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_powlov",
+ "japaneseText":"「バック・トゥ・ザ・フューチャー」より",
+ "englishUsText":"From \" BACK TO THE FUTURE \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" BACK TO THE FUTURE \"",
+ "frenchFontType":3,
+ "italianText":"Da \" BACK TO THE FUTURE \"",
+ "italianFontType":3,
+ "germanText":"Aus \" BACK TO THE FUTURE \"",
+ "germanFontType":3,
+ "spanishText":"De \" BACK TO THE FUTURE \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「BACK TO THE FUTURE」",
+ "chineseTFontType":1,
+ "koreanText":"\"BACK TO THE FUTURE\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" BACK TO THE FUTURE \"",
+ "portugueseFontType":3,
+ "russianText":"From \" BACK TO THE FUTURE \"",
+ "russianFontType":3,
+ "turkishText":"From \" BACK TO THE FUTURE \"",
+ "turkishFontType":3,
+ "arabicText":"From \" BACK TO THE FUTURE \"",
+ "arabicFontType":3,
+ "dutchText":"From \" BACK TO THE FUTURE \"",
+ "dutchFontType":3,
+ "chineseSText":"出自 \" BACK TO THE FUTURE \"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_powlov",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_sonic1",
+ "japaneseText":"ソニック・ザ・ヘッジホッグ メドレー",
+ "englishUsText":"SONIC THE HEDGEHOG Medley",
+ "englishUsFontType":3,
+ "frenchText":"SONIC THE HEDGEHOG Medley",
+ "frenchFontType":3,
+ "italianText":"SONIC THE HEDGEHOG Medley",
+ "italianFontType":3,
+ "germanText":"SONIC THE HEDGEHOG Medley",
+ "germanFontType":3,
+ "spanishText":"SONIC THE HEDGEHOG Medley",
+ "spanishFontType":3,
+ "chineseTText":"索尼克 組曲",
+ "chineseTFontType":1,
+ "koreanText":"소닉 더 헤지혹 메들리",
+ "koreanFontType":2,
+ "portugueseText":"SONIC THE HEDGEHOG Medley",
+ "portugueseFontType":3,
+ "russianText":"SONIC THE HEDGEHOG Medley",
+ "russianFontType":3,
+ "turkishText":"SONIC THE HEDGEHOG Medley",
+ "turkishFontType":3,
+ "arabicText":"SONIC THE HEDGEHOG Medley",
+ "arabicFontType":3,
+ "dutchText":"SONIC THE HEDGEHOG Medley",
+ "dutchFontType":3,
+ "chineseSText":"刺猬索尼克 组曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_sonic1",
+ "japaneseText":"SONIC THE HEDGEHOG",
+ "englishUsText":"SONIC THE HEDGEHOG",
+ "englishUsFontType":3,
+ "frenchText":"SONIC THE HEDGEHOG",
+ "frenchFontType":3,
+ "italianText":"SONIC THE HEDGEHOG",
+ "italianFontType":3,
+ "germanText":"SONIC THE HEDGEHOG",
+ "germanFontType":3,
+ "spanishText":"SONIC THE HEDGEHOG",
+ "spanishFontType":3,
+ "chineseTText":"SONIC THE HEDGEHOG",
+ "chineseTFontType":1,
+ "koreanText":"SONIC THE HEDGEHOG",
+ "koreanFontType":2,
+ "portugueseText":"SONIC THE HEDGEHOG",
+ "portugueseFontType":3,
+ "russianText":"SONIC THE HEDGEHOG",
+ "russianFontType":3,
+ "turkishText":"SONIC THE HEDGEHOG",
+ "turkishFontType":3,
+ "arabicText":"SONIC THE HEDGEHOG",
+ "arabicFontType":3,
+ "dutchText":"SONIC THE HEDGEHOG",
+ "dutchFontType":3,
+ "chineseSText":"SONIC THE HEDGEHOG",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_sonic1",
+ "japaneseText":"",
+ "englishUsText":"ソニック・ザ・ヘッジホッグ メドレー",
+ "englishUsFontType":0,
+ "frenchText":"ソニック・ザ・ヘッジホッグ メドレー",
+ "frenchFontType":0,
+ "italianText":"ソニック・ザ・ヘッジホッグ メドレー",
+ "italianFontType":0,
+ "germanText":"ソニック・ザ・ヘッジホッグ メドレー",
+ "germanFontType":0,
+ "spanishText":"ソニック・ザ・ヘッジホッグ メドレー",
+ "spanishFontType":0,
+ "chineseTText":"ソニック・ザ・ヘッジホッグ メドレー",
+ "chineseTFontType":0,
+ "koreanText":"ソニック・ザ・ヘッジホッグ メドレー",
+ "koreanFontType":0,
+ "portugueseText":"ソニック・ザ・ヘッジホッグ メドレー",
+ "portugueseFontType":0,
+ "russianText":"ソニック・ザ・ヘッジホッグ メドレー",
+ "russianFontType":0,
+ "turkishText":"ソニック・ザ・ヘッジホッグ メドレー",
+ "turkishFontType":0,
+ "arabicText":"ソニック・ザ・ヘッジホッグ メドレー",
+ "arabicFontType":0,
+ "dutchText":"ソニック・ザ・ヘッジホッグ メドレー",
+ "dutchFontType":0,
+ "chineseSText":"ソニック・ザ・ヘッジホッグ メドレー",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_klwind",
+ "japaneseText":"The Windmill Song",
+ "englishUsText":"The Windmill Song",
+ "englishUsFontType":3,
+ "frenchText":"The Windmill Song",
+ "frenchFontType":3,
+ "italianText":"The Windmill Song",
+ "italianFontType":3,
+ "germanText":"The Windmill Song",
+ "germanFontType":3,
+ "spanishText":"The Windmill Song",
+ "spanishFontType":3,
+ "chineseTText":"The Windmill Song",
+ "chineseTFontType":1,
+ "koreanText":"The Windmill Song",
+ "koreanFontType":2,
+ "portugueseText":"The Windmill Song",
+ "portugueseFontType":3,
+ "russianText":"The Windmill Song",
+ "russianFontType":3,
+ "turkishText":"The Windmill Song",
+ "turkishFontType":3,
+ "arabicText":"The Windmill Song",
+ "arabicFontType":3,
+ "dutchText":"The Windmill Song",
+ "dutchFontType":3,
+ "chineseSText":"The Windmill Song",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_klwind",
+ "japaneseText":"「風のクロノア」より",
+ "englishUsText":"From \" KLONOA \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" KLONOA \"",
+ "frenchFontType":3,
+ "italianText":"Da \" KLONOA \"",
+ "italianFontType":3,
+ "germanText":"Aus \" KLONOA \"",
+ "germanFontType":3,
+ "spanishText":"De \" KLONOA \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「風之少年 克羅諾亞」",
+ "chineseTFontType":1,
+ "koreanText":"\"바람의 크로노아\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" KLONOA \"",
+ "portugueseFontType":3,
+ "russianText":"From \" KLONOA \"",
+ "russianFontType":3,
+ "turkishText":"From \" KLONOA \"",
+ "turkishFontType":3,
+ "arabicText":"From \" KLONOA \"",
+ "arabicFontType":3,
+ "dutchText":"From \" KLONOA \"",
+ "dutchFontType":3,
+ "chineseSText":"出自 \" 风之少年 克罗诺亚 \"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_klwind",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_nanori",
+ "japaneseText":"名乗り(天上)",
+ "englishUsText":"NANORI (TENJOU)",
+ "englishUsFontType":3,
+ "frenchText":"NANORI (TENJOU)",
+ "frenchFontType":3,
+ "italianText":"NANORI (TENJOU)",
+ "italianFontType":3,
+ "germanText":"NANORI (TENJOU)",
+ "germanFontType":3,
+ "spanishText":"NANORI (TENJOU)",
+ "spanishFontType":3,
+ "chineseTText":"報上大名(天上篇)",
+ "chineseTFontType":1,
+ "koreanText":"NANORI (TENJOU)",
+ "koreanFontType":2,
+ "portugueseText":"NANORI (TENJOU)",
+ "portugueseFontType":3,
+ "russianText":"NANORI (TENJOU)",
+ "russianFontType":3,
+ "turkishText":"NANORI (TENJOU)",
+ "turkishFontType":3,
+ "arabicText":"NANORI (TENJOU)",
+ "arabicFontType":3,
+ "dutchText":"NANORI (TENJOU)",
+ "dutchFontType":3,
+ "chineseSText":"报上大名(天上篇)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_nanori",
+ "japaneseText":"「未来忍者」より",
+ "englishUsText":"From \" MIRAI NINJA \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" MIRAI NINJA \"",
+ "frenchFontType":3,
+ "italianText":"Da \" MIRAI NINJA \"",
+ "italianFontType":3,
+ "germanText":"Aus \" MIRAI NINJA \"",
+ "germanFontType":3,
+ "spanishText":"De \" MIRAI NINJA \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「未來忍者」",
+ "chineseTFontType":1,
+ "koreanText":"\"MIRAI NINJA\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" MIRAI NINJA \"",
+ "portugueseFontType":3,
+ "russianText":"From \" MIRAI NINJA \"",
+ "russianFontType":3,
+ "turkishText":"From \" MIRAI NINJA \"",
+ "turkishFontType":3,
+ "arabicText":"From \" MIRAI NINJA \"",
+ "arabicFontType":3,
+ "dutchText":"From \" MIRAI NINJA \"",
+ "dutchFontType":3,
+ "chineseSText":"出自 \" 未来忍者 \"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_nanori",
+ "japaneseText":"",
+ "englishUsText":"名乗り(天上)",
+ "englishUsFontType":0,
+ "frenchText":"名乗り(天上)",
+ "frenchFontType":0,
+ "italianText":"名乗り(天上)",
+ "italianFontType":0,
+ "germanText":"名乗り(天上)",
+ "germanFontType":0,
+ "spanishText":"名乗り(天上)",
+ "spanishFontType":0,
+ "chineseTText":"名乗り(天上)",
+ "chineseTFontType":0,
+ "koreanText":"名乗り(天上)",
+ "koreanFontType":0,
+ "portugueseText":"名乗り(天上)",
+ "portugueseFontType":0,
+ "russianText":"名乗り(天上)",
+ "russianFontType":0,
+ "turkishText":"名乗り(天上)",
+ "turkishFontType":0,
+ "arabicText":"名乗り(天上)",
+ "arabicFontType":0,
+ "dutchText":"名乗り(天上)",
+ "dutchFontType":0,
+ "chineseSText":"名乗り(天上)",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_zaba",
+ "japaneseText":"未来への鍵",
+ "englishUsText":"MIRAI ENO KAGI",
+ "englishUsFontType":3,
+ "frenchText":"MIRAI ENO KAGI",
+ "frenchFontType":3,
+ "italianText":"MIRAI ENO KAGI",
+ "italianFontType":3,
+ "germanText":"MIRAI ENO KAGI",
+ "germanFontType":3,
+ "spanishText":"MIRAI ENO KAGI",
+ "spanishFontType":3,
+ "chineseTText":"MIRAI ENO KAGI",
+ "chineseTFontType":1,
+ "koreanText":"MIRAI ENO KAGI",
+ "koreanFontType":2,
+ "portugueseText":"MIRAI ENO KAGI",
+ "portugueseFontType":3,
+ "russianText":"MIRAI ENO KAGI",
+ "russianFontType":3,
+ "turkishText":"MIRAI ENO KAGI",
+ "turkishFontType":3,
+ "arabicText":"MIRAI ENO KAGI",
+ "arabicFontType":3,
+ "dutchText":"MIRAI ENO KAGI",
+ "dutchFontType":3,
+ "chineseSText":"MIRAI ENO KAGI",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_zaba",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_zaba",
+ "japaneseText":"",
+ "englishUsText":"未来への鍵",
+ "englishUsFontType":0,
+ "frenchText":"未来への鍵",
+ "frenchFontType":0,
+ "italianText":"未来への鍵",
+ "italianFontType":0,
+ "germanText":"未来への鍵",
+ "germanFontType":0,
+ "spanishText":"未来への鍵",
+ "spanishFontType":0,
+ "chineseTText":"未来への鍵",
+ "chineseTFontType":0,
+ "koreanText":"未来への鍵",
+ "koreanFontType":0,
+ "portugueseText":"未来への鍵",
+ "portugueseFontType":0,
+ "russianText":"未来への鍵",
+ "russianFontType":0,
+ "turkishText":"未来への鍵",
+ "turkishFontType":0,
+ "arabicText":"未来への鍵",
+ "arabicFontType":0,
+ "dutchText":"未来への鍵",
+ "dutchFontType":0,
+ "chineseSText":"未来への鍵",
+ "chineseSFontType":0
+ },
+ {
+ "key":"osirase_v1_8_0",
+ "japaneseText":"太鼓の達人 Pop Tap Beat をプレイ頂き、ありがとうございます!\n\nソフトウェアのアップデートを行いました(Ver.1.8.0)\n\n・いくつかの不具合の修正、パフォーマンス調整を行いました。\n\n★新曲追加★\n1991年に誕生した音速のハリネズミ「ソニック・ザ・ヘッジホッグ」\nそのアクションゲーム 1作目のタイトルテーマやステージ1の\nグリーンヒルゾーンのテーマなどがメドレーとなって登場!\nステージ中のSEがさらに雰囲気を盛り上げてくれます!\n\nその他、バック・トゥ・ザ・フューチャー「The Power Of Love」や\nゲームミュージック・ナムコオリジナルなど全5曲を追加しました。",
+ "englishUsText":"Thank you for playing Taiko no Tatsujin\nPop Tap Beat!\n \n The game has been updated (Ver.1.8.0).\n \n ・We have carried out various minor\nimprovements and bug fixes.\n \n ★Addition of New Songs★\n First introduced to the world in 1991,\nSonic the Hedgehog has arrived\nin Taiko no Tatsujin! Relive the excitement\nof this beloved action game with a medley\ncontaining the original Intro Theme, the\nGreen Hill Zone theme, and even some\nnostalgic sound effects!\n \n In all, five new songs have been added,\nincluding \"The Power Of Love\" from the\nclassic film, Back to the Future, game\nmusic, and a NAMCO Original song.",
+ "englishUsFontType":3,
+ "frenchText":"Merci de jouer à Taiko no Tatsujin\nPop Tap Beat !\n \nMise à jour du logiciel (Ver.1.8.0)\n \n- Correction de certains bugs et\néquilibrage des performances.\n \n★ Ajout de nouvelles chansons ★\nDécouvrez un medley consacré à\nSONIC THE HEDGEHOG, le hérisson supersonique\nqui a vu le jour en 1991, et reprenant le\nthème de l'écran-titre du tout premier jeu de\nla célèbre série de jeux d’action, ainsi que\nle thème du premier niveau Green Hill Zone !\nAmbiance garantie avec les effets sonores\ndu niveau !\n \nAu total, cinq chansons ont été ajoutées,\ndont un titre NAMCO Original et « The Power\nOf Love » de BACK TO THE FUTURE.",
+ "frenchFontType":3,
+ "italianText":"Grazie per aver giocato a Taiko no Tatsujin\nPop Tap Beat!\n\nAbbiamo aggiornato il gioco. (Ver. 1.8.0)\n\nCorrezione di vari bug\ne miglioramenti delle prestazioni.\n\nNuovi brani\nAbbiamo creato un medley con alcuni\nbrani tratti da SONIC THE HEDGEHOG,\nil primo titolo del porcospino supersonico\nnato nel 1991, incluso il tema di\nGreen Hill Zone, il primo livello del gioco!\nSono presenti anche effetti sonori presi\ndirettamente dal gioco per migliorare ancora\ndi più l'atmosfera!\n\nSono stati aggiunti 5 brani,\nincluso \"The Power of Love\"\nda \"BACK TO THE FUTURE\" e alcune tracce da\nvideogiochi originali Namco.",
+ "italianFontType":3,
+ "germanText":"Vielen Dank fürs Spielen von\nTaiko no Tatsujin Pop Tap Beat!\n \nDie Software wurde aktualisiert (Ver.1.8.0).\n \n・Fehlerbehebungen und Leistungsanpassungen\n \n★Neue Songs★\nDer beliebte Überschall-Igel, Sonic\nthe Hedgehog, der 1991 das Licht\nder Welt erblickte, hat nun seinen\ngroßen Auftritt bei Taiko no Tatsujin!\nMit einem Medley, das unter anderem\nden Titelsong des allerersten Spiels\nder Reihe, die Titelmelodie der\nGreenhill-Zone und sogar nostalgische\nSound-Effekte enthält, lässt du den\nSpielspaß der Sonic-Reihe wiederaufleben!\n \nInsgesamt wurden 5 neue Songs hinzugefügt,\ndarunter \"The Power Of Love\" aus\n\"BACK TO THE FUTURE\", Spielmusik und\nNAMCO-Originale.",
+ "germanFontType":3,
+ "spanishText":"¡Gracias por jugar\na Taiko no Tatsujin Pop Tap Beat!\n\nNovedades de la última actualización\n(ver. 1.8.0)\n\n· Hemos arreglado errores y mejorado\nel rendimiento.\n\n★¡Nuevas canciones!★\n¡Desde 1991, llega a toda pastilla\nel erizo azul, SONIC THE HEDGEHOG!\n¡Un medley con clasicazos como\nel tema principal y Green Hill Zone!\n¡Deja que los efectos de sonido\nte regalen una experiencia alucinante!\n\n¡En total se añadieron 5 canciones,\nincluyendo música de videojuegos,\ntemas originales de Namco y\nla canción The Power Of Love\nde la película BACK TO THE FUTURE!",
+ "spanishFontType":3,
+ "chineseTText":"感謝您遊玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本軟體已更新(Ver.1.8.0)。\n\n‧已修正部分異常以及調整遊戲表現。\n\n★追加新曲★\n1991年誕生的音速小子《索尼克》,\n該動作遊戲第一代的主題曲和第一關\n碧山區域的音樂等樂曲,以組曲方式登場了!\n關卡中的音效會把氣氛炒得更加熱鬧!\n\n另外已追加《BACK TO THE FUTURE》主題曲《The Power Of Love》\n和遊戲音樂、NAMCO原創音樂等,共5首樂曲。",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 Pop Tap Beat를 플레이해주셔서 감사합니다!\n\n소프트웨어를 업데이트했습니다.(Ver.1.8.0)\n\n・그 외 오류를 수정하고 퍼포먼스를 조정했습니다.\n\n★신곡 추가★\n1991년에 탄생한 음속의 고슴도치 '소닉 더 헤지혹'\n그 액션 게임의 첫 번째 타이틀 테마와 스테이지 1\n그린 힐 존의 테마 등이 메들리로 등장!\n스테이지 속 효과음이 분위기를 더욱 흥겹게 만듭니다!\n\n그 밖에도 BACK TO THE FUTURE의 'The Power Of Love'와\n게임 뮤직 남코 오리지널 등 총 5곡을 추가했습니다.",
+ "koreanFontType":2,
+ "portugueseText":"Obrigado por jogar Taiko no Tatsujin\nPop Tap Beat!\n \n O software foi atualizado (Ver.1.8.0). \n \n ・ Outras pequenas melhorias e\ncorreções de erros.\n \n ★ Adição de novas músicas ★ \nSonic the Hedgehog, o porco-espinho\nsupersônico, nasceu em 1991. O tema do título\ndo primeiro jogo e o tema do primeiro nível,\nGreen Hill Zone, estão agora disponíveis\ncomo medley! Os efeitos de som dentro do\nnível contribuem para a atmosfera!\n \nAdicionamos 5 canções, incluindo\n\"The Power Of Love\" de \" BACK TO THE FUTURE \"\ne canções originais da Namco.",
+ "portugueseFontType":2,
+ "russianText":"Спасибо, что играете в\nTaiko no Tatsujin Pop Tap Beat!\n \nИгра обновлена до версии 1.8.0.\n \n・ Исправлены ошибки\nи улучшена производительность.\n \n ★ Добавлены новые песни ★\nВстречайте Соника\nиз игры Sonic the Hedgehog 1991 года\nв Taiko no Tatsujin!\nВспомните этот знаменитый платформер\nблагодаря интро, теме Green Hill Zone\nи нескольким знакомым звуковым эффектам!\n \n Всего было добавлено 5 новых песен,\nвключая The Power Of Love из фильма\n\"BACK TO THE FUTURE\", музыку из игры и\nоригинальную тему NAMCO.",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat'i oynadığın\niçin teşekkürler!\n \nOyun güncellendi (Ver.1.8.0).\n \n・Birtakım küçük iyileştirmeler ve hata\ndüzeltmeleri yapıldı\n \n★Yeni Şarkılar Eklendi★\nDünyaya ilk olarak 1991 yılında tanıtılan,\nSonic the Hedgehog artık\nTaiko no Tatsujin'de!\nOrijinal Giriş Temasını, Green Hill Zone\ntemasını ve hatta bazı nostaljik ses efektlerini\niçeren bir karışımla bu sevilen aksiyon\noyununun heyecanını yeniden yaşa!\n \nKlasik filmden \"The Power Of Love\",\n\"Back to the Future\", oyun müziği ve bir\nNAMCO Orijinal şarkısı da dâhil olmak\nüzere beş yeni şarkı eklendi.",
+ "turkishFontType":2,
+ "arabicText":"نشكرك على لعب Taiko no Tatsujin\nPop Tap Beat!\n \n لقد تم تحديث اللعبة (نسخة 1.8.0).\n \n ・لقد أجرينا تحسينات طفيفة متنوعة\nوإصلاحات للأخطاء.\n \n ★تمت إضافة أغنيات جديدة★\nلقد وصل Sonic the Hedgehog إلى لعبة\nTaiko no Tatsujin! الذي تم تقديمه للعالم\nفي 1991. عش إثارة لعبة الأكشن المحبوبة مع مزيج\nيحتوي على سمة المقدمة الأصلية،\nوسمة Green Hill Zone، بل وحتى بعض التأثيرات\nالصوتية التي تشعرك بالحنين إلى الماضي!\n \nإليكم كل شيء، تمت إضافة خمس أغنيات جديدة،\nبما في ذلك \"The Power Of Love\" من موسيقى\nالفيلم الكلاسيكي ولعبة \"Back to the Future\"، وإحدى\nأغنيات NAMCO الأصلية.",
+ "arabicFontType":2,
+ "dutchText":"Bedankt dat je Taiko no Tatsujin\nPop Tap Beat speelt!\n \n De gamesoftware is geüpdatet (Ver.1.8.0).\n \n ・We hebben verschillende bugs opgelost\nen kleine verbeteringen aangebracht.\n \n ★Nieuwe liedjes★\n Het eerste spel van\nSonic the Hedgehog kwam uit in 1991, en je kunt het nu\nspelen in Taiko no Tatsujin! Herleef de opwinding\nvan dit geliefde action game met een medley\nvan liedjes, zoals de oorspronkelijke titelsong, de achtergrondmuziek van de\nGreen Hill Zone, en zelfs een paar\nnostalgische geluidseffecten!\n \n Er zijn in totaal vijf nieuwe liedjes toegevoegd,\nwaaronder \"The Power Of Love\" uit de\nklassieke film Back to the Future, gamemuziek\nen een oorspronkelijk NAMCO-liedje.",
+ "dutchFontType":2,
+ "chineseSText":"感谢您游玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本软件已更新(Ver.1.8.0)。\n\n·已修正部分异常并调整游戏表现。\n\n★追加新曲★\n1991年诞生的音速小子《刺猬索尼克》,\n该动作游戏第一代主题曲和第一关\n碧山区域的音乐等乐曲,以组曲方式登场了!\n关卡中的音效会把气氛炒得更加热闹!\n\n另外已追加《BACK TO THE FUTURE》主题曲《The Power Of Love》\n和游戏音乐、NAMCO原创音乐等,共5首乐曲。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"osirase_v1_8_0_title",
+ "japaneseText":"ソフトウェアのアップデートを行いました(Ver.1.8.0)",
+ "englishUsText":"The game has been updated (Ver.1.8.0)",
+ "englishUsFontType":3,
+ "frenchText":"Mise à jour du logiciel (Ver.1.8.0)",
+ "frenchFontType":3,
+ "italianText":"Abbiamo aggiornato il gioco. (Ver.1.8.0)",
+ "italianFontType":3,
+ "germanText":"Die Software wurde aktualisiert (Ver.1.8.0)",
+ "germanFontType":3,
+ "spanishText":"Novedades de la última actualización (Ver.1.8.0)",
+ "spanishFontType":3,
+ "chineseTText":"本軟體已更新(Ver.1.8.0)",
+ "chineseTFontType":1,
+ "koreanText":"소프트웨어를 업데이트했습니다.(Ver.1.8.0)",
+ "koreanFontType":2,
+ "portugueseText":"O software foi atualizado (Ver.1.8.0)",
+ "portugueseFontType":2,
+ "russianText":"Программное обеспечение обновлено (версия 1.8.0)",
+ "russianFontType":2,
+ "turkishText":"Oyun güncellendi (Ver.1.8.0)",
+ "turkishFontType":2,
+ "arabicText":"لقد تم تحديث اللعبة (نسخة 1.8.0)",
+ "arabicFontType":2,
+ "dutchText":"De software is geüpdatet. (Ver.1.8.0)",
+ "dutchFontType":2,
+ "chineseSText":"本软件已更新(Ver.1.8.0)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_cbebop",
+ "japaneseText":"Tank!",
+ "englishUsText":"Tank!",
+ "englishUsFontType":3,
+ "frenchText":"Tank!",
+ "frenchFontType":3,
+ "italianText":"Tank!",
+ "italianFontType":3,
+ "germanText":"Tank!",
+ "germanFontType":3,
+ "spanishText":"Tank!",
+ "spanishFontType":3,
+ "chineseTText":"Tank!",
+ "chineseTFontType":1,
+ "koreanText":"Tank!",
+ "koreanFontType":2,
+ "portugueseText":"Tank!",
+ "portugueseFontType":3,
+ "russianText":"Tank!",
+ "russianFontType":3,
+ "turkishText":"Tank!",
+ "turkishFontType":3,
+ "arabicText":"Tank!",
+ "arabicFontType":3,
+ "dutchText":"Tank!",
+ "dutchFontType":3,
+ "chineseSText":"Tank!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_cbebop",
+ "japaneseText":"「カウボーイビバップ」より",
+ "englishUsText":"From \" COWBOY BEBOP \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" COWBOY BEBOP \"",
+ "frenchFontType":3,
+ "italianText":"Da \" COWBOY BEBOP \"",
+ "italianFontType":3,
+ "germanText":"Aus \" COWBOY BEBOP \"",
+ "germanFontType":3,
+ "spanishText":"De \" COWBOY BEBOP \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「COWBOY BEBOP」",
+ "chineseTFontType":1,
+ "koreanText":"\"COWBOY BEBOP\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" COWBOY BEBOP \"",
+ "portugueseFontType":3,
+ "russianText":"From \" COWBOY BEBOP \"",
+ "russianFontType":3,
+ "turkishText":"From \" COWBOY BEBOP \"",
+ "turkishFontType":3,
+ "arabicText":"From \" COWBOY BEBOP \"",
+ "arabicFontType":3,
+ "dutchText":"From \" COWBOY BEBOP \"",
+ "dutchFontType":3,
+ "chineseSText":"出自\"COWBOY BEBOP\"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_cbebop",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_go2",
+ "japaneseText":"GO!!!",
+ "englishUsText":"GO!!!",
+ "englishUsFontType":3,
+ "frenchText":"GO!!!",
+ "frenchFontType":3,
+ "italianText":"GO!!!",
+ "italianFontType":3,
+ "germanText":"GO!!!",
+ "germanFontType":3,
+ "spanishText":"GO!!!",
+ "spanishFontType":3,
+ "chineseTText":"GO!!!",
+ "chineseTFontType":1,
+ "koreanText":"GO!!!",
+ "koreanFontType":2,
+ "portugueseText":"GO!!!",
+ "portugueseFontType":3,
+ "russianText":"GO!!!",
+ "russianFontType":3,
+ "turkishText":"GO!!!",
+ "turkishFontType":3,
+ "arabicText":"GO!!!",
+ "arabicFontType":3,
+ "dutchText":"GO!!!",
+ "dutchFontType":3,
+ "chineseSText":"GO!!!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_go2",
+ "japaneseText":"「NARUTO」より",
+ "englishUsText":"From \" NARUTO \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" NARUTO \"",
+ "frenchFontType":3,
+ "italianText":"Da \" NARUTO \"",
+ "italianFontType":3,
+ "germanText":"Aus \" NARUTO \"",
+ "germanFontType":3,
+ "spanishText":"De \" NARUTO \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「NARUTO」",
+ "chineseTFontType":1,
+ "koreanText":"\"NARUTO\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" NARUTO \"",
+ "portugueseFontType":3,
+ "russianText":"From \" NARUTO \"",
+ "russianFontType":3,
+ "turkishText":"From \" NARUTO \"",
+ "turkishFontType":3,
+ "arabicText":"From \" NARUTO \"",
+ "arabicFontType":3,
+ "dutchText":"From \" NARUTO \"",
+ "dutchFontType":3,
+ "chineseSText":"出自\"NARUTO\"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_go2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_seiya",
+ "japaneseText":"ペガサス幻想",
+ "englishUsText":"Pegasus Fantasy",
+ "englishUsFontType":3,
+ "frenchText":"Pegasus Fantasy",
+ "frenchFontType":3,
+ "italianText":"Pegasus Fantasy",
+ "italianFontType":3,
+ "germanText":"Pegasus Fantasy",
+ "germanFontType":3,
+ "spanishText":"Pegasus Fantasy",
+ "spanishFontType":3,
+ "chineseTText":"Pegasus Fantasy",
+ "chineseTFontType":1,
+ "koreanText":"Pegasus Fantasy",
+ "koreanFontType":2,
+ "portugueseText":"Pegasus Fantasy",
+ "portugueseFontType":3,
+ "russianText":"Pegasus Fantasy",
+ "russianFontType":3,
+ "turkishText":"Pegasus Fantasy",
+ "turkishFontType":3,
+ "arabicText":"Pegasus Fantasy",
+ "arabicFontType":3,
+ "dutchText":"Pegasus Fantasy",
+ "dutchFontType":3,
+ "chineseSText":"Pegasus Fantasy",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_seiya",
+ "japaneseText":"「聖闘士星矢」より",
+ "englishUsText":"From \" SAINT SEIYA \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" SAINT SEIYA \"",
+ "frenchFontType":3,
+ "italianText":"Da \" SAINT SEIYA \"",
+ "italianFontType":3,
+ "germanText":"Aus \" SAINT SEIYA \"",
+ "germanFontType":3,
+ "spanishText":"De \" SAINT SEIYA \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「聖鬥士星矢」",
+ "chineseTFontType":1,
+ "koreanText":"\"세인트 세이야\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" SAINT SEIYA \"",
+ "portugueseFontType":3,
+ "russianText":"From \" SAINT SEIYA \"",
+ "russianFontType":3,
+ "turkishText":"From \" SAINT SEIYA \"",
+ "turkishFontType":3,
+ "arabicText":"From \" SAINT SEIYA \"",
+ "arabicFontType":3,
+ "dutchText":"From \" SAINT SEIYA \"",
+ "dutchFontType":3,
+ "chineseSText":"出自\"圣斗士星矢\"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_seiya",
+ "japaneseText":"",
+ "englishUsText":"ペガサス幻想",
+ "englishUsFontType":0,
+ "frenchText":"ペガサス幻想",
+ "frenchFontType":0,
+ "italianText":"ペガサス幻想",
+ "italianFontType":0,
+ "germanText":"ペガサス幻想",
+ "germanFontType":0,
+ "spanishText":"ペガサス幻想",
+ "spanishFontType":0,
+ "chineseTText":"ペガサス幻想",
+ "chineseTFontType":0,
+ "koreanText":"ペガサス幻想",
+ "koreanFontType":0,
+ "portugueseText":"ペガサス幻想",
+ "portugueseFontType":0,
+ "russianText":"ペガサス幻想",
+ "russianFontType":0,
+ "turkishText":"ペガサス幻想",
+ "turkishFontType":0,
+ "arabicText":"ペガサス幻想",
+ "arabicFontType":0,
+ "dutchText":"ペガサス幻想",
+ "dutchFontType":0,
+ "chineseSText":"ペガサス幻想",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_turk",
+ "japaneseText":"トルコ行進曲",
+ "englishUsText":"Turkish March",
+ "englishUsFontType":3,
+ "frenchText":"Marche turque",
+ "frenchFontType":3,
+ "italianText":"Marcia alla turca",
+ "italianFontType":3,
+ "germanText":"Türkischer Marsch",
+ "germanFontType":3,
+ "spanishText":"Marcha Turca",
+ "spanishFontType":3,
+ "chineseTText":"土耳其進行曲",
+ "chineseTFontType":1,
+ "koreanText":"터키 행진곡",
+ "koreanFontType":2,
+ "portugueseText":"Turkish March",
+ "portugueseFontType":3,
+ "russianText":"Turkish March",
+ "russianFontType":3,
+ "turkishText":"Turkish March",
+ "turkishFontType":3,
+ "arabicText":"Turkish March",
+ "arabicFontType":3,
+ "dutchText":"Turkish March",
+ "dutchFontType":3,
+ "chineseSText":"土耳其进行曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_turk",
+ "japaneseText":"モーツァルト",
+ "englishUsText":"Wolfgang Amadeus Mozart",
+ "englishUsFontType":3,
+ "frenchText":"Wolfgang Amadeus Mozart",
+ "frenchFontType":3,
+ "italianText":"Wolfgang Amadeus Mozart",
+ "italianFontType":3,
+ "germanText":"Wolfgang Amadeus Mozart",
+ "germanFontType":3,
+ "spanishText":"Wolfgang Amadeus Mozart",
+ "spanishFontType":3,
+ "chineseTText":"莫札特",
+ "chineseTFontType":1,
+ "koreanText":"볼프강 아마데우스 모차르트",
+ "koreanFontType":2,
+ "portugueseText":"Wolfgang Amadeus Mozart",
+ "portugueseFontType":3,
+ "russianText":"Wolfgang Amadeus Mozart",
+ "russianFontType":3,
+ "turkishText":"Wolfgang Amadeus Mozart",
+ "turkishFontType":3,
+ "arabicText":"Wolfgang Amadeus Mozart",
+ "arabicFontType":3,
+ "dutchText":"Wolfgang Amadeus Mozart",
+ "dutchFontType":3,
+ "chineseSText":"莫札特",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_turk",
+ "japaneseText":"",
+ "englishUsText":"トルコ行進曲",
+ "englishUsFontType":0,
+ "frenchText":"トルコ行進曲",
+ "frenchFontType":0,
+ "italianText":"トルコ行進曲",
+ "italianFontType":0,
+ "germanText":"トルコ行進曲",
+ "germanFontType":0,
+ "spanishText":"トルコ行進曲",
+ "spanishFontType":0,
+ "chineseTText":"トルコ行進曲",
+ "chineseTFontType":0,
+ "koreanText":"トルコ行進曲",
+ "koreanFontType":0,
+ "portugueseText":"トルコ行進曲",
+ "portugueseFontType":0,
+ "russianText":"トルコ行進曲",
+ "russianFontType":0,
+ "turkishText":"トルコ行進曲",
+ "turkishFontType":0,
+ "arabicText":"トルコ行進曲",
+ "arabicFontType":0,
+ "dutchText":"トルコ行進曲",
+ "dutchFontType":0,
+ "chineseSText":"トルコ行進曲",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_hiyam2",
+ "japaneseText":"月影SASURAI",
+ "englishUsText":"TSUKIKAGE SASURAI",
+ "englishUsFontType":3,
+ "frenchText":"TSUKIKAGE SASURAI",
+ "frenchFontType":3,
+ "italianText":"TSUKIKAGE SASURAI",
+ "italianFontType":3,
+ "germanText":"TSUKIKAGE SASURAI",
+ "germanFontType":3,
+ "spanishText":"TSUKIKAGE SASURAI",
+ "spanishFontType":3,
+ "chineseTText":"月影SASURAI",
+ "chineseTFontType":1,
+ "koreanText":"TSUKIKAGE SASURAI",
+ "koreanFontType":2,
+ "portugueseText":"TSUKIKAGE SASURAI",
+ "portugueseFontType":3,
+ "russianText":"TSUKIKAGE SASURAI",
+ "russianFontType":3,
+ "turkishText":"TSUKIKAGE SASURAI",
+ "turkishFontType":3,
+ "arabicText":"TSUKIKAGE SASURAI",
+ "arabicFontType":3,
+ "dutchText":"TSUKIKAGE SASURAI",
+ "dutchFontType":3,
+ "chineseSText":"月影SASURAI",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_hiyam2",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_hiyam2",
+ "japaneseText":"",
+ "englishUsText":"月影SASURAI",
+ "englishUsFontType":0,
+ "frenchText":"月影SASURAI",
+ "frenchFontType":0,
+ "italianText":"月影SASURAI",
+ "italianFontType":0,
+ "germanText":"月影SASURAI",
+ "germanFontType":0,
+ "spanishText":"月影SASURAI",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"月影SASURAI",
+ "koreanFontType":0,
+ "portugueseText":"月影SASURAI",
+ "portugueseFontType":0,
+ "russianText":"月影SASURAI",
+ "russianFontType":0,
+ "turkishText":"月影SASURAI",
+ "turkishFontType":0,
+ "arabicText":"月影SASURAI",
+ "arabicFontType":0,
+ "dutchText":"月影SASURAI",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"osirase_v1_9_0",
+ "japaneseText":"太鼓の達人 Pop Tap Beat をプレイ頂き、ありがとうございます!\n\nソフトウェアのアップデートを行いました(Ver.1.9.0)\n\n・いくつかの不具合の修正、パフォーマンス調整を行いました。\n\n★新曲追加★\n1986年のバトルアニメ「聖闘士星矢」からペガサス幻想\n1998年のSFアニメ「カウボーイビバップ」からTank!\n2002年の忍者バトルアニメ「NARUTO」からGO!!!\n\n時代を彩ったアニメ主題歌3曲など全5曲を追加しました。",
+ "englishUsText":"Thank you for playing Taiko no Tatsujin Pop Tap Beat!\n\nThe game has been updated (Ver.1.9.0).\n\n・We have carried out various minor improvements and\nbug fixes.\n\n★New Songs Added★\nReady for \"Pegasus Fantasy\" from the beloved 1986 series,\nSaint Seiya, \"Tank!\" from the 1998 SF classic, Cowboy Bebop,\nand \"GO!!!\" from Naruto, the popular ninja anime that began\nin 2002.\n\nFive new songs are now available,\nincluding these three iconic anime theme songs!",
+ "englishUsFontType":3,
+ "frenchText":"Merci de jouer à Taiko no Tatsujin Pop Tap Beat !\n\nMise à jour du logiciel (Ver.1.9.0)\n\n- Correction de certains bugs et équilibrage des\nperformances.\n\n★ Ajout de nouvelles chansons ★\nPegasus Fantasy du dessin animé de combat Saint Seiya,\ndiffusé à partir de 1986. Tank! du dessin animé de\nscience-fiction Cowboy Bebop, diffusé à partir de 1998.\nGO!!! du dessin animé de combats de ninjas Naruto,\ndiffusé à partir de 2002. \n\nAu total, cinq chansons ont été ajoutées, dont trois étant\nles thèmes principaux de dessins animés célèbres qui ont marqué leur époque.",
+ "frenchFontType":3,
+ "italianText":"Grazie per aver giocato a Taiko no Tatsujin Pop Tap Beat!\n\nAbbiamo aggiornato il gioco. (Ver. 1.9.0)\n\nCorrezione di vari bug e miglioramenti delle prestazioni.\n\nNuovi brani\nPegasus Fantasy, dalla serie animata del 1986 \"SAINT SEIYA\"\nTank!, dalla serie animata sci-fi del 1998 \"COWBOY BEBOP\"\nGO!!!, dalla serie animata ninja del 2002 \"NARUTO\"\n\nI 5 nuovi brani includono 3 sigle dalle\nserie animate più famose dei loro tempi.",
+ "italianFontType":3,
+ "germanText":"Vielen Dank fürs Spielen von Taiko no Tatsujin Pop Tap Beat!\n\nDie Software wurde aktualisiert (Ver.1.9.0).\n\n・Fehlerbehebungen und Leistungsanpassungen\n\n★Neue Songs★\nBereit für \"Pegasus Fantasy\" aus dem Anime-Hit Saint Seiya\naus dem Jahr 1986, \"Tank!\" aus Cowboy Bebop, dem beliebten\nSciFi-Anime aus dem Jahr 1998, und \"GO!!!\" aus dem Ninja-\nAnime Naruto aus dem Jahr 2002\n\nInsgesamt wurden 5 neue Songs hinzugefügt,\ndarunter die Titelsongs der obigen 3 Anime,\ndie jeweils ihre Zeit geprägt haben.",
+ "germanFontType":3,
+ "spanishText":"¡Gracias por jugar a Taiko no Tatsujin Pop Tap Beat!\n\nNovedades de la última actualización\n(ver. 1.9.0)\n\n・Hemos arreglado errores y mejorado\nel rendimiento.\n\n★¡Nuevas canciones!★\nDesde 1986, llega a través del Cosmos Pegasus Fantasy\ndel Anime de lucha SAINT SEIYA.\nDesde 1998, llega a través del hiperespacio Tank!\ndel Anime de ciencia ficción COWBOY BEBOP.\nDesde 2002, llega GO!!! del Anime de ninjas NARUTO,\n¡vaya que sí! \n\nEn total, se añadieron 5 canciones, incluyendo 3 melodías\ndel mundo Anime que marcaron sus respectivas épocas.",
+ "spanishFontType":3,
+ "chineseTText":"感謝您遊玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本軟體已更新(Ver.1.9.0)。\n\n‧已修正部分異常以及調整遊戲表現。\n\n★追加新曲★\n選自1986年戰鬥動畫《聖鬥士星矢》的《Pegasus Fantasy》。\n選自1998年科幻動畫《COWBOY BEBOP》的《Tank!》。\n選自2002年忍者戰鬥動畫《NARUTO》的《GO!!!》。\n\n已追加3首點綴時代的卡通動畫主題曲等,共5首樂曲。",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 Pop Tap Beat를 플레이해주셔서 감사합니다!\n\n소프트웨어를 업데이트했습니다.(Ver.1.9.0)\n\n・그 외 오류를 수정하고 퍼포먼스를 조정했습니다.\n\n★신곡 추가★\n1986년 작 배틀 애니메이션 '세인트 세이야'의 Pegasus Fantasy\n1998년 작 SF 애니메이션 'COWBOY BEBOP'의 Tank!\n2002년 작 닌자 배틀 애니메이션 'NARUTO'의 GO!!!\n\n시대를 풍미한 애니메이션 주제가 3곡 등 \n총 5곡을 추가했습니다.",
+ "koreanFontType":2,
+ "portugueseText":"Obrigado por jogar Taiko no Tatsujin Pop Tap Beat!\n\n O software foi atualizado (Ver.1.9.0). \n\n ・ Outras pequenas melhorias e correções de erros.\n\n ★ Adição de novas músicas ★ \nPegasus Fantasy do anime \"SAINT SEIYA\" de 1986,\nTank! do anime de ficção científica \"COWBOY BEBOP\" de 1998,\nGO!!! do anime de ninjas \"NARUTO\" de 2002 \n\nAdicionamos um total de 5 músicas, incluindo 3 temas\nprincipais de anime populares!",
+ "portugueseFontType":2,
+ "russianText":"Спасибо, что играете в Taiko no Tatsujin Pop Tap Beat!\n\nИгра обновлена до версии 1.9.0\n\n・Исправлены ошибки и улучшена производительность. \n\n★ Добавлены новые песни ★\nPegasus Fantasy из аниме-боевика Saint Seiya\n(«Рыцари Зодиака») 1986 г.; Tank! из классического\nфантастического аниме Cowboy Bebop («Ковбой Бибоп») 1998 г.;\nGO!!! из аниме о ниндзя NARUTO («Наруто») 2002 г.!\n\nВсего добавлено 5 песен, включая эти 3 темы из\nзнаменитых аниме разных эпох.",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat'i oynadığın için teşekkür ederiz!\n\nOyun güncellendi (Ver.1.9.0).\n\n・Bir takım küçük iyileştirmeler ve hata düzeltmeleri yaptık.\n\n★Yeni şarkılar eklendi★\n1986 yapımı sevilen Saint Seiya dizisinden \"Pegasus Fantasy\",\n1998 yapımı bilimkurgu klasiği Cowboy Bebop'tan \"Tank!\" ve 2002'de\nbaşlayan popüler ninja animesi Naruto'dan \"GO!!!\" şarkılarına\nhazır mısın.\n\nYukarıdaki klasikleşmiş anime tema şarkıları da\ndahil, toplamda beş yeni şarkı eklendi!",
+ "turkishFontType":2,
+ "arabicText":"نشكرك على لعب Taiko no Tatsujin Pop Tap Beat!\n\nلقد تم تحديث اللعبة (نسخة 1.9.0).\n\n・لقد أجرينا تحسينات طفيفة متنوعة وإصلاحات للأخطاء.\n\n★تمت إضافة أغانٍ جديدة★\nهل أنتم جاهزون لـ\"Pegasus Fantasy\" من السلسلة المحبوبة\n\"Saint Seiya\" لعام 1986، وأغنية \"Tank!\" من سلسلة الخيال\nالعلمي الكلاسيكية \"Cowboy Bebop\" لعام 1998 وأيضًا \"GO!!!\"\nمن \"Naruto\" أنمي النينجا الشهير الذي بدأ في 2002؟\n\n\nهناك خمس أغنيات جديدة متاحة الآن\nمن بينها هذه الأغنيات الثلاث التي تمثل عصورًا معينة من الأنمي!",
+ "arabicFontType":2,
+ "dutchText":"Bedankt dat je Taiko no Tatsujin Pop Tap Beat speelt!\n\nDe game is geüpdatet. (Ver.1.9.0)\n\n・We hebben diverse kleine verbeteringen doorgevoerd en\nbugs verholpen.\n\n★Nieuwe liedjes toegevoegd★\nBen je klaar voor \"Pegasus Fantasy\" uit de geliefde serie\nSaint Seiya uit 1986, \"Tank!\" uit de sci-fi-klassieker Cowboy Bebop uit 1998 en \"GO!!!\" uit de populaire ninja-anime 'Naruto' die begon in 2002.\n\nEr zijn nu vijf nieuwe liedjes beschikbaar,\ninclusief deze drie iconische anime-themesongs!",
+ "dutchFontType":2,
+ "chineseSText":"感谢您游玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本软件已更新(Ver.1.9.0)。\n\n‧已修正部分异常并调整游戏表现。\n\n★追加新曲★\n选自1986年战斗动画《圣斗士星矢》的《Pegasus Fantasy》。\n选自1998年科幻动画《COWBOY BEBOP》的《Tank!》。\n选自2002年忍者战斗动画《NARUTO》的《GO!!!》。\n\n已追加3首点缀时代的动画主题曲等,共5首乐曲。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"osirase_v1_9_0_title",
+ "japaneseText":"ソフトウェアのアップデートを行いました(Ver.1.9.0)",
+ "englishUsText":"The game has been updated (Ver.1.9.0)",
+ "englishUsFontType":3,
+ "frenchText":"Mise à jour du logiciel (Ver.1.9.0)",
+ "frenchFontType":3,
+ "italianText":"Abbiamo aggiornato il gioco. (Ver.1.9.0)",
+ "italianFontType":3,
+ "germanText":"Die Software wurde aktualisiert (Ver.1.9.0)",
+ "germanFontType":3,
+ "spanishText":"Novedades de la última actualización (Ver.1.9.0)",
+ "spanishFontType":3,
+ "chineseTText":"本軟體已更新(Ver.1.9.0)",
+ "chineseTFontType":1,
+ "koreanText":"소프트웨어를 업데이트했습니다.(Ver.1.9.0)",
+ "koreanFontType":2,
+ "portugueseText":"O software foi atualizado (Ver.1.9.0)",
+ "portugueseFontType":2,
+ "russianText":"Программное обеспечение обновлено (версия 1.9.0)",
+ "russianFontType":2,
+ "turkishText":"Oyun güncellendi (Ver.1.9.0)",
+ "turkishFontType":2,
+ "arabicText":"لقد تم تحديث اللعبة (نسخة 1.9.0)",
+ "arabicFontType":2,
+ "dutchText":"De software is geüpdatet. (Ver.1.9.0)",
+ "dutchFontType":2,
+ "chineseSText":"本软件已更新(Ver.1.9.0)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_xjapan",
+ "japaneseText":"紅",
+ "englishUsText":"KURENAI",
+ "englishUsFontType":3,
+ "frenchText":"KURENAI",
+ "frenchFontType":3,
+ "italianText":"KURENAI",
+ "italianFontType":3,
+ "germanText":"KURENAI",
+ "germanFontType":3,
+ "spanishText":"KURENAI",
+ "spanishFontType":3,
+ "chineseTText":"紅",
+ "chineseTFontType":1,
+ "koreanText":"쿠레나이",
+ "koreanFontType":2,
+ "portugueseText":"KURENAI",
+ "portugueseFontType":3,
+ "russianText":"KURENAI",
+ "russianFontType":3,
+ "turkishText":"KURENAI",
+ "turkishFontType":3,
+ "arabicText":"KURENAI",
+ "arabicFontType":3,
+ "dutchText":"KURENAI",
+ "dutchFontType":3,
+ "chineseSText":"红",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_xjapan",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_xjapan",
+ "japaneseText":"",
+ "englishUsText":"紅",
+ "englishUsFontType":0,
+ "frenchText":"紅",
+ "frenchFontType":0,
+ "italianText":"紅",
+ "italianFontType":0,
+ "germanText":"紅",
+ "germanFontType":0,
+ "spanishText":"紅",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"紅",
+ "koreanFontType":0,
+ "portugueseText":"紅",
+ "portugueseFontType":0,
+ "russianText":"紅",
+ "russianFontType":0,
+ "turkishText":"紅",
+ "turkishFontType":0,
+ "arabicText":"紅",
+ "arabicFontType":0,
+ "dutchText":"紅",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_gdmchr",
+ "japaneseText":"シャアが来る",
+ "englishUsText":"HERE COMES CHAR",
+ "englishUsFontType":3,
+ "frenchText":"HERE COMES CHAR",
+ "frenchFontType":3,
+ "italianText":"HERE COMES CHAR",
+ "italianFontType":3,
+ "germanText":"HERE COMES CHAR",
+ "germanFontType":3,
+ "spanishText":"HERE COMES CHAR",
+ "spanishFontType":3,
+ "chineseTText":"HERE COMES CHAR",
+ "chineseTFontType":1,
+ "koreanText":"HERE COMES CHAR",
+ "koreanFontType":2,
+ "portugueseText":"HERE COMES CHAR",
+ "portugueseFontType":3,
+ "russianText":"HERE COMES CHAR",
+ "russianFontType":3,
+ "turkishText":"HERE COMES CHAR",
+ "turkishFontType":3,
+ "arabicText":"HERE COMES CHAR",
+ "arabicFontType":3,
+ "dutchText":"HERE COMES CHAR",
+ "dutchFontType":3,
+ "chineseSText":"HERE COMES CHAR",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_gdmchr",
+ "japaneseText":"「機動戦士ガンダム」より",
+ "englishUsText":"From \" Mobile Suit Gundam \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Mobile Suit Gundam \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Mobile Suit Gundam \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Mobile Suit Gundam \"",
+ "germanFontType":3,
+ "spanishText":"De \" Mobile Suit Gundam \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「機動戰士GUNDAM」",
+ "chineseTFontType":1,
+ "koreanText":"\"기동전사건담\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" Mobile Suit Gundam \"",
+ "portugueseFontType":3,
+ "russianText":"From \" Mobile Suit Gundam \"",
+ "russianFontType":3,
+ "turkishText":"From \" Mobile Suit Gundam \"",
+ "turkishFontType":3,
+ "arabicText":"From \" Mobile Suit Gundam \"",
+ "arabicFontType":3,
+ "dutchText":"From \" Mobile Suit Gundam \"",
+ "dutchFontType":3,
+ "chineseSText":"出自\"机动战士GUNDAM\"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_gdmchr",
+ "japaneseText":"",
+ "englishUsText":"シャアが来る",
+ "englishUsFontType":0,
+ "frenchText":"シャアが来る",
+ "frenchFontType":0,
+ "italianText":"シャアが来る",
+ "italianFontType":0,
+ "germanText":"シャアが来る",
+ "germanFontType":0,
+ "spanishText":"シャアが来る",
+ "spanishFontType":0,
+ "chineseTText":"シャアが来る",
+ "chineseTFontType":0,
+ "koreanText":"シャアが来る",
+ "koreanFontType":0,
+ "portugueseText":"シャアが来る",
+ "portugueseFontType":0,
+ "russianText":"シャアが来る",
+ "russianFontType":0,
+ "turkishText":"シャアが来る",
+ "turkishFontType":0,
+ "arabicText":"シャアが来る",
+ "arabicFontType":0,
+ "dutchText":"シャアが来る",
+ "dutchFontType":0,
+ "chineseSText":"シャアが来る",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_rwrite",
+ "japaneseText":"リライト",
+ "englishUsText":"Rewrite",
+ "englishUsFontType":3,
+ "frenchText":"Rewrite",
+ "frenchFontType":3,
+ "italianText":"Rewrite",
+ "italianFontType":3,
+ "germanText":"Rewrite",
+ "germanFontType":3,
+ "spanishText":"Rewrite",
+ "spanishFontType":3,
+ "chineseTText":"Rewrite",
+ "chineseTFontType":1,
+ "koreanText":"Rewrite",
+ "koreanFontType":2,
+ "portugueseText":"Rewrite",
+ "portugueseFontType":3,
+ "russianText":"Rewrite",
+ "russianFontType":3,
+ "turkishText":"Rewrite",
+ "turkishFontType":3,
+ "arabicText":"Rewrite",
+ "arabicFontType":3,
+ "dutchText":"Rewrite",
+ "dutchFontType":3,
+ "chineseSText":"Rewrite",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_rwrite",
+ "japaneseText":"アニメ「鋼の錬金術師」OPテーマ",
+ "englishUsText":"Anime \" Fullmetal Alchemist \" Theme Song",
+ "englishUsFontType":3,
+ "frenchText":"Thème Anime \" Fullmetal Alchemist \"",
+ "frenchFontType":3,
+ "italianText":"Tema di Anime \" Fullmetal Alchemist \"",
+ "italianFontType":3,
+ "germanText":"Anime \" Fullmetal Alchemist \"-Titellied",
+ "germanFontType":3,
+ "spanishText":"Tema de Anime \" Fullmetal Alchemist \"",
+ "spanishFontType":3,
+ "chineseTText":"動畫「鋼之鍊金術師」主題曲",
+ "chineseTFontType":1,
+ "koreanText":"애니메이션\"강철의 연금술사\"주제가",
+ "koreanFontType":2,
+ "portugueseText":"Anime \" Fullmetal Alchemist \" Theme Song",
+ "portugueseFontType":3,
+ "russianText":"Anime \" Fullmetal Alchemist \" Theme Song",
+ "russianFontType":3,
+ "turkishText":"Anime \" Fullmetal Alchemist \" Theme Song",
+ "turkishFontType":3,
+ "arabicText":"Anime \" Fullmetal Alchemist \" Theme Song",
+ "arabicFontType":3,
+ "dutchText":"Anime \" Fullmetal Alchemist \" Theme Song",
+ "dutchFontType":3,
+ "chineseSText":"动画\"钢之炼金术师\"主题曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_rwrite",
+ "japaneseText":"",
+ "englishUsText":"リライト",
+ "englishUsFontType":0,
+ "frenchText":"リライト",
+ "frenchFontType":0,
+ "italianText":"リライト",
+ "italianFontType":0,
+ "germanText":"リライト",
+ "germanFontType":0,
+ "spanishText":"リライト",
+ "spanishFontType":0,
+ "chineseTText":"リライト",
+ "chineseTFontType":0,
+ "koreanText":"リライト",
+ "koreanFontType":0,
+ "portugueseText":"リライト",
+ "portugueseFontType":0,
+ "russianText":"リライト",
+ "russianFontType":0,
+ "turkishText":"リライト",
+ "turkishFontType":0,
+ "arabicText":"リライト",
+ "arabicFontType":0,
+ "dutchText":"リライト",
+ "dutchFontType":0,
+ "chineseSText":"リライト",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_lam",
+ "japaneseText":"ラムのラブソング",
+ "englishUsText":"LUM'S LOVE SONG",
+ "englishUsFontType":3,
+ "frenchText":"LUM'S LOVE SONG",
+ "frenchFontType":3,
+ "italianText":"LUM'S LOVE SONG",
+ "italianFontType":3,
+ "germanText":"LUM'S LOVE SONG",
+ "germanFontType":3,
+ "spanishText":"LUM'S LOVE SONG",
+ "spanishFontType":3,
+ "chineseTText":"拉姆的情歌",
+ "chineseTFontType":1,
+ "koreanText":"라무의 러브송",
+ "koreanFontType":2,
+ "portugueseText":"LUM'S LOVE SONG",
+ "portugueseFontType":3,
+ "russianText":"LUM'S LOVE SONG",
+ "russianFontType":3,
+ "turkishText":"LUM'S LOVE SONG",
+ "turkishFontType":3,
+ "arabicText":"LUM'S LOVE SONG",
+ "arabicFontType":3,
+ "dutchText":"LUM'S LOVE SONG",
+ "dutchFontType":3,
+ "chineseSText":"拉姆的情歌",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_lam",
+ "japaneseText":"「うる星やつら」より",
+ "englishUsText":"From \" Urusei Yatsura \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Urusei Yatsura \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Urusei Yatsura \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Urusei Yatsura \"",
+ "germanFontType":3,
+ "spanishText":"De \" Urusei Yatsura \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「福星小子」",
+ "chineseTFontType":1,
+ "koreanText":"\"시끌별 녀석들\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" Urusei Yatsura \"",
+ "portugueseFontType":3,
+ "russianText":"From \" Urusei Yatsura \"",
+ "russianFontType":3,
+ "turkishText":"From \" Urusei Yatsura \"",
+ "turkishFontType":3,
+ "arabicText":"From \" Urusei Yatsura \"",
+ "arabicFontType":3,
+ "dutchText":"From \" Urusei Yatsura \"",
+ "dutchFontType":3,
+ "chineseSText":"出自\"福星小子\"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_lam",
+ "japaneseText":"",
+ "englishUsText":"ラムのラブソング",
+ "englishUsFontType":0,
+ "frenchText":"ラムのラブソング",
+ "frenchFontType":0,
+ "italianText":"ラムのラブソング",
+ "italianFontType":0,
+ "germanText":"ラムのラブソング",
+ "germanFontType":0,
+ "spanishText":"ラムのラブソング",
+ "spanishFontType":0,
+ "chineseTText":"ラムのラブソング",
+ "chineseTFontType":0,
+ "koreanText":"ラムのラブソング",
+ "koreanFontType":0,
+ "portugueseText":"ラムのラブソング",
+ "portugueseFontType":0,
+ "russianText":"ラムのラブソング",
+ "russianFontType":0,
+ "turkishText":"ラムのラブソング",
+ "turkishFontType":0,
+ "arabicText":"ラムのラブソング",
+ "arabicFontType":0,
+ "dutchText":"ラムのラブソング",
+ "dutchFontType":0,
+ "chineseSText":"ラムのラブソング",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_jazmen",
+ "japaneseText":"メヌエット",
+ "englishUsText":"Minuet",
+ "englishUsFontType":3,
+ "frenchText":"Minuet",
+ "frenchFontType":3,
+ "italianText":"Minuet",
+ "italianFontType":3,
+ "germanText":"Minuet",
+ "germanFontType":3,
+ "spanishText":"Minuet",
+ "spanishFontType":3,
+ "chineseTText":"小步舞曲",
+ "chineseTFontType":1,
+ "koreanText":"미뉴에트",
+ "koreanFontType":2,
+ "portugueseText":"Minuet",
+ "portugueseFontType":3,
+ "russianText":"Minuet",
+ "russianFontType":3,
+ "turkishText":"Minuet",
+ "turkishFontType":3,
+ "arabicText":"Minuet",
+ "arabicFontType":3,
+ "dutchText":"Minuet",
+ "dutchFontType":3,
+ "chineseSText":"小步舞曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_jazmen",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_jazmen",
+ "japaneseText":"",
+ "englishUsText":"メヌエット",
+ "englishUsFontType":0,
+ "frenchText":"メヌエット",
+ "frenchFontType":0,
+ "italianText":"メヌエット",
+ "italianFontType":0,
+ "germanText":"メヌエット",
+ "germanFontType":0,
+ "spanishText":"メヌエット",
+ "spanishFontType":0,
+ "chineseTText":"メヌエット",
+ "chineseTFontType":0,
+ "koreanText":"メヌエット",
+ "koreanFontType":0,
+ "portugueseText":"メヌエット",
+ "portugueseFontType":0,
+ "russianText":"メヌエット",
+ "russianFontType":0,
+ "turkishText":"メヌエット",
+ "turkishFontType":0,
+ "arabicText":"メヌエット",
+ "arabicFontType":0,
+ "dutchText":"メヌエット",
+ "dutchFontType":0,
+ "chineseSText":"メヌエット",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_tkym2",
+ "japaneseText":"崩冠の紅月",
+ "englishUsText":"HOUKAN NO KUGETSU",
+ "englishUsFontType":3,
+ "frenchText":"HOUKAN NO KUGETSU",
+ "frenchFontType":3,
+ "italianText":"HOUKAN NO KUGETSU",
+ "italianFontType":3,
+ "germanText":"HOUKAN NO KUGETSU",
+ "germanFontType":3,
+ "spanishText":"HOUKAN NO KUGETSU",
+ "spanishFontType":3,
+ "chineseTText":"崩冠之紅月",
+ "chineseTFontType":1,
+ "koreanText":"호우칸노 쿠게츠",
+ "koreanFontType":2,
+ "portugueseText":"HOUKAN NO KUGETSU",
+ "portugueseFontType":3,
+ "russianText":"HOUKAN NO KUGETSU",
+ "russianFontType":3,
+ "turkishText":"HOUKAN NO KUGETSU",
+ "turkishFontType":3,
+ "arabicText":"HOUKAN NO KUGETSU",
+ "arabicFontType":3,
+ "dutchText":"HOUKAN NO KUGETSU",
+ "dutchFontType":3,
+ "chineseSText":"崩冠之红月",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_tkym2",
+ "japaneseText":"破章「嘆きの姫」",
+ "englishUsText":"Hashou \" Nageki no Hime \"",
+ "englishUsFontType":3,
+ "frenchText":"Hashou \" Nageki no Hime \"",
+ "frenchFontType":3,
+ "italianText":"Hashou \" Nageki no Hime \"",
+ "italianFontType":3,
+ "germanText":"Hashou \" Nageki no Hime \"",
+ "germanFontType":3,
+ "spanishText":"Hashou \" Nageki no Hime \"",
+ "spanishFontType":3,
+ "chineseTText":"Hashou \" Nageki no Hime \"",
+ "chineseTFontType":1,
+ "koreanText":"Hashou \" Nageki no Hime \"",
+ "koreanFontType":2,
+ "portugueseText":"Hashou \" Nageki no Hime \"",
+ "portugueseFontType":3,
+ "russianText":"Hashou \" Nageki no Hime \"",
+ "russianFontType":3,
+ "turkishText":"Hashou \" Nageki no Hime \"",
+ "turkishFontType":3,
+ "arabicText":"Hashou \" Nageki no Hime \"",
+ "arabicFontType":3,
+ "dutchText":"Hashou \" Nageki no Hime \"",
+ "dutchFontType":3,
+ "chineseSText":"Hashou \" Nageki no Hime \"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_tkym2",
+ "japaneseText":"",
+ "englishUsText":"崩冠の紅月",
+ "englishUsFontType":0,
+ "frenchText":"崩冠の紅月",
+ "frenchFontType":0,
+ "italianText":"崩冠の紅月",
+ "italianFontType":0,
+ "germanText":"崩冠の紅月",
+ "germanFontType":0,
+ "spanishText":"崩冠の紅月",
+ "spanishFontType":0,
+ "chineseTText":"崩冠の紅月",
+ "chineseTFontType":0,
+ "koreanText":"崩冠の紅月",
+ "koreanFontType":0,
+ "portugueseText":"崩冠の紅月",
+ "portugueseFontType":0,
+ "russianText":"崩冠の紅月",
+ "russianFontType":0,
+ "turkishText":"崩冠の紅月",
+ "turkishFontType":0,
+ "arabicText":"崩冠の紅月",
+ "arabicFontType":0,
+ "dutchText":"崩冠の紅月",
+ "dutchFontType":0,
+ "chineseSText":"崩冠の紅月",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_koi907",
+ "japaneseText":"濃紅",
+ "englishUsText":"Koikurenai",
+ "englishUsFontType":3,
+ "frenchText":"Koikurenai",
+ "frenchFontType":3,
+ "italianText":"Koikurenai",
+ "italianFontType":3,
+ "germanText":"Koikurenai",
+ "germanFontType":3,
+ "spanishText":"Koikurenai",
+ "spanishFontType":3,
+ "chineseTText":"濃紅",
+ "chineseTFontType":1,
+ "koreanText":"코이쿠레나이",
+ "koreanFontType":2,
+ "portugueseText":"Koikurenai",
+ "portugueseFontType":3,
+ "russianText":"Koikurenai",
+ "russianFontType":3,
+ "turkishText":"Koikurenai",
+ "turkishFontType":3,
+ "arabicText":"Koikurenai",
+ "arabicFontType":3,
+ "dutchText":"Koikurenai",
+ "dutchFontType":3,
+ "chineseSText":"浓红",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_koi907",
+ "japaneseText":"黒沢ダイスケ × 小寺可南子",
+ "englishUsText":"Daisuke Kurosawa x Kanako Kotera",
+ "englishUsFontType":3,
+ "frenchText":"Daisuke Kurosawa x Kanako Kotera",
+ "frenchFontType":3,
+ "italianText":"Daisuke Kurosawa x Kanako Kotera",
+ "italianFontType":3,
+ "germanText":"Daisuke Kurosawa x Kanako Kotera",
+ "germanFontType":3,
+ "spanishText":"Daisuke Kurosawa x Kanako Kotera",
+ "spanishFontType":3,
+ "chineseTText":"Daisuke Kurosawa x Kanako Kotera",
+ "chineseTFontType":1,
+ "koreanText":"Daisuke Kurosawa x Kanako Kotera",
+ "koreanFontType":2,
+ "portugueseText":"Daisuke Kurosawa x Kanako Kotera",
+ "portugueseFontType":3,
+ "russianText":"Daisuke Kurosawa x Kanako Kotera",
+ "russianFontType":3,
+ "turkishText":"Daisuke Kurosawa x Kanako Kotera",
+ "turkishFontType":3,
+ "arabicText":"Daisuke Kurosawa x Kanako Kotera",
+ "arabicFontType":3,
+ "dutchText":"Daisuke Kurosawa x Kanako Kotera",
+ "dutchFontType":3,
+ "chineseSText":"Daisuke Kurosawa x Kanako Kotera",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_koi907",
+ "japaneseText":"",
+ "englishUsText":"濃紅",
+ "englishUsFontType":0,
+ "frenchText":"濃紅",
+ "frenchFontType":0,
+ "italianText":"濃紅",
+ "italianFontType":0,
+ "germanText":"濃紅",
+ "germanFontType":0,
+ "spanishText":"濃紅",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"濃紅",
+ "koreanFontType":0,
+ "portugueseText":"濃紅",
+ "portugueseFontType":0,
+ "russianText":"濃紅",
+ "russianFontType":0,
+ "turkishText":"濃紅",
+ "turkishFontType":0,
+ "arabicText":"濃紅",
+ "arabicFontType":0,
+ "dutchText":"濃紅",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"osirase_v1_10_0",
+ "japaneseText":"太鼓の達人 Pop Tap Beat をプレイ頂き、ありがとうございます!\n\nソフトウェアのアップデートを行いました(Ver.1.10.0)\n\n・いくつかの不具合の修正、パフォーマンス調整を行いました。\n\n★新曲追加★\n機動戦士ガンダム第40話で使われた伝説の挿入歌から\n「シャアが来る」が太鼓の達人シリーズ初登場!\n\nその他、定番アニメソングなど全7曲を追加しました。",
+ "englishUsText":"Thank you for playing Taiko no Tatsujin Pop Tap Beat!\n\nThe game has been updated (Ver.1.10.0).\n\n・We have implemented various minor improvements and\nbug fixes.\n\n★New Songs Added★\nThe legendary background music from Mobile Suit Gundam\nepisode 40 makes its Taiko no Tatsujin debut as \"HERE COMES CHAR\"!\n\nOther anime classics are also now available, for a total\nof seven new songs.",
+ "englishUsFontType":3,
+ "frenchText":"Merci de jouer à Taiko no Tatsujin Pop Tap Beat !\n\nMise à jour du logiciel (Ver.1.10.0)\n\n- Correction de certains bugs et équilibrage des\nperformances.\n\n★ Ajout de nouvelles chansons ★\nDécouvrez pour la première fois dans Taiko no Tatsujin le\nmorceau légendaire issu du 40e épisode de Mobile Suit Gundam,\n« HERE COMES CHAR » !\n\nAu total, 7 chansons ont été ajoutées, dont des titres\nd'anime classiques.",
+ "frenchFontType":3,
+ "italianText":"Grazie per aver giocato a Taiko no Tatsujin Pop Tap Beat!\n\nAbbiamo aggiornato il gioco. (Ver. 1.10.0)\n\nCorrezione di vari bug e miglioramenti delle prestazioni.\n\nNuovi brani\n\"HERE COMES CHAR\", leggendario brano dell'episodio 40\ndi Mobile Suit Gundam, arriva per la prima volta\nnella serie Taiko no Tatsujin!\n\nI 7 nuovi brani includono altre famose\ncanzoni tratte da serie animate.",
+ "italianFontType":3,
+ "germanText":"Vielen Dank fürs Spielen von Taiko no Tatsujin Pop Tap Beat!\n\nDie Software wurde aktualisiert (Ver.1.10.0).\n\n・Fehlerbehebungen und Leistungsanpassungen\n\n★Neue Songs★\nDie legendäre Hintergrundmusik aus der 40. Episode\nvon Mobile Suit Gundam ist nun als \"HERE COMES CHAR\"\nauf Taiko no Tatsujin verfügbar!\n\nInsgesamt wurden 7 neue Songs hinzugefügt,\ndarunter beliebte Anime-Klassiker.",
+ "germanFontType":3,
+ "spanishText":"¡Gracias por jugar a Taiko no Tatsujin Pop Tap Beat!\n\nNovedades de la última actualización\n(ver. 1.10.0)\n\n・Hemos arreglado errores y mejorado\nel rendimiento.\n\n★¡Nuevas canciones!★\n¡HERE COMES CHAR, la legendaria canción\ndel episodio 40 de Mobile Suit Gundam,\nhace su primera aparición en Taiko no Tatsujin!\n\nEn total, se añadieron 7 canciones, incluyendo algunos\nclásicos del mundo Anime.",
+ "spanishFontType":3,
+ "chineseTText":"感謝您遊玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本軟體已更新(Ver.1.10.0)。\n\n‧已修正部分異常以及調整遊戲表現。\n\n★追加新曲★\n選自《機動戰士GUNDAM》第40集的經典插曲\n《HERE COMES CHAR》將首次在太鼓之達人系列登場!\n\n另外已追加經典動畫樂曲等,共7首樂曲。",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 Pop Tap Beat를 플레이해주셔서 감사합니다!\n\n소프트웨어를 업데이트했습니다.(Ver.1.10.0)\n\n・그 외 오류를 수정하고 퍼포먼스를 조정했습니다.\n\n★신곡 추가★\n기동전사건담 40화에서 사용된 전설의 삽입곡 중\n'HERE COMES CHAR'가 태고의 달인 시리즈 최초로 등장!\n\n그 밖에도 애니메이션 대표곡 등 총 7곡을 추가했습니다.",
+ "koreanFontType":2,
+ "portugueseText":"Obrigado por jogar Taiko no Tatsujin Pop Tap Beat!\n\nO software foi atualizado (Ver.1.10.0).\n\n ・ Outras pequenas melhorias e correções de erros.\n\n ★ Adição de novas músicas ★ \nPela primeira vez na série Taiko no Tatsujin, surge a canção\nlendária do 40º episódio de Mobile Suit Gundam,\n\"HERE COMES CHAR\"!\n\nAdicionámos um total de 7 músicas, incluindo\ncanções clássicas de anime.",
+ "portugueseFontType":2,
+ "russianText":"Спасибо, что играете в Taiko no Tatsujin Pop Tap Beat!\n\nПрограммное обеспечение обновлено (версия 1.10.0)\n\n・Исправлены ошибки и улучшена производительность.\n\n★ Добавлены новые песни ★\nЛегендарная песня из 40-го эпизода аниме Mobile Suit Gundam\n«HERE COMES CHAR» - впервые в Taiko no Tatsujin!\n\nКроме того, были добавлены другие 7 песен,\nв том числе и песни из аниме.",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat›i oynadığınız için teşekkür ederiz!\n\nOyun güncellendi (Ver.1.10.0).\n\n・Bir takım küçük iyileştirmeler ve hata düzeltmeleri\nyapıldı.\n\n★Yeni Şarkılar Eklendi★\nMobile Suit Gundam'ın 40. bölümünün efsanevi fon müziği,\nTaiko no Tatsujin'i \"HERE COMES CHAR\" yapıyor!\n\nFarklı anime klasikleri de dahil olacak şekilde toplamda\nyedi yeni şarkı mevcut.",
+ "turkishFontType":2,
+ "arabicText":"نشكرك على لعب Taiko no Tatsujin Pop Tap Beat!\n\nلقد تم تحديث اللعبة (نسخة 1.10.0).\n\n・لقد أجرينا تحسينات طفيفة متنوعة وإصلاحات للأخطاء.\n\n★تمت إضافة أغنيات جديدة★\nالموسيقى التصويرية الأسطورية من الحلقة الـ 40 بمسلسل Mobile Suit\nGundam تصل إلى Taiko no Tatsujin تحت عنوان \"HERE COMES CHAR\"!\n\nبالإضافة إلى المزيد من كلاسيكيات الأنيمي الأخرى التي أصبحت\nمتوفرة كذلك، ليصبح المجموع سبع أغنيات جديدة.",
+ "arabicFontType":2,
+ "dutchText":"Bedankt dat je Taiko no Tatsujin Pop Tap Beat speelt!\n\nDe software is geüpdatet. (Ver.1.10.0)\n\nEr zijn verschillende bugs opgelost en de performance van\nhet spel is verbeterd.\n\n★Nieuwe liedjes★\nDe legendarische soundtrack uit aflevering 40 van\nMobile Suit Gundam 'HERE COMES CHAR' is voor het eerst\nbeschikbaar in Taiko no Tatsujin!\n\nVerder zijn er een aantal onmisbare anime-songs toegevoegd,\nen zijn er in totaal 7 nieuwe liedjes.",
+ "dutchFontType":2,
+ "chineseSText":"感谢您游玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本软件已更新(Ver.1.10.0)。\n\n·已修正部分异常并调整游戏表现。\n\n★追加新曲★\n选自《机动战士GUNDAM》第40集的经典插曲\n《HERE COMES CHAR》将首次在太鼓之达人系列登场!\n\n另外已追加经典动画乐曲等,共7首乐曲。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"osirase_v1_10_0_title",
+ "japaneseText":"ソフトウェアのアップデートを行いました(Ver.1.10.0)",
+ "englishUsText":"The game has been updated (Ver.1.10.0)",
+ "englishUsFontType":3,
+ "frenchText":"Mise à jour du logiciel (Ver.1.10.0)",
+ "frenchFontType":3,
+ "italianText":"Abbiamo aggiornato il gioco. (Ver.1.10.0)",
+ "italianFontType":3,
+ "germanText":"Die Software wurde aktualisiert (Ver.1.10.0)",
+ "germanFontType":3,
+ "spanishText":"Novedades de la última actualización (Ver.1.10.0)",
+ "spanishFontType":3,
+ "chineseTText":"本軟體已更新(Ver.1.10.0)",
+ "chineseTFontType":1,
+ "koreanText":"소프트웨어를 업데이트했습니다.(Ver.1.10.0)",
+ "koreanFontType":2,
+ "portugueseText":"O software foi atualizado (Ver.1.10.0)",
+ "portugueseFontType":2,
+ "russianText":"Программное обеспечение обновлено (версия 1.10.0)",
+ "russianFontType":2,
+ "turkishText":"Oyun güncellendi (Ver.1.10.0)",
+ "turkishFontType":2,
+ "arabicText":"لقد تم تحديث اللعبة (نسخة 1.10.0)",
+ "arabicFontType":2,
+ "dutchText":"De software is geüpdatet. (Ver.1.10.0)",
+ "dutchFontType":2,
+ "chineseSText":"本软件已更新(Ver.1.10.0)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_timing",
+ "japaneseText":"Timing ~タイミング~",
+ "englishUsText":"Timing",
+ "englishUsFontType":3,
+ "frenchText":"Timing",
+ "frenchFontType":3,
+ "italianText":"Timing",
+ "italianFontType":3,
+ "germanText":"Timing",
+ "germanFontType":3,
+ "spanishText":"Timing",
+ "spanishFontType":3,
+ "chineseTText":"時機 ~Timing~",
+ "chineseTFontType":1,
+ "koreanText":"Timing",
+ "koreanFontType":2,
+ "portugueseText":"Timing",
+ "portugueseFontType":3,
+ "russianText":"Timing",
+ "russianFontType":3,
+ "turkishText":"Timing",
+ "turkishFontType":3,
+ "arabicText":"Timing",
+ "arabicFontType":3,
+ "dutchText":"Timing",
+ "dutchFontType":3,
+ "chineseSText":"时机 ~Timing~",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_timing",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_timing",
+ "japaneseText":"",
+ "englishUsText":"Timing ~タイミング~",
+ "englishUsFontType":0,
+ "frenchText":"Timing ~タイミング~",
+ "frenchFontType":0,
+ "italianText":"Timing ~タイミング~",
+ "italianFontType":0,
+ "germanText":"Timing ~タイミング~",
+ "germanFontType":0,
+ "spanishText":"Timing ~タイミング~",
+ "spanishFontType":0,
+ "chineseTText":"Timing ~タイミング~",
+ "chineseTFontType":0,
+ "koreanText":"Timing ~タイミング~",
+ "koreanFontType":0,
+ "portugueseText":"Timing ~タイミング~",
+ "portugueseFontType":0,
+ "russianText":"Timing ~タイミング~",
+ "russianFontType":0,
+ "turkishText":"Timing ~タイミング~",
+ "turkishFontType":0,
+ "arabicText":"Timing ~タイミング~",
+ "arabicFontType":0,
+ "dutchText":"Timing ~タイミング~",
+ "dutchFontType":0,
+ "chineseSText":"Timing ~タイミング~",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_kaneda",
+ "japaneseText":"KANEDA",
+ "englishUsText":"KANEDA",
+ "englishUsFontType":3,
+ "frenchText":"KANEDA",
+ "frenchFontType":3,
+ "italianText":"KANEDA",
+ "italianFontType":3,
+ "germanText":"KANEDA",
+ "germanFontType":3,
+ "spanishText":"KANEDA",
+ "spanishFontType":3,
+ "chineseTText":"KANEDA",
+ "chineseTFontType":1,
+ "koreanText":"KANEDA",
+ "koreanFontType":2,
+ "portugueseText":"KANEDA",
+ "portugueseFontType":3,
+ "russianText":"KANEDA",
+ "russianFontType":3,
+ "turkishText":"KANEDA",
+ "turkishFontType":3,
+ "arabicText":"KANEDA",
+ "arabicFontType":3,
+ "dutchText":"KANEDA",
+ "dutchFontType":3,
+ "chineseSText":"KANEDA",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_kaneda",
+ "japaneseText":"「Symphonic Suite AKIRA」より",
+ "englishUsText":"From \" Symphonic Suite AKIRA \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Symphonic Suite AKIRA \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Symphonic Suite AKIRA \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Symphonic Suite AKIRA \"",
+ "germanFontType":3,
+ "spanishText":"De \" Symphonic Suite AKIRA \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「Symphonic Suite AKIRA」",
+ "chineseTFontType":1,
+ "koreanText":"\"Symphonic Suite AKIRA\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" Symphonic Suite AKIRA \"",
+ "portugueseFontType":3,
+ "russianText":"From \" Symphonic Suite AKIRA \"",
+ "russianFontType":3,
+ "turkishText":"From \" Symphonic Suite AKIRA \"",
+ "turkishFontType":3,
+ "arabicText":"From \" Symphonic Suite AKIRA \"",
+ "arabicFontType":3,
+ "dutchText":"From \" Symphonic Suite AKIRA \"",
+ "dutchFontType":3,
+ "chineseSText":"出自\"Symphonic Suite AKIRA\"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_kaneda",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_yugio2",
+ "japaneseText":"快晴・上昇・ハレルーヤ",
+ "englishUsText":"Kaisei Joushou Halleluiah",
+ "englishUsFontType":3,
+ "frenchText":"Kaisei Joushou Halleluiah",
+ "frenchFontType":3,
+ "italianText":"Kaisei Joushou Halleluiah",
+ "italianFontType":3,
+ "germanText":"Kaisei Joushou Halleluiah",
+ "germanFontType":3,
+ "spanishText":"Kaisei Joushou Halleluiah",
+ "spanishFontType":3,
+ "chineseTText":"Kaisei Joushou Halleluiah",
+ "chineseTFontType":1,
+ "koreanText":"Kaisei Joushou Halleluiah",
+ "koreanFontType":2,
+ "portugueseText":"Kaisei Joushou Halleluiah",
+ "portugueseFontType":3,
+ "russianText":"Kaisei Joushou Halleluiah",
+ "russianFontType":3,
+ "turkishText":"Kaisei Joushou Halleluiah",
+ "turkishFontType":3,
+ "arabicText":"Kaisei Joushou Halleluiah",
+ "arabicFontType":3,
+ "dutchText":"Kaisei Joushou Halleluiah",
+ "dutchFontType":3,
+ "chineseSText":"Kaisei Joushou Halleluiah",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_yugio2",
+ "japaneseText":"「遊☆戯☆王デュエルモンスターズGX」より",
+ "englishUsText":"From \" Yu☆Gi☆Oh! DUEL MONSTERS GX \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Yu☆Gi☆Oh! DUEL MONSTERS GX \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Yu☆Gi☆Oh! DUEL MONSTERS GX \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Yu☆Gi☆Oh! DUEL MONSTERS GX \"",
+ "germanFontType":3,
+ "spanishText":"De \" Yu☆Gi☆Oh! DUEL MONSTERS GX \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「游☆戲☆王 DUEL MONSTERS GX」",
+ "chineseTFontType":1,
+ "koreanText":"\"유☆희☆왕 DUEL MONSTERS GX\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" Yu☆Gi☆Oh! DUEL MONSTERS GX \"",
+ "portugueseFontType":3,
+ "russianText":"From \" Yu☆Gi☆Oh! DUEL MONSTERS GX \"",
+ "russianFontType":3,
+ "turkishText":"From \" Yu☆Gi☆Oh! DUEL MONSTERS GX \"",
+ "turkishFontType":3,
+ "arabicText":"From \" Yu☆Gi☆Oh! DUEL MONSTERS GX \"",
+ "arabicFontType":3,
+ "dutchText":"From \" Yu☆Gi☆Oh! DUEL MONSTERS GX \"",
+ "dutchFontType":3,
+ "chineseSText":"出自\"游☆戏☆王 DUEL MONSTERS GX\"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_yugio2",
+ "japaneseText":"",
+ "englishUsText":"快晴・上昇・ハレルーヤ",
+ "englishUsFontType":0,
+ "frenchText":"快晴・上昇・ハレルーヤ",
+ "frenchFontType":0,
+ "italianText":"快晴・上昇・ハレルーヤ",
+ "italianFontType":0,
+ "germanText":"快晴・上昇・ハレルーヤ",
+ "germanFontType":0,
+ "spanishText":"快晴・上昇・ハレルーヤ",
+ "spanishFontType":0,
+ "chineseTText":"快晴・上昇・ハレルーヤ",
+ "chineseTFontType":0,
+ "koreanText":"快晴・上昇・ハレルーヤ",
+ "koreanFontType":0,
+ "portugueseText":"快晴・上昇・ハレルーヤ",
+ "portugueseFontType":0,
+ "russianText":"快晴・上昇・ハレルーヤ",
+ "russianFontType":0,
+ "turkishText":"快晴・上昇・ハレルーヤ",
+ "turkishFontType":0,
+ "arabicText":"快晴・上昇・ハレルーヤ",
+ "arabicFontType":0,
+ "dutchText":"快晴・上昇・ハレルーヤ",
+ "dutchFontType":0,
+ "chineseSText":"快晴・上昇・ハレルーヤ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_rlnedy",
+ "japaneseText":"EDY -エレクトリカルダンシングヨガ-",
+ "englishUsText":"EDY -Electrical Dancing Yoga-",
+ "englishUsFontType":3,
+ "frenchText":"EDY -Electrical Dancing Yoga-",
+ "frenchFontType":3,
+ "italianText":"EDY -Electrical Dancing Yoga-",
+ "italianFontType":3,
+ "germanText":"EDY -Electrical Dancing Yoga-",
+ "germanFontType":3,
+ "spanishText":"EDY -Electrical Dancing Yoga-",
+ "spanishFontType":3,
+ "chineseTText":"EDY -Electrical Dancing Yoga-",
+ "chineseTFontType":1,
+ "koreanText":"EDY -Electrical Dancing Yoga-",
+ "koreanFontType":2,
+ "portugueseText":"EDY -Electrical Dancing Yoga-",
+ "portugueseFontType":3,
+ "russianText":"EDY -Electrical Dancing Yoga-",
+ "russianFontType":3,
+ "turkishText":"EDY -Electrical Dancing Yoga-",
+ "turkishFontType":3,
+ "arabicText":"EDY -Electrical Dancing Yoga-",
+ "arabicFontType":3,
+ "dutchText":"EDY -Electrical Dancing Yoga-",
+ "dutchFontType":3,
+ "chineseSText":"EDY -Electrical Dancing Yoga-",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_rlnedy",
+ "japaneseText":"feat. 鏡音リン・鏡音レン",
+ "englishUsText":"feat. KAGAMINE RIN, KAGAMINE LEN",
+ "englishUsFontType":3,
+ "frenchText":"feat. KAGAMINE RIN, KAGAMINE LEN",
+ "frenchFontType":3,
+ "italianText":"feat. KAGAMINE RIN, KAGAMINE LEN",
+ "italianFontType":3,
+ "germanText":"feat. KAGAMINE RIN, KAGAMINE LEN",
+ "germanFontType":3,
+ "spanishText":"feat. KAGAMINE RIN, KAGAMINE LEN",
+ "spanishFontType":3,
+ "chineseTText":"feat. 鏡音鈴・鏡音連",
+ "chineseTFontType":1,
+ "koreanText":"feat. 카가미네 린・카가미네 렌",
+ "koreanFontType":2,
+ "portugueseText":"feat. KAGAMINE RIN, KAGAMINE LEN",
+ "portugueseFontType":3,
+ "russianText":"feat. KAGAMINE RIN, KAGAMINE LEN",
+ "russianFontType":3,
+ "turkishText":"feat. KAGAMINE RIN, KAGAMINE LEN",
+ "turkishFontType":3,
+ "arabicText":"feat. KAGAMINE RIN, KAGAMINE LEN",
+ "arabicFontType":3,
+ "dutchText":"feat. KAGAMINE RIN, KAGAMINE LEN",
+ "dutchFontType":3,
+ "chineseSText":"feat. 镜音铃・镜音连",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_rlnedy",
+ "japaneseText":"",
+ "englishUsText":"EDY -エレクトリカルダンシングヨガ-",
+ "englishUsFontType":0,
+ "frenchText":"EDY -エレクトリカルダンシングヨガ-",
+ "frenchFontType":0,
+ "italianText":"EDY -エレクトリカルダンシングヨガ-",
+ "italianFontType":0,
+ "germanText":"EDY -エレクトリカルダンシングヨガ-",
+ "germanFontType":0,
+ "spanishText":"EDY -エレクトリカルダンシングヨガ-",
+ "spanishFontType":0,
+ "chineseTText":"EDY -エレクトリカルダンシングヨガ-",
+ "chineseTFontType":0,
+ "koreanText":"EDY -エレクトリカルダンシングヨガ-",
+ "koreanFontType":0,
+ "portugueseText":"EDY -エレクトリカルダンシングヨガ-",
+ "portugueseFontType":0,
+ "russianText":"EDY -エレクトリカルダンシングヨガ-",
+ "russianFontType":0,
+ "turkishText":"EDY -エレクトリカルダンシングヨガ-",
+ "turkishFontType":0,
+ "arabicText":"EDY -エレクトリカルダンシングヨガ-",
+ "arabicFontType":0,
+ "dutchText":"EDY -エレクトリカルダンシングヨガ-",
+ "dutchFontType":0,
+ "chineseSText":"EDY -エレクトリカルダンシングヨガ-",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_clsh",
+ "japaneseText":"ハンガリー舞曲第5番",
+ "englishUsText":"Hungarian Dance No.5",
+ "englishUsFontType":3,
+ "frenchText":"Danse hongroise no 5",
+ "frenchFontType":3,
+ "italianText":"Danza ungherese n.5",
+ "italianFontType":3,
+ "germanText":"Ungarischer Tanz Nr.5",
+ "germanFontType":3,
+ "spanishText":"Danza húngara n.º 5",
+ "spanishFontType":3,
+ "chineseTText":"匈牙利舞曲第五號",
+ "chineseTFontType":1,
+ "koreanText":"헝가리 무곡 5번",
+ "koreanFontType":2,
+ "portugueseText":"Hungarian Dance No.5",
+ "portugueseFontType":3,
+ "russianText":"Hungarian Dance No.5",
+ "russianFontType":3,
+ "turkishText":"Hungarian Dance No.5",
+ "turkishFontType":3,
+ "arabicText":"Hungarian Dance No.5",
+ "arabicFontType":3,
+ "dutchText":"Hungarian Dance No.5",
+ "dutchFontType":3,
+ "chineseSText":"匈牙利舞曲第五号",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_clsh",
+ "japaneseText":"ブラームス",
+ "englishUsText":"Johannes Brahms",
+ "englishUsFontType":3,
+ "frenchText":"Johannes Brahms",
+ "frenchFontType":3,
+ "italianText":"Johannes Brahms",
+ "italianFontType":3,
+ "germanText":"Johannes Brahms",
+ "germanFontType":3,
+ "spanishText":"Johannes Brahms",
+ "spanishFontType":3,
+ "chineseTText":"布拉姆斯",
+ "chineseTFontType":1,
+ "koreanText":"요하네스 브람스",
+ "koreanFontType":2,
+ "portugueseText":"Johannes Brahms",
+ "portugueseFontType":3,
+ "russianText":"Johannes Brahms",
+ "russianFontType":3,
+ "turkishText":"Johannes Brahms",
+ "turkishFontType":3,
+ "arabicText":"Johannes Brahms",
+ "arabicFontType":3,
+ "dutchText":"Johannes Brahms",
+ "dutchFontType":3,
+ "chineseSText":"布拉姆斯",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_clsh",
+ "japaneseText":"",
+ "englishUsText":"ハンガリー舞曲第5番",
+ "englishUsFontType":0,
+ "frenchText":"ハンガリー舞曲第5番",
+ "frenchFontType":0,
+ "italianText":"ハンガリー舞曲第5番",
+ "italianFontType":0,
+ "germanText":"ハンガリー舞曲第5番",
+ "germanFontType":0,
+ "spanishText":"ハンガリー舞曲第5番",
+ "spanishFontType":0,
+ "chineseTText":"ハンガリー舞曲第5番",
+ "chineseTFontType":0,
+ "koreanText":"ハンガリー舞曲第5番",
+ "koreanFontType":0,
+ "portugueseText":"ハンガリー舞曲第5番",
+ "portugueseFontType":0,
+ "russianText":"ハンガリー舞曲第5番",
+ "russianFontType":0,
+ "turkishText":"ハンガリー舞曲第5番",
+ "turkishFontType":0,
+ "arabicText":"ハンガリー舞曲第5番",
+ "arabicFontType":0,
+ "dutchText":"ハンガリー舞曲第5番",
+ "dutchFontType":0,
+ "chineseSText":"ハンガリー舞曲第5番",
+ "chineseSFontType":0
+ },
+ {
+ "key":"osirase_v1_11_0",
+ "japaneseText":"太鼓の達人 Pop Tap Beat をプレイ頂き、ありがとうございます!\n\nソフトウェアのアップデートを行いました(Ver.1.11.0)\n\n・いくつかの不具合の修正、パフォーマンス調整を行いました。\n\n★新曲追加★\n全世界で愛される1988年の伝説の劇場版アニメ「AKIRA」より\n「KANEDA」が太鼓の達人シリーズ初登場!\nその他、全5曲を追加しました。",
+ "englishUsText":"Thank you for playing Taiko no Tatsujin Pop Tap Beat!\n\nThe game has been updated (Ver.1.11.0).\n\n・We have carried out various minor improvements and\nbug fixes.\n\n★New Songs Added★\nFrom AKIRA, the legendary 1988 anime feature film beloved\nall around the world, \"KANEDA\" makes its Taiko no Tatsujin\ndebut! In total, five new songs are now available.",
+ "englishUsFontType":3,
+ "frenchText":"Merci de jouer à Taiko no Tatsujin Pop Tap Beat !\n\nMise à jour du logiciel (Ver.1.11.0)\n\n- Correction de certains bugs et équilibrage des\nperformances.\n\n★ Ajout de nouvelles chansons ★\nDécouvrez pour la première fois dans Taiko no Tatsujin\nle morceau KANEDA issu du légendaire succès mondial de\n1988, le film d'animation AKIRA !\nAu total, 5 chansons ont été ajoutées.",
+ "frenchFontType":3,
+ "italianText":"Grazie per aver giocato a Taiko no Tatsujin Pop Tap Beat!\n\nAbbiamo aggiornato il gioco. (Ver. 1.11.0)\n\nCorrezione di vari bug e miglioramenti delle prestazioni.\n\nNuovi brani\n\"KANEDA\", dal famoso film di animazione \"AKIRA\" del 1988,\namato in tutto il mondo,\narriva per la prima volta nella serie Taiko no Tatsujin!\nQuesto è solo uno dei 5 nuovi brani aggiunti.",
+ "italianFontType":3,
+ "germanText":"Vielen Dank fürs Spielen von Taiko no Tatsujin Pop Tap Beat!\n\nDie Software wurde aktualisiert (Ver.1.11.0).\n\n・Fehlerbehebungen und Leistungsanpassungen\n\n★Neue Songs★\n\"KANEDA\" aus dem weltweit beliebten Anime \"AKIRA\"\naus dem Jahr 1988 feiert sein Debut bei Taiko no Tatsujin!\nInsgesamt wurden 5 neue Songs hinzugefügt.",
+ "germanFontType":3,
+ "spanishText":"¡Gracias por jugar a Taiko no Tatsujin Pop Tap Beat!\n\nNovedades de la última actualización\n(ver. 1.11.0)\n\n・Hemos arreglado errores y mejorado\nel rendimiento.\n\n★¡Nuevas canciones!★\n¡Desde 1988, llega por primera vez a la serie Taiko no\nTatsujin KANEDA, el tema musical de la mítica película\nde anime AKIRA!\nEn total, se añadieron 5 canciones.",
+ "spanishFontType":3,
+ "chineseTText":"感謝您遊玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本軟體已更新(Ver.1.11.0)。\n\n‧已修正部分異常以及調整遊戲表現。\n\n★追加新曲★\n選自1988年風靡全世界的傳奇動畫電影《AKIRA》,\n《KANEDA》將首次在太鼓之達人系列登場!\n另外已追加共5首樂曲。",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 Pop Tap Beat를 플레이해주셔서 감사합니다!\n\n소프트웨어를 업데이트했습니다.(Ver.1.11.0)\n\n・그 외 오류를 수정하고 퍼포먼스를 조정했습니다.\n\n★신곡 추가★\n전 세계에서 사랑받는 \n전설적인 1988년 작 극장판 애니메이션 'AKIRA'에서\n'KANEDA'가 태고의 달인 시리즈 최초로 등장!\n그 밖에도 총 5곡을 추가했습니다.",
+ "koreanFontType":2,
+ "portugueseText":"Obrigado por jogar Taiko no Tatsujin Pop Tap Beat!\n\nO jogo foi atualizado (Ver.1.11.0).\n\n・Realizamos diversas melhorias menores e\ncorreções de erro.\n\n★Novas músicas adicionadas★\nDe AKIRA, o lendário filme de anime de 1988 amado\nem todo o mundo, \"KANEDA\" faz sua estreia no\nTaiko no Tatsujin! No total, cinco músicas novas estão disponíveis.",
+ "portugueseFontType":2,
+ "russianText":"Спасибо, что играете в Taiko no Tatsujin Pop Tap Beat!\n\nИгра обновлена до версии 1.11.0.\n\n・Исправлены ошибки,\nи улучшена производительность.\n\n ★Добавлены новые песни★\nВпервые в игре Taiko no Tatsujin появилась песня KANEDA\nиз легендарного аниме «AKIRA» 1988 года!\nВсего теперь доступны пять новых песен.",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat'i oynadığınız için teşekkürederiz!\n\nOyun güncellendi. (Ver.1.11.0)\n\n・Birtakım küçük iyileştirmeler ve hata düzeltmeleriyapıldı.\n\n★Yeni Şarkılar Eklendi★\n1988 yılında çıkan ve tüm dünyanın beğenisini kazanmış\nefsanevi anime filmi AKIRA'dan \"KANEDA\" parçası\n Taiko no Tatsujin'de ilk kez oyuncularla buluşuyor!\n Toplamda beş yeni şarkı eklendi.",
+ "turkishFontType":2,
+ "arabicText":"نشكرك على لعب Taiko no Tatsujin Pop Tap Beat!\n\nلقد تم تحديث اللعبة (نسخة 1.11.0).\n\n・لقد أجرينا تحسينات طفيفة\n متنوعة وإصلاحات للأخطاء.\n\n★تمت إضافة أغنيات جديدة★\nمن فيلم الأنمي الأسطوري AKIRA لعام 1988 والمحبوب في جميع\nأنحاء العالم، تصل أغنية \"KANEDA\" إلى لعبة Taiko no Tatsujin\nللمرة الأولى! في المجموع، أصبحت خمس أغنيات جديدة متاحة.",
+ "arabicFontType":2,
+ "dutchText":"Bedankt dat je Taiko no Tatsujin Pop Tap Beat speelt!\n\nDe game is geüpdatet. (Ver.1.11.0)\n\n・We hebben enkele minimale verbeteringen uitgevoerd en\ndiverse bugs opgelost.\n\n★Nieuwe liedjes toegevoegd★\nHet lied 'KANEDA' uit de legendarische en over de hele\nwereld geliefde anime-film 'AKIRA' uit 1988 is nu voor\nhet eerst speelbaar in een Taiko no Tatsujin spel! In totaal zijn er vijf nieuwe liedjes beschikbaar.",
+ "dutchFontType":2,
+ "chineseSText":"感谢您游玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本软件已更新(Ver.1.11.0)。\n\n·已修正部分异常并调整游戏表现。\n\n★追加新曲★\n选自1988年风靡全世界的传奇动画电影《AKIRA》,\n《KANEDA》将首次在太鼓之达人系列登场!\n另外已追加共5首乐曲。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"osirase_v1_11_0_title",
+ "japaneseText":"ソフトウェアのアップデートを行いました(Ver.1.11.0)",
+ "englishUsText":"The game has been updated (Ver.1.11.0)",
+ "englishUsFontType":3,
+ "frenchText":"Mise à jour du logiciel (Ver.1.11.0)",
+ "frenchFontType":3,
+ "italianText":"Abbiamo aggiornato il gioco. (Ver.1.11.0)",
+ "italianFontType":3,
+ "germanText":"Die Software wurde aktualisiert (Ver.1.11.0)",
+ "germanFontType":3,
+ "spanishText":"Novedades de la última actualización (Ver.1.11.0)",
+ "spanishFontType":3,
+ "chineseTText":"本軟體已更新(Ver.1.11.0)",
+ "chineseTFontType":1,
+ "koreanText":"소프트웨어를 업데이트했습니다.(Ver.1.11.0)",
+ "koreanFontType":2,
+ "portugueseText":"O software foi atualizado (Ver.1.11.0)",
+ "portugueseFontType":2,
+ "russianText":"Программное обеспечение обновлено (версия 1.11.0)",
+ "russianFontType":2,
+ "turkishText":"Oyun güncellendi (Ver.1.11.0)",
+ "turkishFontType":2,
+ "arabicText":"لقد تم تحديث اللعبة (نسخة 1.11.0)",
+ "arabicFontType":2,
+ "dutchText":"De software is geüpdatet. (Ver.1.11.0)",
+ "dutchFontType":2,
+ "chineseSText":"本软件已更新(Ver.1.11.0)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_kfphon",
+ "japaneseText":"フォニイ",
+ "englishUsText":"phony",
+ "englishUsFontType":3,
+ "frenchText":"phony",
+ "frenchFontType":3,
+ "italianText":"phony",
+ "italianFontType":3,
+ "germanText":"phony",
+ "germanFontType":3,
+ "spanishText":"phony",
+ "spanishFontType":3,
+ "chineseTText":"phony",
+ "chineseTFontType":1,
+ "koreanText":"phony",
+ "koreanFontType":2,
+ "portugueseText":"phony",
+ "portugueseFontType":3,
+ "russianText":"phony",
+ "russianFontType":3,
+ "turkishText":"phony",
+ "turkishFontType":3,
+ "arabicText":"phony",
+ "arabicFontType":3,
+ "dutchText":"phony",
+ "dutchFontType":3,
+ "chineseSText":"phony",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_kfphon",
+ "japaneseText":"ツミキ feat. 音楽的同位体 可不(KAFU)",
+ "englishUsText":"tsumiki feat. KAFU",
+ "englishUsFontType":3,
+ "frenchText":"tsumiki feat. KAFU",
+ "frenchFontType":3,
+ "italianText":"tsumiki feat. KAFU",
+ "italianFontType":3,
+ "germanText":"tsumiki feat. KAFU",
+ "germanFontType":3,
+ "spanishText":"tsumiki feat. KAFU",
+ "spanishFontType":3,
+ "chineseTText":"tsumiki feat. KAFU",
+ "chineseTFontType":1,
+ "koreanText":"tsumiki feat. KAFU",
+ "koreanFontType":2,
+ "portugueseText":"tsumiki feat. KAFU",
+ "portugueseFontType":3,
+ "russianText":"tsumiki feat. KAFU",
+ "russianFontType":3,
+ "turkishText":"tsumiki feat. KAFU",
+ "turkishFontType":3,
+ "arabicText":"tsumiki feat. KAFU",
+ "arabicFontType":3,
+ "dutchText":"tsumiki feat. KAFU",
+ "dutchFontType":3,
+ "chineseSText":"tsumiki feat. KAFU",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_kfphon",
+ "japaneseText":"",
+ "englishUsText":"フォニイ",
+ "englishUsFontType":0,
+ "frenchText":"フォニイ",
+ "frenchFontType":0,
+ "italianText":"フォニイ",
+ "italianFontType":0,
+ "germanText":"フォニイ",
+ "germanFontType":0,
+ "spanishText":"フォニイ",
+ "spanishFontType":0,
+ "chineseTText":"フォニイ",
+ "chineseTFontType":0,
+ "koreanText":"フォニイ",
+ "koreanFontType":0,
+ "portugueseText":"フォニイ",
+ "portugueseFontType":0,
+ "russianText":"フォニイ",
+ "russianFontType":0,
+ "turkishText":"フォニイ",
+ "turkishFontType":0,
+ "arabicText":"フォニイ",
+ "arabicFontType":0,
+ "dutchText":"フォニイ",
+ "dutchFontType":0,
+ "chineseSText":"フォニイ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_ohdmi2",
+ "japaneseText":"ミックスナッツ",
+ "englishUsText":"Mixed nuts",
+ "englishUsFontType":3,
+ "frenchText":"Mixed nuts",
+ "frenchFontType":3,
+ "italianText":"Mixed nuts",
+ "italianFontType":3,
+ "germanText":"Mixed nuts",
+ "germanFontType":3,
+ "spanishText":"Mixed nuts",
+ "spanishFontType":3,
+ "chineseTText":"Mixed nuts",
+ "chineseTFontType":1,
+ "koreanText":"Mixed nuts",
+ "koreanFontType":2,
+ "portugueseText":"Mixed nuts",
+ "portugueseFontType":3,
+ "russianText":"Mixed nuts",
+ "russianFontType":3,
+ "turkishText":"Mixed nuts",
+ "turkishFontType":3,
+ "arabicText":"Mixed nuts",
+ "arabicFontType":3,
+ "dutchText":"Mixed nuts",
+ "dutchFontType":3,
+ "chineseSText":"Mixed nuts",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_ohdmi2",
+ "japaneseText":"TVアニメ『SPY×FAMILY』第1クールオープニング主題歌",
+ "englishUsText":"TV Anime \" SPY×FAMILY \" Cour 1 Opening Theme",
+ "englishUsFontType":3,
+ "frenchText":"TV Anime \" SPY×FAMILY \" Cour 1 Opening Theme",
+ "frenchFontType":3,
+ "italianText":"TV Anime \" SPY×FAMILY \" Cour 1 Opening Theme",
+ "italianFontType":3,
+ "germanText":"TV Anime \" SPY×FAMILY \" Cour 1 Opening Theme",
+ "germanFontType":3,
+ "spanishText":"TV Anime \" SPY×FAMILY \" Cour 1 Opening Theme",
+ "spanishFontType":3,
+ "chineseTText":"電視動畫「SPY×FAMILY」第一期片頭曲",
+ "chineseTFontType":1,
+ "koreanText":"TV애니메이션 \"SPY×FAMILY\" 1쿨 오프닝 테마",
+ "koreanFontType":2,
+ "portugueseText":"TV Anime \" SPY×FAMILY \" Cour 1 Opening Theme",
+ "portugueseFontType":3,
+ "russianText":"TV Anime \" SPY×FAMILY \" Cour 1 Opening Theme",
+ "russianFontType":3,
+ "turkishText":"TV Anime \" SPY×FAMILY \" Cour 1 Opening Theme",
+ "turkishFontType":3,
+ "arabicText":"TV Anime \" SPY×FAMILY \" Cour 1 Opening Theme",
+ "arabicFontType":3,
+ "dutchText":"TV Anime \" SPY×FAMILY \" Cour 1 Opening Theme",
+ "dutchFontType":3,
+ "chineseSText":"电视动画\"SPY×FAMILY\"第一期片头曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_ohdmi2",
+ "japaneseText":"",
+ "englishUsText":"ミックスナッツ",
+ "englishUsFontType":0,
+ "frenchText":"ミックスナッツ",
+ "frenchFontType":0,
+ "italianText":"ミックスナッツ",
+ "italianFontType":0,
+ "germanText":"ミックスナッツ",
+ "germanFontType":0,
+ "spanishText":"ミックスナッツ",
+ "spanishFontType":0,
+ "chineseTText":"ミックスナッツ",
+ "chineseTFontType":0,
+ "koreanText":"ミックスナッツ",
+ "koreanFontType":0,
+ "portugueseText":"ミックスナッツ",
+ "portugueseFontType":0,
+ "russianText":"ミックスナッツ",
+ "russianFontType":0,
+ "turkishText":"ミックスナッツ",
+ "turkishFontType":0,
+ "arabicText":"ミックスナッツ",
+ "arabicFontType":0,
+ "dutchText":"ミックスナッツ",
+ "dutchFontType":0,
+ "chineseSText":"ミックスナッツ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_trigun",
+ "japaneseText":"H.T",
+ "englishUsText":"H.T",
+ "englishUsFontType":3,
+ "frenchText":"H.T",
+ "frenchFontType":3,
+ "italianText":"H.T",
+ "italianFontType":3,
+ "germanText":"H.T",
+ "germanFontType":3,
+ "spanishText":"H.T",
+ "spanishFontType":3,
+ "chineseTText":"H.T",
+ "chineseTFontType":1,
+ "koreanText":"H.T",
+ "koreanFontType":2,
+ "portugueseText":"H.T",
+ "portugueseFontType":3,
+ "russianText":"H.T",
+ "russianFontType":3,
+ "turkishText":"H.T",
+ "turkishFontType":3,
+ "arabicText":"H.T",
+ "arabicFontType":3,
+ "dutchText":"H.T",
+ "dutchFontType":3,
+ "chineseSText":"H.T",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_trigun",
+ "japaneseText":"「トライガン」より",
+ "englishUsText":"From \" TRIGUN \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" TRIGUN \"",
+ "frenchFontType":3,
+ "italianText":"Da \" TRIGUN \"",
+ "italianFontType":3,
+ "germanText":"Aus \" TRIGUN \"",
+ "germanFontType":3,
+ "spanishText":"De \" TRIGUN \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「TRIGUN」",
+ "chineseTFontType":1,
+ "koreanText":"\"TRIGUN\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" TRIGUN \"",
+ "portugueseFontType":3,
+ "russianText":"From \" TRIGUN \"",
+ "russianFontType":3,
+ "turkishText":"From \" TRIGUN \"",
+ "turkishFontType":3,
+ "arabicText":"From \" TRIGUN \"",
+ "arabicFontType":3,
+ "dutchText":"From \" TRIGUN \"",
+ "dutchFontType":3,
+ "chineseSText":"出自\"TRIGUN\"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_trigun",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_qp3min",
+ "japaneseText":"おもちゃの兵隊の行進",
+ "englishUsText":"The Parade of the Tin Soldiers",
+ "englishUsFontType":3,
+ "frenchText":"La Parade des soldats de bois",
+ "frenchFontType":3,
+ "italianText":"The Parade of the Tin Soldiers",
+ "italianFontType":3,
+ "germanText":"Die Parade der Zinnsoldaten",
+ "germanFontType":3,
+ "spanishText":"The Parade of the Tin Soldiers",
+ "spanishFontType":3,
+ "chineseTText":"小錫兵進行曲",
+ "chineseTFontType":1,
+ "koreanText":"장난감 병정의 행진",
+ "koreanFontType":2,
+ "portugueseText":"The Parade of the Tin Soldiers",
+ "portugueseFontType":3,
+ "russianText":"The Parade of the Tin Soldiers",
+ "russianFontType":3,
+ "turkishText":"The Parade of the Tin Soldiers",
+ "turkishFontType":3,
+ "arabicText":"The Parade of the Tin Soldiers",
+ "arabicFontType":3,
+ "dutchText":"The Parade of the Tin Soldiers",
+ "dutchFontType":3,
+ "chineseSText":"小锡兵进行曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_qp3min",
+ "japaneseText":"イェッセル",
+ "englishUsText":"Leon Jessel",
+ "englishUsFontType":3,
+ "frenchText":"Leon Jessel",
+ "frenchFontType":3,
+ "italianText":"Leon Jessel",
+ "italianFontType":3,
+ "germanText":"Leon Jessel",
+ "germanFontType":3,
+ "spanishText":"Leon Jessel",
+ "spanishFontType":3,
+ "chineseTText":"萊昂・耶賽爾",
+ "chineseTFontType":1,
+ "koreanText":"레온 예셀",
+ "koreanFontType":2,
+ "portugueseText":"Leon Jessel",
+ "portugueseFontType":3,
+ "russianText":"Leon Jessel",
+ "russianFontType":3,
+ "turkishText":"Leon Jessel",
+ "turkishFontType":3,
+ "arabicText":"Leon Jessel",
+ "arabicFontType":3,
+ "dutchText":"Leon Jessel",
+ "dutchFontType":3,
+ "chineseSText":"莱昂・耶赛尔",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_qp3min",
+ "japaneseText":"",
+ "englishUsText":"おもちゃの兵隊の行進",
+ "englishUsFontType":0,
+ "frenchText":"おもちゃの兵隊の行進",
+ "frenchFontType":0,
+ "italianText":"おもちゃの兵隊の行進",
+ "italianFontType":0,
+ "germanText":"おもちゃの兵隊の行進",
+ "germanFontType":0,
+ "spanishText":"おもちゃの兵隊の行進",
+ "spanishFontType":0,
+ "chineseTText":"おもちゃの兵隊の行進",
+ "chineseTFontType":0,
+ "koreanText":"おもちゃの兵隊の行進",
+ "koreanFontType":0,
+ "portugueseText":"おもちゃの兵隊の行進",
+ "portugueseFontType":0,
+ "russianText":"おもちゃの兵隊の行進",
+ "russianFontType":0,
+ "turkishText":"おもちゃの兵隊の行進",
+ "turkishFontType":0,
+ "arabicText":"おもちゃの兵隊の行進",
+ "arabicFontType":0,
+ "dutchText":"おもちゃの兵隊の行進",
+ "dutchFontType":0,
+ "chineseSText":"おもちゃの兵隊の行進",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_dsgame",
+ "japaneseText":"Don't Stop the Game",
+ "englishUsText":"Don't Stop the Game",
+ "englishUsFontType":3,
+ "frenchText":"Don't Stop the Game",
+ "frenchFontType":3,
+ "italianText":"Don't Stop the Game",
+ "italianFontType":3,
+ "germanText":"Don't Stop the Game",
+ "germanFontType":3,
+ "spanishText":"Don't Stop the Game",
+ "spanishFontType":3,
+ "chineseTText":"Don't Stop the Game",
+ "chineseTFontType":1,
+ "koreanText":"Don't Stop the Game",
+ "koreanFontType":2,
+ "portugueseText":"Don't Stop the Game",
+ "portugueseFontType":3,
+ "russianText":"Don't Stop the Game",
+ "russianFontType":3,
+ "turkishText":"Don't Stop the Game",
+ "turkishFontType":3,
+ "arabicText":"Don't Stop the Game",
+ "arabicFontType":3,
+ "dutchText":"Don't Stop the Game",
+ "dutchFontType":3,
+ "chineseSText":"Don't Stop the Game",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_dsgame",
+ "japaneseText":"DJ Myosuke",
+ "englishUsText":"DJ Myosuke",
+ "englishUsFontType":3,
+ "frenchText":"DJ Myosuke",
+ "frenchFontType":3,
+ "italianText":"DJ Myosuke",
+ "italianFontType":3,
+ "germanText":"DJ Myosuke",
+ "germanFontType":3,
+ "spanishText":"DJ Myosuke",
+ "spanishFontType":3,
+ "chineseTText":"DJ Myosuke",
+ "chineseTFontType":1,
+ "koreanText":"DJ Myosuke",
+ "koreanFontType":2,
+ "portugueseText":"DJ Myosuke",
+ "portugueseFontType":3,
+ "russianText":"DJ Myosuke",
+ "russianFontType":3,
+ "turkishText":"DJ Myosuke",
+ "turkishFontType":3,
+ "arabicText":"DJ Myosuke",
+ "arabicFontType":3,
+ "dutchText":"DJ Myosuke",
+ "dutchFontType":3,
+ "chineseSText":"DJ Myosuke",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_dsgame",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"osirase_v1_12_0",
+ "japaneseText":"太鼓の達人 Pop Tap Beat をプレイ頂き、ありがとうございます!\n\nソフトウェアのアップデートを行いました(Ver.1.12.0)\n\n・不具合を修正しました\niOSで特定の言語に設定しているとき、\n正常に起動しない場合がある不具合を修正しました。\n\n\n★新曲追加★\n日本だけでなく海外からもファンから高い評価を得ている\n1998年に放送されたアニメ「トライガン」より\nオープニングテーマ「H.T」がシリーズ初登場!\nその他、全5曲を追加しました。\n",
+ "englishUsText":"Thank you for playing Taiko no Tatsujin Pop Tap Beat!\n\nThe game has been updated (Ver.1.12.0).\n\nBug Fixes\nWe have fixed a bug that prevented the App from starting up\nproperly when set to a specific language on iOS.\n\n★New Songs Added★\nFrom TRIGUN, the 1998 anime highly rated by fans in Japan\nand all over the world, the opening theme \"H.T\" makes its\nTaiko no Tatsujin debut! In total, five new songs have been\nadded!\n",
+ "englishUsFontType":3,
+ "frenchText":"Merci de jouer à Taiko no Tatsujin Pop Tap Beat !\n\nMise à jour du logiciel (Ver.1.12.0)\n\n- Correction de bugs\nCorrection d'un bug empêchant le lancement correct du jeu\nlors de la sélection de certaines langues sur iOS.\n\n\n★ Ajout de nouvelles chansons ★\nDécouvrez ainsi pour la première fois dans Taiko no Tatsujin\nle thème d'ouverture « H.T », issu de l'anime au succès\nmondial diffusé en 1998 au Japon : TRIGUN !\nAu total, 5 chansons ont été ajoutées.\n",
+ "frenchFontType":3,
+ "italianText":"Grazie per aver giocato a Taiko no Tatsujin Pop Tap Beat!\n\nAbbiamo aggiornato il gioco. (Ver. 1.12.0)\n\nCorrezione di vari bug\nCorrezione di un bug che in alcuni casi impediva di far\npartire correttamente il gioco su iOS a seconda della\nlingua impostata.\n\n\nNuovi brani\n\"H.T\", la sigla d'apertura della serie animata del 1998\n\"TRIGUN\", famosa in Giappone quanto nel resto del mondo,\narriva per la prima volta nella serie Taiko no Tatsujin!\nQuesto è solo uno dei 5 nuovi brani aggiunti.\n",
+ "italianFontType":3,
+ "germanText":"Vielen Dank fürs Spielen von Taiko no Tatsujin Pop Tap Beat!\n\nDie Software wurde aktualisiert (Ver.1.12.0).\n\nFehlerbehebungen:\nIn der iOS-Version konnte die Applikation\nin bestimmten Sprachen nicht korrekt\nausgeführt werden. Dieser Fehler wurde behoben.\n\n\n★Neue Songs★\n\"H.T\", der Titelsong des beliebten Anime-Hits \"TRIGUN\"\naus dem Jahr 1998, der nicht nur in Japan, sondern\nauch im Ausland große Beliebtheit genießt.\nInsgesamt wurden 5 neue Songs hinzugefügt.\n",
+ "germanFontType":3,
+ "spanishText":"¡Gracias por jugar a Taiko no Tatsujin Pop Tap Beat!\n\nNovedades de la última actualización\n(ver. 1.12.0)\n\n・Se han corregido errores.\nSe ha corregido el error que no permitía iniciar la\naplicación correctamente en iOS cuando esta se\nconfiguraba en un idioma concreto.\n\n\n★¡Nuevas canciones!★\n¡Desde 1998, llega por primera vez a la serie Taiko no\nTatsujin H.T, el tema de apertura del anime TRIGUN,\nuna serie ampliamente elogiada, no solo por los fanáticos\njaponeses, sino también por los de otras partes del mundo!\nEn total, se añadieron 5 canciones.\n",
+ "spanishFontType":3,
+ "chineseTText":"感謝您遊玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本軟體已更新(Ver.1.12.0)。\n\n‧已修正異常。\n已修正在iOS上設定為特定語言時,\n可能無法正常啟動軟體的異常。\n\n\n★追加新曲★\n廣受日本甚至是海外粉絲的一致好評、\n於1998年播放的動畫《TRIGUN》,\n其片頭曲《H.T》將首次在太鼓之達人系列登場!\n另外已追加共5首樂曲。\n",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 Pop Tap Beat를 플레이해 주셔서 감사합니다!\n\n소프트웨어를 업데이트했습니다.(Ver.1.12.0)\n\n・오류를 수정했습니다.\niOS에서 특정 언어로 설정되어 있는 경우,\n정상적으로 실행되지 않는 오류를 수정했습니다.\n\n\n★신곡 추가★\n일본뿐 아니라 전 세계 팬에게 호평받고 있는\n1998년에 방영된 애니메이션 'TRIGUN'의\n오프닝 테마 'H.T'가 시리즈 최초로 등장!\n그 밖에도 총 5곡을 추가했습니다.",
+ "koreanFontType":2,
+ "portugueseText":"Obrigado por jogar Taiko no Tatsujin Pop Tap Beat!\n\nO software foi atualizado (Ver.1.12.0).\n\nCorreções de erros\nCorrigimos um erro no iOS que impedia o jogo de iniciar\ncorretamente quando um idioma específico estava configurado.\n\n★Adição de novas músicas★\nPela primeira vez na série, surge\no tema de abertura “H.T\" do anime de 1998 “TRIGUN”, aclamado por fãs no Japão e no exterior!\nAdicionamos um total de 5 músicas.\n",
+ "portugueseFontType":2,
+ "russianText":"Спасибо, что играете в Taiko no Tatsujin Pop Tap Beat!\n\nИгра обновлена до версии 1.12.0.\n\nИсправлены ошибки\nИсправлена ошибка некорректного запуска игры на устройствах\niOS при установке определенных языков.\n\n★Добавлены новые песни★\nВпервые в Taiko no Tatsujin будет выпущена вступительная\nкомпозиция H.T из аниме «TRIGUN» 1998 года, получившего\nвысокую оценку не только в Японии, но и во всем мире!\nКроме того, были добавлены еще 5 песен!\n",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat'i oynadığınız için teşekkürler!\n\nOyun güncellendi (Ver.1.12.0).\n\nHata Düzeltmeleri\nUygulamanın iOS'ta belirli bir dil seçildiğinde düzgün\nçalışmasını engelleyen bir hatayı düzelttik.\n\n★Yeni Şarkılar Eklendi★\nTRIGUN'dan 1998 senesinin efsanevi anime filminin\ndünyaca ünlü şarkısı «H.T»,\nTaiko no Tatsujin'da ilk kez sahneye çıkıyor!\nToplamda beş yeni şarkı eklendi!\n",
+ "turkishFontType":2,
+ "arabicText":"نشكرك على لعب Taiko no Tatsujin Pop Tap Beat!\n\nلقد تم تحديث اللعبة (نسخة 1.12.0).\n\nتصحيح للأخطاء\nلقد أصلحنا الخطأ الذي يمنع بدء تشغيل التطبيق\nبشكل صحيح عند ضبطه على لغة معينة على نظام iOS.\n\n★تمت إضافة أغنيات جديدة★<De software is geüpdatet. (Ver.1.12.0).\n\nDiverse bugs zijn opgelost.\nEr is een bug verholpen die verhinderde dat de app correct werd \ngestart wanneer een specifieke taal in iOS was ingesteld.\n\n★Nieuwe liedjes toegevoegd★\nVan TRIGUN, de anime uit 1998 die bij fans in Japan\nen wereldwijd hoog aangeschreven staat,\nkomt het openingsthema \"H.T\" dat hiermee debuteert in\nTaiko no Tatsujin! In totaal zijn er vijf nieuwe liedjes\ntoegevoegd!\n",
+ "dutchFontType":2,
+ "chineseSText":"感谢您游玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本软件已更新(Ver.1.12.0)。\n\n·已修正异常。\n已修正在iOS上设定为特定语言时,\n可能无法正常启动软件的异常。\n\n\n★追加新曲★\n广受日本甚至是海外粉丝的一致好评、\n于1998年播放的动画《TRIGUN》,\n其片头曲《H.T》将首次在太鼓之达人系列登场!\n另外已追加共5首乐曲。\n",
+ "chineseSFontType":4
+ },
+ {
+ "key":"osirase_v1_12_0_title",
+ "japaneseText":"ソフトウェアのアップデートを行いました(Ver.1.12.0)",
+ "englishUsText":"The game has been updated (Ver.1.12.0)",
+ "englishUsFontType":3,
+ "frenchText":"Mise à jour du logiciel (Ver.1.12.0)",
+ "frenchFontType":3,
+ "italianText":"Abbiamo aggiornato il gioco. (Ver.1.12.0)",
+ "italianFontType":3,
+ "germanText":"Die Software wurde aktualisiert (Ver.1.12.0)",
+ "germanFontType":3,
+ "spanishText":"Novedades de la última actualización (Ver.1.12.0)",
+ "spanishFontType":3,
+ "chineseTText":"本軟體已更新(Ver.1.12.0)",
+ "chineseTFontType":1,
+ "koreanText":"소프트웨어를 업데이트했습니다.(Ver.1.12.0)",
+ "koreanFontType":2,
+ "portugueseText":"O software foi atualizado (Ver.1.12.0)",
+ "portugueseFontType":2,
+ "russianText":"Программное обеспечение обновлено (версия 1.12.0)",
+ "russianFontType":2,
+ "turkishText":"Oyun güncellendi (Ver.1.12.0)",
+ "turkishFontType":2,
+ "arabicText":"لقد تم تحديث اللعبة (نسخة 1.12.0)",
+ "arabicFontType":2,
+ "dutchText":"De software is geüpdatet. (Ver.1.12.0)",
+ "dutchFontType":2,
+ "chineseSText":"本软件已更新(Ver.1.12.0)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"osirase_v1_13_0",
+ "japaneseText":"太鼓の達人 Pop Tap Beat をプレイ頂き、ありがとうございます!\n\nソフトウェアのアップデートを行いました(Ver.1.13.0)\n\n★新曲追加★\n世界で人気のTVアニメ「ジョジョの奇妙な冒険」シリーズの\n1st Season「ジョジョの奇妙な冒険 ファントムブラッド」と\n「ジョジョの奇妙な冒険 Part6 ストーンオーシャン」の\nオープニングテーマを同時配信!\n\nその他、全5曲を追加しました。\n",
+ "englishUsText":"Thank you for playing Taiko no Tatsujin Pop Tap Beat!\n\nThe game has been updated (Ver.1.13.0).\n\n★New Songs Added★\nThe famous city pop song\n MAYONAKANO DOA-STAY WITH ME \nhas been added!\nIts distinct refined melody and arrangement give off \na cool urban vibe reminiscent of PLASTIC LOVE.\n\nIn total, five new songs have been added.\n\n",
+ "englishUsFontType":3,
+ "frenchText":"Merci de jouer à Taiko no Tatsujin Pop Tap Beat !\n\nMise à jour du logiciel (Ver.1.13.0)\n\n★ Ajout de nouvelles chansons ★\nAprès « PLASTIC LOVE », replongez dans une ambiance\ncitadine avec un nouveau morceau city pop à la mélodie \net aux arrangements raffinés : \n« MAYONAKANO DOA-STAY WITH ME » !\n \nAu total, 5 chansons ont été ajoutées.",
+ "frenchFontType":3,
+ "italianText":"Grazie per aver giocato a Taiko no Tatsujin Pop Tap Beat!\n\nAbbiamo aggiornato il gioco. (Ver. 1.13.0)\n\n★Nuovi brani★\nDopo il successo di \"PLASTIC LOVE\", arriva il fenomeno del city pop, \n\"MAYONAKANO DOA-STAY WITH ME\", un brano dalla melodia sofisticata e dall'elegante atmosfera urbana! \n \nQuesto è solo uno dei cinque nuovi brani aggiunti.",
+ "italianFontType":3,
+ "germanText":"Vielen Dank fürs Spielen von Taiko no Tatsujin Pop Tap Beat!\n\nDie Software wurde aktualisiert (Ver.1.13.0).\n\n★Neue Songs★\nMAYONAKANO DOA-STAY WITH ME,\nneben PLASTIC LOVE ein bekanntes Beispiel des City Pop,\nder sich durch sein städtisches Flair und seine ausgefeilten Melodien\nauszeichnet. Insgesamt wurden 5 neue Songs hinzugefügt.\n",
+ "germanFontType":3,
+ "spanishText":"¡Gracias por jugar a Taiko no Tatsujin Pop Tap Beat!\n\nNovedades de la última actualización (ver. 1.13.0)\n\n¡Nuevas canciones!\n¡Tras PLASTIC LOVE, llega a Taiko no Tatsujin MAYONAKANO\nDOA-STAY WITH ME, una canción ilustre del pop urbano\njaponés con melodías y arreglos sofisticados que te\ntransportarán a un ambiente urbano!\n\nEn total, se añadieron 5 canciones.",
+ "spanishFontType":3,
+ "chineseTText":"感謝您遊玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本軟體已更新(Ver.1.13.0)。\n\n★追加新曲★\n繼《PLASTIC LOVE》之後,充滿都市氣息,\n並以洗鍊的旋律和曲調為特色的City Pop名曲\n《MAYONAKANO DOA-STAY WITH ME》即將登場!\n\n另外已追加共5首樂曲。",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 Pop Tap Beat를 플레이해주셔서 감사합니다!\n\n소프트웨어를 업데이트했습니다.(Ver.1.13.0)\n\n★신곡 추가★\n'PLASTIC LOVE'에 이어서 도시적인 분위기를 풍기며\n세련된 멜로디와 어레인지가 특징인 시티 팝의 명곡\n'MAYONAKANO DOA-STAY WITH ME'가 등장!\n\n그 밖에도 총 5곡을 추가했습니다.",
+ "koreanFontType":2,
+ "portugueseText":"Obrigado por jogar Taiko no Tatsujin Pop Tap Beat!\n\nO jogo foi atualizado (Ver.1.13.0).\n\n★Novas músicas adicionadas★\nFoi adicionada a famosa música de city pop MAYONAKANO DOA-STAY WITH ME!\nSeu arranjo e sua melodia refinada e peculiar transmitem uma energia urbana contemporânea, que traz à memória PLASTIC LOVE.\n\nNo total, foram adicionadas cinco novas músicas.\n\n",
+ "portugueseFontType":2,
+ "russianText":"Спасибо, что играете в Taiko no Tatsujin Pop Tap Beat!\n\nПрограммное обеспечение обновлено (версия 1.13.0).\n\n★Добавлены новые песни★\nДобавлен шедевр жанра сити-поп MAYONAKANO DOA-STAY WITH ME!\nЭлегантная мелодия и аранжировка этого трека наполнена городской атмосферой и напоминает PLASTIC LOVE.\n\nВ общей сложности мы добавили пять новых песен.\n\n",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat'i oynadığınız için teşekkürler!\n\nOyun güncellendi (Ver.1.13.0).\n\n★Yeni Şarkılar Eklendi★\nÜnlü pop şarkısı MAYONAKANO DOA-STAY WITH ME eklendi!\nŞarkının kendine özgü zarif melodisi ve aranjmanı, PLASTIC LOVE'u anımsatan bir şehir havası yaşatır.\n\nToplamda beş yeni şarkı eklendi.\n\n",
+ "turkishFontType":2,
+ "arabicText":"شكرًا لك على لعب Taiko no Tatsujin Pop Tap Beat\n\n تم تحديث اللعبة (إصدار 1.13.0). \n\n ★تمت إضافة أغاني جديدة★\nتمت إضافة أغنية من موسيقى البوب الشهيرة MAYONAKANO DOA-STAY WITH ME!\nيضفي لحنها وترتيبها المتميزان أجواء حضرية باردة تذكرنا بأغنية PLASTIC LOVE.\n\nفي المجموع، تمت إضافة خمس أغانٍ جديدة.\n\n",
+ "arabicFontType":2,
+ "dutchText":"Bedankt dat je Taiko no Tatsujin Pop Tap Beat speelt!\n\nDe software is geüpdatet (Ver.1.13.0).\n\n★Nieuwe liedjes★\nHet beroemde city-popnummer \nMAYONAKANO DOA-STAY WITH ME is toegevoegd,\ndat een coole cityvibe oproept als in PLASTIC LOVE.\n\nIn totaal zijn er 5 nieuwe liedjes toegevoegd.\n\n",
+ "dutchFontType":2,
+ "chineseSText":"感谢您游玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本软件已更新(Ver.1.13.0)。\n\n★追加新曲★\n继《PLASTIC LOVE》之后,充满都市气息,\n并以洗炼的旋律和曲调为特色的City Pop名曲\n《MAYONAKANO DOA-STAY WITH ME》即将登场!\n\n另外已追加共5首乐曲。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"osirase_v1_13_0_title",
+ "japaneseText":"ソフトウェアのアップデートを行いました(Ver.1.13.0)",
+ "englishUsText":"The game has been updated (Ver.1.13.0)",
+ "englishUsFontType":3,
+ "frenchText":"Mise à jour du logiciel (Ver.1.13.0)",
+ "frenchFontType":3,
+ "italianText":"Abbiamo aggiornato il gioco. (Ver.1.13.0)",
+ "italianFontType":3,
+ "germanText":"Die Software wurde aktualisiert (Ver.1.13.0)",
+ "germanFontType":3,
+ "spanishText":"Novedades de la última actualización (Ver.1.13.0)",
+ "spanishFontType":3,
+ "chineseTText":"本軟體已更新(Ver.1.13.0)",
+ "chineseTFontType":1,
+ "koreanText":"소프트웨어를 업데이트했습니다.(Ver.1.13.0)",
+ "koreanFontType":2,
+ "portugueseText":"O software foi atualizado (Ver.1.13.0)",
+ "portugueseFontType":2,
+ "russianText":"Программное обеспечение обновлено (версия 1.13.0)",
+ "russianFontType":2,
+ "turkishText":"Oyun güncellendi (Ver.1.13.0)",
+ "turkishFontType":2,
+ "arabicText":"لقد تم تحديث اللعبة (نسخة 1.13.0)",
+ "arabicFontType":2,
+ "dutchText":"De software is geüpdatet. (Ver.1.13.0)",
+ "dutchFontType":2,
+ "chineseSText":"本软件已更新(Ver.1.13.0)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_nainai",
+ "japaneseText":"NAINAINAI",
+ "englishUsText":"NAINAINAI",
+ "englishUsFontType":3,
+ "frenchText":"NAINAINAI",
+ "frenchFontType":3,
+ "italianText":"NAINAINAI",
+ "italianFontType":3,
+ "germanText":"NAINAINAI",
+ "germanFontType":3,
+ "spanishText":"NAINAINAI",
+ "spanishFontType":3,
+ "chineseTText":"NAINAINAI",
+ "chineseTFontType":1,
+ "koreanText":"NAINAINAI",
+ "koreanFontType":2,
+ "portugueseText":"NAINAINAI",
+ "portugueseFontType":3,
+ "russianText":"NAINAINAI",
+ "russianFontType":3,
+ "turkishText":"NAINAINAI",
+ "turkishFontType":3,
+ "arabicText":"NAINAINAI",
+ "arabicFontType":3,
+ "dutchText":"NAINAINAI",
+ "dutchFontType":3,
+ "chineseSText":"NAINAINAI",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_nainai",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_nainai",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_mndoor",
+ "japaneseText":"真夜中のドア~Stay with me",
+ "englishUsText":"MAYONAKANO DOA-STAY WITH ME",
+ "englishUsFontType":3,
+ "frenchText":"MAYONAKANO DOA-STAY WITH ME",
+ "frenchFontType":3,
+ "italianText":"MAYONAKANO DOA-STAY WITH ME",
+ "italianFontType":3,
+ "germanText":"MAYONAKANO DOA-STAY WITH ME",
+ "germanFontType":3,
+ "spanishText":"MAYONAKANO DOA-STAY WITH ME",
+ "spanishFontType":3,
+ "chineseTText":"MAYONAKANO DOA-STAY WITH ME",
+ "chineseTFontType":1,
+ "koreanText":"MAYONAKANO DOA-STAY WITH ME",
+ "koreanFontType":2,
+ "portugueseText":"MAYONAKANO DOA-STAY WITH ME",
+ "portugueseFontType":3,
+ "russianText":"MAYONAKANO DOA-STAY WITH ME",
+ "russianFontType":3,
+ "turkishText":"MAYONAKANO DOA-STAY WITH ME",
+ "turkishFontType":3,
+ "arabicText":"MAYONAKANO DOA-STAY WITH ME",
+ "arabicFontType":3,
+ "dutchText":"MAYONAKANO DOA-STAY WITH ME",
+ "dutchFontType":3,
+ "chineseSText":"MAYONAKANO DOA-STAY WITH ME",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_mndoor",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_mndoor",
+ "japaneseText":"",
+ "englishUsText":"真夜中のドア~Stay with me",
+ "englishUsFontType":0,
+ "frenchText":"真夜中のドア~Stay with me",
+ "frenchFontType":0,
+ "italianText":"真夜中のドア~Stay with me",
+ "italianFontType":0,
+ "germanText":"真夜中のドア~Stay with me",
+ "germanFontType":0,
+ "spanishText":"真夜中のドア~Stay with me",
+ "spanishFontType":0,
+ "chineseTText":"真夜中のドア~Stay with me",
+ "chineseTFontType":0,
+ "koreanText":"真夜中のドア~Stay with me",
+ "koreanFontType":0,
+ "portugueseText":"真夜中のドア~Stay with me",
+ "portugueseFontType":0,
+ "russianText":"真夜中のドア~Stay with me",
+ "russianFontType":0,
+ "turkishText":"真夜中のドア~Stay with me",
+ "turkishFontType":0,
+ "arabicText":"真夜中のドア~Stay with me",
+ "arabicFontType":0,
+ "dutchText":"真夜中のドア~Stay with me",
+ "dutchFontType":0,
+ "chineseSText":"真夜中のドア~Stay with me",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_giosto",
+ "japaneseText":"STONE OCEAN",
+ "englishUsText":"STONE OCEAN",
+ "englishUsFontType":3,
+ "frenchText":"STONE OCEAN",
+ "frenchFontType":3,
+ "italianText":"STONE OCEAN",
+ "italianFontType":3,
+ "germanText":"STONE OCEAN",
+ "germanFontType":3,
+ "spanishText":"STONE OCEAN",
+ "spanishFontType":3,
+ "chineseTText":"STONE OCEAN",
+ "chineseTFontType":1,
+ "koreanText":"STONE OCEAN",
+ "koreanFontType":2,
+ "portugueseText":"STONE OCEAN",
+ "portugueseFontType":3,
+ "russianText":"STONE OCEAN",
+ "russianFontType":3,
+ "turkishText":"STONE OCEAN",
+ "turkishFontType":3,
+ "arabicText":"STONE OCEAN",
+ "arabicFontType":3,
+ "dutchText":"STONE OCEAN",
+ "dutchFontType":3,
+ "chineseSText":"STONE OCEAN",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_giosto",
+ "japaneseText":"「ジョジョの奇妙な冒険 ストーンオーシャン」より",
+ "englishUsText":"From \" JoJo's Bizarre Adventure STONE OCEAN \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" JoJo's Bizarre Adventure STONE OCEAN \"",
+ "frenchFontType":3,
+ "italianText":"Da \" JoJo's Bizarre Adventure STONE OCEAN \"",
+ "italianFontType":3,
+ "germanText":"Aus \" JoJo's Bizarre Adventure STONE OCEAN \"",
+ "germanFontType":3,
+ "spanishText":"De \" JoJo's Bizarre Adventure STONE OCEAN \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「JoJo的奇妙冒險 STONE OCEAN」",
+ "chineseTFontType":1,
+ "koreanText":"\"죠죠의 기묘한 모험 STONE OCEAN\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" JoJo's Bizarre Adventure STONE OCEAN \"",
+ "portugueseFontType":3,
+ "russianText":"From \" JoJo's Bizarre Adventure STONE OCEAN \"",
+ "russianFontType":3,
+ "turkishText":"From \" JoJo's Bizarre Adventure STONE OCEAN \"",
+ "turkishFontType":3,
+ "arabicText":"From \" JoJo's Bizarre Adventure STONE OCEAN \"",
+ "arabicFontType":3,
+ "dutchText":"From \" JoJo's Bizarre Adventure STONE OCEAN \"",
+ "dutchFontType":3,
+ "chineseSText":"出自\"JoJo的奇妙冒险 STONE OCEAN\"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_giosto",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_giogio",
+ "japaneseText":"ジョジョ~その血の運命~",
+ "englishUsText":"JoJo Sono Chi no Sadame",
+ "englishUsFontType":3,
+ "frenchText":"JoJo Sono Chi no Sadame",
+ "frenchFontType":3,
+ "italianText":"JoJo Sono Chi no Sadame",
+ "italianFontType":3,
+ "germanText":"JoJo Sono Chi no Sadame",
+ "germanFontType":3,
+ "spanishText":"JoJo Sono Chi no Sadame",
+ "spanishFontType":3,
+ "chineseTText":"JoJo Sono Chi no Sadame",
+ "chineseTFontType":1,
+ "koreanText":"JoJo Sono Chi no Sadame",
+ "koreanFontType":2,
+ "portugueseText":"JoJo Sono Chi no Sadame",
+ "portugueseFontType":3,
+ "russianText":"JoJo Sono Chi no Sadame",
+ "russianFontType":3,
+ "turkishText":"JoJo Sono Chi no Sadame",
+ "turkishFontType":3,
+ "arabicText":"JoJo Sono Chi no Sadame",
+ "arabicFontType":3,
+ "dutchText":"JoJo Sono Chi no Sadame",
+ "dutchFontType":3,
+ "chineseSText":"JoJo Sono Chi no Sadame",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_giogio",
+ "japaneseText":"「ジョジョの奇妙な冒険」より",
+ "englishUsText":"From \" JoJo's Bizarre Adventure \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" JoJo's Bizarre Adventure \"",
+ "frenchFontType":3,
+ "italianText":"Da \" JoJo's Bizarre Adventure \"",
+ "italianFontType":3,
+ "germanText":"Aus \" JoJo's Bizarre Adventure \"",
+ "germanFontType":3,
+ "spanishText":"De \" JoJo's Bizarre Adventure \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「JoJo的奇妙冒險」",
+ "chineseTFontType":1,
+ "koreanText":"\"죠죠의 기묘한 모험\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" JoJo's Bizarre Adventure \"",
+ "portugueseFontType":3,
+ "russianText":"From \" JoJo's Bizarre Adventure \"",
+ "russianFontType":3,
+ "turkishText":"From \" JoJo's Bizarre Adventure \"",
+ "turkishFontType":3,
+ "arabicText":"From \" JoJo's Bizarre Adventure \"",
+ "arabicFontType":3,
+ "dutchText":"From \" JoJo's Bizarre Adventure \"",
+ "dutchFontType":3,
+ "chineseSText":"出自\"JoJo的奇妙冒险\"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_giogio",
+ "japaneseText":"",
+ "englishUsText":"ジョジョ~その血の運命~",
+ "englishUsFontType":0,
+ "frenchText":"ジョジョ~その血の運命~",
+ "frenchFontType":0,
+ "italianText":"ジョジョ~その血の運命~",
+ "italianFontType":0,
+ "germanText":"ジョジョ~その血の運命~",
+ "germanFontType":0,
+ "spanishText":"ジョジョ~その血の運命~",
+ "spanishFontType":0,
+ "chineseTText":"ジョジョ~その血の運命~",
+ "chineseTFontType":0,
+ "koreanText":"ジョジョ~その血の運命~",
+ "koreanFontType":0,
+ "portugueseText":"ジョジョ~その血の運命~",
+ "portugueseFontType":0,
+ "russianText":"ジョジョ~その血の運命~",
+ "russianFontType":0,
+ "turkishText":"ジョジョ~その血の運命~",
+ "turkishFontType":0,
+ "arabicText":"ジョジョ~その血の運命~",
+ "arabicFontType":0,
+ "dutchText":"ジョジョ~その血の運命~",
+ "dutchFontType":0,
+ "chineseSText":"ジョジョ~その血の運命~",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_rr22",
+ "japaneseText":"RARE HERO",
+ "englishUsText":"RARE HERO",
+ "englishUsFontType":3,
+ "frenchText":"RARE HERO",
+ "frenchFontType":3,
+ "italianText":"RARE HERO",
+ "italianFontType":3,
+ "germanText":"RARE HERO",
+ "germanFontType":3,
+ "spanishText":"RARE HERO",
+ "spanishFontType":3,
+ "chineseTText":"RARE HERO",
+ "chineseTFontType":1,
+ "koreanText":"RARE HERO",
+ "koreanFontType":2,
+ "portugueseText":"RARE HERO",
+ "portugueseFontType":3,
+ "russianText":"RARE HERO",
+ "russianFontType":3,
+ "turkishText":"RARE HERO",
+ "turkishFontType":3,
+ "arabicText":"RARE HERO",
+ "arabicFontType":3,
+ "dutchText":"RARE HERO",
+ "dutchFontType":3,
+ "chineseSText":"RARE HERO",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_rr22",
+ "japaneseText":"「リッジレーサー」より",
+ "englishUsText":"From \" RIDGE RACER \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" RIDGE RACER \"",
+ "frenchFontType":3,
+ "italianText":"Da \" RIDGE RACER \"",
+ "italianFontType":3,
+ "germanText":"Aus \" RIDGE RACER \"",
+ "germanFontType":3,
+ "spanishText":"De \" RIDGE RACER \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「RIDGE RACER」",
+ "chineseTFontType":1,
+ "koreanText":"\"RIDGE RACER\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" RIDGE RACER \"",
+ "portugueseFontType":3,
+ "russianText":"From \" RIDGE RACER \"",
+ "russianFontType":3,
+ "turkishText":"From \" RIDGE RACER \"",
+ "turkishFontType":3,
+ "arabicText":"From \" RIDGE RACER \"",
+ "arabicFontType":3,
+ "dutchText":"From \" RIDGE RACER \"",
+ "dutchFontType":3,
+ "chineseSText":"出自\"RIDGE RACER\"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_rr22",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_yzmsct",
+ "japaneseText":"マスカット",
+ "englishUsText":"Muscat",
+ "englishUsFontType":3,
+ "frenchText":"Muscat",
+ "frenchFontType":3,
+ "italianText":"Muscat",
+ "italianFontType":3,
+ "germanText":"Muscat",
+ "germanFontType":3,
+ "spanishText":"Muscat",
+ "spanishFontType":3,
+ "chineseTText":"Muscat",
+ "chineseTFontType":1,
+ "koreanText":"Muscat",
+ "koreanFontType":2,
+ "portugueseText":"Muscat",
+ "portugueseFontType":3,
+ "russianText":"Muscat",
+ "russianFontType":3,
+ "turkishText":"Muscat",
+ "turkishFontType":3,
+ "arabicText":"Muscat",
+ "arabicFontType":3,
+ "dutchText":"Muscat",
+ "dutchFontType":3,
+ "chineseSText":"Muscat",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_yzmsct",
+ "japaneseText":"「クレヨンしんちゃん」より",
+ "englishUsText":"From \" Crayon Shin-chan \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Crayon Shin-chan \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Crayon Shin-chan \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Crayon Shin-chan \"",
+ "germanFontType":3,
+ "spanishText":"De \" Crayon Shin-chan \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「蠟筆小新」",
+ "chineseTFontType":1,
+ "koreanText":"\"크레용 신짱\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" Crayon Shin-chan \"",
+ "portugueseFontType":3,
+ "russianText":"From \" Crayon Shin-chan \"",
+ "russianFontType":3,
+ "turkishText":"From \" Crayon Shin-chan \"",
+ "turkishFontType":3,
+ "arabicText":"From \" Crayon Shin-chan \"",
+ "arabicFontType":3,
+ "dutchText":"From \" Crayon Shin-chan \"",
+ "dutchFontType":3,
+ "chineseSText":"出自\"蜡笔小新\"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_yzmsct",
+ "japaneseText":"",
+ "englishUsText":"マスカット",
+ "englishUsFontType":0,
+ "frenchText":"マスカット",
+ "frenchFontType":0,
+ "italianText":"マスカット",
+ "italianFontType":0,
+ "germanText":"マスカット",
+ "germanFontType":0,
+ "spanishText":"マスカット",
+ "spanishFontType":0,
+ "chineseTText":"マスカット",
+ "chineseTFontType":0,
+ "koreanText":"マスカット",
+ "koreanFontType":0,
+ "portugueseText":"マスカット",
+ "portugueseFontType":0,
+ "russianText":"マスカット",
+ "russianFontType":0,
+ "turkishText":"マスカット",
+ "turkishFontType":0,
+ "arabicText":"マスカット",
+ "arabicFontType":0,
+ "dutchText":"マスカット",
+ "dutchFontType":0,
+ "chineseSText":"マスカット",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_dora4",
+ "japaneseText":"夢をかなえてドラえもん",
+ "englishUsText":"Yumeo Kanaete DORAEMON",
+ "englishUsFontType":3,
+ "frenchText":"Yumeo Kanaete DORAEMON",
+ "frenchFontType":3,
+ "italianText":"Yumeo Kanaete DORAEMON",
+ "italianFontType":3,
+ "germanText":"Yumeo Kanaete DORAEMON",
+ "germanFontType":3,
+ "spanishText":"Yumeo Kanaete DORAEMON",
+ "spanishFontType":3,
+ "chineseTText":"實現夢想的哆啦A夢",
+ "chineseTFontType":1,
+ "koreanText":"꿈을 이루어줘 도라에몽",
+ "koreanFontType":2,
+ "portugueseText":"Yumeo Kanaete DORAEMON",
+ "portugueseFontType":3,
+ "russianText":"Yumeo Kanaete DORAEMON",
+ "russianFontType":3,
+ "turkishText":"Yumeo Kanaete DORAEMON",
+ "turkishFontType":3,
+ "arabicText":"Yumeo Kanaete DORAEMON",
+ "arabicFontType":3,
+ "dutchText":"Yumeo Kanaete DORAEMON",
+ "dutchFontType":3,
+ "chineseSText":"实现梦想的哆啦A梦",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_dora4",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_dora4",
+ "japaneseText":"",
+ "englishUsText":"夢をかなえてドラえもん",
+ "englishUsFontType":0,
+ "frenchText":"夢をかなえてドラえもん",
+ "frenchFontType":0,
+ "italianText":"夢をかなえてドラえもん",
+ "italianFontType":0,
+ "germanText":"夢をかなえてドラえもん",
+ "germanFontType":0,
+ "spanishText":"夢をかなえてドラえもん",
+ "spanishFontType":0,
+ "chineseTText":"夢をかなえてドラえもん",
+ "chineseTFontType":0,
+ "koreanText":"夢をかなえてドラえもん",
+ "koreanFontType":0,
+ "portugueseText":"夢をかなえてドラえもん",
+ "portugueseFontType":0,
+ "russianText":"夢をかなえてドラえもん",
+ "russianFontType":0,
+ "turkishText":"夢をかなえてドラえもん",
+ "turkishFontType":0,
+ "arabicText":"夢をかなえてドラえもん",
+ "arabicFontType":0,
+ "dutchText":"夢をかなえてドラえもん",
+ "dutchFontType":0,
+ "chineseSText":"夢をかなえてドラえもん",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_smoon2",
+ "japaneseText":"ムーンライト伝説",
+ "englishUsText":"MOONLIGHT LEGEND",
+ "englishUsFontType":3,
+ "frenchText":"MOONLIGHT LEGEND",
+ "frenchFontType":3,
+ "italianText":"MOONLIGHT LEGEND",
+ "italianFontType":3,
+ "germanText":"MOONLIGHT LEGEND",
+ "germanFontType":3,
+ "spanishText":"MOONLIGHT LEGEND",
+ "spanishFontType":3,
+ "chineseTText":"MOONLIGHT 傳說",
+ "chineseTFontType":1,
+ "koreanText":"MOONLIGHT LEGEND",
+ "koreanFontType":2,
+ "portugueseText":"MOONLIGHT LEGEND",
+ "portugueseFontType":3,
+ "russianText":"MOONLIGHT LEGEND",
+ "russianFontType":3,
+ "turkishText":"MOONLIGHT LEGEND",
+ "turkishFontType":3,
+ "arabicText":"MOONLIGHT LEGEND",
+ "arabicFontType":3,
+ "dutchText":"MOONLIGHT LEGEND",
+ "dutchFontType":3,
+ "chineseSText":"MOONLIGHT 传说",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_smoon2",
+ "japaneseText":"「美少女戦士セーラームーン」より",
+ "englishUsText":"From \" Pretty Guardian Sailor Moon \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Pretty Guardian Sailor Moon \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Pretty Guardian Sailor Moon \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Pretty Guardian Sailor Moon \"",
+ "germanFontType":3,
+ "spanishText":"De \" Pretty Guardian Sailor Moon \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「美少女戰士Sailor Moon」",
+ "chineseTFontType":1,
+ "koreanText":"\"미소녀전사 세일러문\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" Pretty Guardian Sailor Moon \"",
+ "portugueseFontType":3,
+ "russianText":"From \" Pretty Guardian Sailor Moon \"",
+ "russianFontType":3,
+ "turkishText":"From \" Pretty Guardian Sailor Moon \"",
+ "turkishFontType":3,
+ "arabicText":"From \" Pretty Guardian Sailor Moon \"",
+ "arabicFontType":3,
+ "dutchText":"From \" Pretty Guardian Sailor Moon \"",
+ "dutchFontType":3,
+ "chineseSText":"出自\"美少女战士Sailor Moon\"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_smoon2",
+ "japaneseText":"",
+ "englishUsText":"ムーンライト伝説",
+ "englishUsFontType":0,
+ "frenchText":"ムーンライト伝説",
+ "frenchFontType":0,
+ "italianText":"ムーンライト伝説",
+ "italianFontType":0,
+ "germanText":"ムーンライト伝説",
+ "germanFontType":0,
+ "spanishText":"ムーンライト伝説",
+ "spanishFontType":0,
+ "chineseTText":"ムーンライト伝説",
+ "chineseTFontType":0,
+ "koreanText":"ムーンライト伝説",
+ "koreanFontType":0,
+ "portugueseText":"ムーンライト伝説",
+ "portugueseFontType":0,
+ "russianText":"ムーンライト伝説",
+ "russianFontType":0,
+ "turkishText":"ムーンライト伝説",
+ "turkishFontType":0,
+ "arabicText":"ムーンライト伝説",
+ "arabicFontType":0,
+ "dutchText":"ムーンライト伝説",
+ "dutchFontType":0,
+ "chineseSText":"ムーンライト伝説",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_sesami",
+ "japaneseText":"セサミストリートのテーマ",
+ "englishUsText":"Sesame Street Theme",
+ "englishUsFontType":3,
+ "frenchText":"Sesame Street Theme",
+ "frenchFontType":3,
+ "italianText":"Sesame Street Theme",
+ "italianFontType":3,
+ "germanText":"Sesame Street Theme",
+ "germanFontType":3,
+ "spanishText":"Sesame Street Theme",
+ "spanishFontType":3,
+ "chineseTText":"芝麻街 主題曲",
+ "chineseTFontType":1,
+ "koreanText":"세서미 스트리트 테마곡",
+ "koreanFontType":2,
+ "portugueseText":"Sesame Street Theme",
+ "portugueseFontType":3,
+ "russianText":"Sesame Street Theme",
+ "russianFontType":3,
+ "turkishText":"Sesame Street Theme",
+ "turkishFontType":3,
+ "arabicText":"Sesame Street Theme",
+ "arabicFontType":3,
+ "dutchText":"Sesame Street Theme",
+ "dutchFontType":3,
+ "chineseSText":"芝麻街 主题曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_sesami",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_sesami",
+ "japaneseText":"",
+ "englishUsText":"セサミストリートのテーマ",
+ "englishUsFontType":0,
+ "frenchText":"セサミストリートのテーマ",
+ "frenchFontType":0,
+ "italianText":"セサミストリートのテーマ",
+ "italianFontType":0,
+ "germanText":"セサミストリートのテーマ",
+ "germanFontType":0,
+ "spanishText":"セサミストリートのテーマ",
+ "spanishFontType":0,
+ "chineseTText":"セサミストリートのテーマ",
+ "chineseTFontType":0,
+ "koreanText":"セサミストリートのテーマ",
+ "koreanFontType":0,
+ "portugueseText":"セサミストリートのテーマ",
+ "portugueseFontType":0,
+ "russianText":"セサミストリートのテーマ",
+ "russianFontType":0,
+ "turkishText":"セサミストリートのテーマ",
+ "turkishFontType":0,
+ "arabicText":"セサミストリートのテーマ",
+ "arabicFontType":0,
+ "dutchText":"セサミストリートのテーマ",
+ "dutchFontType":0,
+ "chineseSText":"セサミストリートのテーマ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_moeyod",
+ "japaneseText":"燃えよドラゴンのテーマ",
+ "englishUsText":"Enter The Dragon (Theme)",
+ "englishUsFontType":3,
+ "frenchText":"Enter The Dragon (Theme)",
+ "frenchFontType":3,
+ "italianText":"Enter The Dragon (Theme)",
+ "italianFontType":3,
+ "germanText":"Enter The Dragon (Theme)",
+ "germanFontType":3,
+ "spanishText":"Enter The Dragon (Theme)",
+ "spanishFontType":3,
+ "chineseTText":"龍爭虎鬥 主題曲",
+ "chineseTFontType":1,
+ "koreanText":"Enter The Dragon (Theme)",
+ "koreanFontType":2,
+ "portugueseText":"Enter The Dragon (Theme)",
+ "portugueseFontType":3,
+ "russianText":"Enter The Dragon (Theme)",
+ "russianFontType":3,
+ "turkishText":"Enter The Dragon (Theme)",
+ "turkishFontType":3,
+ "arabicText":"Enter The Dragon (Theme)",
+ "arabicFontType":3,
+ "dutchText":"Enter The Dragon (Theme)",
+ "dutchFontType":3,
+ "chineseSText":"龙争虎斗 主题曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_moeyod",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_moeyod",
+ "japaneseText":"",
+ "englishUsText":"燃えよドラゴンのテーマ",
+ "englishUsFontType":0,
+ "frenchText":"燃えよドラゴンのテーマ",
+ "frenchFontType":0,
+ "italianText":"燃えよドラゴンのテーマ",
+ "italianFontType":0,
+ "germanText":"燃えよドラゴンのテーマ",
+ "germanFontType":0,
+ "spanishText":"燃えよドラゴンのテーマ",
+ "spanishFontType":0,
+ "chineseTText":"燃えよドラゴンのテーマ",
+ "chineseTFontType":0,
+ "koreanText":"燃えよドラゴンのテーマ",
+ "koreanFontType":0,
+ "portugueseText":"燃えよドラゴンのテーマ",
+ "portugueseFontType":0,
+ "russianText":"燃えよドラゴンのテーマ",
+ "russianFontType":0,
+ "turkishText":"燃えよドラゴンのテーマ",
+ "turkishFontType":0,
+ "arabicText":"燃えよドラゴンのテーマ",
+ "arabicFontType":0,
+ "dutchText":"燃えよドラゴンのテーマ",
+ "dutchFontType":0,
+ "chineseSText":"燃えよドラゴンのテーマ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_clsmao",
+ "japaneseText":"まおぅ",
+ "englishUsText":"MAO-u",
+ "englishUsFontType":3,
+ "frenchText":"MAO-u",
+ "frenchFontType":3,
+ "italianText":"MAO-u",
+ "italianFontType":3,
+ "germanText":"MAO-u",
+ "germanFontType":3,
+ "spanishText":"MAO-u",
+ "spanishFontType":3,
+ "chineseTText":"MAO-u",
+ "chineseTFontType":1,
+ "koreanText":"MAO-u",
+ "koreanFontType":2,
+ "portugueseText":"MAO-u",
+ "portugueseFontType":3,
+ "russianText":"MAO-u",
+ "russianFontType":3,
+ "turkishText":"MAO-u",
+ "turkishFontType":3,
+ "arabicText":"MAO-u",
+ "arabicFontType":3,
+ "dutchText":"MAO-u",
+ "dutchFontType":3,
+ "chineseSText":"MAO-u",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_clsmao",
+ "japaneseText":"feat. 結羽(プラムソニック)",
+ "englishUsText":"feat. Yuu.(pLumsonic!)",
+ "englishUsFontType":3,
+ "frenchText":"feat. Yuu.(pLumsonic!)",
+ "frenchFontType":3,
+ "italianText":"feat. Yuu.(pLumsonic!)",
+ "italianFontType":3,
+ "germanText":"feat. Yuu.(pLumsonic!)",
+ "germanFontType":3,
+ "spanishText":"feat. Yuu.(pLumsonic!)",
+ "spanishFontType":3,
+ "chineseTText":"feat. 結羽(pLumsonic!)",
+ "chineseTFontType":1,
+ "koreanText":"feat. Yuu.(pLumsonic!)",
+ "koreanFontType":2,
+ "portugueseText":"feat. Yuu.(pLumsonic!)",
+ "portugueseFontType":3,
+ "russianText":"feat. Yuu.(pLumsonic!)",
+ "russianFontType":3,
+ "turkishText":"feat. Yuu.(pLumsonic!)",
+ "turkishFontType":3,
+ "arabicText":"feat. Yuu.(pLumsonic!)",
+ "arabicFontType":3,
+ "dutchText":"feat. Yuu.(pLumsonic!)",
+ "dutchFontType":3,
+ "chineseSText":"feat. 结羽(pLumsonic!)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_clsmao",
+ "japaneseText":"",
+ "englishUsText":"まおぅ",
+ "englishUsFontType":0,
+ "frenchText":"まおぅ",
+ "frenchFontType":0,
+ "italianText":"まおぅ",
+ "italianFontType":0,
+ "germanText":"まおぅ",
+ "germanFontType":0,
+ "spanishText":"まおぅ",
+ "spanishFontType":0,
+ "chineseTText":"まおぅ",
+ "chineseTFontType":0,
+ "koreanText":"まおぅ",
+ "koreanFontType":0,
+ "portugueseText":"まおぅ",
+ "portugueseFontType":0,
+ "russianText":"まおぅ",
+ "russianFontType":0,
+ "turkishText":"まおぅ",
+ "turkishFontType":0,
+ "arabicText":"まおぅ",
+ "arabicFontType":0,
+ "dutchText":"まおぅ",
+ "dutchFontType":0,
+ "chineseSText":"まおぅ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_psplsb",
+ "japaneseText":"きたさいたま2000",
+ "englishUsText":"KITA SAITAMA 2000",
+ "englishUsFontType":3,
+ "frenchText":"KITA SAITAMA 2000",
+ "frenchFontType":3,
+ "italianText":"KITA SAITAMA 2000",
+ "italianFontType":3,
+ "germanText":"KITA SAITAMA 2000",
+ "germanFontType":3,
+ "spanishText":"KITA SAITAMA 2000",
+ "spanishFontType":3,
+ "chineseTText":"北埼玉2000",
+ "chineseTFontType":1,
+ "koreanText":"KITA SAITAMA 2000",
+ "koreanFontType":2,
+ "portugueseText":"KITA SAITAMA 2000",
+ "portugueseFontType":3,
+ "russianText":"KITA SAITAMA 2000",
+ "russianFontType":3,
+ "turkishText":"KITA SAITAMA 2000",
+ "turkishFontType":3,
+ "arabicText":"KITA SAITAMA 2000",
+ "arabicFontType":3,
+ "dutchText":"KITA SAITAMA 2000",
+ "dutchFontType":3,
+ "chineseSText":"北埼玉2000",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_psplsb",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_psplsb",
+ "japaneseText":"",
+ "englishUsText":"きたさいたま2000",
+ "englishUsFontType":0,
+ "frenchText":"きたさいたま2000",
+ "frenchFontType":0,
+ "italianText":"きたさいたま2000",
+ "italianFontType":0,
+ "germanText":"きたさいたま2000",
+ "germanFontType":0,
+ "spanishText":"きたさいたま2000",
+ "spanishFontType":0,
+ "chineseTText":"きたさいたま2000",
+ "chineseTFontType":0,
+ "koreanText":"きたさいたま2000",
+ "koreanFontType":0,
+ "portugueseText":"きたさいたま2000",
+ "portugueseFontType":0,
+ "russianText":"きたさいたま2000",
+ "russianFontType":0,
+ "turkishText":"きたさいたま2000",
+ "turkishFontType":0,
+ "arabicText":"きたさいたま2000",
+ "arabicFontType":0,
+ "dutchText":"きたさいたま2000",
+ "dutchFontType":0,
+ "chineseSText":"きたさいたま2000",
+ "chineseSFontType":0
+ },
+ {
+ "key":"osirase_v1_14_0",
+ "japaneseText":"太鼓の達人 Pop Tap Beat をプレイ頂き、ありがとうございます!\n\nソフトウェアのアップデートを行いました(Ver.1.14.0)\n\n★新曲追加★\n太鼓の達人シリーズ初登場の楽曲をご紹介!\n\n1969年から世界で展開されているテレビ番組\n「セサミストリート」のテーマソング\n1973年に公開され、今もなお支持される伝説の映画\n「燃えよドラゴン」のテーマソング\n\nその他、全7曲を追加しました。",
+ "englishUsText":"Thank you for playing Taiko no Tatsujin Pop Tap Beat!\n\nThe game has been updated (Ver.1.14.0).\n\n★New Songs Added★\nIntroducing new songs to Taiko no Tatsujin!\n\nThe theme song from \"Sesame Street,\"\na show broadcast worldwide since 1969.\nThe theme song from \"Enter the Dragon,\"\na beloved legendary 1973 film.\n\nIn total, seven new songs are now available.",
+ "englishUsFontType":3,
+ "frenchText":"Merci de jouer à Taiko no Tatsujin Pop Tap Beat !\n\nMise à jour du logiciel (Ver.1.14.0)\n\nAjout de nouvelles chansons\nDécouvrez ces chansons pour la première fois\ndans Taiko no Tatsujin !\n\nLe thème musical de la série télévisée Sesame Street,\ndiffusée dans le monde entier depuis 1969 !\nLe thème musical du film culte Enter The Dragon,\nsorti en 1973, et toujours aussi populaire aujourd'hui !\n\nAu total, 7 chansons ont été ajoutées.",
+ "frenchFontType":3,
+ "italianText":"Grazie per aver giocato a Taiko no Tatsujin Pop Tap Beat!\n\nAbbiamo aggiornato il gioco. (Ver. 1.14.0)\n\n★Nuovi brani★\nBrani inediti per Taiko no Tatsujin!\n\nArrivano \"Sesame Street Theme\", la sigla del programma televisivo \n\"Sesame Street\", trasmesso in tutto il mondo dal 1969, \ned \"Enter The Dragon (Theme)\", il tema musicale del leggendario \ne tutt'oggi amato film del 1973, \"Enter The Dragon\"!\n\nQuesti sono solo due dei sette nuovi brani aggiunti.",
+ "italianFontType":3,
+ "germanText":"Vielen Dank fürs Spielen von Taiko no Tatsujin Pop Tap Beat!\n\nDie Software wurde aktualisiert (Ver.1.14.0).\n\n★Neue Songs★\nFolgende Songs sind brandneu für Taiko no Tatsujin verfügbar:\n\nDie Titelmelodie der Sesame Street, die 1969 erstmals\nausgestrahlt wurde und der Titelsong des legendären Films\nEnter The Dragon, der 1973 veröffentlicht wurde\nund sich noch heute großer Beliebtheit erfreut.\n\nInsgesamt wurden 7 neue Songs hinzugefügt.",
+ "germanFontType":3,
+ "spanishText":"¡Gracias por jugar a Taiko no Tatsujin Pop Tap Beat!\n\nNovedades de la última actualización (ver. 1.14.0)\n\n¡Nuevas canciones!\n¡Presentamos las nuevas canciones que hacen su primera\naparición en Taiko no Tatsujin!\n\n¡Desde 1969, llega el tema principal de Sesame Street,\nun programa de televisión con una gran fama\na nivel mundial!\n¡Desde 1973, llega el tema principal de Enter The Dragon,\nuna película legendaria que goza de gran popularidad\nhasta hoy!\n\nEn total, se añadieron 7 canciones.",
+ "spanishFontType":3,
+ "chineseTText":"感謝您遊玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本軟體已更新(Ver.1.14.0)。\n\n★追加新曲★\n為您介紹首次在太鼓之達人系列登場的樂曲!\n\n自1969起於世界各地播送的電視節目\n《芝麻街》的主題曲。\n於1973年上映,公開至今仍廣受喜愛的傳說級電影\n《龍爭虎鬥》的主題曲。\n\n另外已追加共7首樂曲。",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 Pop Tap Beat를 플레이해주셔서 감사합니다!\n\n소프트웨어를 업데이트했습니다.(Ver.1.14.0)\n\n★신곡 추가★\n태고의 달인 시리즈 최초로 등장하는 곡을 소개합니다!\n\n1969년부터 세계에서 방영되고 있는 TV 프로그램\n'세서미 스트리트'의 테마 송,\n1973년에 공개되어 지금까지 여전히 \n두터운 팬층을 자랑하는 전설의 영화\n'Enter The Dragon'의 테마 송,\n\n그 밖에도 총 7곡을 추가했습니다.",
+ "koreanFontType":2,
+ "portugueseText":"Obrigado por jogar Taiko no Tatsujin Pop Tap Beat!\n\nO jogo foi atualizado (Ver.1.14.0).\n\n★Adição de novas músicas★\nApresentamos músicas que aparecem pela primeira vez na série Taiko no Tatsujin!\n\nA canção “Sesame Street Theme”, de um programa de televisão mundial desde 1969.\nA canção “Enter The Dragon (Theme)”, de um filme lendário de 1973.\n\nNo total, sete novas canções estão disponíveis.",
+ "portugueseFontType":2,
+ "russianText":"Спасибо, что играете в Taiko no Tatsujin Pop Tap Beat!\n\nПрограммное обеспечение обновлено (версия 1.14.0).\n\n★Добавлены новые песни★ \nПредставляем новые песни в игре Taiko no Tatsujin!\n\nЗаглавная песня Sesame Street Theme из телепередачи \n«Sesame Street», популярной по всему миру с 1969 года.\nМузыкальная тема Enter The Dragon (Theme) легендарного\nфильма 1973 года «Enter The Dragon».\n\nВ общей сложности мы добавили семь новых песен.",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat'i oynadığınız için teşekkürler!\n\nOyun güncellendi (Ver.1.14.0).\n\n★Yeni Şarkılar Eklendi★\nTaiko no Tatsujin'e yeni şarkılar geldi!\n\nTüm dünyada 1969'dan beri yayınlanan Sesame Street'nın \"Sesame Street Theme\" şarkısı.\n1973 yapımı efsanevi film Enter the Dragon'ın \"Enter The Dragon (Theme)\" şarkısı.\n\nToplamda yedi yeni şarkı eklendi.",
+ "turkishFontType":2,
+ "arabicText":"نشكرك على لعب Taiko no Tatsujin Pop Tap Beat!\n\nلقد تم تحديث اللعبة (نسخة 1.14.0).\n\n★تمت إضافة أغنيات جديدة★\nإليكم الأغنيات الجديد في Taiko no Tatsujin! \n\nنقدم الأغنية المشهورة التي تُبَثُّ حول العالم منذ عام 1969.\nأغنية \"Sesame Street\".\nوأغنية \"Enter the Dragon\"، من\nالفيلم الأسطوري المحبوب لعام 1973. \n\nفي المجموع، هناك سبع أغنيات جديدة متاحة الآن.",
+ "arabicFontType":2,
+ "dutchText":"Bedankt dat je Taiko no Tatsujin Pop Tap Beat speelt!\n\nDe game is geüpdatet (Ver.1.14.0)\n\n★Nieuwe liedjes★\nNieuwe liedjes beschikbaar in Taiko no Tatsujin!\n\nHet Sesame Street Theme,\ndat sinds 1969 wereldwijd wordt uitgezonden.\nHet Enter the Dragon Theme,\neen legendarische film uit 1973.\n\nIn totaal zijn er 7 nieuwe liedjes.",
+ "dutchFontType":2,
+ "chineseSText":"感谢您游玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本软件已更新(Ver.1.14.0)。\n\n★追加新曲★\n为您介绍首次在太鼓之达人系列登场的乐曲!\n\n自1969起于世界各地播送的电视节目\n《芝麻街》的主题曲。\n于1973年上映,公开至今仍广受喜爱的传说级电影\n《龙争虎斗》的主题曲。\n\n另外已追加共7首乐曲。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"osirase_v1_14_0_title",
+ "japaneseText":"ソフトウェアのアップデートを行いました(Ver.1.14.0)",
+ "englishUsText":"The game has been updated (Ver.1.14.0)",
+ "englishUsFontType":3,
+ "frenchText":"Mise à jour du logiciel (Ver.1.14.0)",
+ "frenchFontType":3,
+ "italianText":"Abbiamo aggiornato il gioco. (Ver.1.14.0)",
+ "italianFontType":3,
+ "germanText":"Die Software wurde aktualisiert (Ver.1.14.0)",
+ "germanFontType":3,
+ "spanishText":"Novedades de la última actualización (Ver.1.14.0)",
+ "spanishFontType":3,
+ "chineseTText":"本軟體已更新(Ver.1.14.0)",
+ "chineseTFontType":1,
+ "koreanText":"소프트웨어를 업데이트했습니다.(Ver.1.14.0)",
+ "koreanFontType":2,
+ "portugueseText":"O software foi atualizado (Ver.1.14.0)",
+ "portugueseFontType":2,
+ "russianText":"Программное обеспечение обновлено (версия 1.14.0)",
+ "russianFontType":2,
+ "turkishText":"Oyun güncellendi (Ver.1.14.0)",
+ "turkishFontType":2,
+ "arabicText":"لقد تم تحديث اللعبة (نسخة 1.14.0)",
+ "arabicFontType":2,
+ "dutchText":"De software is geüpdatet. (Ver.1.14.0)",
+ "dutchFontType":2,
+ "chineseSText":"本软件已更新(Ver.1.14.0)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_edison",
+ "japaneseText":"エジソン",
+ "englishUsText":"Edison",
+ "englishUsFontType":3,
+ "frenchText":"Edison",
+ "frenchFontType":3,
+ "italianText":"Edison",
+ "italianFontType":3,
+ "germanText":"Edison",
+ "germanFontType":3,
+ "spanishText":"Edison",
+ "spanishFontType":3,
+ "chineseTText":"Edison",
+ "chineseTFontType":1,
+ "koreanText":"Edison",
+ "koreanFontType":2,
+ "portugueseText":"Edison",
+ "portugueseFontType":3,
+ "russianText":"Edison",
+ "russianFontType":3,
+ "turkishText":"Edison",
+ "turkishFontType":3,
+ "arabicText":"Edison",
+ "arabicFontType":3,
+ "dutchText":"Edison",
+ "dutchFontType":3,
+ "chineseSText":"Edison",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_edison",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_edison",
+ "japaneseText":"",
+ "englishUsText":"エジソン",
+ "englishUsFontType":0,
+ "frenchText":"エジソン",
+ "frenchFontType":0,
+ "italianText":"エジソン",
+ "italianFontType":0,
+ "germanText":"エジソン",
+ "germanFontType":0,
+ "spanishText":"エジソン",
+ "spanishFontType":0,
+ "chineseTText":"エジソン",
+ "chineseTFontType":0,
+ "koreanText":"エジソン",
+ "koreanFontType":0,
+ "portugueseText":"エジソン",
+ "portugueseFontType":0,
+ "russianText":"エジソン",
+ "russianFontType":0,
+ "turkishText":"エジソン",
+ "turkishFontType":0,
+ "arabicText":"エジソン",
+ "arabicFontType":0,
+ "dutchText":"エジソン",
+ "dutchFontType":0,
+ "chineseSText":"エジソン",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_twctt",
+ "japaneseText":"TT -Japanese ver.-",
+ "englishUsText":"TT -Japanese ver.-",
+ "englishUsFontType":3,
+ "frenchText":"TT -Japanese ver.-",
+ "frenchFontType":3,
+ "italianText":"TT -Japanese ver.-",
+ "italianFontType":3,
+ "germanText":"TT -Japanese ver.-",
+ "germanFontType":3,
+ "spanishText":"TT -Japanese ver.-",
+ "spanishFontType":3,
+ "chineseTText":"TT -Japanese ver.-",
+ "chineseTFontType":1,
+ "koreanText":"TT -Japanese ver.-",
+ "koreanFontType":2,
+ "portugueseText":"TT -Japanese ver.-",
+ "portugueseFontType":3,
+ "russianText":"TT -Japanese ver.-",
+ "russianFontType":3,
+ "turkishText":"TT -Japanese ver.-",
+ "turkishFontType":3,
+ "arabicText":"TT -Japanese ver.-",
+ "arabicFontType":3,
+ "dutchText":"TT -Japanese ver.-",
+ "dutchFontType":3,
+ "chineseSText":"TT -Japanese ver.-",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_twctt",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_twctt",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_skrnb",
+ "japaneseText":"さくらんぼ",
+ "englishUsText":"Sakuranbo",
+ "englishUsFontType":3,
+ "frenchText":"Sakuranbo",
+ "frenchFontType":3,
+ "italianText":"Sakuranbo",
+ "italianFontType":3,
+ "germanText":"Sakuranbo",
+ "germanFontType":3,
+ "spanishText":"Sakuranbo",
+ "spanishFontType":3,
+ "chineseTText":"櫻桃",
+ "chineseTFontType":1,
+ "koreanText":"사쿠란보",
+ "koreanFontType":2,
+ "portugueseText":"Sakuranbo",
+ "portugueseFontType":3,
+ "russianText":"Sakuranbo",
+ "russianFontType":3,
+ "turkishText":"Sakuranbo",
+ "turkishFontType":3,
+ "arabicText":"Sakuranbo",
+ "arabicFontType":3,
+ "dutchText":"Sakuranbo",
+ "dutchFontType":3,
+ "chineseSText":"樱桃",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_skrnb",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_skrnb",
+ "japaneseText":"",
+ "englishUsText":"さくらんぼ",
+ "englishUsFontType":0,
+ "frenchText":"さくらんぼ",
+ "frenchFontType":0,
+ "italianText":"さくらんぼ",
+ "italianFontType":0,
+ "germanText":"さくらんぼ",
+ "germanFontType":0,
+ "spanishText":"さくらんぼ",
+ "spanishFontType":0,
+ "chineseTText":"さくらんぼ",
+ "chineseTFontType":0,
+ "koreanText":"さくらんぼ",
+ "koreanFontType":0,
+ "portugueseText":"さくらんぼ",
+ "portugueseFontType":0,
+ "russianText":"さくらんぼ",
+ "russianFontType":0,
+ "turkishText":"さくらんぼ",
+ "turkishFontType":0,
+ "arabicText":"さくらんぼ",
+ "arabicFontType":0,
+ "dutchText":"さくらんぼ",
+ "dutchFontType":0,
+ "chineseSText":"さくらんぼ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_getwld",
+ "japaneseText":"Get Wild",
+ "englishUsText":"Get Wild",
+ "englishUsFontType":3,
+ "frenchText":"Get Wild",
+ "frenchFontType":3,
+ "italianText":"Get Wild",
+ "italianFontType":3,
+ "germanText":"Get Wild",
+ "germanFontType":3,
+ "spanishText":"Get Wild",
+ "spanishFontType":3,
+ "chineseTText":"Get Wild",
+ "chineseTFontType":1,
+ "koreanText":"Get Wild",
+ "koreanFontType":2,
+ "portugueseText":"Get Wild",
+ "portugueseFontType":3,
+ "russianText":"Get Wild",
+ "russianFontType":3,
+ "turkishText":"Get Wild",
+ "turkishFontType":3,
+ "arabicText":"Get Wild",
+ "arabicFontType":3,
+ "dutchText":"Get Wild",
+ "dutchFontType":3,
+ "chineseSText":"Get Wild",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_getwld",
+ "japaneseText":"「シティーハンター」より",
+ "englishUsText":"From \" CITY HUNTER \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" CITY HUNTER \"",
+ "frenchFontType":3,
+ "italianText":"Da \" CITY HUNTER \"",
+ "italianFontType":3,
+ "germanText":"Aus \" CITY HUNTER \"",
+ "germanFontType":3,
+ "spanishText":"De \" CITY HUNTER \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「CITY HUNTER」",
+ "chineseTFontType":1,
+ "koreanText":"\"CITY HUNTER\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" CITY HUNTER \"",
+ "portugueseFontType":3,
+ "russianText":"From \" CITY HUNTER \"",
+ "russianFontType":3,
+ "turkishText":"From \" CITY HUNTER \"",
+ "turkishFontType":3,
+ "arabicText":"From \" CITY HUNTER \"",
+ "arabicFontType":3,
+ "dutchText":"From \" CITY HUNTER \"",
+ "dutchFontType":3,
+ "chineseSText":"出自\"CITY HUNTER\"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_getwld",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_th7171",
+ "japaneseText":"ナイト・オブ・ナイツ",
+ "englishUsText":"Night of Knights / Knight of Nights",
+ "englishUsFontType":3,
+ "frenchText":"Night of Knights / Knight of Nights",
+ "frenchFontType":3,
+ "italianText":"Night of Knights / Knight of Nights",
+ "italianFontType":3,
+ "germanText":"Night of Knights / Knight of Nights",
+ "germanFontType":3,
+ "spanishText":"Night of Knights / Knight of Nights",
+ "spanishFontType":3,
+ "chineseTText":"Night of Knights / Knight of Nights",
+ "chineseTFontType":1,
+ "koreanText":"Night of Knights / Knight of Nights",
+ "koreanFontType":2,
+ "portugueseText":"Night of Knights / Knight of Nights",
+ "portugueseFontType":3,
+ "russianText":"Night of Knights / Knight of Nights",
+ "russianFontType":3,
+ "turkishText":"Night of Knights / Knight of Nights",
+ "turkishFontType":3,
+ "arabicText":"Night of Knights / Knight of Nights",
+ "arabicFontType":3,
+ "dutchText":"Night of Knights / Knight of Nights",
+ "dutchFontType":3,
+ "chineseSText":"Night of Knights / Knight of Nights",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_th7171",
+ "japaneseText":"東方Projectアレンジ ビートまりお",
+ "englishUsText":"Touhou Project Arrange / beatMARIO",
+ "englishUsFontType":3,
+ "frenchText":"Touhou Project Arrange / beatMARIO",
+ "frenchFontType":3,
+ "italianText":"Touhou Project Arrange / beatMARIO",
+ "italianFontType":3,
+ "germanText":"Touhou Project Arrange / beatMARIO",
+ "germanFontType":3,
+ "spanishText":"Touhou Project Arrange / beatMARIO",
+ "spanishFontType":3,
+ "chineseTText":"東方Project Arrange / beatMARIO",
+ "chineseTFontType":1,
+ "koreanText":"Touhou Project Arrange / beatMARIO",
+ "koreanFontType":2,
+ "portugueseText":"Touhou Project Arrange / beatMARIO",
+ "portugueseFontType":3,
+ "russianText":"Touhou Project Arrange / beatMARIO",
+ "russianFontType":3,
+ "turkishText":"Touhou Project Arrange / beatMARIO",
+ "turkishFontType":3,
+ "arabicText":"Touhou Project Arrange / beatMARIO",
+ "arabicFontType":3,
+ "dutchText":"Touhou Project Arrange / beatMARIO",
+ "dutchFontType":3,
+ "chineseSText":"东方Project Arrange / beatMARIO",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_th7171",
+ "japaneseText":"",
+ "englishUsText":"ナイト・オブ・ナイツ",
+ "englishUsFontType":0,
+ "frenchText":"ナイト・オブ・ナイツ",
+ "frenchFontType":0,
+ "italianText":"ナイト・オブ・ナイツ",
+ "italianFontType":0,
+ "germanText":"ナイト・オブ・ナイツ",
+ "germanFontType":0,
+ "spanishText":"ナイト・オブ・ナイツ",
+ "spanishFontType":0,
+ "chineseTText":"ナイト・オブ・ナイツ",
+ "chineseTFontType":0,
+ "koreanText":"ナイト・オブ・ナイツ",
+ "koreanFontType":0,
+ "portugueseText":"ナイト・オブ・ナイツ",
+ "portugueseFontType":0,
+ "russianText":"ナイト・オブ・ナイツ",
+ "russianFontType":0,
+ "turkishText":"ナイト・オブ・ナイツ",
+ "turkishFontType":0,
+ "arabicText":"ナイト・オブ・ナイツ",
+ "arabicFontType":0,
+ "dutchText":"ナイト・オブ・ナイツ",
+ "dutchFontType":0,
+ "chineseSText":"ナイト・オブ・ナイツ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_clsdnu",
+ "japaneseText":"美しく忙しきドナウ",
+ "englishUsText":"The Lovely, Lively Danube",
+ "englishUsFontType":3,
+ "frenchText":"Le beau Danube joyeux",
+ "frenchFontType":3,
+ "italianText":"Il bello e allegro Danubio",
+ "italianFontType":3,
+ "germanText":"Die liebliche, lebhafte Donau",
+ "germanFontType":3,
+ "spanishText":"El hermoso y animado Danubio",
+ "spanishFontType":3,
+ "chineseTText":"美麗又急促的多瑙河",
+ "chineseTFontType":1,
+ "koreanText":"아름답고 바쁜 도나우",
+ "koreanFontType":2,
+ "portugueseText":"The Lovely, Lively Danube",
+ "portugueseFontType":3,
+ "russianText":"The Lovely, Lively Danube",
+ "russianFontType":3,
+ "turkishText":"The Lovely, Lively Danube",
+ "turkishFontType":3,
+ "arabicText":"The Lovely, Lively Danube",
+ "arabicFontType":3,
+ "dutchText":"The Lovely, Lively Danube",
+ "dutchFontType":3,
+ "chineseSText":"美丽又急促的多瑙河",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_clsdnu",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_clsdnu",
+ "japaneseText":"",
+ "englishUsText":"美しく忙しきドナウ",
+ "englishUsFontType":0,
+ "frenchText":"美しく忙しきドナウ",
+ "frenchFontType":0,
+ "italianText":"美しく忙しきドナウ",
+ "italianFontType":0,
+ "germanText":"美しく忙しきドナウ",
+ "germanFontType":0,
+ "spanishText":"美しく忙しきドナウ",
+ "spanishFontType":0,
+ "chineseTText":"美しく忙しきドナウ",
+ "chineseTFontType":0,
+ "koreanText":"美しく忙しきドナウ",
+ "koreanFontType":0,
+ "portugueseText":"美しく忙しきドナウ",
+ "portugueseFontType":0,
+ "russianText":"美しく忙しきドナウ",
+ "russianFontType":0,
+ "turkishText":"美しく忙しきドナウ",
+ "turkishFontType":0,
+ "arabicText":"美しく忙しきドナウ",
+ "arabicFontType":0,
+ "dutchText":"美しく忙しきドナウ",
+ "dutchFontType":0,
+ "chineseSText":"美しく忙しきドナウ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_hvride",
+ "japaneseText":"Heaven's Rider",
+ "englishUsText":"Heaven's Rider",
+ "englishUsFontType":3,
+ "frenchText":"Heaven's Rider",
+ "frenchFontType":3,
+ "italianText":"Heaven's Rider",
+ "italianFontType":3,
+ "germanText":"Heaven's Rider",
+ "germanFontType":3,
+ "spanishText":"Heaven's Rider",
+ "spanishFontType":3,
+ "chineseTText":"Heaven's Rider",
+ "chineseTFontType":1,
+ "koreanText":"Heaven's Rider",
+ "koreanFontType":2,
+ "portugueseText":"Heaven's Rider",
+ "portugueseFontType":3,
+ "russianText":"Heaven's Rider",
+ "russianFontType":3,
+ "turkishText":"Heaven's Rider",
+ "turkishFontType":3,
+ "arabicText":"Heaven's Rider",
+ "arabicFontType":3,
+ "dutchText":"Heaven's Rider",
+ "dutchFontType":3,
+ "chineseSText":"Heaven's Rider",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_hvride",
+ "japaneseText":"濱本理央(BNSI)",
+ "englishUsText":"Rio Hamamoto(BNSI)",
+ "englishUsFontType":3,
+ "frenchText":"Rio Hamamoto(BNSI)",
+ "frenchFontType":3,
+ "italianText":"Rio Hamamoto(BNSI)",
+ "italianFontType":3,
+ "germanText":"Rio Hamamoto(BNSI)",
+ "germanFontType":3,
+ "spanishText":"Rio Hamamoto(BNSI)",
+ "spanishFontType":3,
+ "chineseTText":"Rio Hamamoto(BNSI)",
+ "chineseTFontType":1,
+ "koreanText":"Rio Hamamoto(BNSI)",
+ "koreanFontType":2,
+ "portugueseText":"Rio Hamamoto(BNSI)",
+ "portugueseFontType":3,
+ "russianText":"Rio Hamamoto(BNSI)",
+ "russianFontType":3,
+ "turkishText":"Rio Hamamoto(BNSI)",
+ "turkishFontType":3,
+ "arabicText":"Rio Hamamoto(BNSI)",
+ "arabicFontType":3,
+ "dutchText":"Rio Hamamoto(BNSI)",
+ "dutchFontType":3,
+ "chineseSText":"Rio Hamamoto(BNSI)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_hvride",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"osirase_v1_15_0",
+ "japaneseText":"太鼓の達人 Pop Tap Beat をプレイ頂き、ありがとうございます!\n\nソフトウェアのアップデートを行いました(Ver.1.15.0)\n\n★新曲追加★\n2022年に動画配信サイトを中心に人気となった\n「エジソン」が太鼓の達人シリーズに初登場!\n\nまた東方Projectのアレンジ曲「ナイト・オブ・ナイツ」が\nPop Tap Beatで遊べるようになりました。\n\nその他、全7曲を追加しました。",
+ "englishUsText":"Thank you for playing Taiko no Tatsujin Pop Tap Beat!\n\nThe game has been updated (Ver.1.15.0).\n\n★New Songs Added★\n\"Edison\" the hit song that made waves on video streaming\nsites in 2022 makes its Taiko no Tatsujin debut!\n\nAlso, \"Night of Knights / Knight of Nights\" is now \navailable as a Touhou Project Arrangement song on \nTaiko no Tatsujin Pop Tap Beat.\n\nIn total, seven new songs are now available.",
+ "englishUsFontType":3,
+ "frenchText":"Merci de jouer à Taiko no Tatsujin Pop Tap Beat !\n\nMise à jour du logiciel (Ver.1.15.0)\n\n★ Ajout de nouvelles chansons ★\n« Edison », qui s'est fait connaître principalement sur les sites\nde diffusion de vidéos en 2022, débarque pour la première fois\ndans Taiko no Tatsujin !\n\nDe plus, « Night of Knights / Knight of Nights » arrive aussi\ndans Pop Tap Beat en version arrangée par Touhou Project.\n\nAu total, 7 chansons ont été ajoutées.",
+ "frenchFontType":3,
+ "italianText":"Grazie per aver giocato a Taiko no Tatsujin Pop Tap Beat!\n\nAbbiamo aggiornato il gioco. (Ver. 1.15.0)\n\nNuovi brani\n\nPer la prima volta nella serie Taiko no Tatsujin arriva \"Edison\", \nuna canzone che ha goduto di grande popolarità\nsulle piattaforme di streaming video nel 2022!\n\nInoltre, il brano \"Night of Knights / Knight of Nights\"\nè stato aggiunto tra i Touhou Project Arrangements\ngiocabili su Pop Tap Beat.\n\nIn totale, sono stati aggiunti sette nuovi brani.",
+ "italianFontType":3,
+ "germanText":"Vielen Dank fürs Spielen von Taiko no Tatsujin Pop Tap Beat!\n\nDie Software wurde aktualisiert (Ver.1.15.0).\n\n★Neue Songs★\n\"Edison\", der Hit, der sich 2022 auf Streamingplattformen\ngroßer Beliebtheit erfreute, ist nun auch auf Taiko no\nTatsujin verfügbar. Daneben brandneu dabei bei Taiko no\nTatsujin Pop Tap Beat: \"Night of Knights / Knight of Nights\"\nim Touhou-Project-Arrangement. \n\nInsgesamt wurden 7 neue Songs hinzugefügt.",
+ "germanFontType":3,
+ "spanishText":"¡Gracias por jugar a Taiko no Tatsujin Pop Tap Beat!\n\nNovedades de la última actualización (ver. 1.15.0)\n\n¡Nuevas canciones!\n¡Llega por primera vez a Taiko no Tatsujin, Edison, un\ntema musical que fue tremendamente popular durante el 2022\nen las plataformas de distribución de vídeos!\n\nAdemás, ahora se podrá jugar en Pop Tap Beat con el\ntema Night of Knights / Knight of Nights de Touhou Project\nen su versión adaptada.\n\nEn total, se añadieron 7 canciones.",
+ "spanishFontType":3,
+ "chineseTText":"感謝您遊玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本軟體已更新(Ver.1.15.0)。\n\n★追加新曲★\n2022年主要在影音串流網站上大受歡迎的\n《Edison》將首次在太鼓之達人系列登場!\n\n此外,現在已可在POP TAP BEAT上玩到東方Project的改編曲\n《Night of Knights / Knight of Nights》了。\n\n另外已追加共7首樂曲。",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 Pop Tap Beat를 플레이해주셔서 감사합니다!\n\n소프트웨어를 업데이트했습니다.(Ver.1.15.0)\n\n★신곡 추가★\n2022년에 동영상 사이트를 중심으로 인기를 모은\n'Edison'이 태고의 달인 시리즈 최초로 등장!\n\n또한 'Night of Knights / Knight of Nights'가 Touhou Project Arrange 곡으로\nPop Tap Beat에서 플레이할 수 있게 되었습니다.\n\n그 밖에도 총 7곡을 추가했습니다.",
+ "koreanFontType":2,
+ "portugueseText":"Obrigado por jogar Taiko no Tatsujin Pop Tap Beat!\n\nO jogo foi atualizado (Ver.1.15.0).\n\n★Novas Músicas adicionadas★\n“Edison”, que ficou popular sobretudo em plataformas de\nstreaming em 2022, aparece pela primeira vez\nna série Taiko no Tatsujin!\n\nE agora, “Night of Knights / Knight of Nights” também pode\nser tocada como um arranjo musical de Touhou Project\nno Taiko no Tatsujin Pop Tap Beat.\n\nAdicionamos um total de 7 músicas no total.",
+ "portugueseFontType":2,
+ "russianText":"Спасибо, что играете в Taiko no Tatsujin Pop Tap Beat!\n\nПрограммное обеспечение обновлено (версия 1.15.0)\n\n★Добавлены новые песни★\nВпервые в Taiko no Tatsujin — трек Edison, ставший популярным\nна видеоплатформах в 2022 году!\n\nТакже в Taiko no Tatsujin Pop Tap Beat вы сможете сыграть аранжировку композиции \nNight of Knights / Knight of Nights \nиз игры Touhou Project.\n\nВсего было добавлено семь новых песен.",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat'i oynadığınız için teşekkürler!\n\nOyun güncellendi (Sürüm 1.15.0).\n\n★Yeni Şarkılar Eklendi★\n2022 yılında video paylaşım sitelerini\nkırıp geçiren hit şarkı \"Edison\" artık Taiko no Tatsujin’de!\n\nAyrıca \"Night of Knights / Knight of Nights\" da\nbir Touhou Project Arrangement şarkısı olarak\nTaiko no Tatsujin Pop Tap Beat’e konuk oluyor.\n\nToplamda yedi yeni şarkı eklendi.",
+ "turkishFontType":2,
+ "arabicText":"شكرًا لك على لعب Taiko no Tatsujin Pop Tap Beat!\n\n تم تحديث اللعبة (الإصدار 1.15.0). \n\n ★ تمت إضافة الأغاني الجديدة ★ COLOR >\n\"Edison\" الأغنية الناجحة التي أحدثت ضجة على مواقع بث الفيديو\nفي عام 2022 هي Taiko no Tatsujin!\n\nوأيضًا، \"Night of Knights/Knight of Nights\"\nمتاحة الآن كأغنية Touhou Project Arrangement على \nTaiko no Tatsujin Pop Tap Beat.\n\n.الإجمالي، تتوفر سبع أغانٍ جديدة الآن.",
+ "arabicFontType":2,
+ "dutchText":"Bedankt dat je Taiko no Tatsujin Pop Tap Beat speelt!\n\nDe game is geüpdatet (Ver.1.15.0).\n\n★Nieuwe liedjes★\nDe hitsong Edison, die in 2022 furore maakte op\nvideostreamingsites, maakt zijn debuut bij Taiko no Tatsujin!\n\nOok Night of Knights/Knight of Nights is nu \nbeschikbaar als Touhou Project Arrangements-song op \nTaiko no Tatsujin Pop Tap Beat.\n\nIn totaal zijn er nu zeven nieuwe liedjes beschikbaar.",
+ "dutchFontType":2,
+ "chineseSText":"感谢您游玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本软件已更新(Ver.1.15.0)。\n\n★追加新曲★\n2022年主要在流媒体平台上大受欢迎的\n《Edison》将首次在太鼓之达人系列登场!\n\n此外,现在已可在POP TAP BEAT上玩到东方Project的改编曲\n《Night of Knights / Knight of Nights》了。\n\n另外已追加共7首乐曲。",
+ "chineseSFontType":4
+ },
+ {
+ "key":"osirase_v1_15_0_title",
+ "japaneseText":"ソフトウェアのアップデートを行いました(Ver.1.15.0)",
+ "englishUsText":"The game has been updated (Ver.1.15.0)",
+ "englishUsFontType":3,
+ "frenchText":"Mise à jour du logiciel (Ver.1.15.0)",
+ "frenchFontType":3,
+ "italianText":"Abbiamo aggiornato il gioco. (Ver.1.15.0)",
+ "italianFontType":3,
+ "germanText":"Die Software wurde aktualisiert (Ver.1.15.0)",
+ "germanFontType":3,
+ "spanishText":"Novedades de la última actualización (Ver.1.15.0)",
+ "spanishFontType":3,
+ "chineseTText":"本軟體已更新(Ver.1.15.0)",
+ "chineseTFontType":1,
+ "koreanText":"소프트웨어를 업데이트했습니다.(Ver.1.15.0)",
+ "koreanFontType":2,
+ "portugueseText":"O software foi atualizado (Ver.1.15.0)",
+ "portugueseFontType":2,
+ "russianText":"Программное обеспечение обновлено (версия 1.15.0)",
+ "russianFontType":2,
+ "turkishText":"Oyun güncellendi (Ver.1.15.0)",
+ "turkishFontType":2,
+ "arabicText":"لقد تم تحديث اللعبة (نسخة 1.15.0)",
+ "arabicFontType":2,
+ "dutchText":"De software is geüpdatet. (Ver.1.15.0)",
+ "dutchFontType":2,
+ "chineseSText":"本软件已更新(Ver.1.15.0)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_linda",
+ "japaneseText":"リンダリンダ",
+ "englishUsText":"LINDA LINDA",
+ "englishUsFontType":3,
+ "frenchText":"LINDA LINDA",
+ "frenchFontType":3,
+ "italianText":"LINDA LINDA",
+ "italianFontType":3,
+ "germanText":"LINDA LINDA",
+ "germanFontType":3,
+ "spanishText":"LINDA LINDA",
+ "spanishFontType":3,
+ "chineseTText":"LINDA LINDA",
+ "chineseTFontType":1,
+ "koreanText":"LINDA LINDA",
+ "koreanFontType":2,
+ "portugueseText":"LINDA LINDA",
+ "portugueseFontType":3,
+ "russianText":"LINDA LINDA",
+ "russianFontType":3,
+ "turkishText":"LINDA LINDA",
+ "turkishFontType":3,
+ "arabicText":"LINDA LINDA",
+ "arabicFontType":3,
+ "dutchText":"LINDA LINDA",
+ "dutchFontType":3,
+ "chineseSText":"LINDA LINDA",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_linda",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_linda",
+ "japaneseText":"",
+ "englishUsText":"リンダリンダ",
+ "englishUsFontType":0,
+ "frenchText":"リンダリンダ",
+ "frenchFontType":0,
+ "italianText":"リンダリンダ",
+ "italianFontType":0,
+ "germanText":"リンダリンダ",
+ "germanFontType":0,
+ "spanishText":"リンダリンダ",
+ "spanishFontType":0,
+ "chineseTText":"リンダリンダ",
+ "chineseTFontType":0,
+ "koreanText":"リンダリンダ",
+ "koreanFontType":0,
+ "portugueseText":"リンダリンダ",
+ "portugueseFontType":0,
+ "russianText":"リンダリンダ",
+ "russianFontType":0,
+ "turkishText":"リンダリンダ",
+ "turkishFontType":0,
+ "arabicText":"リンダリンダ",
+ "arabicFontType":0,
+ "dutchText":"リンダリンダ",
+ "dutchFontType":0,
+ "chineseSText":"リンダリンダ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_odoru",
+ "japaneseText":"おどるポンポコリン",
+ "englishUsText":"Odoru Ponpokorin",
+ "englishUsFontType":3,
+ "frenchText":"Odoru Ponpokorin",
+ "frenchFontType":3,
+ "italianText":"Odoru Ponpokorin",
+ "italianFontType":3,
+ "germanText":"Odoru Ponpokorin",
+ "germanFontType":3,
+ "spanishText":"Odoru Ponpokorin",
+ "spanishFontType":3,
+ "chineseTText":"稍息立正站好",
+ "chineseTFontType":1,
+ "koreanText":"춤추는 폼포코린",
+ "koreanFontType":2,
+ "portugueseText":"Odoru Ponpokorin",
+ "portugueseFontType":3,
+ "russianText":"Odoru Ponpokorin",
+ "russianFontType":3,
+ "turkishText":"Odoru Ponpokorin",
+ "turkishFontType":3,
+ "arabicText":"Odoru Ponpokorin",
+ "arabicFontType":3,
+ "dutchText":"Odoru Ponpokorin",
+ "dutchFontType":3,
+ "chineseSText":"稍息立正站好",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_odoru",
+ "japaneseText":"「ちびまる子ちゃん」より",
+ "englishUsText":"From \" Chibi Maruko-chan \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Chibi Maruko-chan \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Chibi Maruko-chan \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Chibi Maruko-chan \"",
+ "germanFontType":3,
+ "spanishText":"De \" Chibi Maruko-chan \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「櫻桃小丸子」",
+ "chineseTFontType":1,
+ "koreanText":"\"마루코는 아홉살\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" Chibi Maruko-chan \"",
+ "portugueseFontType":3,
+ "russianText":"From \" Chibi Maruko-chan \"",
+ "russianFontType":3,
+ "turkishText":"From \" Chibi Maruko-chan \"",
+ "turkishFontType":3,
+ "arabicText":"From \" Chibi Maruko-chan \"",
+ "arabicFontType":3,
+ "dutchText":"From \" Chibi Maruko-chan \"",
+ "dutchFontType":3,
+ "chineseSText":"出自\"樱桃小丸子\"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_odoru",
+ "japaneseText":"",
+ "englishUsText":"おどるポンポコリン",
+ "englishUsFontType":0,
+ "frenchText":"おどるポンポコリン",
+ "frenchFontType":0,
+ "italianText":"おどるポンポコリン",
+ "italianFontType":0,
+ "germanText":"おどるポンポコリン",
+ "germanFontType":0,
+ "spanishText":"おどるポンポコリン",
+ "spanishFontType":0,
+ "chineseTText":"おどるポンポコリン",
+ "chineseTFontType":0,
+ "koreanText":"おどるポンポコリン",
+ "koreanFontType":0,
+ "portugueseText":"おどるポンポコリン",
+ "portugueseFontType":0,
+ "russianText":"おどるポンポコリン",
+ "russianFontType":0,
+ "turkishText":"おどるポンポコリン",
+ "turkishFontType":0,
+ "arabicText":"おどるポンポコリン",
+ "arabicFontType":0,
+ "dutchText":"おどるポンポコリン",
+ "dutchFontType":0,
+ "chineseSText":"おどるポンポコリン",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_ginga",
+ "japaneseText":"銀河鉄道999",
+ "englishUsText":"THE GALAXY EXPRESS 999",
+ "englishUsFontType":3,
+ "frenchText":"THE GALAXY EXPRESS 999",
+ "frenchFontType":3,
+ "italianText":"THE GALAXY EXPRESS 999",
+ "italianFontType":3,
+ "germanText":"THE GALAXY EXPRESS 999",
+ "germanFontType":3,
+ "spanishText":"THE GALAXY EXPRESS 999",
+ "spanishFontType":3,
+ "chineseTText":"THE GALAXY EXPRESS 999",
+ "chineseTFontType":1,
+ "koreanText":"THE GALAXY EXPRESS 999",
+ "koreanFontType":2,
+ "portugueseText":"THE GALAXY EXPRESS 999",
+ "portugueseFontType":3,
+ "russianText":"THE GALAXY EXPRESS 999",
+ "russianFontType":3,
+ "turkishText":"THE GALAXY EXPRESS 999",
+ "turkishFontType":3,
+ "arabicText":"THE GALAXY EXPRESS 999",
+ "arabicFontType":3,
+ "dutchText":"THE GALAXY EXPRESS 999",
+ "dutchFontType":3,
+ "chineseSText":"THE GALAXY EXPRESS 999",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_ginga",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_ginga",
+ "japaneseText":"",
+ "englishUsText":"銀河鉄道999",
+ "englishUsFontType":0,
+ "frenchText":"銀河鉄道999",
+ "frenchFontType":0,
+ "italianText":"銀河鉄道999",
+ "italianFontType":0,
+ "germanText":"銀河鉄道999",
+ "germanFontType":0,
+ "spanishText":"銀河鉄道999",
+ "spanishFontType":0,
+ "chineseTText":"銀河鉄道999",
+ "chineseTFontType":0,
+ "koreanText":"銀河鉄道999",
+ "koreanFontType":0,
+ "portugueseText":"銀河鉄道999",
+ "portugueseFontType":0,
+ "russianText":"銀河鉄道999",
+ "russianFontType":0,
+ "turkishText":"銀河鉄道999",
+ "turkishFontType":0,
+ "arabicText":"銀河鉄道999",
+ "arabicFontType":0,
+ "dutchText":"銀河鉄道999",
+ "dutchFontType":0,
+ "chineseSText":"銀河鉄道999",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_thbad",
+ "japaneseText":"Bad Apple!! feat.nomico",
+ "englishUsText":"Bad Apple!! feat.nomico",
+ "englishUsFontType":3,
+ "frenchText":"Bad Apple!! feat.nomico",
+ "frenchFontType":3,
+ "italianText":"Bad Apple!! feat.nomico",
+ "italianFontType":3,
+ "germanText":"Bad Apple!! feat.nomico",
+ "germanFontType":3,
+ "spanishText":"Bad Apple!! feat.nomico",
+ "spanishFontType":3,
+ "chineseTText":"Bad Apple!! feat.nomico",
+ "chineseTFontType":1,
+ "koreanText":"Bad Apple!! feat.nomico",
+ "koreanFontType":2,
+ "portugueseText":"Bad Apple!! feat.nomico",
+ "portugueseFontType":3,
+ "russianText":"Bad Apple!! feat.nomico",
+ "russianFontType":3,
+ "turkishText":"Bad Apple!! feat.nomico",
+ "turkishFontType":3,
+ "arabicText":"Bad Apple!! feat.nomico",
+ "arabicFontType":3,
+ "dutchText":"Bad Apple!! feat.nomico",
+ "dutchFontType":3,
+ "chineseSText":"Bad Apple!! feat.nomico",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_thbad",
+ "japaneseText":"東方Projectアレンジ Alstroemeria Records",
+ "englishUsText":"Touhou Project Arrange / Alstroemeria Records",
+ "englishUsFontType":3,
+ "frenchText":"Touhou Project Arrange / Alstroemeria Records",
+ "frenchFontType":3,
+ "italianText":"Touhou Project Arrange / Alstroemeria Records",
+ "italianFontType":3,
+ "germanText":"Touhou Project Arrange / Alstroemeria Records",
+ "germanFontType":3,
+ "spanishText":"Touhou Project Arrange / Alstroemeria Records",
+ "spanishFontType":3,
+ "chineseTText":"東方Project Arrange / Alstroemeria Records",
+ "chineseTFontType":1,
+ "koreanText":"Touhou Project Arrange / Alstroemeria Records",
+ "koreanFontType":2,
+ "portugueseText":"Touhou Project Arrange / Alstroemeria Records",
+ "portugueseFontType":3,
+ "russianText":"Touhou Project Arrange / Alstroemeria Records",
+ "russianFontType":3,
+ "turkishText":"Touhou Project Arrange / Alstroemeria Records",
+ "turkishFontType":3,
+ "arabicText":"Touhou Project Arrange / Alstroemeria Records",
+ "arabicFontType":3,
+ "dutchText":"Touhou Project Arrange / Alstroemeria Records",
+ "dutchFontType":3,
+ "chineseSText":"东方Project Arrange / Alstroemeria Records",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_thbad",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_rr42",
+ "japaneseText":"BLUE TOPAZ",
+ "englishUsText":"BLUE TOPAZ",
+ "englishUsFontType":3,
+ "frenchText":"BLUE TOPAZ",
+ "frenchFontType":3,
+ "italianText":"BLUE TOPAZ",
+ "italianFontType":3,
+ "germanText":"BLUE TOPAZ",
+ "germanFontType":3,
+ "spanishText":"BLUE TOPAZ",
+ "spanishFontType":3,
+ "chineseTText":"BLUE TOPAZ",
+ "chineseTFontType":1,
+ "koreanText":"BLUE TOPAZ",
+ "koreanFontType":2,
+ "portugueseText":"BLUE TOPAZ",
+ "portugueseFontType":3,
+ "russianText":"BLUE TOPAZ",
+ "russianFontType":3,
+ "turkishText":"BLUE TOPAZ",
+ "turkishFontType":3,
+ "arabicText":"BLUE TOPAZ",
+ "arabicFontType":3,
+ "dutchText":"BLUE TOPAZ",
+ "dutchFontType":3,
+ "chineseSText":"BLUE TOPAZ",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_rr42",
+ "japaneseText":"「レイブレーサー」より",
+ "englishUsText":"From \" RAVE RACER \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" RAVE RACER \"",
+ "frenchFontType":3,
+ "italianText":"Da \" RAVE RACER \"",
+ "italianFontType":3,
+ "germanText":"Aus \" RAVE RACER \"",
+ "germanFontType":3,
+ "spanishText":"De \" RAVE RACER \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「RAVE RACER」",
+ "chineseTFontType":1,
+ "koreanText":"\"RAVE RACER\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" RAVE RACER \"",
+ "portugueseFontType":3,
+ "russianText":"From \" RAVE RACER \"",
+ "russianFontType":3,
+ "turkishText":"From \" RAVE RACER \"",
+ "turkishFontType":3,
+ "arabicText":"From \" RAVE RACER \"",
+ "arabicFontType":3,
+ "dutchText":"From \" RAVE RACER \"",
+ "dutchFontType":3,
+ "chineseSText":"出自\"RAVE RACER\"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_rr42",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_tkrcop",
+ "japaneseText":"RHYTHM CONNECT",
+ "englishUsText":"RHYTHM CONNECT",
+ "englishUsFontType":3,
+ "frenchText":"RHYTHM CONNECT",
+ "frenchFontType":3,
+ "italianText":"RHYTHM CONNECT",
+ "italianFontType":3,
+ "germanText":"RHYTHM CONNECT",
+ "germanFontType":3,
+ "spanishText":"RHYTHM CONNECT",
+ "spanishFontType":3,
+ "chineseTText":"RHYTHM CONNECT",
+ "chineseTFontType":1,
+ "koreanText":"RHYTHM CONNECT",
+ "koreanFontType":2,
+ "portugueseText":"RHYTHM CONNECT",
+ "portugueseFontType":3,
+ "russianText":"RHYTHM CONNECT",
+ "russianFontType":3,
+ "turkishText":"RHYTHM CONNECT",
+ "turkishFontType":3,
+ "arabicText":"RHYTHM CONNECT",
+ "arabicFontType":3,
+ "dutchText":"RHYTHM CONNECT",
+ "dutchFontType":3,
+ "chineseSText":"RHYTHM CONNECT",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_tkrcop",
+ "japaneseText":"TRIANGLE 「太鼓の達人 RHYTHM CONNECT」テーマソング",
+ "englishUsText":"TRIANGLE \" Taiko no Tatsujin RHYTHM CONNECT \" Theme Song",
+ "englishUsFontType":3,
+ "frenchText":"TRIANGLE Thème \" Taiko no Tatsujin RHYTHM CONNECT \"",
+ "frenchFontType":3,
+ "italianText":"TRIANGLE Tema di \" Taiko no Tatsujin RHYTHM CONNECT \"",
+ "italianFontType":3,
+ "germanText":"TRIANGLE \" Taiko no Tatsujin RHYTHM CONNECT \"-Titellied",
+ "germanFontType":3,
+ "spanishText":"TRIANGLE Tema de \" Taiko no Tatsujin RHYTHM CONNECT \"",
+ "spanishFontType":3,
+ "chineseTText":"TRIANGLE 「太鼓之達人 RHYTHM CONNECT」主題曲",
+ "chineseTFontType":1,
+ "koreanText":"TRIANGLE \"태고의 달인 RHYTHM CONNECT\"주제가",
+ "koreanFontType":2,
+ "portugueseText":"TRIANGLE \" Taiko no Tatsujin RHYTHM CONNECT \" Theme Song",
+ "portugueseFontType":3,
+ "russianText":"TRIANGLE \" Taiko no Tatsujin RHYTHM CONNECT \" Theme Song",
+ "russianFontType":3,
+ "turkishText":"TRIANGLE \" Taiko no Tatsujin RHYTHM CONNECT \" Theme Song",
+ "turkishFontType":3,
+ "arabicText":"TRIANGLE \" Taiko no Tatsujin RHYTHM CONNECT \" Theme Song",
+ "arabicFontType":3,
+ "dutchText":"TRIANGLE \" Taiko no Tatsujin RHYTHM CONNECT \" Theme Song",
+ "dutchFontType":3,
+ "chineseSText":"TRIANGLE \"太鼓之达人 RHYTHM CONNECT\"主题曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_tkrcop",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"osirase_v1_16_0",
+ "japaneseText":"太鼓の達人 Pop Tap Beat をプレイ頂き、ありがとうございます!\n\nソフトウェアのアップデートを行いました(Ver.1.16.0)\n\n★新曲追加★\n「リンダリンダ」「おどるポンポコリン」など\n太鼓の達人シリーズの定番曲を含めて全6曲を追加しました。\n\nPop Tap Beatでドンカツ叩き放題!",
+ "englishUsText":"Thank you for playing Taiko no Tatsujin Pop Tap Beat!\n\nThe game has been updated (Ver.1.16.0).\n\n★New Songs Added★\nA total of 6 songs have been added, including classic songs\nfrom the Taiko no Tatsujin series such as \"LINDA LINDA\" and\n\"Odoru Ponpokorin.\"\n\nDrum along to your heart's content in Pop Tap Beat!",
+ "englishUsFontType":3,
+ "frenchText":"Merci de jouer à Taiko no Tatsujin Pop Tap Beat !\n\nMise à jour du logiciel (Ver.1.16.0)\n\n★ Ajout de nouvelles chansons ★\n« LINDA LINDA », « Odoru Ponpokorin »\net d'autres classiques de la série Taiko no Tatsujin\nont été ajoutés pour un total de 6 nouvelles chansons !\n\nTambourinez à volonté dans Pop Tap Beat !",
+ "frenchFontType":3,
+ "italianText":"Grazie per aver giocato a Taiko no Tatsujin Pop Tap Beat!\n\nAbbiamo aggiornato il gioco (Ver. 1.16.0).\n\nNuovi brani\nSono stati aggiunti sei brani, tra cui \"LINDA LINDA\" e\n\"Odoru Ponpokorin\", capisaldi della serie Taiko no Tatsujin.\n\nSuonate i tamburi a più non posso con Pop Tap Beat!",
+ "italianFontType":3,
+ "germanText":"Vielen Dank fürs Spielen von Taiko no Tatsujin Pop Tap Beat!\n\nDie Software wurde aktualisiert (Ver.1.16.0).\n\n★Neue Songs★\nInsgesamt wurden 6 neue Songs hinzugefügt,\ndarunter \"LINDA LINDA\", \"Odoru Ponpokorin\"\nsowie Klassiker der Taiko-no-Tatsujin-Reihe.\n\nTrommelt nach Herzenslust bei Pop Tap Beat!",
+ "germanFontType":3,
+ "spanishText":"¡Gracias por jugar a Taiko no Tatsujin Pop Tap Beat!\n\nNovedades de la última actualización (ver. 1.16.0)\n\n¡Nuevas canciones!\nSe han agregado un total de 6 canciones, entre las que\nse encuentran canciones clásicas de la serie Taiko no\nTatsujin como LINDA LINDA u Odoru Ponpokorin.\n\n¡Disfruta de nuestra batería infinita de canciones en\nPop Tap Beat!",
+ "spanishFontType":3,
+ "chineseTText":"感謝您遊玩《Taiko no Tatsujin Pop Tap Beat》!\n\n本軟體已更新(Ver.1.16.0)。\n\n★追加新曲★\n已追加包含《LINDA LINDA》和《稍息立正站好》等\n太鼓之達人系列的經典曲目的共6首樂曲。\n\n在《Pop Tap Beat》中盡情敲出咚咔節奏吧!",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 Pop Tap Beat를 플레이해주셔서 감사합니다!\n\n소프트웨어를 업데이트했습니다.(Ver.1.16.0)\n\n★신곡 추가★\n'LINDA LINDA', '춤추는 폼포코린' 등\n태고의 달인 시리즈 대표곡을 포함해서 총 6곡을 추가했습니다.\n\nPop Tap Beat에서 마음껏 쿵딱!",
+ "koreanFontType":2,
+ "portugueseText":"Obrigado por jogar Taiko no Tatsujin Pop Tap Beat!\n\nO software foi atualizado (Ver.1.16.0).\n\n ★Adição de novas músicas★\nAdicionamos um total de 6 músicas,\nincluindo \"LINDA LINDA\" e \"Odoru Ponpokorin\", clássicos da série Taiko no Tatsujin.\n\nDivirta-se sem parar em Pop Tap Beat!",
+ "portugueseFontType":2,
+ "russianText":"Спасибо, что играете в Taiko no Tatsujin Pop Tap Beat!\n\nПрограммное обеспечение обновлено (версия 1.16.0)\n\n★Добавлены новые песни★\nБыло добавлено 6 песен, включая классические треки\nиз серии Taiko no Tatsujin — LINDA LINDA и Odoru Ponpokorin.\n\nБейте от души в Pop Tap Beat!",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat'i oynadığınız için teşekkürler!\n\nOyun güncellendi (Ver.1.16.0).\n\n★Yeni Şarkılar Eklendi★\nTaiko no Tatsujin serisinden \n“LINDA LINDA” ve “Odoru Ponpokorin”in\n de aralarında bulunduğu klasik şarkılardan 6 tanesi artık oyunda.\n\nPop Tap Beat'te gönlünüzce davul çalma vakti!",
+ "turkishFontType":2,
+ "arabicText":"نشكرك على لعب Taiko no Tatsujin Pop Tap Beat!\n\nلقد تم تحديث اللعبة (نسخة 1.16.0).\n\n★تمت إضافة أغنيات جديدة★\nتمت إضافة 6 أغنيات في المجمل، من بينها أغنيات كلاسيكية من\nسلسلة Taiko no Tatsujin مثل \"LINDA LINDA\"\nو\"Odoru Ponpokorin.\"\n\nاستمتع بإيقاع الطبول من القلب في Pop Tap Beat!",
+ "arabicFontType":2,
+ "dutchText":"Bedankt dat je Taiko no Tatsujin Pop Tap Beat speelt!\n\nDe game is geüpdatet (Ver.1.16.0).\n\n★Nieuwe liedjes★\nEr zijn in totaal 6 nieuwe liedjes, waaronder klassiekers\nvan de Taiko no Tatsujin-serie, zoals LINDA LINDA en\nOdoruPonpokorin.\n\nTrommel naar hartenlust in Pop Tap Beat!",
+ "dutchFontType":2,
+ "chineseSText":"感谢您游玩《Taiko no Tatsujin Pop Tap Beat》!\n\n本软件已更新(Ver.1.16.0)。\n\n★追加新曲★\n已追加包含《LINDA LINDA》和《稍息立正站好》等\n太鼓之达人系列的经典曲目的共6首乐曲。\n\n在《Pop Tap Beat》中尽情敲出咚咔节奏吧!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"osirase_v1_16_0_title",
+ "japaneseText":"ソフトウェアのアップデートを行いました(Ver.1.16.0)",
+ "englishUsText":"The game has been updated (Ver.1.16.0)",
+ "englishUsFontType":3,
+ "frenchText":"Mise à jour du logiciel (Ver.1.16.0)",
+ "frenchFontType":3,
+ "italianText":"Abbiamo aggiornato il gioco. (Ver.1.16.0)",
+ "italianFontType":3,
+ "germanText":"Die Software wurde aktualisiert (Ver.1.16.0)",
+ "germanFontType":3,
+ "spanishText":"Novedades de la última actualización (Ver.1.16.0)",
+ "spanishFontType":3,
+ "chineseTText":"本軟體已更新(Ver.1.16.0)",
+ "chineseTFontType":1,
+ "koreanText":"소프트웨어를 업데이트했습니다.(Ver.1.16.0)",
+ "koreanFontType":2,
+ "portugueseText":"O software foi atualizado (Ver.1.16.0)",
+ "portugueseFontType":2,
+ "russianText":"Программное обеспечение обновлено (версия 1.16.0)",
+ "russianFontType":2,
+ "turkishText":"Oyun güncellendi (Ver.1.16.0)",
+ "turkishFontType":2,
+ "arabicText":"لقد تم تحديث اللعبة (نسخة 1.16.0)",
+ "arabicFontType":2,
+ "dutchText":"De software is geüpdatet. (Ver.1.16.0)",
+ "dutchFontType":2,
+ "chineseSText":"本软件已更新(Ver.1.16.0)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_rydeen",
+ "japaneseText":"RYDEEN",
+ "englishUsText":"RYDEEN",
+ "englishUsFontType":3,
+ "frenchText":"RYDEEN",
+ "frenchFontType":3,
+ "italianText":"RYDEEN",
+ "italianFontType":3,
+ "germanText":"RYDEEN",
+ "germanFontType":3,
+ "spanishText":"RYDEEN",
+ "spanishFontType":3,
+ "chineseTText":"RYDEEN",
+ "chineseTFontType":1,
+ "koreanText":"RYDEEN",
+ "koreanFontType":2,
+ "portugueseText":"RYDEEN",
+ "portugueseFontType":3,
+ "russianText":"RYDEEN",
+ "russianFontType":3,
+ "turkishText":"RYDEEN",
+ "turkishFontType":3,
+ "arabicText":"RYDEEN",
+ "arabicFontType":3,
+ "dutchText":"RYDEEN",
+ "dutchFontType":3,
+ "chineseSText":"RYDEEN",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_rydeen",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_rydeen",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":0,
+ "frenchText":"",
+ "frenchFontType":0,
+ "italianText":"",
+ "italianFontType":0,
+ "germanText":"",
+ "germanFontType":0,
+ "spanishText":"",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"",
+ "koreanFontType":0,
+ "portugueseText":"",
+ "portugueseFontType":0,
+ "russianText":"",
+ "russianFontType":0,
+ "turkishText":"",
+ "turkishFontType":0,
+ "arabicText":"",
+ "arabicFontType":0,
+ "dutchText":"",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_pkmmzs",
+ "japaneseText":"めざせポケモンマスター -20th Anniversary-",
+ "englishUsText":"Mezase Pokémon Master -20th Anniversary-",
+ "englishUsFontType":3,
+ "frenchText":"Mezase Pokémon Master -20th Anniversary-",
+ "frenchFontType":3,
+ "italianText":"Mezase Pokémon Master -20th Anniversary-",
+ "italianFontType":3,
+ "germanText":"Mezase Pokémon Master -20th Anniversary-",
+ "germanFontType":3,
+ "spanishText":"Mezase Pokémon Master -20th Anniversary-",
+ "spanishFontType":3,
+ "chineseTText":"Mezase Pokemon Master -20th Anniversary-",
+ "chineseTFontType":1,
+ "koreanText":"Mezase Pokemon Master -20th Anniversary-",
+ "koreanFontType":2,
+ "portugueseText":"Mezase Pokémon Master -20th Anniversary-",
+ "portugueseFontType":3,
+ "russianText":"Mezase Pokémon Master -20th Anniversary-",
+ "russianFontType":3,
+ "turkishText":"Mezase Pokémon Master -20th Anniversary-",
+ "turkishFontType":3,
+ "arabicText":"Mezase Pokémon Master -20th Anniversary-",
+ "arabicFontType":3,
+ "dutchText":"Mezase Pokémon Master -20th Anniversary-",
+ "dutchFontType":3,
+ "chineseSText":"Mezase Pokemon Master -20th Anniversary-",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_pkmmzs",
+ "japaneseText":"「劇場版ポケットモンスター キミにきめた!」より",
+ "englishUsText":"From \" Pokémon the Movie: I Choose You! \"",
+ "englishUsFontType":3,
+ "frenchText":"tiré de \" Pokémon the Movie: I Choose You! \"",
+ "frenchFontType":3,
+ "italianText":"Da \" Pokémon the Movie: I Choose You! \"",
+ "italianFontType":3,
+ "germanText":"Aus \" Pokémon the Movie: I Choose You! \"",
+ "germanFontType":3,
+ "spanishText":"De \" Pokémon the Movie: I Choose You! \"",
+ "spanishFontType":3,
+ "chineseTText":"來自「劇場版 寶可夢 就決定是你了!」",
+ "chineseTFontType":1,
+ "koreanText":"\"극장판 포켓몬스터 너로 정했다!\"에서",
+ "koreanFontType":2,
+ "portugueseText":"From \" Pokémon the Movie: I Choose You! \"",
+ "portugueseFontType":3,
+ "russianText":"From \" Pokémon the Movie: I Choose You! \"",
+ "russianFontType":3,
+ "turkishText":"From \" Pokémon the Movie: I Choose You! \"",
+ "turkishFontType":3,
+ "arabicText":"From \" Pokémon the Movie: I Choose You! \"",
+ "arabicFontType":3,
+ "dutchText":"From \" Pokémon the Movie: I Choose You! \"",
+ "dutchFontType":3,
+ "chineseSText":"出自\"宝可梦 就决定是你了!\"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_pkmmzs",
+ "japaneseText":"",
+ "englishUsText":"めざせポケモンマスター -20th Anniversary-",
+ "englishUsFontType":0,
+ "frenchText":"めざせポケモンマスター -20th Anniversary-",
+ "frenchFontType":0,
+ "italianText":"めざせポケモンマスター -20th Anniversary-",
+ "italianFontType":0,
+ "germanText":"めざせポケモンマスター -20th Anniversary-",
+ "germanFontType":0,
+ "spanishText":"めざせポケモンマスター -20th Anniversary-",
+ "spanishFontType":0,
+ "chineseTText":"めざせポケモンマスター -20th Anniversary-",
+ "chineseTFontType":0,
+ "koreanText":"めざせポケモンマスター -20th Anniversary-",
+ "koreanFontType":0,
+ "portugueseText":"めざせポケモンマスター -20th Anniversary-",
+ "portugueseFontType":0,
+ "russianText":"めざせポケモンマスター -20th Anniversary-",
+ "russianFontType":0,
+ "turkishText":"めざせポケモンマスター -20th Anniversary-",
+ "turkishFontType":0,
+ "arabicText":"めざせポケモンマスター -20th Anniversary-",
+ "arabicFontType":0,
+ "dutchText":"めざせポケモンマスター -20th Anniversary-",
+ "dutchFontType":0,
+ "chineseSText":"めざせポケモンマスター -20th Anniversary-",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_gegeg2",
+ "japaneseText":"ゲゲゲの鬼太郎",
+ "englishUsText":"GeGeGe no Kitaro",
+ "englishUsFontType":3,
+ "frenchText":"GeGeGe no Kitaro",
+ "frenchFontType":3,
+ "italianText":"GeGeGe no Kitaro",
+ "italianFontType":3,
+ "germanText":"GeGeGe no Kitaro",
+ "germanFontType":3,
+ "spanishText":"GeGeGe no Kitaro",
+ "spanishFontType":3,
+ "chineseTText":"咯咯咯鬼太郎",
+ "chineseTFontType":1,
+ "koreanText":"게게게의 기타로",
+ "koreanFontType":2,
+ "portugueseText":"GeGeGe no Kitaro",
+ "portugueseFontType":3,
+ "russianText":"GeGeGe no Kitaro",
+ "russianFontType":3,
+ "turkishText":"GeGeGe no Kitaro",
+ "turkishFontType":3,
+ "arabicText":"GeGeGe no Kitaro",
+ "arabicFontType":3,
+ "dutchText":"GeGeGe no Kitaro",
+ "dutchFontType":3,
+ "chineseSText":"咯咯咯鬼太郎",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_gegeg2",
+ "japaneseText":"TVアニメ 第6期 オープニング主題歌",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_gegeg2",
+ "japaneseText":"",
+ "englishUsText":"ゲゲゲの鬼太郎",
+ "englishUsFontType":0,
+ "frenchText":"ゲゲゲの鬼太郎",
+ "frenchFontType":0,
+ "italianText":"ゲゲゲの鬼太郎",
+ "italianFontType":0,
+ "germanText":"ゲゲゲの鬼太郎",
+ "germanFontType":0,
+ "spanishText":"ゲゲゲの鬼太郎",
+ "spanishFontType":0,
+ "chineseTText":"ゲゲゲの鬼太郎",
+ "chineseTFontType":0,
+ "koreanText":"ゲゲゲの鬼太郎",
+ "koreanFontType":0,
+ "portugueseText":"ゲゲゲの鬼太郎",
+ "portugueseFontType":0,
+ "russianText":"ゲゲゲの鬼太郎",
+ "russianFontType":0,
+ "turkishText":"ゲゲゲの鬼太郎",
+ "turkishFontType":0,
+ "arabicText":"ゲゲゲの鬼太郎",
+ "arabicFontType":0,
+ "dutchText":"ゲゲゲの鬼太郎",
+ "dutchFontType":0,
+ "chineseSText":"ゲゲゲの鬼太郎",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_thchil",
+ "japaneseText":"チルノのパーフェクトさんすう教室",
+ "englishUsText":"Cirno's Perfect Math Class",
+ "englishUsFontType":3,
+ "frenchText":"Cirno's Perfect Math Class",
+ "frenchFontType":3,
+ "italianText":"Cirno's Perfect Math Class",
+ "italianFontType":3,
+ "germanText":"Cirno's Perfect Math Class",
+ "germanFontType":3,
+ "spanishText":"Cirno's Perfect Math Class",
+ "spanishFontType":3,
+ "chineseTText":"琪露諾的完美算術教室",
+ "chineseTFontType":1,
+ "koreanText":"Cirno노파페쿠토산수쿄시츠",
+ "koreanFontType":2,
+ "portugueseText":"Cirno's Perfect Math Class",
+ "portugueseFontType":3,
+ "russianText":"Cirno's Perfect Math Class",
+ "russianFontType":3,
+ "turkishText":"Cirno's Perfect Math Class",
+ "turkishFontType":3,
+ "arabicText":"Cirno's Perfect Math Class",
+ "arabicFontType":3,
+ "dutchText":"Cirno's Perfect Math Class",
+ "dutchFontType":3,
+ "chineseSText":"琪露诺的完美算术教室",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_thchil",
+ "japaneseText":"東方Projectアレンジ ARM+夕野ヨシミ(IOSYS) feat. miko",
+ "englishUsText":"Touhou Project Arrange / ARM + Yoshimi YOUNO(IOSYS) feat. miko",
+ "englishUsFontType":3,
+ "frenchText":"Touhou Project Arrange / ARM + Yoshimi YOUNO(IOSYS) feat. miko",
+ "frenchFontType":3,
+ "italianText":"Touhou Project Arrange / ARM + Yoshimi YOUNO(IOSYS) feat. miko",
+ "italianFontType":3,
+ "germanText":"Touhou Project Arrange / ARM + Yoshimi YOUNO(IOSYS) feat. miko",
+ "germanFontType":3,
+ "spanishText":"Touhou Project Arrange / ARM + Yoshimi YOUNO(IOSYS) feat. miko",
+ "spanishFontType":3,
+ "chineseTText":"東方Project Arrange / ARM + Yoshimi YOUNO(IOSYS) feat. miko",
+ "chineseTFontType":1,
+ "koreanText":"Touhou Project Arrange / ARM + Yoshimi YOUNO(IOSYS) feat. miko",
+ "koreanFontType":2,
+ "portugueseText":"Touhou Project Arrange / ARM + Yoshimi YOUNO(IOSYS) feat. miko",
+ "portugueseFontType":3,
+ "russianText":"Touhou Project Arrange / ARM + Yoshimi YOUNO(IOSYS) feat. miko",
+ "russianFontType":3,
+ "turkishText":"Touhou Project Arrange / ARM + Yoshimi YOUNO(IOSYS) feat. miko",
+ "turkishFontType":3,
+ "arabicText":"Touhou Project Arrange / ARM + Yoshimi YOUNO(IOSYS) feat. miko",
+ "arabicFontType":3,
+ "dutchText":"Touhou Project Arrange / ARM + Yoshimi YOUNO(IOSYS) feat. miko",
+ "dutchFontType":3,
+ "chineseSText":"东方Project Arrange / ARM + Yoshimi YOUNO(IOSYS) feat. miko",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_thchil",
+ "japaneseText":"",
+ "englishUsText":"チルノのパーフェクトさんすう教室",
+ "englishUsFontType":0,
+ "frenchText":"チルノのパーフェクトさんすう教室",
+ "frenchFontType":0,
+ "italianText":"チルノのパーフェクトさんすう教室",
+ "italianFontType":0,
+ "germanText":"チルノのパーフェクトさんすう教室",
+ "germanFontType":0,
+ "spanishText":"チルノのパーフェクトさんすう教室",
+ "spanishFontType":0,
+ "chineseTText":"チルノのパーフェクトさんすう教室",
+ "chineseTFontType":0,
+ "koreanText":"チルノのパーフェクトさんすう教室",
+ "koreanFontType":0,
+ "portugueseText":"チルノのパーフェクトさんすう教室",
+ "portugueseFontType":0,
+ "russianText":"チルノのパーフェクトさんすう教室",
+ "russianFontType":0,
+ "turkishText":"チルノのパーフェクトさんすう教室",
+ "turkishFontType":0,
+ "arabicText":"チルノのパーフェクトさんすう教室",
+ "arabicFontType":0,
+ "dutchText":"チルノのパーフェクトさんすう教室",
+ "dutchFontType":0,
+ "chineseSText":"チルノのパーフェクトさんすう教室",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_clsvre",
+ "japaneseText":"おおブレネリ",
+ "englishUsText":"O Vreneli",
+ "englishUsFontType":3,
+ "frenchText":"O Vreneli",
+ "frenchFontType":3,
+ "italianText":"O Vreneli",
+ "italianFontType":3,
+ "germanText":"O Vreneli",
+ "germanFontType":3,
+ "spanishText":"O Vreneli",
+ "spanishFontType":3,
+ "chineseTText":"O Vreneli",
+ "chineseTFontType":1,
+ "koreanText":"O Vreneli",
+ "koreanFontType":2,
+ "portugueseText":"O Vreneli",
+ "portugueseFontType":3,
+ "russianText":"O Vreneli",
+ "russianFontType":3,
+ "turkishText":"O Vreneli",
+ "turkishFontType":3,
+ "arabicText":"O Vreneli",
+ "arabicFontType":3,
+ "dutchText":"O Vreneli",
+ "dutchFontType":3,
+ "chineseSText":"O Vreneli",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_clsvre",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_clsvre",
+ "japaneseText":"",
+ "englishUsText":"おおブレネリ",
+ "englishUsFontType":0,
+ "frenchText":"おおブレネリ",
+ "frenchFontType":0,
+ "italianText":"おおブレネリ",
+ "italianFontType":0,
+ "germanText":"おおブレネリ",
+ "germanFontType":0,
+ "spanishText":"おおブレネリ",
+ "spanishFontType":0,
+ "chineseTText":"おおブレネリ",
+ "chineseTFontType":0,
+ "koreanText":"おおブレネリ",
+ "koreanFontType":0,
+ "portugueseText":"おおブレネリ",
+ "portugueseFontType":0,
+ "russianText":"おおブレネリ",
+ "russianFontType":0,
+ "turkishText":"おおブレネリ",
+ "turkishFontType":0,
+ "arabicText":"おおブレネリ",
+ "arabicFontType":0,
+ "dutchText":"おおブレネリ",
+ "dutchFontType":0,
+ "chineseSText":"おおブレネリ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_struin",
+ "japaneseText":"セイクリッド ルイン",
+ "englishUsText":"Sacred Ruin",
+ "englishUsFontType":3,
+ "frenchText":"Sacred Ruin",
+ "frenchFontType":3,
+ "italianText":"Sacred Ruin",
+ "italianFontType":3,
+ "germanText":"Sacred Ruin",
+ "germanFontType":3,
+ "spanishText":"Sacred Ruin",
+ "spanishFontType":3,
+ "chineseTText":"Sacred Ruin",
+ "chineseTFontType":1,
+ "koreanText":"Sacred Ruin",
+ "koreanFontType":2,
+ "portugueseText":"Sacred Ruin",
+ "portugueseFontType":3,
+ "russianText":"Sacred Ruin",
+ "russianFontType":3,
+ "turkishText":"Sacred Ruin",
+ "turkishFontType":3,
+ "arabicText":"Sacred Ruin",
+ "arabicFontType":3,
+ "dutchText":"Sacred Ruin",
+ "dutchFontType":3,
+ "chineseSText":"Sacred Ruin",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_struin",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_struin",
+ "japaneseText":"",
+ "englishUsText":"セイクリッド ルイン",
+ "englishUsFontType":0,
+ "frenchText":"セイクリッド ルイン",
+ "frenchFontType":0,
+ "italianText":"セイクリッド ルイン",
+ "italianFontType":0,
+ "germanText":"セイクリッド ルイン",
+ "germanFontType":0,
+ "spanishText":"セイクリッド ルイン",
+ "spanishFontType":0,
+ "chineseTText":"セイクリッド ルイン",
+ "chineseTFontType":0,
+ "koreanText":"セイクリッド ルイン",
+ "koreanFontType":0,
+ "portugueseText":"セイクリッド ルイン",
+ "portugueseFontType":0,
+ "russianText":"セイクリッド ルイン",
+ "russianFontType":0,
+ "turkishText":"セイクリッド ルイン",
+ "turkishFontType":0,
+ "arabicText":"セイクリッド ルイン",
+ "arabicFontType":0,
+ "dutchText":"セイクリッド ルイン",
+ "dutchFontType":0,
+ "chineseSText":"セイクリッド ルイン",
+ "chineseSFontType":0
+ },
+ {
+ "key":"osirase_v1_17_0",
+ "japaneseText":"太鼓の達人 Pop Tap Beat をプレイ頂き、ありがとうございます!\n\nソフトウェアのアップデートを行いました(Ver.1.17.0)\n\n★新曲追加★\n1980年に発表された日本のテクノポップを象徴する楽曲\n「RYDEEN」が太鼓の達人シリーズ初登場!\nさらに東方Projectアレンジ曲の\n「チルノのパーフェクトさんすう教室」を追加!\n\n全6曲をドドンと追加しました!",
+ "englishUsText":"Thank you for playing Taiko no Tatsujin Pop Tap Beat!\n\nThe game has been updated (Ver.1.17.0).\n\n★New Songs Added★\nReleased in 1980, the iconic Japanese techno-pop song\n\"RYDEEN\" makes its Taiko no Tatsujin debut!\nAlso, \"Cirno's Perfect Math Class\" is now available as a\nTouhou Project Arrangement!\n\nIn total, six new songs have been added!",
+ "englishUsFontType":3,
+ "frenchText":"Merci de jouer à Taiko no Tatsujin Pop Tap Beat !\n\nMise à jour du logiciel (Ver.1.17.0)\n\n★ Ajout de nouvelles chansons ★\n« RYDEEN », chanson emblématique de la techno-pop japonaise\nsortie en 1980, fait sa première apparition dans la série\nTaiko no Tatsujin !\nDe plus, « Cirno's Perfect Math Class » a été ajoutée\nen version arrangée du Touhou Project !\n\nCela fait 6 nouvelles chansons au total !",
+ "frenchFontType":3,
+ "italianText":"Grazie per aver giocato a Taiko no Tatsujin Pop Tap Beat!\n\nAbbiamo aggiornato il gioco. (Ver. 1.17.0)\n\nNuovi brani\n\"RYDEEN\", il brano del 1980 simbolo del techno-pop giapponese,\narriva per la prima volta nella serie Taiko no Tatsujin!\nInoltre, la canzone \"Cirno's Perfect Math Class\"\nè stata inserita tra i Touhou Project Arrangements giocabili!\n\nSei nuovi brani da godere a ritmo di tamburo!",
+ "italianFontType":3,
+ "germanText":"Vielen Dank fürs Spielen von Taiko no Tatsujin Pop Tap Beat!\n\nDie Software wurde aktualisiert (Ver.1.17.0).\n\n★Neue Songs★\nRYDEEN, 1980 veröffentlicht und einer der bekanntesten\nSongs des japanischen Technopops, ist neu auf Taiko no\nTatsujin verfügbar! Und als Zugabe gibt es \"Cirno's Perfect Math Class\"\nim Arrangement von Touhou Project!\n\nInsgesamt wurden 6 neue trommeltastische Songs hinzugefügt!",
+ "germanFontType":3,
+ "spanishText":"¡Gracias por jugar a Taiko no Tatsujin Pop Tap Beat!\n\nNovedades de la última actualización (ver. 1.17.0)\n\n¡Nuevas canciones!\nDesde 1980, hace su primera aparición\nen Taiko no Tatsujin, RYDEEN, una canción que marcó\nun antes y un después en el género del techno-pop japonés.\n¡Además, ahora se podrá jugar en Pop Tap Beat con el tema\nCirno's Perfect Math Class de Touhou Project en su versión\nadaptada!\n\n¡En total, se añadieron-do-don 6 canciones!",
+ "spanishFontType":3,
+ "chineseTText":"感謝您遊玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本軟體已更新(Ver.1.17.0)。\n\n★追加新曲★\n於1980年發行,象徵日本Techno Pop的樂曲\n《RYDEEN》將首次在太鼓之達人系列登場!\n此外,將追加東方Project改編曲\n《琪露諾的完美算術教室》!\n\n已咚咚地追加共6首樂曲!",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 Pop Tap Beat를 플레이해주셔서 감사합니다!\n\n소프트웨어를 업데이트했습니다.(Ver.1.17.0)\n\n★신곡 추가★\n1980년에 발표되어 일본의 테크노 팝을 상징하는 곡\n'RYDEEN'이 태고의 달인 시리즈 최초로 등장!\n또한 'Cirno노파페쿠토산수쿄시츠'가\nTouhou Project Arrange 곡으로 추가!\n\n쿠쿵, 총 6곡을 추가했습니다!",
+ "koreanFontType":2,
+ "portugueseText":"Obrigado por jogar Taiko no Tatsujin Pop Tap Beat!\n\nO software foi atualizado (Ver.1.17.0).\n\n★ Adição de novas músicas ★\n\"RYDEEN\", a música que foi lançada pela primeira vez\nem 1980 e que simboliza o technopop japonês,\nfaz sua estreia na série Taiko no Tatsujin!\nTambém adicionamos \"Cirno's Perfect Math Class\" como\narranjo musical de Touhou Project!\n\nAdicionamos um total de 6 músicas! TUM TUM!",
+ "portugueseFontType":2,
+ "russianText":"Спасибо, что играете в Taiko no Tatsujin Pop Tap Beat!\n\nПрограммное обеспечение обновлено (версия 1.17.0).\n\n★Добавлены новые песни★\nВыпущенная в Японии в 1980 году культовая техно-поп композиция RYDEEN\nвпервые появляется в игре Taiko no Tatsujin!\nКроме того, Cirno's Perfect Math Class теперь доступна\nв качестве аранжировки из игры Touhou Project!\n\nВсего было добавлено шесть новых песен!",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat'i oynadığınız için teşekkürler!\n\nOyun güncellendi (Sürüm 1.17.0).\n\n★Yeni Şarkılar Eklendi★\n1980’de yayınlanan Japon ikonik tekno-pop şarkısı\n\"RYDEEN\" Taiko no Tatsujin’de ilk kez çıkış yapıyor!\nAyrıca, “Cirno's Perfect Math Class” da artık\nTouhou Project Arrangement şarkısı olarak mevcut!\n\nToplamda altı yeni şarkı eklendi!",
+ "turkishFontType":2,
+ "arabicText":"نشكرك على لعب Taiko no Tatsujin Pop Tap Beat!\n\nلقد تم تحديث اللعبة (نسخة.1.17.0).\n\n★تمت إضافة أغنيات جديدة★\nلقد وصلت أغنية التكنو بوب اليابانية الشهيرة التي تم إصدارها في عام 1980 \"\n\"RYDEEN\" إلى لعبة Taiko no Tatsujin لأول مرة!\nكما أصبحت أغنية \"Cirno's Perfect Math Class\" متاحة الآن\nكتوزيع موسيقي لمشروع Touhou! \n\nفي المجموع، تمت إضافة ست أغنيات جديدة!",
+ "arabicFontType":2,
+ "dutchText":"Bedankt dat je Taiko no Tatsujin Pop Tap Beat speelt!\n\nDe game is geüpdatet. (Ver.1.17.0)\n\n★Nieuwe liedjes toegevoegd★\nHet in 1980 uitgebrachte, iconische technopopnummer\nRYDEEN maakt zijn debuut bij Taiko NoTatsujin!\nCirno's Perfect Math Class is nu ook beschikbaar als\nTouhou Project Arrangement!\n\nIn totaal zijn er zes nieuwe liedjes toegevoegd!",
+ "dutchFontType":2,
+ "chineseSText":"感谢您游玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本软件已更新(Ver.1.17.0)。\n\n★追加新曲★\n于1980年发行,象征日本Techno Pop的乐曲\n《RYDEEN》将首次在太鼓之达人系列登场!\n此外,将追加东方Project改编曲\n《琪露诺的完美算术教室》!\n\n已咚咚地追加共6首乐曲!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"osirase_v1_17_0_title",
+ "japaneseText":"ソフトウェアのアップデートを行いました(Ver.1.17.0)",
+ "englishUsText":"The game has been updated (Ver.1.17.0)",
+ "englishUsFontType":3,
+ "frenchText":"Mise à jour du logiciel (Ver.1.17.0)",
+ "frenchFontType":3,
+ "italianText":"Abbiamo aggiornato il gioco. (Ver.1.17.0)",
+ "italianFontType":3,
+ "germanText":"Die Software wurde aktualisiert (Ver.1.17.0)",
+ "germanFontType":3,
+ "spanishText":"Novedades de la última actualización (Ver.1.17.0)",
+ "spanishFontType":3,
+ "chineseTText":"本軟體已更新(Ver.1.17.0)",
+ "chineseTFontType":1,
+ "koreanText":"소프트웨어를 업데이트했습니다.(Ver.1.17.0)",
+ "koreanFontType":2,
+ "portugueseText":"O software foi atualizado (Ver.1.17.0)",
+ "portugueseFontType":2,
+ "russianText":"Программное обеспечение обновлено (версия 1.17.0)",
+ "russianFontType":2,
+ "turkishText":"Oyun güncellendi (Ver.1.17.0)",
+ "turkishFontType":2,
+ "arabicText":"لقد تم تحديث اللعبة (نسخة 1.17.0)",
+ "arabicFontType":2,
+ "dutchText":"De software is geüpdatet. (Ver.1.17.0)",
+ "dutchFontType":2,
+ "chineseSText":"本软件已更新(Ver.1.17.0)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_konant",
+ "japaneseText":"名探偵コナン メイン・テーマ",
+ "englishUsText":"Detective Conan, main theme",
+ "englishUsFontType":3,
+ "frenchText":"Detective Conan, main theme",
+ "frenchFontType":3,
+ "italianText":"Detective Conan, main theme",
+ "italianFontType":3,
+ "germanText":"Detective Conan, main theme",
+ "germanFontType":3,
+ "spanishText":"Detective Conan, main theme",
+ "spanishFontType":3,
+ "chineseTText":"名偵探柯南 主題音樂",
+ "chineseTFontType":1,
+ "koreanText":"명탐정 코난・테마 곡",
+ "koreanFontType":2,
+ "portugueseText":"Detective Conan, main theme",
+ "portugueseFontType":3,
+ "russianText":"Detective Conan, main theme",
+ "russianFontType":3,
+ "turkishText":"Detective Conan, main theme",
+ "turkishFontType":3,
+ "arabicText":"Detective Conan, main theme",
+ "arabicFontType":3,
+ "dutchText":"Detective Conan, main theme",
+ "dutchFontType":3,
+ "chineseSText":"名侦探柯南 主题音乐",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_konant",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_konant",
+ "japaneseText":"",
+ "englishUsText":"名探偵コナン メイン・テーマ",
+ "englishUsFontType":0,
+ "frenchText":"名探偵コナン メイン・テーマ",
+ "frenchFontType":0,
+ "italianText":"名探偵コナン メイン・テーマ",
+ "italianFontType":0,
+ "germanText":"名探偵コナン メイン・テーマ",
+ "germanFontType":0,
+ "spanishText":"名探偵コナン メイン・テーマ",
+ "spanishFontType":0,
+ "chineseTText":"名探偵コナン メイン・テーマ",
+ "chineseTFontType":0,
+ "koreanText":"名探偵コナン メイン・テーマ",
+ "koreanFontType":0,
+ "portugueseText":"名探偵コナン メイン・テーマ",
+ "portugueseFontType":0,
+ "russianText":"名探偵コナン メイン・テーマ",
+ "russianFontType":0,
+ "turkishText":"名探偵コナン メイン・テーマ",
+ "turkishFontType":0,
+ "arabicText":"名探偵コナン メイン・テーマ",
+ "arabicFontType":0,
+ "dutchText":"名探偵コナン メイン・テーマ",
+ "dutchFontType":0,
+ "chineseSText":"名探偵コナン メイン・テーマ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_gojira",
+ "japaneseText":"ゴジラ ・ メインタイトル",
+ "englishUsText":"Godzilla - Main Title",
+ "englishUsFontType":3,
+ "frenchText":"Godzilla - Titre principal",
+ "frenchFontType":3,
+ "italianText":"Godzilla - Titolo principale",
+ "italianFontType":3,
+ "germanText":"Godzilla - Main Title",
+ "germanFontType":3,
+ "spanishText":"Godzilla - Titulo principal",
+ "spanishFontType":3,
+ "chineseTText":"哥吉拉 - 主題曲",
+ "chineseTFontType":1,
+ "koreanText":"고질라 - 주제가",
+ "koreanFontType":2,
+ "portugueseText":"Godzilla - Main Title",
+ "portugueseFontType":3,
+ "russianText":"Godzilla - Main Title",
+ "russianFontType":3,
+ "turkishText":"Godzilla - Main Title",
+ "turkishFontType":3,
+ "arabicText":"Godzilla - Main Title",
+ "arabicFontType":3,
+ "dutchText":"Godzilla - Main Title",
+ "dutchFontType":3,
+ "chineseSText":"哥斯拉 - 主题曲",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_gojira",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_gojira",
+ "japaneseText":"",
+ "englishUsText":"ゴジラ ・ メインタイトル",
+ "englishUsFontType":0,
+ "frenchText":"ゴジラ ・ メインタイトル",
+ "frenchFontType":0,
+ "italianText":"ゴジラ ・ メインタイトル",
+ "italianFontType":0,
+ "germanText":"ゴジラ ・ メインタイトル",
+ "germanFontType":0,
+ "spanishText":"ゴジラ ・ メインタイトル",
+ "spanishFontType":0,
+ "chineseTText":"ゴジラ ・ メインタイトル",
+ "chineseTFontType":0,
+ "koreanText":"ゴジラ ・ メインタイトル",
+ "koreanFontType":0,
+ "portugueseText":"ゴジラ ・ メインタイトル",
+ "portugueseFontType":0,
+ "russianText":"ゴジラ ・ メインタイトル",
+ "russianFontType":0,
+ "turkishText":"ゴジラ ・ メインタイトル",
+ "turkishFontType":0,
+ "arabicText":"ゴジラ ・ メインタイトル",
+ "arabicFontType":0,
+ "dutchText":"ゴジラ ・ メインタイトル",
+ "dutchFontType":0,
+ "chineseSText":"ゴジラ ・ メインタイトル",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_clstoc",
+ "japaneseText":"トッカータとフーガとロック",
+ "englishUsText":"Toccata and Fugue and Rock",
+ "englishUsFontType":3,
+ "frenchText":"Toccata et fugue et Rock",
+ "frenchFontType":3,
+ "italianText":"Toccata e fuga e Rock",
+ "italianFontType":3,
+ "germanText":"Toccata und Fuge und Rock",
+ "germanFontType":3,
+ "spanishText":"Tocata y fuga y Rock",
+ "spanishFontType":3,
+ "chineseTText":"觸技與賦格與ROCK",
+ "chineseTFontType":1,
+ "koreanText":"토카타와 푸가와 ROCK",
+ "koreanFontType":2,
+ "portugueseText":"Toccata and Fugue and Rock",
+ "portugueseFontType":3,
+ "russianText":"Toccata and Fugue and Rock",
+ "russianFontType":3,
+ "turkishText":"Toccata and Fugue and Rock",
+ "turkishFontType":3,
+ "arabicText":"Toccata and Fugue and Rock",
+ "arabicFontType":3,
+ "dutchText":"Toccata and Fugue and Rock",
+ "dutchFontType":3,
+ "chineseSText":"触技与赋格与ROCK",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_clstoc",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_clstoc",
+ "japaneseText":"",
+ "englishUsText":"トッカータとフーガとロック",
+ "englishUsFontType":0,
+ "frenchText":"トッカータとフーガとロック",
+ "frenchFontType":0,
+ "italianText":"トッカータとフーガとロック",
+ "italianFontType":0,
+ "germanText":"トッカータとフーガとロック",
+ "germanFontType":0,
+ "spanishText":"トッカータとフーガとロック",
+ "spanishFontType":0,
+ "chineseTText":"トッカータとフーガとロック",
+ "chineseTFontType":0,
+ "koreanText":"トッカータとフーガとロック",
+ "koreanFontType":0,
+ "portugueseText":"トッカータとフーガとロック",
+ "portugueseFontType":0,
+ "russianText":"トッカータとフーガとロック",
+ "russianFontType":0,
+ "turkishText":"トッカータとフーガとロック",
+ "turkishFontType":0,
+ "arabicText":"トッカータとフーガとロック",
+ "arabicFontType":0,
+ "dutchText":"トッカータとフーガとロック",
+ "dutchFontType":0,
+ "chineseSText":"トッカータとフーガとロック",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_clsff",
+ "japaneseText":"フニクリ・フニクラ",
+ "englishUsText":"Funikuri Funikura",
+ "englishUsFontType":3,
+ "frenchText":"Funikuri Funikura",
+ "frenchFontType":3,
+ "italianText":"Funikuri Funikura",
+ "italianFontType":3,
+ "germanText":"Funikuri Funikura",
+ "germanFontType":3,
+ "spanishText":"Funikuri Funikura",
+ "spanishFontType":3,
+ "chineseTText":"登山纜車",
+ "chineseTFontType":1,
+ "koreanText":"푸니쿨리・푸니쿨라",
+ "koreanFontType":2,
+ "portugueseText":"Funikuri Funikura",
+ "portugueseFontType":3,
+ "russianText":"Funikuri Funikura",
+ "russianFontType":3,
+ "turkishText":"Funikuri Funikura",
+ "turkishFontType":3,
+ "arabicText":"Funikuri Funikura",
+ "arabicFontType":3,
+ "dutchText":"Funikuri Funikura",
+ "dutchFontType":3,
+ "chineseSText":"登山缆车",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_clsff",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_clsff",
+ "japaneseText":"",
+ "englishUsText":"フニクリ・フニクラ",
+ "englishUsFontType":0,
+ "frenchText":"フニクリ・フニクラ",
+ "frenchFontType":0,
+ "italianText":"フニクリ・フニクラ",
+ "italianFontType":0,
+ "germanText":"フニクリ・フニクラ",
+ "germanFontType":0,
+ "spanishText":"フニクリ・フニクラ",
+ "spanishFontType":0,
+ "chineseTText":"フニクリ・フニクラ",
+ "chineseTFontType":0,
+ "koreanText":"フニクリ・フニクラ",
+ "koreanFontType":0,
+ "portugueseText":"フニクリ・フニクラ",
+ "portugueseFontType":0,
+ "russianText":"フニクリ・フニクラ",
+ "russianFontType":0,
+ "turkishText":"フニクリ・フニクラ",
+ "turkishFontType":0,
+ "arabicText":"フニクリ・フニクラ",
+ "arabicFontType":0,
+ "dutchText":"フニクリ・フニクラ",
+ "dutchFontType":0,
+ "chineseSText":"フニクリ・フニクラ",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_clsbu",
+ "japaneseText":"交響曲第五番「運命」",
+ "englishUsText":"Symphony No.5",
+ "englishUsFontType":3,
+ "frenchText":"Symphony No.5",
+ "frenchFontType":3,
+ "italianText":"Symphony No.5",
+ "italianFontType":3,
+ "germanText":"Symphony No.5",
+ "germanFontType":3,
+ "spanishText":"Symphony No.5",
+ "spanishFontType":3,
+ "chineseTText":"第五號交響曲「命運」",
+ "chineseTFontType":1,
+ "koreanText":"베토벤 교향곡 5번",
+ "koreanFontType":2,
+ "portugueseText":"Symphony No.5",
+ "portugueseFontType":3,
+ "russianText":"Symphony No.5",
+ "russianFontType":3,
+ "turkishText":"Symphony No.5",
+ "turkishFontType":3,
+ "arabicText":"Symphony No.5",
+ "arabicFontType":3,
+ "dutchText":"Symphony No.5",
+ "dutchFontType":3,
+ "chineseSText":"第五号交响曲「命运」",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_clsbu",
+ "japaneseText":"ベートーヴェン",
+ "englishUsText":"Ludwig van Beethoven",
+ "englishUsFontType":3,
+ "frenchText":"Ludwig van Beethoven",
+ "frenchFontType":3,
+ "italianText":"Ludwig van Beethoven",
+ "italianFontType":3,
+ "germanText":"Ludwig van Beethoven",
+ "germanFontType":3,
+ "spanishText":"Ludwig van Beethoven",
+ "spanishFontType":3,
+ "chineseTText":"貝多芬",
+ "chineseTFontType":1,
+ "koreanText":"루트비히 판 베토벤",
+ "koreanFontType":2,
+ "portugueseText":"Ludwig van Beethoven",
+ "portugueseFontType":3,
+ "russianText":"Ludwig van Beethoven",
+ "russianFontType":3,
+ "turkishText":"Ludwig van Beethoven",
+ "turkishFontType":3,
+ "arabicText":"Ludwig van Beethoven",
+ "arabicFontType":3,
+ "dutchText":"Ludwig van Beethoven",
+ "dutchFontType":3,
+ "chineseSText":"贝多芬",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_clsbu",
+ "japaneseText":"",
+ "englishUsText":"交響曲第五番「運命」",
+ "englishUsFontType":0,
+ "frenchText":"交響曲第五番「運命」",
+ "frenchFontType":0,
+ "italianText":"交響曲第五番「運命」",
+ "italianFontType":0,
+ "germanText":"交響曲第五番「運命」",
+ "germanFontType":0,
+ "spanishText":"交響曲第五番「運命」",
+ "spanishFontType":0,
+ "chineseTText":"交響曲第五番「運命」",
+ "chineseTFontType":0,
+ "koreanText":"交響曲第五番「運命」",
+ "koreanFontType":0,
+ "portugueseText":"交響曲第五番「運命」",
+ "portugueseFontType":0,
+ "russianText":"交響曲第五番「運命」",
+ "russianFontType":0,
+ "turkishText":"交響曲第五番「運命」",
+ "turkishFontType":0,
+ "arabicText":"交響曲第五番「運命」",
+ "arabicFontType":0,
+ "dutchText":"交響曲第五番「運命」",
+ "dutchFontType":0,
+ "chineseSText":"交響曲第五番「運命」",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_mgwrt4",
+ "japaneseText":"春遊",
+ "englishUsText":"SHUNYUU",
+ "englishUsFontType":3,
+ "frenchText":"SHUNYUU",
+ "frenchFontType":3,
+ "italianText":"SHUNYUU",
+ "italianFontType":3,
+ "germanText":"SHUNYUU",
+ "germanFontType":3,
+ "spanishText":"SHUNYUU",
+ "spanishFontType":3,
+ "chineseTText":"春遊",
+ "chineseTFontType":1,
+ "koreanText":"SHUNYUU",
+ "koreanFontType":2,
+ "portugueseText":"SHUNYUU",
+ "portugueseFontType":3,
+ "russianText":"SHUNYUU",
+ "russianFontType":3,
+ "turkishText":"SHUNYUU",
+ "turkishFontType":3,
+ "arabicText":"SHUNYUU",
+ "arabicFontType":3,
+ "dutchText":"SHUNYUU",
+ "dutchFontType":3,
+ "chineseSText":"春游",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_mgwrt4",
+ "japaneseText":"~happy excursion~",
+ "englishUsText":"~happy excursion~",
+ "englishUsFontType":3,
+ "frenchText":"~happy excursion~",
+ "frenchFontType":3,
+ "italianText":"~happy excursion~",
+ "italianFontType":3,
+ "germanText":"~happy excursion~",
+ "germanFontType":3,
+ "spanishText":"~happy excursion~",
+ "spanishFontType":3,
+ "chineseTText":"~happy excursion~",
+ "chineseTFontType":1,
+ "koreanText":"~happy excursion~",
+ "koreanFontType":2,
+ "portugueseText":"~happy excursion~",
+ "portugueseFontType":3,
+ "russianText":"~happy excursion~",
+ "russianFontType":3,
+ "turkishText":"~happy excursion~",
+ "turkishFontType":3,
+ "arabicText":"~happy excursion~",
+ "arabicFontType":3,
+ "dutchText":"~happy excursion~",
+ "dutchFontType":3,
+ "chineseSText":"~happy excursion~",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_mgwrt4",
+ "japaneseText":"",
+ "englishUsText":"春遊",
+ "englishUsFontType":0,
+ "frenchText":"春遊",
+ "frenchFontType":0,
+ "italianText":"春遊",
+ "italianFontType":0,
+ "germanText":"春遊",
+ "germanFontType":0,
+ "spanishText":"春遊",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"春遊",
+ "koreanFontType":0,
+ "portugueseText":"春遊",
+ "portugueseFontType":0,
+ "russianText":"春遊",
+ "russianFontType":0,
+ "turkishText":"春遊",
+ "turkishFontType":0,
+ "arabicText":"春遊",
+ "arabicFontType":0,
+ "dutchText":"春遊",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_aya10",
+ "japaneseText":"サンバ アレグリーア",
+ "englishUsText":"Samba Alegria",
+ "englishUsFontType":3,
+ "frenchText":"Samba Alegria",
+ "frenchFontType":3,
+ "italianText":"Samba Alegria",
+ "italianFontType":3,
+ "germanText":"Samba Alegria",
+ "germanFontType":3,
+ "spanishText":"Samba Alegria",
+ "spanishFontType":3,
+ "chineseTText":"Samba Alegria",
+ "chineseTFontType":1,
+ "koreanText":"Samba Alegria",
+ "koreanFontType":2,
+ "portugueseText":"Samba Alegria",
+ "portugueseFontType":3,
+ "russianText":"Samba Alegria",
+ "russianFontType":3,
+ "turkishText":"Samba Alegria",
+ "turkishFontType":3,
+ "arabicText":"Samba Alegria",
+ "arabicFontType":3,
+ "dutchText":"Samba Alegria",
+ "dutchFontType":3,
+ "chineseSText":"Samba Alegria",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_aya10",
+ "japaneseText":"",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":3,
+ "russianText":"",
+ "russianFontType":3,
+ "turkishText":"",
+ "turkishFontType":3,
+ "arabicText":"",
+ "arabicFontType":3,
+ "dutchText":"",
+ "dutchFontType":3,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_aya10",
+ "japaneseText":"",
+ "englishUsText":"サンバ アレグリーア",
+ "englishUsFontType":0,
+ "frenchText":"サンバ アレグリーア",
+ "frenchFontType":0,
+ "italianText":"サンバ アレグリーア",
+ "italianFontType":0,
+ "germanText":"サンバ アレグリーア",
+ "germanFontType":0,
+ "spanishText":"サンバ アレグリーア",
+ "spanishFontType":0,
+ "chineseTText":"サンバ アレグリーア",
+ "chineseTFontType":0,
+ "koreanText":"サンバ アレグリーア",
+ "koreanFontType":0,
+ "portugueseText":"サンバ アレグリーア",
+ "portugueseFontType":0,
+ "russianText":"サンバ アレグリーア",
+ "russianFontType":0,
+ "turkishText":"サンバ アレグリーア",
+ "turkishFontType":0,
+ "arabicText":"サンバ アレグリーア",
+ "arabicFontType":0,
+ "dutchText":"サンバ アレグリーア",
+ "dutchFontType":0,
+ "chineseSText":"サンバ アレグリーア",
+ "chineseSFontType":0
+ },
+ {
+ "key":"song_krdoto",
+ "japaneseText":"狂瀾怒濤",
+ "englishUsText":"Maelstrom",
+ "englishUsFontType":3,
+ "frenchText":"Maelstrom",
+ "frenchFontType":3,
+ "italianText":"Maelstrom",
+ "italianFontType":3,
+ "germanText":"Maelstrom",
+ "germanFontType":3,
+ "spanishText":"Maelstrom",
+ "spanishFontType":3,
+ "chineseTText":"狂瀾怒濤",
+ "chineseTFontType":1,
+ "koreanText":"Maelstrom",
+ "koreanFontType":2,
+ "portugueseText":"Maelstrom",
+ "portugueseFontType":3,
+ "russianText":"Maelstrom",
+ "russianFontType":3,
+ "turkishText":"Maelstrom",
+ "turkishFontType":3,
+ "arabicText":"Maelstrom",
+ "arabicFontType":3,
+ "dutchText":"Maelstrom",
+ "dutchFontType":3,
+ "chineseSText":"狂澜怒涛",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_sub_krdoto",
+ "japaneseText":"xi",
+ "englishUsText":"xi",
+ "englishUsFontType":3,
+ "frenchText":"xi",
+ "frenchFontType":3,
+ "italianText":"xi",
+ "italianFontType":3,
+ "germanText":"xi",
+ "germanFontType":3,
+ "spanishText":"xi",
+ "spanishFontType":3,
+ "chineseTText":"xi",
+ "chineseTFontType":1,
+ "koreanText":"xi",
+ "koreanFontType":2,
+ "portugueseText":"xi",
+ "portugueseFontType":3,
+ "russianText":"xi",
+ "russianFontType":3,
+ "turkishText":"xi",
+ "turkishFontType":3,
+ "arabicText":"xi",
+ "arabicFontType":3,
+ "dutchText":"xi",
+ "dutchFontType":3,
+ "chineseSText":"xi",
+ "chineseSFontType":4
+ },
+ {
+ "key":"song_detail_krdoto",
+ "japaneseText":"",
+ "englishUsText":"狂瀾怒濤",
+ "englishUsFontType":0,
+ "frenchText":"狂瀾怒濤",
+ "frenchFontType":0,
+ "italianText":"狂瀾怒濤",
+ "italianFontType":0,
+ "germanText":"狂瀾怒濤",
+ "germanFontType":0,
+ "spanishText":"狂瀾怒濤",
+ "spanishFontType":0,
+ "chineseTText":"",
+ "chineseTFontType":0,
+ "koreanText":"狂瀾怒濤",
+ "koreanFontType":0,
+ "portugueseText":"狂瀾怒濤",
+ "portugueseFontType":0,
+ "russianText":"狂瀾怒濤",
+ "russianFontType":0,
+ "turkishText":"狂瀾怒濤",
+ "turkishFontType":0,
+ "arabicText":"狂瀾怒濤",
+ "arabicFontType":0,
+ "dutchText":"狂瀾怒濤",
+ "dutchFontType":0,
+ "chineseSText":"",
+ "chineseSFontType":0
+ },
+ {
+ "key":"osirase_v1_18_0",
+ "japaneseText":"太鼓の達人 Pop Tap Beat をプレイ頂き、ありがとうございます!\n\nソフトウェアのアップデートを行いました(Ver.1.18.0)\n\n★新曲追加★\n日本だけでなく海外でも長く愛されている特撮映画の大傑作の\nテーマ曲「ゴジラ ・ メインタイトル」が太鼓の達人シリーズ初登場!\n\n巨大な怪獣、ゴジラが登場するシーンを思い浮かべて\n太鼓の達人を楽しんでください。\n\n今回のアップデートでは全8曲をドドンと追加しました!",
+ "englishUsText":"Thank you for playing Taiko no Tatsujin Pop Tap Beat!\n\nThe game has been updated (Ver.1.18.0).\n\n★New Songs Added★\nThe theme song for the globally long-beloved Tokusatsu film\nmasterpiece \"Godzilla - Main Title\" makes its Taiko no\nTatsujin debut!\n\nRecall the iconic scene of the giant kaiju Godzilla making\nhis appearance while you enjoy Taiko no Tatsujin.\nIn total, eight new songs have been added in this update!",
+ "englishUsFontType":3,
+ "frenchText":"Merci de jouer à Taiko no Tatsujin Pop Tap Beat !\n\nMise à jour du logiciel (Ver.1.18.0)\n\n★ Ajout de nouvelles chansons ★\nMusique principale de la célèbre série de films adorée\nnon seulement au Japon, mais aussi dans le monde entier,\n« Godzilla - Titre principal » débarque pour la première\nfois dans Taiko no Tatsujin !\n\nAlors, tapez en rythme sur le tambour de Taiko no Tatsujin\ntout en imaginant la scène de l'arrivée de Godzilla\ndans votre ville !\n\nCette mise à jour comporte 8 nouvelles chansons au total !",
+ "frenchFontType":3,
+ "italianText":"Grazie per aver giocato a Taiko no Tatsujin Pop Tap Beat!\n\nAbbiamo aggiornato il gioco. (Ver. 1.18.0)\n\nNuovi brani\n\"Godzilla - Titolo principale\", l'iconico brano tratto da uno dei film\npiù famosi non solo in Giappone ma in tutto il mondo,\narriva per la prima volta nella serie Taiko no Tatsujin!\n\nRivivete a suon di tamburo l'entrata in scena di Godzilla,\nil re dei mostri!\n\nIn questo aggiornamento, sono stati aggiunti otto brani!",
+ "italianFontType":3,
+ "germanText":"Vielen Dank fürs Spielen von Taiko no Tatsujin Pop Tap Beat!\n\nDie Software wurde aktualisiert (Ver.1.18.0).\n\n★Neue Songs★\n„Godzilla - Main Title“, die Titelmusik dieses nicht nur\nin Japan, sondern auf der ganzen Welt geliebten\nSFX-Meisterwerks ist nun in Taiko no Tatsujin verfügbar.\n\nHau ordentlich auf die Taiko-Trommel,\nwährend vor deinem geistigen Auge\nGodzilla die Filmbühne betritt!\n\nMit diesem Update wurden insgesamt 8 neue\ntrommeltastische Songs hinzugefügt!",
+ "germanFontType":3,
+ "spanishText":"¡Gracias por jugar a Taiko no Tatsujin Pop Tap Beat!\n\nNovedades de la última actualización (ver. 1.18.0)\n\n¡Nuevas canciones!\n¡Llega, por primera vez, a la serie Taiko no Tatsujin,\nGodzilla - Título principal, el tema principal de una\nde las películas de efectos especiales más famosas de la\nhistoria, no solo en Japón, sino en el mundo entero!\n\n¡Déjate llevar por Taiko no Tatsujin y adéntrate en\nel mismo escenario en el que apareció Godzilla!\n\n¡En total, se añadieron-do-don 8 canciones!",
+ "spanishFontType":3,
+ "chineseTText":"感謝您遊玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本軟體已更新(Ver.1.18.0)。\n\n★追加新曲★\n長年在日本與國外深受喜愛的特攝電影巨作,\n其主題曲《哥吉拉 - 主題曲》將首次在太鼓之達人系列登場!\n\n想像巨大怪獸哥吉拉登場的畫面,\n並享受太鼓之達人的樂趣吧。\n\n本次更新已咚咚地追加共8首樂曲!",
+ "chineseTFontType":1,
+ "koreanText":"태고의 달인 Pop Tap Beat를 플레이해주셔서 감사합니다!\n\n소프트웨어를 업데이트했습니다.(Ver.1.18.0)\n\n★신곡 추가★\n일본뿐만 아니라 해외에서도 오랫동안 사랑받고 있는 대걸작 특촬 영화의\n테마곡 '고질라 - 주제가'가 태고의 달인 시리즈 최초로 등장!\n\n거대한 괴수 고질라가 등장하는 장면을 상상하며\n태고의 달인을 즐겨 주세요.\n\n이번 업데이트에서는 총 8곡을 쿠쿵, 추가했습니다!",
+ "koreanFontType":2,
+ "portugueseText":"Obrigado por jogar Taiko no Tatsujin Pop Tap Beat!\n\nO software foi atualizado (Ver.1.18.0).\n\n★Adição de novas músicas★\nAdorada não só no Japão, mas também internacionalmente,\n\"Godzilla - Main Title\", a música-tema da grande obra-prima\ndos filmes \"tokusatsu\", aparece pela primeira vez na série Taiko no Tatsujin!\n\nDivirta-se com Taiko no Tatsujin enquanto relembra a cena\nem que Godzilla, o monstro gigante, aparece.\nDesta vez, adicionamos um total de 8 músicas!",
+ "portugueseFontType":2,
+ "russianText":"Спасибо, что играете в Taiko no Tatsujin Pop Tap Beat!\n\nПрограммное обеспечение обновлено (версия 1.18.0)\n\n★Добавлены новые песни★\nВпервые в Taiko no Tatsujin!\nМузыкальная тема из любимого во всем мире фильма в жанре токусацу: Godzilla - Main Title!\n\nНаслаждайтесь игрой, вспоминая\nлегендарные сцены появления огромного монстра.\n\nВ этом обновлении было добавлено 8 новых песен!",
+ "russianFontType":2,
+ "turkishText":"Taiko no Tatsujin Pop Tap Beat'i oynadığın için teşekkürler!\n\nOyun güncellendi (Ver.1.18.0).\n\n★Yeni Şarkılar Eklendi★\nDünyaca uzun zamandır çok sevilen Tokusatsu filminin tema şarkısı\n\"Godzilla - Main Title\" ilk kez Taiko no Tatsujin'de!\n\nDev kaiju Godzilla'nın sahneye çıktığı o ikonik anı Taiko no\nTatsujin'de tekrar yaşayacaksın.\n\nBu güncellemede toplam sekiz yeni şarkı eklendi!",
+ "turkishFontType":2,
+ "arabicText":"نشكرك على لعب Taiko no Tatsujin Pop Tap Beat! \n\nلقد تم تحديث اللعبة (نسخة 1.18.0).\n\n★تمت إضافة أغنيات جديدة★\nالأغنية الرئيسية لتحفة أفلام \nالتوكوساتسو السينمائية المحبوبة\nعالميًا \"Godzilla - Main Title\" تظهر لأول مرة في لعبة Taiko no Tatsujin!\n\nاسترجع ذكريات المشهد الأيقوني للعملاق kaiju Godzilla وهو\nيظهر بينما تستمتع بـ Taiko no Tatsujin.\nبشكل إجمالي، تمت إضافة ثمان أغنيات جديدة في هذا التحديث!",
+ "arabicFontType":2,
+ "dutchText":"Bedankt dat je Taiko no Tatsujin Pop Tap Beat speelt!\n\nDe game is geüpdatet (Ver.1.18.0).\n\n★Nieuwe liedjes toegevoegd★\nDe titelsong 'Godzilla - Main Title' van het wereldwijd geliefde\nTokusatsu-filmkunstwerk verschijnt voor het eerst bij Taiko no\nTatsujin!\n\nGeniet in Taiko no Tatsujin van de iconische scène\nmet de enorme kaiju Godzilla.\nMet deze update zijn er maar liefst 8 liedjes aan de game toegevoegd!",
+ "dutchFontType":2,
+ "chineseSText":"感谢您游玩《Taiko no Tatsujin POP TAP BEAT》!\n\n本软件已更新(Ver.1.18.0)。\n\n★追加新曲★\n长年在日本与国外深受喜爱的特摄电影巨作,\n其主题曲《哥斯拉 - 主题曲》将首次在太鼓之达人系列登场!\n\n想象巨大怪兽哥斯拉登场的画面,\n并享受太鼓之达人的乐趣吧。\n\n本次更新已咚咚地追加共8首乐曲!",
+ "chineseSFontType":4
+ },
+ {
+ "key":"osirase_v1_18_0_title",
+ "japaneseText":"ソフトウェアのアップデートを行いました(Ver.1.18.0)",
+ "englishUsText":"The game has been updated (Ver.1.18.0)",
+ "englishUsFontType":3,
+ "frenchText":"Mise à jour du logiciel (Ver.1.18.0)",
+ "frenchFontType":3,
+ "italianText":"Abbiamo aggiornato il gioco. (Ver.1.18.0)",
+ "italianFontType":3,
+ "germanText":"Die Software wurde aktualisiert (Ver.1.18.0)",
+ "germanFontType":3,
+ "spanishText":"Novedades de la última actualización (Ver.1.18.0)",
+ "spanishFontType":3,
+ "chineseTText":"本軟體已更新(Ver.1.18.0)",
+ "chineseTFontType":1,
+ "koreanText":"소프트웨어를 업데이트했습니다.(Ver.1.18.0)",
+ "koreanFontType":2,
+ "portugueseText":"O software foi atualizado (Ver.1.18.0)",
+ "portugueseFontType":2,
+ "russianText":"Программное обеспечение обновлено (версия 1.18.0)",
+ "russianFontType":2,
+ "turkishText":"Oyun güncellendi (Ver.1.18.0)",
+ "turkishFontType":2,
+ "arabicText":"لقد تم تحديث اللعبة (نسخة 1.18.0)",
+ "arabicFontType":2,
+ "dutchText":"De software is geüpdatet. (Ver.1.18.0)",
+ "dutchFontType":2,
+ "chineseSText":"本软件已更新(Ver.1.18.0)",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4807",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4808",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4809",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4810",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4811",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4812",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4813",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4814",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4815",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4816",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4817",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4818",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4819",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4820",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4821",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4822",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4823",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4824",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4825",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4826",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4827",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4828",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4829",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4830",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4831",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4832",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4833",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4834",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4835",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4836",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4837",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4838",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4839",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4840",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4841",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4842",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4843",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4844",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4845",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4846",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4847",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4848",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4849",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4850",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4851",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4852",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4853",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4854",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4855",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4856",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4857",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4858",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4859",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4860",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4861",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4862",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4863",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4864",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4865",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4866",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4867",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4868",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4869",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4870",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4871",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4872",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4873",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4874",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4875",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4876",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4877",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4878",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4879",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4880",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4881",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4882",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4883",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4884",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4885",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4886",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4887",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4888",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4889",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4890",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4891",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4892",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4893",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4894",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4895",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4896",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4897",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4898",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4899",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4900",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4901",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4902",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4903",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4904",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4905",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4906",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4907",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4908",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4909",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4910",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4911",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4912",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4913",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4914",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4915",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4916",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4917",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4918",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4919",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4920",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4921",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4922",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4923",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4924",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4925",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4926",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4927",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4928",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4929",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4930",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4931",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4932",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4933",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4934",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4935",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4936",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4937",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4938",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4939",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4940",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4941",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4942",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4943",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4944",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4945",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4946",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4947",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4948",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4949",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4950",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4951",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4952",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4953",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4954",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4955",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4956",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4957",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4958",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4959",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4960",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4961",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4962",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4963",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4964",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4965",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4966",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4967",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4968",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4969",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4970",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4971",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4972",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4973",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ },
+ {
+ "key":"__test4974",
+ "japaneseText":"abcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz\nabcdefghijklmnopqrstuvwxyz",
+ "englishUsText":"",
+ "englishUsFontType":3,
+ "frenchText":"",
+ "frenchFontType":3,
+ "italianText":"",
+ "italianFontType":3,
+ "germanText":"",
+ "germanFontType":3,
+ "spanishText":"",
+ "spanishFontType":3,
+ "chineseTText":"",
+ "chineseTFontType":1,
+ "koreanText":"",
+ "koreanFontType":2,
+ "portugueseText":"",
+ "portugueseFontType":2,
+ "russianText":"",
+ "russianFontType":2,
+ "turkishText":"",
+ "turkishFontType":2,
+ "arabicText":"",
+ "arabicFontType":2,
+ "dutchText":"",
+ "dutchFontType":2,
+ "chineseSText":"",
+ "chineseSFontType":4
+ }
+]}
diff --git a/TaikoSongConversionTool/data/datatable/musicinfo.json b/TaikoSongConversionTool/data/datatable/musicinfo.json
new file mode 100644
index 0000000..3be4af0
--- /dev/null
+++ b/TaikoSongConversionTool/data/datatable/musicinfo.json
@@ -0,0 +1,36 @@
+{
+ "items": [
+ {
+ "uniqueId": 1,
+ "id": "custom",
+ "songFileName": "sound/song_custom",
+ "order": 1000,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 8,
+ "starNormal": 8,
+ "starHard": 8,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 1253,
+ "shinutiNormal": 1253,
+ "shinutiHard": 1253,
+ "shinutiMania": 1253,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 1253,
+ "shinutiNormalDuet": 1253,
+ "shinutiHardDuet": 1253,
+ "shinutiManiaDuet": 1253,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000000,
+ "scoreHard": 1000000,
+ "scoreMania": 1000000,
+ "scoreUra": 0
+ }
+ ]
+}
\ No newline at end of file
diff --git a/TaikoSongConversionTool/data/datatable/previewpos.json b/TaikoSongConversionTool/data/datatable/previewpos.json
new file mode 100644
index 0000000..4e98505
--- /dev/null
+++ b/TaikoSongConversionTool/data/datatable/previewpos.json
@@ -0,0 +1,6 @@
+[
+ {
+ "id": "custom",
+ "previewPos": 68610
+ }
+]
\ No newline at end of file
diff --git a/TaikoSongConversionTool/data/datatable/wordlist.json b/TaikoSongConversionTool/data/datatable/wordlist.json
new file mode 100644
index 0000000..d627b99
--- /dev/null
+++ b/TaikoSongConversionTool/data/datatable/wordlist.json
@@ -0,0 +1,36 @@
+{"items":[
+ {
+ "key": "song_custom",
+ "japaneseText": "That That [CUSTOM SONG]",
+ "japaneseFontType": 0,
+ "englishUsText": "That That [CUSTOM SONG]",
+ "englishUsFontType": 1,
+ "chineseTText": "That That [CUSTOM SONG]",
+ "chineseTFontType": 0,
+ "koreanText": "That That [CUSTOM SONG]",
+ "koreanFontType": 0
+ },
+ {
+ "key": "song_sub_custom",
+ "japaneseText": "PSY, prod. & feat. SUGA of BTS",
+ "japaneseFontType": 0,
+ "englishUsText": "PSY, prod. & feat. SUGA of BTS",
+ "englishUsFontType": 1,
+ "chineseTText": "PSY, prod. & feat. SUGA of BTS",
+ "chineseTFontType": 0,
+ "koreanText": "PSY, prod. & feat. SUGA of BTS",
+ "koreanFontType": 0
+ },
+ {
+ "key": "song_detail_custom",
+ "japaneseText": "",
+ "japaneseFontType": 0,
+ "englishUsText": "",
+ "englishUsFontType": 0,
+ "chineseTText": "",
+ "chineseTFontType": 1,
+ "koreanText": "",
+ "koreanFontType": 2
+ }
+ ]}
+
\ No newline at end of file
diff --git a/TaikoSongConversionTool/data/fumen/custom/custom_e.bin b/TaikoSongConversionTool/data/fumen/custom/custom_e.bin
new file mode 100644
index 0000000..109850f
Binary files /dev/null and b/TaikoSongConversionTool/data/fumen/custom/custom_e.bin differ
diff --git a/TaikoSongConversionTool/data/fumen/custom/custom_h.bin b/TaikoSongConversionTool/data/fumen/custom/custom_h.bin
new file mode 100644
index 0000000..109850f
Binary files /dev/null and b/TaikoSongConversionTool/data/fumen/custom/custom_h.bin differ
diff --git a/TaikoSongConversionTool/data/fumen/custom/custom_m.bin b/TaikoSongConversionTool/data/fumen/custom/custom_m.bin
new file mode 100644
index 0000000..109850f
Binary files /dev/null and b/TaikoSongConversionTool/data/fumen/custom/custom_m.bin differ
diff --git a/TaikoSongConversionTool/data/fumen/custom/custom_n.bin b/TaikoSongConversionTool/data/fumen/custom/custom_n.bin
new file mode 100644
index 0000000..109850f
Binary files /dev/null and b/TaikoSongConversionTool/data/fumen/custom/custom_n.bin differ
diff --git a/TaikoSongConversionTool/data/sound/song_custom.mp3 b/TaikoSongConversionTool/data/sound/song_custom.mp3
new file mode 100644
index 0000000..9b436a6
Binary files /dev/null and b/TaikoSongConversionTool/data/sound/song_custom.mp3 differ
diff --git a/TaikoSongConversionTool/gui.py b/TaikoSongConversionTool/gui.py
new file mode 100644
index 0000000..8881f6c
--- /dev/null
+++ b/TaikoSongConversionTool/gui.py
@@ -0,0 +1,960 @@
+import tkinter as tk
+from tkinter import ttk, messagebox
+import json
+import os
+import subprocess
+import shutil
+import gzip
+import concurrent.futures
+import functools
+from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes
+from cryptography.hazmat.backends import default_backend
+from cryptography.hazmat.primitives import padding
+
+data_dir = "data/"
+musicinfo_path = os.path.join(data_dir, "datatable", "musicinfo.json")
+wordlist_path = os.path.join(data_dir, "datatable", "wordlist.json")
+previewpos_path = os.path.join(data_dir, "datatable", "previewpos.json")
+
+item_selection_state = {}
+
+with open(musicinfo_path, "r", encoding="utf-8") as musicinfo_file:
+ music_info = json.load(musicinfo_file)
+
+with open(wordlist_path, "r", encoding="utf-8") as wordlist_file:
+ word_list = json.load(wordlist_file)
+
+genre_map = {
+ 0: ("POP", "light blue"),
+ 1: ("Anime", "orange"),
+ 2: ("Vocaloid", "turquoise"),
+ 3: ("Variety", "green"),
+ 4: ("Unused", "gray"),
+ 5: ("Classic", "dark red"),
+ 6: ("Game Music", "purple"),
+ 7: ("Namco Original", "dark orange"),
+}
+
+song_titles = {item["key"]: item["englishUsText"] for item in word_list["items"]}
+song_subtitles = {item["key"]: item["englishUsText"] for item in word_list["items"]}
+
+window = tk.Tk()
+window.title("Taiko no Tatsujin Song Conversion GUI Tool")
+
+# Set the initial size of the window
+window.geometry("1000x600") # Width x Height
+
+# Create Treeview and Scrollbar
+tree = ttk.Treeview(window, columns=("Select", "Unique ID", "ID", "Song Name", "Song Subtitle", "Genre", "Difficulty"), show="headings")
+tree.heading("Unique ID", text="")
+tree.heading("ID", text="ID")
+tree.heading("Song Name", text="Song Name")
+tree.heading("Song Subtitle", text="Song Subtitle")
+tree.heading("Genre", text="Genre")
+tree.heading("Difficulty", text="Difficulty")
+tree.heading("Select", text="Select")
+
+tree.column("Select", width=50, anchor=tk.CENTER)
+tree.column("Unique ID", width=0, anchor=tk.W)
+tree.column("ID", width=60, anchor=tk.W)
+tree.column("Song Name", anchor=tk.W)
+tree.column("Song Subtitle", anchor=tk.W)
+tree.column("Genre", width=100, anchor=tk.W)
+tree.column("Difficulty", width=120, anchor=tk.W)
+
+vsb = ttk.Scrollbar(window, orient="vertical", command=tree.yview)
+tree.configure(yscrollcommand=vsb.set)
+
+# Pack Treeview and Scrollbar
+tree.pack(side="left", padx=10, pady=10, fill="both", expand=True)
+vsb.pack(side="left", fill="y", padx=(0, 10), pady=10)
+
+# Counter for selected items
+selection_count = tk.IntVar()
+selection_count.set(0) # Initial selection count
+
+# Function to load configuration from file
+def load_config():
+ config_file = "config.json"
+ default_config = {
+ "max_concurrent": 5, # Default value if not specified in config file
+ }
+
+ try:
+ with open(config_file, "r") as f:
+ config = json.load(f)
+ # Override default values with values from config file
+ default_config.update(config)
+ except FileNotFoundError:
+ print(f"Config file '{config_file}' not found. Using default configuration.")
+
+ return default_config
+
+# Load configuration
+config = load_config()
+
+def on_search_keyrelease(event):
+ print("Key released:", event.keysym)
+ #filter_treeview()
+
+# Create Search Entry
+search_var = tk.StringVar()
+search_entry = ttk.Entry(window, textvariable=search_var)
+
+def toggle_checkbox(event):
+ # Get the item_id based on the event coordinates
+ item_id = tree.identify_row(event.y)
+
+ # Ensure item_id is valid and corresponds to a valid item in the tree
+ if item_id and tree.exists(item_id):
+ current_state = item_selection_state.get(item_id, "☐")
+
+ if current_state == "☐":
+ new_state = "☑"
+ elif current_state == "☑":
+ new_state = "☐"
+
+ # Update the selection state for the item
+ item_selection_state[item_id] = new_state
+
+ # Update the values in the treeview to reflect the new state
+ tree.item(item_id, values=(new_state,) + tree.item(item_id, "values")[1:])
+
+ # Update the selection count based on the state change
+ if new_state == "☑":
+ selection_count.set(selection_count.get() + 1) # Increment selection count
+ elif new_state == "☐":
+ selection_count.set(selection_count.get() - 1) # Decrement selection count
+
+def filter_treeview():
+ search_text = search_var.get().strip().lower()
+ populate_tree(search_text) # Populate Treeview with filtered data
+
+def populate_tree():
+ global selected_items # Use global variable to persist selection state
+
+ # Store currently selected items
+ current_selection = tree.selection()
+
+ # Clear existing items in the Treeview
+ tree.delete(*tree.get_children())
+
+ for song in sorted(music_info["items"], key=lambda x: x["id"]): # Sort by ID
+ unique_id = ""
+ song_id = f"{song['id']}"
+ genre_no = song["genreNo"]
+ genre_name, genre_color = genre_map.get(genre_no, ("Unknown Genre", "white"))
+ english_title = song_titles.get(f"song_{song_id}", "-")
+ english_subtitle = song_subtitles.get(f"song_sub_{song_id}", "-")
+
+ star_easy = song.get("starEasy", "N/A")
+ star_normal = song.get("starNormal", "N/A")
+ star_hard = song.get("starHard", "N/A")
+ star_mania = song.get("starMania", "N/A")
+ star_ura = song.get("starUra", 0)
+
+ difficulty_info_parts = [
+ f"{star_easy}",
+ f"{star_normal}",
+ f"{star_hard}",
+ f"{star_mania}",
+ ]
+
+ if star_ura > 0:
+ difficulty_info_parts.append(f"{star_ura}")
+
+ difficulty_info = " | ".join(difficulty_info_parts)
+
+ # Check if the search text matches the song name
+ if search_var.get().strip().lower() in english_title.lower():
+ item_id = tree.insert("", "end", values=("☐", unique_id, song_id, english_title, english_subtitle, genre_name, difficulty_info))
+ tree.tag_configure(genre_name, background=genre_color)
+
+ # Restore original selection after filtering
+ for item in current_selection:
+ if tree.exists(item): # Check if item exists in Treeview
+ tree.selection_add(item)
+ else:
+ print("Item not found:", item) # Debug print
+
+search_entry.bind("", lambda event: populate_tree())
+
+def sort_tree(sort_option):
+ # Clear existing items in the Treeview
+ for item in tree.get_children():
+ tree.delete(item)
+
+ if sort_option == "ID":
+ populate_tree() # Sort by ID
+ selection_count.set(0) # Reset Counter to 0
+ elif sort_option == "Song Name":
+ selection_count.set(0) # Reset Counter to 0
+ for song in sorted(music_info["items"], key=lambda x: song_titles.get(f"song_{x['id']}", "-")):
+ populate_song_entry(song)
+ elif sort_option == "Genre":
+ selection_count.set(0) # Reset Counter to 0
+ for genre_no in sorted(genre_map.keys()):
+ for song in sorted(music_info["items"], key=lambda x: x["id"]):
+ if song["genreNo"] == genre_no:
+ populate_song_entry(song)
+
+def populate_song_entry(song):
+ unique_id = ""
+ song_id = f"{song['id']}"
+ genre_no = song["genreNo"]
+ genre_name, genre_color = genre_map.get(genre_no, ("Unknown Genre", "white"))
+ english_title = song_titles.get(f"song_{song_id}", "-")
+ english_subtitle = song_subtitles.get(f"song_sub_{song_id}", "-")
+
+ star_easy = song.get("starEasy", "N/A")
+ star_normal = song.get("starNormal", "N/A")
+ star_hard = song.get("starHard", "N/A")
+ star_mania = song.get("starMania", "N/A")
+ star_ura = song.get("starUra", 0)
+
+ difficulty_info_parts = [
+ f"{star_easy}",
+ f"{star_normal}",
+ f"{star_hard}",
+ f"{star_mania}",
+ ]
+
+ if star_ura > 0:
+ difficulty_info_parts.append(f"{star_ura}")
+
+ difficulty_info = " | ".join(difficulty_info_parts)
+
+ item_id = tree.insert("", "end", values=("☐", unique_id, song_id, english_title, english_subtitle, genre_name, difficulty_info))
+ tree.tag_configure(genre_name, background=genre_color)
+
+# Populate the Treeview initially
+populate_tree()
+
+def update_selection_count(event=None):
+ selected_items = tree.selection()
+ count_selected = selection_count.get() # Retrieve the value of selection_count
+
+ platform = game_platform_var.get()
+ if platform == "PS4":
+ max_entries = 400
+ elif platform == "NS1":
+ max_entries = 600
+ elif platform == "PTB":
+ max_entries = 200
+ else:
+ max_entries = 0
+
+ if len(selected_items) > max_entries:
+ messagebox.showerror("Selection Limit Exceeded", f"Maximum {max_entries} entries can be selected for {platform}.")
+ else:
+ # Update the selection count label text
+ selection_count_label.config(text=f"{count_selected}/{max_entries}")
+
+# Bind the treeview selection event to update_selection_count function
+tree.bind("<>", update_selection_count)
+
+# Bind Treeview click event to toggle item selection
+#tree.bind("", lambda event: toggle_selection(tree.identify_row(event.y)))
+tree.bind("", toggle_checkbox)
+#tree.bind("", on_treeview_click)
+
+def preview_audio(song_id):
+ preview_pos = get_preview_pos(song_id)
+ if preview_pos is not None:
+ song_filename = f"data/sound/song_{song_id}.mp3"
+ subprocess.run(["ffplay", "-autoexit", "-ss", f"{preview_pos / 1000}", song_filename])
+
+def get_preview_pos(song_id):
+ with open(previewpos_path, "r", encoding="utf-8") as previewpos_file:
+ previewpos_data = json.load(previewpos_file)
+ for item in previewpos_data:
+ if item["id"] == song_id:
+ return item["previewPos"]
+ return None
+
+def preview_selected():
+ selected_item = tree.selection()
+ if selected_item:
+ song_id = tree.item(selected_item[0])["values"][2]
+ preview_audio(song_id)
+
+def merge_ptb():
+ command = [
+ "python",
+ "script/ptb_wordlist.py",
+ ]
+ subprocess.run(command)
+
+def merge_ps4_int():
+ command = [
+ "python",
+ "script/ps4_wordlist.py",
+ ]
+ subprocess.run(command)
+
+def merge_ps4_jp():
+ command = [
+ "python",
+ "script/ps4_wordlist_jp.py",
+ ]
+ subprocess.run(command)
+
+def merge_ns1_int():
+ command = [
+ "python",
+ "script/ns1_wordlist.py",
+ ]
+ subprocess.run(command)
+
+def merge_ns1_jp():
+ command = [
+ "python",
+ "script/ns1_wordlist_jp.py",
+ ]
+ subprocess.run(command)
+
+def encrypt_file_ptb(input_file, output_file):
+ # Generate a random initialization vector (IV)
+ iv = os.urandom(16) # AES block size is 16 bytes
+
+ # Pad the key if necessary (AES-128 requires a 16-byte key)
+ key = bytes.fromhex("54704643596B474170554B6D487A597A")
+
+ # Create an AES CBC cipher with the given key and IV
+ cipher = Cipher(algorithms.AES(key), modes.CBC(iv), backend=default_backend())
+ encryptor = cipher.encryptor()
+
+ with open(input_file, 'rb') as f_in:
+ with open(output_file, 'wb') as f_out:
+ # Write the IV to the output file (needed for decryption)
+ f_out.write(iv)
+
+ # Encrypt the file chunk by chunk
+ while True:
+ chunk = f_in.read(16) # Read 16 bytes at a time
+ if len(chunk) == 0:
+ break
+ elif len(chunk) % 16 != 0:
+ # Add padding to the last block if needed
+ padder = padding.PKCS7(128).padder()
+ padded_data = padder.update(chunk) + padder.finalize()
+ chunk = padded_data
+ encrypted_chunk = encryptor.update(chunk)
+ f_out.write(encrypted_chunk)
+
+ # Finalize the encryption (encryptor might have remaining data)
+ final_chunk = encryptor.finalize()
+ f_out.write(final_chunk)
+
+def encrypt_file_ns1(input_file, output_file):
+ # Generate a random initialization vector (IV)
+ iv = os.urandom(16) # AES block size is 16 bytes
+
+ # Pad the key if necessary (AES-128 requires a 16-byte key)
+ key = bytes.fromhex("566342346438526962324A366334394B")
+
+ # Create an AES CBC cipher with the given key and IV
+ cipher = Cipher(algorithms.AES(key), modes.CBC(iv), backend=default_backend())
+ encryptor = cipher.encryptor()
+
+ with open(input_file, 'rb') as f_in:
+ with open(output_file, 'wb') as f_out:
+ # Write the IV to the output file (needed for decryption)
+ f_out.write(iv)
+
+ # Encrypt the file chunk by chunk
+ while True:
+ chunk = f_in.read(16) # Read 16 bytes at a time
+ if len(chunk) == 0:
+ break
+ elif len(chunk) % 16 != 0:
+ # Add padding to the last block if needed
+ padder = padding.PKCS7(128).padder()
+ padded_data = padder.update(chunk) + padder.finalize()
+ chunk = padded_data
+ encrypted_chunk = encryptor.update(chunk)
+ f_out.write(encrypted_chunk)
+
+ # Finalize the encryption (encryptor might have remaining data)
+ final_chunk = encryptor.finalize()
+ f_out.write(final_chunk)
+
+
+def gzip_compress_file(input_file_path):
+ # Extract the base filename without extension
+ file_name, file_ext = os.path.splitext(input_file_path)
+
+ # Output file path with .gz extension appended
+ output_file_path = f'{file_name}.gz'
+
+ with open(input_file_path, 'rb') as f_in:
+ with gzip.open(output_file_path, 'wb') as f_out:
+ f_out.writelines(f_in)
+
+ return output_file_path
+
+def gzip_compress_file_ps4(input_file_path):
+ # Extract the base filename without extension
+ file_name, file_ext = os.path.splitext(input_file_path)
+
+ # Output file path with .gz extension appended
+ output_file_path = f'{file_name}.bin'
+
+ with open(input_file_path, 'rb') as f_in:
+ with gzip.open(output_file_path, 'wb') as f_out:
+ f_out.writelines(f_in)
+
+ return output_file_path
+
+def copy_folder(source_folder, destination_folder):
+ """
+ Copy the entire contents of source_folder to destination_folder.
+
+ Args:
+ source_folder (str): Path to the source folder to copy.
+ destination_folder (str): Path to the destination folder.
+
+ Returns:
+ bool: True if copy operation is successful, False otherwise.
+ """
+ try:
+ # Check if destination folder already exists
+ if os.path.exists(destination_folder):
+ print(f"Destination folder '{destination_folder}' already exists. Skipping copy.")
+ return False
+
+ # Copy the entire folder from source to destination
+ shutil.copytree(source_folder, destination_folder)
+ print(f"Folder '{source_folder}' successfully copied to '{destination_folder}'.")
+ return True
+
+ except shutil.Error as e:
+ print(f"Error: {e}")
+ return False
+
+ except OSError as e:
+ print(f"Error: {e}")
+ return False
+
+def export_data():
+ selected_items = []
+ for item_id in tree.get_children():
+ if tree.set(item_id, "Select") == "☑":
+ selected_items.append(item_id)
+
+ game_platform = game_platform_var.get()
+
+ game_region = game_region_var.get()
+
+ max_concurrent = config["max_concurrent"]
+
+ processed_ids = set() # Track processed song IDs
+
+ if game_platform == "PS4":
+ output_dir = "out/Data/ORBIS/datatable"
+ fumen_output_dir = "out/Data/ORBIS/fumen"
+ fumen_hitwide_output_dir = "out/Data/ORBIS/fumen_hitwide"
+ audio_output_dir = "out/Data/ORBIS/sound"
+ musicinfo_filename = "musicinfo.json"
+ max_entries = 400 # Maximum allowed entries for PS4
+ platform_tag = "ps4"
+ elif game_platform == "NS1":
+ output_dir = "out/Data/NX/datatable"
+ fumen_output_dir = "out/Data/NX/fumen/enso"
+ fumen_hitwide_output_dir = "out/Data/NX/fumen_hitwide/enso"
+ fumen_hitnarrow_output_dir = "out/Data/NX/fumen_hitnarrow/enso"
+ audio_output_dir = "out/Data/NX/sound"
+ musicinfo_filename = "musicinfo.json"
+ max_entries = 600 # Maximum allowed entries for NS1
+ platform_tag = "ns1"
+ elif game_platform == "PTB":
+ output_dir = "out/Data/Raw/ReadAssets"
+ fumen_output_dir = "out/Data/Raw/fumen"
+ audio_output_dir = "out/Data/Raw/sound/sound"
+ musicinfo_filename = "musicinfo.json"
+ songinfo_filename = "songinfo.json"
+ max_entries = 200 # Maximum allowed entries for PTB
+ platform_tag = "PTB"
+
+ os.makedirs(output_dir, exist_ok=True)
+ os.makedirs(fumen_output_dir, exist_ok=True)
+ os.makedirs(audio_output_dir, exist_ok=True)
+
+ selected_music_info = []
+ selected_song_info = []
+ selected_wordlist = []
+ current_unique_id = 0
+
+ try:
+ if len(selected_items) > max_entries:
+ messagebox.showerror("Selection Limit Exceeded", f"Maximum {max_entries} entries can be selected for {game_platform}.")
+ return
+
+ # Load preview position data
+ with open(previewpos_path, "r", encoding="utf-8") as previewpos_file:
+ previewpos_data = json.load(previewpos_file)
+
+ # Copy fumen folders for selected songs to output directory
+ for item_id in selected_items:
+ song_id = tree.item(item_id)["values"][2]
+ fumen_folder_path = os.path.join(data_dir, "fumen", str(song_id))
+ if os.path.exists(fumen_folder_path):
+ shutil.copytree(fumen_folder_path, os.path.join(fumen_output_dir, f"{song_id}"))
+
+ song_info = next((item for item in music_info["items"] if item["id"] == song_id), None)
+
+ for item_id in selected_items:
+ song_id = tree.item(item_id)["values"][2]
+ song_info = next((item for item in music_info["items"] if item["id"] == song_id), None)
+
+ if song_info:
+
+ # Calculate song_order based on genreNo and current_unique_id
+ song_order = (int(song_info["genreNo"]) * 1000) + current_unique_id
+
+ if game_platform == "NS1":
+ ns1_song_info = {
+ "id": song_info["id"],
+ "uniqueId": current_unique_id,
+ "songFileName": song_info["songFileName"],
+ "order": song_order,
+ "genreNo": song_info["genreNo"],
+ "secretFlag":False,
+ "dlc":False,
+ "debug":False,
+ "recording":True,
+ "branchEasy": song_info["branchEasy"],
+ "branchNormal": song_info["branchNormal"],
+ "branchHard": song_info["branchHard"],
+ "branchMania": song_info["branchMania"],
+ "branchUra": song_info["branchUra"],
+ "starEasy": song_info["starEasy"],
+ "starNormal": song_info["starNormal"],
+ "starHard": song_info["starHard"],
+ "starMania": song_info["starMania"],
+ "starUra": song_info["starUra"],
+ "shinutiEasy": song_info["shinutiEasy"],
+ "shinutiNormal": song_info["shinutiNormal"],
+ "shinutiHard": song_info["shinutiHard"],
+ "shinutiMania": song_info["shinutiMania"],
+ "shinutiUra": song_info["shinutiUra"],
+ "shinutiEasyDuet": song_info["shinutiEasyDuet"],
+ "shinutiNormalDuet": song_info["shinutiNormalDuet"],
+ "shinutiHardDuet": song_info["shinutiHardDuet"],
+ "shinutiManiaDuet": song_info["shinutiManiaDuet"],
+ "shinutiUraDuet": song_info["shinutiUraDuet"],
+ "scoreEasy": song_info["scoreEasy"],
+ "scoreNormal": song_info["scoreNormal"],
+ "scoreHard": song_info["scoreHard"],
+ "scoreMania": song_info["scoreMania"],
+ "scoreUra": song_info["scoreUra"],
+ "alleviationEasy": False,
+ "alleviationNormal": False,
+ "alleviationHard": False,
+ "alleviationMania": False,
+ "alleviationUra": False,
+ "song_info1": 25721,
+ "song_info2": 39634,
+ "song_info3": 60504,
+ "song_info4": 79618,
+ "song_info5": 98750,
+ "song_info6": -1,
+ "song_info7": -1,
+ "song_info8": -1,
+ "song_info9": -1,
+ "song_info10": -1,
+ "aocID": song_info["id"],
+ "limitedID": -1,
+ "extraID": -1,
+ "tournamentRand": True,
+ "bgDon0": "",
+ "bgDancer0": "",
+ "bgFever0": "",
+ "chibi0": "",
+ "rendaEffect0": "",
+ "dancer0": "",
+ "feverEffect0": "",
+ "bgDon1": "",
+ "bgDancer1": "",
+ "bgFever1": "",
+ "chibi1": "",
+ "rendaEffect1": "",
+ "dancer1": "",
+ "feverEffect1": "",
+ }
+ selected_music_info.append(ns1_song_info)
+ elif game_platform == "PS4":
+ ps4_song_info = {
+ "id": song_info["id"],
+ "uniqueId": current_unique_id,
+ "songFileName": song_info["songFileName"],
+ "order": song_order,
+ "genreNo": song_info["genreNo"],
+ "secretFlag":False,
+ "dlc":False,
+ "entitlementKey":"",
+ "secondKey":False,
+ "entitlementKey2":"",
+ "debug":False,
+ "branchEasy": song_info["branchEasy"],
+ "branchNormal": song_info["branchNormal"],
+ "branchHard": song_info["branchHard"],
+ "branchMania": song_info["branchMania"],
+ "branchUra": song_info["branchUra"],
+ "starEasy": song_info["starEasy"],
+ "starNormal": song_info["starNormal"],
+ "starHard": song_info["starHard"],
+ "starMania": song_info["starMania"],
+ "starUra": song_info["starUra"],
+ "shinutiEasy": song_info["shinutiEasy"],
+ "shinutiNormal": song_info["shinutiNormal"],
+ "shinutiHard": song_info["shinutiHard"],
+ "shinutiMania": song_info["shinutiMania"],
+ "shinutiUra": song_info["shinutiUra"],
+ "shinutiEasyDuet": song_info["shinutiEasyDuet"],
+ "shinutiNormalDuet": song_info["shinutiNormalDuet"],
+ "shinutiHardDuet": song_info["shinutiHardDuet"],
+ "shinutiManiaDuet": song_info["shinutiManiaDuet"],
+ "shinutiUraDuet": song_info["shinutiUraDuet"],
+ "scoreEasy": song_info["scoreEasy"],
+ "scoreNormal": song_info["scoreNormal"],
+ "scoreHard": song_info["scoreHard"],
+ "scoreMania": song_info["scoreMania"],
+ "scoreUra": song_info["scoreUra"],
+ "secret":False,
+ "songFileNameForSelect": song_info["songFileName"],
+ "bgSolo0":"",
+ "bgDuet0":"",
+ "chibi0":"",
+ "rendaEffect0":"",
+ "dancer0":"",
+ "feverEffect0":"",
+ "bgSolo1":"",
+ "bgDuet1":"",
+ "chibi1":"",
+ "rendaEffect1":"",
+ "dancer1":"",
+ "feverEffect1":""
+ }
+ selected_music_info.append(ps4_song_info)
+ elif game_platform == "PTB":
+ ptb_song_info = {
+ "uniqueId": current_unique_id,
+ "id": song_info["id"],
+ "songFileName": song_info["songFileName"],
+ "order": song_order,
+ "genreNo": song_info["genreNo"],
+ "isLock":False,
+ "isNew":False,
+ "debug":False,
+ "temp":False,
+ "temp2":False,
+ "branchEasy": song_info["branchEasy"],
+ "branchNormal": song_info["branchNormal"],
+ "branchHard": song_info["branchHard"],
+ "branchMania": song_info["branchMania"],
+ "branchUra": song_info["branchUra"],
+ "starEasy": song_info["starEasy"],
+ "starNormal": song_info["starNormal"],
+ "starHard": song_info["starHard"],
+ "starMania": song_info["starMania"],
+ "starUra": song_info["starUra"],
+ "shinutiEasy": song_info["shinutiEasy"],
+ "shinutiNormal": song_info["shinutiNormal"],
+ "shinutiHard": song_info["shinutiHard"],
+ "shinutiMania": song_info["shinutiMania"],
+ "shinutiUra": song_info["shinutiUra"],
+ "shinutiEasyDuet": song_info["shinutiEasyDuet"],
+ "shinutiNormalDuet": song_info["shinutiNormalDuet"],
+ "shinutiHardDuet": song_info["shinutiHardDuet"],
+ "shinutiManiaDuet": song_info["shinutiManiaDuet"],
+ "shinutiUraDuet": song_info["shinutiUraDuet"],
+ "scoreEasy": song_info["scoreEasy"],
+ "scoreNormal": song_info["scoreNormal"],
+ "scoreHard": song_info["scoreHard"],
+ "scoreMania": song_info["scoreMania"],
+ "scoreUra": song_info["scoreUra"],
+ }
+ selected_music_info.append(ptb_song_info)
+
+ # Find previewPos from previewpos.json based on song_id
+ preview_pos = None
+ for item in previewpos_data:
+ if item["id"] == song_info["id"]:
+ preview_pos = item["previewPos"]
+ break
+
+ ptb_extra_song_info = {
+ "uniqueId": current_unique_id,
+ "id": song_info["id"],
+ "previewPos": preview_pos if preview_pos is not None else 0, # Use 0 if previewPos not found
+ "fumenOffsetPos":0
+ }
+ selected_song_info.append(ptb_extra_song_info)
+ current_unique_id += 1
+
+ # Find the wordlist items corresponding to song variations
+ word_keys = [f"song_{song_id}", f"song_sub_{song_id}", f"song_detail_{song_id}"]
+ for key in word_keys:
+ word_info = next((item for item in word_list["items"] if item["key"] == key), None)
+ if word_info:
+ selected_wordlist.append(word_info)
+
+ if game_platform == "PS4":
+ # Find the corresponding preview position for the current song_id
+ preview_pos = next((item["previewPos"] for item in previewpos_data if item["id"] == song_id), None)
+ if preview_pos is not None:
+ # Run the audio conversion command based on the game platform
+ def convert_song(song_id):
+ preview_pos = get_preview_pos(song_id)
+ song_filename = f"data/sound/song_{song_id}.mp3"
+ output_file = os.path.join(audio_output_dir, f"song_{song_id}.nus3bank")
+ command = [
+ "python",
+ "conv.py",
+ song_filename,
+ "at9",
+ platform_tag,
+ str(preview_pos), # Convert preview_pos to string
+ song_id
+ ]
+ subprocess.run(command)
+ shutil.move(f"song_{song_id}.nus3bank", output_file)
+
+ elif game_platform == "NS1":
+ # Find the corresponding preview position for the current song_id
+ preview_pos = next((item["previewPos"] for item in previewpos_data if item["id"] == song_id), None)
+ if preview_pos is not None:
+ # Run the audio conversion command based on the game platform
+ def convert_song(song_id):
+ preview_pos = get_preview_pos(song_id)
+ song_filename = f"data/sound/song_{song_id}.mp3"
+ output_file = os.path.join(audio_output_dir, f"song_{song_id}.nus3bank")
+ command = [
+ "python",
+ "conv.py",
+ song_filename,
+ "idsp",
+ platform_tag,
+ str(preview_pos), # Convert preview_pos to string
+ song_id
+ ]
+ subprocess.run(command)
+ shutil.move(f"song_{song_id}.nus3bank", output_file)
+
+ elif game_platform == "PTB":
+ # Find the corresponding preview position for the current song_id
+ preview_pos = next((item["previewPos"] for item in previewpos_data if item["id"] == song_id), None)
+ if preview_pos is not None:
+ # Run the audio conversion command based on the game platform
+ def convert_song(song_id):
+ preview_pos = get_preview_pos(song_id)
+ song_filename = f"data/sound/song_{song_id}.mp3"
+ output_file = os.path.join(audio_output_dir, f"song_{song_id}.bin")
+ command = [
+ "python",
+ "script/acb/acb.py",
+ song_filename,
+ song_id
+ ]
+ subprocess.run(command)
+ shutil.move(f"song_{song_id}.bin", output_file)
+
+
+ try:
+ if len(selected_items) > 0:
+ with concurrent.futures.ThreadPoolExecutor(max_workers=max_concurrent) as executor:
+ futures = []
+
+ for item_id in selected_items:
+ song_id = tree.item(item_id)["values"][2]
+
+ if song_id not in processed_ids:
+ # Submit conversion task for this song ID
+ futures.append(executor.submit(convert_song, song_id))
+ processed_ids.add(song_id) # Mark as processed
+
+ # Wait for all tasks to complete
+ concurrent.futures.wait(futures)
+ else:
+ messagebox.showinfo("No Songs Selected", "Please select songs to export.")
+
+ except Exception as e:
+ messagebox.showerror("Export Error", f"An error occurred during export: {str(e)}")
+
+ # Export selected musicinfo and wordlist
+ if game_platform == "PTB":
+
+ selected_musicinfo_path = os.path.join(output_dir, musicinfo_filename)
+ selected_wordlist_path = os.path.join(output_dir, "wordlist.json")
+ selected_songinfo_path = os.path.join(output_dir, songinfo_filename)
+
+ with open(selected_songinfo_path, "w", encoding="utf-8") as out_musicinfo_file:
+ json.dump({"items": selected_song_info}, out_musicinfo_file, ensure_ascii=False, indent=4)
+
+ with open(selected_musicinfo_path, "w", encoding="utf-8") as out_musicinfo_file:
+ json.dump({"items": selected_music_info}, out_musicinfo_file, ensure_ascii=False, indent=4)
+
+ with open(selected_wordlist_path, "w", encoding="utf-8") as out_wordlist_file:
+ json.dump({"items": selected_wordlist}, out_wordlist_file, ensure_ascii=False, indent=4)
+
+ merge_ptb()
+
+ #Compress each ReadAsset file
+ gzip_compress_file(selected_musicinfo_path)
+ gzip_compress_file(selected_wordlist_path)
+ gzip_compress_file(selected_songinfo_path)
+
+ #Compress each Remove the json files
+ os.remove(selected_musicinfo_path)
+ os.remove(selected_wordlist_path)
+ os.remove(selected_songinfo_path)
+
+ #Compressed File definitions
+ compressed_musicinfo_path = os.path.join(output_dir, "musicinfo.gz")
+ compressed_wordlist_path = os.path.join(output_dir, "wordlist.gz")
+ compressed_songinfo_path = os.path.join(output_dir, "songinfo.gz")
+
+ # Final Output definitions
+ final_musicinfo = os.path.join(output_dir, "musicinfo.bin")
+ final_wordlist = os.path.join(output_dir, "wordlist.bin")
+ final_songinfo = os.path.join(output_dir, "songinfo.bin")
+
+ # Encrypt the final files
+ encrypt_file_ptb(compressed_musicinfo_path, final_musicinfo)
+ encrypt_file_ptb(compressed_wordlist_path, final_wordlist)
+ encrypt_file_ptb(compressed_songinfo_path, final_songinfo)
+
+ # Remove compressed .gz files
+ os.remove(compressed_musicinfo_path)
+ os.remove(compressed_wordlist_path)
+ os.remove(compressed_songinfo_path)
+
+ elif game_platform == "PS4":
+
+ selected_musicinfo_path = os.path.join(output_dir, musicinfo_filename)
+ selected_wordlist_path = os.path.join(output_dir, "wordlist.json")
+
+ with open(selected_musicinfo_path, "w", encoding="utf-8") as out_musicinfo_file:
+ json.dump({"items": selected_music_info}, out_musicinfo_file, ensure_ascii=False, indent=4)
+
+ with open(selected_wordlist_path, "w", encoding="utf-8") as out_wordlist_file:
+ json.dump({"items": selected_wordlist}, out_wordlist_file, ensure_ascii=False, indent=4)
+
+ if game_region == "JPN/ASIA":
+ merge_ps4_jp()
+ elif game_region == "EU/USA":
+ merge_ps4_int()
+
+ #Compress each datatable file
+ gzip_compress_file_ps4(selected_musicinfo_path)
+ gzip_compress_file_ps4(selected_wordlist_path)
+
+ #Remove .json files
+ os.remove(selected_musicinfo_path)
+ os.remove(selected_wordlist_path)
+
+ copy_folder(fumen_output_dir,fumen_hitwide_output_dir)
+
+ elif game_platform == "NS1":
+
+ selected_musicinfo_path = os.path.join(output_dir, musicinfo_filename)
+ selected_wordlist_path = os.path.join(output_dir, "wordlist.json")
+
+ with open(selected_musicinfo_path, "w", encoding="utf-8") as out_musicinfo_file:
+ json.dump({"items": selected_music_info}, out_musicinfo_file, ensure_ascii=False, indent=4)
+
+ with open(selected_wordlist_path, "w", encoding="utf-8") as out_wordlist_file:
+ json.dump({"items": selected_wordlist}, out_wordlist_file, ensure_ascii=False, indent=4)
+
+ if game_region == "JPN/ASIA":
+ merge_ns1_jp()
+ elif game_region == "EU/USA":
+ merge_ns1_int()
+
+
+ #Compress each datatable file
+ gzip_compress_file(selected_musicinfo_path)
+ gzip_compress_file(selected_wordlist_path)
+
+ #Compress each Remove the json files
+ os.remove(selected_musicinfo_path)
+ os.remove(selected_wordlist_path)
+
+ #Compressed File definitions
+ compressed_musicinfo_path = os.path.join(output_dir, "musicinfo.gz")
+ compressed_wordlist_path = os.path.join(output_dir, "wordlist.gz")
+
+ # Final Output definitions
+ final_musicinfo = os.path.join(output_dir, "musicinfo.bin")
+ final_wordlist = os.path.join(output_dir, "wordlist.bin")
+
+ # Encrypt the final files
+ encrypt_file_ns1(compressed_musicinfo_path, final_musicinfo)
+ encrypt_file_ns1(compressed_wordlist_path, final_wordlist)
+
+ # Remove compressed .gz files
+ os.remove(compressed_musicinfo_path)
+ os.remove(compressed_wordlist_path)
+
+ copy_folder(fumen_output_dir,fumen_hitwide_output_dir)
+ copy_folder(fumen_output_dir,fumen_hitnarrow_output_dir)
+
+ messagebox.showinfo("Export Completed", "Selected songs exported successfully!")
+
+ except Exception as e:
+ messagebox.showerror("Export Error", f"An error occurred during export: {str(e)}")
+
+#Button shenanigans, because the order they appear on the gui, is determined by the literal order they are in the code???
+
+# Top Side
+
+preview_button = ttk.Button(window, text="Preview", command=preview_selected)
+preview_button.pack(side="top", padx=20, pady=10)
+
+# Create sorting options
+sort_options = ["ID", "Song Name", "Genre"]
+sort_label = tk.Label(window, text="Sort by:")
+sort_label.pack(side="top", padx=20, pady=5)
+
+sort_var = tk.StringVar(window)
+sort_var.set("ID")
+sort_menu = tk.OptionMenu(window, sort_var, *sort_options, command=lambda _: sort_tree(sort_var.get()))
+sort_menu.pack(side="top", padx=20, pady=0)
+
+# search_entry.pack(side="top", padx=20, pady=10, fill="x") # search bar, currently broken
+
+# Bottom Side
+
+export_button = ttk.Button(window, text="Export", command=export_data)
+export_button.pack(side="bottom", padx=20, pady=10)
+
+# Create Selection Count Label
+selection_count_label = ttk.Label(window, text="0/???")
+selection_count_label.pack(side="bottom", padx=20, pady=10)
+
+game_platform_var = tk.StringVar(window)
+game_platform_var.set("PS4")
+game_platform_choices = ["PS4", "NS1", "PTB"]
+game_platform_menu = tk.OptionMenu(window, game_platform_var, *game_platform_choices)
+game_platform_menu.pack(side="bottom", padx=20, pady=0)
+
+# Create Label for Platform selection
+platform_label = tk.Label(window, text="Platform")
+platform_label.pack(side="bottom", padx=20, pady=5)
+
+# Game region selection, needed for wordlist export.
+game_region_var = tk.StringVar(window)
+game_region_var.set("JPN/ASIA")
+game_region_choices = ["JPN/ASIA", "EU/USA"]
+game_region_menu = tk.OptionMenu(window, game_region_var, *game_region_choices)
+game_region_menu.pack(side="bottom", padx=20, pady=10)
+
+game_region_label = tk.Label(window, text="Game Region:")
+game_region_label.pack(side="bottom", padx=20, pady=0)
+
+# Doesn't function?
+# Update selection count when tree selection changes
+#tree.bind("<>", lambda event: update_selection_count())
+
+window.mainloop()
diff --git a/TaikoSongConversionTool/script/_misc/audioconv_bnsf.py b/TaikoSongConversionTool/script/_misc/audioconv_bnsf.py
new file mode 100644
index 0000000..58f2f31
--- /dev/null
+++ b/TaikoSongConversionTool/script/_misc/audioconv_bnsf.py
@@ -0,0 +1,71 @@
+import os
+import sys
+import subprocess
+import concurrent.futures
+from pydub import AudioSegment
+
+# Function to process each .nus3bank file
+def process_nus3bank(file):
+ if file.endswith('.nus3bank'):
+ base_name = os.path.splitext(os.path.basename(file))[0]
+ out_folder = "out"
+ wav_file = os.path.join(out_folder, f"{base_name}.wav")
+ command = f"vgmstream-cli.exe -o {wav_file} {file}"
+ subprocess.run(command, shell=True, check=True)
+
+ # Trim the first 20ms and convert to flac
+ process_wav_with_trim(wav_file)
+
+# Function to process each .wav file by trimming and converting to .flac
+def process_wav_with_trim(wav_file):
+ if wav_file.endswith('.wav'):
+ audio = AudioSegment.from_wav(wav_file)
+
+ # Trim the first 20ms
+ trimmed_audio = audio[20:] # Trim 20ms from the beginning
+
+ base_name = os.path.splitext(os.path.basename(wav_file))[0]
+ out_folder = "out"
+ flac_file = os.path.join(out_folder, f"{base_name}.flac")
+
+ # Export trimmed audio to compressed FLAC with specified sample rate (48000 Hz)
+ trimmed_audio.export(flac_file, format="flac", parameters=["-ar", "48000", "-compression_level", "8"])
+
+ # Clean up .wav file
+ os.remove(wav_file)
+
+# Main function
+def main():
+ if len(sys.argv) < 2:
+ print("Usage: python script.py path/to/input/folder")
+ return
+
+ input_folder = sys.argv[1]
+
+ # Check if the input folder exists
+ if not os.path.exists(input_folder):
+ print(f"Error: Input folder '{input_folder}' not found.")
+ return
+
+ out_folder = "out"
+
+ # Create output folder if it doesn't exist
+ os.makedirs(out_folder, exist_ok=True)
+
+ # List all .nus3bank files in the input folder
+ nus3bank_files = [os.path.join(input_folder, file) for file in os.listdir(input_folder) if file.endswith('.nus3bank')]
+
+ # Process files using a thread pool with 5 worker threads
+ with concurrent.futures.ThreadPoolExecutor(max_workers=5) as executor:
+ # Submit each file processing task to the executor
+ futures = [executor.submit(process_nus3bank, file) for file in nus3bank_files]
+
+ # Wait for all tasks to complete
+ for future in concurrent.futures.as_completed(futures):
+ try:
+ future.result() # This will propagate exceptions if any occurred during execution
+ except Exception as exc:
+ print(f"An error occurred: {exc}")
+
+if __name__ == "__main__":
+ main()
diff --git a/TaikoSongConversionTool/script/_misc/audioconv_other.py b/TaikoSongConversionTool/script/_misc/audioconv_other.py
new file mode 100644
index 0000000..d24ff03
--- /dev/null
+++ b/TaikoSongConversionTool/script/_misc/audioconv_other.py
@@ -0,0 +1,70 @@
+import os
+import sys
+import subprocess
+import concurrent.futures
+from pydub import AudioSegment
+
+# Function to process each .nus3bank file
+def process_nus3bank(file):
+ if file.endswith('.nus3bank'):
+ base_name = os.path.splitext(os.path.basename(file))[0]
+ out_folder = "out"
+ wav_file = os.path.join(out_folder, f"{base_name}.wav")
+ command = f"vgmstream-cli.exe -o {wav_file} {file}"
+ subprocess.run(command, shell=True, check=True)
+
+ # Trim the first 20ms and convert to flac
+ process_wav_with_trim(wav_file)
+
+# Function to process each .wav file by trimming and converting to .flac
+def process_wav_with_trim(wav_file):
+ if wav_file.endswith('.wav'):
+ audio = AudioSegment.from_wav(wav_file)
+
+ trimmed_audio = audio[0:]
+
+ base_name = os.path.splitext(os.path.basename(wav_file))[0]
+ out_folder = "out"
+ flac_file = os.path.join(out_folder, f"{base_name}.flac")
+
+ # Export trimmed audio to compressed FLAC with specified sample rate (48000 Hz)
+ trimmed_audio.export(flac_file, format="flac", parameters=["-ar", "48000", "-compression_level", "8"])
+
+ # Clean up .wav file
+ os.remove(wav_file)
+
+# Main function
+def main():
+ if len(sys.argv) < 2:
+ print("Usage: python script.py path/to/input/folder")
+ return
+
+ input_folder = sys.argv[1]
+
+ # Check if the input folder exists
+ if not os.path.exists(input_folder):
+ print(f"Error: Input folder '{input_folder}' not found.")
+ return
+
+ out_folder = "out"
+
+ # Create output folder if it doesn't exist
+ os.makedirs(out_folder, exist_ok=True)
+
+ # List all .nus3bank files in the input folder
+ nus3bank_files = [os.path.join(input_folder, file) for file in os.listdir(input_folder) if file.endswith('.nus3bank')]
+
+ # Process files using a thread pool with 5 worker threads
+ with concurrent.futures.ThreadPoolExecutor(max_workers=5) as executor:
+ # Submit each file processing task to the executor
+ futures = [executor.submit(process_nus3bank, file) for file in nus3bank_files]
+
+ # Wait for all tasks to complete
+ for future in concurrent.futures.as_completed(futures):
+ try:
+ future.result() # This will propagate exceptions if any occurred during execution
+ except Exception as exc:
+ print(f"An error occurred: {exc}")
+
+if __name__ == "__main__":
+ main()
diff --git a/TaikoSongConversionTool/script/_misc/dec and enc gz.py b/TaikoSongConversionTool/script/_misc/dec and enc gz.py
new file mode 100644
index 0000000..0c61f3d
--- /dev/null
+++ b/TaikoSongConversionTool/script/_misc/dec and enc gz.py
@@ -0,0 +1,59 @@
+import sys
+import os
+from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes
+from cryptography.hazmat.primitives import padding
+from cryptography.hazmat.backends import default_backend
+
+KEY = bytes.fromhex("54704643596B474170554B6D487A597A")
+IV = bytes.fromhex("FF" * 16) # IV for encryption
+
+def encrypt_file(input_filename, output_filename):
+ with open(input_filename, 'rb') as infile:
+ plaintext = infile.read()
+
+ padder = padding.PKCS7(algorithms.AES.block_size).padder()
+ padded_data = padder.update(plaintext) + padder.finalize()
+
+ cipher = Cipher(algorithms.AES(KEY), modes.CBC(IV), backend=default_backend())
+ encryptor = cipher.encryptor()
+ ciphertext = encryptor.update(padded_data) + encryptor.finalize()
+
+ with open(output_filename, 'wb') as outfile:
+ outfile.write(IV + ciphertext)
+
+def decrypt_file(input_filename, output_filename):
+ with open(input_filename, 'rb') as infile:
+ encrypted_data = infile.read()
+
+ iv = encrypted_data[:16] # Extract IV from the beginning of the file
+
+ cipher = Cipher(algorithms.AES(KEY), modes.CBC(iv), backend=default_backend())
+ decryptor = cipher.decryptor()
+ decrypted_data = decryptor.update(encrypted_data[16:]) + decryptor.finalize()
+
+ # Print the decrypted data (for debugging purposes)
+ #print("Decrypted data (hex):", decrypted_data.hex())
+
+ with open(output_filename, 'wb') as outfile:
+ outfile.write(decrypted_data)
+
+if __name__ == "__main__":
+ if len(sys.argv) < 3:
+ print("Usage: python file_encrypt_decrypt.py ")
+ sys.exit(1)
+
+ input_file = sys.argv[1]
+ output_file = sys.argv[2]
+
+ if os.path.exists(input_file):
+ if input_file != output_file:
+ if input("Encrypt (e) or Decrypt (d) the file? ").lower() == 'e':
+ encrypt_file(input_file, output_file)
+ print("Encryption complete.")
+ else:
+ decrypt_file(input_file, output_file)
+ print("Decryption complete.")
+ else:
+ print("Error: Output file must be different from input file.")
+ else:
+ print(f"Error: Input file '{input_file}' not found.")
diff --git a/TaikoSongConversionTool/script/_misc/kraken.py b/TaikoSongConversionTool/script/_misc/kraken.py
new file mode 100644
index 0000000..8e61c29
--- /dev/null
+++ b/TaikoSongConversionTool/script/_misc/kraken.py
@@ -0,0 +1,44 @@
+import os
+import json
+
+def process_folders(root_folder):
+ data_entries = []
+
+ for foldername in os.listdir(root_folder):
+ folder_path = os.path.join(root_folder, foldername)
+ if os.path.isdir(folder_path):
+ process_subfolders(folder_path, data_entries)
+
+ sorted_data_entries = sort_entries_by_id(data_entries)
+ write_output_file(sorted_data_entries, root_folder)
+
+def process_subfolders(folder_path, data_entries):
+ for subdir, _, files in os.walk(folder_path):
+ if 'data.json' in files:
+ data_json_path = os.path.join(subdir, 'data.json')
+ process_data_json(data_json_path, data_entries)
+
+def process_data_json(data_json_path, data_entries):
+ try:
+ with open(data_json_path, 'r', encoding='utf-8') as data_file:
+ data = json.load(data_file)
+ id_value = data.get('id', '') # Get 'id' value or default to empty string
+ preview_pos = data.get('previewPos', 0) # Get 'previewPos' value or default to 0
+ data_entries.append({'id': id_value, 'previewPos': preview_pos})
+ except (json.JSONDecodeError, UnicodeDecodeError) as e:
+ print(f"Error reading {data_json_path}: {e}")
+
+def sort_entries_by_id(data_entries):
+ # Sort data_entries list by 'id' field
+ sorted_entries = sorted(data_entries, key=lambda x: x['id'])
+ return sorted_entries
+
+def write_output_file(data_entries, root_folder):
+ output_file_path = os.path.join(root_folder, 'output.json')
+ with open(output_file_path, 'w', encoding='utf-8') as output_file:
+ json.dump(data_entries, output_file, indent=2)
+
+if __name__ == '__main__':
+ # Specify the root folder where you want to start processing
+ root_folder = '.' # Current directory where the script is executed
+ process_folders(root_folder)
diff --git a/TaikoSongConversionTool/script/_misc/kraken2.py b/TaikoSongConversionTool/script/_misc/kraken2.py
new file mode 100644
index 0000000..7f6f009
--- /dev/null
+++ b/TaikoSongConversionTool/script/_misc/kraken2.py
@@ -0,0 +1,57 @@
+import os
+import json
+
+def process_folders(root_folder):
+ data_entries = []
+
+ for foldername in os.listdir(root_folder):
+ folder_path = os.path.join(root_folder, foldername)
+ if os.path.isdir(folder_path):
+ process_subfolders(folder_path, data_entries)
+
+ write_output_file(data_entries, 'output_all.json', root_folder)
+
+def process_subfolders(folder_path, data_entries):
+ for subdir, _, files in os.walk(folder_path):
+ if 'data.json' in files:
+ data_json_path = os.path.join(subdir, 'data.json')
+ process_data_json(data_json_path, data_entries)
+
+def process_data_json(data_json_path, data_entries):
+ try:
+ with open(data_json_path, 'r', encoding='utf-8') as data_file:
+ data = json.load(data_file)
+ data_entry = {
+ "id": data["id"],
+ "songName": {
+ "jpText": data["songName"]["jpText"],
+ "jpFont": data["songName"]["jpFont"],
+ "enText": data["songName"]["enText"],
+ "enFont": data["songName"]["enFont"]
+ },
+ "songSubtitle": {
+ "jpText": data["songSubtitle"]["jpText"],
+ "jpFont": data["songSubtitle"]["jpFont"],
+ "enText": data["songSubtitle"]["enText"],
+ "enFont": data["songSubtitle"]["enFont"]
+ },
+ "songDetail": {
+ "jpText": data["songDetail"]["jpText"],
+ "jpFont": data["songDetail"]["jpFont"],
+ "enText": data["songDetail"]["enText"],
+ "enFont": data["songDetail"]["enFont"]
+ }
+ }
+ data_entries.append(data_entry)
+ except (json.JSONDecodeError, UnicodeDecodeError, KeyError) as e:
+ print(f"Error reading {data_json_path}: {e}")
+
+def write_output_file(data_entries, filename, root_folder):
+ output_file_path = os.path.join(root_folder, filename)
+ with open(output_file_path, 'w', encoding='utf-8') as output_file:
+ json.dump(data_entries, output_file, indent=2, ensure_ascii=False)
+
+if __name__ == '__main__':
+ # Specify the root folder where you want to start processing
+ root_folder = '.' # Current directory where the script is executed
+ process_folders(root_folder)
diff --git a/TaikoSongConversionTool/script/_misc/musicinfo.json b/TaikoSongConversionTool/script/_misc/musicinfo.json
new file mode 100644
index 0000000..7b2cdc4
--- /dev/null
+++ b/TaikoSongConversionTool/script/_misc/musicinfo.json
@@ -0,0 +1,63618 @@
+[
+ {
+ "uniqueId": 1,
+ "id": "1pshop",
+ "songFileName": "song_1pshop",
+ "order": 1007,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 18710,
+ "shinutiNormal": 10210,
+ "shinutiHard": 6020,
+ "shinutiMania": 3170,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18710,
+ "shinutiNormalDuet": 10210,
+ "shinutiHardDuet": 6020,
+ "shinutiManiaDuet": 3170,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000130,
+ "scoreNormal": 1000070,
+ "scoreHard": 1001580,
+ "scoreMania": 1001470,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2,
+ "id": "1psovt",
+ "songFileName": "song_1psovt",
+ "order": 1009,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 2,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 15720,
+ "shinutiNormal": 10300,
+ "shinutiHard": 6730,
+ "shinutiMania": 2360,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15720,
+ "shinutiNormalDuet": 10300,
+ "shinutiHardDuet": 6730,
+ "shinutiManiaDuet": 2360,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000060,
+ "scoreNormal": 1000900,
+ "scoreHard": 1000580,
+ "scoreMania": 1003920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 3,
+ "id": "2ge8ji",
+ "songFileName": "song_2ge8ji",
+ "order": 1028,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 1,
+ "shinutiEasy": 11860,
+ "shinutiNormal": 8520,
+ "shinutiHard": 5230,
+ "shinutiMania": 3010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11860,
+ "shinutiNormalDuet": 8520,
+ "shinutiHardDuet": 5230,
+ "shinutiManiaDuet": 3010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000640,
+ "scoreNormal": 1001040,
+ "scoreHard": 1001230,
+ "scoreMania": 1002220,
+ "scoreUra": 12350
+ },
+ {
+ "uniqueId": 5,
+ "id": "2no92",
+ "songFileName": "song_2no92",
+ "order": 1033,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 20770,
+ "shinutiNormal": 14420,
+ "shinutiHard": 8070,
+ "shinutiMania": 4850,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 20770,
+ "shinutiNormalDuet": 14420,
+ "shinutiHardDuet": 8070,
+ "shinutiManiaDuet": 4850,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000360,
+ "scoreNormal": 1000080,
+ "scoreHard": 1001210,
+ "scoreMania": 1001600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 6,
+ "id": "3d2op",
+ "songFileName": "song_3d2op",
+ "order": 1039,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 7260,
+ "shinutiNormal": 5180,
+ "shinutiHard": 3150,
+ "shinutiMania": 2350,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7260,
+ "shinutiNormalDuet": 5180,
+ "shinutiHardDuet": 3150,
+ "shinutiManiaDuet": 2350,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000420,
+ "scoreNormal": 1001060,
+ "scoreHard": 1000250,
+ "scoreMania": 1000000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 7,
+ "id": "3d3op",
+ "songFileName": "song_3d3op",
+ "order": 1043,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8290,
+ "shinutiNormal": 6240,
+ "shinutiHard": 3600,
+ "shinutiMania": 2700,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8290,
+ "shinutiNormalDuet": 6240,
+ "shinutiHardDuet": 3600,
+ "shinutiManiaDuet": 2700,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001000,
+ "scoreNormal": 1000560,
+ "scoreHard": 1001000,
+ "scoreMania": 1002300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 8,
+ "id": "3dsb1x",
+ "songFileName": "song_3dsb1x",
+ "order": 1044,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 3940,
+ "shinutiNormal": 2590,
+ "shinutiHard": 1820,
+ "shinutiMania": 1120,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3940,
+ "shinutiNormalDuet": 2590,
+ "shinutiHardDuet": 1820,
+ "shinutiManiaDuet": 1120,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000180,
+ "scoreNormal": 1003460,
+ "scoreHard": 1005120,
+ "scoreMania": 1000460,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 9,
+ "id": "3dsop",
+ "songFileName": "song_3dsop",
+ "order": 1045,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 8,
+ "shinutiEasy": 6350,
+ "shinutiNormal": 4150,
+ "shinutiHard": 2730,
+ "shinutiMania": 2130,
+ "shinutiUra": 1460,
+ "shinutiEasyDuet": 6350,
+ "shinutiNormalDuet": 4150,
+ "shinutiHardDuet": 2730,
+ "shinutiManiaDuet": 2130,
+ "shinutiUraDuet": 1460,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1002350,
+ "scoreHard": 1000620,
+ "scoreMania": 1000280,
+ "scoreUra": 1460
+ },
+ {
+ "uniqueId": 10,
+ "id": "3pcjaz",
+ "songFileName": "song_3pcjaz",
+ "order": 1046,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 8440,
+ "shinutiNormal": 6860,
+ "shinutiHard": 3450,
+ "shinutiMania": 1820,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8440,
+ "shinutiNormalDuet": 6860,
+ "shinutiHardDuet": 3450,
+ "shinutiManiaDuet": 1820,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000120,
+ "scoreNormal": 1000200,
+ "scoreHard": 1002150,
+ "scoreMania": 1005240,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 11,
+ "id": "3raclt",
+ "songFileName": "song_3raclt",
+ "order": 1047,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 15730,
+ "shinutiNormal": 7120,
+ "shinutiHard": 4210,
+ "shinutiMania": 2930,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15730,
+ "shinutiNormalDuet": 7120,
+ "shinutiHardDuet": 4210,
+ "shinutiManiaDuet": 2930,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000490,
+ "scoreNormal": 1000380,
+ "scoreHard": 1001250,
+ "scoreMania": 1002040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 12,
+ "id": "3ru3ru",
+ "songFileName": "song_3ru3ru",
+ "order": 1048,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 21110,
+ "shinutiNormal": 11260,
+ "shinutiHard": 4380,
+ "shinutiMania": 2890,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 21110,
+ "shinutiNormalDuet": 11260,
+ "shinutiHardDuet": 4380,
+ "shinutiManiaDuet": 2890,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000070,
+ "scoreNormal": 1000580,
+ "scoreHard": 1001360,
+ "scoreMania": 1001860,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 13,
+ "id": "3ti3ti",
+ "songFileName": "song_3ti3ti",
+ "order": 1050,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 10,
+ "shinutiEasy": 10560,
+ "shinutiNormal": 5220,
+ "shinutiHard": 3320,
+ "shinutiMania": 2680,
+ "shinutiUra": 1340,
+ "shinutiEasyDuet": 10560,
+ "shinutiNormalDuet": 5220,
+ "shinutiHardDuet": 3320,
+ "shinutiManiaDuet": 2680,
+ "shinutiUraDuet": 1340,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1000900,
+ "scoreHard": 1001620,
+ "scoreMania": 1001180,
+ "scoreUra": 1340
+ },
+ {
+ "uniqueId": 14,
+ "id": "4gnyub",
+ "songFileName": "song_4gnyub",
+ "order": 1053,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8060,
+ "shinutiNormal": 6040,
+ "shinutiHard": 3300,
+ "shinutiMania": 1300,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8060,
+ "shinutiNormalDuet": 6040,
+ "shinutiHardDuet": 3300,
+ "shinutiManiaDuet": 1300,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000780,
+ "scoreNormal": 1000660,
+ "scoreHard": 1002400,
+ "scoreMania": 1007000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 15,
+ "id": "4shaas",
+ "songFileName": "song_4shaas",
+ "order": 1055,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 2,
+ "starUra": 0,
+ "shinutiEasy": 10670,
+ "shinutiNormal": 7440,
+ "shinutiHard": 3600,
+ "shinutiMania": 2460,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10670,
+ "shinutiNormalDuet": 7440,
+ "shinutiHardDuet": 3600,
+ "shinutiManiaDuet": 2460,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000910,
+ "scoreNormal": 1000820,
+ "scoreHard": 1000200,
+ "scoreMania": 1003320,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 16,
+ "id": "6ne9om",
+ "songFileName": "song_6ne9om",
+ "order": 1064,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5080,
+ "shinutiNormal": 4230,
+ "shinutiHard": 3050,
+ "shinutiMania": 1470,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5080,
+ "shinutiNormalDuet": 4230,
+ "shinutiHardDuet": 3050,
+ "shinutiManiaDuet": 1470,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000720,
+ "scoreNormal": 1000360,
+ "scoreHard": 1000800,
+ "scoreMania": 1000040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 17,
+ "id": "7fuku",
+ "songFileName": "song_7fuku",
+ "order": 1066,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 8020,
+ "shinutiNormal": 4790,
+ "shinutiHard": 1890,
+ "shinutiMania": 1280,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8020,
+ "shinutiNormalDuet": 4790,
+ "shinutiHardDuet": 1890,
+ "shinutiManiaDuet": 1280,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001160,
+ "scoreNormal": 1001250,
+ "scoreHard": 1002740,
+ "scoreMania": 1002960,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 18,
+ "id": "7iro",
+ "songFileName": "song_7iro",
+ "order": 1067,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7470,
+ "shinutiNormal": 4600,
+ "shinutiHard": 3120,
+ "shinutiMania": 2190,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7470,
+ "shinutiNormalDuet": 4600,
+ "shinutiHardDuet": 3120,
+ "shinutiManiaDuet": 2190,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000510,
+ "scoreNormal": 1001400,
+ "scoreHard": 1002360,
+ "scoreMania": 1000750,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 19,
+ "id": "7ma8ge",
+ "songFileName": "song_7ma8ge",
+ "order": 1068,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5240,
+ "shinutiNormal": 2510,
+ "shinutiHard": 1790,
+ "shinutiMania": 1280,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5240,
+ "shinutiNormalDuet": 2510,
+ "shinutiHardDuet": 1790,
+ "shinutiManiaDuet": 1280,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000260,
+ "scoreNormal": 1001670,
+ "scoreHard": 1003040,
+ "scoreMania": 1001700,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 20,
+ "id": "8ka7ki",
+ "songFileName": "song_8ka7ki",
+ "order": 1073,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 10,
+ "shinutiEasy": 6330,
+ "shinutiNormal": 3610,
+ "shinutiHard": 2540,
+ "shinutiMania": 1350,
+ "shinutiUra": 1100,
+ "shinutiEasyDuet": 6330,
+ "shinutiNormalDuet": 3610,
+ "shinutiHardDuet": 2540,
+ "shinutiManiaDuet": 1350,
+ "shinutiUraDuet": 1100,
+ "scoreEasy": 1000510,
+ "scoreNormal": 1000150,
+ "scoreHard": 1000700,
+ "scoreMania": 1002000,
+ "scoreUra": 1100
+ },
+ {
+ "uniqueId": 21,
+ "id": "10binz",
+ "songFileName": "song_10binz",
+ "order": 1000,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 4930,
+ "shinutiNormal": 2980,
+ "shinutiHard": 2050,
+ "shinutiMania": 1500,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4930,
+ "shinutiNormalDuet": 2980,
+ "shinutiHardDuet": 2050,
+ "shinutiManiaDuet": 1500,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001390,
+ "scoreNormal": 1002780,
+ "scoreHard": 1003100,
+ "scoreMania": 1005000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 22,
+ "id": "10jiku",
+ "songFileName": "song_10jiku",
+ "order": 1001,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6750,
+ "shinutiNormal": 4630,
+ "shinutiHard": 1680,
+ "shinutiMania": 1200,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6750,
+ "shinutiNormalDuet": 4630,
+ "shinutiHardDuet": 1680,
+ "shinutiManiaDuet": 1200,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000250,
+ "scoreNormal": 1000420,
+ "scoreHard": 1002440,
+ "scoreMania": 1002900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 23,
+ "id": "10tai",
+ "songFileName": "song_10tai",
+ "order": 1003,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 7880,
+ "shinutiNormal": 5780,
+ "shinutiHard": 3740,
+ "shinutiMania": 2470,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7880,
+ "shinutiNormalDuet": 5780,
+ "shinutiHardDuet": 3740,
+ "shinutiManiaDuet": 2470,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001260,
+ "scoreNormal": 1000540,
+ "scoreHard": 1002320,
+ "scoreMania": 1002820,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 24,
+ "id": "29shok",
+ "songFileName": "song_29shok",
+ "order": 1026,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 8670,
+ "shinutiNormal": 2940,
+ "shinutiHard": 1920,
+ "shinutiMania": 1170,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8670,
+ "shinutiNormalDuet": 2940,
+ "shinutiHardDuet": 1920,
+ "shinutiManiaDuet": 1170,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000580,
+ "scoreNormal": 1001580,
+ "scoreHard": 1000680,
+ "scoreMania": 1003060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 25,
+ "id": "32segw",
+ "songFileName": "song_32segw",
+ "order": 1034,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 10,
+ "shinutiEasy": 8220,
+ "shinutiNormal": 5480,
+ "shinutiHard": 2840,
+ "shinutiMania": 2190,
+ "shinutiUra": 1570,
+ "shinutiEasyDuet": 8220,
+ "shinutiNormalDuet": 5480,
+ "shinutiHardDuet": 2840,
+ "shinutiManiaDuet": 2190,
+ "shinutiUraDuet": 1570,
+ "scoreEasy": 1000920,
+ "scoreNormal": 1001480,
+ "scoreHard": 1001120,
+ "scoreMania": 1001100,
+ "scoreUra": 1570
+ },
+ {
+ "uniqueId": 26,
+ "id": "57mono",
+ "songFileName": "song_57mono",
+ "order": 1057,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5970,
+ "shinutiNormal": 3820,
+ "shinutiHard": 2340,
+ "shinutiMania": 1740,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5970,
+ "shinutiNormalDuet": 3820,
+ "shinutiHardDuet": 2340,
+ "shinutiManiaDuet": 1740,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001290,
+ "scoreNormal": 1001200,
+ "scoreHard": 1001740,
+ "scoreMania": 1004740,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 27,
+ "id": "59shin",
+ "songFileName": "song_59shin",
+ "order": 1059,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6750,
+ "shinutiNormal": 4230,
+ "shinutiHard": 2380,
+ "shinutiMania": 1750,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6750,
+ "shinutiNormalDuet": 4230,
+ "shinutiHardDuet": 2380,
+ "shinutiManiaDuet": 1750,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000750,
+ "scoreNormal": 1000120,
+ "scoreHard": 1003440,
+ "scoreMania": 1004150,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 28,
+ "id": "72mono",
+ "songFileName": "song_72mono",
+ "order": 1065,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 5420,
+ "shinutiNormal": 3240,
+ "shinutiHard": 1780,
+ "shinutiMania": 1360,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5420,
+ "shinutiNormalDuet": 3240,
+ "shinutiHardDuet": 1780,
+ "shinutiManiaDuet": 1360,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001640,
+ "scoreNormal": 1002660,
+ "scoreHard": 1001280,
+ "scoreMania": 1004980,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 29,
+ "id": "83noma",
+ "songFileName": "song_83noma",
+ "order": 1071,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 3890,
+ "shinutiNormal": 2100,
+ "shinutiHard": 1580,
+ "shinutiMania": 870,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3890,
+ "shinutiNormalDuet": 2100,
+ "shinutiHardDuet": 1580,
+ "shinutiManiaDuet": 870,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000170,
+ "scoreNormal": 1003800,
+ "scoreHard": 1006240,
+ "scoreMania": 1009860,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 30,
+ "id": "589him",
+ "songFileName": "song_589him",
+ "order": 1058,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9780,
+ "shinutiNormal": 6840,
+ "shinutiHard": 3500,
+ "shinutiMania": 2010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9780,
+ "shinutiNormalDuet": 6840,
+ "shinutiHardDuet": 3500,
+ "shinutiManiaDuet": 2010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000480,
+ "scoreNormal": 1000060,
+ "scoreHard": 1001400,
+ "scoreMania": 1003350,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 31,
+ "id": "4396bl",
+ "songFileName": "song_4396bl",
+ "order": 1052,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5310,
+ "shinutiNormal": 3670,
+ "shinutiHard": 2330,
+ "shinutiMania": 1730,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5310,
+ "shinutiNormalDuet": 3670,
+ "shinutiHardDuet": 2330,
+ "shinutiManiaDuet": 1730,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001560,
+ "scoreNormal": 1002400,
+ "scoreHard": 1001920,
+ "scoreMania": 1000810,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 32,
+ "id": "a3aaa",
+ "songFileName": "song_a3aaa",
+ "order": 1135,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 8,
+ "shinutiEasy": 16050,
+ "shinutiNormal": 12580,
+ "shinutiHard": 6180,
+ "shinutiMania": 3510,
+ "shinutiUra": 2250,
+ "shinutiEasyDuet": 16050,
+ "shinutiNormalDuet": 12580,
+ "shinutiHardDuet": 6180,
+ "shinutiManiaDuet": 3510,
+ "shinutiUraDuet": 2250,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000020,
+ "scoreHard": 1001080,
+ "scoreMania": 1002530,
+ "scoreUra": 2250
+ },
+ {
+ "uniqueId": 33,
+ "id": "a3cos",
+ "songFileName": "song_a3cos",
+ "order": 1136,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 15500,
+ "shinutiNormal": 9350,
+ "shinutiHard": 4440,
+ "shinutiMania": 3090,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15500,
+ "shinutiNormalDuet": 9350,
+ "shinutiHardDuet": 4440,
+ "shinutiManiaDuet": 3090,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1000700,
+ "scoreHard": 1001320,
+ "scoreMania": 1000310,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 34,
+ "id": "a3mank",
+ "songFileName": "song_a3mank",
+ "order": 1137,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 9750,
+ "shinutiNormal": 6950,
+ "shinutiHard": 4350,
+ "shinutiMania": 2770,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9750,
+ "shinutiNormalDuet": 6950,
+ "shinutiHardDuet": 4350,
+ "shinutiManiaDuet": 2770,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1000350,
+ "scoreHard": 1001950,
+ "scoreMania": 1003270,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 35,
+ "id": "ac2nad",
+ "songFileName": "song_ac2nad",
+ "order": 1138,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6370,
+ "shinutiNormal": 3830,
+ "shinutiHard": 2080,
+ "shinutiMania": 1430,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6370,
+ "shinutiNormalDuet": 3830,
+ "shinutiHardDuet": 2080,
+ "shinutiManiaDuet": 1430,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000620,
+ "scoreNormal": 1000870,
+ "scoreHard": 1004380,
+ "scoreMania": 1003940,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 36,
+ "id": "acex2",
+ "songFileName": "song_acex2",
+ "order": 1137,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6140,
+ "shinutiNormal": 4450,
+ "shinutiHard": 2010,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6140,
+ "shinutiNormalDuet": 4450,
+ "shinutiHardDuet": 2010,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000040,
+ "scoreNormal": 1001300,
+ "scoreHard": 1004030,
+ "scoreMania": 1006650,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 37,
+ "id": "adk",
+ "songFileName": "song_adk",
+ "order": 1142,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 8440,
+ "shinutiNormal": 7340,
+ "shinutiHard": 3690,
+ "shinutiMania": 1730,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8440,
+ "shinutiNormalDuet": 7340,
+ "shinutiHardDuet": 3690,
+ "shinutiManiaDuet": 1730,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000980,
+ "scoreNormal": 1000560,
+ "scoreHard": 1001030,
+ "scoreMania": 1001780,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 38,
+ "id": "ai7ndz",
+ "songFileName": "song_ai7ndz",
+ "order": 1148,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 9230,
+ "shinutiNormal": 5060,
+ "shinutiHard": 3270,
+ "shinutiMania": 1590,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9230,
+ "shinutiNormalDuet": 5060,
+ "shinutiHardDuet": 3270,
+ "shinutiManiaDuet": 1590,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000010,
+ "scoreNormal": 1001800,
+ "scoreHard": 1001500,
+ "scoreMania": 1005760,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 39,
+ "id": "ainokt",
+ "songFileName": "song_ainokt",
+ "order": 1151,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 16930,
+ "shinutiNormal": 14050,
+ "shinutiHard": 8100,
+ "shinutiMania": 5410,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16930,
+ "shinutiNormalDuet": 14050,
+ "shinutiHardDuet": 8100,
+ "shinutiManiaDuet": 5410,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000470,
+ "scoreNormal": 1000650,
+ "scoreHard": 1000400,
+ "scoreMania": 1001640,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 40,
+ "id": "aisowr",
+ "songFileName": "song_aisowr",
+ "order": 1152,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5380,
+ "shinutiNormal": 3230,
+ "shinutiHard": 2230,
+ "shinutiMania": 1660,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5380,
+ "shinutiNormalDuet": 3230,
+ "shinutiHardDuet": 2230,
+ "shinutiManiaDuet": 1660,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001800,
+ "scoreNormal": 1002440,
+ "scoreHard": 1001150,
+ "scoreMania": 1000000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 41,
+ "id": "aiuta",
+ "songFileName": "song_aiuta",
+ "order": 1153,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 2,
+ "starMania": 3,
+ "starUra": 0,
+ "shinutiEasy": 19200,
+ "shinutiNormal": 14880,
+ "shinutiHard": 8300,
+ "shinutiMania": 6870,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 19200,
+ "shinutiNormalDuet": 14880,
+ "shinutiHardDuet": 8300,
+ "shinutiManiaDuet": 6870,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1000260,
+ "scoreHard": 1000800,
+ "scoreMania": 1001150,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 42,
+ "id": "akanos",
+ "songFileName": "song_akanos",
+ "order": 1156,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5460,
+ "shinutiNormal": 3370,
+ "shinutiHard": 2000,
+ "shinutiMania": 1110,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5460,
+ "shinutiNormalDuet": 3370,
+ "shinutiHardDuet": 2000,
+ "shinutiManiaDuet": 1110,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000920,
+ "scoreNormal": 1000950,
+ "scoreHard": 1000200,
+ "scoreMania": 1006120,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 43,
+ "id": "akb365",
+ "songFileName": "song_akb365",
+ "order": 1159,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 10040,
+ "shinutiNormal": 7560,
+ "shinutiHard": 4660,
+ "shinutiMania": 3920,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10040,
+ "shinutiNormalDuet": 7560,
+ "shinutiHardDuet": 4660,
+ "shinutiManiaDuet": 3920,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000860,
+ "scoreNormal": 1000760,
+ "scoreHard": 1001420,
+ "scoreMania": 1002120,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 44,
+ "id": "akbfly",
+ "songFileName": "song_akbfly",
+ "order": 1161,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 9930,
+ "shinutiNormal": 8190,
+ "shinutiHard": 4100,
+ "shinutiMania": 3250,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9930,
+ "shinutiNormalDuet": 8190,
+ "shinutiHardDuet": 4100,
+ "shinutiManiaDuet": 3250,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1000690,
+ "scoreHard": 1002300,
+ "scoreMania": 1002600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 45,
+ "id": "akbftc",
+ "songFileName": "song_akbftc",
+ "order": 1162,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8340,
+ "shinutiNormal": 4880,
+ "shinutiHard": 2250,
+ "shinutiMania": 1860,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8340,
+ "shinutiNormalDuet": 4880,
+ "shinutiHardDuet": 2250,
+ "shinutiManiaDuet": 1860,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001120,
+ "scoreNormal": 1000780,
+ "scoreHard": 1000300,
+ "scoreMania": 1003940,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 46,
+ "id": "akbhvy",
+ "songFileName": "song_akbhvy",
+ "order": 1163,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 7330,
+ "shinutiNormal": 4780,
+ "shinutiHard": 2890,
+ "shinutiMania": 1940,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7330,
+ "shinutiNormalDuet": 4780,
+ "shinutiHardDuet": 2890,
+ "shinutiManiaDuet": 1940,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000850,
+ "scoreNormal": 1000380,
+ "scoreHard": 1001200,
+ "scoreMania": 1002080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 47,
+ "id": "akbkac",
+ "songFileName": "song_akbkac",
+ "order": 1164,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 6370,
+ "shinutiNormal": 4700,
+ "shinutiHard": 2710,
+ "shinutiMania": 1560,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6370,
+ "shinutiNormalDuet": 4700,
+ "shinutiHardDuet": 2710,
+ "shinutiManiaDuet": 1560,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001220,
+ "scoreNormal": 1001200,
+ "scoreHard": 1002050,
+ "scoreMania": 1000200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 48,
+ "id": "akukan",
+ "songFileName": "song_akukan",
+ "order": 1169,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6880,
+ "shinutiNormal": 4030,
+ "shinutiHard": 1600,
+ "shinutiMania": 1280,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6880,
+ "shinutiNormalDuet": 4030,
+ "shinutiHardDuet": 1600,
+ "shinutiManiaDuet": 1280,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001020,
+ "scoreNormal": 1000610,
+ "scoreHard": 1003900,
+ "scoreMania": 1001460,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 49,
+ "id": "alexan",
+ "songFileName": "song_alexan",
+ "order": 1170,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 8,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7610,
+ "shinutiNormal": 4000,
+ "shinutiHard": 1850,
+ "shinutiMania": 1540,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7610,
+ "shinutiNormalDuet": 4000,
+ "shinutiHardDuet": 1850,
+ "shinutiManiaDuet": 1540,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000800,
+ "scoreNormal": 1001400,
+ "scoreHard": 1004250,
+ "scoreMania": 1006160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 50,
+ "id": "allimh",
+ "songFileName": "song_allimh",
+ "order": 1171,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4730,
+ "shinutiNormal": 3590,
+ "shinutiHard": 2250,
+ "shinutiMania": 1420,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4730,
+ "shinutiNormalDuet": 3590,
+ "shinutiHardDuet": 2250,
+ "shinutiManiaDuet": 1420,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001130,
+ "scoreNormal": 1002120,
+ "scoreHard": 1004300,
+ "scoreMania": 1001180,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 51,
+ "id": "altale",
+ "songFileName": "song_altale",
+ "order": 1175,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 10,
+ "shinutiEasy": 8720,
+ "shinutiNormal": 6240,
+ "shinutiHard": 2780,
+ "shinutiMania": 1820,
+ "shinutiUra": 1210,
+ "shinutiEasyDuet": 8720,
+ "shinutiNormalDuet": 6240,
+ "shinutiHardDuet": 2780,
+ "shinutiManiaDuet": 1820,
+ "shinutiUraDuet": 1210,
+ "scoreEasy": 1000860,
+ "scoreNormal": 1000780,
+ "scoreHard": 1002120,
+ "scoreMania": 1004700,
+ "scoreUra": 1210
+ },
+ {
+ "uniqueId": 52,
+ "id": "alxwtr",
+ "songFileName": "song_alxwtr",
+ "order": 1177,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 11670,
+ "shinutiNormal": 6170,
+ "shinutiHard": 3390,
+ "shinutiMania": 2030,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11670,
+ "shinutiNormalDuet": 6170,
+ "shinutiHardDuet": 3390,
+ "shinutiManiaDuet": 2030,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000150,
+ "scoreNormal": 1001170,
+ "scoreHard": 1002470,
+ "scoreMania": 1001430,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 53,
+ "id": "amanda",
+ "songFileName": "song_amanda",
+ "order": 1179,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8230,
+ "shinutiNormal": 6450,
+ "shinutiHard": 3510,
+ "shinutiMania": 1920,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8230,
+ "shinutiNormalDuet": 6450,
+ "shinutiHardDuet": 3510,
+ "shinutiManiaDuet": 1920,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000830,
+ "scoreNormal": 1000900,
+ "scoreHard": 1001130,
+ "scoreMania": 1004160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 54,
+ "id": "amatrs",
+ "songFileName": "song_amatrs",
+ "order": 1182,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5220,
+ "shinutiNormal": 2810,
+ "shinutiHard": 1820,
+ "shinutiMania": 1160,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5220,
+ "shinutiNormalDuet": 2810,
+ "shinutiHardDuet": 1820,
+ "shinutiManiaDuet": 1160,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1002150,
+ "scoreHard": 1000620,
+ "scoreMania": 1000780,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 55,
+ "id": "amhero",
+ "songFileName": "song_amhero",
+ "order": 1183,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 16220,
+ "shinutiNormal": 11900,
+ "shinutiHard": 7880,
+ "shinutiMania": 3740,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16220,
+ "shinutiNormalDuet": 11900,
+ "shinutiHardDuet": 7880,
+ "shinutiManiaDuet": 3740,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1000000,
+ "scoreHard": 1001200,
+ "scoreMania": 1001800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 56,
+ "id": "amphit",
+ "songFileName": "song_amphit",
+ "order": 1184,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4960,
+ "shinutiNormal": 3230,
+ "shinutiHard": 2050,
+ "shinutiMania": 1200,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4960,
+ "shinutiNormalDuet": 3230,
+ "shinutiHardDuet": 2050,
+ "shinutiManiaDuet": 1200,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001260,
+ "scoreNormal": 1000340,
+ "scoreHard": 1002200,
+ "scoreMania": 1005800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 57,
+ "id": "anayuk",
+ "songFileName": "song_anayuk",
+ "order": 1192,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 2,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 8920,
+ "shinutiNormal": 6370,
+ "shinutiHard": 3420,
+ "shinutiMania": 2690,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8920,
+ "shinutiNormalDuet": 6370,
+ "shinutiHardDuet": 3420,
+ "shinutiManiaDuet": 2690,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1001250,
+ "scoreHard": 1001920,
+ "scoreMania": 1001190,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 58,
+ "id": "androm",
+ "songFileName": "song_androm",
+ "order": 1193,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6200,
+ "shinutiNormal": 4360,
+ "shinutiHard": 2890,
+ "shinutiMania": 1410,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6200,
+ "shinutiNormalDuet": 4360,
+ "shinutiHardDuet": 2890,
+ "shinutiManiaDuet": 1410,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001300,
+ "scoreNormal": 1000100,
+ "scoreHard": 1001590,
+ "scoreMania": 1005910,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 59,
+ "id": "angel2",
+ "songFileName": "song_angel2",
+ "order": 1194,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 4680,
+ "shinutiNormal": 3360,
+ "shinutiHard": 1880,
+ "shinutiMania": 1290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4680,
+ "shinutiNormalDuet": 3360,
+ "shinutiHardDuet": 1880,
+ "shinutiManiaDuet": 1290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001860,
+ "scoreNormal": 1000600,
+ "scoreHard": 1001280,
+ "scoreMania": 1000750,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 60,
+ "id": "angel3",
+ "songFileName": "song_angel3",
+ "order": 1195,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 4680,
+ "shinutiNormal": 3360,
+ "shinutiHard": 1890,
+ "shinutiMania": 1290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4680,
+ "shinutiNormalDuet": 3360,
+ "shinutiHardDuet": 1890,
+ "shinutiManiaDuet": 1290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000160,
+ "scoreNormal": 1000700,
+ "scoreHard": 1004740,
+ "scoreMania": 1002850,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 61,
+ "id": "angelb",
+ "songFileName": "song_angelb",
+ "order": 1196,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 11260,
+ "shinutiNormal": 8100,
+ "shinutiHard": 4170,
+ "shinutiMania": 2240,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11260,
+ "shinutiNormalDuet": 8100,
+ "shinutiHardDuet": 4170,
+ "shinutiManiaDuet": 2240,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000480,
+ "scoreNormal": 1000400,
+ "scoreHard": 1002090,
+ "scoreMania": 1002260,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 62,
+ "id": "animal",
+ "songFileName": "song_animal",
+ "order": 1197,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7260,
+ "shinutiNormal": 4930,
+ "shinutiHard": 2590,
+ "shinutiMania": 1480,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7260,
+ "shinutiNormalDuet": 4930,
+ "shinutiHardDuet": 2590,
+ "shinutiManiaDuet": 1480,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001020,
+ "scoreNormal": 1000860,
+ "scoreHard": 1003830,
+ "scoreMania": 1002280,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 63,
+ "id": "anohid",
+ "songFileName": "song_anohid",
+ "order": 1198,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4970,
+ "shinutiNormal": 3070,
+ "shinutiHard": 1950,
+ "shinutiMania": 1100,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4970,
+ "shinutiNormalDuet": 3070,
+ "shinutiHardDuet": 1950,
+ "shinutiManiaDuet": 1100,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001400,
+ "scoreNormal": 1001980,
+ "scoreHard": 1001350,
+ "scoreMania": 1003200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 64,
+ "id": "anp",
+ "songFileName": "song_anp",
+ "order": 1199,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 1,
+ "starHard": 5,
+ "starMania": 1,
+ "starUra": 0,
+ "shinutiEasy": 10740,
+ "shinutiNormal": 10130,
+ "shinutiHard": 3400,
+ "shinutiMania": 2490,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10740,
+ "shinutiNormalDuet": 10130,
+ "shinutiHardDuet": 3400,
+ "shinutiManiaDuet": 2490,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000820,
+ "scoreNormal": 1000540,
+ "scoreHard": 1000600,
+ "scoreMania": 1003400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 65,
+ "id": "antoni",
+ "songFileName": "song_antoni",
+ "order": 1205,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5970,
+ "shinutiNormal": 3800,
+ "shinutiHard": 2250,
+ "shinutiMania": 1380,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5970,
+ "shinutiNormalDuet": 3800,
+ "shinutiHardDuet": 2250,
+ "shinutiManiaDuet": 1380,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000120,
+ "scoreNormal": 1000200,
+ "scoreHard": 1004300,
+ "scoreMania": 1000120,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 66,
+ "id": "aonose",
+ "songFileName": "song_aonose",
+ "order": 1206,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 5890,
+ "shinutiNormal": 4280,
+ "shinutiHard": 2150,
+ "shinutiMania": 1080,
+ "shinutiUra": 1030,
+ "shinutiEasyDuet": 5890,
+ "shinutiNormalDuet": 4280,
+ "shinutiHardDuet": 2150,
+ "shinutiManiaDuet": 1080,
+ "shinutiUraDuet": 1030,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1001880,
+ "scoreHard": 1002350,
+ "scoreMania": 1007640,
+ "scoreUra": 1030
+ },
+ {
+ "uniqueId": 67,
+ "id": "aquari",
+ "songFileName": "song_aquari",
+ "order": 1208,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9660,
+ "shinutiNormal": 7420,
+ "shinutiHard": 4530,
+ "shinutiMania": 2760,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9660,
+ "shinutiNormalDuet": 7420,
+ "shinutiHardDuet": 4530,
+ "shinutiManiaDuet": 2760,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1000580,
+ "scoreHard": 1000570,
+ "scoreMania": 1002360,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 68,
+ "id": "armage",
+ "songFileName": "song_armage",
+ "order": 1213,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4540,
+ "shinutiNormal": 3800,
+ "shinutiHard": 2080,
+ "shinutiMania": 1010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4540,
+ "shinutiNormalDuet": 3800,
+ "shinutiHardDuet": 2080,
+ "shinutiManiaDuet": 1010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000620,
+ "scoreNormal": 1001800,
+ "scoreHard": 1001000,
+ "scoreMania": 1008990,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 69,
+ "id": "arufw",
+ "songFileName": "song_arufw",
+ "order": 1214,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5310,
+ "shinutiNormal": 3280,
+ "shinutiHard": 1680,
+ "shinutiMania": 1010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5310,
+ "shinutiNormalDuet": 3280,
+ "shinutiHardDuet": 1680,
+ "shinutiManiaDuet": 1010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001770,
+ "scoreNormal": 1002520,
+ "scoreHard": 1005720,
+ "scoreMania": 1007560,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 70,
+ "id": "asgbtb",
+ "songFileName": "song_asgbtb",
+ "order": 1216,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 8110,
+ "shinutiNormal": 5760,
+ "shinutiHard": 2520,
+ "shinutiMania": 1300,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8110,
+ "shinutiNormalDuet": 5760,
+ "shinutiHardDuet": 2520,
+ "shinutiManiaDuet": 1300,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000520,
+ "scoreNormal": 1001620,
+ "scoreHard": 1001180,
+ "scoreMania": 1005600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 71,
+ "id": "ashibe",
+ "songFileName": "song_ashibe",
+ "order": 1217,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 9,
+ "shinutiEasy": 24320,
+ "shinutiNormal": 17480,
+ "shinutiHard": 8670,
+ "shinutiMania": 6030,
+ "shinutiUra": 3350,
+ "shinutiEasyDuet": 24320,
+ "shinutiNormalDuet": 17480,
+ "shinutiHardDuet": 8670,
+ "shinutiManiaDuet": 6030,
+ "shinutiUraDuet": 3350,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1000060,
+ "scoreHard": 1000950,
+ "scoreMania": 1001350,
+ "scoreUra": 3350
+ },
+ {
+ "uniqueId": 72,
+ "id": "aslt",
+ "songFileName": "song_aslt",
+ "order": 1218,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 8660,
+ "shinutiNormal": 4870,
+ "shinutiHard": 2850,
+ "shinutiMania": 1900,
+ "shinutiUra": 1310,
+ "shinutiEasyDuet": 8660,
+ "shinutiNormalDuet": 4870,
+ "shinutiHardDuet": 2850,
+ "shinutiManiaDuet": 1900,
+ "shinutiUraDuet": 1310,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1001780,
+ "scoreHard": 1000100,
+ "scoreMania": 1001300,
+ "scoreUra": 1000860
+ },
+ {
+ "uniqueId": 73,
+ "id": "astero",
+ "songFileName": "song_astero",
+ "order": 1220,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6320,
+ "shinutiNormal": 4730,
+ "shinutiHard": 2280,
+ "shinutiMania": 1270,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6320,
+ "shinutiNormalDuet": 4730,
+ "shinutiHardDuet": 2280,
+ "shinutiManiaDuet": 1270,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001140,
+ "scoreNormal": 1000070,
+ "scoreHard": 1003040,
+ "scoreMania": 1007280,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 74,
+ "id": "aya10",
+ "songFileName": "song_aya10",
+ "order": 1229,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 5620,
+ "shinutiNormal": 4170,
+ "shinutiHard": 2700,
+ "shinutiMania": 1620,
+ "shinutiUra": 1310,
+ "shinutiEasyDuet": 5620,
+ "shinutiNormalDuet": 4170,
+ "shinutiHardDuet": 2700,
+ "shinutiManiaDuet": 1620,
+ "shinutiUraDuet": 1310,
+ "scoreEasy": 1001440,
+ "scoreNormal": 1000660,
+ "scoreHard": 1002300,
+ "scoreMania": 1004680,
+ "scoreUra": 1310
+ },
+ {
+ "uniqueId": 75,
+ "id": "ba9ma2",
+ "songFileName": "song_ba9ma2",
+ "order": 1231,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 3370,
+ "shinutiNormal": 1910,
+ "shinutiHard": 1240,
+ "shinutiMania": 890,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3370,
+ "shinutiNormalDuet": 1910,
+ "shinutiHardDuet": 1240,
+ "shinutiManiaDuet": 890,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001480,
+ "scoreNormal": 1004610,
+ "scoreHard": 1000240,
+ "scoreMania": 1005910,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 76,
+ "id": "batan9",
+ "songFileName": "song_batan9",
+ "order": 1238,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 13900,
+ "shinutiNormal": 6050,
+ "shinutiHard": 3340,
+ "shinutiMania": 1880,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13900,
+ "shinutiNormalDuet": 6050,
+ "shinutiHardDuet": 3340,
+ "shinutiManiaDuet": 1880,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1001400,
+ "scoreHard": 1002680,
+ "scoreMania": 1000140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 77,
+ "id": "bbb",
+ "songFileName": "song_bbb",
+ "order": 1240,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5570,
+ "shinutiNormal": 3430,
+ "shinutiHard": 2000,
+ "shinutiMania": 1140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5570,
+ "shinutiNormalDuet": 3430,
+ "shinutiHardDuet": 2000,
+ "shinutiManiaDuet": 1140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000160,
+ "scoreNormal": 1001970,
+ "scoreHard": 1001800,
+ "scoreMania": 1005220,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 78,
+ "id": "bbkkbk",
+ "songFileName": "song_bbkkbk",
+ "order": 1241,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4900,
+ "shinutiNormal": 3390,
+ "shinutiHard": 1930,
+ "shinutiMania": 1180,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4900,
+ "shinutiNormalDuet": 3390,
+ "shinutiHardDuet": 1930,
+ "shinutiManiaDuet": 1180,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1000770,
+ "scoreHard": 1001310,
+ "scoreMania": 1007340,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 79,
+ "id": "bburst",
+ "songFileName": "song_bburst",
+ "order": 1242,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 13020,
+ "shinutiNormal": 7310,
+ "shinutiHard": 3780,
+ "shinutiMania": 2200,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13020,
+ "shinutiNormalDuet": 7310,
+ "shinutiHardDuet": 3780,
+ "shinutiManiaDuet": 2200,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000020,
+ "scoreNormal": 1000750,
+ "scoreHard": 1000100,
+ "scoreMania": 1003700,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 80,
+ "id": "behemo",
+ "songFileName": "song_behemo",
+ "order": 1244,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5100,
+ "shinutiNormal": 3780,
+ "shinutiHard": 2170,
+ "shinutiMania": 1000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5100,
+ "shinutiNormalDuet": 3780,
+ "shinutiHardDuet": 2170,
+ "shinutiManiaDuet": 1000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000180,
+ "scoreHard": 1003630,
+ "scoreMania": 1004100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 81,
+ "id": "bforc",
+ "songFileName": "song_bforc",
+ "order": 1246,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5420,
+ "shinutiNormal": 3620,
+ "shinutiHard": 1980,
+ "shinutiMania": 1340,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5420,
+ "shinutiNormalDuet": 3620,
+ "shinutiHardDuet": 1980,
+ "shinutiManiaDuet": 1340,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001180,
+ "scoreNormal": 1000000,
+ "scoreHard": 1000120,
+ "scoreMania": 1004420,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 82,
+ "id": "bijoto",
+ "songFileName": "song_bijoto",
+ "order": 1247,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 16530,
+ "shinutiNormal": 11250,
+ "shinutiHard": 6950,
+ "shinutiMania": 6620,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16530,
+ "shinutiNormalDuet": 11250,
+ "shinutiHardDuet": 6950,
+ "shinutiManiaDuet": 6620,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000200,
+ "scoreHard": 1000700,
+ "scoreMania": 1000320,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 83,
+ "id": "bkline",
+ "songFileName": "song_bkline",
+ "order": 1248,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7070,
+ "shinutiNormal": 3700,
+ "shinutiHard": 1960,
+ "shinutiMania": 1650,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7070,
+ "shinutiNormalDuet": 3700,
+ "shinutiHardDuet": 1960,
+ "shinutiManiaDuet": 1650,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001000,
+ "scoreNormal": 1001600,
+ "scoreHard": 1004140,
+ "scoreMania": 1005550,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 84,
+ "id": "bkmntu",
+ "songFileName": "song_bkmntu",
+ "order": 1249,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6590,
+ "shinutiNormal": 4390,
+ "shinutiHard": 1990,
+ "shinutiMania": 1480,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6590,
+ "shinutiNormalDuet": 4390,
+ "shinutiHardDuet": 1990,
+ "shinutiManiaDuet": 1480,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001300,
+ "scoreNormal": 1000650,
+ "scoreHard": 1004480,
+ "scoreMania": 1005160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 85,
+ "id": "bko3",
+ "songFileName": "song_bko3",
+ "order": 1253,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 5520,
+ "shinutiNormal": 3820,
+ "shinutiHard": 2140,
+ "shinutiMania": 1720,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5520,
+ "shinutiNormalDuet": 3820,
+ "shinutiHardDuet": 2140,
+ "shinutiManiaDuet": 1720,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000300,
+ "scoreHard": 1003680,
+ "scoreMania": 1004040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 86,
+ "id": "bko22",
+ "songFileName": "song_bko22",
+ "order": 1252,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": true,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 3,
+ "starMania": 4,
+ "starUra": 8,
+ "shinutiEasy": 5380,
+ "shinutiNormal": 4240,
+ "shinutiHard": 3260,
+ "shinutiMania": 2350,
+ "shinutiUra": 1240,
+ "shinutiEasyDuet": 5380,
+ "shinutiNormalDuet": 4240,
+ "shinutiHardDuet": 3260,
+ "shinutiManiaDuet": 2350,
+ "shinutiUraDuet": 1240,
+ "scoreEasy": 1001280,
+ "scoreNormal": 1001440,
+ "scoreHard": 1000820,
+ "scoreMania": 1003450,
+ "scoreUra": 1240
+ },
+ {
+ "uniqueId": 87,
+ "id": "blazer",
+ "songFileName": "song_blazer",
+ "order": 1257,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4650,
+ "shinutiNormal": 3520,
+ "shinutiHard": 1770,
+ "shinutiMania": 1160,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4650,
+ "shinutiNormalDuet": 3520,
+ "shinutiHardDuet": 1770,
+ "shinutiManiaDuet": 1160,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000800,
+ "scoreNormal": 1000980,
+ "scoreHard": 1001890,
+ "scoreMania": 1006500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 88,
+ "id": "blrose",
+ "songFileName": "song_blrose",
+ "order": 1260,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 4040,
+ "shinutiNormal": 2950,
+ "shinutiHard": 2130,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4040,
+ "shinutiNormalDuet": 2950,
+ "shinutiHardDuet": 2130,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1001150,
+ "scoreHard": 1000780,
+ "scoreMania": 1003650,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 89,
+ "id": "bluert",
+ "songFileName": "song_bluert",
+ "order": 1261,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 8590,
+ "shinutiNormal": 5110,
+ "shinutiHard": 2390,
+ "shinutiMania": 1230,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8590,
+ "shinutiNormalDuet": 5110,
+ "shinutiHardDuet": 2390,
+ "shinutiManiaDuet": 1230,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000950,
+ "scoreNormal": 1001820,
+ "scoreHard": 1000490,
+ "scoreMania": 1007080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 90,
+ "id": "blzvtx",
+ "songFileName": "song_blzvtx",
+ "order": 1264,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 10,
+ "shinutiEasy": 3620,
+ "shinutiNormal": 2550,
+ "shinutiHard": 1440,
+ "shinutiMania": 1250,
+ "shinutiUra": 830,
+ "shinutiEasyDuet": 3620,
+ "shinutiNormalDuet": 2550,
+ "shinutiHardDuet": 1440,
+ "shinutiManiaDuet": 1250,
+ "shinutiUraDuet": 830,
+ "scoreEasy": 1002300,
+ "scoreNormal": 1001350,
+ "scoreHard": 1006060,
+ "scoreMania": 1005650,
+ "scoreUra": 830
+ },
+ {
+ "uniqueId": 91,
+ "id": "bn875",
+ "songFileName": "song_bn875",
+ "order": 1265,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9950,
+ "shinutiNormal": 5650,
+ "shinutiHard": 4600,
+ "shinutiMania": 2740,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9950,
+ "shinutiNormalDuet": 5650,
+ "shinutiHardDuet": 4600,
+ "shinutiManiaDuet": 2740,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1001000,
+ "scoreHard": 1001900,
+ "scoreMania": 1001260,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 92,
+ "id": "bnxmas",
+ "songFileName": "song_bnxmas",
+ "order": 1266,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8890,
+ "shinutiNormal": 6110,
+ "shinutiHard": 3710,
+ "shinutiMania": 2240,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8890,
+ "shinutiNormalDuet": 6110,
+ "shinutiHardDuet": 3710,
+ "shinutiManiaDuet": 2240,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000980,
+ "scoreNormal": 1000430,
+ "scoreHard": 1000190,
+ "scoreMania": 1002340,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 93,
+ "id": "bsdanc",
+ "songFileName": "song_bsdanc",
+ "order": 1278,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9760,
+ "shinutiNormal": 7420,
+ "shinutiHard": 5170,
+ "shinutiMania": 3720,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9760,
+ "shinutiNormalDuet": 7420,
+ "shinutiHardDuet": 5170,
+ "shinutiManiaDuet": 3720,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000820,
+ "scoreNormal": 1000980,
+ "scoreHard": 1001040,
+ "scoreMania": 1002420,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 94,
+ "id": "btu5ar",
+ "songFileName": "song_btu5ar",
+ "order": 1281,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 5050,
+ "shinutiNormal": 3020,
+ "shinutiHard": 1430,
+ "shinutiMania": 1020,
+ "shinutiUra": 1050,
+ "shinutiEasyDuet": 5050,
+ "shinutiNormalDuet": 3020,
+ "shinutiHardDuet": 1430,
+ "shinutiManiaDuet": 1020,
+ "shinutiUraDuet": 1050,
+ "scoreEasy": 1001850,
+ "scoreNormal": 1003280,
+ "scoreHard": 1001230,
+ "scoreMania": 1009020,
+ "scoreUra": 1050
+ },
+ {
+ "uniqueId": 95,
+ "id": "bugi",
+ "songFileName": "song_bugi",
+ "order": 1282,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7640,
+ "shinutiNormal": 5480,
+ "shinutiHard": 3230,
+ "shinutiMania": 1680,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7640,
+ "shinutiNormalDuet": 5480,
+ "shinutiHardDuet": 3230,
+ "shinutiManiaDuet": 1680,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000500,
+ "scoreNormal": 1000580,
+ "scoreHard": 1002910,
+ "scoreMania": 1001720,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 96,
+ "id": "bunkas",
+ "songFileName": "song_bunkas",
+ "order": 1283,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7720,
+ "shinutiNormal": 5290,
+ "shinutiHard": 3120,
+ "shinutiMania": 2060,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7720,
+ "shinutiNormalDuet": 5290,
+ "shinutiHardDuet": 3120,
+ "shinutiManiaDuet": 2060,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001180,
+ "scoreNormal": 1001220,
+ "scoreHard": 1001780,
+ "scoreMania": 1004540,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 97,
+ "id": "buru2",
+ "songFileName": "song_buru2",
+ "order": 1285,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9230,
+ "shinutiNormal": 5700,
+ "shinutiHard": 3870,
+ "shinutiMania": 1720,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9230,
+ "shinutiNormalDuet": 5700,
+ "shinutiHardDuet": 3870,
+ "shinutiManiaDuet": 1720,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000010,
+ "scoreNormal": 1000100,
+ "scoreHard": 1002480,
+ "scoreMania": 1000000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 98,
+ "id": "butou",
+ "songFileName": "song_butou",
+ "order": 1288,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6540,
+ "shinutiNormal": 3400,
+ "shinutiHard": 2120,
+ "shinutiMania": 1650,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6540,
+ "shinutiNormalDuet": 3400,
+ "shinutiHardDuet": 2120,
+ "shinutiManiaDuet": 1650,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001520,
+ "scoreNormal": 1000800,
+ "scoreHard": 1000020,
+ "scoreMania": 1003600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 99,
+ "id": "butou2",
+ "songFileName": "song_butou2",
+ "order": 1289,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": true,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 9,
+ "shinutiEasy": 5910,
+ "shinutiNormal": 4400,
+ "shinutiHard": 2650,
+ "shinutiMania": 1700,
+ "shinutiUra": 1770,
+ "shinutiEasyDuet": 5910,
+ "shinutiNormalDuet": 4400,
+ "shinutiHardDuet": 2650,
+ "shinutiManiaDuet": 1700,
+ "shinutiUraDuet": 1770,
+ "scoreEasy": 1001390,
+ "scoreNormal": 1002100,
+ "scoreHard": 1000700,
+ "scoreMania": 1001900,
+ "scoreUra": 1770
+ },
+ {
+ "uniqueId": 100,
+ "id": "butou3",
+ "songFileName": "song_butou3",
+ "order": 1290,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6060,
+ "shinutiNormal": 3450,
+ "shinutiHard": 2060,
+ "shinutiMania": 1210,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6060,
+ "shinutiNormalDuet": 3450,
+ "shinutiHardDuet": 2060,
+ "shinutiManiaDuet": 1210,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001140,
+ "scoreNormal": 1000950,
+ "scoreHard": 1004180,
+ "scoreMania": 1007120,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 101,
+ "id": "butou4",
+ "songFileName": "song_butou4",
+ "order": 1291,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7440,
+ "shinutiNormal": 5440,
+ "shinutiHard": 3330,
+ "shinutiMania": 1520,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7440,
+ "shinutiNormalDuet": 5440,
+ "shinutiHardDuet": 3330,
+ "shinutiManiaDuet": 1520,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000860,
+ "scoreNormal": 1000020,
+ "scoreHard": 1000500,
+ "scoreMania": 1005220,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 102,
+ "id": "butou5",
+ "songFileName": "song_butou5",
+ "order": 1292,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6930,
+ "shinutiNormal": 4430,
+ "shinutiHard": 2350,
+ "shinutiMania": 1290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6930,
+ "shinutiNormalDuet": 4430,
+ "shinutiHardDuet": 2350,
+ "shinutiManiaDuet": 1290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001420,
+ "scoreNormal": 1001150,
+ "scoreHard": 1000050,
+ "scoreMania": 1002730,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 103,
+ "id": "butou6",
+ "songFileName": "song_butou6",
+ "order": 1278,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6980,
+ "shinutiNormal": 4640,
+ "shinutiHard": 2770,
+ "shinutiMania": 1470,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6980,
+ "shinutiNormalDuet": 4640,
+ "shinutiHardDuet": 2770,
+ "shinutiManiaDuet": 1470,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000640,
+ "scoreNormal": 1000100,
+ "scoreHard": 1002470,
+ "scoreMania": 1000360,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 104,
+ "id": "butou7",
+ "songFileName": "song_butou7",
+ "order": 1294,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7390,
+ "shinutiNormal": 4980,
+ "shinutiHard": 2630,
+ "shinutiMania": 1540,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7390,
+ "shinutiNormalDuet": 4980,
+ "shinutiHardDuet": 2630,
+ "shinutiManiaDuet": 1540,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000450,
+ "scoreNormal": 1001200,
+ "scoreHard": 1001140,
+ "scoreMania": 1004740,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 105,
+ "id": "butou8",
+ "songFileName": "song_butou8",
+ "order": 1295,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7070,
+ "shinutiNormal": 5060,
+ "shinutiHard": 2400,
+ "shinutiMania": 1410,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7070,
+ "shinutiNormalDuet": 5060,
+ "shinutiHardDuet": 2400,
+ "shinutiManiaDuet": 1410,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001300,
+ "scoreNormal": 1001800,
+ "scoreHard": 1002400,
+ "scoreMania": 1005910,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 106,
+ "id": "byosin",
+ "songFileName": "song_byosin",
+ "order": 1300,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 15570,
+ "shinutiNormal": 8890,
+ "shinutiHard": 4190,
+ "shinutiMania": 2480,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15570,
+ "shinutiNormalDuet": 8890,
+ "shinutiHardDuet": 4190,
+ "shinutiManiaDuet": 2480,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000180,
+ "scoreNormal": 1000680,
+ "scoreHard": 1002120,
+ "scoreMania": 1002160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 107,
+ "id": "calc",
+ "songFileName": "song_calc",
+ "order": 1301,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 8830,
+ "shinutiNormal": 3000,
+ "shinutiHard": 1800,
+ "shinutiMania": 1290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8830,
+ "shinutiNormalDuet": 3000,
+ "shinutiHardDuet": 1800,
+ "shinutiManiaDuet": 1290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000430,
+ "scoreNormal": 1000600,
+ "scoreHard": 1000100,
+ "scoreMania": 1002330,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 108,
+ "id": "calib",
+ "songFileName": "song_calib",
+ "order": 1286,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6170,
+ "shinutiNormal": 5020,
+ "shinutiHard": 2800,
+ "shinutiMania": 1890,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6170,
+ "shinutiNormalDuet": 5020,
+ "shinutiHardDuet": 2800,
+ "shinutiManiaDuet": 1890,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001320,
+ "scoreNormal": 1000510,
+ "scoreHard": 1002380,
+ "scoreMania": 1000210,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 109,
+ "id": "calice",
+ "songFileName": "song_calice",
+ "order": 1307,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 8960,
+ "shinutiNormal": 4640,
+ "shinutiHard": 2780,
+ "shinutiMania": 1550,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8960,
+ "shinutiNormalDuet": 4640,
+ "shinutiHardDuet": 2780,
+ "shinutiManiaDuet": 1550,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1001360,
+ "scoreHard": 1001260,
+ "scoreMania": 1001750,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 110,
+ "id": "caramt",
+ "songFileName": "song_caramt",
+ "order": 1313,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5500,
+ "shinutiNormal": 4840,
+ "shinutiHard": 2090,
+ "shinutiMania": 1390,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5500,
+ "shinutiNormalDuet": 4840,
+ "shinutiHardDuet": 2090,
+ "shinutiManiaDuet": 1390,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000800,
+ "scoreNormal": 1000620,
+ "scoreHard": 1004560,
+ "scoreMania": 1003580,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 111,
+ "id": "caribb",
+ "songFileName": "song_caribb",
+ "order": 1314,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5900,
+ "shinutiNormal": 4020,
+ "shinutiHard": 2030,
+ "shinutiMania": 1240,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5900,
+ "shinutiNormalDuet": 4020,
+ "shinutiHardDuet": 2030,
+ "shinutiManiaDuet": 1240,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1001200,
+ "scoreHard": 1002480,
+ "scoreMania": 1004340,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 112,
+ "id": "carnat",
+ "songFileName": "song_carnat",
+ "order": 1315,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7620,
+ "shinutiNormal": 5240,
+ "shinutiHard": 3090,
+ "shinutiMania": 1970,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7620,
+ "shinutiNormalDuet": 5240,
+ "shinutiHardDuet": 3090,
+ "shinutiManiaDuet": 1970,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001200,
+ "scoreNormal": 1001660,
+ "scoreHard": 1001100,
+ "scoreMania": 1002620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 113,
+ "id": "carniv",
+ "songFileName": "song_carniv",
+ "order": 1316,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5000,
+ "shinutiNormal": 4210,
+ "shinutiHard": 2150,
+ "shinutiMania": 1280,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5000,
+ "shinutiNormalDuet": 4210,
+ "shinutiHardDuet": 2150,
+ "shinutiManiaDuet": 1280,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001100,
+ "scoreNormal": 1001960,
+ "scoreHard": 1003100,
+ "scoreMania": 1003560,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 114,
+ "id": "catdog",
+ "songFileName": "song_catdog",
+ "order": 1318,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 5840,
+ "shinutiNormal": 3530,
+ "shinutiHard": 2270,
+ "shinutiMania": 1570,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5840,
+ "shinutiNormalDuet": 3530,
+ "shinutiHardDuet": 2270,
+ "shinutiManiaDuet": 1570,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001540,
+ "scoreNormal": 1002690,
+ "scoreHard": 1003130,
+ "scoreMania": 1002580,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 115,
+ "id": "chaost",
+ "songFileName": "song_chaost",
+ "order": 1329,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 3730,
+ "shinutiNormal": 2900,
+ "shinutiHard": 1620,
+ "shinutiMania": 1000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3730,
+ "shinutiNormalDuet": 2900,
+ "shinutiHardDuet": 1620,
+ "shinutiManiaDuet": 1000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000980,
+ "scoreNormal": 1002900,
+ "scoreHard": 1002140,
+ "scoreMania": 1001200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 116,
+ "id": "chinas",
+ "songFileName": "song_chinas",
+ "order": 1332,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 6970,
+ "shinutiNormal": 4880,
+ "shinutiHard": 3170,
+ "shinutiMania": 2390,
+ "shinutiUra": 1660,
+ "shinutiEasyDuet": 6970,
+ "shinutiNormalDuet": 4880,
+ "shinutiHardDuet": 3170,
+ "shinutiManiaDuet": 2390,
+ "shinutiUraDuet": 1660,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1001640,
+ "scoreHard": 1001410,
+ "scoreMania": 1001760,
+ "scoreUra": 1660
+ },
+ {
+ "uniqueId": 117,
+ "id": "chn96b",
+ "songFileName": "song_chn96b",
+ "order": 1333,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 7330,
+ "shinutiNormal": 3190,
+ "shinutiHard": 2070,
+ "shinutiMania": 1410,
+ "shinutiUra": 1220,
+ "shinutiEasyDuet": 7330,
+ "shinutiNormalDuet": 3190,
+ "shinutiHardDuet": 2070,
+ "shinutiManiaDuet": 1410,
+ "shinutiUraDuet": 1220,
+ "scoreEasy": 1000250,
+ "scoreNormal": 1002860,
+ "scoreHard": 1003480,
+ "scoreMania": 1006830,
+ "scoreUra": 1220
+ },
+ {
+ "uniqueId": 118,
+ "id": "chn96n",
+ "songFileName": "song_chn96n",
+ "order": 1334,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 7890,
+ "shinutiNormal": 4150,
+ "shinutiHard": 2520,
+ "shinutiMania": 1680,
+ "shinutiUra": 1280,
+ "shinutiEasyDuet": 7890,
+ "shinutiNormalDuet": 4150,
+ "shinutiHardDuet": 2520,
+ "shinutiManiaDuet": 1680,
+ "shinutiUraDuet": 1280,
+ "scoreEasy": 1000550,
+ "scoreNormal": 1002200,
+ "scoreHard": 1002700,
+ "scoreMania": 1000840,
+ "scoreUra": 1280
+ },
+ {
+ "uniqueId": 119,
+ "id": "chn96t",
+ "songFileName": "song_chn96t",
+ "order": 1335,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 11770,
+ "shinutiNormal": 7980,
+ "shinutiHard": 4310,
+ "shinutiMania": 2290,
+ "shinutiUra": 1570,
+ "shinutiEasyDuet": 11770,
+ "shinutiNormalDuet": 7980,
+ "shinutiHardDuet": 4310,
+ "shinutiManiaDuet": 2290,
+ "shinutiUraDuet": 1570,
+ "scoreEasy": 1000380,
+ "scoreNormal": 1001140,
+ "scoreHard": 1001470,
+ "scoreMania": 1002050,
+ "scoreUra": 1570
+ },
+ {
+ "uniqueId": 120,
+ "id": "chozet",
+ "songFileName": "song_chozet",
+ "order": 1338,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4780,
+ "shinutiNormal": 3120,
+ "shinutiHard": 2240,
+ "shinutiMania": 1240,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4780,
+ "shinutiNormalDuet": 3120,
+ "shinutiHardDuet": 2240,
+ "shinutiManiaDuet": 1240,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000740,
+ "scoreNormal": 1000560,
+ "scoreHard": 1001180,
+ "scoreMania": 1005320,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 121,
+ "id": "clotho",
+ "songFileName": "song_clotho",
+ "order": 1344,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4230,
+ "shinutiNormal": 2590,
+ "shinutiHard": 1780,
+ "shinutiMania": 1020,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4230,
+ "shinutiNormalDuet": 2590,
+ "shinutiHardDuet": 1780,
+ "shinutiManiaDuet": 1020,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000250,
+ "scoreNormal": 1003050,
+ "scoreHard": 1004200,
+ "scoreMania": 1003460,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 122,
+ "id": "cls7",
+ "songFileName": "song_cls7",
+ "order": 1348,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8810,
+ "shinutiNormal": 5560,
+ "shinutiHard": 3020,
+ "shinutiMania": 1840,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8810,
+ "shinutiNormalDuet": 5560,
+ "shinutiHardDuet": 3020,
+ "shinutiManiaDuet": 1840,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000530,
+ "scoreNormal": 1000840,
+ "scoreHard": 1002880,
+ "scoreMania": 1003140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 123,
+ "id": "cls12r",
+ "songFileName": "song_cls12r",
+ "order": 1346,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 7510,
+ "shinutiNormal": 4820,
+ "shinutiHard": 1890,
+ "shinutiMania": 1180,
+ "shinutiUra": 1060,
+ "shinutiEasyDuet": 7510,
+ "shinutiNormalDuet": 4820,
+ "shinutiHardDuet": 1890,
+ "shinutiManiaDuet": 1180,
+ "shinutiUraDuet": 1060,
+ "scoreEasy": 1000420,
+ "scoreNormal": 1000100,
+ "scoreHard": 1001420,
+ "scoreMania": 1006860,
+ "scoreUra": 1060
+ },
+ {
+ "uniqueId": 124,
+ "id": "clsaip",
+ "songFileName": "song_clsaip",
+ "order": 1349,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7950,
+ "shinutiNormal": 5650,
+ "shinutiHard": 3260,
+ "shinutiMania": 2140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7950,
+ "shinutiNormalDuet": 5650,
+ "shinutiHardDuet": 3260,
+ "shinutiManiaDuet": 2140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001150,
+ "scoreNormal": 1000650,
+ "scoreHard": 1002980,
+ "scoreMania": 1003020,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 125,
+ "id": "clsbut",
+ "songFileName": "song_clsbut",
+ "order": 1353,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5150,
+ "shinutiNormal": 3770,
+ "shinutiHard": 1850,
+ "shinutiMania": 1280,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5150,
+ "shinutiNormalDuet": 3770,
+ "shinutiHardDuet": 1850,
+ "shinutiManiaDuet": 1280,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000250,
+ "scoreNormal": 1001080,
+ "scoreHard": 1004500,
+ "scoreMania": 1001080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 126,
+ "id": "clscds",
+ "songFileName": "song_clscds",
+ "order": 1356,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6700,
+ "shinutiNormal": 3330,
+ "shinutiHard": 2060,
+ "shinutiMania": 1160,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6700,
+ "shinutiNormalDuet": 3330,
+ "shinutiHardDuet": 2060,
+ "shinutiManiaDuet": 1160,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1002440,
+ "scoreHard": 1004560,
+ "scoreMania": 1007180,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 127,
+ "id": "clscif",
+ "songFileName": "song_clscif",
+ "order": 1357,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6830,
+ "shinutiNormal": 4770,
+ "shinutiHard": 2340,
+ "shinutiMania": 1350,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6830,
+ "shinutiNormalDuet": 4770,
+ "shinutiHardDuet": 2340,
+ "shinutiManiaDuet": 1350,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000250,
+ "scoreNormal": 1000220,
+ "scoreHard": 1002320,
+ "scoreMania": 1006300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 128,
+ "id": "clscpl",
+ "songFileName": "song_clscpl",
+ "order": 1358,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5470,
+ "shinutiNormal": 4080,
+ "shinutiHard": 2660,
+ "shinutiMania": 1370,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5470,
+ "shinutiNormalDuet": 4080,
+ "shinutiHardDuet": 2660,
+ "shinutiManiaDuet": 1370,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001040,
+ "scoreNormal": 1001040,
+ "scoreHard": 1002820,
+ "scoreMania": 1002910,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 129,
+ "id": "clscpr",
+ "songFileName": "song_clscpr",
+ "order": 1359,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6160,
+ "shinutiNormal": 4230,
+ "shinutiHard": 2160,
+ "shinutiMania": 1530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6160,
+ "shinutiNormalDuet": 4230,
+ "shinutiHardDuet": 2160,
+ "shinutiManiaDuet": 1530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000060,
+ "scoreNormal": 1001850,
+ "scoreHard": 1002600,
+ "scoreMania": 1004430,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 130,
+ "id": "clsdnu",
+ "songFileName": "song_clsdnu",
+ "order": 1336,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 10,
+ "shinutiEasy": 3580,
+ "shinutiNormal": 2800,
+ "shinutiHard": 2010,
+ "shinutiMania": 1370,
+ "shinutiUra": 960,
+ "shinutiEasyDuet": 3580,
+ "shinutiNormalDuet": 2800,
+ "shinutiHardDuet": 2010,
+ "shinutiManiaDuet": 1370,
+ "shinutiUraDuet": 960,
+ "scoreEasy": 1000020,
+ "scoreNormal": 1002440,
+ "scoreHard": 1004090,
+ "scoreMania": 1003820,
+ "scoreUra": 960
+ },
+ {
+ "uniqueId": 131,
+ "id": "clsdog",
+ "songFileName": "song_clsdog",
+ "order": 1361,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5120,
+ "shinutiNormal": 2740,
+ "shinutiHard": 1880,
+ "shinutiMania": 1140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5120,
+ "shinutiNormalDuet": 2740,
+ "shinutiHardDuet": 1880,
+ "shinutiManiaDuet": 1140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001780,
+ "scoreNormal": 1001620,
+ "scoreHard": 1002540,
+ "scoreMania": 1003380,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 132,
+ "id": "clsdok",
+ "songFileName": "song_clsdok",
+ "order": 1362,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7920,
+ "shinutiNormal": 4240,
+ "shinutiHard": 2760,
+ "shinutiMania": 1880,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7920,
+ "shinutiNormalDuet": 4240,
+ "shinutiHardDuet": 2760,
+ "shinutiManiaDuet": 1880,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001120,
+ "scoreNormal": 1000700,
+ "scoreHard": 1001760,
+ "scoreMania": 1002220,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 133,
+ "id": "clsgen",
+ "songFileName": "song_clsgen",
+ "order": 1366,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7770,
+ "shinutiNormal": 5120,
+ "shinutiHard": 2770,
+ "shinutiMania": 1790,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7770,
+ "shinutiNormalDuet": 5120,
+ "shinutiHardDuet": 2770,
+ "shinutiManiaDuet": 1790,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000960,
+ "scoreNormal": 1001600,
+ "scoreHard": 1001700,
+ "scoreMania": 1004820,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 134,
+ "id": "clsh69",
+ "songFileName": "song_clsh69",
+ "order": 1368,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 10270,
+ "shinutiNormal": 5150,
+ "shinutiHard": 3140,
+ "shinutiMania": 1620,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10270,
+ "shinutiNormalDuet": 5150,
+ "shinutiHardDuet": 3140,
+ "shinutiManiaDuet": 1620,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000390,
+ "scoreNormal": 1001450,
+ "scoreHard": 1002740,
+ "scoreMania": 1004620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 135,
+ "id": "clskum",
+ "songFileName": "song_clskum",
+ "order": 1351,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 8100,
+ "shinutiNormal": 7200,
+ "shinutiHard": 2670,
+ "shinutiMania": 1570,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8100,
+ "shinutiNormalDuet": 7200,
+ "shinutiHardDuet": 2670,
+ "shinutiManiaDuet": 1570,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000580,
+ "scoreNormal": 1000810,
+ "scoreHard": 1003320,
+ "scoreMania": 1001700,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 136,
+ "id": "clsmnk",
+ "songFileName": "song_clsmnk",
+ "order": 1382,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 4850,
+ "shinutiNormal": 3880,
+ "shinutiHard": 2110,
+ "shinutiMania": 1430,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4850,
+ "shinutiNormalDuet": 3880,
+ "shinutiHardDuet": 2110,
+ "shinutiManiaDuet": 1430,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001150,
+ "scoreNormal": 1001980,
+ "scoreHard": 1001100,
+ "scoreMania": 1005610,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 137,
+ "id": "clsmrs",
+ "songFileName": "song_clsmrs",
+ "order": 1383,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6140,
+ "shinutiNormal": 4180,
+ "shinutiHard": 2940,
+ "shinutiMania": 2560,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6140,
+ "shinutiNormalDuet": 4180,
+ "shinutiHardDuet": 2940,
+ "shinutiManiaDuet": 2560,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001100,
+ "scoreNormal": 1001420,
+ "scoreHard": 1000640,
+ "scoreMania": 1001860,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 138,
+ "id": "clspvn",
+ "songFileName": "song_clspvn",
+ "order": 1389,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 8,
+ "shinutiEasy": 8180,
+ "shinutiNormal": 5070,
+ "shinutiHard": 3310,
+ "shinutiMania": 2540,
+ "shinutiUra": 1630,
+ "shinutiEasyDuet": 8180,
+ "shinutiNormalDuet": 5070,
+ "shinutiHardDuet": 3310,
+ "shinutiManiaDuet": 2540,
+ "shinutiUraDuet": 1630,
+ "scoreEasy": 1000980,
+ "scoreNormal": 1000080,
+ "scoreHard": 1002270,
+ "scoreMania": 1001020,
+ "scoreUra": 1630
+ },
+ {
+ "uniqueId": 139,
+ "id": "clsrou",
+ "songFileName": "song_clsrou",
+ "order": 1392,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6450,
+ "shinutiNormal": 3950,
+ "shinutiHard": 2040,
+ "shinutiMania": 1520,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6450,
+ "shinutiNormalDuet": 3950,
+ "shinutiHardDuet": 2040,
+ "shinutiManiaDuet": 1520,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1000550,
+ "scoreHard": 1002020,
+ "scoreMania": 1004080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 140,
+ "id": "clssum",
+ "songFileName": "song_clssum",
+ "order": 1367,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4300,
+ "shinutiNormal": 2880,
+ "shinutiHard": 1710,
+ "shinutiMania": 1000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4300,
+ "shinutiNormalDuet": 2880,
+ "shinutiHardDuet": 1710,
+ "shinutiManiaDuet": 1000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000980,
+ "scoreNormal": 1001480,
+ "scoreHard": 1000220,
+ "scoreMania": 1008500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 141,
+ "id": "clsswn",
+ "songFileName": "song_clsswn",
+ "order": 1395,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 6930,
+ "shinutiNormal": 4090,
+ "shinutiHard": 2470,
+ "shinutiMania": 1640,
+ "shinutiUra": 1170,
+ "shinutiEasyDuet": 6930,
+ "shinutiNormalDuet": 4090,
+ "shinutiHardDuet": 2470,
+ "shinutiManiaDuet": 1640,
+ "shinutiUraDuet": 1170,
+ "scoreEasy": 1000520,
+ "scoreNormal": 1001770,
+ "scoreHard": 1002820,
+ "scoreMania": 1002500,
+ "scoreUra": 1170
+ },
+ {
+ "uniqueId": 142,
+ "id": "clstic",
+ "songFileName": "song_clstic",
+ "order": 1398,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4750,
+ "shinutiNormal": 3080,
+ "shinutiHard": 1870,
+ "shinutiMania": 1290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4750,
+ "shinutiNormalDuet": 3080,
+ "shinutiHardDuet": 1870,
+ "shinutiManiaDuet": 1290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1002620,
+ "scoreHard": 1002080,
+ "scoreMania": 1004040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 143,
+ "id": "clsvre",
+ "songFileName": "song_clsvre",
+ "order": 1404,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9050,
+ "shinutiNormal": 6450,
+ "shinutiHard": 3540,
+ "shinutiMania": 2830,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9050,
+ "shinutiNormalDuet": 6450,
+ "shinutiHardDuet": 3540,
+ "shinutiManiaDuet": 2830,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1001100,
+ "scoreHard": 1000000,
+ "scoreMania": 1002630,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 144,
+ "id": "clsw",
+ "songFileName": "song_clsw",
+ "order": 1377,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6090,
+ "shinutiNormal": 3860,
+ "shinutiHard": 2250,
+ "shinutiMania": 2230,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6090,
+ "shinutiNormalDuet": 3860,
+ "shinutiHardDuet": 2250,
+ "shinutiManiaDuet": 2230,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001300,
+ "scoreNormal": 1002110,
+ "scoreHard": 1003200,
+ "scoreMania": 1001990,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 145,
+ "id": "cnctcl",
+ "songFileName": "song_cnctcl",
+ "order": 1409,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 8430,
+ "shinutiNormal": 5820,
+ "shinutiHard": 2340,
+ "shinutiMania": 1150,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8430,
+ "shinutiNormalDuet": 5820,
+ "shinutiHardDuet": 2340,
+ "shinutiManiaDuet": 1150,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000010,
+ "scoreNormal": 1000580,
+ "scoreHard": 1002540,
+ "scoreMania": 1004800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 146,
+ "id": "comona",
+ "songFileName": "song_comona",
+ "order": 1381,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6280,
+ "shinutiNormal": 4570,
+ "shinutiHard": 2170,
+ "shinutiMania": 1350,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6280,
+ "shinutiNormalDuet": 4570,
+ "shinutiHardDuet": 2170,
+ "shinutiManiaDuet": 1350,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001460,
+ "scoreNormal": 1001980,
+ "scoreHard": 1004250,
+ "scoreMania": 1004400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 147,
+ "id": "confli",
+ "songFileName": "song_confli",
+ "order": 1411,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5420,
+ "shinutiNormal": 3730,
+ "shinutiHard": 1940,
+ "shinutiMania": 1350,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5420,
+ "shinutiNormalDuet": 3730,
+ "shinutiHardDuet": 1940,
+ "shinutiManiaDuet": 1350,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000160,
+ "scoreNormal": 1000150,
+ "scoreHard": 1005120,
+ "scoreMania": 1004300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 148,
+ "id": "coquet",
+ "songFileName": "song_coquet",
+ "order": 1412,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 3990,
+ "shinutiNormal": 2680,
+ "shinutiHard": 1880,
+ "shinutiMania": 980,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3990,
+ "shinutiNormalDuet": 2680,
+ "shinutiHardDuet": 1880,
+ "shinutiManiaDuet": 980,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1002410,
+ "scoreNormal": 1000920,
+ "scoreHard": 1004240,
+ "scoreMania": 1004360,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 149,
+ "id": "coro3",
+ "songFileName": "song_coro3",
+ "order": 1415,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 10370,
+ "shinutiNormal": 7410,
+ "shinutiHard": 4480,
+ "shinutiMania": 3480,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10370,
+ "shinutiNormalDuet": 7410,
+ "shinutiHardDuet": 4480,
+ "shinutiManiaDuet": 3480,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000720,
+ "scoreNormal": 1000940,
+ "scoreHard": 1001060,
+ "scoreMania": 1002100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 150,
+ "id": "crkvic",
+ "songFileName": "song_crkvic",
+ "order": 1420,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 3430,
+ "shinutiNormal": 2290,
+ "shinutiHard": 1810,
+ "shinutiMania": 1150,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3430,
+ "shinutiNormalDuet": 2290,
+ "shinutiHardDuet": 1810,
+ "shinutiManiaDuet": 1150,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1002170,
+ "scoreNormal": 1000880,
+ "scoreHard": 1000650,
+ "scoreMania": 1001800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 151,
+ "id": "crosbl",
+ "songFileName": "song_crosbl",
+ "order": 1421,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5510,
+ "shinutiNormal": 2980,
+ "shinutiHard": 1570,
+ "shinutiMania": 1040,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5510,
+ "shinutiNormalDuet": 2980,
+ "shinutiHardDuet": 1570,
+ "shinutiManiaDuet": 1040,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001300,
+ "scoreNormal": 1000140,
+ "scoreHard": 1002880,
+ "scoreMania": 1000480,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 152,
+ "id": "crtsun",
+ "songFileName": "song_crtsun",
+ "order": 1425,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 9410,
+ "shinutiNormal": 5220,
+ "shinutiHard": 2390,
+ "shinutiMania": 1630,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9410,
+ "shinutiNormalDuet": 5220,
+ "shinutiHardDuet": 2390,
+ "shinutiManiaDuet": 1630,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000650,
+ "scoreNormal": 1000680,
+ "scoreHard": 1002940,
+ "scoreMania": 1002800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 153,
+ "id": "csmclr",
+ "songFileName": "song_csmclr",
+ "order": 1432,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 4600,
+ "shinutiNormal": 2650,
+ "shinutiHard": 1660,
+ "shinutiMania": 1140,
+ "shinutiUra": 890,
+ "shinutiEasyDuet": 4600,
+ "shinutiNormalDuet": 2650,
+ "shinutiHardDuet": 1660,
+ "shinutiManiaDuet": 1140,
+ "shinutiUraDuet": 890,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1003450,
+ "scoreHard": 1005620,
+ "scoreMania": 1007940,
+ "scoreUra": 890
+ },
+ {
+ "uniqueId": 154,
+ "id": "csmdgn",
+ "songFileName": "song_csmdgn",
+ "order": 1399,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 10,
+ "shinutiEasy": 4430,
+ "shinutiNormal": 2910,
+ "shinutiHard": 1960,
+ "shinutiMania": 1080,
+ "shinutiUra": 860,
+ "shinutiEasyDuet": 4430,
+ "shinutiNormalDuet": 2910,
+ "shinutiHardDuet": 1960,
+ "shinutiManiaDuet": 1080,
+ "shinutiUraDuet": 860,
+ "scoreEasy": 1001390,
+ "scoreNormal": 1000180,
+ "scoreHard": 1002480,
+ "scoreMania": 1001040,
+ "scoreUra": 860
+ },
+ {
+ "uniqueId": 155,
+ "id": "csmmon",
+ "songFileName": "song_csmmon",
+ "order": 1434,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 10,
+ "shinutiEasy": 5370,
+ "shinutiNormal": 3760,
+ "shinutiHard": 1890,
+ "shinutiMania": 1030,
+ "shinutiUra": 770,
+ "shinutiEasyDuet": 5370,
+ "shinutiNormalDuet": 3760,
+ "shinutiHardDuet": 1890,
+ "shinutiManiaDuet": 1030,
+ "shinutiUraDuet": 770,
+ "scoreEasy": 1001710,
+ "scoreNormal": 1001600,
+ "scoreHard": 1003690,
+ "scoreMania": 1008030,
+ "scoreUra": 770
+ },
+ {
+ "uniqueId": 156,
+ "id": "d96can",
+ "songFileName": "song_d96can",
+ "order": 1437,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7150,
+ "shinutiNormal": 5050,
+ "shinutiHard": 2870,
+ "shinutiMania": 1270,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7150,
+ "shinutiNormalDuet": 5050,
+ "shinutiHardDuet": 2870,
+ "shinutiManiaDuet": 1270,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001150,
+ "scoreNormal": 1001200,
+ "scoreHard": 1003380,
+ "scoreMania": 1004190,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 157,
+ "id": "daiku",
+ "songFileName": "song_daiku",
+ "order": 1405,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 6230,
+ "shinutiNormal": 3960,
+ "shinutiHard": 3480,
+ "shinutiMania": 2530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6230,
+ "shinutiNormalDuet": 3960,
+ "shinutiHardDuet": 3480,
+ "shinutiManiaDuet": 2530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000180,
+ "scoreNormal": 1000700,
+ "scoreHard": 1002380,
+ "scoreMania": 1000340,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 158,
+ "id": "dariub",
+ "songFileName": "song_dariub",
+ "order": 1445,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 11870,
+ "shinutiNormal": 7960,
+ "shinutiHard": 3740,
+ "shinutiMania": 2090,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11870,
+ "shinutiNormalDuet": 7960,
+ "shinutiHardDuet": 3740,
+ "shinutiManiaDuet": 2090,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000110,
+ "scoreNormal": 1000080,
+ "scoreHard": 1001400,
+ "scoreMania": 1001440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 159,
+ "id": "daybyd",
+ "songFileName": "song_daybyd",
+ "order": 1452,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 4570,
+ "shinutiNormal": 3120,
+ "shinutiHard": 1900,
+ "shinutiMania": 1640,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4570,
+ "shinutiNormalDuet": 3120,
+ "shinutiHardDuet": 1900,
+ "shinutiManiaDuet": 1640,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000260,
+ "scoreNormal": 1001400,
+ "scoreHard": 1001700,
+ "scoreMania": 1005520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 160,
+ "id": "dbcgen",
+ "songFileName": "song_dbcgen",
+ "order": 1420,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": true,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 3,
+ "starUra": 8,
+ "shinutiEasy": 14380,
+ "shinutiNormal": 10560,
+ "shinutiHard": 5440,
+ "shinutiMania": 4990,
+ "shinutiUra": 1910,
+ "shinutiEasyDuet": 14380,
+ "shinutiNormalDuet": 10560,
+ "shinutiHardDuet": 5440,
+ "shinutiManiaDuet": 4990,
+ "shinutiUraDuet": 1910,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1000340,
+ "scoreHard": 1001380,
+ "scoreMania": 1000320,
+ "scoreUra": 1910
+ },
+ {
+ "uniqueId": 161,
+ "id": "dchero",
+ "songFileName": "song_dchero",
+ "order": 1458,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12260,
+ "shinutiNormal": 9820,
+ "shinutiHard": 5120,
+ "shinutiMania": 2310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12260,
+ "shinutiNormalDuet": 9820,
+ "shinutiHardDuet": 5120,
+ "shinutiManiaDuet": 2310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000260,
+ "scoreNormal": 1000720,
+ "scoreHard": 1000660,
+ "scoreMania": 1002540,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 162,
+ "id": "ddkmon",
+ "songFileName": "song_ddkmon",
+ "order": 1459,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7860,
+ "shinutiNormal": 4260,
+ "shinutiHard": 2670,
+ "shinutiMania": 1790,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7860,
+ "shinutiNormalDuet": 4260,
+ "shinutiHardDuet": 2670,
+ "shinutiManiaDuet": 1790,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000620,
+ "scoreNormal": 1000140,
+ "scoreHard": 1000110,
+ "scoreMania": 1000930,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 163,
+ "id": "ddrumt",
+ "songFileName": "song_ddrumt",
+ "order": 1460,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 3940,
+ "shinutiNormal": 2680,
+ "shinutiHard": 1640,
+ "shinutiMania": 1130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3940,
+ "shinutiNormalDuet": 2680,
+ "shinutiHardDuet": 1640,
+ "shinutiManiaDuet": 1130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1002160,
+ "scoreNormal": 1000380,
+ "scoreHard": 1004300,
+ "scoreMania": 1000060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 164,
+ "id": "deadie",
+ "songFileName": "song_deadie",
+ "order": 1462,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 3870,
+ "shinutiNormal": 2080,
+ "shinutiHard": 1440,
+ "shinutiMania": 910,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3870,
+ "shinutiNormalDuet": 2080,
+ "shinutiHardDuet": 1440,
+ "shinutiManiaDuet": 910,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000890,
+ "scoreNormal": 1003020,
+ "scoreHard": 1004740,
+ "scoreMania": 1005160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 165,
+ "id": "deathm",
+ "songFileName": "song_deathm",
+ "order": 1463,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 10400,
+ "shinutiNormal": 7180,
+ "shinutiHard": 3060,
+ "shinutiMania": 2090,
+ "shinutiUra": 2000,
+ "shinutiEasyDuet": 10400,
+ "shinutiNormalDuet": 7180,
+ "shinutiHardDuet": 3060,
+ "shinutiManiaDuet": 2090,
+ "shinutiUraDuet": 2000,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1001120,
+ "scoreHard": 1000260,
+ "scoreMania": 1003720,
+ "scoreUra": 2000
+ },
+ {
+ "uniqueId": 166,
+ "id": "debstp",
+ "songFileName": "song_debstp",
+ "order": 1427,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 3790,
+ "shinutiNormal": 2730,
+ "shinutiHard": 1820,
+ "shinutiMania": 1130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3790,
+ "shinutiNormalDuet": 2730,
+ "shinutiHardDuet": 1820,
+ "shinutiManiaDuet": 1130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000480,
+ "scoreNormal": 1003120,
+ "scoreHard": 1000420,
+ "scoreMania": 1003440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 167,
+ "id": "dem31k",
+ "songFileName": "song_dem31k",
+ "order": 1467,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8240,
+ "shinutiNormal": 5050,
+ "shinutiHard": 2380,
+ "shinutiMania": 1670,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8240,
+ "shinutiNormalDuet": 5050,
+ "shinutiHardDuet": 2380,
+ "shinutiManiaDuet": 1670,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1001850,
+ "scoreHard": 1004040,
+ "scoreMania": 1000810,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 168,
+ "id": "dema2m",
+ "songFileName": "song_dema2m",
+ "order": 1468,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5460,
+ "shinutiNormal": 3200,
+ "shinutiHard": 1790,
+ "shinutiMania": 1190,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5460,
+ "shinutiNormalDuet": 3200,
+ "shinutiHardDuet": 1790,
+ "shinutiManiaDuet": 1190,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000920,
+ "scoreNormal": 1000600,
+ "scoreHard": 1005310,
+ "scoreMania": 1001210,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 169,
+ "id": "demlev",
+ "songFileName": "song_demlev",
+ "order": 1469,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4460,
+ "shinutiNormal": 2430,
+ "shinutiHard": 1860,
+ "shinutiMania": 1320,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4460,
+ "shinutiNormalDuet": 2430,
+ "shinutiHardDuet": 1860,
+ "shinutiManiaDuet": 1320,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000780,
+ "scoreNormal": 1003830,
+ "scoreHard": 1003960,
+ "scoreMania": 1004280,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 170,
+ "id": "demmag",
+ "songFileName": "song_demmag",
+ "order": 1470,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 8540,
+ "shinutiNormal": 4430,
+ "shinutiHard": 2700,
+ "shinutiMania": 1350,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8540,
+ "shinutiNormalDuet": 4430,
+ "shinutiHardDuet": 2700,
+ "shinutiManiaDuet": 1350,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000740,
+ "scoreNormal": 1001190,
+ "scoreHard": 1003200,
+ "scoreMania": 1006300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 171,
+ "id": "demwis",
+ "songFileName": "song_demwis",
+ "order": 1471,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5520,
+ "shinutiNormal": 3510,
+ "shinutiHard": 2330,
+ "shinutiMania": 1620,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5520,
+ "shinutiNormalDuet": 3510,
+ "shinutiHardDuet": 2330,
+ "shinutiManiaDuet": 1620,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1001330,
+ "scoreHard": 1003640,
+ "scoreMania": 1002560,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 172,
+ "id": "den",
+ "songFileName": "song_den",
+ "order": 1472,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6140,
+ "shinutiNormal": 4030,
+ "shinutiHard": 1950,
+ "shinutiMania": 1280,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6140,
+ "shinutiNormalDuet": 4030,
+ "shinutiHardDuet": 1950,
+ "shinutiManiaDuet": 1280,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1000750,
+ "scoreHard": 1004650,
+ "scoreMania": 1002160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 173,
+ "id": "densfz",
+ "songFileName": "song_densfz",
+ "order": 1474,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6610,
+ "shinutiNormal": 3980,
+ "shinutiHard": 2200,
+ "shinutiMania": 1520,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6610,
+ "shinutiNormalDuet": 3980,
+ "shinutiHardDuet": 2200,
+ "shinutiManiaDuet": 1520,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001000,
+ "scoreNormal": 1001800,
+ "scoreHard": 1002400,
+ "scoreMania": 1006360,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 174,
+ "id": "densgo",
+ "songFileName": "song_densgo",
+ "order": 1475,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7650,
+ "shinutiNormal": 4840,
+ "shinutiHard": 2820,
+ "shinutiMania": 1780,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7650,
+ "shinutiNormalDuet": 4840,
+ "shinutiHardDuet": 2820,
+ "shinutiManiaDuet": 1780,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000900,
+ "scoreNormal": 1000500,
+ "scoreHard": 1000920,
+ "scoreMania": 1003800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 175,
+ "id": "densrr",
+ "songFileName": "song_densrr",
+ "order": 1476,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4980,
+ "shinutiNormal": 3310,
+ "shinutiHard": 2480,
+ "shinutiMania": 1650,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4980,
+ "shinutiNormalDuet": 3310,
+ "shinutiHardDuet": 2480,
+ "shinutiManiaDuet": 1650,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001700,
+ "scoreNormal": 1000300,
+ "scoreHard": 1002500,
+ "scoreMania": 1005700,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 176,
+ "id": "dhero2",
+ "songFileName": "song_dhero2",
+ "order": 1478,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8800,
+ "shinutiNormal": 7940,
+ "shinutiHard": 4390,
+ "shinutiMania": 2920,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8800,
+ "shinutiNormalDuet": 7940,
+ "shinutiHardDuet": 4390,
+ "shinutiManiaDuet": 2920,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1000300,
+ "scoreHard": 1001940,
+ "scoreMania": 1000620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 177,
+ "id": "dhero3",
+ "songFileName": "song_dhero3",
+ "order": 1479,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 13510,
+ "shinutiNormal": 8340,
+ "shinutiHard": 4250,
+ "shinutiMania": 2710,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13510,
+ "shinutiNormalDuet": 8340,
+ "shinutiHardDuet": 4250,
+ "shinutiManiaDuet": 2710,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000330,
+ "scoreNormal": 1000120,
+ "scoreHard": 1000900,
+ "scoreMania": 1001250,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 178,
+ "id": "dhero4",
+ "songFileName": "song_dhero4",
+ "order": 1480,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12060,
+ "shinutiNormal": 8590,
+ "shinutiHard": 4250,
+ "shinutiMania": 2540,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12060,
+ "shinutiNormalDuet": 8590,
+ "shinutiHardDuet": 4250,
+ "shinutiManiaDuet": 2540,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000020,
+ "scoreNormal": 1000250,
+ "scoreHard": 1002000,
+ "scoreMania": 1001060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 179,
+ "id": "dhero5",
+ "songFileName": "song_dhero5",
+ "order": 1481,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 15240,
+ "shinutiNormal": 8110,
+ "shinutiHard": 4000,
+ "shinutiMania": 2860,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15240,
+ "shinutiNormalDuet": 8110,
+ "shinutiHardDuet": 4000,
+ "shinutiManiaDuet": 2860,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1000520,
+ "scoreHard": 1002300,
+ "scoreMania": 1000980,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 180,
+ "id": "dimens",
+ "songFileName": "song_dimens",
+ "order": 1486,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 11950,
+ "shinutiNormal": 8210,
+ "shinutiHard": 2790,
+ "shinutiMania": 1860,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11950,
+ "shinutiNormalDuet": 8210,
+ "shinutiHardDuet": 2790,
+ "shinutiManiaDuet": 1860,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000800,
+ "scoreHard": 1001960,
+ "scoreMania": 1002800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 181,
+ "id": "dmjojo",
+ "songFileName": "song_dmjojo",
+ "order": 1495,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 13090,
+ "shinutiNormal": 7000,
+ "shinutiHard": 4170,
+ "shinutiMania": 2060,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13090,
+ "shinutiNormalDuet": 7000,
+ "shinutiHardDuet": 4170,
+ "shinutiManiaDuet": 2060,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000440,
+ "scoreNormal": 1000900,
+ "scoreHard": 1000460,
+ "scoreMania": 1002840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 182,
+ "id": "dobbsk",
+ "songFileName": "song_dobbsk",
+ "order": 1500,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 7740,
+ "shinutiNormal": 4560,
+ "shinutiHard": 2480,
+ "shinutiMania": 1710,
+ "shinutiUra": 1160,
+ "shinutiEasyDuet": 7740,
+ "shinutiNormalDuet": 4560,
+ "shinutiHardDuet": 2480,
+ "shinutiManiaDuet": 1710,
+ "shinutiUraDuet": 1160,
+ "scoreEasy": 1000120,
+ "scoreNormal": 1001820,
+ "scoreHard": 1003020,
+ "scoreMania": 1004200,
+ "scoreUra": 1160
+ },
+ {
+ "uniqueId": 183,
+ "id": "dobfav",
+ "songFileName": "song_dobfav",
+ "order": 1502,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10330,
+ "shinutiNormal": 5720,
+ "shinutiHard": 2990,
+ "shinutiMania": 1960,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10330,
+ "shinutiNormalDuet": 5720,
+ "shinutiHardDuet": 2990,
+ "shinutiManiaDuet": 1960,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000680,
+ "scoreNormal": 1000760,
+ "scoreHard": 1001890,
+ "scoreMania": 1004180,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 184,
+ "id": "dobma2",
+ "songFileName": "song_dobma2",
+ "order": 1507,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8550,
+ "shinutiNormal": 5620,
+ "shinutiHard": 2990,
+ "shinutiMania": 2120,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8550,
+ "shinutiNormalDuet": 5620,
+ "shinutiHardDuet": 2990,
+ "shinutiManiaDuet": 2120,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1001720,
+ "scoreHard": 1001900,
+ "scoreMania": 1003760,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 185,
+ "id": "doctrx",
+ "songFileName": "song_doctrx",
+ "order": 1509,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6880,
+ "shinutiNormal": 3690,
+ "shinutiHard": 2110,
+ "shinutiMania": 1560,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6880,
+ "shinutiNormalDuet": 3690,
+ "shinutiHardDuet": 2110,
+ "shinutiManiaDuet": 1560,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000640,
+ "scoreNormal": 1002110,
+ "scoreHard": 1003510,
+ "scoreMania": 1002420,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 186,
+ "id": "dogbit",
+ "songFileName": "song_dogbit",
+ "order": 1510,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4960,
+ "shinutiNormal": 3250,
+ "shinutiHard": 2040,
+ "shinutiMania": 1220,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4960,
+ "shinutiNormalDuet": 3250,
+ "shinutiHardDuet": 2040,
+ "shinutiManiaDuet": 1220,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1000250,
+ "scoreHard": 1001620,
+ "scoreMania": 1001940,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 187,
+ "id": "dogma1",
+ "songFileName": "song_dogma1",
+ "order": 1511,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 10,
+ "shinutiEasy": 3430,
+ "shinutiNormal": 1980,
+ "shinutiHard": 1470,
+ "shinutiMania": 1140,
+ "shinutiUra": 790,
+ "shinutiEasyDuet": 3430,
+ "shinutiNormalDuet": 1980,
+ "shinutiHardDuet": 1470,
+ "shinutiManiaDuet": 1140,
+ "shinutiUraDuet": 790,
+ "scoreEasy": 1001350,
+ "scoreNormal": 1002850,
+ "scoreHard": 1003870,
+ "scoreMania": 1003850,
+ "scoreUra": 1003540
+ },
+ {
+ "uniqueId": 188,
+ "id": "doncam",
+ "songFileName": "song_doncam",
+ "order": 1516,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 2930,
+ "shinutiNormal": 2080,
+ "shinutiHard": 1710,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 2930,
+ "shinutiNormalDuet": 2080,
+ "shinutiHardDuet": 1710,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1002060,
+ "scoreNormal": 1000480,
+ "scoreHard": 1005480,
+ "scoreMania": 1002150,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 189,
+ "id": "dora4",
+ "songFileName": "song_dora4",
+ "order": 1523,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 2,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 10960,
+ "shinutiNormal": 10060,
+ "shinutiHard": 5220,
+ "shinutiMania": 3120,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10960,
+ "shinutiNormalDuet": 10060,
+ "shinutiHardDuet": 5220,
+ "shinutiManiaDuet": 3120,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000760,
+ "scoreNormal": 1000740,
+ "scoreHard": 1001820,
+ "scoreMania": 1001520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 190,
+ "id": "dparad",
+ "songFileName": "song_dparad",
+ "order": 1527,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12250,
+ "shinutiNormal": 7930,
+ "shinutiHard": 2920,
+ "shinutiMania": 2030,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12250,
+ "shinutiNormalDuet": 7930,
+ "shinutiHardDuet": 2920,
+ "shinutiManiaDuet": 2030,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1001090,
+ "scoreHard": 1001780,
+ "scoreMania": 1001940,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 191,
+ "id": "dptfct",
+ "songFileName": "song_dptfct",
+ "order": 1529,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4560,
+ "shinutiNormal": 3180,
+ "shinutiHard": 1960,
+ "shinutiMania": 1290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4560,
+ "shinutiNormalDuet": 3180,
+ "shinutiHardDuet": 1960,
+ "shinutiManiaDuet": 1290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001540,
+ "scoreNormal": 1000840,
+ "scoreHard": 1000180,
+ "scoreMania": 1003230,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 192,
+ "id": "dragoo",
+ "songFileName": "song_dragoo",
+ "order": 1535,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4540,
+ "shinutiNormal": 2500,
+ "shinutiHard": 1750,
+ "shinutiMania": 1290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4540,
+ "shinutiNormalDuet": 2500,
+ "shinutiHardDuet": 1750,
+ "shinutiManiaDuet": 1290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001000,
+ "scoreNormal": 1002900,
+ "scoreHard": 1004100,
+ "scoreMania": 1001650,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 193,
+ "id": "dreadn",
+ "songFileName": "song_dreadn",
+ "order": 1537,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 6030,
+ "shinutiNormal": 3880,
+ "shinutiHard": 2810,
+ "shinutiMania": 1540,
+ "shinutiUra": 930,
+ "shinutiEasyDuet": 6030,
+ "shinutiNormalDuet": 3880,
+ "shinutiHardDuet": 2810,
+ "shinutiManiaDuet": 1540,
+ "shinutiUraDuet": 930,
+ "scoreEasy": 1001220,
+ "scoreNormal": 1002320,
+ "scoreHard": 1001690,
+ "scoreMania": 1002680,
+ "scoreUra": 930
+ },
+ {
+ "uniqueId": 194,
+ "id": "dreamt",
+ "songFileName": "song_dreamt",
+ "order": 1538,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9200,
+ "shinutiNormal": 6050,
+ "shinutiHard": 2820,
+ "shinutiMania": 1780,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9200,
+ "shinutiNormalDuet": 6050,
+ "shinutiHardDuet": 2820,
+ "shinutiManiaDuet": 1780,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000200,
+ "scoreHard": 1002080,
+ "scoreMania": 1003940,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 195,
+ "id": "drsp",
+ "songFileName": "song_drsp",
+ "order": 1541,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 5070,
+ "shinutiNormal": 2710,
+ "shinutiHard": 1490,
+ "shinutiMania": 1490,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5070,
+ "shinutiNormalDuet": 2710,
+ "shinutiHardDuet": 1490,
+ "shinutiManiaDuet": 1490,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001090,
+ "scoreNormal": 1000480,
+ "scoreHard": 1000390,
+ "scoreMania": 1000590,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 196,
+ "id": "druaga",
+ "songFileName": "song_druaga",
+ "order": 1543,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 4720,
+ "shinutiNormal": 3720,
+ "shinutiHard": 1650,
+ "shinutiMania": 1470,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4720,
+ "shinutiNormalDuet": 3720,
+ "shinutiHardDuet": 1650,
+ "shinutiManiaDuet": 1470,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001740,
+ "scoreNormal": 1002080,
+ "scoreHard": 1002650,
+ "scoreMania": 1004140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 197,
+ "id": "dsadvn",
+ "songFileName": "song_dsadvn",
+ "order": 1553,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 3670,
+ "shinutiNormal": 2810,
+ "shinutiHard": 1550,
+ "shinutiMania": 1150,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3670,
+ "shinutiNormalDuet": 2810,
+ "shinutiHardDuet": 1550,
+ "shinutiManiaDuet": 1150,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1002640,
+ "scoreNormal": 1002960,
+ "scoreHard": 1005600,
+ "scoreMania": 1002800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 198,
+ "id": "dsgame",
+ "songFileName": "song_dsgame",
+ "order": 1554,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4560,
+ "shinutiNormal": 3050,
+ "shinutiHard": 1990,
+ "shinutiMania": 1180,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4560,
+ "shinutiNormalDuet": 3050,
+ "shinutiHardDuet": 1990,
+ "shinutiManiaDuet": 1180,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001280,
+ "scoreNormal": 1001100,
+ "scoreHard": 1000210,
+ "scoreMania": 1004080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 199,
+ "id": "eatem",
+ "songFileName": "song_eatem",
+ "order": 1509,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6790,
+ "shinutiNormal": 4730,
+ "shinutiHard": 3090,
+ "shinutiMania": 1650,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6790,
+ "shinutiNormalDuet": 4730,
+ "shinutiHardDuet": 3090,
+ "shinutiManiaDuet": 1650,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000140,
+ "scoreNormal": 1001370,
+ "scoreHard": 1001390,
+ "scoreMania": 1000400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 200,
+ "id": "ebika2",
+ "songFileName": "song_ebika2",
+ "order": 1560,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 15090,
+ "shinutiNormal": 10250,
+ "shinutiHard": 4260,
+ "shinutiMania": 2830,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15090,
+ "shinutiNormalDuet": 10250,
+ "shinutiHardDuet": 4260,
+ "shinutiManiaDuet": 2830,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000440,
+ "scoreNormal": 1000150,
+ "scoreHard": 1000140,
+ "scoreMania": 1002290,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 201,
+ "id": "egoego",
+ "songFileName": "song_egoego",
+ "order": 1563,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5160,
+ "shinutiNormal": 3830,
+ "shinutiHard": 2120,
+ "shinutiMania": 1410,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5160,
+ "shinutiNormalDuet": 3830,
+ "shinutiHardDuet": 2120,
+ "shinutiManiaDuet": 1410,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000680,
+ "scoreNormal": 1002200,
+ "scoreHard": 1004000,
+ "scoreMania": 1003460,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 202,
+ "id": "ekiben",
+ "songFileName": "song_ekiben",
+ "order": 1565,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 3590,
+ "shinutiNormal": 2710,
+ "shinutiHard": 1590,
+ "shinutiMania": 1140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3590,
+ "shinutiNormalDuet": 2710,
+ "shinutiHardDuet": 1590,
+ "shinutiManiaDuet": 1140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000720,
+ "scoreNormal": 1000680,
+ "scoreHard": 1006290,
+ "scoreMania": 1003040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 203,
+ "id": "elegy",
+ "songFileName": "song_elegy",
+ "order": 1566,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 13280,
+ "shinutiNormal": 5820,
+ "shinutiHard": 3360,
+ "shinutiMania": 2020,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13280,
+ "shinutiNormalDuet": 5820,
+ "shinutiHardDuet": 3360,
+ "shinutiManiaDuet": 2020,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1001020,
+ "scoreHard": 1001200,
+ "scoreMania": 1004920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 204,
+ "id": "eoria",
+ "songFileName": "song_eoria",
+ "order": 1573,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6390,
+ "shinutiNormal": 4180,
+ "shinutiHard": 2340,
+ "shinutiMania": 1770,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6390,
+ "shinutiNormalDuet": 4180,
+ "shinutiHardDuet": 2340,
+ "shinutiManiaDuet": 1770,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001250,
+ "scoreNormal": 1000960,
+ "scoreHard": 1003280,
+ "scoreMania": 1003110,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 205,
+ "id": "erfanc",
+ "songFileName": "song_erfanc",
+ "order": 1574,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7200,
+ "shinutiNormal": 4150,
+ "shinutiHard": 2540,
+ "shinutiMania": 1840,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7200,
+ "shinutiNormalDuet": 4150,
+ "shinutiHardDuet": 2540,
+ "shinutiManiaDuet": 1840,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1000200,
+ "scoreHard": 1001080,
+ "scoreMania": 1001460,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 206,
+ "id": "espera",
+ "songFileName": "song_espera",
+ "order": 1575,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 5550,
+ "shinutiNormal": 3420,
+ "shinutiHard": 2630,
+ "shinutiMania": 1960,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5550,
+ "shinutiNormalDuet": 3420,
+ "shinutiHardDuet": 2630,
+ "shinutiManiaDuet": 1960,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001400,
+ "scoreNormal": 1002140,
+ "scoreHard": 1000040,
+ "scoreMania": 1002720,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 207,
+ "id": "etbond",
+ "songFileName": "song_etbond",
+ "order": 1576,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 3260,
+ "shinutiNormal": 2710,
+ "shinutiHard": 2050,
+ "shinutiMania": 1570,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3260,
+ "shinutiNormalDuet": 2710,
+ "shinutiHardDuet": 2050,
+ "shinutiManiaDuet": 1570,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000960,
+ "scoreNormal": 1001780,
+ "scoreHard": 1004150,
+ "scoreMania": 1001350,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 208,
+ "id": "etring",
+ "songFileName": "song_etring",
+ "order": 1577,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6400,
+ "shinutiNormal": 3610,
+ "shinutiHard": 2500,
+ "shinutiMania": 1110,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6400,
+ "shinutiNormalDuet": 3610,
+ "shinutiHardDuet": 2500,
+ "shinutiManiaDuet": 1110,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000500,
+ "scoreNormal": 1000120,
+ "scoreHard": 1001900,
+ "scoreMania": 1008620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 209,
+ "id": "evedrm",
+ "songFileName": "song_evedrm",
+ "order": 1580,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 5,
+ "starUra": 8,
+ "shinutiEasy": 16570,
+ "shinutiNormal": 11290,
+ "shinutiHard": 7560,
+ "shinutiMania": 4960,
+ "shinutiUra": 2320,
+ "shinutiEasyDuet": 16570,
+ "shinutiNormalDuet": 11290,
+ "shinutiHardDuet": 7560,
+ "shinutiManiaDuet": 4960,
+ "shinutiUraDuet": 2320,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1000720,
+ "scoreHard": 1000560,
+ "scoreMania": 1000840,
+ "scoreUra": 2320
+ },
+ {
+ "uniqueId": 210,
+ "id": "evensb",
+ "songFileName": "song_evensb",
+ "order": 1582,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 18440,
+ "shinutiNormal": 8150,
+ "shinutiHard": 4640,
+ "shinutiMania": 2400,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18440,
+ "shinutiNormalDuet": 8150,
+ "shinutiHardDuet": 4640,
+ "shinutiManiaDuet": 2400,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000160,
+ "scoreNormal": 1000700,
+ "scoreHard": 1001560,
+ "scoreMania": 1000400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 211,
+ "id": "evievi",
+ "songFileName": "song_evievi",
+ "order": 1583,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 3150,
+ "shinutiNormal": 2550,
+ "shinutiHard": 1770,
+ "shinutiMania": 1230,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3150,
+ "shinutiNormalDuet": 2550,
+ "shinutiHardDuet": 1770,
+ "shinutiManiaDuet": 1230,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001950,
+ "scoreNormal": 1001350,
+ "scoreHard": 1002880,
+ "scoreMania": 1003720,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 212,
+ "id": "fa3res",
+ "songFileName": "song_fa3res",
+ "order": 1591,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8200,
+ "shinutiNormal": 5030,
+ "shinutiHard": 2560,
+ "shinutiMania": 1370,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8200,
+ "shinutiNormalDuet": 5030,
+ "shinutiHardDuet": 2560,
+ "shinutiManiaDuet": 1370,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1001310,
+ "scoreHard": 1000820,
+ "scoreMania": 1002410,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 213,
+ "id": "fauna",
+ "songFileName": "song_fauna",
+ "order": 1594,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5300,
+ "shinutiNormal": 3390,
+ "shinutiHard": 1750,
+ "shinutiMania": 1290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5300,
+ "shinutiNormalDuet": 3390,
+ "shinutiHardDuet": 1750,
+ "shinutiManiaDuet": 1290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1001370,
+ "scoreHard": 1005150,
+ "scoreMania": 1006200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 214,
+ "id": "fcmedl",
+ "songFileName": "song_fcmedl",
+ "order": 1595,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6580,
+ "shinutiNormal": 4440,
+ "shinutiHard": 2420,
+ "shinutiMania": 1440,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6580,
+ "shinutiNormalDuet": 4440,
+ "shinutiHardDuet": 2420,
+ "shinutiManiaDuet": 1440,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1001780,
+ "scoreHard": 1003760,
+ "scoreMania": 1003700,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 215,
+ "id": "flabo",
+ "songFileName": "song_flabo",
+ "order": 1603,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5970,
+ "shinutiNormal": 4170,
+ "shinutiHard": 2070,
+ "shinutiMania": 1490,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5970,
+ "shinutiNormalDuet": 4170,
+ "shinutiHardDuet": 2070,
+ "shinutiManiaDuet": 1490,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000490,
+ "scoreNormal": 1000130,
+ "scoreHard": 1002740,
+ "scoreMania": 1006280,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 216,
+ "id": "fltlnd",
+ "songFileName": "song_fltlnd",
+ "order": 1608,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4970,
+ "shinutiNormal": 2450,
+ "shinutiHard": 1760,
+ "shinutiMania": 1350,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4970,
+ "shinutiNormalDuet": 2450,
+ "shinutiHardDuet": 1760,
+ "shinutiManiaDuet": 1350,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1001350,
+ "scoreHard": 1001940,
+ "scoreMania": 1005750,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 217,
+ "id": "flyagn",
+ "songFileName": "song_flyagn",
+ "order": 1610,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8680,
+ "shinutiNormal": 6370,
+ "shinutiHard": 2960,
+ "shinutiMania": 1800,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8680,
+ "shinutiNormalDuet": 6370,
+ "shinutiHardDuet": 2960,
+ "shinutiManiaDuet": 1800,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000920,
+ "scoreNormal": 1000250,
+ "scoreHard": 1001440,
+ "scoreMania": 1004100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 218,
+ "id": "flyawy",
+ "songFileName": "song_flyawy",
+ "order": 1611,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 5090,
+ "shinutiNormal": 4100,
+ "shinutiHard": 2270,
+ "shinutiMania": 1730,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5090,
+ "shinutiNormalDuet": 4100,
+ "shinutiHardDuet": 2270,
+ "shinutiManiaDuet": 1730,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001850,
+ "scoreNormal": 1000000,
+ "scoreHard": 1000790,
+ "scoreMania": 1005770,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 219,
+ "id": "fmonst",
+ "songFileName": "song_fmonst",
+ "order": 1613,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12060,
+ "shinutiNormal": 7250,
+ "shinutiHard": 4820,
+ "shinutiMania": 2650,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12060,
+ "shinutiNormalDuet": 7250,
+ "shinutiHardDuet": 4820,
+ "shinutiManiaDuet": 2650,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000620,
+ "scoreNormal": 1000900,
+ "scoreHard": 1001380,
+ "scoreMania": 1002600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 220,
+ "id": "foofoo",
+ "songFileName": "song_foofoo",
+ "order": 1616,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6470,
+ "shinutiNormal": 3770,
+ "shinutiHard": 2740,
+ "shinutiMania": 1230,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6470,
+ "shinutiNormalDuet": 3770,
+ "shinutiHardDuet": 2740,
+ "shinutiManiaDuet": 1230,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001110,
+ "scoreNormal": 1002010,
+ "scoreHard": 1000260,
+ "scoreMania": 1005100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 221,
+ "id": "freewy",
+ "songFileName": "song_freewy",
+ "order": 1622,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9550,
+ "shinutiNormal": 6990,
+ "shinutiHard": 3710,
+ "shinutiMania": 2150,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9550,
+ "shinutiNormalDuet": 6990,
+ "shinutiHardDuet": 3710,
+ "shinutiManiaDuet": 2150,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1001180,
+ "scoreHard": 1001580,
+ "scoreMania": 1003250,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 222,
+ "id": "fujin",
+ "songFileName": "song_fujin",
+ "order": 1628,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4470,
+ "shinutiNormal": 2830,
+ "shinutiHard": 1880,
+ "shinutiMania": 1330,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4470,
+ "shinutiNormalDuet": 2830,
+ "shinutiHardDuet": 1880,
+ "shinutiManiaDuet": 1330,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000310,
+ "scoreNormal": 1000160,
+ "scoreHard": 1003160,
+ "scoreMania": 1000330,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 223,
+ "id": "funk",
+ "songFileName": "song_funk",
+ "order": 1631,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 7,
+ "starUra": 8,
+ "shinutiEasy": 9980,
+ "shinutiNormal": 6280,
+ "shinutiHard": 2990,
+ "shinutiMania": 2280,
+ "shinutiUra": 1670,
+ "shinutiEasyDuet": 9980,
+ "shinutiNormalDuet": 6280,
+ "shinutiHardDuet": 2990,
+ "shinutiManiaDuet": 2280,
+ "shinutiUraDuet": 1670,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1001140,
+ "scoreHard": 1001770,
+ "scoreMania": 1003460,
+ "scoreUra": 1670
+ },
+ {
+ "uniqueId": 224,
+ "id": "furyu",
+ "songFileName": "song_furyu",
+ "order": 1634,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 9580,
+ "shinutiNormal": 5290,
+ "shinutiHard": 2820,
+ "shinutiMania": 1850,
+ "shinutiUra": 1460,
+ "shinutiEasyDuet": 9580,
+ "shinutiNormalDuet": 5290,
+ "shinutiHardDuet": 2820,
+ "shinutiManiaDuet": 1850,
+ "shinutiUraDuet": 1460,
+ "scoreEasy": 1000720,
+ "scoreNormal": 1000620,
+ "scoreHard": 1003500,
+ "scoreMania": 1000850,
+ "scoreUra": 1460
+ },
+ {
+ "uniqueId": 225,
+ "id": "fzone",
+ "songFileName": "song_fzone",
+ "order": 1635,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6250,
+ "shinutiNormal": 4390,
+ "shinutiHard": 2630,
+ "shinutiMania": 1840,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6250,
+ "shinutiNormalDuet": 4390,
+ "shinutiHardDuet": 2630,
+ "shinutiManiaDuet": 1840,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000250,
+ "scoreNormal": 1000840,
+ "scoreHard": 1003140,
+ "scoreMania": 1000380,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 226,
+ "id": "g14ki",
+ "songFileName": "song_g14ki",
+ "order": 1636,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5470,
+ "shinutiNormal": 3760,
+ "shinutiHard": 2010,
+ "shinutiMania": 1270,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5470,
+ "shinutiNormalDuet": 3760,
+ "shinutiHardDuet": 2010,
+ "shinutiManiaDuet": 1270,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000170,
+ "scoreNormal": 1000680,
+ "scoreHard": 1002530,
+ "scoreMania": 1003300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 227,
+ "id": "garakt",
+ "songFileName": "song_garakt",
+ "order": 1639,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 5220,
+ "shinutiNormal": 2380,
+ "shinutiHard": 1750,
+ "shinutiMania": 1340,
+ "shinutiUra": 1390,
+ "shinutiEasyDuet": 5220,
+ "shinutiNormalDuet": 2380,
+ "shinutiHardDuet": 1750,
+ "shinutiManiaDuet": 1340,
+ "shinutiUraDuet": 1390,
+ "scoreEasy": 1001400,
+ "scoreNormal": 1003120,
+ "scoreHard": 1002400,
+ "scoreMania": 1006400,
+ "scoreUra": 1390
+ },
+ {
+ "uniqueId": 228,
+ "id": "gbfkim",
+ "songFileName": "song_gbfkim",
+ "order": 1643,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10470,
+ "shinutiNormal": 6410,
+ "shinutiHard": 3890,
+ "shinutiMania": 3340,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10470,
+ "shinutiNormalDuet": 6410,
+ "shinutiHardDuet": 3890,
+ "shinutiManiaDuet": 3340,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000280,
+ "scoreNormal": 1000230,
+ "scoreHard": 1000180,
+ "scoreMania": 1002580,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 229,
+ "id": "gbfsor",
+ "songFileName": "song_gbfsor",
+ "order": 1644,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8050,
+ "shinutiNormal": 5340,
+ "shinutiHard": 3980,
+ "shinutiMania": 2900,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8050,
+ "shinutiNormalDuet": 5340,
+ "shinutiHardDuet": 3980,
+ "shinutiManiaDuet": 2900,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000550,
+ "scoreNormal": 1001800,
+ "scoreHard": 1002440,
+ "scoreMania": 1000000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 230,
+ "id": "gdiver",
+ "songFileName": "song_gdiver",
+ "order": 1645,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 8880,
+ "shinutiNormal": 5160,
+ "shinutiHard": 2680,
+ "shinutiMania": 1600,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8880,
+ "shinutiNormalDuet": 5160,
+ "shinutiHardDuet": 2680,
+ "shinutiManiaDuet": 1600,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000580,
+ "scoreNormal": 1000700,
+ "scoreHard": 1002300,
+ "scoreMania": 1002200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 231,
+ "id": "gdtmp",
+ "songFileName": "song_gdtmp",
+ "order": 1656,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 3,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 26750,
+ "shinutiNormal": 17000,
+ "shinutiHard": 7200,
+ "shinutiMania": 2850,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 26750,
+ "shinutiNormalDuet": 17000,
+ "shinutiHardDuet": 7200,
+ "shinutiManiaDuet": 2850,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000250,
+ "scoreNormal": 1000500,
+ "scoreHard": 1001000,
+ "scoreMania": 1000900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 232,
+ "id": "gdtmt",
+ "songFileName": "song_gdtmt",
+ "order": 1657,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 1,
+ "starMania": 3,
+ "starUra": 0,
+ "shinutiEasy": 36660,
+ "shinutiNormal": 20550,
+ "shinutiHard": 13110,
+ "shinutiMania": 4590,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 36660,
+ "shinutiNormalDuet": 20550,
+ "shinutiHardDuet": 13110,
+ "shinutiManiaDuet": 4590,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000120,
+ "scoreNormal": 1000400,
+ "scoreHard": 1000150,
+ "scoreMania": 1000830,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 233,
+ "id": "gegeg2",
+ "songFileName": "song_gegeg2",
+ "order": 1658,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 1,
+ "starMania": 2,
+ "starUra": 10,
+ "shinutiEasy": 18820,
+ "shinutiNormal": 12940,
+ "shinutiHard": 10480,
+ "shinutiMania": 6380,
+ "shinutiUra": 2550,
+ "shinutiEasyDuet": 18820,
+ "shinutiNormalDuet": 12940,
+ "shinutiHardDuet": 10480,
+ "shinutiManiaDuet": 6380,
+ "shinutiUraDuet": 2550,
+ "scoreEasy": 1000160,
+ "scoreNormal": 1000180,
+ "scoreHard": 1000900,
+ "scoreMania": 1000100,
+ "scoreUra": 2550
+ },
+ {
+ "uniqueId": 234,
+ "id": "gekikk",
+ "songFileName": "song_gekikk",
+ "order": 1661,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4910,
+ "shinutiNormal": 2850,
+ "shinutiHard": 1880,
+ "shinutiMania": 1120,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4910,
+ "shinutiNormalDuet": 2850,
+ "shinutiHardDuet": 1880,
+ "shinutiManiaDuet": 1120,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000510,
+ "scoreNormal": 1001650,
+ "scoreHard": 1004380,
+ "scoreMania": 1000400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 235,
+ "id": "genpe",
+ "songFileName": "song_genpe",
+ "order": 1665,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": true,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 10,
+ "shinutiEasy": 6020,
+ "shinutiNormal": 4060,
+ "shinutiHard": 1620,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6020,
+ "shinutiNormalDuet": 4060,
+ "shinutiHardDuet": 1620,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1000100,
+ "scoreHard": 1001820,
+ "scoreMania": 1006850,
+ "scoreUra": 1000
+ },
+ {
+ "uniqueId": 236,
+ "id": "genpe2",
+ "songFileName": "song_genpe2",
+ "order": 1666,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7150,
+ "shinutiNormal": 4130,
+ "shinutiHard": 2030,
+ "shinutiMania": 1240,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7150,
+ "shinutiNormalDuet": 4130,
+ "shinutiHardDuet": 2030,
+ "shinutiManiaDuet": 1240,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000350,
+ "scoreNormal": 1000880,
+ "scoreHard": 1002930,
+ "scoreMania": 1000600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 237,
+ "id": "gerapo",
+ "songFileName": "song_gerapo",
+ "order": 1668,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11030,
+ "shinutiNormal": 7230,
+ "shinutiHard": 4210,
+ "shinutiMania": 3030,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11030,
+ "shinutiNormalDuet": 7230,
+ "shinutiHardDuet": 4210,
+ "shinutiManiaDuet": 3030,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1000510,
+ "scoreHard": 1000050,
+ "scoreMania": 1001970,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 238,
+ "id": "gerber",
+ "songFileName": "song_gerber",
+ "order": 1669,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5740,
+ "shinutiNormal": 3160,
+ "shinutiHard": 1940,
+ "shinutiMania": 1030,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5740,
+ "shinutiNormalDuet": 3160,
+ "shinutiHardDuet": 1940,
+ "shinutiManiaDuet": 1030,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001020,
+ "scoreNormal": 1000900,
+ "scoreHard": 1000520,
+ "scoreMania": 1004790,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 239,
+ "id": "germin",
+ "songFileName": "song_germin",
+ "order": 1670,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 5440,
+ "shinutiNormal": 3420,
+ "shinutiHard": 1990,
+ "shinutiMania": 1620,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5440,
+ "shinutiNormalDuet": 3420,
+ "shinutiHardDuet": 1990,
+ "shinutiManiaDuet": 1620,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001020,
+ "scoreNormal": 1000320,
+ "scoreHard": 1003590,
+ "scoreMania": 1004220,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 240,
+ "id": "geswat",
+ "songFileName": "song_geswat",
+ "order": 1671,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8460,
+ "shinutiNormal": 5000,
+ "shinutiHard": 3730,
+ "shinutiMania": 2910,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8460,
+ "shinutiNormalDuet": 5000,
+ "shinutiHardDuet": 3730,
+ "shinutiManiaDuet": 2910,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000980,
+ "scoreNormal": 1001100,
+ "scoreHard": 1000940,
+ "scoreMania": 1003040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 241,
+ "id": "gfish",
+ "songFileName": "song_gfish",
+ "order": 1672,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5230,
+ "shinutiNormal": 3900,
+ "shinutiHard": 1920,
+ "shinutiMania": 1130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5230,
+ "shinutiNormalDuet": 3900,
+ "shinutiHardDuet": 1920,
+ "shinutiManiaDuet": 1130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001800,
+ "scoreNormal": 1002000,
+ "scoreHard": 1002120,
+ "scoreMania": 1005380,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 242,
+ "id": "ghnpan",
+ "songFileName": "song_ghnpan",
+ "order": 1674,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": true,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 10,
+ "shinutiEasy": 4690,
+ "shinutiNormal": 3360,
+ "shinutiHard": 2690,
+ "shinutiMania": 1210,
+ "shinutiUra": 1210,
+ "shinutiEasyDuet": 4690,
+ "shinutiNormalDuet": 3360,
+ "shinutiHardDuet": 2690,
+ "shinutiManiaDuet": 1210,
+ "shinutiUraDuet": 1210,
+ "scoreEasy": 1001490,
+ "scoreNormal": 1002340,
+ "scoreHard": 1002350,
+ "scoreMania": 1006440,
+ "scoreUra": 1210
+ },
+ {
+ "uniqueId": 243,
+ "id": "glokey",
+ "songFileName": "song_glokey",
+ "order": 1684,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4800,
+ "shinutiNormal": 3430,
+ "shinutiHard": 1970,
+ "shinutiMania": 1120,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4800,
+ "shinutiNormalDuet": 3430,
+ "shinutiHardDuet": 1970,
+ "shinutiManiaDuet": 1120,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000900,
+ "scoreNormal": 1001270,
+ "scoreHard": 1002540,
+ "scoreMania": 1002460,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 244,
+ "id": "glyhow",
+ "songFileName": "song_glyhow",
+ "order": 1685,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 12110,
+ "shinutiNormal": 7810,
+ "shinutiHard": 5190,
+ "shinutiMania": 3230,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12110,
+ "shinutiNormalDuet": 7810,
+ "shinutiHardDuet": 5190,
+ "shinutiManiaDuet": 3230,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000020,
+ "scoreNormal": 1000470,
+ "scoreHard": 1000100,
+ "scoreMania": 1001520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 245,
+ "id": "glyywk",
+ "songFileName": "song_glyywk",
+ "order": 1686,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6920,
+ "shinutiNormal": 4900,
+ "shinutiHard": 2400,
+ "shinutiMania": 1750,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6920,
+ "shinutiNormalDuet": 4900,
+ "shinutiHardDuet": 2400,
+ "shinutiManiaDuet": 1750,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001280,
+ "scoreNormal": 1000400,
+ "scoreHard": 1002500,
+ "scoreMania": 1004950,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 246,
+ "id": "glyzmb",
+ "songFileName": "song_glyzmb",
+ "order": 1687,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 12520,
+ "shinutiNormal": 5750,
+ "shinutiHard": 2420,
+ "shinutiMania": 1260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12520,
+ "shinutiNormalDuet": 5750,
+ "shinutiHardDuet": 2420,
+ "shinutiManiaDuet": 1260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1001200,
+ "scoreHard": 1001780,
+ "scoreMania": 1003140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 247,
+ "id": "gnkcrt",
+ "songFileName": "song_gnkcrt",
+ "order": 1690,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 4880,
+ "shinutiNormal": 3080,
+ "shinutiHard": 2160,
+ "shinutiMania": 1530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4880,
+ "shinutiNormalDuet": 3080,
+ "shinutiHardDuet": 2160,
+ "shinutiManiaDuet": 1530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000740,
+ "scoreNormal": 1000960,
+ "scoreHard": 1002000,
+ "scoreMania": 1003470,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 248,
+ "id": "gntkag",
+ "songFileName": "song_gntkag",
+ "order": 1691,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11550,
+ "shinutiNormal": 7040,
+ "shinutiHard": 4100,
+ "shinutiMania": 2420,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11550,
+ "shinutiNormalDuet": 7040,
+ "shinutiHardDuet": 4100,
+ "shinutiManiaDuet": 2420,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1000640,
+ "scoreHard": 1001200,
+ "scoreMania": 1000020,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 249,
+ "id": "godea2",
+ "songFileName": "song_godea2",
+ "order": 1629,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4650,
+ "shinutiNormal": 3310,
+ "shinutiHard": 1960,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4650,
+ "shinutiNormalDuet": 3310,
+ "shinutiHardDuet": 1960,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000150,
+ "scoreNormal": 1000990,
+ "scoreHard": 1002400,
+ "scoreMania": 1007550,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 250,
+ "id": "godeat",
+ "songFileName": "song_godeat",
+ "order": 1632,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 7080,
+ "shinutiNormal": 5220,
+ "shinutiHard": 2300,
+ "shinutiMania": 1410,
+ "shinutiUra": 1400,
+ "shinutiEasyDuet": 7080,
+ "shinutiNormalDuet": 5220,
+ "shinutiHardDuet": 2300,
+ "shinutiManiaDuet": 1410,
+ "shinutiUraDuet": 1400,
+ "scoreEasy": 1001120,
+ "scoreNormal": 1001860,
+ "scoreHard": 1001600,
+ "scoreMania": 1003570,
+ "scoreUra": 1400
+ },
+ {
+ "uniqueId": 251,
+ "id": "godkno",
+ "songFileName": "song_godkno",
+ "order": 1698,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 9520,
+ "shinutiNormal": 5090,
+ "shinutiHard": 2970,
+ "shinutiMania": 1690,
+ "shinutiUra": 1040,
+ "shinutiEasyDuet": 9520,
+ "shinutiNormalDuet": 5090,
+ "shinutiHardDuet": 2970,
+ "shinutiManiaDuet": 1690,
+ "shinutiUraDuet": 1040,
+ "scoreEasy": 1000380,
+ "scoreNormal": 1000860,
+ "scoreHard": 1002270,
+ "scoreMania": 1002500,
+ "scoreUra": 1040
+ },
+ {
+ "uniqueId": 252,
+ "id": "godray",
+ "songFileName": "song_godray",
+ "order": 1699,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6540,
+ "shinutiNormal": 4090,
+ "shinutiHard": 2410,
+ "shinutiMania": 1280,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6540,
+ "shinutiNormalDuet": 4090,
+ "shinutiHardDuet": 2410,
+ "shinutiManiaDuet": 1280,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000180,
+ "scoreNormal": 1001170,
+ "scoreHard": 1001730,
+ "scoreMania": 1003060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 253,
+ "id": "godsng",
+ "songFileName": "song_godsng",
+ "order": 1700,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 10,
+ "shinutiEasy": 6200,
+ "shinutiNormal": 4410,
+ "shinutiHard": 2440,
+ "shinutiMania": 1550,
+ "shinutiUra": 1100,
+ "shinutiEasyDuet": 6200,
+ "shinutiNormalDuet": 4410,
+ "shinutiHardDuet": 2440,
+ "shinutiManiaDuet": 1550,
+ "shinutiUraDuet": 1100,
+ "scoreEasy": 1001100,
+ "scoreNormal": 1000340,
+ "scoreHard": 1002980,
+ "scoreMania": 1002600,
+ "scoreUra": 1100
+ },
+ {
+ "uniqueId": 254,
+ "id": "goget",
+ "songFileName": "song_goget",
+ "order": 1701,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 9,
+ "shinutiEasy": 7550,
+ "shinutiNormal": 4230,
+ "shinutiHard": 2580,
+ "shinutiMania": 1800,
+ "shinutiUra": 1550,
+ "shinutiEasyDuet": 7550,
+ "shinutiNormalDuet": 4230,
+ "shinutiHardDuet": 2580,
+ "shinutiManiaDuet": 1800,
+ "shinutiUraDuet": 1550,
+ "scoreEasy": 1000050,
+ "scoreNormal": 1001420,
+ "scoreHard": 1002220,
+ "scoreMania": 1000500,
+ "scoreUra": 1550
+ },
+ {
+ "uniqueId": 255,
+ "id": "gogo",
+ "songFileName": "song_gogo",
+ "order": 1702,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 5280,
+ "shinutiNormal": 3940,
+ "shinutiHard": 2650,
+ "shinutiMania": 2020,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5280,
+ "shinutiNormalDuet": 3940,
+ "shinutiHardDuet": 2650,
+ "shinutiManiaDuet": 2020,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001520,
+ "scoreNormal": 1000920,
+ "scoreHard": 1001100,
+ "scoreMania": 1001600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 256,
+ "id": "gomkis",
+ "songFileName": "song_gomkis",
+ "order": 1703,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8860,
+ "shinutiNormal": 6580,
+ "shinutiHard": 4080,
+ "shinutiMania": 2940,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8860,
+ "shinutiNormalDuet": 6580,
+ "shinutiHardDuet": 4080,
+ "shinutiManiaDuet": 2940,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000820,
+ "scoreNormal": 1001280,
+ "scoreHard": 1000440,
+ "scoreMania": 1000240,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 257,
+ "id": "goth",
+ "songFileName": "song_goth",
+ "order": 1705,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 5080,
+ "shinutiNormal": 3570,
+ "shinutiHard": 1860,
+ "shinutiMania": 1420,
+ "shinutiUra": 1300,
+ "shinutiEasyDuet": 5080,
+ "shinutiNormalDuet": 3570,
+ "shinutiHardDuet": 1860,
+ "shinutiManiaDuet": 1420,
+ "shinutiUraDuet": 1300,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1001790,
+ "scoreHard": 1004960,
+ "scoreMania": 1002980,
+ "scoreUra": 1300
+ },
+ {
+ "uniqueId": 258,
+ "id": "gotmor",
+ "songFileName": "song_gotmor",
+ "order": 1706,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 2900,
+ "shinutiNormal": 2410,
+ "shinutiHard": 1830,
+ "shinutiMania": 1420,
+ "shinutiUra": 1210,
+ "shinutiEasyDuet": 2900,
+ "shinutiNormalDuet": 2410,
+ "shinutiHardDuet": 1830,
+ "shinutiManiaDuet": 1420,
+ "shinutiUraDuet": 1210,
+ "scoreEasy": 1000500,
+ "scoreNormal": 1001340,
+ "scoreHard": 1004480,
+ "scoreMania": 1004440,
+ "scoreUra": 1210
+ },
+ {
+ "uniqueId": 259,
+ "id": "gstmsk",
+ "songFileName": "song_gstmsk",
+ "order": 1708,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4720,
+ "shinutiNormal": 2480,
+ "shinutiHard": 1770,
+ "shinutiMania": 1110,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4720,
+ "shinutiNormalDuet": 2480,
+ "shinutiHardDuet": 1770,
+ "shinutiManiaDuet": 1110,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001500,
+ "scoreNormal": 1002400,
+ "scoreHard": 1001570,
+ "scoreMania": 1007690,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 260,
+ "id": "gumi22",
+ "songFileName": "song_gumi22",
+ "order": 1711,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6150,
+ "shinutiNormal": 3980,
+ "shinutiHard": 2680,
+ "shinutiMania": 1680,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6150,
+ "shinutiNormalDuet": 3980,
+ "shinutiHardDuet": 2680,
+ "shinutiManiaDuet": 1680,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001500,
+ "scoreNormal": 1001500,
+ "scoreHard": 1003480,
+ "scoreMania": 1004060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 261,
+ "id": "gumiam",
+ "songFileName": "song_gumiam",
+ "order": 1712,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5290,
+ "shinutiNormal": 3510,
+ "shinutiHard": 1810,
+ "shinutiMania": 1210,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5290,
+ "shinutiNormalDuet": 3510,
+ "shinutiHardDuet": 1810,
+ "shinutiManiaDuet": 1210,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000620,
+ "scoreNormal": 1002730,
+ "scoreHard": 1001310,
+ "scoreMania": 1001880,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 262,
+ "id": "gumico",
+ "songFileName": "song_gumico",
+ "order": 1713,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5930,
+ "shinutiNormal": 3960,
+ "shinutiHard": 2300,
+ "shinutiMania": 1080,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5930,
+ "shinutiNormalDuet": 3960,
+ "shinutiHardDuet": 2300,
+ "shinutiManiaDuet": 1080,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001580,
+ "scoreNormal": 1001280,
+ "scoreHard": 1002300,
+ "scoreMania": 1000080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 263,
+ "id": "gumidk",
+ "songFileName": "song_gumidk",
+ "order": 1714,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6840,
+ "shinutiNormal": 4930,
+ "shinutiHard": 3120,
+ "shinutiMania": 2090,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6840,
+ "shinutiNormalDuet": 4930,
+ "shinutiHardDuet": 3120,
+ "shinutiManiaDuet": 2090,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1001530,
+ "scoreHard": 1002260,
+ "scoreMania": 1000770,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 264,
+ "id": "gumidp",
+ "songFileName": "song_gumidp",
+ "order": 1715,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6790,
+ "shinutiNormal": 4220,
+ "shinutiHard": 2180,
+ "shinutiMania": 1110,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6790,
+ "shinutiNormalDuet": 4220,
+ "shinutiHardDuet": 2180,
+ "shinutiManiaDuet": 1110,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1000080,
+ "scoreHard": 1000700,
+ "scoreMania": 1002710,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 265,
+ "id": "gumids",
+ "songFileName": "song_gumids",
+ "order": 1716,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7050,
+ "shinutiNormal": 4510,
+ "shinutiHard": 2690,
+ "shinutiMania": 1530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7050,
+ "shinutiNormalDuet": 4510,
+ "shinutiHardDuet": 2690,
+ "shinutiManiaDuet": 1530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000650,
+ "scoreNormal": 1000900,
+ "scoreHard": 1001120,
+ "scoreMania": 1005100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 266,
+ "id": "gumijk",
+ "songFileName": "song_gumijk",
+ "order": 1718,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 7760,
+ "shinutiNormal": 3980,
+ "shinutiHard": 2590,
+ "shinutiMania": 1520,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7760,
+ "shinutiNormalDuet": 3980,
+ "shinutiHardDuet": 2590,
+ "shinutiManiaDuet": 1520,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1001120,
+ "scoreHard": 1001270,
+ "scoreMania": 1001360,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 267,
+ "id": "gumizk",
+ "songFileName": "song_gumizk",
+ "order": 1725,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 9,
+ "shinutiEasy": 12890,
+ "shinutiNormal": 8020,
+ "shinutiHard": 4910,
+ "shinutiMania": 2890,
+ "shinutiUra": 1880,
+ "shinutiEasyDuet": 12890,
+ "shinutiNormalDuet": 8020,
+ "shinutiHardDuet": 4910,
+ "shinutiManiaDuet": 2890,
+ "shinutiUraDuet": 1880,
+ "scoreEasy": 1000330,
+ "scoreNormal": 1001080,
+ "scoreHard": 1001420,
+ "scoreMania": 1002050,
+ "scoreUra": 1880
+ },
+ {
+ "uniqueId": 268,
+ "id": "gunsln",
+ "songFileName": "song_gunsln",
+ "order": 1727,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 3320,
+ "shinutiNormal": 2460,
+ "shinutiHard": 1540,
+ "shinutiMania": 1150,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3320,
+ "shinutiNormalDuet": 2460,
+ "shinutiHardDuet": 1540,
+ "shinutiManiaDuet": 1150,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000160,
+ "scoreNormal": 1001920,
+ "scoreHard": 1001400,
+ "scoreMania": 1005150,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 269,
+ "id": "haiky2",
+ "songFileName": "song_haiky2",
+ "order": 1731,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 8860,
+ "shinutiNormal": 5000,
+ "shinutiHard": 2920,
+ "shinutiMania": 1560,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8860,
+ "shinutiNormalDuet": 5000,
+ "shinutiHardDuet": 2920,
+ "shinutiManiaDuet": 1560,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000720,
+ "scoreNormal": 1000200,
+ "scoreHard": 1000120,
+ "scoreMania": 1000240,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 270,
+ "id": "hanakp",
+ "songFileName": "song_hanakp",
+ "order": 1735,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 32160,
+ "shinutiNormal": 14680,
+ "shinutiHard": 8840,
+ "shinutiMania": 6210,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 32160,
+ "shinutiNormalDuet": 14680,
+ "shinutiHardDuet": 8840,
+ "shinutiManiaDuet": 6210,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000260,
+ "scoreNormal": 1000440,
+ "scoreHard": 1001020,
+ "scoreMania": 1001310,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 271,
+ "id": "haruut",
+ "songFileName": "song_haruut",
+ "order": 1742,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10660,
+ "shinutiNormal": 7550,
+ "shinutiHard": 4580,
+ "shinutiMania": 3590,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10660,
+ "shinutiNormalDuet": 7550,
+ "shinutiHardDuet": 4580,
+ "shinutiManiaDuet": 3590,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000580,
+ "scoreNormal": 1000650,
+ "scoreHard": 1000600,
+ "scoreMania": 1002270,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 272,
+ "id": "haryu",
+ "songFileName": "song_haryu",
+ "order": 1743,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 5900,
+ "shinutiNormal": 3810,
+ "shinutiHard": 1990,
+ "shinutiMania": 1430,
+ "shinutiUra": 1200,
+ "shinutiEasyDuet": 5900,
+ "shinutiNormalDuet": 3810,
+ "shinutiHardDuet": 1990,
+ "shinutiManiaDuet": 1430,
+ "shinutiUraDuet": 1200,
+ "scoreEasy": 1001600,
+ "scoreNormal": 1001300,
+ "scoreHard": 1001680,
+ "scoreMania": 1001240,
+ "scoreUra": 1200
+ },
+ {
+ "uniqueId": 273,
+ "id": "hatara",
+ "songFileName": "song_hatara",
+ "order": 1744,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6330,
+ "shinutiNormal": 4070,
+ "shinutiHard": 2260,
+ "shinutiMania": 1140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6330,
+ "shinutiNormalDuet": 4070,
+ "shinutiHardDuet": 2260,
+ "shinutiManiaDuet": 1140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1000740,
+ "scoreHard": 1004320,
+ "scoreMania": 1002940,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 274,
+ "id": "hayabu",
+ "songFileName": "song_hayabu",
+ "order": 1747,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5130,
+ "shinutiNormal": 3680,
+ "shinutiHard": 1780,
+ "shinutiMania": 1270,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5130,
+ "shinutiNormalDuet": 3680,
+ "shinutiHardDuet": 1780,
+ "shinutiManiaDuet": 1270,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001820,
+ "scoreNormal": 1001800,
+ "scoreHard": 1000020,
+ "scoreMania": 1001920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 275,
+ "id": "helhal",
+ "songFileName": "song_helhal",
+ "order": 1750,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 2,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9940,
+ "shinutiNormal": 6800,
+ "shinutiHard": 2570,
+ "shinutiMania": 1720,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9940,
+ "shinutiNormalDuet": 6800,
+ "shinutiHardDuet": 2570,
+ "shinutiManiaDuet": 1720,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000100,
+ "scoreHard": 1003790,
+ "scoreMania": 1003920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 276,
+ "id": "hello2",
+ "songFileName": "song_hello2",
+ "order": 1751,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9320,
+ "shinutiNormal": 5330,
+ "shinutiHard": 3230,
+ "shinutiMania": 2860,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9320,
+ "shinutiNormalDuet": 5330,
+ "shinutiHardDuet": 3230,
+ "shinutiManiaDuet": 2860,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000540,
+ "scoreNormal": 1000810,
+ "scoreHard": 1001370,
+ "scoreMania": 1003140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 277,
+ "id": "hi4kko",
+ "songFileName": "song_hi4kko",
+ "order": 1756,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5690,
+ "shinutiNormal": 4300,
+ "shinutiHard": 2460,
+ "shinutiMania": 1710,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5690,
+ "shinutiNormalDuet": 4300,
+ "shinutiHardDuet": 2460,
+ "shinutiManiaDuet": 1710,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001350,
+ "scoreNormal": 1000100,
+ "scoreHard": 1001240,
+ "scoreMania": 1005330,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 278,
+ "id": "hide4s",
+ "songFileName": "song_hide4s",
+ "order": 1758,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5420,
+ "shinutiNormal": 3040,
+ "shinutiHard": 1730,
+ "shinutiMania": 1000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5420,
+ "shinutiNormalDuet": 3040,
+ "shinutiHardDuet": 1730,
+ "shinutiManiaDuet": 1000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000740,
+ "scoreNormal": 1000020,
+ "scoreHard": 1004950,
+ "scoreMania": 1002300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 279,
+ "id": "higgs",
+ "songFileName": "song_higgs",
+ "order": 1759,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4730,
+ "shinutiNormal": 2800,
+ "shinutiHard": 1390,
+ "shinutiMania": 990,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4730,
+ "shinutiNormalDuet": 2800,
+ "shinutiHardDuet": 1390,
+ "shinutiManiaDuet": 990,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1000700,
+ "scoreHard": 1004570,
+ "scoreMania": 1003710,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 280,
+ "id": "himyak",
+ "songFileName": "song_himyak",
+ "order": 1761,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10550,
+ "shinutiNormal": 7100,
+ "shinutiHard": 5520,
+ "shinutiMania": 4230,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10550,
+ "shinutiNormalDuet": 7100,
+ "shinutiHardDuet": 5520,
+ "shinutiManiaDuet": 4230,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1001000,
+ "scoreHard": 1001640,
+ "scoreMania": 1001590,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 281,
+ "id": "hiyam2",
+ "songFileName": "song_hiyam2",
+ "order": 1763,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 6480,
+ "shinutiNormal": 4930,
+ "shinutiHard": 2570,
+ "shinutiMania": 1730,
+ "shinutiUra": 1310,
+ "shinutiEasyDuet": 6480,
+ "shinutiNormalDuet": 4930,
+ "shinutiHardDuet": 2570,
+ "shinutiManiaDuet": 1730,
+ "shinutiUraDuet": 1310,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1001830,
+ "scoreHard": 1002760,
+ "scoreMania": 1004700,
+ "scoreUra": 1310
+ },
+ {
+ "uniqueId": 282,
+ "id": "hkgmag",
+ "songFileName": "song_hkgmag",
+ "order": 1765,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6560,
+ "shinutiNormal": 3610,
+ "shinutiHard": 2330,
+ "shinutiMania": 1700,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6560,
+ "shinutiNormalDuet": 3610,
+ "shinutiHardDuet": 2330,
+ "shinutiManiaDuet": 1700,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000060,
+ "scoreNormal": 1001360,
+ "scoreHard": 1000670,
+ "scoreMania": 1002000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 283,
+ "id": "honnou",
+ "songFileName": "song_honnou",
+ "order": 1780,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7280,
+ "shinutiNormal": 5450,
+ "shinutiHard": 2670,
+ "shinutiMania": 2100,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7280,
+ "shinutiNormalDuet": 5450,
+ "shinutiHardDuet": 2670,
+ "shinutiManiaDuet": 2100,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000960,
+ "scoreNormal": 1000550,
+ "scoreHard": 1000410,
+ "scoreMania": 1000500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 284,
+ "id": "hoslin",
+ "songFileName": "song_hoslin",
+ "order": 1783,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 4830,
+ "shinutiNormal": 3430,
+ "shinutiHard": 2470,
+ "shinutiMania": 1410,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4830,
+ "shinutiNormalDuet": 3430,
+ "shinutiHardDuet": 2470,
+ "shinutiManiaDuet": 1410,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000880,
+ "scoreNormal": 1002600,
+ "scoreHard": 1003980,
+ "scoreMania": 1001670,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 285,
+ "id": "hurtlb",
+ "songFileName": "song_hurtlb",
+ "order": 1794,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 2730,
+ "shinutiNormal": 2350,
+ "shinutiHard": 1580,
+ "shinutiMania": 1110,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 2730,
+ "shinutiNormalDuet": 2350,
+ "shinutiHardDuet": 1580,
+ "shinutiManiaDuet": 1110,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1002250,
+ "scoreNormal": 1000250,
+ "scoreHard": 1006120,
+ "scoreMania": 1006330,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 286,
+ "id": "hvride",
+ "songFileName": "song_hvride",
+ "order": 1795,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6100,
+ "shinutiNormal": 4660,
+ "shinutiHard": 2130,
+ "shinutiMania": 1390,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6100,
+ "shinutiNormalDuet": 4660,
+ "shinutiHardDuet": 2130,
+ "shinutiManiaDuet": 1390,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001300,
+ "scoreNormal": 1000620,
+ "scoreHard": 1000150,
+ "scoreMania": 1000060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 287,
+ "id": "i7daut",
+ "songFileName": "song_i7daut",
+ "order": 1798,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 22510,
+ "shinutiNormal": 14320,
+ "shinutiHard": 8370,
+ "shinutiMania": 2420,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 22510,
+ "shinutiNormalDuet": 14320,
+ "shinutiHardDuet": 8370,
+ "shinutiManiaDuet": 2420,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000340,
+ "scoreNormal": 1000080,
+ "scoreHard": 1001060,
+ "scoreMania": 1003320,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 288,
+ "id": "i7dscv",
+ "songFileName": "song_i7dscv",
+ "order": 1799,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 12570,
+ "shinutiNormal": 6880,
+ "shinutiHard": 4520,
+ "shinutiMania": 3370,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12570,
+ "shinutiNormalDuet": 6880,
+ "shinutiHardDuet": 4520,
+ "shinutiManiaDuet": 3370,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000530,
+ "scoreNormal": 1000120,
+ "scoreHard": 1001880,
+ "scoreMania": 1002110,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 289,
+ "id": "i7hvn",
+ "songFileName": "song_i7hvn",
+ "order": 1800,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 9,
+ "shinutiEasy": 15490,
+ "shinutiNormal": 10990,
+ "shinutiHard": 6890,
+ "shinutiMania": 2890,
+ "shinutiUra": 1690,
+ "shinutiEasyDuet": 15490,
+ "shinutiNormalDuet": 10990,
+ "shinutiHardDuet": 6890,
+ "shinutiManiaDuet": 2890,
+ "shinutiUraDuet": 1690,
+ "scoreEasy": 1000260,
+ "scoreNormal": 1000300,
+ "scoreHard": 1001270,
+ "scoreMania": 1002990,
+ "scoreUra": 1690
+ },
+ {
+ "uniqueId": 290,
+ "id": "i7natu",
+ "songFileName": "song_i7natu",
+ "order": 1801,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 13620,
+ "shinutiNormal": 7370,
+ "shinutiHard": 4030,
+ "shinutiMania": 2640,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13620,
+ "shinutiNormalDuet": 7370,
+ "shinutiHardDuet": 4030,
+ "shinutiManiaDuet": 2640,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000160,
+ "scoreNormal": 1001250,
+ "scoreHard": 1001180,
+ "scoreMania": 1003060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 291,
+ "id": "i7wish",
+ "songFileName": "song_i7wish",
+ "order": 1802,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 13610,
+ "shinutiNormal": 10430,
+ "shinutiHard": 5730,
+ "shinutiMania": 3290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13610,
+ "shinutiNormalDuet": 10430,
+ "shinutiHardDuet": 5730,
+ "shinutiManiaDuet": 3290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000430,
+ "scoreNormal": 1000450,
+ "scoreHard": 1001190,
+ "scoreMania": 1000000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 292,
+ "id": "ia6cho",
+ "songFileName": "song_ia6cho",
+ "order": 1803,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 9,
+ "shinutiEasy": 6200,
+ "shinutiNormal": 3810,
+ "shinutiHard": 1980,
+ "shinutiMania": 1190,
+ "shinutiUra": 1330,
+ "shinutiEasyDuet": 6200,
+ "shinutiNormalDuet": 3810,
+ "shinutiHardDuet": 1980,
+ "shinutiManiaDuet": 1190,
+ "shinutiUraDuet": 1330,
+ "scoreEasy": 1001100,
+ "scoreNormal": 1000090,
+ "scoreHard": 1000340,
+ "scoreMania": 1006740,
+ "scoreUra": 1330
+ },
+ {
+ "uniqueId": 293,
+ "id": "iaasny",
+ "songFileName": "song_iaasny",
+ "order": 1804,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5340,
+ "shinutiNormal": 3410,
+ "shinutiHard": 2230,
+ "shinutiMania": 1370,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5340,
+ "shinutiNormalDuet": 3410,
+ "shinutiHardDuet": 2230,
+ "shinutiManiaDuet": 1370,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000340,
+ "scoreNormal": 1001110,
+ "scoreHard": 1003950,
+ "scoreMania": 1006130,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 294,
+ "id": "iagera",
+ "songFileName": "song_iagera",
+ "order": 1807,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 3780,
+ "shinutiNormal": 2420,
+ "shinutiHard": 1800,
+ "shinutiMania": 1070,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3780,
+ "shinutiNormalDuet": 2420,
+ "shinutiHardDuet": 1800,
+ "shinutiManiaDuet": 1070,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001640,
+ "scoreNormal": 1000180,
+ "scoreHard": 1004500,
+ "scoreMania": 1000130,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 295,
+ "id": "idol",
+ "songFileName": "song_idol",
+ "order": 1811,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6790,
+ "shinutiNormal": 3130,
+ "shinutiHard": 2000,
+ "shinutiMania": 1460,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6790,
+ "shinutiNormalDuet": 3130,
+ "shinutiHardDuet": 2000,
+ "shinutiManiaDuet": 1460,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000540,
+ "scoreNormal": 1002900,
+ "scoreHard": 1003700,
+ "scoreMania": 1005920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 296,
+ "id": "idol2",
+ "songFileName": "song_idol2",
+ "order": 1812,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 4970,
+ "shinutiNormal": 2420,
+ "shinutiHard": 1620,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4970,
+ "shinutiNormalDuet": 2420,
+ "shinutiHardDuet": 1620,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000570,
+ "scoreNormal": 1002780,
+ "scoreHard": 1002760,
+ "scoreMania": 1006450,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 297,
+ "id": "ignis",
+ "songFileName": "song_ignis",
+ "order": 1813,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5200,
+ "shinutiNormal": 3320,
+ "shinutiHard": 1700,
+ "shinutiMania": 1220,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5200,
+ "shinutiNormalDuet": 3320,
+ "shinutiHardDuet": 1700,
+ "shinutiManiaDuet": 1220,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001500,
+ "scoreNormal": 1001000,
+ "scoreHard": 1001600,
+ "scoreMania": 1003560,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 298,
+ "id": "ikaika",
+ "songFileName": "song_ikaika",
+ "order": 1816,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7300,
+ "shinutiNormal": 5030,
+ "shinutiHard": 2380,
+ "shinutiMania": 1500,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7300,
+ "shinutiNormalDuet": 5030,
+ "shinutiHardDuet": 2380,
+ "shinutiManiaDuet": 1500,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1001240,
+ "scoreHard": 1001980,
+ "scoreMania": 1000200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 299,
+ "id": "ikazu7",
+ "songFileName": "song_ikazu7",
+ "order": 1818,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 3800,
+ "shinutiNormal": 1930,
+ "shinutiHard": 1330,
+ "shinutiMania": 840,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3800,
+ "shinutiNormalDuet": 1930,
+ "shinutiHardDuet": 1330,
+ "shinutiManiaDuet": 840,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1000190,
+ "scoreHard": 1006170,
+ "scoreMania": 1010460,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 300,
+ "id": "ikenai",
+ "songFileName": "song_ikenai",
+ "order": 1819,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6390,
+ "shinutiNormal": 5180,
+ "shinutiHard": 2660,
+ "shinutiMania": 2050,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6390,
+ "shinutiNormalDuet": 5180,
+ "shinutiHardDuet": 2660,
+ "shinutiManiaDuet": 2050,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001320,
+ "scoreNormal": 1000520,
+ "scoreHard": 1003040,
+ "scoreMania": 1003200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 301,
+ "id": "ikshim",
+ "songFileName": "song_ikshim",
+ "order": 1820,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6430,
+ "shinutiNormal": 4500,
+ "shinutiHard": 1750,
+ "shinutiMania": 1360,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6430,
+ "shinutiNormalDuet": 4500,
+ "shinutiHardDuet": 1750,
+ "shinutiManiaDuet": 1360,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001220,
+ "scoreNormal": 1001000,
+ "scoreHard": 1001150,
+ "scoreMania": 1002180,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 302,
+ "id": "im4dst",
+ "songFileName": "song_im4dst",
+ "order": 1822,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12540,
+ "shinutiNormal": 8250,
+ "shinutiHard": 3640,
+ "shinutiMania": 1770,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12540,
+ "shinutiNormalDuet": 8250,
+ "shinutiHardDuet": 3640,
+ "shinutiManiaDuet": 1770,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000160,
+ "scoreNormal": 1000700,
+ "scoreHard": 1001540,
+ "scoreMania": 1003330,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 303,
+ "id": "im4spr",
+ "songFileName": "song_im4spr",
+ "order": 1823,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9380,
+ "shinutiNormal": 5310,
+ "shinutiHard": 3500,
+ "shinutiMania": 2180,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9380,
+ "shinutiNormalDuet": 5310,
+ "shinutiHardDuet": 3500,
+ "shinutiManiaDuet": 2180,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000980,
+ "scoreNormal": 1001670,
+ "scoreHard": 1001500,
+ "scoreMania": 1004020,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 304,
+ "id": "imas2t",
+ "songFileName": "song_imas2t",
+ "order": 1824,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 6950,
+ "shinutiNormal": 4590,
+ "shinutiHard": 2750,
+ "shinutiMania": 2010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6950,
+ "shinutiNormalDuet": 4590,
+ "shinutiHardDuet": 2750,
+ "shinutiManiaDuet": 2010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000650,
+ "scoreNormal": 1001040,
+ "scoreHard": 1001850,
+ "scoreMania": 1003950,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 305,
+ "id": "imasop",
+ "songFileName": "song_imasop",
+ "order": 1825,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9390,
+ "shinutiNormal": 7640,
+ "shinutiHard": 3490,
+ "shinutiMania": 2550,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9390,
+ "shinutiNormalDuet": 7640,
+ "shinutiHardDuet": 3490,
+ "shinutiManiaDuet": 2550,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000940,
+ "scoreNormal": 1000200,
+ "scoreHard": 1001640,
+ "scoreMania": 1002800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 306,
+ "id": "imc2bm",
+ "songFileName": "song_imc2bm",
+ "order": 1826,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 9800,
+ "shinutiNormal": 5870,
+ "shinutiHard": 3150,
+ "shinutiMania": 1310,
+ "shinutiUra": 1210,
+ "shinutiEasyDuet": 9800,
+ "shinutiNormalDuet": 5870,
+ "shinutiHardDuet": 3150,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 1210,
+ "scoreEasy": 1000500,
+ "scoreNormal": 1000160,
+ "scoreHard": 1001550,
+ "scoreMania": 1002650,
+ "scoreUra": 1210
+ },
+ {
+ "uniqueId": 307,
+ "id": "imc5in",
+ "songFileName": "song_imc5in",
+ "order": 1828,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 8,
+ "shinutiEasy": 8460,
+ "shinutiNormal": 7050,
+ "shinutiHard": 3830,
+ "shinutiMania": 2830,
+ "shinutiUra": 1930,
+ "shinutiEasyDuet": 8460,
+ "shinutiNormalDuet": 7050,
+ "shinutiHardDuet": 3830,
+ "shinutiManiaDuet": 2830,
+ "shinutiUraDuet": 1930,
+ "scoreEasy": 1000520,
+ "scoreNormal": 1000900,
+ "scoreHard": 1002410,
+ "scoreMania": 1002480,
+ "scoreUra": 1930
+ },
+ {
+ "uniqueId": 308,
+ "id": "imc32b",
+ "songFileName": "song_imc32b",
+ "order": 1827,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 9,
+ "shinutiEasy": 8040,
+ "shinutiNormal": 5450,
+ "shinutiHard": 2840,
+ "shinutiMania": 2150,
+ "shinutiUra": 1310,
+ "shinutiEasyDuet": 8040,
+ "shinutiNormalDuet": 5450,
+ "shinutiHardDuet": 2840,
+ "shinutiManiaDuet": 2150,
+ "shinutiUraDuet": 1310,
+ "scoreEasy": 1000880,
+ "scoreNormal": 1001200,
+ "scoreHard": 1000040,
+ "scoreMania": 1003300,
+ "scoreUra": 1310
+ },
+ {
+ "uniqueId": 309,
+ "id": "imcagd",
+ "songFileName": "song_imcagd",
+ "order": 1829,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5150,
+ "shinutiNormal": 3700,
+ "shinutiHard": 2160,
+ "shinutiMania": 1440,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5150,
+ "shinutiNormalDuet": 3700,
+ "shinutiHardDuet": 2160,
+ "shinutiManiaDuet": 1440,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1002500,
+ "scoreHard": 1003520,
+ "scoreMania": 1006060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 310,
+ "id": "imcanz",
+ "songFileName": "song_imcanz",
+ "order": 1830,
+ "genreNo": 6,
+ "branchEasy": true,
+ "branchNormal": true,
+ "branchHard": true,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6070,
+ "shinutiNormal": 3580,
+ "shinutiHard": 2400,
+ "shinutiMania": 1860,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6070,
+ "shinutiNormalDuet": 3580,
+ "shinutiHardDuet": 2400,
+ "shinutiManiaDuet": 1860,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000810,
+ "scoreNormal": 1001780,
+ "scoreHard": 1002600,
+ "scoreMania": 1003360,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 311,
+ "id": "imclip",
+ "songFileName": "song_imclip",
+ "order": 1831,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 9,
+ "shinutiEasy": 10510,
+ "shinutiNormal": 7750,
+ "shinutiHard": 3420,
+ "shinutiMania": 2420,
+ "shinutiUra": 1480,
+ "shinutiEasyDuet": 10510,
+ "shinutiNormalDuet": 7750,
+ "shinutiHardDuet": 3420,
+ "shinutiManiaDuet": 2420,
+ "shinutiUraDuet": 1480,
+ "scoreEasy": 1000140,
+ "scoreNormal": 1000450,
+ "scoreHard": 1001480,
+ "scoreMania": 1003700,
+ "scoreUra": 1480
+ },
+ {
+ "uniqueId": 312,
+ "id": "imcnev",
+ "songFileName": "song_imcnev",
+ "order": 1832,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7850,
+ "shinutiNormal": 5520,
+ "shinutiHard": 2750,
+ "shinutiMania": 1480,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7850,
+ "shinutiNormalDuet": 5520,
+ "shinutiHardDuet": 2750,
+ "shinutiManiaDuet": 1480,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1001180,
+ "scoreHard": 1003150,
+ "scoreMania": 1004600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 313,
+ "id": "imconc",
+ "songFileName": "song_imconc",
+ "order": 1833,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7560,
+ "shinutiNormal": 6370,
+ "shinutiHard": 2860,
+ "shinutiMania": 2350,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7560,
+ "shinutiNormalDuet": 6370,
+ "shinutiHardDuet": 2860,
+ "shinutiManiaDuet": 2350,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000860,
+ "scoreNormal": 1000250,
+ "scoreHard": 1001660,
+ "scoreMania": 1001450,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 314,
+ "id": "imcshn",
+ "songFileName": "song_imcshn",
+ "order": 1834,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 9,
+ "shinutiEasy": 11750,
+ "shinutiNormal": 6770,
+ "shinutiHard": 4030,
+ "shinutiMania": 2840,
+ "shinutiUra": 1820,
+ "shinutiEasyDuet": 11750,
+ "shinutiNormalDuet": 6770,
+ "shinutiHardDuet": 4030,
+ "shinutiManiaDuet": 2840,
+ "shinutiUraDuet": 1820,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1000420,
+ "scoreHard": 1001780,
+ "scoreMania": 1000640,
+ "scoreUra": 1820
+ },
+ {
+ "uniqueId": 315,
+ "id": "imcsml",
+ "songFileName": "song_imcsml",
+ "order": 1835,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8830,
+ "shinutiNormal": 5360,
+ "shinutiHard": 3150,
+ "shinutiMania": 1920,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8830,
+ "shinutiNormalDuet": 5360,
+ "shinutiHardDuet": 3150,
+ "shinutiManiaDuet": 1920,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000460,
+ "scoreNormal": 1001640,
+ "scoreHard": 1002000,
+ "scoreMania": 1003200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 316,
+ "id": "imcstr",
+ "songFileName": "song_imcstr",
+ "order": 1836,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 9,
+ "shinutiEasy": 12050,
+ "shinutiNormal": 9380,
+ "shinutiHard": 4680,
+ "shinutiMania": 2880,
+ "shinutiUra": 1880,
+ "shinutiEasyDuet": 12050,
+ "shinutiNormalDuet": 9380,
+ "shinutiHardDuet": 4680,
+ "shinutiManiaDuet": 2880,
+ "shinutiUraDuet": 1880,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1001000,
+ "scoreHard": 1001480,
+ "scoreMania": 1001980,
+ "scoreUra": 1880
+ },
+ {
+ "uniqueId": 317,
+ "id": "imctok",
+ "songFileName": "song_imctok",
+ "order": 1837,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 9,
+ "shinutiEasy": 9890,
+ "shinutiNormal": 8700,
+ "shinutiHard": 3050,
+ "shinutiMania": 2250,
+ "shinutiUra": 1480,
+ "shinutiEasyDuet": 9890,
+ "shinutiNormalDuet": 8700,
+ "shinutiHardDuet": 3050,
+ "shinutiManiaDuet": 2250,
+ "shinutiUraDuet": 1480,
+ "scoreEasy": 1000800,
+ "scoreNormal": 1000000,
+ "scoreHard": 1000300,
+ "scoreMania": 1001650,
+ "scoreUra": 1480
+ },
+ {
+ "uniqueId": 318,
+ "id": "imedrv",
+ "songFileName": "song_imedrv",
+ "order": 1840,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8710,
+ "shinutiNormal": 5830,
+ "shinutiHard": 3140,
+ "shinutiMania": 2170,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8710,
+ "shinutiNormalDuet": 5830,
+ "shinutiHardDuet": 3140,
+ "shinutiManiaDuet": 2170,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000540,
+ "scoreNormal": 1000570,
+ "scoreHard": 1001800,
+ "scoreMania": 1003520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 319,
+ "id": "imeglo",
+ "songFileName": "song_imeglo",
+ "order": 1841,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 13800,
+ "shinutiNormal": 11380,
+ "shinutiHard": 5060,
+ "shinutiMania": 3140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13800,
+ "shinutiNormalDuet": 11380,
+ "shinutiHardDuet": 5060,
+ "shinutiManiaDuet": 3140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1000360,
+ "scoreHard": 1000260,
+ "scoreMania": 1001400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 320,
+ "id": "imersn",
+ "songFileName": "song_imersn",
+ "order": 1843,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 19750,
+ "shinutiNormal": 9670,
+ "shinutiHard": 4960,
+ "shinutiMania": 2460,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 19750,
+ "shinutiNormalDuet": 9670,
+ "shinutiHardDuet": 4960,
+ "shinutiManiaDuet": 2460,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1000640,
+ "scoreHard": 1001340,
+ "scoreMania": 1000900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 321,
+ "id": "imm39",
+ "songFileName": "song_imm39",
+ "order": 1845,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9870,
+ "shinutiNormal": 6570,
+ "shinutiHard": 3190,
+ "shinutiMania": 1960,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9870,
+ "shinutiNormalDuet": 6570,
+ "shinutiHardDuet": 3190,
+ "shinutiManiaDuet": 1960,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000900,
+ "scoreNormal": 1000900,
+ "scoreHard": 1001910,
+ "scoreMania": 1002900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 322,
+ "id": "immbra",
+ "songFileName": "song_immbra",
+ "order": 1847,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7230,
+ "shinutiNormal": 5170,
+ "shinutiHard": 2620,
+ "shinutiMania": 1350,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7230,
+ "shinutiNormalDuet": 5170,
+ "shinutiHardDuet": 2620,
+ "shinutiManiaDuet": 1350,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000610,
+ "scoreNormal": 1000470,
+ "scoreHard": 1003440,
+ "scoreMania": 1000300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 323,
+ "id": "imrdiv",
+ "songFileName": "song_imrdiv",
+ "order": 1848,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 11940,
+ "shinutiNormal": 7280,
+ "shinutiHard": 3780,
+ "shinutiMania": 1560,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11940,
+ "shinutiNormalDuet": 7280,
+ "shinutiHardDuet": 3780,
+ "shinutiManiaDuet": 1560,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000520,
+ "scoreNormal": 1000680,
+ "scoreHard": 1000160,
+ "scoreMania": 1005060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 324,
+ "id": "imrmm",
+ "songFileName": "song_imrmm",
+ "order": 1849,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 12750,
+ "shinutiNormal": 7360,
+ "shinutiHard": 4370,
+ "shinutiMania": 1890,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12750,
+ "shinutiNormalDuet": 7360,
+ "shinutiHardDuet": 4370,
+ "shinutiManiaDuet": 1890,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1001100,
+ "scoreHard": 1001890,
+ "scoreMania": 1002680,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 325,
+ "id": "imshhb",
+ "songFileName": "song_imshhb",
+ "order": 1872,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 4870,
+ "shinutiNormal": 3330,
+ "shinutiHard": 2150,
+ "shinutiMania": 1270,
+ "shinutiUra": 1290,
+ "shinutiEasyDuet": 4870,
+ "shinutiNormalDuet": 3330,
+ "shinutiHardDuet": 2150,
+ "shinutiManiaDuet": 1270,
+ "shinutiUraDuet": 1290,
+ "scoreEasy": 1001710,
+ "scoreNormal": 1001580,
+ "scoreHard": 1004050,
+ "scoreMania": 1000450,
+ "scoreUra": 1290
+ },
+ {
+ "uniqueId": 326,
+ "id": "imsims",
+ "songFileName": "song_imsims",
+ "order": 1876,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": true,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 8,
+ "shinutiEasy": 6380,
+ "shinutiNormal": 5340,
+ "shinutiHard": 2710,
+ "shinutiMania": 1290,
+ "shinutiUra": 1790,
+ "shinutiEasyDuet": 6380,
+ "shinutiNormalDuet": 5340,
+ "shinutiHardDuet": 2710,
+ "shinutiManiaDuet": 1290,
+ "shinutiUraDuet": 1790,
+ "scoreEasy": 1000580,
+ "scoreNormal": 1001840,
+ "scoreHard": 1003260,
+ "scoreMania": 1000950,
+ "scoreUra": 1790
+ },
+ {
+ "uniqueId": 327,
+ "id": "imsjbr",
+ "songFileName": "song_imsjbr",
+ "order": 1879,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 7680,
+ "shinutiNormal": 5690,
+ "shinutiHard": 2730,
+ "shinutiMania": 1760,
+ "shinutiUra": 1300,
+ "shinutiEasyDuet": 7680,
+ "shinutiNormalDuet": 5690,
+ "shinutiHardDuet": 2730,
+ "shinutiManiaDuet": 1760,
+ "shinutiUraDuet": 1300,
+ "scoreEasy": 1000940,
+ "scoreNormal": 1000080,
+ "scoreHard": 1003180,
+ "scoreMania": 1002020,
+ "scoreUra": 1300
+ },
+ {
+ "uniqueId": 328,
+ "id": "imsmah",
+ "songFileName": "song_imsmah",
+ "order": 1889,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 6,
+ "shinutiEasy": 6900,
+ "shinutiNormal": 6150,
+ "shinutiHard": 3200,
+ "shinutiMania": 2220,
+ "shinutiUra": 1900,
+ "shinutiEasyDuet": 6900,
+ "shinutiNormalDuet": 6150,
+ "shinutiHardDuet": 3200,
+ "shinutiManiaDuet": 2220,
+ "shinutiUraDuet": 1900,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1000250,
+ "scoreHard": 1000100,
+ "scoreMania": 1003680,
+ "scoreUra": 1900
+ },
+ {
+ "uniqueId": 329,
+ "id": "imsmjd",
+ "songFileName": "song_imsmjd",
+ "order": 1893,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9910,
+ "shinutiNormal": 7130,
+ "shinutiHard": 3140,
+ "shinutiMania": 1910,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9910,
+ "shinutiNormalDuet": 7130,
+ "shinutiHardDuet": 3140,
+ "shinutiManiaDuet": 1910,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1000770,
+ "scoreHard": 1002500,
+ "scoreMania": 1004500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 330,
+ "id": "imsmpr",
+ "songFileName": "song_imsmpr",
+ "order": 1894,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 8610,
+ "shinutiNormal": 6800,
+ "shinutiHard": 3120,
+ "shinutiMania": 1650,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8610,
+ "shinutiNormalDuet": 6800,
+ "shinutiHardDuet": 3120,
+ "shinutiManiaDuet": 1650,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000250,
+ "scoreNormal": 1000200,
+ "scoreHard": 1001060,
+ "scoreMania": 1003400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 331,
+ "id": "imsmt5",
+ "songFileName": "song_imsmt5",
+ "order": 1896,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9080,
+ "shinutiNormal": 7550,
+ "shinutiHard": 4720,
+ "shinutiMania": 2370,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9080,
+ "shinutiNormalDuet": 7550,
+ "shinutiHardDuet": 4720,
+ "shinutiManiaDuet": 2370,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000320,
+ "scoreNormal": 1000750,
+ "scoreHard": 1001680,
+ "scoreMania": 1002980,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 332,
+ "id": "imsmtp",
+ "songFileName": "song_imsmtp",
+ "order": 1897,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8640,
+ "shinutiNormal": 6280,
+ "shinutiHard": 4170,
+ "shinutiMania": 2530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8640,
+ "shinutiNormalDuet": 6280,
+ "shinutiHardDuet": 4170,
+ "shinutiManiaDuet": 2530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000760,
+ "scoreNormal": 1000640,
+ "scoreHard": 1000090,
+ "scoreMania": 1001200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 333,
+ "id": "imsomn",
+ "songFileName": "song_imsomn",
+ "order": 1904,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 6350,
+ "shinutiNormal": 4980,
+ "shinutiHard": 3050,
+ "shinutiMania": 2010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6350,
+ "shinutiNormalDuet": 4980,
+ "shinutiHardDuet": 3050,
+ "shinutiManiaDuet": 2010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1000760,
+ "scoreHard": 1000650,
+ "scoreMania": 1001970,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 334,
+ "id": "imsshn",
+ "songFileName": "song_imsshn",
+ "order": 1914,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 7,
+ "shinutiEasy": 6640,
+ "shinutiNormal": 4970,
+ "shinutiHard": 3310,
+ "shinutiMania": 1780,
+ "shinutiUra": 2100,
+ "shinutiEasyDuet": 6640,
+ "shinutiNormalDuet": 4970,
+ "shinutiHardDuet": 3310,
+ "shinutiManiaDuet": 1780,
+ "shinutiUraDuet": 2100,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1001700,
+ "scoreHard": 1002500,
+ "scoreMania": 1002200,
+ "scoreUra": 2100
+ },
+ {
+ "uniqueId": 335,
+ "id": "imymok",
+ "songFileName": "song_imymok",
+ "order": 1929,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6610,
+ "shinutiNormal": 4310,
+ "shinutiHard": 2760,
+ "shinutiMania": 2140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6610,
+ "shinutiNormalDuet": 4310,
+ "shinutiHardDuet": 2760,
+ "shinutiManiaDuet": 2140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000010,
+ "scoreNormal": 1000610,
+ "scoreHard": 1000720,
+ "scoreMania": 1002700,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 336,
+ "id": "indeni",
+ "songFileName": "song_indeni",
+ "order": 1935,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7030,
+ "shinutiNormal": 4300,
+ "shinutiHard": 3020,
+ "shinutiMania": 1780,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7030,
+ "shinutiNormalDuet": 4300,
+ "shinutiHardDuet": 3020,
+ "shinutiManiaDuet": 1780,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000030,
+ "scoreNormal": 1000700,
+ "scoreHard": 1001240,
+ "scoreMania": 1002100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 337,
+ "id": "insp29",
+ "songFileName": "song_insp29",
+ "order": 1939,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 10,
+ "shinutiEasy": 12240,
+ "shinutiNormal": 4020,
+ "shinutiHard": 2420,
+ "shinutiMania": 1960,
+ "shinutiUra": 1200,
+ "shinutiEasyDuet": 12240,
+ "shinutiNormalDuet": 4020,
+ "shinutiHardDuet": 2420,
+ "shinutiManiaDuet": 1960,
+ "shinutiUraDuet": 1200,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1000320,
+ "scoreHard": 1002760,
+ "scoreMania": 1000980,
+ "scoreUra": 1200
+ },
+ {
+ "uniqueId": 338,
+ "id": "inspio",
+ "songFileName": "song_inspio",
+ "order": 1940,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4530,
+ "shinutiNormal": 3020,
+ "shinutiHard": 1510,
+ "shinutiMania": 950,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4530,
+ "shinutiNormalDuet": 3020,
+ "shinutiHardDuet": 1510,
+ "shinutiManiaDuet": 950,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001780,
+ "scoreNormal": 1003080,
+ "scoreHard": 1001430,
+ "scoreMania": 1007000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 339,
+ "id": "inu",
+ "songFileName": "song_inu",
+ "order": 1942,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12170,
+ "shinutiNormal": 9600,
+ "shinutiHard": 4550,
+ "shinutiMania": 3040,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12170,
+ "shinutiNormalDuet": 9600,
+ "shinutiHardDuet": 4550,
+ "shinutiManiaDuet": 3040,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000540,
+ "scoreNormal": 1000700,
+ "scoreHard": 1001800,
+ "scoreMania": 1001520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 340,
+ "id": "inuhoe",
+ "songFileName": "song_inuhoe",
+ "order": 1943,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 5660,
+ "shinutiNormal": 4210,
+ "shinutiHard": 2640,
+ "shinutiMania": 1720,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5660,
+ "shinutiNormalDuet": 4210,
+ "shinutiHardDuet": 2640,
+ "shinutiManiaDuet": 1720,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001360,
+ "scoreNormal": 1000240,
+ "scoreHard": 1002060,
+ "scoreMania": 1005400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 341,
+ "id": "invara",
+ "songFileName": "song_invara",
+ "order": 1945,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6010,
+ "shinutiNormal": 3640,
+ "shinutiHard": 1970,
+ "shinutiMania": 1530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6010,
+ "shinutiNormalDuet": 3640,
+ "shinutiHardDuet": 1970,
+ "shinutiManiaDuet": 1530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000350,
+ "scoreNormal": 1000480,
+ "scoreHard": 1001610,
+ "scoreMania": 1004340,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 342,
+ "id": "invinv",
+ "songFileName": "song_invinv",
+ "order": 1946,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 6680,
+ "shinutiNormal": 4860,
+ "shinutiHard": 2360,
+ "shinutiMania": 2060,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6680,
+ "shinutiNormalDuet": 4860,
+ "shinutiHardDuet": 2360,
+ "shinutiManiaDuet": 2060,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001220,
+ "scoreNormal": 1000340,
+ "scoreHard": 1003920,
+ "scoreMania": 1003620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 343,
+ "id": "irpunk",
+ "songFileName": "song_irpunk",
+ "order": 1948,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5760,
+ "shinutiNormal": 2720,
+ "shinutiHard": 1560,
+ "shinutiMania": 1160,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5760,
+ "shinutiNormalDuet": 2720,
+ "shinutiHardDuet": 1560,
+ "shinutiManiaDuet": 1160,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001220,
+ "scoreNormal": 1001740,
+ "scoreHard": 1004520,
+ "scoreMania": 1005040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 344,
+ "id": "isan",
+ "songFileName": "song_isan",
+ "order": 1950,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9310,
+ "shinutiNormal": 5000,
+ "shinutiHard": 2780,
+ "shinutiMania": 1710,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9310,
+ "shinutiNormalDuet": 5000,
+ "shinutiHardDuet": 2780,
+ "shinutiManiaDuet": 1710,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000260,
+ "scoreNormal": 1001700,
+ "scoreHard": 1003560,
+ "scoreMania": 1002810,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 345,
+ "id": "issokm",
+ "songFileName": "song_issokm",
+ "order": 1952,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4990,
+ "shinutiNormal": 3450,
+ "shinutiHard": 2400,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4990,
+ "shinutiNormalDuet": 3450,
+ "shinutiHardDuet": 2400,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001210,
+ "scoreNormal": 1002750,
+ "scoreHard": 1001900,
+ "scoreMania": 1004350,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 346,
+ "id": "itadak",
+ "songFileName": "song_itadak",
+ "order": 1954,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 3920,
+ "shinutiNormal": 2900,
+ "shinutiHard": 1860,
+ "shinutiMania": 1130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3920,
+ "shinutiNormalDuet": 2900,
+ "shinutiHardDuet": 1860,
+ "shinutiManiaDuet": 1130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001760,
+ "scoreNormal": 1003000,
+ "scoreHard": 1002700,
+ "scoreMania": 1000730,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 347,
+ "id": "iwantu",
+ "songFileName": "song_iwantu",
+ "order": 1956,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 3750,
+ "shinutiNormal": 2900,
+ "shinutiHard": 1690,
+ "shinutiMania": 1050,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3750,
+ "shinutiNormalDuet": 2900,
+ "shinutiHardDuet": 1690,
+ "shinutiManiaDuet": 1050,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000150,
+ "scoreNormal": 1003200,
+ "scoreHard": 1005590,
+ "scoreMania": 1001650,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 348,
+ "id": "izanam",
+ "songFileName": "song_izanam",
+ "order": 1959,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 4470,
+ "shinutiNormal": 3000,
+ "shinutiHard": 1460,
+ "shinutiMania": 1140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4470,
+ "shinutiNormalDuet": 3000,
+ "shinutiHardDuet": 1460,
+ "shinutiManiaDuet": 1140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000540,
+ "scoreNormal": 1000800,
+ "scoreHard": 1001800,
+ "scoreMania": 1008440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 349,
+ "id": "j99",
+ "songFileName": "song_j99",
+ "order": 1960,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9650,
+ "shinutiNormal": 6890,
+ "shinutiHard": 2810,
+ "shinutiMania": 1820,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9650,
+ "shinutiNormalDuet": 6890,
+ "shinutiHardDuet": 2810,
+ "shinutiManiaDuet": 1820,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000550,
+ "scoreNormal": 1000060,
+ "scoreHard": 1001860,
+ "scoreMania": 1002820,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 350,
+ "id": "japari",
+ "songFileName": "song_japari",
+ "order": 1963,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12720,
+ "shinutiNormal": 8540,
+ "shinutiHard": 4100,
+ "shinutiMania": 2220,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12720,
+ "shinutiNormalDuet": 8540,
+ "shinutiHardDuet": 4100,
+ "shinutiManiaDuet": 2220,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000360,
+ "scoreNormal": 1001140,
+ "scoreHard": 1000400,
+ "scoreMania": 1002380,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 351,
+ "id": "jazmen",
+ "songFileName": "song_jazmen",
+ "order": 1965,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 9800,
+ "shinutiNormal": 6210,
+ "shinutiHard": 2490,
+ "shinutiMania": 1890,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9800,
+ "shinutiNormalDuet": 6210,
+ "shinutiHardDuet": 2490,
+ "shinutiManiaDuet": 1890,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1000810,
+ "scoreHard": 1003970,
+ "scoreMania": 1000510,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 352,
+ "id": "jaznoc",
+ "songFileName": "song_jaznoc",
+ "order": 1966,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6950,
+ "shinutiNormal": 4500,
+ "shinutiHard": 2630,
+ "shinutiMania": 2000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6950,
+ "shinutiNormalDuet": 4500,
+ "shinutiHardDuet": 2630,
+ "shinutiManiaDuet": 2000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000850,
+ "scoreNormal": 1000200,
+ "scoreHard": 1000270,
+ "scoreMania": 1004000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 353,
+ "id": "ji9cho",
+ "songFileName": "song_ji9cho",
+ "order": 1970,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5340,
+ "shinutiNormal": 3300,
+ "shinutiHard": 1660,
+ "shinutiMania": 1200,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5340,
+ "shinutiNormalDuet": 3300,
+ "shinutiHardDuet": 1660,
+ "shinutiManiaDuet": 1200,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000640,
+ "scoreNormal": 1001200,
+ "scoreHard": 1005620,
+ "scoreMania": 1003200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 354,
+ "id": "ji9sou",
+ "songFileName": "song_ji9sou",
+ "order": 1971,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 4300,
+ "shinutiNormal": 3190,
+ "shinutiHard": 1730,
+ "shinutiMania": 1300,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4300,
+ "shinutiNormalDuet": 3190,
+ "shinutiHardDuet": 1730,
+ "shinutiManiaDuet": 1300,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1002270,
+ "scoreHard": 1002770,
+ "scoreMania": 1004900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 355,
+ "id": "jouzai",
+ "songFileName": "song_jouzai",
+ "order": 1973,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4590,
+ "shinutiNormal": 2830,
+ "shinutiHard": 2000,
+ "shinutiMania": 1210,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4590,
+ "shinutiNormalDuet": 2830,
+ "shinutiHardDuet": 2000,
+ "shinutiManiaDuet": 1210,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1002020,
+ "scoreNormal": 1002720,
+ "scoreHard": 1004600,
+ "scoreMania": 1007720,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 356,
+ "id": "joyful",
+ "songFileName": "song_joyful",
+ "order": 1974,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10780,
+ "shinutiNormal": 6470,
+ "shinutiHard": 3200,
+ "shinutiMania": 2180,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10780,
+ "shinutiNormalDuet": 6470,
+ "shinutiHardDuet": 3200,
+ "shinutiManiaDuet": 2180,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000260,
+ "scoreNormal": 1000610,
+ "scoreHard": 1000700,
+ "scoreMania": 1000100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 357,
+ "id": "jubflw",
+ "songFileName": "song_jubflw",
+ "order": 1975,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 3620,
+ "shinutiNormal": 2680,
+ "shinutiHard": 1550,
+ "shinutiMania": 1380,
+ "shinutiUra": 1140,
+ "shinutiEasyDuet": 3620,
+ "shinutiNormalDuet": 2680,
+ "shinutiHardDuet": 1550,
+ "shinutiManiaDuet": 1380,
+ "shinutiUraDuet": 1140,
+ "scoreEasy": 1002480,
+ "scoreNormal": 1002320,
+ "scoreHard": 1005750,
+ "scoreMania": 1003380,
+ "scoreUra": 1140
+ },
+ {
+ "uniqueId": 358,
+ "id": "ka2kam",
+ "songFileName": "song_ka2kam",
+ "order": 1983,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 18630,
+ "shinutiNormal": 11190,
+ "shinutiHard": 5060,
+ "shinutiMania": 2130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18630,
+ "shinutiNormalDuet": 11190,
+ "shinutiHardDuet": 5060,
+ "shinutiManiaDuet": 2130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000390,
+ "scoreNormal": 1000320,
+ "scoreHard": 1000740,
+ "scoreMania": 1000830,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 359,
+ "id": "kagmtm",
+ "songFileName": "song_kagmtm",
+ "order": 1988,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7040,
+ "shinutiNormal": 4760,
+ "shinutiHard": 3370,
+ "shinutiMania": 2100,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7040,
+ "shinutiNormalDuet": 4760,
+ "shinutiHardDuet": 3370,
+ "shinutiManiaDuet": 2100,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000540,
+ "scoreNormal": 1000280,
+ "scoreHard": 1001480,
+ "scoreMania": 1002600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 360,
+ "id": "kagu27",
+ "songFileName": "song_kagu27",
+ "order": 1989,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7310,
+ "shinutiNormal": 2890,
+ "shinutiHard": 2140,
+ "shinutiMania": 1400,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7310,
+ "shinutiNormalDuet": 2890,
+ "shinutiHardDuet": 2140,
+ "shinutiManiaDuet": 1400,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000550,
+ "scoreNormal": 1000050,
+ "scoreHard": 1001460,
+ "scoreMania": 1003400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 361,
+ "id": "kahata",
+ "songFileName": "song_kahata",
+ "order": 1990,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 9400,
+ "shinutiNormal": 6050,
+ "shinutiHard": 3070,
+ "shinutiMania": 1760,
+ "shinutiUra": 1100,
+ "shinutiEasyDuet": 9400,
+ "shinutiNormalDuet": 6050,
+ "shinutiHardDuet": 3070,
+ "shinutiManiaDuet": 1760,
+ "shinutiUraDuet": 1100,
+ "scoreEasy": 1001000,
+ "scoreNormal": 1000750,
+ "scoreHard": 1000040,
+ "scoreMania": 1001080,
+ "scoreUra": 1100
+ },
+ {
+ "uniqueId": 362,
+ "id": "kaidan",
+ "songFileName": "song_kaidan",
+ "order": 1993,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6290,
+ "shinutiNormal": 4740,
+ "shinutiHard": 2400,
+ "shinutiMania": 1060,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6290,
+ "shinutiNormalDuet": 4740,
+ "shinutiHardDuet": 2400,
+ "shinutiManiaDuet": 1060,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1001460,
+ "scoreHard": 1000000,
+ "scoreMania": 1008860,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 363,
+ "id": "kaiden",
+ "songFileName": "song_kaiden",
+ "order": 1994,
+ "genreNo": 7,
+ "branchEasy": true,
+ "branchNormal": true,
+ "branchHard": true,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6350,
+ "shinutiNormal": 4700,
+ "shinutiHard": 2270,
+ "shinutiMania": 1570,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6350,
+ "shinutiNormalDuet": 4700,
+ "shinutiHardDuet": 2270,
+ "shinutiManiaDuet": 1570,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1001500,
+ "scoreHard": 1001220,
+ "scoreMania": 1004930,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 364,
+ "id": "kaiki",
+ "songFileName": "song_kaiki",
+ "order": 1995,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5480,
+ "shinutiNormal": 3610,
+ "shinutiHard": 2580,
+ "shinutiMania": 1700,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5480,
+ "shinutiNormalDuet": 3610,
+ "shinutiHardDuet": 2580,
+ "shinutiManiaDuet": 1700,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001660,
+ "scoreNormal": 1001260,
+ "scoreHard": 1000600,
+ "scoreMania": 1003600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 365,
+ "id": "kalice",
+ "songFileName": "song_kalice",
+ "order": 1996,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 8,
+ "shinutiEasy": 8300,
+ "shinutiNormal": 6150,
+ "shinutiHard": 3450,
+ "shinutiMania": 2250,
+ "shinutiUra": 1760,
+ "shinutiEasyDuet": 8300,
+ "shinutiNormalDuet": 6150,
+ "shinutiHardDuet": 3450,
+ "shinutiManiaDuet": 2250,
+ "shinutiUraDuet": 1760,
+ "scoreEasy": 1000020,
+ "scoreNormal": 1001340,
+ "scoreHard": 1001430,
+ "scoreMania": 1002450,
+ "scoreUra": 1005280
+ },
+ {
+ "uniqueId": 366,
+ "id": "karamr",
+ "songFileName": "song_karamr",
+ "order": 1915,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4750,
+ "shinutiNormal": 3330,
+ "shinutiHard": 2150,
+ "shinutiMania": 1290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4750,
+ "shinutiNormalDuet": 3330,
+ "shinutiHardDuet": 2150,
+ "shinutiManiaDuet": 1290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001450,
+ "scoreNormal": 1001240,
+ "scoreHard": 1003100,
+ "scoreMania": 1004960,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 367,
+ "id": "karyu",
+ "songFileName": "song_karyu",
+ "order": 2004,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 4200,
+ "shinutiNormal": 2870,
+ "shinutiHard": 1990,
+ "shinutiMania": 1470,
+ "shinutiUra": 1250,
+ "shinutiEasyDuet": 4200,
+ "shinutiNormalDuet": 2870,
+ "shinutiHardDuet": 1990,
+ "shinutiManiaDuet": 1470,
+ "shinutiUraDuet": 1250,
+ "scoreEasy": 1001800,
+ "scoreNormal": 1000420,
+ "scoreHard": 1001020,
+ "scoreMania": 1001310,
+ "scoreUra": 1250
+ },
+ {
+ "uniqueId": 368,
+ "id": "kecha",
+ "songFileName": "song_kecha",
+ "order": 2009,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5300,
+ "shinutiNormal": 4350,
+ "shinutiHard": 2290,
+ "shinutiMania": 2000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5300,
+ "shinutiNormalDuet": 4350,
+ "shinutiHardDuet": 2290,
+ "shinutiManiaDuet": 2000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001700,
+ "scoreNormal": 1000500,
+ "scoreHard": 1000730,
+ "scoreMania": 1004500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 369,
+ "id": "kgnhak",
+ "songFileName": "song_kgnhak",
+ "order": 2019,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 2,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 16550,
+ "shinutiNormal": 12710,
+ "shinutiHard": 8100,
+ "shinutiMania": 3120,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16550,
+ "shinutiNormalDuet": 12710,
+ "shinutiHardDuet": 8100,
+ "shinutiManiaDuet": 3120,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1000480,
+ "scoreHard": 1000600,
+ "scoreMania": 1000980,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 370,
+ "id": "kienbj",
+ "songFileName": "song_kienbj",
+ "order": 2021,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4260,
+ "shinutiNormal": 2610,
+ "shinutiHard": 1500,
+ "shinutiMania": 880,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4260,
+ "shinutiNormalDuet": 2610,
+ "shinutiHardDuet": 1500,
+ "shinutiManiaDuet": 880,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001320,
+ "scoreNormal": 1002290,
+ "scoreHard": 1000200,
+ "scoreMania": 1004080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 371,
+ "id": "kim69",
+ "songFileName": "song_kim69",
+ "order": 2024,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 2,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 14820,
+ "shinutiNormal": 10150,
+ "shinutiHard": 5450,
+ "shinutiMania": 3110,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14820,
+ "shinutiNormalDuet": 10150,
+ "shinutiHardDuet": 5450,
+ "shinutiManiaDuet": 3110,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1000800,
+ "scoreHard": 1001500,
+ "scoreMania": 1000080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 372,
+ "id": "kimetu",
+ "songFileName": "song_kimetu",
+ "order": 2028,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 8,
+ "shinutiEasy": 21610,
+ "shinutiNormal": 13410,
+ "shinutiHard": 7030,
+ "shinutiMania": 3420,
+ "shinutiUra": 2480,
+ "shinutiEasyDuet": 21610,
+ "shinutiNormalDuet": 13410,
+ "shinutiHardDuet": 7030,
+ "shinutiManiaDuet": 3420,
+ "shinutiUraDuet": 2480,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1000150,
+ "scoreHard": 1000980,
+ "scoreMania": 1000930,
+ "scoreUra": 1000100
+ },
+ {
+ "uniqueId": 373,
+ "id": "kimpla",
+ "songFileName": "song_kimpla",
+ "order": 2032,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6420,
+ "shinutiNormal": 4760,
+ "shinutiHard": 3290,
+ "shinutiMania": 2210,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6420,
+ "shinutiNormalDuet": 4760,
+ "shinutiHardDuet": 3290,
+ "shinutiManiaDuet": 2210,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1001640,
+ "scoreHard": 1002970,
+ "scoreMania": 1000500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 374,
+ "id": "kirame",
+ "songFileName": "song_kirame",
+ "order": 2038,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5050,
+ "shinutiNormal": 3640,
+ "shinutiHard": 2110,
+ "shinutiMania": 1450,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5050,
+ "shinutiNormalDuet": 3640,
+ "shinutiHardDuet": 2110,
+ "shinutiManiaDuet": 1450,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001000,
+ "scoreNormal": 1002600,
+ "scoreHard": 1004450,
+ "scoreMania": 1003150,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 375,
+ "id": "kiramj",
+ "songFileName": "song_kiramj",
+ "order": 2039,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 24880,
+ "shinutiNormal": 17430,
+ "shinutiHard": 5000,
+ "shinutiMania": 3660,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 24880,
+ "shinutiNormalDuet": 17430,
+ "shinutiHardDuet": 5000,
+ "shinutiManiaDuet": 3660,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1000110,
+ "scoreHard": 1001300,
+ "scoreMania": 1001260,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 376,
+ "id": "kirby",
+ "songFileName": "song_kirby",
+ "order": 2042,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 11860,
+ "shinutiNormal": 5700,
+ "shinutiHard": 2940,
+ "shinutiMania": 2170,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11860,
+ "shinutiNormalDuet": 5700,
+ "shinutiHardDuet": 2940,
+ "shinutiManiaDuet": 2170,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1001500,
+ "scoreHard": 1002520,
+ "scoreMania": 1004190,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 377,
+ "id": "kirby2",
+ "songFileName": "song_kirby2",
+ "order": 2043,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 10,
+ "shinutiEasy": 7190,
+ "shinutiNormal": 5040,
+ "shinutiHard": 1970,
+ "shinutiMania": 1510,
+ "shinutiUra": 990,
+ "shinutiEasyDuet": 7190,
+ "shinutiNormalDuet": 5040,
+ "shinutiHardDuet": 1970,
+ "shinutiManiaDuet": 1510,
+ "shinutiUraDuet": 990,
+ "scoreEasy": 1001120,
+ "scoreNormal": 1000140,
+ "scoreHard": 1000210,
+ "scoreMania": 1005050,
+ "scoreUra": 990
+ },
+ {
+ "uniqueId": 378,
+ "id": "kiseki",
+ "songFileName": "song_kiseki",
+ "order": 2045,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 2,
+ "starUra": 0,
+ "shinutiEasy": 13890,
+ "shinutiNormal": 10750,
+ "shinutiHard": 5950,
+ "shinutiMania": 4930,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13890,
+ "shinutiNormalDuet": 10750,
+ "shinutiHardDuet": 5950,
+ "shinutiManiaDuet": 4930,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000480,
+ "scoreNormal": 1000350,
+ "scoreHard": 1000400,
+ "scoreMania": 1001790,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 379,
+ "id": "kkairo",
+ "songFileName": "song_kkairo",
+ "order": 2051,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 10,
+ "shinutiEasy": 5700,
+ "shinutiNormal": 3660,
+ "shinutiHard": 1640,
+ "shinutiMania": 1110,
+ "shinutiUra": 1000,
+ "shinutiEasyDuet": 5700,
+ "shinutiNormalDuet": 3660,
+ "shinutiHardDuet": 1640,
+ "shinutiManiaDuet": 1110,
+ "shinutiUraDuet": 1000,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1000860,
+ "scoreHard": 1003220,
+ "scoreMania": 1007400,
+ "scoreUra": 1007830
+ },
+ {
+ "uniqueId": 380,
+ "id": "kkrobo",
+ "songFileName": "song_kkrobo",
+ "order": 2053,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 10080,
+ "shinutiNormal": 6470,
+ "shinutiHard": 3390,
+ "shinutiMania": 1600,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10080,
+ "shinutiNormalDuet": 6470,
+ "shinutiHardDuet": 3390,
+ "shinutiManiaDuet": 1600,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000040,
+ "scoreNormal": 1000910,
+ "scoreHard": 1002490,
+ "scoreMania": 1003300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 381,
+ "id": "klwind",
+ "songFileName": "song_klwind",
+ "order": 2056,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6600,
+ "shinutiNormal": 4550,
+ "shinutiHard": 3020,
+ "shinutiMania": 1750,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6600,
+ "shinutiNormalDuet": 4550,
+ "shinutiHardDuet": 3020,
+ "shinutiManiaDuet": 1750,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1001150,
+ "scoreHard": 1002400,
+ "scoreMania": 1001000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 382,
+ "id": "koi907",
+ "songFileName": "song_koi907",
+ "order": 2060,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4240,
+ "shinutiNormal": 2630,
+ "shinutiHard": 1740,
+ "shinutiMania": 1030,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4240,
+ "shinutiNormalDuet": 2630,
+ "shinutiHardDuet": 1740,
+ "shinutiManiaDuet": 1030,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1001350,
+ "scoreHard": 1001560,
+ "scoreMania": 1006600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 383,
+ "id": "koiama",
+ "songFileName": "song_koiama",
+ "order": 2061,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7910,
+ "shinutiNormal": 5150,
+ "shinutiHard": 2890,
+ "shinutiMania": 2380,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7910,
+ "shinutiNormalDuet": 5150,
+ "shinutiHardDuet": 2890,
+ "shinutiManiaDuet": 2380,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000050,
+ "scoreNormal": 1001700,
+ "scoreHard": 1002270,
+ "scoreMania": 1002900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 384,
+ "id": "kokiku",
+ "songFileName": "song_kokiku",
+ "order": 2062,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8190,
+ "shinutiNormal": 5500,
+ "shinutiHard": 3210,
+ "shinutiMania": 1870,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8190,
+ "shinutiNormalDuet": 5500,
+ "shinutiHardDuet": 3210,
+ "shinutiManiaDuet": 1870,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000490,
+ "scoreNormal": 1000300,
+ "scoreHard": 1001500,
+ "scoreMania": 1004870,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 385,
+ "id": "konan0",
+ "songFileName": "song_konan0",
+ "order": 2065,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12310,
+ "shinutiNormal": 7780,
+ "shinutiHard": 4230,
+ "shinutiMania": 2000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12310,
+ "shinutiNormalDuet": 7780,
+ "shinutiHardDuet": 4230,
+ "shinutiManiaDuet": 2000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000410,
+ "scoreNormal": 1000040,
+ "scoreHard": 1002180,
+ "scoreMania": 1001400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 386,
+ "id": "konanc",
+ "songFileName": "song_konanc",
+ "order": 2067,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 17080,
+ "shinutiNormal": 8040,
+ "shinutiHard": 3460,
+ "shinutiMania": 1660,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 17080,
+ "shinutiNormalDuet": 8040,
+ "shinutiHardDuet": 3460,
+ "shinutiManiaDuet": 1660,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1001120,
+ "scoreHard": 1002560,
+ "scoreMania": 1000780,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 387,
+ "id": "konant",
+ "songFileName": "song_konant",
+ "order": 2068,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 1,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 13440,
+ "shinutiNormal": 8850,
+ "shinutiHard": 4350,
+ "shinutiMania": 2570,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13440,
+ "shinutiNormalDuet": 8850,
+ "shinutiHardDuet": 4350,
+ "shinutiManiaDuet": 2570,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000460,
+ "scoreNormal": 1000800,
+ "scoreHard": 1001250,
+ "scoreMania": 1000320,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 388,
+ "id": "kooryu",
+ "songFileName": "song_kooryu",
+ "order": 2069,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 5710,
+ "shinutiNormal": 4080,
+ "shinutiHard": 2630,
+ "shinutiMania": 1340,
+ "shinutiUra": 940,
+ "shinutiEasyDuet": 5710,
+ "shinutiNormalDuet": 4080,
+ "shinutiHardDuet": 2630,
+ "shinutiManiaDuet": 1340,
+ "shinutiUraDuet": 940,
+ "scoreEasy": 1001630,
+ "scoreNormal": 1000980,
+ "scoreHard": 1001960,
+ "scoreMania": 1002260,
+ "scoreUra": 940
+ },
+ {
+ "uniqueId": 389,
+ "id": "kr01",
+ "songFileName": "song_kr01",
+ "order": 2074,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 36840,
+ "shinutiNormal": 18770,
+ "shinutiHard": 8970,
+ "shinutiMania": 6140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 36840,
+ "shinutiNormalDuet": 18770,
+ "shinutiHardDuet": 8970,
+ "shinutiManiaDuet": 6140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000180,
+ "scoreNormal": 1000410,
+ "scoreHard": 1000870,
+ "scoreMania": 1001500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 390,
+ "id": "krbld",
+ "songFileName": "song_krbld",
+ "order": 2076,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 24150,
+ "shinutiNormal": 13410,
+ "shinutiHard": 6150,
+ "shinutiMania": 3920,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 24150,
+ "shinutiNormalDuet": 13410,
+ "shinutiHardDuet": 6150,
+ "shinutiManiaDuet": 3920,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000050,
+ "scoreNormal": 1000040,
+ "scoreHard": 1000600,
+ "scoreMania": 1000980,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 391,
+ "id": "krexd",
+ "songFileName": "song_krexd",
+ "order": 2078,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 16570,
+ "shinutiNormal": 9810,
+ "shinutiHard": 4870,
+ "shinutiMania": 3190,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16570,
+ "shinutiNormalDuet": 9810,
+ "shinutiHardDuet": 4870,
+ "shinutiManiaDuet": 3190,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000210,
+ "scoreHard": 1000080,
+ "scoreMania": 1002400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 392,
+ "id": "krinne",
+ "songFileName": "song_krinne",
+ "order": 2080,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10310,
+ "shinutiNormal": 6330,
+ "shinutiHard": 3170,
+ "shinutiMania": 2140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10310,
+ "shinutiNormalDuet": 6330,
+ "shinutiHardDuet": 3170,
+ "shinutiManiaDuet": 2140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000460,
+ "scoreNormal": 1000980,
+ "scoreHard": 1002250,
+ "scoreMania": 1000140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 393,
+ "id": "krzio",
+ "songFileName": "song_krzio",
+ "order": 2084,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 2,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 27650,
+ "shinutiNormal": 14200,
+ "shinutiHard": 7140,
+ "shinutiMania": 2910,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 27650,
+ "shinutiNormalDuet": 14200,
+ "shinutiHardDuet": 7140,
+ "shinutiManiaDuet": 2910,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1000000,
+ "scoreHard": 1001260,
+ "scoreMania": 1001020,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 394,
+ "id": "kteien",
+ "songFileName": "song_kteien",
+ "order": 2086,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4990,
+ "shinutiNormal": 3700,
+ "shinutiHard": 2080,
+ "shinutiMania": 1200,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4990,
+ "shinutiNormalDuet": 3700,
+ "shinutiHardDuet": 2080,
+ "shinutiManiaDuet": 1200,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001610,
+ "scoreNormal": 1001900,
+ "scoreHard": 1003860,
+ "scoreMania": 1001600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 395,
+ "id": "kuma",
+ "songFileName": "song_kuma",
+ "order": 2087,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 1,
+ "starMania": 1,
+ "starUra": 9,
+ "shinutiEasy": 10290,
+ "shinutiNormal": 9260,
+ "shinutiHard": 5020,
+ "shinutiMania": 4990,
+ "shinutiUra": 1780,
+ "shinutiEasyDuet": 10290,
+ "shinutiNormalDuet": 9260,
+ "shinutiHardDuet": 5020,
+ "shinutiManiaDuet": 4990,
+ "shinutiUraDuet": 1780,
+ "scoreEasy": 1000530,
+ "scoreNormal": 1000920,
+ "scoreHard": 1000940,
+ "scoreMania": 1000630,
+ "scoreUra": 1780
+ },
+ {
+ "uniqueId": 396,
+ "id": "kumams",
+ "songFileName": "song_kumams",
+ "order": 2088,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 16150,
+ "shinutiNormal": 7120,
+ "shinutiHard": 3510,
+ "shinutiMania": 2690,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16150,
+ "shinutiNormalDuet": 7120,
+ "shinutiHardDuet": 3510,
+ "shinutiManiaDuet": 2690,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000350,
+ "scoreNormal": 1000380,
+ "scoreHard": 1002050,
+ "scoreMania": 1000290,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 397,
+ "id": "kumatm",
+ "songFileName": "song_kumatm",
+ "order": 2089,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7290,
+ "shinutiNormal": 5000,
+ "shinutiHard": 2660,
+ "shinutiMania": 1500,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7290,
+ "shinutiNormalDuet": 5000,
+ "shinutiHardDuet": 2660,
+ "shinutiManiaDuet": 1500,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000640,
+ "scoreNormal": 1000100,
+ "scoreHard": 1003340,
+ "scoreMania": 1001900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 399,
+ "id": "kuon",
+ "songFileName": "song_kuon",
+ "order": 2091,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8590,
+ "shinutiNormal": 5630,
+ "shinutiHard": 3210,
+ "shinutiMania": 2060,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8590,
+ "shinutiNormalDuet": 5630,
+ "shinutiHardDuet": 3210,
+ "shinutiManiaDuet": 2060,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1000310,
+ "scoreHard": 1000400,
+ "scoreMania": 1000840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 400,
+ "id": "kuraim",
+ "songFileName": "song_kuraim",
+ "order": 2092,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6680,
+ "shinutiNormal": 3630,
+ "shinutiHard": 1970,
+ "shinutiMania": 1300,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6680,
+ "shinutiNormalDuet": 3630,
+ "shinutiHardDuet": 1970,
+ "shinutiManiaDuet": 1300,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000640,
+ "scoreNormal": 1000660,
+ "scoreHard": 1000700,
+ "scoreMania": 1003100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 401,
+ "id": "kuzure",
+ "songFileName": "song_kuzure",
+ "order": 2093,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5110,
+ "shinutiNormal": 3570,
+ "shinutiHard": 1980,
+ "shinutiMania": 1450,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5110,
+ "shinutiNormalDuet": 3570,
+ "shinutiHardDuet": 1980,
+ "shinutiManiaDuet": 1450,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000150,
+ "scoreNormal": 1001230,
+ "scoreHard": 1000720,
+ "scoreMania": 1001050,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 402,
+ "id": "kykamb",
+ "songFileName": "song_kykamb",
+ "order": 2094,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 16240,
+ "shinutiNormal": 11230,
+ "shinutiHard": 6040,
+ "shinutiMania": 2540,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16240,
+ "shinutiNormalDuet": 11230,
+ "shinutiHardDuet": 6040,
+ "shinutiManiaDuet": 2540,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1000640,
+ "scoreHard": 1000920,
+ "scoreMania": 1000700,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 403,
+ "id": "kykgrs",
+ "songFileName": "song_kykgrs",
+ "order": 2095,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 13650,
+ "shinutiNormal": 9960,
+ "shinutiHard": 4710,
+ "shinutiMania": 2860,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13650,
+ "shinutiNormalDuet": 9960,
+ "shinutiHardDuet": 4710,
+ "shinutiManiaDuet": 2860,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000050,
+ "scoreNormal": 1000300,
+ "scoreHard": 1000120,
+ "scoreMania": 1000180,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 404,
+ "id": "kyksmj",
+ "songFileName": "song_kyksmj",
+ "order": 2096,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 11800,
+ "shinutiNormal": 8240,
+ "shinutiHard": 5380,
+ "shinutiMania": 3450,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11800,
+ "shinutiNormalDuet": 8240,
+ "shinutiHardDuet": 5380,
+ "shinutiManiaDuet": 3450,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000400,
+ "scoreHard": 1000340,
+ "scoreMania": 1002700,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 405,
+ "id": "kyo9kn",
+ "songFileName": "song_kyo9kn",
+ "order": 2097,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4470,
+ "shinutiNormal": 3120,
+ "shinutiHard": 2130,
+ "shinutiMania": 1050,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4470,
+ "shinutiNormalDuet": 3120,
+ "shinutiHardDuet": 2130,
+ "shinutiManiaDuet": 1050,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001840,
+ "scoreNormal": 1001340,
+ "scoreHard": 1000590,
+ "scoreMania": 1005100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 406,
+ "id": "kyunva",
+ "songFileName": "song_kyunva",
+ "order": 2099,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8640,
+ "shinutiNormal": 6050,
+ "shinutiHard": 4040,
+ "shinutiMania": 2290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8640,
+ "shinutiNormalDuet": 6050,
+ "shinutiHardDuet": 4040,
+ "shinutiManiaDuet": 2290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001000,
+ "scoreNormal": 1001400,
+ "scoreHard": 1000860,
+ "scoreMania": 1003370,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 407,
+ "id": "kznhel",
+ "songFileName": "song_kznhel",
+ "order": 2100,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 8,
+ "shinutiEasy": 12450,
+ "shinutiNormal": 5750,
+ "shinutiHard": 2990,
+ "shinutiMania": 2120,
+ "shinutiUra": 1660,
+ "shinutiEasyDuet": 12450,
+ "shinutiNormalDuet": 5750,
+ "shinutiHardDuet": 2990,
+ "shinutiManiaDuet": 2120,
+ "shinutiUraDuet": 1660,
+ "scoreEasy": 1000150,
+ "scoreNormal": 1000250,
+ "scoreHard": 1002660,
+ "scoreMania": 1000200,
+ "scoreUra": 1660
+ },
+ {
+ "uniqueId": 408,
+ "id": "kzniii",
+ "songFileName": "song_kzniii",
+ "order": 2101,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10370,
+ "shinutiNormal": 8140,
+ "shinutiHard": 3950,
+ "shinutiMania": 2530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10370,
+ "shinutiNormalDuet": 8140,
+ "shinutiHardDuet": 3950,
+ "shinutiManiaDuet": 2530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000720,
+ "scoreNormal": 1000380,
+ "scoreHard": 1000550,
+ "scoreMania": 1002060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 409,
+ "id": "lactea",
+ "songFileName": "song_lactea",
+ "order": 2103,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7810,
+ "shinutiNormal": 3250,
+ "shinutiHard": 2420,
+ "shinutiMania": 1690,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7810,
+ "shinutiNormalDuet": 3250,
+ "shinutiHardDuet": 2420,
+ "shinutiManiaDuet": 1690,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000570,
+ "scoreNormal": 1001950,
+ "scoreHard": 1001120,
+ "scoreMania": 1003370,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 410,
+ "id": "lassen",
+ "songFileName": "song_lassen",
+ "order": 2108,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 6470,
+ "shinutiNormal": 4620,
+ "shinutiHard": 2700,
+ "shinutiMania": 1780,
+ "shinutiUra": 1250,
+ "shinutiEasyDuet": 6470,
+ "shinutiNormalDuet": 4620,
+ "shinutiHardDuet": 2700,
+ "shinutiManiaDuet": 1780,
+ "shinutiUraDuet": 1250,
+ "scoreEasy": 1001510,
+ "scoreNormal": 1000260,
+ "scoreHard": 1000300,
+ "scoreMania": 1004280,
+ "scoreUra": 1250
+ },
+ {
+ "uniqueId": 411,
+ "id": "last2k",
+ "songFileName": "song_last2k",
+ "order": 2109,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5410,
+ "shinutiNormal": 3700,
+ "shinutiHard": 1860,
+ "shinutiMania": 1000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5410,
+ "shinutiNormalDuet": 3700,
+ "shinutiHardDuet": 1860,
+ "shinutiManiaDuet": 1000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000330,
+ "scoreNormal": 1000800,
+ "scoreHard": 1002180,
+ "scoreMania": 1004100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 412,
+ "id": "lgmsek",
+ "songFileName": "song_lgmsek",
+ "order": 2115,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 15590,
+ "shinutiNormal": 11080,
+ "shinutiHard": 6640,
+ "shinutiMania": 2830,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15590,
+ "shinutiNormalDuet": 11080,
+ "shinutiHardDuet": 6640,
+ "shinutiManiaDuet": 2830,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000460,
+ "scoreNormal": 1000500,
+ "scoreHard": 1000400,
+ "scoreMania": 1000430,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 413,
+ "id": "linda",
+ "songFileName": "song_linda",
+ "order": 2117,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 6650,
+ "shinutiNormal": 3780,
+ "shinutiHard": 3410,
+ "shinutiMania": 2600,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6650,
+ "shinutiNormalDuet": 3780,
+ "shinutiHardDuet": 3410,
+ "shinutiManiaDuet": 2600,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1002300,
+ "scoreNormal": 1003820,
+ "scoreHard": 1001910,
+ "scoreMania": 1005100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 414,
+ "id": "llang",
+ "songFileName": "song_llang",
+ "order": 2120,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8750,
+ "shinutiNormal": 5820,
+ "shinutiHard": 3620,
+ "shinutiMania": 1790,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8750,
+ "shinutiNormalDuet": 5820,
+ "shinutiHardDuet": 3620,
+ "shinutiManiaDuet": 1790,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000050,
+ "scoreNormal": 1001000,
+ "scoreHard": 1001660,
+ "scoreMania": 1003860,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 415,
+ "id": "llbkrh",
+ "songFileName": "song_llbkrh",
+ "order": 2121,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8420,
+ "shinutiNormal": 5260,
+ "shinutiHard": 3530,
+ "shinutiMania": 2150,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8420,
+ "shinutiNormalDuet": 5260,
+ "shinutiHardDuet": 3530,
+ "shinutiManiaDuet": 2150,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000160,
+ "scoreNormal": 1001540,
+ "scoreHard": 1000530,
+ "scoreMania": 1002650,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 416,
+ "id": "llsore",
+ "songFileName": "song_llsore",
+ "order": 2123,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7890,
+ "shinutiNormal": 6280,
+ "shinutiHard": 3190,
+ "shinutiMania": 2620,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7890,
+ "shinutiNormalDuet": 6280,
+ "shinutiHardDuet": 3190,
+ "shinutiManiaDuet": 2620,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000940,
+ "scoreNormal": 1000340,
+ "scoreHard": 1001290,
+ "scoreMania": 1001540,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 417,
+ "id": "lm7708",
+ "songFileName": "song_lm7708",
+ "order": 2124,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5100,
+ "shinutiNormal": 3210,
+ "shinutiHard": 1970,
+ "shinutiMania": 1270,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5100,
+ "shinutiNormalDuet": 3210,
+ "shinutiHardDuet": 1970,
+ "shinutiManiaDuet": 1270,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000800,
+ "scoreNormal": 1002290,
+ "scoreHard": 1004780,
+ "scoreMania": 1004560,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 418,
+ "id": "lost1g",
+ "songFileName": "song_lost1g",
+ "order": 2127,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5790,
+ "shinutiNormal": 3820,
+ "shinutiHard": 1980,
+ "shinutiMania": 1250,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5790,
+ "shinutiNormalDuet": 3820,
+ "shinutiHardDuet": 1980,
+ "shinutiManiaDuet": 1250,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1001900,
+ "scoreHard": 1003480,
+ "scoreMania": 1007450,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 419,
+ "id": "lov193",
+ "songFileName": "song_lov193",
+ "order": 2128,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6520,
+ "shinutiNormal": 4480,
+ "shinutiHard": 2270,
+ "shinutiMania": 1500,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6520,
+ "shinutiNormalDuet": 4480,
+ "shinutiHardDuet": 2270,
+ "shinutiManiaDuet": 1500,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1001680,
+ "scoreHard": 1003190,
+ "scoreMania": 1004500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 420,
+ "id": "lovfan",
+ "songFileName": "song_lovfan",
+ "order": 2137,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6580,
+ "shinutiNormal": 3080,
+ "shinutiHard": 2320,
+ "shinutiMania": 1540,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6580,
+ "shinutiNormalDuet": 3080,
+ "shinutiHardDuet": 2320,
+ "shinutiManiaDuet": 1540,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1001720,
+ "scoreHard": 1001980,
+ "scoreMania": 1001860,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 421,
+ "id": "lovspc",
+ "songFileName": "song_lovspc",
+ "order": 2139,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5430,
+ "shinutiNormal": 2970,
+ "shinutiHard": 1730,
+ "shinutiMania": 1070,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5430,
+ "shinutiNormalDuet": 2970,
+ "shinutiHardDuet": 1730,
+ "shinutiManiaDuet": 1070,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000530,
+ "scoreNormal": 1000470,
+ "scoreHard": 1003490,
+ "scoreMania": 1001480,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 422,
+ "id": "lovtom",
+ "songFileName": "song_lovtom",
+ "order": 2140,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9910,
+ "shinutiNormal": 4930,
+ "shinutiHard": 3750,
+ "shinutiMania": 2320,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9910,
+ "shinutiNormalDuet": 4930,
+ "shinutiHardDuet": 3750,
+ "shinutiManiaDuet": 2320,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1001860,
+ "scoreHard": 1000400,
+ "scoreMania": 1003420,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 423,
+ "id": "lovwhi",
+ "songFileName": "song_lovwhi",
+ "order": 2141,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 3890,
+ "shinutiNormal": 2540,
+ "shinutiHard": 1420,
+ "shinutiMania": 1060,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3890,
+ "shinutiNormalDuet": 2540,
+ "shinutiHardDuet": 1420,
+ "shinutiManiaDuet": 1060,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000950,
+ "scoreNormal": 1000760,
+ "scoreHard": 1004100,
+ "scoreMania": 1007840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 424,
+ "id": "lsbspd",
+ "songFileName": "song_lsbspd",
+ "order": 2142,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4480,
+ "shinutiNormal": 3260,
+ "shinutiHard": 1620,
+ "shinutiMania": 1240,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4480,
+ "shinutiNormalDuet": 3260,
+ "shinutiHardDuet": 1620,
+ "shinutiManiaDuet": 1240,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000860,
+ "scoreNormal": 1002200,
+ "scoreHard": 1004200,
+ "scoreMania": 1000680,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 425,
+ "id": "lukfev",
+ "songFileName": "song_lukfev",
+ "order": 2145,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 7230,
+ "shinutiNormal": 4360,
+ "shinutiHard": 2530,
+ "shinutiMania": 2060,
+ "shinutiUra": 1570,
+ "shinutiEasyDuet": 7230,
+ "shinutiNormalDuet": 4360,
+ "shinutiHardDuet": 2530,
+ "shinutiManiaDuet": 2060,
+ "shinutiUraDuet": 1570,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1000240,
+ "scoreHard": 1002680,
+ "scoreMania": 1000400,
+ "scoreUra": 1570
+ },
+ {
+ "uniqueId": 426,
+ "id": "lupatr",
+ "songFileName": "song_lupatr",
+ "order": 2146,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 26720,
+ "shinutiNormal": 16680,
+ "shinutiHard": 10640,
+ "shinutiMania": 4060,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 26720,
+ "shinutiNormalDuet": 16680,
+ "shinutiHardDuet": 10640,
+ "shinutiManiaDuet": 4060,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000040,
+ "scoreNormal": 1000020,
+ "scoreHard": 1000880,
+ "scoreMania": 1001300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 427,
+ "id": "ma2rid",
+ "songFileName": "song_ma2rid",
+ "order": 2157,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5210,
+ "shinutiNormal": 4430,
+ "shinutiHard": 2800,
+ "shinutiMania": 1740,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5210,
+ "shinutiNormalDuet": 4430,
+ "shinutiHardDuet": 2800,
+ "shinutiManiaDuet": 1740,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000510,
+ "scoreNormal": 1000320,
+ "scoreHard": 1002700,
+ "scoreMania": 1001860,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 428,
+ "id": "machig",
+ "songFileName": "song_machig",
+ "order": 2158,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 23760,
+ "shinutiNormal": 17800,
+ "shinutiHard": 8590,
+ "shinutiMania": 5260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 23760,
+ "shinutiNormalDuet": 17800,
+ "shinutiHardDuet": 8590,
+ "shinutiManiaDuet": 5260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1000500,
+ "scoreHard": 1001140,
+ "scoreMania": 1001440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 429,
+ "id": "magdrm",
+ "songFileName": "song_magdrm",
+ "order": 2160,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6340,
+ "shinutiNormal": 4500,
+ "shinutiHard": 2170,
+ "shinutiMania": 1380,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6340,
+ "shinutiNormalDuet": 4500,
+ "shinutiHardDuet": 2170,
+ "shinutiManiaDuet": 1380,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001040,
+ "scoreNormal": 1000500,
+ "scoreHard": 1003430,
+ "scoreMania": 1000320,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 430,
+ "id": "mahojn",
+ "songFileName": "song_mahojn",
+ "order": 2163,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7380,
+ "shinutiNormal": 4420,
+ "shinutiHard": 2580,
+ "shinutiMania": 1650,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7380,
+ "shinutiNormalDuet": 4420,
+ "shinutiHardDuet": 2580,
+ "shinutiManiaDuet": 1650,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001320,
+ "scoreNormal": 1002000,
+ "scoreHard": 1002700,
+ "scoreMania": 1000500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 431,
+ "id": "manpu2",
+ "songFileName": "song_manpu2",
+ "order": 2171,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 1,
+ "starMania": 1,
+ "starUra": 10,
+ "shinutiEasy": 30110,
+ "shinutiNormal": 19450,
+ "shinutiHard": 10420,
+ "shinutiMania": 6790,
+ "shinutiUra": 2110,
+ "shinutiEasyDuet": 30110,
+ "shinutiNormalDuet": 19450,
+ "shinutiHardDuet": 10420,
+ "shinutiManiaDuet": 6790,
+ "shinutiUraDuet": 2110,
+ "scoreEasy": 1000230,
+ "scoreNormal": 1000350,
+ "scoreHard": 1000900,
+ "scoreMania": 1001050,
+ "scoreUra": 2110
+ },
+ {
+ "uniqueId": 432,
+ "id": "mapp8b",
+ "songFileName": "song_mapp8b",
+ "order": 2173,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6040,
+ "shinutiNormal": 4560,
+ "shinutiHard": 2710,
+ "shinutiMania": 1650,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6040,
+ "shinutiNormalDuet": 4560,
+ "shinutiHardDuet": 2710,
+ "shinutiManiaDuet": 1650,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001220,
+ "scoreNormal": 1000300,
+ "scoreHard": 1001510,
+ "scoreMania": 1002800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 433,
+ "id": "march",
+ "songFileName": "song_march",
+ "order": 2176,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 4200,
+ "shinutiNormal": 2920,
+ "shinutiHard": 2130,
+ "shinutiMania": 1810,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4200,
+ "shinutiNormalDuet": 2920,
+ "shinutiHardDuet": 2130,
+ "shinutiManiaDuet": 1810,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001800,
+ "scoreNormal": 1003340,
+ "scoreHard": 1001310,
+ "scoreMania": 1003530,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 434,
+ "id": "mario2",
+ "songFileName": "song_mario2",
+ "order": 2178,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7900,
+ "shinutiNormal": 5320,
+ "shinutiHard": 2240,
+ "shinutiMania": 1660,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7900,
+ "shinutiNormalDuet": 5320,
+ "shinutiHardDuet": 2240,
+ "shinutiManiaDuet": 1660,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1001740,
+ "scoreHard": 1001660,
+ "scoreMania": 1001040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 435,
+ "id": "mario4",
+ "songFileName": "song_mario4",
+ "order": 2180,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 13190,
+ "shinutiNormal": 10160,
+ "shinutiHard": 7000,
+ "shinutiMania": 2420,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13190,
+ "shinutiNormalDuet": 10160,
+ "shinutiHardDuet": 7000,
+ "shinutiManiaDuet": 2420,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000650,
+ "scoreNormal": 1000120,
+ "scoreHard": 1000400,
+ "scoreMania": 1002900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 436,
+ "id": "maru9t",
+ "songFileName": "song_maru9t",
+ "order": 2181,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 3670,
+ "shinutiNormal": 2750,
+ "shinutiHard": 1590,
+ "shinutiMania": 1030,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3670,
+ "shinutiNormalDuet": 2750,
+ "shinutiHardDuet": 1590,
+ "shinutiManiaDuet": 1030,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1002340,
+ "scoreNormal": 1001500,
+ "scoreHard": 1003010,
+ "scoreMania": 1007540,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 437,
+ "id": "masakr",
+ "songFileName": "song_masakr",
+ "order": 2183,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6040,
+ "shinutiNormal": 3390,
+ "shinutiHard": 2570,
+ "shinutiMania": 1450,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6040,
+ "shinutiNormalDuet": 3390,
+ "shinutiHardDuet": 2570,
+ "shinutiManiaDuet": 1450,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001300,
+ "scoreNormal": 1001460,
+ "scoreHard": 1001660,
+ "scoreMania": 1002350,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 438,
+ "id": "mblood",
+ "songFileName": "song_mblood",
+ "order": 2186,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12830,
+ "shinutiNormal": 8140,
+ "shinutiHard": 4280,
+ "shinutiMania": 2830,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12830,
+ "shinutiNormalDuet": 8140,
+ "shinutiHardDuet": 4280,
+ "shinutiManiaDuet": 2830,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000410,
+ "scoreNormal": 1000940,
+ "scoreHard": 1000560,
+ "scoreMania": 1000500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 439,
+ "id": "mclinn",
+ "songFileName": "song_mclinn",
+ "order": 2189,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 1,
+ "starMania": 1,
+ "starUra": 0,
+ "shinutiEasy": 11530,
+ "shinutiNormal": 9710,
+ "shinutiHard": 8600,
+ "shinutiMania": 9010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11530,
+ "shinutiNormalDuet": 9710,
+ "shinutiHardDuet": 8600,
+ "shinutiManiaDuet": 9010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000580,
+ "scoreNormal": 1000120,
+ "scoreHard": 1000900,
+ "scoreMania": 1000790,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 440,
+ "id": "mdeth",
+ "songFileName": "song_mdeth",
+ "order": 2192,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 10,
+ "shinutiEasy": 7830,
+ "shinutiNormal": 3690,
+ "shinutiHard": 2540,
+ "shinutiMania": 2050,
+ "shinutiUra": 1000,
+ "shinutiEasyDuet": 7830,
+ "shinutiNormalDuet": 3690,
+ "shinutiHardDuet": 2540,
+ "shinutiManiaDuet": 2050,
+ "shinutiUraDuet": 1000,
+ "scoreEasy": 1000210,
+ "scoreNormal": 1000500,
+ "scoreHard": 1002680,
+ "scoreMania": 1001150,
+ "scoreUra": 1005640
+ },
+ {
+ "uniqueId": 441,
+ "id": "medjed",
+ "songFileName": "song_medjed",
+ "order": 2196,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5620,
+ "shinutiNormal": 4050,
+ "shinutiHard": 2420,
+ "shinutiMania": 1220,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5620,
+ "shinutiNormalDuet": 4050,
+ "shinutiHardDuet": 2420,
+ "shinutiManiaDuet": 1220,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001020,
+ "scoreNormal": 1002350,
+ "scoreHard": 1000760,
+ "scoreMania": 1006460,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 442,
+ "id": "medl2k",
+ "songFileName": "song_medl2k",
+ "order": 2198,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 2640,
+ "shinutiNormal": 1990,
+ "shinutiHard": 1000,
+ "shinutiMania": 710,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 2640,
+ "shinutiNormalDuet": 1990,
+ "shinutiHardDuet": 1000,
+ "shinutiManiaDuet": 710,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1002220,
+ "scoreHard": 1007700,
+ "scoreMania": 1006540,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 443,
+ "id": "medl22",
+ "songFileName": "song_medl22",
+ "order": 2197,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 3310,
+ "shinutiNormal": 2200,
+ "shinutiHard": 1670,
+ "shinutiMania": 1060,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3310,
+ "shinutiNormalDuet": 2200,
+ "shinutiHardDuet": 1670,
+ "shinutiManiaDuet": 1060,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1002810,
+ "scoreNormal": 1003300,
+ "scoreHard": 1002950,
+ "scoreMania": 1000000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 444,
+ "id": "mega10",
+ "songFileName": "song_mega10",
+ "order": 2200,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 10,
+ "shinutiEasy": 4270,
+ "shinutiNormal": 3400,
+ "shinutiHard": 2190,
+ "shinutiMania": 1380,
+ "shinutiUra": 1140,
+ "shinutiEasyDuet": 4270,
+ "shinutiNormalDuet": 3400,
+ "shinutiHardDuet": 2190,
+ "shinutiManiaDuet": 1380,
+ "shinutiUraDuet": 1140,
+ "scoreEasy": 1000110,
+ "scoreNormal": 1001800,
+ "scoreHard": 1004330,
+ "scoreMania": 1006360,
+ "scoreUra": 1140
+ },
+ {
+ "uniqueId": 445,
+ "id": "memesi",
+ "songFileName": "song_memesi",
+ "order": 2206,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9540,
+ "shinutiNormal": 6720,
+ "shinutiHard": 4040,
+ "shinutiMania": 2590,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9540,
+ "shinutiNormalDuet": 6720,
+ "shinutiHardDuet": 4040,
+ "shinutiManiaDuet": 2590,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000160,
+ "scoreNormal": 1000840,
+ "scoreHard": 1000560,
+ "scoreMania": 1003720,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 446,
+ "id": "metalh",
+ "songFileName": "song_metalh",
+ "order": 2207,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5900,
+ "shinutiNormal": 4520,
+ "shinutiHard": 2260,
+ "shinutiMania": 1300,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5900,
+ "shinutiNormalDuet": 4520,
+ "shinutiHardDuet": 2260,
+ "shinutiManiaDuet": 1300,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001300,
+ "scoreNormal": 1002080,
+ "scoreHard": 1003840,
+ "scoreMania": 1002100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 447,
+ "id": "metro",
+ "songFileName": "song_metro",
+ "order": 2209,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 9,
+ "shinutiEasy": 6670,
+ "shinutiNormal": 4470,
+ "shinutiHard": 2570,
+ "shinutiMania": 1690,
+ "shinutiUra": 1310,
+ "shinutiEasyDuet": 6670,
+ "shinutiNormalDuet": 4470,
+ "shinutiHardDuet": 2570,
+ "shinutiManiaDuet": 1690,
+ "shinutiUraDuet": 1310,
+ "scoreEasy": 1000230,
+ "scoreNormal": 1000540,
+ "scoreHard": 1002160,
+ "scoreMania": 1005660,
+ "scoreUra": 1310
+ },
+ {
+ "uniqueId": 448,
+ "id": "mficta",
+ "songFileName": "song_mficta",
+ "order": 2210,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 8190,
+ "shinutiNormal": 5030,
+ "shinutiHard": 2320,
+ "shinutiMania": 1340,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8190,
+ "shinutiNormalDuet": 5030,
+ "shinutiHardDuet": 2320,
+ "shinutiManiaDuet": 1340,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000790,
+ "scoreNormal": 1001710,
+ "scoreHard": 1001420,
+ "scoreMania": 1007080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 449,
+ "id": "mgaaot",
+ "songFileName": "song_mgaaot",
+ "order": 2211,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 15760,
+ "shinutiNormal": 10540,
+ "shinutiHard": 5420,
+ "shinutiMania": 2830,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15760,
+ "shinutiNormalDuet": 10540,
+ "shinutiHardDuet": 5420,
+ "shinutiManiaDuet": 2830,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000180,
+ "scoreNormal": 1000060,
+ "scoreHard": 1000940,
+ "scoreMania": 1003000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 450,
+ "id": "mggext",
+ "songFileName": "song_mggext",
+ "order": 2213,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 5,
+ "starUra": 9,
+ "shinutiEasy": 8350,
+ "shinutiNormal": 6500,
+ "shinutiHard": 4290,
+ "shinutiMania": 2840,
+ "shinutiUra": 1320,
+ "shinutiEasyDuet": 8350,
+ "shinutiNormalDuet": 6500,
+ "shinutiHardDuet": 4290,
+ "shinutiManiaDuet": 2840,
+ "shinutiUraDuet": 1320,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1000900,
+ "scoreHard": 1001200,
+ "scoreMania": 1001400,
+ "scoreUra": 1320
+ },
+ {
+ "uniqueId": 452,
+ "id": "mggrev",
+ "songFileName": "song_mggrev",
+ "order": 2215,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 4,
+ "starUra": 10,
+ "shinutiEasy": 6480,
+ "shinutiNormal": 4450,
+ "shinutiHard": 3500,
+ "shinutiMania": 2260,
+ "shinutiUra": 1290,
+ "shinutiEasyDuet": 6480,
+ "shinutiNormalDuet": 4450,
+ "shinutiHardDuet": 3500,
+ "shinutiManiaDuet": 2260,
+ "shinutiUraDuet": 1290,
+ "scoreEasy": 1001240,
+ "scoreNormal": 1000900,
+ "scoreHard": 1001900,
+ "scoreMania": 1002380,
+ "scoreUra": 1290
+ },
+ {
+ "uniqueId": 454,
+ "id": "mgpafe",
+ "songFileName": "song_mgpafe",
+ "order": 2218,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7930,
+ "shinutiNormal": 4870,
+ "shinutiHard": 2510,
+ "shinutiMania": 1540,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7930,
+ "shinutiNormalDuet": 4870,
+ "shinutiHardDuet": 2510,
+ "shinutiManiaDuet": 1540,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000780,
+ "scoreNormal": 1001350,
+ "scoreHard": 1003890,
+ "scoreMania": 1005880,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 455,
+ "id": "mgwrt",
+ "songFileName": "song_mgwrt",
+ "order": 2219,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 8,
+ "shinutiEasy": 6410,
+ "shinutiNormal": 4140,
+ "shinutiHard": 2890,
+ "shinutiMania": 1850,
+ "shinutiUra": 1310,
+ "shinutiEasyDuet": 6410,
+ "shinutiNormalDuet": 4140,
+ "shinutiHardDuet": 2890,
+ "shinutiManiaDuet": 1850,
+ "shinutiUraDuet": 1310,
+ "scoreEasy": 1000350,
+ "scoreNormal": 1001300,
+ "scoreHard": 1002570,
+ "scoreMania": 1000000,
+ "scoreUra": 1310
+ },
+ {
+ "uniqueId": 456,
+ "id": "mgwrt2",
+ "songFileName": "song_mgwrt2",
+ "order": 2220,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 8,
+ "shinutiEasy": 6460,
+ "shinutiNormal": 3570,
+ "shinutiHard": 1940,
+ "shinutiMania": 1530,
+ "shinutiUra": 1310,
+ "shinutiEasyDuet": 6460,
+ "shinutiNormalDuet": 3570,
+ "shinutiHardDuet": 1940,
+ "shinutiManiaDuet": 1530,
+ "shinutiUraDuet": 1310,
+ "scoreEasy": 1000540,
+ "scoreNormal": 1000160,
+ "scoreHard": 1003900,
+ "scoreMania": 1003320,
+ "scoreUra": 1310
+ },
+ {
+ "uniqueId": 457,
+ "id": "mgwrt3",
+ "songFileName": "song_mgwrt3",
+ "order": 2221,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 8,
+ "shinutiEasy": 7010,
+ "shinutiNormal": 4440,
+ "shinutiHard": 2780,
+ "shinutiMania": 2110,
+ "shinutiUra": 1720,
+ "shinutiEasyDuet": 7010,
+ "shinutiNormalDuet": 4440,
+ "shinutiHardDuet": 2780,
+ "shinutiManiaDuet": 2110,
+ "shinutiUraDuet": 1720,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1000960,
+ "scoreHard": 1002160,
+ "scoreMania": 1002710,
+ "scoreUra": 1720
+ },
+ {
+ "uniqueId": 458,
+ "id": "mgwrt4",
+ "songFileName": "song_mgwrt4",
+ "order": 2222,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 8,
+ "shinutiEasy": 5520,
+ "shinutiNormal": 4660,
+ "shinutiHard": 2290,
+ "shinutiMania": 1750,
+ "shinutiUra": 1430,
+ "shinutiEasyDuet": 5520,
+ "shinutiNormalDuet": 4660,
+ "shinutiHardDuet": 2290,
+ "shinutiManiaDuet": 1750,
+ "shinutiUraDuet": 1430,
+ "scoreEasy": 1000500,
+ "scoreNormal": 1001580,
+ "scoreHard": 1003830,
+ "scoreMania": 1003900,
+ "scoreUra": 1430
+ },
+ {
+ "uniqueId": 459,
+ "id": "mgwrt5",
+ "songFileName": "song_mgwrt5",
+ "order": 2223,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 8,
+ "shinutiEasy": 7280,
+ "shinutiNormal": 4820,
+ "shinutiHard": 2760,
+ "shinutiMania": 2230,
+ "shinutiUra": 1690,
+ "shinutiEasyDuet": 7280,
+ "shinutiNormalDuet": 4820,
+ "shinutiHardDuet": 2760,
+ "shinutiManiaDuet": 2230,
+ "shinutiUraDuet": 1690,
+ "scoreEasy": 1000780,
+ "scoreNormal": 1000900,
+ "scoreHard": 1003260,
+ "scoreMania": 1001050,
+ "scoreUra": 1690
+ },
+ {
+ "uniqueId": 460,
+ "id": "mgwrt6",
+ "songFileName": "song_mgwrt6",
+ "order": 2224,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 8,
+ "shinutiEasy": 5420,
+ "shinutiNormal": 3680,
+ "shinutiHard": 2330,
+ "shinutiMania": 1880,
+ "shinutiUra": 1620,
+ "shinutiEasyDuet": 5420,
+ "shinutiNormalDuet": 3680,
+ "shinutiHardDuet": 2330,
+ "shinutiManiaDuet": 1880,
+ "shinutiUraDuet": 1620,
+ "scoreEasy": 1001780,
+ "scoreNormal": 1000500,
+ "scoreHard": 1003210,
+ "scoreMania": 1004460,
+ "scoreUra": 1620
+ },
+ {
+ "uniqueId": 461,
+ "id": "mgwrt7",
+ "songFileName": "song_mgwrt7",
+ "order": 2225,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 7910,
+ "shinutiNormal": 5650,
+ "shinutiHard": 3600,
+ "shinutiMania": 2200,
+ "shinutiUra": 1840,
+ "shinutiEasyDuet": 7910,
+ "shinutiNormalDuet": 5650,
+ "shinutiHardDuet": 3600,
+ "shinutiManiaDuet": 2200,
+ "shinutiUraDuet": 1840,
+ "scoreEasy": 1001060,
+ "scoreNormal": 1000200,
+ "scoreHard": 1001300,
+ "scoreMania": 1002300,
+ "scoreUra": 1840
+ },
+ {
+ "uniqueId": 462,
+ "id": "mgwrt8",
+ "songFileName": "song_mgwrt8",
+ "order": 2226,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 8,
+ "shinutiEasy": 8090,
+ "shinutiNormal": 5790,
+ "shinutiHard": 3510,
+ "shinutiMania": 2240,
+ "shinutiUra": 1800,
+ "shinutiEasyDuet": 8090,
+ "shinutiNormalDuet": 5790,
+ "shinutiHardDuet": 3510,
+ "shinutiManiaDuet": 2240,
+ "shinutiUraDuet": 1800,
+ "scoreEasy": 1000070,
+ "scoreNormal": 1000490,
+ "scoreHard": 1001630,
+ "scoreMania": 1001600,
+ "scoreUra": 1800
+ },
+ {
+ "uniqueId": 463,
+ "id": "mhcafe",
+ "songFileName": "song_mhcafe",
+ "order": 2227,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6060,
+ "shinutiNormal": 4370,
+ "shinutiHard": 2180,
+ "shinutiMania": 1400,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6060,
+ "shinutiNormalDuet": 4370,
+ "shinutiHardDuet": 2180,
+ "shinutiManiaDuet": 1400,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001140,
+ "scoreNormal": 1001290,
+ "scoreHard": 1001460,
+ "scoreMania": 1000200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 464,
+ "id": "mheart",
+ "songFileName": "song_mheart",
+ "order": 2228,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9220,
+ "shinutiNormal": 6230,
+ "shinutiHard": 4000,
+ "shinutiMania": 2020,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9220,
+ "shinutiNormalDuet": 6230,
+ "shinutiHardDuet": 4000,
+ "shinutiManiaDuet": 2020,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000640,
+ "scoreNormal": 1001240,
+ "scoreHard": 1002000,
+ "scoreMania": 1000640,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 465,
+ "id": "miki",
+ "songFileName": "song_miki",
+ "order": 2234,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7430,
+ "shinutiNormal": 4100,
+ "shinutiHard": 2580,
+ "shinutiMania": 1760,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7430,
+ "shinutiNormalDuet": 4100,
+ "shinutiHardDuet": 2580,
+ "shinutiManiaDuet": 1760,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000020,
+ "scoreNormal": 1002000,
+ "scoreHard": 1002160,
+ "scoreMania": 1004480,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 466,
+ "id": "mikuaa",
+ "songFileName": "song_mikuaa",
+ "order": 2237,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5040,
+ "shinutiNormal": 3310,
+ "shinutiHard": 2040,
+ "shinutiMania": 1330,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5040,
+ "shinutiNormalDuet": 3310,
+ "shinutiHardDuet": 2040,
+ "shinutiManiaDuet": 1330,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000580,
+ "scoreNormal": 1001100,
+ "scoreHard": 1004460,
+ "scoreMania": 1002580,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 467,
+ "id": "mikuar",
+ "songFileName": "song_mikuar",
+ "order": 2238,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9670,
+ "shinutiNormal": 6550,
+ "shinutiHard": 3780,
+ "shinutiMania": 2300,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9670,
+ "shinutiNormalDuet": 6550,
+ "shinutiHardDuet": 3780,
+ "shinutiManiaDuet": 2300,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000310,
+ "scoreNormal": 1001000,
+ "scoreHard": 1002040,
+ "scoreMania": 1003600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 468,
+ "id": "mikucp",
+ "songFileName": "song_mikucp",
+ "order": 2240,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 8930,
+ "shinutiNormal": 5590,
+ "shinutiHard": 2720,
+ "shinutiMania": 1930,
+ "shinutiUra": 1110,
+ "shinutiEasyDuet": 8930,
+ "shinutiNormalDuet": 5590,
+ "shinutiHardDuet": 2720,
+ "shinutiManiaDuet": 1930,
+ "shinutiUraDuet": 1110,
+ "scoreEasy": 1000230,
+ "scoreNormal": 1000430,
+ "scoreHard": 1000760,
+ "scoreMania": 1003870,
+ "scoreUra": 1110
+ },
+ {
+ "uniqueId": 469,
+ "id": "mikudd",
+ "songFileName": "song_mikudd",
+ "order": 2127,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7370,
+ "shinutiNormal": 4460,
+ "shinutiHard": 2950,
+ "shinutiMania": 1130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7370,
+ "shinutiNormalDuet": 4460,
+ "shinutiHardDuet": 2950,
+ "shinutiManiaDuet": 1130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000550,
+ "scoreNormal": 1002080,
+ "scoreHard": 1001350,
+ "scoreMania": 1002980,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 470,
+ "id": "mikuer",
+ "songFileName": "song_mikuer",
+ "order": 2128,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 3880,
+ "shinutiNormal": 3050,
+ "shinutiHard": 1860,
+ "shinutiMania": 1300,
+ "shinutiUra": 1000,
+ "shinutiEasyDuet": 3880,
+ "shinutiNormalDuet": 3050,
+ "shinutiHardDuet": 1860,
+ "shinutiManiaDuet": 1300,
+ "shinutiUraDuet": 1000,
+ "scoreEasy": 1002060,
+ "scoreNormal": 1000200,
+ "scoreHard": 1003460,
+ "scoreMania": 1001400,
+ "scoreUra": 1000
+ },
+ {
+ "uniqueId": 471,
+ "id": "mikugr",
+ "songFileName": "song_mikugr",
+ "order": 2244,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 7970,
+ "shinutiNormal": 5250,
+ "shinutiHard": 2440,
+ "shinutiMania": 1960,
+ "shinutiUra": 1250,
+ "shinutiEasyDuet": 7970,
+ "shinutiNormalDuet": 5250,
+ "shinutiHardDuet": 2440,
+ "shinutiManiaDuet": 1960,
+ "shinutiUraDuet": 1250,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1001700,
+ "scoreHard": 1003380,
+ "scoreMania": 1004100,
+ "scoreUra": 1250
+ },
+ {
+ "uniqueId": 472,
+ "id": "mikugv",
+ "songFileName": "song_mikugv",
+ "order": 2245,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10480,
+ "shinutiNormal": 6170,
+ "shinutiHard": 2360,
+ "shinutiMania": 1540,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10480,
+ "shinutiNormalDuet": 6170,
+ "shinutiHardDuet": 2360,
+ "shinutiManiaDuet": 1540,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1001070,
+ "scoreHard": 1003780,
+ "scoreMania": 1006200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 473,
+ "id": "mikuh8",
+ "songFileName": "song_mikuh8",
+ "order": 2246,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 10,
+ "shinutiEasy": 5460,
+ "shinutiNormal": 3860,
+ "shinutiHard": 2160,
+ "shinutiMania": 1480,
+ "shinutiUra": 970,
+ "shinutiEasyDuet": 5460,
+ "shinutiNormalDuet": 3860,
+ "shinutiHardDuet": 2160,
+ "shinutiManiaDuet": 1480,
+ "shinutiUraDuet": 970,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1000220,
+ "scoreHard": 1000540,
+ "scoreMania": 1000220,
+ "scoreUra": 970
+ },
+ {
+ "uniqueId": 474,
+ "id": "mikuhn",
+ "songFileName": "song_mikuhn",
+ "order": 2247,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 20290,
+ "shinutiNormal": 12740,
+ "shinutiHard": 4660,
+ "shinutiMania": 2320,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 20290,
+ "shinutiNormalDuet": 12740,
+ "shinutiHardDuet": 4660,
+ "shinutiManiaDuet": 2320,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000110,
+ "scoreNormal": 1000420,
+ "scoreHard": 1000280,
+ "scoreMania": 1003780,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 475,
+ "id": "mikukg",
+ "songFileName": "song_mikukg",
+ "order": 2249,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 8,
+ "shinutiEasy": 6940,
+ "shinutiNormal": 5410,
+ "shinutiHard": 2560,
+ "shinutiMania": 2050,
+ "shinutiUra": 1460,
+ "shinutiEasyDuet": 6940,
+ "shinutiNormalDuet": 5410,
+ "shinutiHardDuet": 2560,
+ "shinutiManiaDuet": 2050,
+ "shinutiUraDuet": 1460,
+ "scoreEasy": 1001420,
+ "scoreNormal": 1001130,
+ "scoreHard": 1003320,
+ "scoreMania": 1002900,
+ "scoreUra": 1460
+ },
+ {
+ "uniqueId": 476,
+ "id": "mikukr",
+ "songFileName": "song_mikukr",
+ "order": 2251,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 14410,
+ "shinutiNormal": 8130,
+ "shinutiHard": 4030,
+ "shinutiMania": 2280,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14410,
+ "shinutiNormalDuet": 8130,
+ "shinutiHardDuet": 4030,
+ "shinutiManiaDuet": 2280,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000590,
+ "scoreNormal": 1000160,
+ "scoreHard": 1001880,
+ "scoreMania": 1004320,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 477,
+ "id": "mikuot",
+ "songFileName": "song_mikuot",
+ "order": 2252,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 8,
+ "shinutiEasy": 10250,
+ "shinutiNormal": 5610,
+ "shinutiHard": 3560,
+ "shinutiMania": 2800,
+ "shinutiUra": 1760,
+ "shinutiEasyDuet": 10250,
+ "shinutiNormalDuet": 5610,
+ "shinutiHardDuet": 3560,
+ "shinutiManiaDuet": 2800,
+ "shinutiUraDuet": 1760,
+ "scoreEasy": 1000350,
+ "scoreNormal": 1000770,
+ "scoreHard": 1000080,
+ "scoreMania": 1000100,
+ "scoreUra": 1760
+ },
+ {
+ "uniqueId": 478,
+ "id": "mikuse",
+ "songFileName": "song_mikuse",
+ "order": 2254,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 8,
+ "shinutiEasy": 4430,
+ "shinutiNormal": 2480,
+ "shinutiHard": 1720,
+ "shinutiMania": 1200,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4430,
+ "shinutiNormalDuet": 2480,
+ "shinutiHardDuet": 1720,
+ "shinutiManiaDuet": 1200,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001120,
+ "scoreNormal": 1003200,
+ "scoreHard": 1004920,
+ "scoreMania": 1004800,
+ "scoreUra": 1000
+ },
+ {
+ "uniqueId": 479,
+ "id": "mikutd",
+ "songFileName": "song_mikutd",
+ "order": 2256,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 4790,
+ "shinutiNormal": 2970,
+ "shinutiHard": 2270,
+ "shinutiMania": 1550,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4790,
+ "shinutiNormalDuet": 2970,
+ "shinutiHardDuet": 2270,
+ "shinutiManiaDuet": 1550,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1002020,
+ "scoreNormal": 1000450,
+ "scoreHard": 1001760,
+ "scoreMania": 1000250,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 480,
+ "id": "mikuvt",
+ "songFileName": "song_mikuvt",
+ "order": 2259,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 15240,
+ "shinutiNormal": 10860,
+ "shinutiHard": 5080,
+ "shinutiMania": 1910,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15240,
+ "shinutiNormalDuet": 10860,
+ "shinutiHardDuet": 5080,
+ "shinutiManiaDuet": 1910,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1000460,
+ "scoreHard": 1000720,
+ "scoreMania": 1002800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 481,
+ "id": "mikuzs",
+ "songFileName": "song_mikuzs",
+ "order": 2260,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8100,
+ "shinutiNormal": 5130,
+ "shinutiHard": 3290,
+ "shinutiMania": 1550,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8100,
+ "shinutiNormalDuet": 5130,
+ "shinutiHardDuet": 3290,
+ "shinutiManiaDuet": 1550,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1001120,
+ "scoreHard": 1001180,
+ "scoreMania": 1004650,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 482,
+ "id": "minau",
+ "songFileName": "song_minau",
+ "order": 2263,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 15800,
+ "shinutiNormal": 10240,
+ "shinutiHard": 5850,
+ "shinutiMania": 4130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15800,
+ "shinutiNormalDuet": 10240,
+ "shinutiHardDuet": 5850,
+ "shinutiManiaDuet": 4130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1000880,
+ "scoreHard": 1001400,
+ "scoreMania": 1002060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 483,
+ "id": "mintjm",
+ "songFileName": "song_mintjm",
+ "order": 2264,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 4490,
+ "shinutiNormal": 3390,
+ "shinutiHard": 2280,
+ "shinutiMania": 1660,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4490,
+ "shinutiNormalDuet": 3390,
+ "shinutiHardDuet": 2280,
+ "shinutiManiaDuet": 1660,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000890,
+ "scoreNormal": 1000880,
+ "scoreHard": 1001320,
+ "scoreMania": 1000980,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 484,
+ "id": "mintte",
+ "songFileName": "song_mintte",
+ "order": 2265,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5460,
+ "shinutiNormal": 3920,
+ "shinutiHard": 1740,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5460,
+ "shinutiNormalDuet": 3920,
+ "shinutiHardDuet": 1740,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001580,
+ "scoreNormal": 1001200,
+ "scoreHard": 1001120,
+ "scoreMania": 1003450,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 485,
+ "id": "mmkami",
+ "songFileName": "song_mmkami",
+ "order": 2276,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6370,
+ "shinutiNormal": 3890,
+ "shinutiHard": 2190,
+ "shinutiMania": 1520,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6370,
+ "shinutiNormalDuet": 3890,
+ "shinutiHardDuet": 2190,
+ "shinutiManiaDuet": 1520,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1000640,
+ "scoreHard": 1003340,
+ "scoreMania": 1001020,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 486,
+ "id": "mnkesk",
+ "songFileName": "song_mnkesk",
+ "order": 2278,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 8,
+ "shinutiEasy": 13000,
+ "shinutiNormal": 8640,
+ "shinutiHard": 3790,
+ "shinutiMania": 2990,
+ "shinutiUra": 1730,
+ "shinutiEasyDuet": 13000,
+ "shinutiNormalDuet": 8640,
+ "shinutiHardDuet": 3790,
+ "shinutiManiaDuet": 2990,
+ "shinutiUraDuet": 1730,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1000860,
+ "scoreHard": 1001990,
+ "scoreMania": 1002510,
+ "scoreUra": 1730
+ },
+ {
+ "uniqueId": 487,
+ "id": "mnpure",
+ "songFileName": "song_mnpure",
+ "order": 2279,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6880,
+ "shinutiNormal": 4600,
+ "shinutiHard": 2880,
+ "shinutiMania": 1620,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6880,
+ "shinutiNormalDuet": 4600,
+ "shinutiHardDuet": 2880,
+ "shinutiManiaDuet": 1620,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1001300,
+ "scoreHard": 1003160,
+ "scoreMania": 1002780,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 488,
+ "id": "moana",
+ "songFileName": "song_moana",
+ "order": 2280,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 18020,
+ "shinutiNormal": 12910,
+ "shinutiHard": 6810,
+ "shinutiMania": 4530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18020,
+ "shinutiNormalDuet": 12910,
+ "shinutiHardDuet": 6810,
+ "shinutiManiaDuet": 4530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000060,
+ "scoreHard": 1000440,
+ "scoreMania": 1000990,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 489,
+ "id": "momoi",
+ "songFileName": "song_momoi",
+ "order": 2284,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 5100,
+ "shinutiNormal": 3530,
+ "shinutiHard": 2290,
+ "shinutiMania": 1810,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5100,
+ "shinutiNormalDuet": 3530,
+ "shinutiHardDuet": 2290,
+ "shinutiManiaDuet": 1810,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001000,
+ "scoreNormal": 1001590,
+ "scoreHard": 1001840,
+ "scoreMania": 1000700,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 490,
+ "id": "monhn4",
+ "songFileName": "song_monhn4",
+ "order": 2288,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6110,
+ "shinutiNormal": 3740,
+ "shinutiHard": 1700,
+ "shinutiMania": 1370,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6110,
+ "shinutiNormalDuet": 3740,
+ "shinutiHardDuet": 1700,
+ "shinutiManiaDuet": 1370,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001020,
+ "scoreNormal": 1002400,
+ "scoreHard": 1005500,
+ "scoreMania": 1004140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 491,
+ "id": "mope",
+ "songFileName": "song_mope",
+ "order": 2293,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 9720,
+ "shinutiNormal": 6420,
+ "shinutiHard": 4300,
+ "shinutiMania": 1990,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9720,
+ "shinutiNormalDuet": 6420,
+ "shinutiHardDuet": 4300,
+ "shinutiManiaDuet": 1990,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000640,
+ "scoreNormal": 1000280,
+ "scoreHard": 1002100,
+ "scoreMania": 1003890,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 492,
+ "id": "mrgold",
+ "songFileName": "song_mrgold",
+ "order": 2298,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 19140,
+ "shinutiNormal": 11830,
+ "shinutiHard": 5390,
+ "shinutiMania": 3020,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 19140,
+ "shinutiNormalDuet": 11830,
+ "shinutiHardDuet": 5390,
+ "shinutiManiaDuet": 3020,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000380,
+ "scoreNormal": 1000020,
+ "scoreHard": 1000260,
+ "scoreMania": 1001660,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 493,
+ "id": "mrprof",
+ "songFileName": "song_mrprof",
+ "order": 2299,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6550,
+ "shinutiNormal": 4420,
+ "shinutiHard": 2550,
+ "shinutiMania": 1760,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6550,
+ "shinutiNormalDuet": 4420,
+ "shinutiHardDuet": 2550,
+ "shinutiManiaDuet": 1760,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001400,
+ "scoreNormal": 1000100,
+ "scoreHard": 1001800,
+ "scoreMania": 1004220,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 494,
+ "id": "mscl1",
+ "songFileName": "song_mscl1",
+ "order": 2301,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7790,
+ "shinutiNormal": 5300,
+ "shinutiHard": 3280,
+ "shinutiMania": 2170,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7790,
+ "shinutiNormalDuet": 5300,
+ "shinutiHardDuet": 3280,
+ "shinutiManiaDuet": 2170,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000720,
+ "scoreNormal": 1001400,
+ "scoreHard": 1000340,
+ "scoreMania": 1001520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 495,
+ "id": "mscl3",
+ "songFileName": "song_mscl3",
+ "order": 2303,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 9860,
+ "shinutiNormal": 7530,
+ "shinutiHard": 3460,
+ "shinutiMania": 1890,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9860,
+ "shinutiNormalDuet": 7530,
+ "shinutiHardDuet": 3460,
+ "shinutiManiaDuet": 1890,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000860,
+ "scoreNormal": 1000860,
+ "scoreHard": 1002340,
+ "scoreMania": 1002200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 496,
+ "id": "mscl5",
+ "songFileName": "song_mscl5",
+ "order": 2305,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6660,
+ "shinutiNormal": 5470,
+ "shinutiHard": 2640,
+ "shinutiMania": 1700,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6660,
+ "shinutiNormalDuet": 5470,
+ "shinutiHardDuet": 2640,
+ "shinutiManiaDuet": 1700,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000640,
+ "scoreNormal": 1001170,
+ "scoreHard": 1000080,
+ "scoreMania": 1000500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 497,
+ "id": "msclht",
+ "songFileName": "song_msclht",
+ "order": 2306,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5850,
+ "shinutiNormal": 4040,
+ "shinutiHard": 2040,
+ "shinutiMania": 1190,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5850,
+ "shinutiNormalDuet": 4040,
+ "shinutiHardDuet": 2040,
+ "shinutiManiaDuet": 1190,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001150,
+ "scoreNormal": 1001160,
+ "scoreHard": 1004820,
+ "scoreMania": 1004460,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 498,
+ "id": "msmino",
+ "songFileName": "song_msmino",
+ "order": 2307,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10810,
+ "shinutiNormal": 8210,
+ "shinutiHard": 4080,
+ "shinutiMania": 2060,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10810,
+ "shinutiNormalDuet": 8210,
+ "shinutiHardDuet": 4080,
+ "shinutiManiaDuet": 2060,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000520,
+ "scoreNormal": 1000810,
+ "scoreHard": 1001040,
+ "scoreMania": 1003220,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 499,
+ "id": "msspln",
+ "songFileName": "song_msspln",
+ "order": 2308,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6010,
+ "shinutiNormal": 3690,
+ "shinutiHard": 2140,
+ "shinutiMania": 1580,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6010,
+ "shinutiNormalDuet": 3690,
+ "shinutiHardDuet": 2140,
+ "shinutiManiaDuet": 1580,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001250,
+ "scoreNormal": 1001620,
+ "scoreHard": 1000740,
+ "scoreMania": 1000620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 500,
+ "id": "mugens",
+ "songFileName": "song_mugens",
+ "order": 2309,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10260,
+ "shinutiNormal": 6200,
+ "shinutiHard": 3520,
+ "shinutiMania": 2220,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10260,
+ "shinutiNormalDuet": 6200,
+ "shinutiHardDuet": 3520,
+ "shinutiManiaDuet": 2220,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000720,
+ "scoreNormal": 1001300,
+ "scoreHard": 1001040,
+ "scoreMania": 1001240,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 501,
+ "id": "mujihi",
+ "songFileName": "song_mujihi",
+ "order": 2310,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6700,
+ "shinutiNormal": 4770,
+ "shinutiHard": 3140,
+ "shinutiMania": 2250,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6700,
+ "shinutiNormalDuet": 4770,
+ "shinutiHardDuet": 3140,
+ "shinutiManiaDuet": 2250,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001000,
+ "scoreNormal": 1000530,
+ "scoreHard": 1001240,
+ "scoreMania": 1002650,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 502,
+ "id": "mulber",
+ "songFileName": "song_mulber",
+ "order": 2311,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6700,
+ "shinutiNormal": 4080,
+ "shinutiHard": 2890,
+ "shinutiMania": 1830,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6700,
+ "shinutiNormalDuet": 4080,
+ "shinutiHardDuet": 2890,
+ "shinutiManiaDuet": 1830,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1001840,
+ "scoreHard": 1002270,
+ "scoreMania": 1002620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 503,
+ "id": "mymine",
+ "songFileName": "song_mymine",
+ "order": 2312,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 4660,
+ "shinutiNormal": 3090,
+ "shinutiHard": 2440,
+ "shinutiMania": 1580,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4660,
+ "shinutiNormalDuet": 3090,
+ "shinutiHardDuet": 2440,
+ "shinutiManiaDuet": 1580,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001240,
+ "scoreNormal": 1000780,
+ "scoreHard": 1001880,
+ "scoreMania": 1003300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 504,
+ "id": "mznemo",
+ "songFileName": "song_mznemo",
+ "order": 2313,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4280,
+ "shinutiNormal": 2920,
+ "shinutiHard": 1460,
+ "shinutiMania": 930,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4280,
+ "shinutiNormalDuet": 2920,
+ "shinutiHardDuet": 1460,
+ "shinutiManiaDuet": 930,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000820,
+ "scoreNormal": 1001580,
+ "scoreHard": 1005380,
+ "scoreMania": 1006850,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 505,
+ "id": "nanori",
+ "songFileName": "song_nanori",
+ "order": 2200,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9690,
+ "shinutiNormal": 5640,
+ "shinutiHard": 3150,
+ "shinutiMania": 2080,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9690,
+ "shinutiNormalDuet": 5640,
+ "shinutiHardDuet": 3150,
+ "shinutiManiaDuet": 2080,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000470,
+ "scoreNormal": 1001480,
+ "scoreHard": 1002050,
+ "scoreMania": 1000600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 506,
+ "id": "nao",
+ "songFileName": "song_nao",
+ "order": 2322,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7010,
+ "shinutiNormal": 5400,
+ "shinutiHard": 3120,
+ "shinutiMania": 2100,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7010,
+ "shinutiNormalDuet": 5400,
+ "shinutiHardDuet": 3120,
+ "shinutiManiaDuet": 2100,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000020,
+ "scoreNormal": 1000300,
+ "scoreHard": 1002200,
+ "scoreMania": 1003900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 507,
+ "id": "naraku",
+ "songFileName": "song_naraku",
+ "order": 2323,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 8,
+ "starUra": 10,
+ "shinutiEasy": 3440,
+ "shinutiNormal": 2790,
+ "shinutiHard": 1400,
+ "shinutiMania": 1150,
+ "shinutiUra": 890,
+ "shinutiEasyDuet": 3440,
+ "shinutiNormalDuet": 2790,
+ "shinutiHardDuet": 1400,
+ "shinutiManiaDuet": 1150,
+ "shinutiUraDuet": 890,
+ "scoreEasy": 1001120,
+ "scoreNormal": 1001760,
+ "scoreHard": 1006100,
+ "scoreMania": 1002300,
+ "scoreUra": 890
+ },
+ {
+ "uniqueId": 508,
+ "id": "natsu",
+ "songFileName": "song_natsu",
+ "order": 2325,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 2,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 7370,
+ "shinutiNormal": 5790,
+ "shinutiHard": 2560,
+ "shinutiMania": 2030,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7370,
+ "shinutiNormalDuet": 5790,
+ "shinutiHardDuet": 2560,
+ "shinutiManiaDuet": 2030,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000750,
+ "scoreNormal": 1001180,
+ "scoreHard": 1002440,
+ "scoreMania": 1000040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 509,
+ "id": "nbox",
+ "songFileName": "song_nbox",
+ "order": 2327,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10040,
+ "shinutiNormal": 6470,
+ "shinutiHard": 3830,
+ "shinutiMania": 2530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10040,
+ "shinutiNormalDuet": 6470,
+ "shinutiHardDuet": 3830,
+ "shinutiManiaDuet": 2530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000360,
+ "scoreNormal": 1001080,
+ "scoreHard": 1000800,
+ "scoreMania": 1001090,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 510,
+ "id": "necolo",
+ "songFileName": "song_necolo",
+ "order": 2329,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7650,
+ "shinutiNormal": 5940,
+ "shinutiHard": 2420,
+ "shinutiMania": 1530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7650,
+ "shinutiNormalDuet": 5940,
+ "shinutiHardDuet": 2420,
+ "shinutiManiaDuet": 1530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001150,
+ "scoreNormal": 1001440,
+ "scoreHard": 1003980,
+ "scoreMania": 1004980,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 511,
+ "id": "nee",
+ "songFileName": "song_nee",
+ "order": 2331,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7790,
+ "shinutiNormal": 6510,
+ "shinutiHard": 3400,
+ "shinutiMania": 2460,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7790,
+ "shinutiNormalDuet": 6510,
+ "shinutiHardDuet": 3400,
+ "shinutiManiaDuet": 2460,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001020,
+ "scoreNormal": 1000330,
+ "scoreHard": 1002600,
+ "scoreMania": 1002840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 512,
+ "id": "ngzsnc",
+ "songFileName": "song_ngzsnc",
+ "order": 2342,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 16940,
+ "shinutiNormal": 8100,
+ "shinutiHard": 4160,
+ "shinutiMania": 2420,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16940,
+ "shinutiNormalDuet": 8100,
+ "shinutiHardDuet": 4160,
+ "shinutiManiaDuet": 2420,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000520,
+ "scoreNormal": 1000700,
+ "scoreHard": 1001980,
+ "scoreMania": 1001840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 513,
+ "id": "niku2",
+ "songFileName": "song_niku2",
+ "order": 2348,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7860,
+ "shinutiNormal": 5640,
+ "shinutiHard": 2780,
+ "shinutiMania": 1790,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7860,
+ "shinutiNormalDuet": 5640,
+ "shinutiHardDuet": 2780,
+ "shinutiManiaDuet": 1790,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000020,
+ "scoreNormal": 1000580,
+ "scoreHard": 1000620,
+ "scoreMania": 1005500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 514,
+ "id": "ninjbb",
+ "songFileName": "song_ninjbb",
+ "order": 2350,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7500,
+ "shinutiNormal": 4280,
+ "shinutiHard": 2350,
+ "shinutiMania": 1900,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7500,
+ "shinutiNormalDuet": 4280,
+ "shinutiHardDuet": 2350,
+ "shinutiManiaDuet": 1900,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000740,
+ "scoreHard": 1001850,
+ "scoreMania": 1005100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 515,
+ "id": "nobu7g",
+ "songFileName": "song_nobu7g",
+ "order": 2353,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 2010,
+ "shinutiNormal": 1430,
+ "shinutiHard": 1030,
+ "shinutiMania": 720,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 2010,
+ "shinutiNormalDuet": 1430,
+ "shinutiHardDuet": 1030,
+ "shinutiManiaDuet": 720,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1004560,
+ "scoreNormal": 1002980,
+ "scoreHard": 1001880,
+ "scoreMania": 1012920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 516,
+ "id": "nograv",
+ "songFileName": "song_nograv",
+ "order": 2355,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 9560,
+ "shinutiNormal": 6360,
+ "shinutiHard": 3190,
+ "shinutiMania": 1480,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9560,
+ "shinutiNormalDuet": 6360,
+ "shinutiHardDuet": 3190,
+ "shinutiManiaDuet": 1480,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000540,
+ "scoreNormal": 1000360,
+ "scoreHard": 1000390,
+ "scoreMania": 1004620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 517,
+ "id": "nrdn2k",
+ "songFileName": "song_nrdn2k",
+ "order": 2357,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 3900,
+ "shinutiNormal": 2810,
+ "shinutiHard": 1950,
+ "shinutiMania": 1050,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3900,
+ "shinutiNormalDuet": 2810,
+ "shinutiHardDuet": 1950,
+ "shinutiManiaDuet": 1050,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1002040,
+ "scoreHard": 1004800,
+ "scoreMania": 1000200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 518,
+ "id": "ntmntm",
+ "songFileName": "song_ntmntm",
+ "order": 2359,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6960,
+ "shinutiNormal": 4060,
+ "shinutiHard": 2840,
+ "shinutiMania": 1800,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6960,
+ "shinutiNormalDuet": 4060,
+ "shinutiHardDuet": 2840,
+ "shinutiManiaDuet": 1800,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000380,
+ "scoreNormal": 1001400,
+ "scoreHard": 1002000,
+ "scoreMania": 1000100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 519,
+ "id": "numu10",
+ "songFileName": "song_numu10",
+ "order": 2361,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6850,
+ "shinutiNormal": 5180,
+ "shinutiHard": 2230,
+ "shinutiMania": 1580,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6850,
+ "shinutiNormalDuet": 5180,
+ "shinutiHardDuet": 2230,
+ "shinutiManiaDuet": 1580,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001350,
+ "scoreNormal": 1000680,
+ "scoreHard": 1001980,
+ "scoreMania": 1005980,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 520,
+ "id": "numu14",
+ "songFileName": "song_numu14",
+ "order": 2362,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 8930,
+ "shinutiNormal": 4480,
+ "shinutiHard": 2980,
+ "shinutiMania": 1800,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8930,
+ "shinutiNormalDuet": 4480,
+ "shinutiHardDuet": 2980,
+ "shinutiManiaDuet": 1800,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000130,
+ "scoreNormal": 1002160,
+ "scoreHard": 1001940,
+ "scoreMania": 1002100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 521,
+ "id": "nya3",
+ "songFileName": "song_nya3",
+ "order": 2363,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5940,
+ "shinutiNormal": 4560,
+ "shinutiHard": 1860,
+ "shinutiMania": 1170,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5940,
+ "shinutiNormalDuet": 4560,
+ "shinutiHardDuet": 1860,
+ "shinutiManiaDuet": 1170,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001480,
+ "scoreNormal": 1001420,
+ "scoreHard": 1002820,
+ "scoreMania": 1007230,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 522,
+ "id": "nycyok",
+ "songFileName": "song_nycyok",
+ "order": 2364,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 1,
+ "starMania": 3,
+ "starUra": 0,
+ "shinutiEasy": 11810,
+ "shinutiNormal": 8260,
+ "shinutiHard": 4940,
+ "shinutiMania": 3420,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11810,
+ "shinutiNormalDuet": 8260,
+ "shinutiHardDuet": 4940,
+ "shinutiManiaDuet": 3420,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000040,
+ "scoreNormal": 1000700,
+ "scoreHard": 1000840,
+ "scoreMania": 1001020,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 523,
+ "id": "obakes",
+ "songFileName": "song_obakes",
+ "order": 2366,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 6660,
+ "shinutiNormal": 4440,
+ "shinutiHard": 3200,
+ "shinutiMania": 2290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6660,
+ "shinutiNormalDuet": 4440,
+ "shinutiHardDuet": 3200,
+ "shinutiManiaDuet": 2290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001140,
+ "scoreNormal": 1000620,
+ "scoreHard": 1001400,
+ "scoreMania": 1003130,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 524,
+ "id": "odoru",
+ "songFileName": "song_odoru",
+ "order": 2368,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 4,
+ "starUra": 9,
+ "shinutiEasy": 15330,
+ "shinutiNormal": 9050,
+ "shinutiHard": 4000,
+ "shinutiMania": 3430,
+ "shinutiUra": 1960,
+ "shinutiEasyDuet": 15330,
+ "shinutiNormalDuet": 9050,
+ "shinutiHardDuet": 4000,
+ "shinutiManiaDuet": 3430,
+ "shinutiUraDuet": 1960,
+ "scoreEasy": 1000350,
+ "scoreNormal": 1000900,
+ "scoreHard": 1000300,
+ "scoreMania": 1000640,
+ "scoreUra": 1000510
+ },
+ {
+ "uniqueId": 525,
+ "id": "ogm10t",
+ "songFileName": "song_ogm10t",
+ "order": 2369,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7190,
+ "shinutiNormal": 4910,
+ "shinutiHard": 3590,
+ "shinutiMania": 1850,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7190,
+ "shinutiNormalDuet": 4910,
+ "shinutiHardDuet": 3590,
+ "shinutiManiaDuet": 1850,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000420,
+ "scoreNormal": 1001920,
+ "scoreHard": 1002240,
+ "scoreMania": 1003850,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 526,
+ "id": "ohdpre",
+ "songFileName": "song_ohdpre",
+ "order": 2373,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 17390,
+ "shinutiNormal": 12320,
+ "shinutiHard": 5830,
+ "shinutiMania": 3170,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 17390,
+ "shinutiNormalDuet": 12320,
+ "shinutiHardDuet": 5830,
+ "shinutiManiaDuet": 3170,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000330,
+ "scoreNormal": 1000200,
+ "scoreHard": 1000170,
+ "scoreMania": 1001370,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 527,
+ "id": "oka47",
+ "songFileName": "song_oka47",
+ "order": 2375,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5660,
+ "shinutiNormal": 4400,
+ "shinutiHard": 2850,
+ "shinutiMania": 1630,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5660,
+ "shinutiNormalDuet": 4400,
+ "shinutiHardDuet": 2850,
+ "shinutiManiaDuet": 1630,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000960,
+ "scoreNormal": 1001400,
+ "scoreHard": 1001150,
+ "scoreMania": 1003350,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 528,
+ "id": "onigir",
+ "songFileName": "song_onigir",
+ "order": 2382,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4110,
+ "shinutiNormal": 2710,
+ "shinutiHard": 1620,
+ "shinutiMania": 1170,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4110,
+ "shinutiNormalDuet": 2710,
+ "shinutiHardDuet": 1620,
+ "shinutiManiaDuet": 1170,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000520,
+ "scoreNormal": 1003170,
+ "scoreHard": 1000260,
+ "scoreMania": 1008080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 529,
+ "id": "ordyne",
+ "songFileName": "song_ordyne",
+ "order": 2388,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5040,
+ "shinutiNormal": 3530,
+ "shinutiHard": 2170,
+ "shinutiMania": 1610,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5040,
+ "shinutiNormalDuet": 3530,
+ "shinutiHardDuet": 2170,
+ "shinutiManiaDuet": 1610,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000020,
+ "scoreNormal": 1000360,
+ "scoreHard": 1000200,
+ "scoreMania": 1001200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 530,
+ "id": "orion",
+ "songFileName": "song_orion",
+ "order": 2392,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8730,
+ "shinutiNormal": 6460,
+ "shinutiHard": 3220,
+ "shinutiMania": 2140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8730,
+ "shinutiNormalDuet": 6460,
+ "shinutiHardDuet": 3220,
+ "shinutiManiaDuet": 2140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000120,
+ "scoreNormal": 1000340,
+ "scoreHard": 1002700,
+ "scoreMania": 1002840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 531,
+ "id": "orochi",
+ "songFileName": "song_orochi",
+ "order": 2265,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 10,
+ "shinutiEasy": 3740,
+ "shinutiNormal": 2250,
+ "shinutiHard": 1450,
+ "shinutiMania": 1050,
+ "shinutiUra": 1000,
+ "shinutiEasyDuet": 3740,
+ "shinutiNormalDuet": 2250,
+ "shinutiHardDuet": 1450,
+ "shinutiManiaDuet": 1050,
+ "shinutiUraDuet": 1000,
+ "scoreEasy": 1001240,
+ "scoreNormal": 1001400,
+ "scoreHard": 1000100,
+ "scoreMania": 1008200,
+ "scoreUra": 1000
+ },
+ {
+ "uniqueId": 532,
+ "id": "osirit",
+ "songFileName": "song_osirit",
+ "order": 2398,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 3,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 17370,
+ "shinutiNormal": 9410,
+ "shinutiHard": 4410,
+ "shinutiMania": 2590,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 17370,
+ "shinutiNormalDuet": 9410,
+ "shinutiHardDuet": 4410,
+ "shinutiManiaDuet": 2590,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000190,
+ "scoreNormal": 1000750,
+ "scoreHard": 1000530,
+ "scoreMania": 1000480,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 533,
+ "id": "otoppe",
+ "songFileName": "song_otoppe",
+ "order": 2403,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 4,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 26950,
+ "shinutiNormal": 16890,
+ "shinutiHard": 5180,
+ "shinutiMania": 1840,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 26950,
+ "shinutiNormalDuet": 16890,
+ "shinutiHardDuet": 5180,
+ "shinutiManiaDuet": 1840,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000050,
+ "scoreNormal": 1000010,
+ "scoreHard": 1001660,
+ "scoreMania": 1002800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 534,
+ "id": "oubu",
+ "songFileName": "song_oubu",
+ "order": 2273,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7250,
+ "shinutiNormal": 5160,
+ "shinutiHard": 2240,
+ "shinutiMania": 1550,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7250,
+ "shinutiNormalDuet": 5160,
+ "shinutiHardDuet": 2240,
+ "shinutiManiaDuet": 1550,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000550,
+ "scoreNormal": 1000820,
+ "scoreHard": 1002880,
+ "scoreMania": 1000350,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 535,
+ "id": "ourobo",
+ "songFileName": "song_ourobo",
+ "order": 2405,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4710,
+ "shinutiNormal": 2740,
+ "shinutiHard": 1520,
+ "shinutiMania": 870,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4710,
+ "shinutiNormalDuet": 2740,
+ "shinutiHardDuet": 1520,
+ "shinutiManiaDuet": 870,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001700,
+ "scoreNormal": 1003140,
+ "scoreHard": 1003840,
+ "scoreMania": 1000280,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 536,
+ "id": "ov969",
+ "songFileName": "song_ov969",
+ "order": 2407,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7480,
+ "shinutiNormal": 4800,
+ "shinutiHard": 3060,
+ "shinutiMania": 1670,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7480,
+ "shinutiNormalDuet": 4800,
+ "shinutiHardDuet": 3060,
+ "shinutiManiaDuet": 1670,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001140,
+ "scoreNormal": 1001700,
+ "scoreHard": 1002840,
+ "scoreMania": 1004620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 537,
+ "id": "oyasik",
+ "songFileName": "song_oyasik",
+ "order": 2409,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6830,
+ "shinutiNormal": 4680,
+ "shinutiHard": 2490,
+ "shinutiMania": 1640,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6830,
+ "shinutiNormalDuet": 4680,
+ "shinutiHardDuet": 2490,
+ "shinutiManiaDuet": 1640,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1000040,
+ "scoreHard": 1002580,
+ "scoreMania": 1005880,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 538,
+ "id": "pacm40",
+ "songFileName": "song_pacm40",
+ "order": 2412,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7800,
+ "shinutiNormal": 5250,
+ "shinutiHard": 2870,
+ "shinutiMania": 1650,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7800,
+ "shinutiNormalDuet": 5250,
+ "shinutiHardDuet": 2870,
+ "shinutiManiaDuet": 1650,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001000,
+ "scoreNormal": 1000900,
+ "scoreHard": 1000890,
+ "scoreMania": 1005300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 539,
+ "id": "parous",
+ "songFileName": "song_parous",
+ "order": 2415,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6270,
+ "shinutiNormal": 4480,
+ "shinutiHard": 2910,
+ "shinutiMania": 1270,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6270,
+ "shinutiNormalDuet": 4480,
+ "shinutiHardDuet": 2910,
+ "shinutiManiaDuet": 1270,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000160,
+ "scoreNormal": 1002080,
+ "scoreHard": 1000280,
+ "scoreMania": 1003290,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 540,
+ "id": "pettsn",
+ "songFileName": "song_pettsn",
+ "order": 2420,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 7530,
+ "shinutiNormal": 5570,
+ "shinutiHard": 3230,
+ "shinutiMania": 1440,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7530,
+ "shinutiNormalDuet": 5570,
+ "shinutiHardDuet": 3230,
+ "shinutiManiaDuet": 1440,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000760,
+ "scoreNormal": 1000260,
+ "scoreHard": 1002110,
+ "scoreMania": 1004240,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 541,
+ "id": "phride",
+ "songFileName": "song_phride",
+ "order": 2422,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 5060,
+ "shinutiNormal": 3670,
+ "shinutiHard": 1960,
+ "shinutiMania": 1430,
+ "shinutiUra": 1300,
+ "shinutiEasyDuet": 5060,
+ "shinutiNormalDuet": 3670,
+ "shinutiHardDuet": 1960,
+ "shinutiManiaDuet": 1430,
+ "shinutiUraDuet": 1300,
+ "scoreEasy": 1000560,
+ "scoreNormal": 1000200,
+ "scoreHard": 1003720,
+ "scoreMania": 1004810,
+ "scoreUra": 1300
+ },
+ {
+ "uniqueId": 542,
+ "id": "phuman",
+ "songFileName": "song_phuman",
+ "order": 2423,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 12750,
+ "shinutiNormal": 6450,
+ "shinutiHard": 4220,
+ "shinutiMania": 2710,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12750,
+ "shinutiNormalDuet": 6450,
+ "shinutiHardDuet": 4220,
+ "shinutiManiaDuet": 2710,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1000400,
+ "scoreHard": 1001300,
+ "scoreMania": 1002950,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 543,
+ "id": "pixelg",
+ "songFileName": "song_pixelg",
+ "order": 2428,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5340,
+ "shinutiNormal": 3470,
+ "shinutiHard": 2510,
+ "shinutiMania": 1360,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5340,
+ "shinutiNormalDuet": 3470,
+ "shinutiHardDuet": 2510,
+ "shinutiManiaDuet": 1360,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000380,
+ "scoreNormal": 1001760,
+ "scoreHard": 1002180,
+ "scoreMania": 1006400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 544,
+ "id": "pk3rai",
+ "songFileName": "song_pk3rai",
+ "order": 2429,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 15550,
+ "shinutiNormal": 9750,
+ "shinutiHard": 5700,
+ "shinutiMania": 2990,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15550,
+ "shinutiNormalDuet": 9750,
+ "shinutiHardDuet": 5700,
+ "shinutiManiaDuet": 2990,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000800,
+ "scoreHard": 1000800,
+ "scoreMania": 1002500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 545,
+ "id": "pkalol",
+ "songFileName": "song_pkalol",
+ "order": 2430,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 13970,
+ "shinutiNormal": 9880,
+ "shinutiHard": 4470,
+ "shinutiMania": 2490,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13970,
+ "shinutiNormalDuet": 9880,
+ "shinutiHardDuet": 4470,
+ "shinutiManiaDuet": 2490,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000070,
+ "scoreNormal": 1000600,
+ "scoreHard": 1002140,
+ "scoreMania": 1001800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 546,
+ "id": "pklets",
+ "songFileName": "song_pklets",
+ "order": 2432,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11070,
+ "shinutiNormal": 6500,
+ "shinutiHard": 2230,
+ "shinutiMania": 1420,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11070,
+ "shinutiNormalDuet": 6500,
+ "shinutiHardDuet": 2230,
+ "shinutiManiaDuet": 1420,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000730,
+ "scoreNormal": 1000900,
+ "scoreHard": 1001920,
+ "scoreMania": 1001900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 547,
+ "id": "pkmmzs",
+ "songFileName": "song_pkmmzs",
+ "order": 2435,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 8,
+ "shinutiEasy": 19050,
+ "shinutiNormal": 8300,
+ "shinutiHard": 5080,
+ "shinutiMania": 3250,
+ "shinutiUra": 2400,
+ "shinutiEasyDuet": 19050,
+ "shinutiNormalDuet": 8300,
+ "shinutiHardDuet": 5080,
+ "shinutiManiaDuet": 3250,
+ "shinutiUraDuet": 2400,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1001000,
+ "scoreHard": 1000140,
+ "scoreMania": 1001200,
+ "scoreUra": 2400
+ },
+ {
+ "uniqueId": 548,
+ "id": "pkmnsm",
+ "songFileName": "song_pkmnsm",
+ "order": 2439,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10960,
+ "shinutiNormal": 6780,
+ "shinutiHard": 2770,
+ "shinutiMania": 1940,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10960,
+ "shinutiNormalDuet": 6780,
+ "shinutiHardDuet": 2770,
+ "shinutiManiaDuet": 1940,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1001100,
+ "scoreHard": 1003330,
+ "scoreMania": 1002840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 549,
+ "id": "pkxyz",
+ "songFileName": "song_pkxyz",
+ "order": 2445,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 27460,
+ "shinutiNormal": 16110,
+ "shinutiHard": 4330,
+ "shinutiMania": 1820,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 27460,
+ "shinutiNormalDuet": 16110,
+ "shinutiHardDuet": 4330,
+ "shinutiManiaDuet": 1820,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000260,
+ "scoreNormal": 1000210,
+ "scoreHard": 1001070,
+ "scoreMania": 1002200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 550,
+ "id": "ponpon",
+ "songFileName": "song_ponpon",
+ "order": 2450,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8170,
+ "shinutiNormal": 5820,
+ "shinutiHard": 3730,
+ "shinutiMania": 2450,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8170,
+ "shinutiNormalDuet": 5820,
+ "shinutiHardDuet": 3730,
+ "shinutiManiaDuet": 2450,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001140,
+ "scoreNormal": 1000520,
+ "scoreHard": 1002340,
+ "scoreMania": 1004050,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 551,
+ "id": "ponyo",
+ "songFileName": "song_ponyo",
+ "order": 2451,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 1,
+ "starMania": 2,
+ "starUra": 0,
+ "shinutiEasy": 13660,
+ "shinutiNormal": 10280,
+ "shinutiHard": 6280,
+ "shinutiMania": 4430,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13660,
+ "shinutiNormalDuet": 10280,
+ "shinutiHardDuet": 6280,
+ "shinutiManiaDuet": 4430,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000180,
+ "scoreNormal": 1000460,
+ "scoreHard": 1001520,
+ "scoreMania": 1000750,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 552,
+ "id": "poptep",
+ "songFileName": "song_poptep",
+ "order": 2453,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 17730,
+ "shinutiNormal": 12240,
+ "shinutiHard": 5420,
+ "shinutiMania": 2360,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 17730,
+ "shinutiNormalDuet": 12240,
+ "shinutiHardDuet": 5420,
+ "shinutiManiaDuet": 2360,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1000340,
+ "scoreHard": 1000560,
+ "scoreMania": 1003880,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 553,
+ "id": "poxeid",
+ "songFileName": "song_poxeid",
+ "order": 2316,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 3950,
+ "shinutiNormal": 1910,
+ "shinutiHard": 1150,
+ "shinutiMania": 820,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3950,
+ "shinutiNormalDuet": 1910,
+ "shinutiHardDuet": 1150,
+ "shinutiManiaDuet": 820,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001500,
+ "scoreNormal": 1002500,
+ "scoreHard": 1007400,
+ "scoreMania": 1002300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 554,
+ "id": "ppap",
+ "songFileName": "song_ppap",
+ "order": 2459,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 29260,
+ "shinutiNormal": 12300,
+ "shinutiHard": 10130,
+ "shinutiMania": 6330,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 29260,
+ "shinutiNormalDuet": 12300,
+ "shinutiHardDuet": 10130,
+ "shinutiManiaDuet": 6330,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000140,
+ "scoreNormal": 1000800,
+ "scoreHard": 1000240,
+ "scoreMania": 1000380,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 555,
+ "id": "pprose",
+ "songFileName": "song_pprose",
+ "order": 2460,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 2890,
+ "shinutiNormal": 2010,
+ "shinutiHard": 1610,
+ "shinutiMania": 1140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 2890,
+ "shinutiNormalDuet": 2010,
+ "shinutiHardDuet": 1610,
+ "shinutiManiaDuet": 1140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1002760,
+ "scoreNormal": 1000340,
+ "scoreHard": 1000160,
+ "scoreMania": 1006640,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 556,
+ "id": "pr9all",
+ "songFileName": "song_pr9all",
+ "order": 2462,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 5,
+ "shinutiEasy": 33070,
+ "shinutiNormal": 17360,
+ "shinutiHard": 6030,
+ "shinutiMania": 2750,
+ "shinutiUra": 3010,
+ "shinutiEasyDuet": 33070,
+ "shinutiNormalDuet": 17360,
+ "shinutiHardDuet": 6030,
+ "shinutiManiaDuet": 2750,
+ "shinutiUraDuet": 3010,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1000320,
+ "scoreHard": 1000950,
+ "scoreMania": 1002450,
+ "scoreUra": 3010
+ },
+ {
+ "uniqueId": 557,
+ "id": "pr9hlg",
+ "songFileName": "song_pr9hlg",
+ "order": 2463,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 22100,
+ "shinutiNormal": 16560,
+ "shinutiHard": 6540,
+ "shinutiMania": 3020,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 22100,
+ "shinutiNormalDuet": 16560,
+ "shinutiHardDuet": 6540,
+ "shinutiManiaDuet": 3020,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000500,
+ "scoreHard": 1000740,
+ "scoreMania": 1001860,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 558,
+ "id": "pr9str",
+ "songFileName": "song_pr9str",
+ "order": 2466,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 25500,
+ "shinutiNormal": 12740,
+ "shinutiHard": 5140,
+ "shinutiMania": 3410,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 25500,
+ "shinutiNormalDuet": 12740,
+ "shinutiHardDuet": 5140,
+ "shinutiManiaDuet": 3410,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1000720,
+ "scoreHard": 1001420,
+ "scoreMania": 1000200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 559,
+ "id": "pridon",
+ "songFileName": "song_pridon",
+ "order": 2472,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5050,
+ "shinutiNormal": 3510,
+ "shinutiHard": 2280,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5050,
+ "shinutiNormalDuet": 3510,
+ "shinutiHardDuet": 2280,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001950,
+ "scoreNormal": 1001740,
+ "scoreHard": 1000480,
+ "scoreMania": 1006750,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 560,
+ "id": "pripar",
+ "songFileName": "song_pripar",
+ "order": 2475,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 11950,
+ "shinutiNormal": 9340,
+ "shinutiHard": 5010,
+ "shinutiMania": 2580,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11950,
+ "shinutiNormalDuet": 9340,
+ "shinutiHardDuet": 5010,
+ "shinutiManiaDuet": 2580,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000750,
+ "scoreNormal": 1000440,
+ "scoreHard": 1001570,
+ "scoreMania": 1002080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 561,
+ "id": "prprs",
+ "songFileName": "song_prprs",
+ "order": 2478,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6410,
+ "shinutiNormal": 4530,
+ "shinutiHard": 2540,
+ "shinutiMania": 1540,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6410,
+ "shinutiNormalDuet": 4530,
+ "shinutiHardDuet": 2540,
+ "shinutiManiaDuet": 1540,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000950,
+ "scoreNormal": 1001600,
+ "scoreHard": 1000000,
+ "scoreMania": 1004080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 562,
+ "id": "psf1op",
+ "songFileName": "song_psf1op",
+ "order": 2479,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4750,
+ "shinutiNormal": 3150,
+ "shinutiHard": 2120,
+ "shinutiMania": 1280,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4750,
+ "shinutiNormalDuet": 3150,
+ "shinutiHardDuet": 2120,
+ "shinutiManiaDuet": 1280,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001350,
+ "scoreNormal": 1000100,
+ "scoreHard": 1000520,
+ "scoreMania": 1003680,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 563,
+ "id": "psplsb",
+ "songFileName": "song_psplsb",
+ "order": 2482,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4490,
+ "shinutiNormal": 3260,
+ "shinutiHard": 1620,
+ "shinutiMania": 1250,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4490,
+ "shinutiNormalDuet": 3260,
+ "shinutiHardDuet": 1620,
+ "shinutiManiaDuet": 1250,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001880,
+ "scoreNormal": 1000600,
+ "scoreHard": 1002600,
+ "scoreMania": 1007500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 564,
+ "id": "puzdr4",
+ "songFileName": "song_puzdr4",
+ "order": 2492,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9070,
+ "shinutiNormal": 5650,
+ "shinutiHard": 3200,
+ "shinutiMania": 1840,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9070,
+ "shinutiNormalDuet": 5650,
+ "shinutiHardDuet": 3200,
+ "shinutiManiaDuet": 1840,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000730,
+ "scoreNormal": 1000750,
+ "scoreHard": 1002000,
+ "scoreMania": 1003620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 565,
+ "id": "puzdr6",
+ "songFileName": "song_puzdr6",
+ "order": 2494,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9460,
+ "shinutiNormal": 5100,
+ "shinutiHard": 3150,
+ "shinutiMania": 2500,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9460,
+ "shinutiNormalDuet": 5100,
+ "shinutiHardDuet": 3150,
+ "shinutiManiaDuet": 2500,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1000800,
+ "scoreHard": 1003000,
+ "scoreMania": 1002100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 566,
+ "id": "puzdr7",
+ "songFileName": "song_puzdr7",
+ "order": 2495,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 15460,
+ "shinutiNormal": 9900,
+ "shinutiHard": 3760,
+ "shinutiMania": 2430,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15460,
+ "shinutiNormalDuet": 9900,
+ "shinutiHardDuet": 3760,
+ "shinutiManiaDuet": 2430,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000340,
+ "scoreNormal": 1000100,
+ "scoreHard": 1001620,
+ "scoreMania": 1002480,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 567,
+ "id": "puzdra",
+ "songFileName": "song_puzdra",
+ "order": 2496,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9510,
+ "shinutiNormal": 6010,
+ "shinutiHard": 3670,
+ "shinutiMania": 2060,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9510,
+ "shinutiNormalDuet": 6010,
+ "shinutiHardDuet": 3670,
+ "shinutiManiaDuet": 2060,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000040,
+ "scoreNormal": 1001440,
+ "scoreHard": 1000800,
+ "scoreMania": 1003360,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 568,
+ "id": "puzdx1",
+ "songFileName": "song_puzdx1",
+ "order": 2498,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 18010,
+ "shinutiNormal": 9490,
+ "shinutiHard": 4990,
+ "shinutiMania": 2730,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18010,
+ "shinutiNormalDuet": 9490,
+ "shinutiHardDuet": 4990,
+ "shinutiManiaDuet": 2730,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000350,
+ "scoreNormal": 1000860,
+ "scoreHard": 1001420,
+ "scoreMania": 1001420,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 569,
+ "id": "quant",
+ "songFileName": "song_quant",
+ "order": 2500,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6330,
+ "shinutiNormal": 3970,
+ "shinutiHard": 2970,
+ "shinutiMania": 1720,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6330,
+ "shinutiNormalDuet": 3970,
+ "shinutiHardDuet": 2970,
+ "shinutiManiaDuet": 1720,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001410,
+ "scoreNormal": 1002100,
+ "scoreHard": 1001910,
+ "scoreMania": 1003720,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 570,
+ "id": "rainmk",
+ "songFileName": "song_rainmk",
+ "order": 2504,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6310,
+ "shinutiNormal": 3910,
+ "shinutiHard": 2270,
+ "shinutiMania": 1690,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6310,
+ "shinutiNormalDuet": 3910,
+ "shinutiHardDuet": 2270,
+ "shinutiManiaDuet": 1690,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000180,
+ "scoreNormal": 1000450,
+ "scoreHard": 1003600,
+ "scoreMania": 1002110,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 571,
+ "id": "ralive",
+ "songFileName": "song_ralive",
+ "order": 2506,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6480,
+ "shinutiNormal": 3670,
+ "shinutiHard": 1920,
+ "shinutiMania": 1210,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6480,
+ "shinutiNormalDuet": 3670,
+ "shinutiHardDuet": 1920,
+ "shinutiManiaDuet": 1210,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000040,
+ "scoreNormal": 1001800,
+ "scoreHard": 1001680,
+ "scoreMania": 1007500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 572,
+ "id": "ramen",
+ "songFileName": "song_ramen",
+ "order": 2507,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6560,
+ "shinutiNormal": 3910,
+ "shinutiHard": 2860,
+ "shinutiMania": 2040,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6560,
+ "shinutiNormalDuet": 3910,
+ "shinutiHardDuet": 2860,
+ "shinutiManiaDuet": 2040,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000160,
+ "scoreNormal": 1000030,
+ "scoreHard": 1001120,
+ "scoreMania": 1001580,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 573,
+ "id": "rasens",
+ "songFileName": "song_rasens",
+ "order": 2508,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 6660,
+ "shinutiNormal": 3910,
+ "shinutiHard": 2260,
+ "shinutiMania": 1470,
+ "shinutiUra": 1040,
+ "shinutiEasyDuet": 6660,
+ "shinutiNormalDuet": 3910,
+ "shinutiHardDuet": 2260,
+ "shinutiManiaDuet": 1470,
+ "shinutiUraDuet": 1040,
+ "scoreEasy": 1001320,
+ "scoreNormal": 1001600,
+ "scoreHard": 1002380,
+ "scoreMania": 1005170,
+ "scoreUra": 1040
+ },
+ {
+ "uniqueId": 574,
+ "id": "rdrose",
+ "songFileName": "song_rdrose",
+ "order": 2509,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 3980,
+ "shinutiNormal": 3220,
+ "shinutiHard": 2130,
+ "shinutiMania": 1300,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3980,
+ "shinutiNormalDuet": 3220,
+ "shinutiHardDuet": 2130,
+ "shinutiManiaDuet": 1300,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1002400,
+ "scoreNormal": 1000860,
+ "scoreHard": 1002880,
+ "scoreMania": 1004100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 575,
+ "id": "reiwad",
+ "songFileName": "song_reiwad",
+ "order": 2366,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9380,
+ "shinutiNormal": 4530,
+ "shinutiHard": 2300,
+ "shinutiMania": 1580,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9380,
+ "shinutiNormalDuet": 4530,
+ "shinutiHardDuet": 2300,
+ "shinutiManiaDuet": 1580,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000500,
+ "scoreNormal": 1001240,
+ "scoreHard": 1004300,
+ "scoreMania": 1002920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 576,
+ "id": "retoko",
+ "songFileName": "song_retoko",
+ "order": 2513,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 3790,
+ "shinutiNormal": 2950,
+ "shinutiHard": 2220,
+ "shinutiMania": 1270,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3790,
+ "shinutiNormalDuet": 2950,
+ "shinutiHardDuet": 2220,
+ "shinutiManiaDuet": 1270,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001860,
+ "scoreNormal": 1001650,
+ "scoreHard": 1003320,
+ "scoreMania": 1003990,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 577,
+ "id": "revive",
+ "songFileName": "song_revive",
+ "order": 2514,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6440,
+ "shinutiNormal": 4030,
+ "shinutiHard": 2190,
+ "shinutiMania": 1290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6440,
+ "shinutiNormalDuet": 4030,
+ "shinutiHardDuet": 2190,
+ "shinutiManiaDuet": 1290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001220,
+ "scoreNormal": 1001720,
+ "scoreHard": 1000890,
+ "scoreMania": 1000750,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 578,
+ "id": "rgod",
+ "songFileName": "song_rgod",
+ "order": 2517,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 5180,
+ "shinutiNormal": 3620,
+ "shinutiHard": 2360,
+ "shinutiMania": 1740,
+ "shinutiUra": 1300,
+ "shinutiEasyDuet": 5180,
+ "shinutiNormalDuet": 3620,
+ "shinutiHardDuet": 2360,
+ "shinutiManiaDuet": 1740,
+ "shinutiUraDuet": 1300,
+ "scoreEasy": 1000760,
+ "scoreNormal": 1000200,
+ "scoreHard": 1001460,
+ "scoreMania": 1003980,
+ "scoreUra": 1300
+ },
+ {
+ "uniqueId": 579,
+ "id": "ri",
+ "songFileName": "song_ri",
+ "order": 2519,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5080,
+ "shinutiNormal": 3520,
+ "shinutiHard": 1700,
+ "shinutiMania": 1080,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5080,
+ "shinutiNormalDuet": 3520,
+ "shinutiHardDuet": 1700,
+ "shinutiManiaDuet": 1080,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1001000,
+ "scoreHard": 1005600,
+ "scoreMania": 1004700,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 580,
+ "id": "rinhis",
+ "songFileName": "song_rinhis",
+ "order": 2521,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7500,
+ "shinutiNormal": 6150,
+ "shinutiHard": 2620,
+ "shinutiMania": 1480,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7500,
+ "shinutiNormalDuet": 6150,
+ "shinutiHardDuet": 2620,
+ "shinutiManiaDuet": 1480,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001200,
+ "scoreNormal": 1001100,
+ "scoreHard": 1000500,
+ "scoreMania": 1001760,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 581,
+ "id": "rinren",
+ "songFileName": "song_rinren",
+ "order": 2522,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6520,
+ "shinutiNormal": 3650,
+ "shinutiHard": 2600,
+ "shinutiMania": 1300,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6520,
+ "shinutiNormalDuet": 3650,
+ "shinutiHardDuet": 2600,
+ "shinutiManiaDuet": 1300,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001140,
+ "scoreNormal": 1001350,
+ "scoreHard": 1003500,
+ "scoreMania": 1004900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 582,
+ "id": "rlnedy",
+ "songFileName": "song_rlnedy",
+ "order": 2531,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5330,
+ "shinutiNormal": 3520,
+ "shinutiHard": 2140,
+ "shinutiMania": 1300,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5330,
+ "shinutiNormalDuet": 3520,
+ "shinutiHardDuet": 2140,
+ "shinutiManiaDuet": 1300,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001080,
+ "scoreNormal": 1001720,
+ "scoreHard": 1002360,
+ "scoreMania": 1002200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 583,
+ "id": "rlngig",
+ "songFileName": "song_rlngig",
+ "order": 2532,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 4230,
+ "shinutiNormal": 2330,
+ "shinutiHard": 1310,
+ "shinutiMania": 1130,
+ "shinutiUra": 930,
+ "shinutiEasyDuet": 4230,
+ "shinutiNormalDuet": 2330,
+ "shinutiHardDuet": 1310,
+ "shinutiManiaDuet": 1130,
+ "shinutiUraDuet": 930,
+ "scoreEasy": 1000350,
+ "scoreNormal": 1003210,
+ "scoreHard": 1000730,
+ "scoreMania": 1005670,
+ "scoreUra": 930
+ },
+ {
+ "uniqueId": 584,
+ "id": "rlnpls",
+ "songFileName": "song_rlnpls",
+ "order": 2533,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 4160,
+ "shinutiNormal": 3040,
+ "shinutiHard": 2070,
+ "shinutiMania": 1700,
+ "shinutiUra": 1100,
+ "shinutiEasyDuet": 4160,
+ "shinutiNormalDuet": 3040,
+ "shinutiHardDuet": 2070,
+ "shinutiManiaDuet": 1700,
+ "shinutiUraDuet": 1100,
+ "scoreEasy": 1001940,
+ "scoreNormal": 1000940,
+ "scoreHard": 1004430,
+ "scoreMania": 1003700,
+ "scoreUra": 1100
+ },
+ {
+ "uniqueId": 585,
+ "id": "rlnrtr",
+ "songFileName": "song_rlnrtr",
+ "order": 2534,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7130,
+ "shinutiNormal": 4190,
+ "shinutiHard": 2260,
+ "shinutiMania": 1380,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7130,
+ "shinutiNormalDuet": 4190,
+ "shinutiHardDuet": 2260,
+ "shinutiManiaDuet": 1380,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000970,
+ "scoreNormal": 1000140,
+ "scoreHard": 1001640,
+ "scoreMania": 1007020,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 586,
+ "id": "rlnted",
+ "songFileName": "song_rlnted",
+ "order": 2536,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 4400,
+ "shinutiNormal": 2930,
+ "shinutiHard": 1960,
+ "shinutiMania": 1260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4400,
+ "shinutiNormalDuet": 2930,
+ "shinutiHardDuet": 1960,
+ "shinutiManiaDuet": 1260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000800,
+ "scoreNormal": 1001470,
+ "scoreHard": 1000460,
+ "scoreMania": 1005520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 587,
+ "id": "roadmv",
+ "songFileName": "song_roadmv",
+ "order": 2537,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 16850,
+ "shinutiNormal": 10010,
+ "shinutiHard": 6130,
+ "shinutiMania": 4260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16850,
+ "shinutiNormalDuet": 10010,
+ "shinutiHardDuet": 6130,
+ "shinutiManiaDuet": 4260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000550,
+ "scoreNormal": 1000390,
+ "scoreHard": 1000060,
+ "scoreMania": 1001320,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 588,
+ "id": "robots",
+ "songFileName": "song_robots",
+ "order": 2538,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 6010,
+ "shinutiNormal": 4900,
+ "shinutiHard": 3040,
+ "shinutiMania": 1990,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6010,
+ "shinutiNormalDuet": 4900,
+ "shinutiHardDuet": 3040,
+ "shinutiManiaDuet": 1990,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000050,
+ "scoreNormal": 1000300,
+ "scoreHard": 1001540,
+ "scoreMania": 1004800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 589,
+ "id": "rock",
+ "songFileName": "song_rock",
+ "order": 2539,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 5,
+ "starUra": 6,
+ "shinutiEasy": 11150,
+ "shinutiNormal": 9350,
+ "shinutiHard": 6870,
+ "shinutiMania": 4450,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11150,
+ "shinutiNormalDuet": 9350,
+ "shinutiHardDuet": 6870,
+ "shinutiManiaDuet": 4450,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000350,
+ "scoreNormal": 1001000,
+ "scoreHard": 1000110,
+ "scoreMania": 1000550,
+ "scoreUra": 1000720
+ },
+ {
+ "uniqueId": 590,
+ "id": "rockmw",
+ "songFileName": "song_rockmw",
+ "order": 2541,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6620,
+ "shinutiNormal": 4180,
+ "shinutiHard": 2570,
+ "shinutiMania": 1630,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6620,
+ "shinutiNormalDuet": 4180,
+ "shinutiHardDuet": 2570,
+ "shinutiManiaDuet": 1630,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001100,
+ "scoreNormal": 1000760,
+ "scoreHard": 1000960,
+ "scoreMania": 1000770,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 591,
+ "id": "rocknh",
+ "songFileName": "song_rocknh",
+ "order": 2542,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 11320,
+ "shinutiNormal": 5270,
+ "shinutiHard": 3180,
+ "shinutiMania": 2590,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11320,
+ "shinutiNormalDuet": 5270,
+ "shinutiHardDuet": 3180,
+ "shinutiManiaDuet": 2590,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000860,
+ "scoreNormal": 1001830,
+ "scoreHard": 1000260,
+ "scoreMania": 1002860,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 593,
+ "id": "roki",
+ "songFileName": "song_roki",
+ "order": 2544,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8410,
+ "shinutiNormal": 6120,
+ "shinutiHard": 3830,
+ "shinutiMania": 1710,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8410,
+ "shinutiNormalDuet": 6120,
+ "shinutiHardDuet": 3830,
+ "shinutiManiaDuet": 1710,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000380,
+ "scoreNormal": 1001440,
+ "scoreHard": 1001540,
+ "scoreMania": 1001460,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 594,
+ "id": "rot3",
+ "songFileName": "song_rot3",
+ "order": 2548,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4690,
+ "shinutiNormal": 2630,
+ "shinutiHard": 1720,
+ "shinutiMania": 1190,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4690,
+ "shinutiNormalDuet": 2630,
+ "shinutiHardDuet": 1720,
+ "shinutiManiaDuet": 1190,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001580,
+ "scoreNormal": 1002340,
+ "scoreHard": 1000800,
+ "scoreMania": 1007450,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 595,
+ "id": "rot4",
+ "songFileName": "song_rot4",
+ "order": 2549,
+ "genreNo": 7,
+ "branchEasy": true,
+ "branchNormal": true,
+ "branchHard": true,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 3080,
+ "shinutiNormal": 2240,
+ "shinutiHard": 1560,
+ "shinutiMania": 1000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3080,
+ "shinutiNormalDuet": 2240,
+ "shinutiHardDuet": 1560,
+ "shinutiManiaDuet": 1000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1002240,
+ "scoreNormal": 1003260,
+ "scoreHard": 1003860,
+ "scoreMania": 1000400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 596,
+ "id": "rotspd",
+ "songFileName": "song_rotspd",
+ "order": 2550,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 3960,
+ "shinutiNormal": 2730,
+ "shinutiHard": 2050,
+ "shinutiMania": 1740,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3960,
+ "shinutiNormalDuet": 2730,
+ "shinutiHardDuet": 2050,
+ "shinutiManiaDuet": 1740,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001020,
+ "scoreNormal": 1000580,
+ "scoreHard": 1004250,
+ "scoreMania": 1000000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 597,
+ "id": "rr1",
+ "songFileName": "song_rr1",
+ "order": 2552,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 4200,
+ "shinutiNormal": 3020,
+ "shinutiHard": 1370,
+ "shinutiMania": 1370,
+ "shinutiUra": 1060,
+ "shinutiEasyDuet": 4200,
+ "shinutiNormalDuet": 3020,
+ "shinutiHardDuet": 1370,
+ "shinutiManiaDuet": 1370,
+ "shinutiUraDuet": 1060,
+ "scoreEasy": 1000900,
+ "scoreNormal": 1002120,
+ "scoreHard": 1004210,
+ "scoreMania": 1004210,
+ "scoreUra": 1060
+ },
+ {
+ "uniqueId": 598,
+ "id": "rr1fz",
+ "songFileName": "song_rr1fz",
+ "order": 2553,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6820,
+ "shinutiNormal": 4260,
+ "shinutiHard": 2170,
+ "shinutiMania": 1470,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6820,
+ "shinutiNormalDuet": 4260,
+ "shinutiHardDuet": 2170,
+ "shinutiManiaDuet": 1470,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1000120,
+ "scoreHard": 1003500,
+ "scoreMania": 1005140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 599,
+ "id": "rr1wlz",
+ "songFileName": "song_rr1wlz",
+ "order": 2554,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6210,
+ "shinutiNormal": 4700,
+ "shinutiHard": 3070,
+ "shinutiMania": 1860,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6210,
+ "shinutiNormalDuet": 4700,
+ "shinutiHardDuet": 3070,
+ "shinutiManiaDuet": 1860,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000900,
+ "scoreNormal": 1001500,
+ "scoreHard": 1000440,
+ "scoreMania": 1004860,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 600,
+ "id": "rr3dan",
+ "songFileName": "song_rr3dan",
+ "order": 2557,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4340,
+ "shinutiNormal": 3030,
+ "shinutiHard": 1860,
+ "shinutiMania": 1120,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4340,
+ "shinutiNormalDuet": 3030,
+ "shinutiHardDuet": 1860,
+ "shinutiManiaDuet": 1120,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001660,
+ "scoreNormal": 1002540,
+ "scoreHard": 1001460,
+ "scoreMania": 1007360,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 601,
+ "id": "rr3dve",
+ "songFileName": "song_rr3dve",
+ "order": 2558,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 4910,
+ "shinutiNormal": 3790,
+ "shinutiHard": 2680,
+ "shinutiMania": 1310,
+ "shinutiUra": 1310,
+ "shinutiEasyDuet": 4910,
+ "shinutiNormalDuet": 3790,
+ "shinutiHardDuet": 2680,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 1310,
+ "scoreEasy": 1001930,
+ "scoreNormal": 1000280,
+ "scoreHard": 1001400,
+ "scoreMania": 1005850,
+ "scoreUra": 1310
+ },
+ {
+ "uniqueId": 602,
+ "id": "rr42",
+ "songFileName": "song_rr42",
+ "order": 2559,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5820,
+ "shinutiNormal": 3940,
+ "shinutiHard": 2090,
+ "shinutiMania": 1570,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5820,
+ "shinutiNormalDuet": 3940,
+ "shinutiHardDuet": 2090,
+ "shinutiManiaDuet": 1570,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001420,
+ "scoreNormal": 1001520,
+ "scoreHard": 1000030,
+ "scoreMania": 1003230,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 603,
+ "id": "rrs2kk",
+ "songFileName": "song_rrs2kk",
+ "order": 2561,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6130,
+ "shinutiNormal": 4460,
+ "shinutiHard": 1990,
+ "shinutiMania": 1360,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6130,
+ "shinutiNormalDuet": 4460,
+ "shinutiHardDuet": 1990,
+ "shinutiManiaDuet": 1360,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001290,
+ "scoreNormal": 1001940,
+ "scoreHard": 1000890,
+ "scoreMania": 1002320,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 604,
+ "id": "rrsam",
+ "songFileName": "song_rrsam",
+ "order": 2414,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 4680,
+ "shinutiNormal": 2810,
+ "shinutiHard": 1520,
+ "shinutiMania": 1100,
+ "shinutiUra": 1100,
+ "shinutiEasyDuet": 4680,
+ "shinutiNormalDuet": 2810,
+ "shinutiHardDuet": 1520,
+ "shinutiManiaDuet": 1100,
+ "shinutiUraDuet": 1100,
+ "scoreEasy": 1001760,
+ "scoreNormal": 1000340,
+ "scoreHard": 1000680,
+ "scoreMania": 1006150,
+ "scoreUra": 1120
+ },
+ {
+ "uniqueId": 605,
+ "id": "rrself",
+ "songFileName": "song_rrself",
+ "order": 2563,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8220,
+ "shinutiNormal": 6370,
+ "shinutiHard": 3150,
+ "shinutiMania": 1830,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8220,
+ "shinutiNormalDuet": 6370,
+ "shinutiHardDuet": 3150,
+ "shinutiManiaDuet": 1830,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000620,
+ "scoreNormal": 1001420,
+ "scoreHard": 1001350,
+ "scoreMania": 1000250,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 606,
+ "id": "rt2wit",
+ "songFileName": "song_rt2wit",
+ "order": 2566,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7810,
+ "shinutiNormal": 4510,
+ "shinutiHard": 2590,
+ "shinutiMania": 1810,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7810,
+ "shinutiNormalDuet": 4510,
+ "shinutiHardDuet": 2590,
+ "shinutiManiaDuet": 1810,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000470,
+ "scoreNormal": 1000300,
+ "scoreHard": 1001480,
+ "scoreMania": 1000060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 607,
+ "id": "ryogen",
+ "songFileName": "song_ryogen",
+ "order": 2569,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5140,
+ "shinutiNormal": 3800,
+ "shinutiHard": 2520,
+ "shinutiMania": 1220,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5140,
+ "shinutiNormalDuet": 3800,
+ "shinutiHardDuet": 2520,
+ "shinutiManiaDuet": 1220,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001360,
+ "scoreNormal": 1001000,
+ "scoreHard": 1000600,
+ "scoreMania": 1004540,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 608,
+ "id": "ryowh",
+ "songFileName": "song_ryowh",
+ "order": 2571,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 8,
+ "shinutiEasy": 6020,
+ "shinutiNormal": 4300,
+ "shinutiHard": 3260,
+ "shinutiMania": 2600,
+ "shinutiUra": 1390,
+ "shinutiEasyDuet": 6020,
+ "shinutiNormalDuet": 4300,
+ "shinutiHardDuet": 3260,
+ "shinutiManiaDuet": 2600,
+ "shinutiUraDuet": 1390,
+ "scoreEasy": 1000820,
+ "scoreNormal": 1001500,
+ "scoreHard": 1002560,
+ "scoreMania": 1001200,
+ "scoreUra": 1390
+ },
+ {
+ "uniqueId": 609,
+ "id": "ryuhim",
+ "songFileName": "song_ryuhim",
+ "order": 2572,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 10,
+ "shinutiEasy": 7340,
+ "shinutiNormal": 5290,
+ "shinutiHard": 2520,
+ "shinutiMania": 1740,
+ "shinutiUra": 1070,
+ "shinutiEasyDuet": 7340,
+ "shinutiNormalDuet": 5290,
+ "shinutiHardDuet": 2520,
+ "shinutiManiaDuet": 1740,
+ "shinutiUraDuet": 1070,
+ "scoreEasy": 1000260,
+ "scoreNormal": 1001150,
+ "scoreHard": 1001100,
+ "scoreMania": 1005160,
+ "scoreUra": 1070
+ },
+ {
+ "uniqueId": 610,
+ "id": "ryukis",
+ "songFileName": "song_ryukis",
+ "order": 2573,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7260,
+ "shinutiNormal": 4010,
+ "shinutiHard": 2450,
+ "shinutiMania": 1590,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7260,
+ "shinutiNormalDuet": 4010,
+ "shinutiHardDuet": 2450,
+ "shinutiManiaDuet": 1590,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000820,
+ "scoreNormal": 1001380,
+ "scoreHard": 1003550,
+ "scoreMania": 1005760,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 611,
+ "id": "ryusei",
+ "songFileName": "song_ryusei",
+ "order": 2574,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7780,
+ "shinutiNormal": 5260,
+ "shinutiHard": 3370,
+ "shinutiMania": 2670,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7780,
+ "shinutiNormalDuet": 5260,
+ "shinutiHardDuet": 3370,
+ "shinutiManiaDuet": 2670,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000040,
+ "scoreNormal": 1001640,
+ "scoreHard": 1000950,
+ "scoreMania": 1000870,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 612,
+ "id": "ryusoj",
+ "songFileName": "song_ryusoj",
+ "order": 2575,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 30080,
+ "shinutiNormal": 18290,
+ "shinutiHard": 8640,
+ "shinutiMania": 2860,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 30080,
+ "shinutiNormalDuet": 18290,
+ "shinutiHardDuet": 8640,
+ "shinutiManiaDuet": 2860,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000040,
+ "scoreNormal": 1000360,
+ "scoreHard": 1000360,
+ "scoreMania": 1001500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 613,
+ "id": "saibou",
+ "songFileName": "song_saibou",
+ "order": 2576,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7760,
+ "shinutiNormal": 4980,
+ "shinutiHard": 3380,
+ "shinutiMania": 2170,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7760,
+ "shinutiNormalDuet": 4980,
+ "shinutiHardDuet": 3380,
+ "shinutiManiaDuet": 2170,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001180,
+ "scoreNormal": 1001420,
+ "scoreHard": 1000160,
+ "scoreMania": 1001210,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 614,
+ "id": "sanpo",
+ "songFileName": "song_sanpo",
+ "order": 2580,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 9,
+ "shinutiEasy": 11400,
+ "shinutiNormal": 9250,
+ "shinutiHard": 3960,
+ "shinutiMania": 2640,
+ "shinutiUra": 1230,
+ "shinutiEasyDuet": 11400,
+ "shinutiNormalDuet": 9250,
+ "shinutiHardDuet": 3960,
+ "shinutiManiaDuet": 2640,
+ "shinutiUraDuet": 1230,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1000350,
+ "scoreHard": 1000740,
+ "scoreMania": 1000140,
+ "scoreUra": 1230
+ },
+ {
+ "uniqueId": 615,
+ "id": "santa",
+ "songFileName": "song_santa",
+ "order": 2581,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10610,
+ "shinutiNormal": 9680,
+ "shinutiHard": 4950,
+ "shinutiMania": 2400,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10610,
+ "shinutiNormalDuet": 9680,
+ "shinutiHardDuet": 4950,
+ "shinutiManiaDuet": 2400,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000740,
+ "scoreNormal": 1000240,
+ "scoreHard": 1001450,
+ "scoreMania": 1000800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 616,
+ "id": "saoali",
+ "songFileName": "song_saoali",
+ "order": 2582,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9750,
+ "shinutiNormal": 7470,
+ "shinutiHard": 3800,
+ "shinutiMania": 2130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9750,
+ "shinutiNormalDuet": 7470,
+ "shinutiHardDuet": 3800,
+ "shinutiManiaDuet": 2130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1001310,
+ "scoreHard": 1001400,
+ "scoreMania": 1003410,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 617,
+ "id": "saoggo",
+ "songFileName": "song_saoggo",
+ "order": 2583,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 13950,
+ "shinutiNormal": 9690,
+ "shinutiHard": 5710,
+ "shinutiMania": 2560,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13950,
+ "shinutiNormalDuet": 9690,
+ "shinutiHardDuet": 5710,
+ "shinutiManiaDuet": 2560,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000150,
+ "scoreNormal": 1000680,
+ "scoreHard": 1000220,
+ "scoreMania": 1002440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 618,
+ "id": "sei10r",
+ "songFileName": "song_sei10r",
+ "order": 2590,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 10900,
+ "shinutiNormal": 5440,
+ "shinutiHard": 2700,
+ "shinutiMania": 990,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10900,
+ "shinutiNormalDuet": 5440,
+ "shinutiHardDuet": 2700,
+ "shinutiManiaDuet": 990,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1001000,
+ "scoreHard": 1000700,
+ "scoreMania": 1000600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 619,
+ "id": "senpac",
+ "songFileName": "song_senpac",
+ "order": 2597,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 10,
+ "shinutiEasy": 6830,
+ "shinutiNormal": 4120,
+ "shinutiHard": 2300,
+ "shinutiMania": 1620,
+ "shinutiUra": 1670,
+ "shinutiEasyDuet": 6830,
+ "shinutiNormalDuet": 4120,
+ "shinutiHardDuet": 2300,
+ "shinutiManiaDuet": 1620,
+ "shinutiUraDuet": 1670,
+ "scoreEasy": 1000380,
+ "scoreNormal": 1001240,
+ "scoreHard": 1003700,
+ "scoreMania": 1002320,
+ "scoreUra": 1670
+ },
+ {
+ "uniqueId": 620,
+ "id": "senpcs",
+ "songFileName": "song_senpcs",
+ "order": 2598,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4820,
+ "shinutiNormal": 3140,
+ "shinutiHard": 2020,
+ "shinutiMania": 1430,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4820,
+ "shinutiNormalDuet": 3140,
+ "shinutiHardDuet": 2020,
+ "shinutiManiaDuet": 1430,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001940,
+ "scoreNormal": 1000480,
+ "scoreHard": 1000640,
+ "scoreMania": 1001190,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 621,
+ "id": "shabra",
+ "songFileName": "song_shabra",
+ "order": 2605,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7750,
+ "shinutiNormal": 5080,
+ "shinutiHard": 3170,
+ "shinutiMania": 1510,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7750,
+ "shinutiNormalDuet": 5080,
+ "shinutiHardDuet": 3170,
+ "shinutiManiaDuet": 1510,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1001300,
+ "scoreHard": 1001480,
+ "scoreMania": 1006060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 622,
+ "id": "shgclr",
+ "songFileName": "song_shgclr",
+ "order": 2607,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 7690,
+ "shinutiNormal": 3800,
+ "shinutiHard": 2140,
+ "shinutiMania": 1340,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7690,
+ "shinutiNormalDuet": 3800,
+ "shinutiHardDuet": 2140,
+ "shinutiManiaDuet": 1340,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000210,
+ "scoreNormal": 1002000,
+ "scoreHard": 1001140,
+ "scoreMania": 1006160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 623,
+ "id": "shikou",
+ "songFileName": "song_shikou",
+ "order": 2608,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4120,
+ "shinutiNormal": 3360,
+ "shinutiHard": 1860,
+ "shinutiMania": 1220,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4120,
+ "shinutiNormalDuet": 3360,
+ "shinutiHardDuet": 1860,
+ "shinutiManiaDuet": 1220,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000440,
+ "scoreNormal": 1002220,
+ "scoreHard": 1005180,
+ "scoreMania": 1004060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 624,
+ "id": "shingk",
+ "songFileName": "song_shingk",
+ "order": 2611,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5480,
+ "shinutiNormal": 4210,
+ "shinutiHard": 3310,
+ "shinutiMania": 1950,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5480,
+ "shinutiNormalDuet": 4210,
+ "shinutiHardDuet": 3310,
+ "shinutiManiaDuet": 1950,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000360,
+ "scoreNormal": 1001270,
+ "scoreHard": 1000710,
+ "scoreMania": 1000300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 625,
+ "id": "shinyk",
+ "songFileName": "song_shinyk",
+ "order": 2612,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 3830,
+ "shinutiNormal": 2520,
+ "shinutiHard": 1780,
+ "shinutiMania": 1300,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3830,
+ "shinutiNormalDuet": 2520,
+ "shinutiHardDuet": 1780,
+ "shinutiManiaDuet": 1300,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1002000,
+ "scoreNormal": 1001200,
+ "scoreHard": 1001000,
+ "scoreMania": 1000800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 626,
+ "id": "shohos",
+ "songFileName": "song_shohos",
+ "order": 2615,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10220,
+ "shinutiNormal": 6510,
+ "shinutiHard": 4340,
+ "shinutiMania": 2750,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10220,
+ "shinutiNormalDuet": 6510,
+ "shinutiHardDuet": 4340,
+ "shinutiManiaDuet": 2750,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000840,
+ "scoreNormal": 1000520,
+ "scoreHard": 1001660,
+ "scoreMania": 1000450,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 627,
+ "id": "shoto9",
+ "songFileName": "song_shoto9",
+ "order": 2616,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5800,
+ "shinutiNormal": 2800,
+ "shinutiHard": 1770,
+ "shinutiMania": 1230,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5800,
+ "shinutiNormalDuet": 2800,
+ "shinutiHardDuet": 1770,
+ "shinutiManiaDuet": 1230,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001200,
+ "scoreNormal": 1002600,
+ "scoreHard": 1005350,
+ "scoreMania": 1005520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 628,
+ "id": "shugkt",
+ "songFileName": "song_shugkt",
+ "order": 2621,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5340,
+ "shinutiNormal": 2980,
+ "shinutiHard": 2410,
+ "shinutiMania": 1370,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5340,
+ "shinutiNormalDuet": 2980,
+ "shinutiHardDuet": 2410,
+ "shinutiManiaDuet": 1370,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000440,
+ "scoreNormal": 1002940,
+ "scoreHard": 1001280,
+ "scoreMania": 1005270,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 629,
+ "id": "shushu",
+ "songFileName": "song_shushu",
+ "order": 2623,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8500,
+ "shinutiNormal": 6220,
+ "shinutiHard": 3420,
+ "shinutiMania": 2130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8500,
+ "shinutiNormalDuet": 6220,
+ "shinutiHardDuet": 3420,
+ "shinutiManiaDuet": 2130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1000180,
+ "scoreHard": 1000280,
+ "scoreMania": 1004110,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 630,
+ "id": "sidrai",
+ "songFileName": "song_sidrai",
+ "order": 2625,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11280,
+ "shinutiNormal": 7830,
+ "shinutiHard": 5170,
+ "shinutiMania": 3340,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11280,
+ "shinutiNormalDuet": 7830,
+ "shinutiHardDuet": 5170,
+ "shinutiManiaDuet": 3340,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000340,
+ "scoreNormal": 1001110,
+ "scoreHard": 1001040,
+ "scoreMania": 1001760,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 631,
+ "id": "siduso",
+ "songFileName": "song_siduso",
+ "order": 2626,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 6660,
+ "shinutiNormal": 4540,
+ "shinutiHard": 2990,
+ "shinutiMania": 2380,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6660,
+ "shinutiNormalDuet": 4540,
+ "shinutiHardDuet": 2990,
+ "shinutiManiaDuet": 2380,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1000900,
+ "scoreHard": 1001660,
+ "scoreMania": 1001720,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 632,
+ "id": "sinrab",
+ "songFileName": "song_sinrab",
+ "order": 2630,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5090,
+ "shinutiNormal": 2620,
+ "shinutiHard": 1410,
+ "shinutiMania": 1010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5090,
+ "shinutiNormalDuet": 2620,
+ "shinutiHardDuet": 1410,
+ "shinutiManiaDuet": 1010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000150,
+ "scoreNormal": 1002580,
+ "scoreHard": 1004330,
+ "scoreMania": 1008940,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 633,
+ "id": "siuryu",
+ "songFileName": "song_siuryu",
+ "order": 2632,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 4400,
+ "shinutiNormal": 3150,
+ "shinutiHard": 1790,
+ "shinutiMania": 1330,
+ "shinutiUra": 960,
+ "shinutiEasyDuet": 4400,
+ "shinutiNormalDuet": 3150,
+ "shinutiHardDuet": 1790,
+ "shinutiManiaDuet": 1330,
+ "shinutiUraDuet": 960,
+ "scoreEasy": 1001000,
+ "scoreNormal": 1000350,
+ "scoreHard": 1003320,
+ "scoreMania": 1002200,
+ "scoreUra": 960
+ },
+ {
+ "uniqueId": 634,
+ "id": "sk7kun",
+ "songFileName": "song_sk7kun",
+ "order": 2633,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 16290,
+ "shinutiNormal": 7430,
+ "shinutiHard": 4900,
+ "shinutiMania": 2930,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16290,
+ "shinutiNormalDuet": 7430,
+ "shinutiHardDuet": 4900,
+ "shinutiManiaDuet": 2930,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000090,
+ "scoreNormal": 1001220,
+ "scoreHard": 1000300,
+ "scoreMania": 1001900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 635,
+ "id": "ska",
+ "songFileName": "song_ska",
+ "order": 2634,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 10,
+ "shinutiEasy": 4080,
+ "shinutiNormal": 2680,
+ "shinutiHard": 1800,
+ "shinutiMania": 1800,
+ "shinutiUra": 1070,
+ "shinutiEasyDuet": 4080,
+ "shinutiNormalDuet": 2680,
+ "shinutiHardDuet": 1800,
+ "shinutiManiaDuet": 1800,
+ "shinutiUraDuet": 1070,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1002320,
+ "scoreHard": 1004400,
+ "scoreMania": 1004400,
+ "scoreUra": 1070
+ },
+ {
+ "uniqueId": 636,
+ "id": "skodrg",
+ "songFileName": "song_skodrg",
+ "order": 2637,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8580,
+ "shinutiNormal": 6170,
+ "shinutiHard": 3660,
+ "shinutiMania": 1860,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8580,
+ "shinutiNormalDuet": 6170,
+ "shinutiHardDuet": 3660,
+ "shinutiManiaDuet": 1860,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000980,
+ "scoreNormal": 1000870,
+ "scoreHard": 1001560,
+ "scoreMania": 1000000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 637,
+ "id": "skorpg",
+ "songFileName": "song_skorpg",
+ "order": 2640,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 11180,
+ "shinutiNormal": 7830,
+ "shinutiHard": 4590,
+ "shinutiMania": 2880,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11180,
+ "shinutiNormalDuet": 7830,
+ "shinutiHardDuet": 4590,
+ "shinutiManiaDuet": 2880,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000820,
+ "scoreNormal": 1000510,
+ "scoreHard": 1000140,
+ "scoreMania": 1000100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 638,
+ "id": "skrexh",
+ "songFileName": "song_skrexh",
+ "order": 2641,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5500,
+ "shinutiNormal": 3840,
+ "shinutiHard": 1910,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5500,
+ "shinutiNormalDuet": 3840,
+ "shinutiHardDuet": 1910,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001100,
+ "scoreNormal": 1001460,
+ "scoreHard": 1002220,
+ "scoreMania": 1002950,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 639,
+ "id": "skrnb",
+ "songFileName": "song_skrnb",
+ "order": 2642,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8770,
+ "shinutiNormal": 6980,
+ "shinutiHard": 4930,
+ "shinutiMania": 3300,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8770,
+ "shinutiNormalDuet": 6980,
+ "shinutiHardDuet": 4930,
+ "shinutiManiaDuet": 3300,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000680,
+ "scoreNormal": 1000240,
+ "scoreHard": 1001990,
+ "scoreMania": 1001100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 640,
+ "id": "slance",
+ "songFileName": "song_slance",
+ "order": 2643,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4690,
+ "shinutiNormal": 2770,
+ "shinutiHard": 1980,
+ "shinutiMania": 1000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4690,
+ "shinutiNormalDuet": 2770,
+ "shinutiHardDuet": 1980,
+ "shinutiManiaDuet": 1000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000290,
+ "scoreNormal": 1001120,
+ "scoreHard": 1003180,
+ "scoreMania": 1008700,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 641,
+ "id": "slash",
+ "songFileName": "song_slash",
+ "order": 2644,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 3320,
+ "shinutiNormal": 2500,
+ "shinutiHard": 1510,
+ "shinutiMania": 1290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3320,
+ "shinutiNormalDuet": 2500,
+ "shinutiHardDuet": 1510,
+ "shinutiManiaDuet": 1290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1003600,
+ "scoreHard": 1006360,
+ "scoreMania": 1003430,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 642,
+ "id": "smokyt",
+ "songFileName": "song_smokyt",
+ "order": 2646,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7400,
+ "shinutiNormal": 5470,
+ "shinutiHard": 3250,
+ "shinutiMania": 2010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7400,
+ "shinutiNormalDuet": 5470,
+ "shinutiHardDuet": 3250,
+ "shinutiManiaDuet": 2010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1001570,
+ "scoreHard": 1000750,
+ "scoreMania": 1003320,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 643,
+ "id": "snyq",
+ "songFileName": "song_snyq",
+ "order": 2651,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6070,
+ "shinutiNormal": 3520,
+ "shinutiHard": 1710,
+ "shinutiMania": 1100,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6070,
+ "shinutiNormalDuet": 3520,
+ "shinutiHardDuet": 1710,
+ "shinutiManiaDuet": 1100,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000910,
+ "scoreNormal": 1001200,
+ "scoreHard": 1002670,
+ "scoreMania": 1000100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 644,
+ "id": "so2om2",
+ "songFileName": "song_so2om2",
+ "order": 2652,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6250,
+ "shinutiNormal": 3480,
+ "shinutiHard": 2220,
+ "shinutiMania": 1270,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6250,
+ "shinutiNormalDuet": 3480,
+ "shinutiHardDuet": 2220,
+ "shinutiManiaDuet": 1270,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000150,
+ "scoreNormal": 1001360,
+ "scoreHard": 1003020,
+ "scoreMania": 1005840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 645,
+ "id": "so2ome",
+ "songFileName": "song_so2ome",
+ "order": 2653,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6260,
+ "shinutiNormal": 3130,
+ "shinutiHard": 2260,
+ "shinutiMania": 1260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6260,
+ "shinutiNormalDuet": 3130,
+ "shinutiHardDuet": 2260,
+ "shinutiManiaDuet": 1260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1000670,
+ "scoreHard": 1000420,
+ "scoreMania": 1004220,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 646,
+ "id": "sora1x",
+ "songFileName": "song_sora1x",
+ "order": 2663,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7980,
+ "shinutiNormal": 6000,
+ "shinutiHard": 3360,
+ "shinutiMania": 2220,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7980,
+ "shinutiNormalDuet": 6000,
+ "shinutiHardDuet": 3360,
+ "shinutiManiaDuet": 2220,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001100,
+ "scoreNormal": 1000600,
+ "scoreHard": 1002420,
+ "scoreMania": 1001600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 647,
+ "id": "sora2x",
+ "songFileName": "song_sora2x",
+ "order": 2664,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11780,
+ "shinutiNormal": 6810,
+ "shinutiHard": 2610,
+ "shinutiMania": 1770,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11780,
+ "shinutiNormalDuet": 6810,
+ "shinutiHardDuet": 2610,
+ "shinutiManiaDuet": 1770,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000820,
+ "scoreNormal": 1000050,
+ "scoreHard": 1002020,
+ "scoreMania": 1005090,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 648,
+ "id": "sora6x",
+ "songFileName": "song_sora6x",
+ "order": 2667,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5060,
+ "shinutiNormal": 3820,
+ "shinutiHard": 2410,
+ "shinutiMania": 1490,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5060,
+ "shinutiNormalDuet": 3820,
+ "shinutiHardDuet": 2410,
+ "shinutiManiaDuet": 1490,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000760,
+ "scoreNormal": 1000080,
+ "scoreHard": 1002000,
+ "scoreMania": 1005240,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 649,
+ "id": "sora7x",
+ "songFileName": "song_sora7x",
+ "order": 2668,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5640,
+ "shinutiNormal": 4200,
+ "shinutiHard": 2300,
+ "shinutiMania": 1190,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5640,
+ "shinutiNormalDuet": 4200,
+ "shinutiHardDuet": 2300,
+ "shinutiManiaDuet": 1190,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1000100,
+ "scoreHard": 1000400,
+ "scoreMania": 1005410,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 650,
+ "id": "soroba",
+ "songFileName": "song_soroba",
+ "order": 2669,
+ "genreNo": 7,
+ "branchEasy": true,
+ "branchNormal": true,
+ "branchHard": true,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4140,
+ "shinutiNormal": 3210,
+ "shinutiHard": 1690,
+ "shinutiMania": 1290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4140,
+ "shinutiNormalDuet": 3210,
+ "shinutiHardDuet": 1690,
+ "shinutiManiaDuet": 1290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1002240,
+ "scoreNormal": 1001890,
+ "scoreHard": 1002250,
+ "scoreMania": 1004950,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 651,
+ "id": "souryu",
+ "songFileName": "song_souryu",
+ "order": 2670,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 10,
+ "shinutiEasy": 4040,
+ "shinutiNormal": 2870,
+ "shinutiHard": 2230,
+ "shinutiMania": 1040,
+ "shinutiUra": 1660,
+ "shinutiEasyDuet": 4040,
+ "shinutiNormalDuet": 2870,
+ "shinutiHardDuet": 2230,
+ "shinutiManiaDuet": 1040,
+ "shinutiUraDuet": 1660,
+ "scoreEasy": 1002080,
+ "scoreNormal": 1001090,
+ "scoreHard": 1003710,
+ "scoreMania": 1008800,
+ "scoreUra": 1000980
+ },
+ {
+ "uniqueId": 653,
+ "id": "spdoto",
+ "songFileName": "song_spdoto",
+ "order": 2674,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 10,
+ "shinutiEasy": 4580,
+ "shinutiNormal": 3100,
+ "shinutiHard": 1970,
+ "shinutiMania": 1270,
+ "shinutiUra": 920,
+ "shinutiEasyDuet": 4580,
+ "shinutiNormalDuet": 3100,
+ "shinutiHardDuet": 1970,
+ "shinutiManiaDuet": 1270,
+ "shinutiUraDuet": 920,
+ "scoreEasy": 1000880,
+ "scoreNormal": 1002800,
+ "scoreHard": 1002730,
+ "scoreMania": 1002340,
+ "scoreUra": 920
+ },
+ {
+ "uniqueId": 654,
+ "id": "spl2md",
+ "songFileName": "song_spl2md",
+ "order": 2678,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 9440,
+ "shinutiNormal": 6890,
+ "shinutiHard": 4080,
+ "shinutiMania": 2270,
+ "shinutiUra": 1310,
+ "shinutiEasyDuet": 9440,
+ "shinutiNormalDuet": 6890,
+ "shinutiHardDuet": 4080,
+ "shinutiManiaDuet": 2270,
+ "shinutiUraDuet": 1310,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1000160,
+ "scoreHard": 1001800,
+ "scoreMania": 1003670,
+ "scoreUra": 1310
+ },
+ {
+ "uniqueId": 655,
+ "id": "splsio",
+ "songFileName": "song_splsio",
+ "order": 2681,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10280,
+ "shinutiNormal": 7080,
+ "shinutiHard": 3710,
+ "shinutiMania": 2310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10280,
+ "shinutiNormalDuet": 7080,
+ "shinutiHardDuet": 3710,
+ "shinutiManiaDuet": 2310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000760,
+ "scoreNormal": 1001180,
+ "scoreHard": 1001190,
+ "scoreMania": 1000620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 656,
+ "id": "sqr",
+ "songFileName": "song_sqr",
+ "order": 2683,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 5620,
+ "shinutiNormal": 4670,
+ "shinutiHard": 3590,
+ "shinutiMania": 2290,
+ "shinutiUra": 1360,
+ "shinutiEasyDuet": 5620,
+ "shinutiNormalDuet": 4670,
+ "shinutiHardDuet": 3590,
+ "shinutiManiaDuet": 2290,
+ "shinutiUraDuet": 1360,
+ "scoreEasy": 1000440,
+ "scoreNormal": 1001510,
+ "scoreHard": 1001320,
+ "scoreMania": 1001440,
+ "scoreUra": 1360
+ },
+ {
+ "uniqueId": 657,
+ "id": "sqr2",
+ "songFileName": "song_sqr2",
+ "order": 2684,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7410,
+ "shinutiNormal": 5320,
+ "shinutiHard": 3500,
+ "shinutiMania": 1660,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7410,
+ "shinutiNormalDuet": 5320,
+ "shinutiHardDuet": 3500,
+ "shinutiManiaDuet": 1660,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000940,
+ "scoreNormal": 1000620,
+ "scoreHard": 1002000,
+ "scoreMania": 1005840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 658,
+ "id": "sss",
+ "songFileName": "song_sss",
+ "order": 2688,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7820,
+ "shinutiNormal": 3870,
+ "shinutiHard": 1970,
+ "shinutiMania": 1520,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7820,
+ "shinutiNormalDuet": 3870,
+ "shinutiHardDuet": 1970,
+ "shinutiManiaDuet": 1520,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000620,
+ "scoreNormal": 1000920,
+ "scoreHard": 1003820,
+ "scoreMania": 1000780,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 659,
+ "id": "stabof",
+ "songFileName": "song_stabof",
+ "order": 2689,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7220,
+ "shinutiNormal": 4120,
+ "shinutiHard": 2340,
+ "shinutiMania": 1490,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7220,
+ "shinutiNormalDuet": 4120,
+ "shinutiHardDuet": 2340,
+ "shinutiManiaDuet": 1490,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000960,
+ "scoreNormal": 1000740,
+ "scoreHard": 1001520,
+ "scoreMania": 1002770,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 660,
+ "id": "starrr",
+ "songFileName": "song_starrr",
+ "order": 2691,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4200,
+ "shinutiNormal": 2460,
+ "shinutiHard": 1790,
+ "shinutiMania": 1180,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4200,
+ "shinutiNormalDuet": 2460,
+ "shinutiHardDuet": 1790,
+ "shinutiManiaDuet": 1180,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1002000,
+ "scoreNormal": 1000460,
+ "scoreHard": 1000530,
+ "scoreMania": 1002940,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 661,
+ "id": "staytn",
+ "songFileName": "song_staytn",
+ "order": 2693,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11540,
+ "shinutiNormal": 8130,
+ "shinutiHard": 4050,
+ "shinutiMania": 2390,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11540,
+ "shinutiNormalDuet": 8130,
+ "shinutiHardDuet": 4050,
+ "shinutiManiaDuet": 2390,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000140,
+ "scoreNormal": 1000460,
+ "scoreHard": 1002200,
+ "scoreMania": 1001530,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 662,
+ "id": "stmic8",
+ "songFileName": "song_stmic8",
+ "order": 2698,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5760,
+ "shinutiNormal": 3850,
+ "shinutiHard": 2150,
+ "shinutiMania": 1560,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5760,
+ "shinutiNormalDuet": 3850,
+ "shinutiHardDuet": 2150,
+ "shinutiManiaDuet": 1560,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001080,
+ "scoreNormal": 1002450,
+ "scoreHard": 1003550,
+ "scoreMania": 1004480,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 663,
+ "id": "stru8b",
+ "songFileName": "song_stru8b",
+ "order": 2700,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 4870,
+ "shinutiNormal": 3060,
+ "shinutiHard": 2080,
+ "shinutiMania": 1130,
+ "shinutiUra": 990,
+ "shinutiEasyDuet": 4870,
+ "shinutiNormalDuet": 3060,
+ "shinutiHardDuet": 2080,
+ "shinutiManiaDuet": 1130,
+ "shinutiUraDuet": 990,
+ "scoreEasy": 1000910,
+ "scoreNormal": 1002880,
+ "scoreHard": 1001900,
+ "scoreMania": 1000680,
+ "scoreUra": 990
+ },
+ {
+ "uniqueId": 664,
+ "id": "struin",
+ "songFileName": "song_struin",
+ "order": 2702,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4870,
+ "shinutiNormal": 3060,
+ "shinutiHard": 2080,
+ "shinutiMania": 1130,
+ "shinutiUra": 990,
+ "shinutiEasyDuet": 4870,
+ "shinutiNormalDuet": 3060,
+ "shinutiHardDuet": 2080,
+ "shinutiManiaDuet": 1130,
+ "shinutiUraDuet": 990,
+ "scoreEasy": 1000910,
+ "scoreNormal": 1002880,
+ "scoreHard": 1001900,
+ "scoreMania": 1000680,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 665,
+ "id": "stshow",
+ "songFileName": "song_stshow",
+ "order": 2703,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5740,
+ "shinutiNormal": 4280,
+ "shinutiHard": 2510,
+ "shinutiMania": 1090,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5740,
+ "shinutiNormalDuet": 4280,
+ "shinutiHardDuet": 2510,
+ "shinutiManiaDuet": 1090,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001720,
+ "scoreNormal": 1000080,
+ "scoreHard": 1000130,
+ "scoreMania": 1004720,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 666,
+ "id": "suha2k",
+ "songFileName": "song_suha2k",
+ "order": 2704,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 3100,
+ "shinutiNormal": 2740,
+ "shinutiHard": 1980,
+ "shinutiMania": 1500,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3100,
+ "shinutiNormalDuet": 2740,
+ "shinutiHardDuet": 1980,
+ "shinutiManiaDuet": 1500,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1003200,
+ "scoreNormal": 1000520,
+ "scoreHard": 1003880,
+ "scoreMania": 1004900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 667,
+ "id": "sukatb",
+ "songFileName": "song_sukatb",
+ "order": 2705,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 13860,
+ "shinutiNormal": 9970,
+ "shinutiHard": 4890,
+ "shinutiMania": 2010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13860,
+ "shinutiNormalDuet": 9970,
+ "shinutiHardDuet": 4890,
+ "shinutiManiaDuet": 2010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000620,
+ "scoreNormal": 1000500,
+ "scoreHard": 1000560,
+ "scoreMania": 1000350,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 668,
+ "id": "susano",
+ "songFileName": "song_susano",
+ "order": 2712,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5690,
+ "shinutiNormal": 3970,
+ "shinutiHard": 2480,
+ "shinutiMania": 1460,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5690,
+ "shinutiNormalDuet": 3970,
+ "shinutiHardDuet": 2480,
+ "shinutiManiaDuet": 1460,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001440,
+ "scoreNormal": 1000440,
+ "scoreHard": 1002420,
+ "scoreMania": 1002260,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 669,
+ "id": "sw1op",
+ "songFileName": "song_sw1op",
+ "order": 2714,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 8870,
+ "shinutiNormal": 6150,
+ "shinutiHard": 3130,
+ "shinutiMania": 2560,
+ "shinutiUra": 1500,
+ "shinutiEasyDuet": 8870,
+ "shinutiNormalDuet": 6150,
+ "shinutiHardDuet": 3130,
+ "shinutiManiaDuet": 2560,
+ "shinutiUraDuet": 1500,
+ "scoreEasy": 1001040,
+ "scoreNormal": 1000350,
+ "scoreHard": 1002110,
+ "scoreMania": 1001760,
+ "scoreUra": 1500
+ },
+ {
+ "uniqueId": 670,
+ "id": "sweep2",
+ "songFileName": "song_sweep2",
+ "order": 2551,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 8,
+ "starUra": 8,
+ "shinutiEasy": 4500,
+ "shinutiNormal": 3000,
+ "shinutiHard": 2080,
+ "shinutiMania": 1590,
+ "shinutiUra": 1310,
+ "shinutiEasyDuet": 4500,
+ "shinutiNormalDuet": 3000,
+ "shinutiHardDuet": 2080,
+ "shinutiManiaDuet": 1590,
+ "shinutiUraDuet": 1310,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1002200,
+ "scoreHard": 1004680,
+ "scoreMania": 1000050,
+ "scoreUra": 1310
+ },
+ {
+ "uniqueId": 671,
+ "id": "syairl",
+ "songFileName": "song_syairl",
+ "order": 2719,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7900,
+ "shinutiNormal": 5070,
+ "shinutiHard": 2460,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7900,
+ "shinutiNormalDuet": 5070,
+ "shinutiHardDuet": 2460,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000800,
+ "scoreNormal": 1000340,
+ "scoreHard": 1002380,
+ "scoreMania": 1007090,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 672,
+ "id": "sycano",
+ "songFileName": "song_sycano",
+ "order": 2720,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7630,
+ "shinutiNormal": 5150,
+ "shinutiHard": 2950,
+ "shinutiMania": 1810,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7630,
+ "shinutiNormalDuet": 5150,
+ "shinutiHardDuet": 2950,
+ "shinutiManiaDuet": 1810,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1001200,
+ "scoreHard": 1001400,
+ "scoreMania": 1002630,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 673,
+ "id": "syclsn",
+ "songFileName": "song_syclsn",
+ "order": 2721,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7410,
+ "shinutiNormal": 4430,
+ "shinutiHard": 2450,
+ "shinutiMania": 1380,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7410,
+ "shinutiNormalDuet": 4430,
+ "shinutiHardDuet": 2450,
+ "shinutiManiaDuet": 1380,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000940,
+ "scoreNormal": 1001820,
+ "scoreHard": 1001050,
+ "scoreMania": 1006700,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 674,
+ "id": "sysurf",
+ "songFileName": "song_sysurf",
+ "order": 2723,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5240,
+ "shinutiNormal": 3550,
+ "shinutiHard": 2010,
+ "shinutiMania": 1190,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5240,
+ "shinutiNormalDuet": 3550,
+ "shinutiHardDuet": 2010,
+ "shinutiManiaDuet": 1190,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1000000,
+ "scoreHard": 1003580,
+ "scoreMania": 1002700,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 675,
+ "id": "sysync",
+ "songFileName": "song_sysync",
+ "order": 2724,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9640,
+ "shinutiNormal": 5700,
+ "shinutiHard": 3520,
+ "shinutiMania": 2240,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9640,
+ "shinutiNormalDuet": 5700,
+ "shinutiHardDuet": 3520,
+ "shinutiManiaDuet": 2240,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000420,
+ "scoreNormal": 1000000,
+ "scoreHard": 1001920,
+ "scoreMania": 1002240,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 676,
+ "id": "syyoak",
+ "songFileName": "song_syyoak",
+ "order": 2725,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7260,
+ "shinutiNormal": 5180,
+ "shinutiHard": 1860,
+ "shinutiMania": 1230,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7260,
+ "shinutiNormalDuet": 5180,
+ "shinutiHardDuet": 1860,
+ "shinutiManiaDuet": 1230,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1000520,
+ "scoreHard": 1001720,
+ "scoreMania": 1003720,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 677,
+ "id": "ta5ta5",
+ "songFileName": "song_ta5ta5",
+ "order": 2727,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6090,
+ "shinutiNormal": 3840,
+ "shinutiHard": 2090,
+ "shinutiMania": 1200,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6090,
+ "shinutiNormalDuet": 3840,
+ "shinutiHardDuet": 2090,
+ "shinutiManiaDuet": 1200,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000380,
+ "scoreNormal": 1001980,
+ "scoreHard": 1001760,
+ "scoreMania": 1007500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 678,
+ "id": "taberu",
+ "songFileName": "song_taberu",
+ "order": 2728,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4370,
+ "shinutiNormal": 2770,
+ "shinutiHard": 1570,
+ "shinutiMania": 1220,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4370,
+ "shinutiNormalDuet": 2770,
+ "shinutiHardDuet": 1570,
+ "shinutiManiaDuet": 1220,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001090,
+ "scoreNormal": 1003260,
+ "scoreHard": 1004800,
+ "scoreMania": 1001620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 679,
+ "id": "tabetm",
+ "songFileName": "song_tabetm",
+ "order": 2729,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7150,
+ "shinutiNormal": 4710,
+ "shinutiHard": 2790,
+ "shinutiMania": 1990,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7150,
+ "shinutiNormalDuet": 4710,
+ "shinutiHardDuet": 2790,
+ "shinutiManiaDuet": 1990,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1001700,
+ "scoreHard": 1002350,
+ "scoreMania": 1001140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 680,
+ "id": "tadkim",
+ "songFileName": "song_tadkim",
+ "order": 2730,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 23680,
+ "shinutiNormal": 14630,
+ "shinutiHard": 5700,
+ "shinutiMania": 3490,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 23680,
+ "shinutiNormalDuet": 14630,
+ "shinutiHardDuet": 5700,
+ "shinutiManiaDuet": 3490,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000360,
+ "scoreNormal": 1000340,
+ "scoreHard": 1001700,
+ "scoreMania": 1000350,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 681,
+ "id": "takamg",
+ "songFileName": "song_takamg",
+ "order": 2734,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5980,
+ "shinutiNormal": 2890,
+ "shinutiHard": 1700,
+ "shinutiMania": 1200,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5980,
+ "shinutiNormalDuet": 2890,
+ "shinutiHardDuet": 1700,
+ "shinutiManiaDuet": 1200,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000420,
+ "scoreNormal": 1003180,
+ "scoreHard": 1004700,
+ "scoreMania": 1005900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 682,
+ "id": "tamlb1",
+ "songFileName": "song_tamlb1",
+ "order": 2738,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4880,
+ "shinutiNormal": 3220,
+ "shinutiHard": 2110,
+ "shinutiMania": 990,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4880,
+ "shinutiNormalDuet": 3220,
+ "shinutiHardDuet": 2110,
+ "shinutiManiaDuet": 990,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000920,
+ "scoreNormal": 1001880,
+ "scoreHard": 1000900,
+ "scoreMania": 1004300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 683,
+ "id": "tamlb2",
+ "songFileName": "song_tamlb2",
+ "order": 2739,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 10,
+ "shinutiEasy": 7490,
+ "shinutiNormal": 4750,
+ "shinutiHard": 2310,
+ "shinutiMania": 1490,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7490,
+ "shinutiNormalDuet": 4750,
+ "shinutiHardDuet": 2310,
+ "shinutiManiaDuet": 1490,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001080,
+ "scoreNormal": 1000050,
+ "scoreHard": 1002780,
+ "scoreMania": 1006110,
+ "scoreUra": 1000
+ },
+ {
+ "uniqueId": 684,
+ "id": "tank",
+ "songFileName": "song_tank",
+ "order": 2742,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 9,
+ "shinutiEasy": 6730,
+ "shinutiNormal": 5180,
+ "shinutiHard": 2900,
+ "shinutiMania": 2050,
+ "shinutiUra": 1130,
+ "shinutiEasyDuet": 6730,
+ "shinutiNormalDuet": 5180,
+ "shinutiHardDuet": 2900,
+ "shinutiManiaDuet": 2050,
+ "shinutiUraDuet": 1130,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1001740,
+ "scoreHard": 1000200,
+ "scoreMania": 1004400,
+ "scoreUra": 1130
+ },
+ {
+ "uniqueId": 685,
+ "id": "tbnito",
+ "songFileName": "song_tbnito",
+ "order": 2745,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 3410,
+ "shinutiNormal": 2720,
+ "shinutiHard": 1500,
+ "shinutiMania": 1030,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3410,
+ "shinutiNormalDuet": 2720,
+ "shinutiHardDuet": 1500,
+ "shinutiManiaDuet": 1030,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000210,
+ "scoreNormal": 1000080,
+ "scoreHard": 1004100,
+ "scoreMania": 1008780,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 686,
+ "id": "tdcafe",
+ "songFileName": "song_tdcafe",
+ "order": 2747,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6450,
+ "shinutiNormal": 4390,
+ "shinutiHard": 3070,
+ "shinutiMania": 1780,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6450,
+ "shinutiNormalDuet": 4390,
+ "shinutiHardDuet": 3070,
+ "shinutiManiaDuet": 1780,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001300,
+ "scoreNormal": 1002040,
+ "scoreHard": 1001740,
+ "scoreMania": 1001200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 687,
+ "id": "tdm",
+ "songFileName": "song_tdm",
+ "order": 2748,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 10,
+ "shinutiEasy": 6620,
+ "shinutiNormal": 4500,
+ "shinutiHard": 2470,
+ "shinutiMania": 1170,
+ "shinutiUra": 950,
+ "shinutiEasyDuet": 6620,
+ "shinutiNormalDuet": 4500,
+ "shinutiHardDuet": 2470,
+ "shinutiManiaDuet": 1170,
+ "shinutiUraDuet": 950,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1001100,
+ "scoreHard": 1003900,
+ "scoreMania": 1006700,
+ "scoreUra": 950
+ },
+ {
+ "uniqueId": 688,
+ "id": "tecdrv",
+ "songFileName": "song_tecdrv",
+ "order": 2749,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 2900,
+ "shinutiNormal": 2420,
+ "shinutiHard": 1630,
+ "shinutiMania": 1120,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 2900,
+ "shinutiNormalDuet": 2420,
+ "shinutiHardDuet": 1630,
+ "shinutiManiaDuet": 1120,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001800,
+ "scoreNormal": 1001500,
+ "scoreHard": 1000480,
+ "scoreMania": 1001240,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 689,
+ "id": "tek3ds",
+ "songFileName": "song_tek3ds",
+ "order": 2751,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5610,
+ "shinutiNormal": 4340,
+ "shinutiHard": 1740,
+ "shinutiMania": 1050,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5610,
+ "shinutiNormalDuet": 4340,
+ "shinutiHardDuet": 1740,
+ "shinutiManiaDuet": 1050,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001280,
+ "scoreNormal": 1002000,
+ "scoreHard": 1003000,
+ "scoreMania": 1006950,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 690,
+ "id": "tek7he",
+ "songFileName": "song_tek7he",
+ "order": 2584,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6310,
+ "shinutiNormal": 4070,
+ "shinutiHard": 2060,
+ "shinutiMania": 1300,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6310,
+ "shinutiNormalDuet": 4070,
+ "shinutiHardDuet": 2060,
+ "shinutiManiaDuet": 1300,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001370,
+ "scoreNormal": 1001510,
+ "scoreHard": 1002520,
+ "scoreMania": 1000700,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 691,
+ "id": "teken6",
+ "songFileName": "song_teken6",
+ "order": 2585,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6300,
+ "shinutiNormal": 4030,
+ "shinutiHard": 2080,
+ "shinutiMania": 1150,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6300,
+ "shinutiNormalDuet": 4030,
+ "shinutiHardDuet": 2080,
+ "shinutiManiaDuet": 1150,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000800,
+ "scoreNormal": 1000450,
+ "scoreHard": 1003860,
+ "scoreMania": 1007400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 692,
+ "id": "tekwiu",
+ "songFileName": "song_tekwiu",
+ "order": 2756,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8950,
+ "shinutiNormal": 5330,
+ "shinutiHard": 3570,
+ "shinutiMania": 2580,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8950,
+ "shinutiNormalDuet": 5330,
+ "shinutiHardDuet": 3570,
+ "shinutiManiaDuet": 2580,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000950,
+ "scoreNormal": 1000680,
+ "scoreHard": 1000760,
+ "scoreMania": 1002460,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 693,
+ "id": "ten9nr",
+ "songFileName": "song_ten9nr",
+ "order": 2758,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6180,
+ "shinutiNormal": 3720,
+ "shinutiHard": 2280,
+ "shinutiMania": 1220,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6180,
+ "shinutiNormalDuet": 3720,
+ "shinutiHardDuet": 2280,
+ "shinutiManiaDuet": 1220,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001480,
+ "scoreNormal": 1000540,
+ "scoreHard": 1004240,
+ "scoreMania": 1002120,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 694,
+ "id": "tengu",
+ "songFileName": "song_tengu",
+ "order": 2589,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5970,
+ "shinutiNormal": 3670,
+ "shinutiHard": 2180,
+ "shinutiMania": 1360,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5970,
+ "shinutiNormalDuet": 3670,
+ "shinutiHardDuet": 2180,
+ "shinutiManiaDuet": 1360,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000420,
+ "scoreNormal": 1002570,
+ "scoreHard": 1001280,
+ "scoreMania": 1001440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 695,
+ "id": "tenyou",
+ "songFileName": "song_tenyou",
+ "order": 2760,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6820,
+ "shinutiNormal": 4410,
+ "shinutiHard": 2270,
+ "shinutiMania": 1460,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6820,
+ "shinutiNormalDuet": 4410,
+ "shinutiHardDuet": 2270,
+ "shinutiManiaDuet": 1460,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000920,
+ "scoreNormal": 1001060,
+ "scoreHard": 1002830,
+ "scoreMania": 1004520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 696,
+ "id": "tetra",
+ "songFileName": "song_tetra",
+ "order": 2761,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 8040,
+ "shinutiNormal": 4540,
+ "shinutiHard": 2510,
+ "shinutiMania": 1390,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8040,
+ "shinutiNormalDuet": 4540,
+ "shinutiHardDuet": 2510,
+ "shinutiManiaDuet": 1390,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000020,
+ "scoreNormal": 1001920,
+ "scoreHard": 1000140,
+ "scoreMania": 1005330,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 697,
+ "id": "th2ksh",
+ "songFileName": "song_th2ksh",
+ "order": 2764,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 7,
+ "shinutiEasy": 10290,
+ "shinutiNormal": 5590,
+ "shinutiHard": 3120,
+ "shinutiMania": 1710,
+ "shinutiUra": 1790,
+ "shinutiEasyDuet": 10290,
+ "shinutiNormalDuet": 5590,
+ "shinutiHardDuet": 3120,
+ "shinutiManiaDuet": 1710,
+ "shinutiUraDuet": 1790,
+ "scoreEasy": 1000640,
+ "scoreNormal": 1000240,
+ "scoreHard": 1002800,
+ "scoreMania": 1004210,
+ "scoreUra": 1790
+ },
+ {
+ "uniqueId": 698,
+ "id": "th1682",
+ "songFileName": "song_th1682",
+ "order": 2763,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 12430,
+ "shinutiNormal": 8190,
+ "shinutiHard": 5570,
+ "shinutiMania": 2720,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12430,
+ "shinutiNormalDuet": 8190,
+ "shinutiHardDuet": 5570,
+ "shinutiManiaDuet": 2720,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000990,
+ "scoreHard": 1000090,
+ "scoreMania": 1000560,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 699,
+ "id": "th7171",
+ "songFileName": "song_th7171",
+ "order": 2765,
+ "genreNo": 3,
+ "branchEasy": true,
+ "branchNormal": true,
+ "branchHard": true,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5010,
+ "shinutiNormal": 3470,
+ "shinutiHard": 1980,
+ "shinutiMania": 1530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5010,
+ "shinutiNormalDuet": 3470,
+ "shinutiHardDuet": 1980,
+ "shinutiManiaDuet": 1530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001690,
+ "scoreNormal": 1001690,
+ "scoreHard": 1003060,
+ "scoreMania": 1003330,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 700,
+ "id": "thakeb",
+ "songFileName": "song_thakeb",
+ "order": 2596,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8240,
+ "shinutiNormal": 4930,
+ "shinutiHard": 2680,
+ "shinutiMania": 1760,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8240,
+ "shinutiNormalDuet": 4930,
+ "shinutiHardDuet": 2680,
+ "shinutiManiaDuet": 1760,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1000600,
+ "scoreHard": 1001440,
+ "scoreMania": 1001500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 701,
+ "id": "thchi2",
+ "songFileName": "song_thchi2",
+ "order": 2768,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 7760,
+ "shinutiNormal": 4330,
+ "shinutiHard": 2820,
+ "shinutiMania": 1330,
+ "shinutiUra": 1100,
+ "shinutiEasyDuet": 7760,
+ "shinutiNormalDuet": 4330,
+ "shinutiHardDuet": 2820,
+ "shinutiManiaDuet": 1330,
+ "shinutiUraDuet": 1100,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1000270,
+ "scoreHard": 1000700,
+ "scoreMania": 1003130,
+ "scoreUra": 1100
+ },
+ {
+ "uniqueId": 702,
+ "id": "thchi3",
+ "songFileName": "song_thchi3",
+ "order": 2769,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5320,
+ "shinutiNormal": 2830,
+ "shinutiHard": 2040,
+ "shinutiMania": 1160,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5320,
+ "shinutiNormalDuet": 2830,
+ "shinutiHardDuet": 2040,
+ "shinutiManiaDuet": 1160,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001640,
+ "scoreNormal": 1002260,
+ "scoreHard": 1003720,
+ "scoreMania": 1006840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 703,
+ "id": "thclmt",
+ "songFileName": "song_thclmt",
+ "order": 2771,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 10,
+ "shinutiEasy": 4910,
+ "shinutiNormal": 3350,
+ "shinutiHard": 1930,
+ "shinutiMania": 940,
+ "shinutiUra": 820,
+ "shinutiEasyDuet": 4910,
+ "shinutiNormalDuet": 3350,
+ "shinutiHardDuet": 1930,
+ "shinutiManiaDuet": 940,
+ "shinutiUraDuet": 820,
+ "scoreEasy": 1000710,
+ "scoreNormal": 1002500,
+ "scoreHard": 1003570,
+ "scoreMania": 1007460,
+ "scoreUra": 820
+ },
+ {
+ "uniqueId": 704,
+ "id": "theme2",
+ "songFileName": "song_theme2",
+ "order": 2772,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 6300,
+ "shinutiNormal": 4460,
+ "shinutiHard": 3120,
+ "shinutiMania": 1890,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6300,
+ "shinutiNormalDuet": 4460,
+ "shinutiHardDuet": 3120,
+ "shinutiManiaDuet": 1890,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1000960,
+ "scoreHard": 1002020,
+ "scoreMania": 1000690,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 705,
+ "id": "therin",
+ "songFileName": "song_therin",
+ "order": 2601,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5520,
+ "shinutiNormal": 4250,
+ "shinutiHard": 2010,
+ "shinutiMania": 1830,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5520,
+ "shinutiNormalDuet": 4250,
+ "shinutiHardDuet": 2010,
+ "shinutiManiaDuet": 1830,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001300,
+ "scoreNormal": 1001700,
+ "scoreHard": 1002140,
+ "scoreMania": 1004260,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 706,
+ "id": "thflnd",
+ "songFileName": "song_thflnd",
+ "order": 2774,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4850,
+ "shinutiNormal": 3560,
+ "shinutiHard": 2010,
+ "shinutiMania": 1050,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4850,
+ "shinutiNormalDuet": 3560,
+ "shinutiHardDuet": 2010,
+ "shinutiManiaDuet": 1050,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001600,
+ "scoreNormal": 1000000,
+ "scoreHard": 1003970,
+ "scoreMania": 1004150,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 707,
+ "id": "thgrip",
+ "songFileName": "song_thgrip",
+ "order": 2603,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 5100,
+ "shinutiNormal": 3700,
+ "shinutiHard": 2440,
+ "shinutiMania": 1990,
+ "shinutiUra": 1290,
+ "shinutiEasyDuet": 5100,
+ "shinutiNormalDuet": 3700,
+ "shinutiHardDuet": 2440,
+ "shinutiManiaDuet": 1990,
+ "shinutiUraDuet": 1290,
+ "scoreEasy": 1001900,
+ "scoreNormal": 1001100,
+ "scoreHard": 1001600,
+ "scoreMania": 1003450,
+ "scoreUra": 1290
+ },
+ {
+ "uniqueId": 708,
+ "id": "thgsat",
+ "songFileName": "song_thgsat",
+ "order": 2776,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 8940,
+ "shinutiNormal": 4700,
+ "shinutiHard": 2620,
+ "shinutiMania": 1620,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8940,
+ "shinutiNormalDuet": 4700,
+ "shinutiHardDuet": 2620,
+ "shinutiManiaDuet": 1620,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001040,
+ "scoreNormal": 1000700,
+ "scoreHard": 1002760,
+ "scoreMania": 1004820,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 709,
+ "id": "thkanb",
+ "songFileName": "song_thkanb",
+ "order": 2777,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6860,
+ "shinutiNormal": 4320,
+ "shinutiHard": 2050,
+ "shinutiMania": 1080,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6860,
+ "shinutiNormalDuet": 4320,
+ "shinutiHardDuet": 2050,
+ "shinutiManiaDuet": 1080,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001040,
+ "scoreNormal": 1001960,
+ "scoreHard": 1000200,
+ "scoreMania": 1007100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 710,
+ "id": "thkero",
+ "songFileName": "song_thkero",
+ "order": 2778,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5910,
+ "shinutiNormal": 4190,
+ "shinutiHard": 2250,
+ "shinutiMania": 1290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5910,
+ "shinutiNormalDuet": 4190,
+ "shinutiHardDuet": 2250,
+ "shinutiManiaDuet": 1290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000370,
+ "scoreNormal": 1001150,
+ "scoreHard": 1003600,
+ "scoreMania": 1004010,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 711,
+ "id": "thmhrb",
+ "songFileName": "song_thmhrb",
+ "order": 2779,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 13100,
+ "shinutiNormal": 5540,
+ "shinutiHard": 2740,
+ "shinutiMania": 1570,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13100,
+ "shinutiNormalDuet": 5540,
+ "shinutiHardDuet": 2740,
+ "shinutiManiaDuet": 1570,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000500,
+ "scoreNormal": 1000120,
+ "scoreHard": 1001500,
+ "scoreMania": 1003480,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 712,
+ "id": "thmrs",
+ "songFileName": "song_thmrs",
+ "order": 2608,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6550,
+ "shinutiNormal": 4630,
+ "shinutiHard": 2260,
+ "shinutiMania": 1230,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6550,
+ "shinutiNormalDuet": 4630,
+ "shinutiHardDuet": 2260,
+ "shinutiManiaDuet": 1230,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001450,
+ "scoreNormal": 1001620,
+ "scoreHard": 1003620,
+ "scoreMania": 1000200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 713,
+ "id": "thmura",
+ "songFileName": "song_thmura",
+ "order": 2781,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9540,
+ "shinutiNormal": 6210,
+ "shinutiHard": 3490,
+ "shinutiMania": 2590,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9540,
+ "shinutiNormalDuet": 6210,
+ "shinutiHardDuet": 3490,
+ "shinutiManiaDuet": 2590,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000060,
+ "scoreNormal": 1000700,
+ "scoreHard": 1000950,
+ "scoreMania": 1000080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 714,
+ "id": "thncrd",
+ "songFileName": "song_thncrd",
+ "order": 2610,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 3880,
+ "shinutiNormal": 2650,
+ "shinutiHard": 1400,
+ "shinutiMania": 840,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3880,
+ "shinutiNormalDuet": 2650,
+ "shinutiHardDuet": 1400,
+ "shinutiManiaDuet": 840,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001020,
+ "scoreNormal": 1003450,
+ "scoreHard": 1001400,
+ "scoreMania": 1005000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 715,
+ "id": "thnegp",
+ "songFileName": "song_thnegp",
+ "order": 2783,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 8,
+ "shinutiEasy": 5240,
+ "shinutiNormal": 3780,
+ "shinutiHard": 2000,
+ "shinutiMania": 1540,
+ "shinutiUra": 1270,
+ "shinutiEasyDuet": 5240,
+ "shinutiNormalDuet": 3780,
+ "shinutiHardDuet": 2000,
+ "shinutiManiaDuet": 1540,
+ "shinutiUraDuet": 1270,
+ "scoreEasy": 1001660,
+ "scoreNormal": 1001980,
+ "scoreHard": 1001600,
+ "scoreMania": 1004380,
+ "scoreUra": 1270
+ },
+ {
+ "uniqueId": 716,
+ "id": "thnkyo",
+ "songFileName": "song_thnkyo",
+ "order": 2784,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8740,
+ "shinutiNormal": 5140,
+ "shinutiHard": 2480,
+ "shinutiMania": 1490,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8740,
+ "shinutiNormalDuet": 5140,
+ "shinutiHardDuet": 2480,
+ "shinutiManiaDuet": 1490,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000320,
+ "scoreNormal": 1000520,
+ "scoreHard": 1000700,
+ "scoreMania": 1000240,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 717,
+ "id": "thnlnd",
+ "songFileName": "song_thnlnd",
+ "order": 2785,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5560,
+ "shinutiNormal": 4540,
+ "shinutiHard": 1910,
+ "shinutiMania": 1010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5560,
+ "shinutiNormalDuet": 4540,
+ "shinutiHardDuet": 1910,
+ "shinutiManiaDuet": 1010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000780,
+ "scoreNormal": 1000780,
+ "scoreHard": 1001060,
+ "scoreMania": 1006130,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 718,
+ "id": "thnnak",
+ "songFileName": "song_thnnak",
+ "order": 2786,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8750,
+ "shinutiNormal": 5390,
+ "shinutiHard": 2640,
+ "shinutiMania": 1900,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8750,
+ "shinutiNormalDuet": 5390,
+ "shinutiHardDuet": 2640,
+ "shinutiManiaDuet": 1900,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000450,
+ "scoreNormal": 1001270,
+ "scoreHard": 1003100,
+ "scoreMania": 1004500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 719,
+ "id": "thnryo",
+ "songFileName": "song_thnryo",
+ "order": 2787,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5920,
+ "shinutiNormal": 3730,
+ "shinutiHard": 2580,
+ "shinutiMania": 1500,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5920,
+ "shinutiNormalDuet": 3730,
+ "shinutiHardDuet": 2580,
+ "shinutiManiaDuet": 1500,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001640,
+ "scoreNormal": 1000820,
+ "scoreHard": 1001900,
+ "scoreMania": 1003900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 720,
+ "id": "thntak",
+ "songFileName": "song_thntak",
+ "order": 2788,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 9400,
+ "shinutiNormal": 5420,
+ "shinutiHard": 2840,
+ "shinutiMania": 1480,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9400,
+ "shinutiNormalDuet": 5420,
+ "shinutiHardDuet": 2840,
+ "shinutiManiaDuet": 1480,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001000,
+ "scoreNormal": 1000660,
+ "scoreHard": 1002860,
+ "scoreMania": 1004140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 721,
+ "id": "thscre",
+ "songFileName": "song_thscre",
+ "order": 2790,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 5460,
+ "shinutiNormal": 3320,
+ "shinutiHard": 1820,
+ "shinutiMania": 1260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5460,
+ "shinutiNormalDuet": 3320,
+ "shinutiHardDuet": 1820,
+ "shinutiManiaDuet": 1260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001060,
+ "scoreNormal": 1001940,
+ "scoreHard": 1003200,
+ "scoreMania": 1005020,
+ "scoreUra": 1000
+ },
+ {
+ "uniqueId": 722,
+ "id": "thseek",
+ "songFileName": "song_thseek",
+ "order": 2791,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6010,
+ "shinutiNormal": 3740,
+ "shinutiHard": 2580,
+ "shinutiMania": 1540,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6010,
+ "shinutiNormalDuet": 3740,
+ "shinutiHardDuet": 2580,
+ "shinutiManiaDuet": 1540,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001250,
+ "scoreNormal": 1002500,
+ "scoreHard": 1001740,
+ "scoreMania": 1001760,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 723,
+ "id": "thwarn",
+ "songFileName": "song_thwarn",
+ "order": 2620,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 9840,
+ "shinutiNormal": 5380,
+ "shinutiHard": 2800,
+ "shinutiMania": 1320,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9840,
+ "shinutiNormalDuet": 5380,
+ "shinutiHardDuet": 2800,
+ "shinutiManiaDuet": 1320,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1001040,
+ "scoreHard": 1000600,
+ "scoreMania": 1004620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 724,
+ "id": "thzesh",
+ "songFileName": "song_thzesh",
+ "order": 2794,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6150,
+ "shinutiNormal": 4040,
+ "shinutiHard": 2510,
+ "shinutiMania": 1390,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6150,
+ "shinutiNormalDuet": 4040,
+ "shinutiHardDuet": 2510,
+ "shinutiManiaDuet": 1390,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001250,
+ "scoreNormal": 1002060,
+ "scoreHard": 1000000,
+ "scoreMania": 1003990,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 725,
+ "id": "timtrv",
+ "songFileName": "song_timtrv",
+ "order": 2796,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 7830,
+ "shinutiNormal": 5180,
+ "shinutiHard": 3010,
+ "shinutiMania": 2010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7830,
+ "shinutiNormalDuet": 5180,
+ "shinutiHardDuet": 3010,
+ "shinutiManiaDuet": 2010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000410,
+ "scoreNormal": 1000480,
+ "scoreHard": 1001380,
+ "scoreMania": 1001990,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 726,
+ "id": "tkroll",
+ "songFileName": "song_tkroll",
+ "order": 2798,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4480,
+ "shinutiNormal": 3260,
+ "shinutiHard": 2190,
+ "shinutiMania": 1110,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4480,
+ "shinutiNormalDuet": 3260,
+ "shinutiHardDuet": 2190,
+ "shinutiManiaDuet": 1110,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1002820,
+ "scoreHard": 1003430,
+ "scoreMania": 1003860,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 727,
+ "id": "tksoda",
+ "songFileName": "song_tksoda",
+ "order": 2799,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5440,
+ "shinutiNormal": 3750,
+ "shinutiHard": 1920,
+ "shinutiMania": 1340,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5440,
+ "shinutiNormalDuet": 3750,
+ "shinutiHardDuet": 1920,
+ "shinutiManiaDuet": 1340,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000020,
+ "scoreNormal": 1001250,
+ "scoreHard": 1004900,
+ "scoreMania": 1001100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 728,
+ "id": "tktime",
+ "songFileName": "song_tktime",
+ "order": 2801,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 4840,
+ "shinutiNormal": 4130,
+ "shinutiHard": 2120,
+ "shinutiMania": 1310,
+ "shinutiUra": 1130,
+ "shinutiEasyDuet": 4840,
+ "shinutiNormalDuet": 4130,
+ "shinutiHardDuet": 2120,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 1130,
+ "scoreEasy": 1000800,
+ "scoreNormal": 1001700,
+ "scoreHard": 1002080,
+ "scoreMania": 1005650,
+ "scoreUra": 1130
+ },
+ {
+ "uniqueId": 729,
+ "id": "tnkai2",
+ "songFileName": "song_tnkai2",
+ "order": 2806,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 8,
+ "shinutiEasy": 13630,
+ "shinutiNormal": 9740,
+ "shinutiHard": 5210,
+ "shinutiMania": 3360,
+ "shinutiUra": 2330,
+ "shinutiEasyDuet": 13630,
+ "shinutiNormalDuet": 9740,
+ "shinutiHardDuet": 5210,
+ "shinutiManiaDuet": 3360,
+ "shinutiUraDuet": 2330,
+ "scoreEasy": 1000690,
+ "scoreNormal": 1000480,
+ "scoreHard": 1000000,
+ "scoreMania": 1001560,
+ "scoreUra": 2330
+ },
+ {
+ "uniqueId": 730,
+ "id": "toabs",
+ "songFileName": "song_toabs",
+ "order": 2809,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5730,
+ "shinutiNormal": 3650,
+ "shinutiHard": 1830,
+ "shinutiMania": 1430,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5730,
+ "shinutiNormalDuet": 3650,
+ "shinutiHardDuet": 1830,
+ "shinutiManiaDuet": 1430,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000460,
+ "scoreNormal": 1002150,
+ "scoreHard": 1002860,
+ "scoreMania": 1005790,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 731,
+ "id": "tokkyo",
+ "songFileName": "song_tokkyo",
+ "order": 2814,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5480,
+ "shinutiNormal": 3660,
+ "shinutiHard": 1530,
+ "shinutiMania": 1190,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5480,
+ "shinutiNormalDuet": 3660,
+ "shinutiHardDuet": 1530,
+ "shinutiManiaDuet": 1190,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000380,
+ "scoreNormal": 1001560,
+ "scoreHard": 1004690,
+ "scoreMania": 1008300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 732,
+ "id": "toori4",
+ "songFileName": "song_toori4",
+ "order": 2819,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5840,
+ "shinutiNormal": 3920,
+ "shinutiHard": 2200,
+ "shinutiMania": 1510,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5840,
+ "shinutiNormalDuet": 3920,
+ "shinutiHardDuet": 2200,
+ "shinutiManiaDuet": 1510,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000640,
+ "scoreNormal": 1002300,
+ "scoreHard": 1003500,
+ "scoreMania": 1005040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 733,
+ "id": "tor",
+ "songFileName": "song_tor",
+ "order": 2820,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 3960,
+ "shinutiNormal": 2730,
+ "shinutiHard": 2050,
+ "shinutiMania": 1740,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3960,
+ "shinutiNormalDuet": 2730,
+ "shinutiHardDuet": 2050,
+ "shinutiManiaDuet": 1740,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001820,
+ "scoreNormal": 1000880,
+ "scoreHard": 1004850,
+ "scoreMania": 1000900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 734,
+ "id": "toreve",
+ "songFileName": "song_toreve",
+ "order": 2821,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8510,
+ "shinutiNormal": 5500,
+ "shinutiHard": 3550,
+ "shinutiMania": 2570,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8510,
+ "shinutiNormalDuet": 5500,
+ "shinutiHardDuet": 3550,
+ "shinutiManiaDuet": 2570,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000570,
+ "scoreNormal": 1001000,
+ "scoreHard": 1001950,
+ "scoreMania": 1000590,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 735,
+ "id": "totoro",
+ "songFileName": "song_totoro",
+ "order": 2646,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 1,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 12600,
+ "shinutiNormal": 9370,
+ "shinutiHard": 6040,
+ "shinutiMania": 3370,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12600,
+ "shinutiNormalDuet": 9370,
+ "shinutiHardDuet": 6040,
+ "shinutiManiaDuet": 3370,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1000520,
+ "scoreHard": 1000860,
+ "scoreMania": 1001720,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 736,
+ "id": "toukem",
+ "songFileName": "song_toukem",
+ "order": 2828,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 12130,
+ "shinutiNormal": 6900,
+ "shinutiHard": 3920,
+ "shinutiMania": 2470,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12130,
+ "shinutiNormalDuet": 6900,
+ "shinutiHardDuet": 3920,
+ "shinutiManiaDuet": 2470,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000160,
+ "scoreNormal": 1000400,
+ "scoreHard": 1001560,
+ "scoreMania": 1000830,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 737,
+ "id": "toymat",
+ "songFileName": "song_toymat",
+ "order": 2833,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4390,
+ "shinutiNormal": 2960,
+ "shinutiHard": 1730,
+ "shinutiMania": 1170,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4390,
+ "shinutiNormalDuet": 2960,
+ "shinutiHardDuet": 1730,
+ "shinutiManiaDuet": 1170,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000130,
+ "scoreNormal": 1002420,
+ "scoreHard": 1001750,
+ "scoreMania": 1003370,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 738,
+ "id": "troika",
+ "songFileName": "song_troika",
+ "order": 2841,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8150,
+ "shinutiNormal": 5890,
+ "shinutiHard": 3000,
+ "shinutiMania": 2130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8150,
+ "shinutiNormalDuet": 5890,
+ "shinutiHardDuet": 3000,
+ "shinutiManiaDuet": 2130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1000210,
+ "scoreHard": 1001100,
+ "scoreMania": 1003040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 739,
+ "id": "trustg",
+ "songFileName": "song_trustg",
+ "order": 2842,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5350,
+ "shinutiNormal": 3930,
+ "shinutiHard": 2480,
+ "shinutiMania": 1520,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5350,
+ "shinutiNormalDuet": 3930,
+ "shinutiHardDuet": 2480,
+ "shinutiManiaDuet": 1520,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001000,
+ "scoreNormal": 1001690,
+ "scoreHard": 1001280,
+ "scoreMania": 1003840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 740,
+ "id": "tttank",
+ "songFileName": "song_tttank",
+ "order": 2848,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8290,
+ "shinutiNormal": 6470,
+ "shinutiHard": 2870,
+ "shinutiMania": 1690,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8290,
+ "shinutiNormalDuet": 6470,
+ "shinutiHardDuet": 2870,
+ "shinutiManiaDuet": 1690,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000910,
+ "scoreNormal": 1000940,
+ "scoreHard": 1000510,
+ "scoreMania": 1000470,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 741,
+ "id": "tttt",
+ "songFileName": "song_tttt",
+ "order": 2849,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 8340,
+ "shinutiNormal": 5390,
+ "shinutiHard": 3130,
+ "shinutiMania": 1510,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8340,
+ "shinutiNormalDuet": 5390,
+ "shinutiHardDuet": 3130,
+ "shinutiManiaDuet": 1510,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000160,
+ "scoreNormal": 1001760,
+ "scoreHard": 1000950,
+ "scoreMania": 1002090,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 742,
+ "id": "tuku43",
+ "songFileName": "song_tuku43",
+ "order": 2853,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5190,
+ "shinutiNormal": 3330,
+ "shinutiHard": 1940,
+ "shinutiMania": 1030,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5190,
+ "shinutiNormalDuet": 3330,
+ "shinutiHardDuet": 1940,
+ "shinutiManiaDuet": 1030,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000880,
+ "scoreNormal": 1001370,
+ "scoreHard": 1000320,
+ "scoreMania": 1006690,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 743,
+ "id": "twccp",
+ "songFileName": "song_twccp",
+ "order": 2856,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 28500,
+ "shinutiNormal": 15100,
+ "shinutiHard": 8160,
+ "shinutiMania": 3460,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 28500,
+ "shinutiNormalDuet": 15100,
+ "shinutiHardDuet": 8160,
+ "shinutiManiaDuet": 3460,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1000100,
+ "scoreHard": 1000520,
+ "scoreMania": 1000580,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 744,
+ "id": "twctt",
+ "songFileName": "song_twctt",
+ "order": 2858,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10940,
+ "shinutiNormal": 6460,
+ "shinutiHard": 4840,
+ "shinutiMania": 3630,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10940,
+ "shinutiNormalDuet": 6460,
+ "shinutiHardDuet": 4840,
+ "shinutiManiaDuet": 3630,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000140,
+ "scoreNormal": 1000740,
+ "scoreHard": 1001840,
+ "scoreMania": 1002150,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 745,
+ "id": "u3gino",
+ "songFileName": "song_u3gino",
+ "order": 2861,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7020,
+ "shinutiNormal": 4450,
+ "shinutiHard": 2710,
+ "shinutiMania": 1910,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7020,
+ "shinutiNormalDuet": 4450,
+ "shinutiHardDuet": 2710,
+ "shinutiManiaDuet": 1910,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000440,
+ "scoreNormal": 1001300,
+ "scoreHard": 1001480,
+ "scoreMania": 1002210,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 746,
+ "id": "uchubk",
+ "songFileName": "song_uchubk",
+ "order": 2862,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 9160,
+ "shinutiNormal": 4370,
+ "shinutiHard": 1790,
+ "shinutiMania": 1260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9160,
+ "shinutiNormalDuet": 4370,
+ "shinutiHardDuet": 1790,
+ "shinutiManiaDuet": 1260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000980,
+ "scoreNormal": 1002060,
+ "scoreHard": 1004390,
+ "scoreMania": 1005020,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 747,
+ "id": "ufoswn",
+ "songFileName": "song_ufoswn",
+ "order": 2866,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 8760,
+ "shinutiNormal": 6760,
+ "shinutiHard": 2990,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8760,
+ "shinutiNormalDuet": 6760,
+ "shinutiHardDuet": 2990,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000480,
+ "scoreNormal": 1000960,
+ "scoreHard": 1002290,
+ "scoreMania": 1000060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 748,
+ "id": "uheart",
+ "songFileName": "song_uheart",
+ "order": 2867,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4540,
+ "shinutiNormal": 2430,
+ "shinutiHard": 1870,
+ "shinutiMania": 880,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4540,
+ "shinutiNormalDuet": 2430,
+ "shinutiHardDuet": 1870,
+ "shinutiManiaDuet": 880,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001320,
+ "scoreNormal": 1000610,
+ "scoreHard": 1004030,
+ "scoreMania": 1006820,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 749,
+ "id": "ujopop",
+ "songFileName": "song_ujopop",
+ "order": 2868,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 5860,
+ "shinutiNormal": 4290,
+ "shinutiHard": 2080,
+ "shinutiMania": 1660,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5860,
+ "shinutiNormalDuet": 4290,
+ "shinutiHardDuet": 2080,
+ "shinutiManiaDuet": 1660,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001400,
+ "scoreNormal": 1002180,
+ "scoreHard": 1000860,
+ "scoreMania": 1000040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 750,
+ "id": "ultged",
+ "songFileName": "song_ultged",
+ "order": 2872,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 18050,
+ "shinutiNormal": 10440,
+ "shinutiHard": 5500,
+ "shinutiMania": 2420,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18050,
+ "shinutiNormalDuet": 10440,
+ "shinutiHardDuet": 5500,
+ "shinutiManiaDuet": 2420,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000350,
+ "scoreNormal": 1000900,
+ "scoreHard": 1000100,
+ "scoreMania": 1001200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 751,
+ "id": "ultgng",
+ "songFileName": "song_ultgng",
+ "order": 2873,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6920,
+ "shinutiNormal": 4630,
+ "shinutiHard": 2260,
+ "shinutiMania": 1200,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6920,
+ "shinutiNormalDuet": 4630,
+ "shinutiHardDuet": 2260,
+ "shinutiManiaDuet": 1200,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000440,
+ "scoreNormal": 1000930,
+ "scoreHard": 1000840,
+ "scoreMania": 1006200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 752,
+ "id": "ultorb",
+ "songFileName": "song_ultorb",
+ "order": 2876,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6590,
+ "shinutiNormal": 3790,
+ "shinutiHard": 2080,
+ "shinutiMania": 940,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6590,
+ "shinutiNormalDuet": 3790,
+ "shinutiHardDuet": 2080,
+ "shinutiManiaDuet": 940,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001110,
+ "scoreNormal": 1001220,
+ "scoreHard": 1000840,
+ "scoreMania": 1009580,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 753,
+ "id": "ultx",
+ "songFileName": "song_ultx",
+ "order": 2878,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 10,
+ "shinutiEasy": 15340,
+ "shinutiNormal": 6760,
+ "shinutiHard": 3000,
+ "shinutiMania": 1780,
+ "shinutiUra": 970,
+ "shinutiEasyDuet": 15340,
+ "shinutiNormalDuet": 6760,
+ "shinutiHardDuet": 3000,
+ "shinutiManiaDuet": 1780,
+ "shinutiUraDuet": 970,
+ "scoreEasy": 1000460,
+ "scoreNormal": 1000200,
+ "scoreHard": 1002800,
+ "scoreMania": 1002460,
+ "scoreUra": 970
+ },
+ {
+ "uniqueId": 754,
+ "id": "um8ga2",
+ "songFileName": "song_um8ga2",
+ "order": 2881,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12400,
+ "shinutiNormal": 9090,
+ "shinutiHard": 5060,
+ "shinutiMania": 3370,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12400,
+ "shinutiNormalDuet": 9090,
+ "shinutiHardDuet": 5060,
+ "shinutiManiaDuet": 3370,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1001010,
+ "scoreHard": 1001200,
+ "scoreMania": 1000770,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 755,
+ "id": "umaba3",
+ "songFileName": "song_umaba3",
+ "order": 2882,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8280,
+ "shinutiNormal": 5270,
+ "shinutiHard": 2960,
+ "shinutiMania": 1510,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8280,
+ "shinutiNormalDuet": 5270,
+ "shinutiHardDuet": 2960,
+ "shinutiManiaDuet": 1510,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001100,
+ "scoreNormal": 1000160,
+ "scoreHard": 1000480,
+ "scoreMania": 1002830,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 756,
+ "id": "umhmwr",
+ "songFileName": "song_umhmwr",
+ "order": 2887,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 2,
+ "starMania": 2,
+ "starUra": 0,
+ "shinutiEasy": 34320,
+ "shinutiNormal": 19500,
+ "shinutiHard": 9930,
+ "shinutiMania": 5760,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 34320,
+ "shinutiNormalDuet": 19500,
+ "shinutiHardDuet": 9930,
+ "shinutiManiaDuet": 5760,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000180,
+ "scoreNormal": 1000400,
+ "scoreHard": 1000500,
+ "scoreMania": 1001680,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 757,
+ "id": "umima",
+ "songFileName": "song_umima",
+ "order": 2888,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 12460,
+ "shinutiNormal": 7910,
+ "shinutiHard": 4620,
+ "shinutiMania": 3090,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12460,
+ "shinutiNormalDuet": 7910,
+ "shinutiHardDuet": 4620,
+ "shinutiManiaDuet": 3090,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1001160,
+ "scoreHard": 1001320,
+ "scoreMania": 1003170,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 758,
+ "id": "umjoin",
+ "songFileName": "song_umjoin",
+ "order": 2891,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10510,
+ "shinutiNormal": 7790,
+ "shinutiHard": 4630,
+ "shinutiMania": 2370,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10510,
+ "shinutiNormalDuet": 7790,
+ "shinutiHardDuet": 4630,
+ "shinutiManiaDuet": 2370,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000750,
+ "scoreNormal": 1000520,
+ "scoreHard": 1000950,
+ "scoreMania": 1003700,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 759,
+ "id": "umkami",
+ "songFileName": "song_umkami",
+ "order": 2892,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 8850,
+ "shinutiNormal": 6300,
+ "shinutiHard": 3120,
+ "shinutiMania": 1790,
+ "shinutiUra": 1200,
+ "shinutiEasyDuet": 8850,
+ "shinutiNormalDuet": 6300,
+ "shinutiHardDuet": 3120,
+ "shinutiManiaDuet": 1790,
+ "shinutiUraDuet": 1200,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1000800,
+ "scoreHard": 1001120,
+ "scoreMania": 1000400,
+ "scoreUra": 1200
+ },
+ {
+ "uniqueId": 760,
+ "id": "ummute",
+ "songFileName": "song_ummute",
+ "order": 2893,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7310,
+ "shinutiNormal": 4700,
+ "shinutiHard": 2810,
+ "shinutiMania": 1860,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7310,
+ "shinutiNormalDuet": 4700,
+ "shinutiHardDuet": 2810,
+ "shinutiManiaDuet": 1860,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000950,
+ "scoreNormal": 1000900,
+ "scoreHard": 1001000,
+ "scoreMania": 1000420,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 761,
+ "id": "umneko",
+ "songFileName": "song_umneko",
+ "order": 2894,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7140,
+ "shinutiNormal": 4160,
+ "shinutiHard": 2520,
+ "shinutiMania": 1550,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7140,
+ "shinutiNormalDuet": 4160,
+ "shinutiHardDuet": 2520,
+ "shinutiManiaDuet": 1550,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000760,
+ "scoreNormal": 1001040,
+ "scoreHard": 1001140,
+ "scoreMania": 1000150,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 762,
+ "id": "umniji",
+ "songFileName": "song_umniji",
+ "order": 2895,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9780,
+ "shinutiNormal": 5830,
+ "shinutiHard": 2820,
+ "shinutiMania": 1780,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9780,
+ "shinutiNormalDuet": 5830,
+ "shinutiHardDuet": 2820,
+ "shinutiManiaDuet": 1780,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000280,
+ "scoreNormal": 1001070,
+ "scoreHard": 1000860,
+ "scoreMania": 1005240,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 763,
+ "id": "umrest",
+ "songFileName": "song_umrest",
+ "order": 2896,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 12410,
+ "shinutiNormal": 9990,
+ "shinutiHard": 4550,
+ "shinutiMania": 1810,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12410,
+ "shinutiNormalDuet": 9990,
+ "shinutiHardDuet": 4550,
+ "shinutiManiaDuet": 1810,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1000410,
+ "scoreHard": 1000100,
+ "scoreMania": 1003440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 764,
+ "id": "umtube",
+ "songFileName": "song_umtube",
+ "order": 2897,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9920,
+ "shinutiNormal": 6480,
+ "shinutiHard": 2930,
+ "shinutiMania": 2180,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9920,
+ "shinutiNormalDuet": 6480,
+ "shinutiHardDuet": 2930,
+ "shinutiManiaDuet": 2180,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1001340,
+ "scoreHard": 1002170,
+ "scoreMania": 1002500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 765,
+ "id": "umzaso",
+ "songFileName": "song_umzaso",
+ "order": 2898,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 7170,
+ "shinutiNormal": 5520,
+ "shinutiHard": 3480,
+ "shinutiMania": 2470,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7170,
+ "shinutiNormalDuet": 5520,
+ "shinutiHardDuet": 3480,
+ "shinutiManiaDuet": 2470,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000460,
+ "scoreNormal": 1000380,
+ "scoreHard": 1002780,
+ "scoreMania": 1001000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 766,
+ "id": "usa",
+ "songFileName": "song_usa",
+ "order": 2901,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9490,
+ "shinutiNormal": 6260,
+ "shinutiHard": 3880,
+ "shinutiMania": 2330,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9490,
+ "shinutiNormalDuet": 6260,
+ "shinutiHardDuet": 3880,
+ "shinutiManiaDuet": 2330,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000550,
+ "scoreNormal": 1000440,
+ "scoreHard": 1000080,
+ "scoreMania": 1002340,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 767,
+ "id": "usouso",
+ "songFileName": "song_usouso",
+ "order": 2903,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5570,
+ "shinutiNormal": 4020,
+ "shinutiHard": 2440,
+ "shinutiMania": 1530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5570,
+ "shinutiNormalDuet": 4020,
+ "shinutiHardDuet": 2440,
+ "shinutiManiaDuet": 1530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001430,
+ "scoreNormal": 1002060,
+ "scoreHard": 1001220,
+ "scoreMania": 1006110,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 768,
+ "id": "vertex",
+ "songFileName": "song_vertex",
+ "order": 2907,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4450,
+ "shinutiNormal": 2950,
+ "shinutiHard": 1950,
+ "shinutiMania": 1230,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4450,
+ "shinutiNormalDuet": 2950,
+ "shinutiHardDuet": 1950,
+ "shinutiManiaDuet": 1230,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001800,
+ "scoreNormal": 1000450,
+ "scoreHard": 1004850,
+ "scoreMania": 1001680,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 769,
+ "id": "vfpetr",
+ "songFileName": "song_vfpetr",
+ "order": 2909,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 8,
+ "shinutiEasy": 8490,
+ "shinutiNormal": 5030,
+ "shinutiHard": 2980,
+ "shinutiMania": 2150,
+ "shinutiUra": 1700,
+ "shinutiEasyDuet": 8490,
+ "shinutiNormalDuet": 5030,
+ "shinutiHardDuet": 2980,
+ "shinutiManiaDuet": 2150,
+ "shinutiUraDuet": 1700,
+ "scoreEasy": 1000030,
+ "scoreNormal": 1001640,
+ "scoreHard": 1001700,
+ "scoreMania": 1002800,
+ "scoreUra": 1700
+ },
+ {
+ "uniqueId": 770,
+ "id": "vfshrr",
+ "songFileName": "song_vfshrr",
+ "order": 2910,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10060,
+ "shinutiNormal": 6360,
+ "shinutiHard": 4210,
+ "shinutiMania": 2610,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10060,
+ "shinutiNormalDuet": 6360,
+ "shinutiHardDuet": 4210,
+ "shinutiManiaDuet": 2610,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000340,
+ "scoreNormal": 1001160,
+ "scoreHard": 1001460,
+ "scoreMania": 1001910,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 771,
+ "id": "vixtor",
+ "songFileName": "song_vixtor",
+ "order": 2915,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 10,
+ "shinutiEasy": 4240,
+ "shinutiNormal": 2700,
+ "shinutiHard": 1820,
+ "shinutiMania": 1080,
+ "shinutiUra": 800,
+ "shinutiEasyDuet": 4240,
+ "shinutiNormalDuet": 2700,
+ "shinutiHardDuet": 1820,
+ "shinutiManiaDuet": 1080,
+ "shinutiUraDuet": 800,
+ "scoreEasy": 1000860,
+ "scoreNormal": 1002900,
+ "scoreHard": 1000980,
+ "scoreMania": 1000960,
+ "scoreUra": 800
+ },
+ {
+ "uniqueId": 772,
+ "id": "vrock",
+ "songFileName": "song_vrock",
+ "order": 2917,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8220,
+ "shinutiNormal": 5650,
+ "shinutiHard": 2930,
+ "shinutiMania": 2050,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8220,
+ "shinutiNormalDuet": 5650,
+ "shinutiHardDuet": 2930,
+ "shinutiManiaDuet": 2050,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000520,
+ "scoreNormal": 1001350,
+ "scoreHard": 1002240,
+ "scoreMania": 1000900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 773,
+ "id": "vt1b1x",
+ "songFileName": "song_vt1b1x",
+ "order": 2918,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4820,
+ "shinutiNormal": 3170,
+ "shinutiHard": 1710,
+ "shinutiMania": 1130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4820,
+ "shinutiNormalDuet": 3170,
+ "shinutiHardDuet": 1710,
+ "shinutiManiaDuet": 1130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001820,
+ "scoreNormal": 1001900,
+ "scoreHard": 1003110,
+ "scoreMania": 1006330,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 774,
+ "id": "vt1b2x",
+ "songFileName": "song_vt1b2x",
+ "order": 2919,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 3860,
+ "shinutiNormal": 2890,
+ "shinutiHard": 1410,
+ "shinutiMania": 780,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3860,
+ "shinutiNormalDuet": 2890,
+ "shinutiHardDuet": 1410,
+ "shinutiManiaDuet": 780,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000580,
+ "scoreNormal": 1000560,
+ "scoreHard": 1001840,
+ "scoreMania": 1009700,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 775,
+ "id": "vt1op",
+ "songFileName": "song_vt1op",
+ "order": 2920,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7370,
+ "shinutiNormal": 5380,
+ "shinutiHard": 2160,
+ "shinutiMania": 1460,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7370,
+ "shinutiNormalDuet": 5380,
+ "shinutiHardDuet": 2160,
+ "shinutiManiaDuet": 1460,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000610,
+ "scoreNormal": 1000980,
+ "scoreHard": 1002160,
+ "scoreMania": 1002620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 776,
+ "id": "w2bs2x",
+ "songFileName": "song_w2bs2x",
+ "order": 2922,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5580,
+ "shinutiNormal": 4760,
+ "shinutiHard": 1770,
+ "shinutiMania": 1260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5580,
+ "shinutiNormalDuet": 4760,
+ "shinutiHardDuet": 1770,
+ "shinutiManiaDuet": 1260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001360,
+ "scoreNormal": 1001320,
+ "scoreHard": 1001450,
+ "scoreMania": 1004220,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 777,
+ "id": "w2mtom",
+ "songFileName": "song_w2mtom",
+ "order": 2923,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7440,
+ "shinutiNormal": 4690,
+ "shinutiHard": 2990,
+ "shinutiMania": 1690,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7440,
+ "shinutiNormalDuet": 4690,
+ "shinutiHardDuet": 2990,
+ "shinutiManiaDuet": 1690,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000760,
+ "scoreNormal": 1001670,
+ "scoreHard": 1001260,
+ "scoreMania": 1001100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 778,
+ "id": "w2myat",
+ "songFileName": "song_w2myat",
+ "order": 2924,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 16340,
+ "shinutiNormal": 10070,
+ "shinutiHard": 5610,
+ "shinutiMania": 3380,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16340,
+ "shinutiNormalDuet": 10070,
+ "shinutiHardDuet": 5610,
+ "shinutiManiaDuet": 3380,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1000630,
+ "scoreHard": 1000370,
+ "scoreMania": 1000100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 779,
+ "id": "w3at1x",
+ "songFileName": "song_w3at1x",
+ "order": 2925,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9140,
+ "shinutiNormal": 7130,
+ "shinutiHard": 4190,
+ "shinutiMania": 2440,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9140,
+ "shinutiNormalDuet": 7130,
+ "shinutiHardDuet": 4190,
+ "shinutiManiaDuet": 2440,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000720,
+ "scoreNormal": 1000240,
+ "scoreHard": 1001660,
+ "scoreMania": 1001140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 780,
+ "id": "w3at22",
+ "songFileName": "song_w3at22",
+ "order": 2926,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6020,
+ "shinutiNormal": 4790,
+ "shinutiHard": 2860,
+ "shinutiMania": 1500,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6020,
+ "shinutiNormalDuet": 4790,
+ "shinutiHardDuet": 2860,
+ "shinutiManiaDuet": 1500,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000900,
+ "scoreNormal": 1001830,
+ "scoreHard": 1001300,
+ "scoreMania": 1001500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 781,
+ "id": "wait4u",
+ "songFileName": "song_wait4u",
+ "order": 2929,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6100,
+ "shinutiNormal": 4210,
+ "shinutiHard": 2350,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6100,
+ "shinutiNormalDuet": 4210,
+ "shinutiHardDuet": 2350,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1000160,
+ "scoreHard": 1002100,
+ "scoreMania": 1001720,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 782,
+ "id": "wangan",
+ "songFileName": "song_wangan",
+ "order": 2930,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 4050,
+ "shinutiNormal": 3210,
+ "shinutiHard": 1990,
+ "shinutiMania": 1410,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4050,
+ "shinutiNormalDuet": 3210,
+ "shinutiHardDuet": 1990,
+ "shinutiManiaDuet": 1410,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1002000,
+ "scoreHard": 1001600,
+ "scoreMania": 1004800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 783,
+ "id": "wara2k",
+ "songFileName": "song_wara2k",
+ "order": 2931,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 3490,
+ "shinutiNormal": 2560,
+ "shinutiHard": 1640,
+ "shinutiMania": 1210,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3490,
+ "shinutiNormalDuet": 2560,
+ "shinutiHardDuet": 1640,
+ "shinutiManiaDuet": 1210,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000860,
+ "scoreNormal": 1001360,
+ "scoreHard": 1005500,
+ "scoreMania": 1007080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 784,
+ "id": "warya",
+ "songFileName": "song_warya",
+ "order": 2934,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7860,
+ "shinutiNormal": 5600,
+ "shinutiHard": 2860,
+ "shinutiMania": 1830,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7860,
+ "shinutiNormalDuet": 5600,
+ "shinutiHardDuet": 2860,
+ "shinutiManiaDuet": 1830,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000960,
+ "scoreNormal": 1001700,
+ "scoreHard": 1002940,
+ "scoreMania": 1001580,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 785,
+ "id": "wedh",
+ "songFileName": "song_wedh",
+ "order": 2942,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6740,
+ "shinutiNormal": 4590,
+ "shinutiHard": 2730,
+ "shinutiMania": 1420,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6740,
+ "shinutiNormalDuet": 4590,
+ "shinutiHardDuet": 2730,
+ "shinutiManiaDuet": 1420,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000380,
+ "scoreNormal": 1001640,
+ "scoreHard": 1000530,
+ "scoreMania": 1003500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 786,
+ "id": "wgbhfm",
+ "songFileName": "song_wgbhfm",
+ "order": 2945,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4460,
+ "shinutiNormal": 3290,
+ "shinutiHard": 1650,
+ "shinutiMania": 1070,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4460,
+ "shinutiNormalDuet": 3290,
+ "shinutiHardDuet": 1650,
+ "shinutiManiaDuet": 1070,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000980,
+ "scoreNormal": 1002180,
+ "scoreHard": 1005200,
+ "scoreMania": 1002840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 787,
+ "id": "whibox",
+ "songFileName": "song_whibox",
+ "order": 2946,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 9910,
+ "shinutiNormal": 6580,
+ "shinutiHard": 3310,
+ "shinutiMania": 1320,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9910,
+ "shinutiNormalDuet": 6580,
+ "shinutiHardDuet": 3310,
+ "shinutiManiaDuet": 1320,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1000700,
+ "scoreHard": 1002700,
+ "scoreMania": 1003000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 788,
+ "id": "whrose",
+ "songFileName": "song_whrose",
+ "order": 2947,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 8,
+ "shinutiEasy": 6700,
+ "shinutiNormal": 4870,
+ "shinutiHard": 3230,
+ "shinutiMania": 1990,
+ "shinutiUra": 1510,
+ "shinutiEasyDuet": 6700,
+ "shinutiNormalDuet": 4870,
+ "shinutiHardDuet": 3230,
+ "shinutiManiaDuet": 1990,
+ "shinutiUraDuet": 1510,
+ "scoreEasy": 1001000,
+ "scoreNormal": 1000310,
+ "scoreHard": 1002450,
+ "scoreMania": 1002760,
+ "scoreUra": 1510
+ },
+ {
+ "uniqueId": 789,
+ "id": "xan",
+ "songFileName": "song_xan",
+ "order": 2961,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 4490,
+ "shinutiNormal": 3370,
+ "shinutiHard": 2130,
+ "shinutiMania": 1470,
+ "shinutiUra": 1110,
+ "shinutiEasyDuet": 4490,
+ "shinutiNormalDuet": 3370,
+ "shinutiHardDuet": 2130,
+ "shinutiManiaDuet": 1470,
+ "shinutiUraDuet": 1110,
+ "scoreEasy": 1001780,
+ "scoreNormal": 1000350,
+ "scoreHard": 1003040,
+ "scoreMania": 1001650,
+ "scoreUra": 1110
+ },
+ {
+ "uniqueId": 790,
+ "id": "xday2k",
+ "songFileName": "song_xday2k",
+ "order": 2963,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4470,
+ "shinutiNormal": 3550,
+ "shinutiHard": 1800,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4470,
+ "shinutiNormalDuet": 3550,
+ "shinutiHardDuet": 1800,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1002080,
+ "scoreNormal": 1002200,
+ "scoreHard": 1001500,
+ "scoreMania": 1005150,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 791,
+ "id": "xevel",
+ "songFileName": "song_xevel",
+ "order": 2964,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4260,
+ "shinutiNormal": 3010,
+ "shinutiHard": 1590,
+ "shinutiMania": 880,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4260,
+ "shinutiNormalDuet": 3010,
+ "shinutiHardDuet": 1590,
+ "shinutiManiaDuet": 880,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001920,
+ "scoreNormal": 1001170,
+ "scoreHard": 1005670,
+ "scoreMania": 1000920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 792,
+ "id": "xjapa2",
+ "songFileName": "song_xjapa2",
+ "order": 2966,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 10,
+ "shinutiEasy": 4490,
+ "shinutiNormal": 3190,
+ "shinutiHard": 1310,
+ "shinutiMania": 930,
+ "shinutiUra": 720,
+ "shinutiEasyDuet": 4490,
+ "shinutiNormalDuet": 3190,
+ "shinutiHardDuet": 1310,
+ "shinutiManiaDuet": 930,
+ "shinutiUraDuet": 720,
+ "scoreEasy": 1001990,
+ "scoreNormal": 1002010,
+ "scoreHard": 1003480,
+ "scoreMania": 1002130,
+ "scoreUra": 720
+ },
+ {
+ "uniqueId": 793,
+ "id": "xjapan",
+ "songFileName": "song_xjapan",
+ "order": 2967,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6030,
+ "shinutiNormal": 4440,
+ "shinutiHard": 1370,
+ "shinutiMania": 1010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6030,
+ "shinutiNormalDuet": 4440,
+ "shinutiHardDuet": 1370,
+ "shinutiManiaDuet": 1010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000750,
+ "scoreNormal": 1000020,
+ "scoreHard": 1001990,
+ "scoreMania": 1008990,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 794,
+ "id": "yamata",
+ "songFileName": "song_yamata",
+ "order": 2970,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5590,
+ "shinutiNormal": 3600,
+ "shinutiHard": 1960,
+ "shinutiMania": 1280,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5590,
+ "shinutiNormalDuet": 3600,
+ "shinutiHardDuet": 1960,
+ "shinutiManiaDuet": 1280,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000830,
+ "scoreNormal": 1001300,
+ "scoreHard": 1000800,
+ "scoreMania": 1001660,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 795,
+ "id": "yayoi",
+ "songFileName": "song_yayoi",
+ "order": 2972,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8670,
+ "shinutiNormal": 6030,
+ "shinutiHard": 3000,
+ "shinutiMania": 2260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8670,
+ "shinutiNormalDuet": 6030,
+ "shinutiHardDuet": 3000,
+ "shinutiManiaDuet": 2260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000950,
+ "scoreNormal": 1000550,
+ "scoreHard": 1003000,
+ "scoreMania": 1002760,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 796,
+ "id": "ybtwed",
+ "songFileName": "song_ybtwed",
+ "order": 2973,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 8,
+ "shinutiEasy": 18340,
+ "shinutiNormal": 11640,
+ "shinutiHard": 6100,
+ "shinutiMania": 3640,
+ "shinutiUra": 2410,
+ "shinutiEasyDuet": 18340,
+ "shinutiNormalDuet": 11640,
+ "shinutiHardDuet": 6100,
+ "shinutiManiaDuet": 3640,
+ "shinutiUraDuet": 2410,
+ "scoreEasy": 1000160,
+ "scoreNormal": 1000300,
+ "scoreHard": 1001400,
+ "scoreMania": 1000580,
+ "scoreUra": 2410
+ },
+ {
+ "uniqueId": 797,
+ "id": "ycoast",
+ "songFileName": "song_ycoast",
+ "order": 2974,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 8560,
+ "shinutiNormal": 5310,
+ "shinutiHard": 2670,
+ "shinutiMania": 1380,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8560,
+ "shinutiNormalDuet": 5310,
+ "shinutiHardDuet": 2670,
+ "shinutiManiaDuet": 1380,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001060,
+ "scoreNormal": 1001570,
+ "scoreHard": 1001240,
+ "scoreMania": 1004220,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 798,
+ "id": "yeswea",
+ "songFileName": "song_yeswea",
+ "order": 2976,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 3,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 28270,
+ "shinutiNormal": 15670,
+ "shinutiHard": 8050,
+ "shinutiMania": 2800,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 28270,
+ "shinutiNormalDuet": 15670,
+ "shinutiHardDuet": 8050,
+ "shinutiManiaDuet": 2800,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000150,
+ "scoreNormal": 1000610,
+ "scoreHard": 1000000,
+ "scoreMania": 1001800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 799,
+ "id": "ygnarr",
+ "songFileName": "song_ygnarr",
+ "order": 2977,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 2010,
+ "shinutiNormal": 1430,
+ "shinutiHard": 1090,
+ "shinutiMania": 770,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 2010,
+ "shinutiNormalDuet": 1430,
+ "shinutiHardDuet": 1090,
+ "shinutiManiaDuet": 770,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1004670,
+ "scoreNormal": 1001080,
+ "scoreHard": 1008900,
+ "scoreMania": 1011680,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 800,
+ "id": "ymck2",
+ "songFileName": "song_ymck2",
+ "order": 2980,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5200,
+ "shinutiNormal": 3510,
+ "shinutiHard": 2220,
+ "shinutiMania": 1460,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5200,
+ "shinutiNormalDuet": 3510,
+ "shinutiHardDuet": 2220,
+ "shinutiManiaDuet": 1460,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001300,
+ "scoreNormal": 1000230,
+ "scoreHard": 1003260,
+ "scoreMania": 1006080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 801,
+ "id": "ymtgen",
+ "songFileName": "song_ymtgen",
+ "order": 2982,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6050,
+ "shinutiNormal": 3740,
+ "shinutiHard": 2710,
+ "shinutiMania": 1650,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6050,
+ "shinutiNormalDuet": 3740,
+ "shinutiHardDuet": 2710,
+ "shinutiManiaDuet": 1650,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000500,
+ "scoreNormal": 1000100,
+ "scoreHard": 1000440,
+ "scoreMania": 1002950,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 802,
+ "id": "ymyrp2",
+ "songFileName": "song_ymyrp2",
+ "order": 2983,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8450,
+ "shinutiNormal": 5030,
+ "shinutiHard": 2450,
+ "shinutiMania": 1660,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8450,
+ "shinutiNormalDuet": 5030,
+ "shinutiHardDuet": 2450,
+ "shinutiManiaDuet": 1660,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1000340,
+ "scoreHard": 1001100,
+ "scoreMania": 1004300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 803,
+ "id": "ymyrp3",
+ "songFileName": "song_ymyrp3",
+ "order": 2984,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6800,
+ "shinutiNormal": 4290,
+ "shinutiHard": 2150,
+ "shinutiMania": 1570,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6800,
+ "shinutiNormalDuet": 4290,
+ "shinutiHardDuet": 2150,
+ "shinutiManiaDuet": 1570,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000500,
+ "scoreNormal": 1001890,
+ "scoreHard": 1000700,
+ "scoreMania": 1003890,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 804,
+ "id": "ymyrp4",
+ "songFileName": "song_ymyrp4",
+ "order": 2985,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6480,
+ "shinutiNormal": 3870,
+ "shinutiHard": 1900,
+ "shinutiMania": 1260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6480,
+ "shinutiNormalDuet": 3870,
+ "shinutiHardDuet": 1900,
+ "shinutiManiaDuet": 1260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000740,
+ "scoreNormal": 1001090,
+ "scoreHard": 1002200,
+ "scoreMania": 1005040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 805,
+ "id": "ymyrpg",
+ "songFileName": "song_ymyrpg",
+ "order": 2986,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9910,
+ "shinutiNormal": 5130,
+ "shinutiHard": 2710,
+ "shinutiMania": 1810,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9910,
+ "shinutiNormalDuet": 5130,
+ "shinutiHardDuet": 2710,
+ "shinutiManiaDuet": 1810,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000910,
+ "scoreNormal": 1001150,
+ "scoreHard": 1002290,
+ "scoreMania": 1002630,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 806,
+ "id": "ynlose",
+ "songFileName": "song_ynlose",
+ "order": 2987,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 11290,
+ "shinutiNormal": 4900,
+ "shinutiHard": 3520,
+ "shinutiMania": 2860,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11290,
+ "shinutiNormalDuet": 4900,
+ "shinutiHardDuet": 3520,
+ "shinutiManiaDuet": 2860,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000420,
+ "scoreNormal": 1001500,
+ "scoreHard": 1001760,
+ "scoreMania": 1000320,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 807,
+ "id": "ynzlmn",
+ "songFileName": "song_ynzlmn",
+ "order": 2989,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 16060,
+ "shinutiNormal": 11300,
+ "shinutiHard": 8030,
+ "shinutiMania": 4470,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16060,
+ "shinutiNormalDuet": 11300,
+ "shinutiHardDuet": 8030,
+ "shinutiManiaDuet": 4470,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000520,
+ "scoreNormal": 1000800,
+ "scoreHard": 1000620,
+ "scoreMania": 1000910,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 808,
+ "id": "ynzpcs",
+ "songFileName": "song_ynzpcs",
+ "order": 2990,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12420,
+ "shinutiNormal": 5190,
+ "shinutiHard": 3280,
+ "shinutiMania": 2250,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12420,
+ "shinutiNormalDuet": 5190,
+ "shinutiHardDuet": 3280,
+ "shinutiManiaDuet": 2250,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1001380,
+ "scoreHard": 1000840,
+ "scoreMania": 1004150,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 809,
+ "id": "ynzums",
+ "songFileName": "song_ynzums",
+ "order": 2991,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 3,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 23740,
+ "shinutiNormal": 15560,
+ "shinutiHard": 6340,
+ "shinutiMania": 4800,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 23740,
+ "shinutiNormalDuet": 15560,
+ "shinutiHardDuet": 6340,
+ "shinutiManiaDuet": 4800,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000180,
+ "scoreNormal": 1000040,
+ "scoreHard": 1000780,
+ "scoreMania": 1000300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 810,
+ "id": "yoidon",
+ "songFileName": "song_yoidon",
+ "order": 2993,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 9130,
+ "shinutiNormal": 3130,
+ "shinutiHard": 2150,
+ "shinutiMania": 1290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9130,
+ "shinutiNormalDuet": 3130,
+ "shinutiHardDuet": 2150,
+ "shinutiManiaDuet": 1290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000010,
+ "scoreNormal": 1001810,
+ "scoreHard": 1003900,
+ "scoreMania": 1004830,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 811,
+ "id": "yokait",
+ "songFileName": "song_yokait",
+ "order": 2995,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 15760,
+ "shinutiNormal": 10880,
+ "shinutiHard": 4840,
+ "shinutiMania": 3660,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15760,
+ "shinutiNormalDuet": 10880,
+ "shinutiHardDuet": 4840,
+ "shinutiManiaDuet": 3660,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000280,
+ "scoreNormal": 1000380,
+ "scoreHard": 1000000,
+ "scoreMania": 1002420,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 812,
+ "id": "yokud",
+ "songFileName": "song_yokud",
+ "order": 2996,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4310,
+ "shinutiNormal": 3420,
+ "shinutiHard": 2070,
+ "shinutiMania": 1520,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4310,
+ "shinutiNormalDuet": 3420,
+ "shinutiHardDuet": 2070,
+ "shinutiManiaDuet": 1520,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001220,
+ "scoreNormal": 1000040,
+ "scoreHard": 1002510,
+ "scoreMania": 1002740,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 813,
+ "id": "yokud2",
+ "songFileName": "song_yokud2",
+ "order": 2997,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 3,
+ "starHard": 2,
+ "starMania": 1,
+ "starUra": 0,
+ "shinutiEasy": 58490,
+ "shinutiNormal": 58410,
+ "shinutiHard": 58280,
+ "shinutiMania": 8700,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 58490,
+ "shinutiNormalDuet": 58410,
+ "shinutiHardDuet": 58280,
+ "shinutiManiaDuet": 8700,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000030,
+ "scoreNormal": 1000070,
+ "scoreHard": 1000160,
+ "scoreMania": 1000500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 814,
+ "id": "yrsdak",
+ "songFileName": "song_yrsdak",
+ "order": 3001,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 8,
+ "shinutiEasy": 21650,
+ "shinutiNormal": 10150,
+ "shinutiHard": 5310,
+ "shinutiMania": 3590,
+ "shinutiUra": 2250,
+ "shinutiEasyDuet": 21650,
+ "shinutiNormalDuet": 10150,
+ "shinutiHardDuet": 5310,
+ "shinutiManiaDuet": 3590,
+ "shinutiUraDuet": 2250,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1000800,
+ "scoreHard": 1000070,
+ "scoreMania": 1000150,
+ "scoreUra": 2250
+ },
+ {
+ "uniqueId": 815,
+ "id": "ys2op",
+ "songFileName": "song_ys2op",
+ "order": 3002,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 5710,
+ "shinutiNormal": 4250,
+ "shinutiHard": 2010,
+ "shinutiMania": 1660,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5710,
+ "shinutiNormalDuet": 4250,
+ "shinutiHardDuet": 2010,
+ "shinutiManiaDuet": 1660,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000750,
+ "scoreNormal": 1000750,
+ "scoreHard": 1002680,
+ "scoreMania": 1001920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 816,
+ "id": "yugao2",
+ "songFileName": "song_yugao2",
+ "order": 3003,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4120,
+ "shinutiNormal": 2790,
+ "shinutiHard": 1760,
+ "shinutiMania": 1420,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4120,
+ "shinutiNormalDuet": 2790,
+ "shinutiHardDuet": 1760,
+ "shinutiManiaDuet": 1420,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000020,
+ "scoreNormal": 1002730,
+ "scoreHard": 1004080,
+ "scoreMania": 1001920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 817,
+ "id": "yugen",
+ "songFileName": "song_yugen",
+ "order": 3004,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 2080,
+ "shinutiNormal": 1410,
+ "shinutiHard": 1130,
+ "shinutiMania": 800,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 2080,
+ "shinutiNormalDuet": 1410,
+ "shinutiHardDuet": 1130,
+ "shinutiManiaDuet": 800,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1004280,
+ "scoreNormal": 1003080,
+ "scoreHard": 1001890,
+ "scoreMania": 1012300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 818,
+ "id": "yw2mdl",
+ "songFileName": "song_yw2mdl",
+ "order": 3010,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 8240,
+ "shinutiNormal": 5530,
+ "shinutiHard": 2840,
+ "shinutiMania": 1490,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8240,
+ "shinutiNormalDuet": 5530,
+ "shinutiHardDuet": 2840,
+ "shinutiManiaDuet": 1490,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001000,
+ "scoreNormal": 1000440,
+ "scoreHard": 1002800,
+ "scoreMania": 1003940,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 819,
+ "id": "ywdddz",
+ "songFileName": "song_ywdddz",
+ "order": 3011,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 17100,
+ "shinutiNormal": 8990,
+ "shinutiHard": 4010,
+ "shinutiMania": 2580,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 17100,
+ "shinutiNormalDuet": 8990,
+ "shinutiHardDuet": 4010,
+ "shinutiManiaDuet": 2580,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000500,
+ "scoreNormal": 1001000,
+ "scoreHard": 1001560,
+ "scoreMania": 1001420,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 820,
+ "id": "ywging",
+ "songFileName": "song_ywging",
+ "order": 3012,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 11460,
+ "shinutiNormal": 7550,
+ "shinutiHard": 3780,
+ "shinutiMania": 2750,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11460,
+ "shinutiNormalDuet": 7550,
+ "shinutiHardDuet": 3780,
+ "shinutiManiaDuet": 2750,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000720,
+ "scoreNormal": 1001200,
+ "scoreHard": 1000120,
+ "scoreMania": 1001350,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 821,
+ "id": "ywhggp",
+ "songFileName": "song_ywhggp",
+ "order": 3013,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10250,
+ "shinutiNormal": 8410,
+ "shinutiHard": 5530,
+ "shinutiMania": 3490,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10250,
+ "shinutiNormalDuet": 8410,
+ "shinutiHardDuet": 5530,
+ "shinutiManiaDuet": 3490,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000550,
+ "scoreNormal": 1000380,
+ "scoreHard": 1000670,
+ "scoreMania": 1001080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 822,
+ "id": "ywjdrm",
+ "songFileName": "song_ywjdrm",
+ "order": 3014,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11800,
+ "shinutiNormal": 9940,
+ "shinutiHard": 5520,
+ "shinutiMania": 3000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11800,
+ "shinutiNormalDuet": 9940,
+ "shinutiHardDuet": 5520,
+ "shinutiManiaDuet": 3000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000460,
+ "scoreHard": 1001200,
+ "scoreMania": 1001500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 823,
+ "id": "ywkkh",
+ "songFileName": "song_ywkkh",
+ "order": 3015,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 1,
+ "starMania": 3,
+ "starUra": 0,
+ "shinutiEasy": 26850,
+ "shinutiNormal": 16020,
+ "shinutiHard": 7300,
+ "shinutiMania": 3770,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 26850,
+ "shinutiNormalDuet": 16020,
+ "shinutiHardDuet": 7300,
+ "shinutiManiaDuet": 3770,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000350,
+ "scoreNormal": 1000440,
+ "scoreHard": 1000600,
+ "scoreMania": 1001010,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 824,
+ "id": "ywmggp",
+ "songFileName": "song_ywmggp",
+ "order": 3016,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10820,
+ "shinutiNormal": 7880,
+ "shinutiHard": 4860,
+ "shinutiMania": 3400,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10820,
+ "shinutiNormalDuet": 7880,
+ "shinutiHardDuet": 4860,
+ "shinutiManiaDuet": 3400,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000540,
+ "scoreNormal": 1000380,
+ "scoreHard": 1001540,
+ "scoreMania": 1001600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 825,
+ "id": "ywtoki",
+ "songFileName": "song_ywtoki",
+ "order": 3017,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 20210,
+ "shinutiNormal": 11090,
+ "shinutiHard": 5430,
+ "shinutiMania": 2550,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 20210,
+ "shinutiNormalDuet": 11090,
+ "shinutiHardDuet": 5430,
+ "shinutiManiaDuet": 2550,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000190,
+ "scoreNormal": 1000010,
+ "scoreHard": 1001630,
+ "scoreMania": 1001750,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 826,
+ "id": "ywyugr",
+ "songFileName": "song_ywyugr",
+ "order": 3018,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 14190,
+ "shinutiNormal": 6550,
+ "shinutiHard": 4060,
+ "shinutiMania": 2380,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14190,
+ "shinutiNormalDuet": 6550,
+ "shinutiHardDuet": 4060,
+ "shinutiManiaDuet": 2380,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1001500,
+ "scoreHard": 1001300,
+ "scoreMania": 1001020,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 827,
+ "id": "yzmsct",
+ "songFileName": "song_yzmsct",
+ "order": 3019,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 1,
+ "starMania": 2,
+ "starUra": 0,
+ "shinutiEasy": 41460,
+ "shinutiNormal": 28420,
+ "shinutiHard": 13090,
+ "shinutiMania": 6600,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 41460,
+ "shinutiNormalDuet": 28420,
+ "shinutiHardDuet": 13090,
+ "shinutiManiaDuet": 6600,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000140,
+ "scoreNormal": 1000000,
+ "scoreHard": 1000440,
+ "scoreMania": 1000100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 828,
+ "id": "zaba",
+ "songFileName": "song_zaba",
+ "order": 3020,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 5540,
+ "shinutiNormal": 4120,
+ "shinutiHard": 2950,
+ "shinutiMania": 2140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5540,
+ "shinutiNormalDuet": 4120,
+ "shinutiHardDuet": 2950,
+ "shinutiManiaDuet": 2140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000500,
+ "scoreNormal": 1001140,
+ "scoreHard": 1002950,
+ "scoreMania": 1003520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 829,
+ "id": "zeldsw",
+ "songFileName": "song_zeldsw",
+ "order": 3023,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 11260,
+ "shinutiNormal": 7050,
+ "shinutiHard": 3530,
+ "shinutiMania": 2090,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11260,
+ "shinutiNormalDuet": 7050,
+ "shinutiHardDuet": 3530,
+ "shinutiManiaDuet": 2090,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000280,
+ "scoreNormal": 1000800,
+ "scoreHard": 1002270,
+ "scoreMania": 1003410,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 830,
+ "id": "zense",
+ "songFileName": "song_zense",
+ "order": 3025,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10990,
+ "shinutiNormal": 7660,
+ "shinutiHard": 3080,
+ "shinutiMania": 2140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10990,
+ "shinutiNormalDuet": 7660,
+ "shinutiHardDuet": 3080,
+ "shinutiManiaDuet": 2140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000740,
+ "scoreHard": 1000760,
+ "scoreMania": 1004540,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 831,
+ "id": "zerono",
+ "songFileName": "song_zerono",
+ "order": 3026,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 5180,
+ "shinutiNormal": 3290,
+ "shinutiHard": 2240,
+ "shinutiMania": 1590,
+ "shinutiUra": 1220,
+ "shinutiEasyDuet": 5180,
+ "shinutiNormalDuet": 3290,
+ "shinutiHardDuet": 2240,
+ "shinutiManiaDuet": 1590,
+ "shinutiUraDuet": 1220,
+ "scoreEasy": 1001760,
+ "scoreNormal": 1000690,
+ "scoreHard": 1000280,
+ "scoreMania": 1003250,
+ "scoreUra": 1220
+ },
+ {
+ "uniqueId": 832,
+ "id": "zerora",
+ "songFileName": "song_zerora",
+ "order": 3027,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4780,
+ "shinutiNormal": 3350,
+ "shinutiHard": 1720,
+ "shinutiMania": 1190,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4780,
+ "shinutiNormalDuet": 3350,
+ "shinutiHardDuet": 1720,
+ "shinutiManiaDuet": 1190,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001580,
+ "scoreNormal": 1000050,
+ "scoreHard": 1005600,
+ "scoreMania": 1004350,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 833,
+ "id": "zerosy",
+ "songFileName": "song_zerosy",
+ "order": 3028,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 10,
+ "shinutiEasy": 6020,
+ "shinutiNormal": 4560,
+ "shinutiHard": 2240,
+ "shinutiMania": 1500,
+ "shinutiUra": 1100,
+ "shinutiEasyDuet": 6020,
+ "shinutiNormalDuet": 4560,
+ "shinutiHardDuet": 2240,
+ "shinutiManiaDuet": 1500,
+ "shinutiUraDuet": 1100,
+ "scoreEasy": 1000260,
+ "scoreNormal": 1000240,
+ "scoreHard": 1002660,
+ "scoreMania": 1004000,
+ "scoreUra": 1100
+ },
+ {
+ "uniqueId": 834,
+ "id": "zolbdl",
+ "songFileName": "song_zolbdl",
+ "order": 3029,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 4910,
+ "shinutiNormal": 2680,
+ "shinutiHard": 2370,
+ "shinutiMania": 1500,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4910,
+ "shinutiNormalDuet": 2680,
+ "shinutiHardDuet": 2370,
+ "shinutiManiaDuet": 1500,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001230,
+ "scoreNormal": 1002340,
+ "scoreHard": 1003740,
+ "scoreMania": 1005000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 835,
+ "id": "3d3b2x",
+ "songFileName": "song_3d3b2x",
+ "order": 1041,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4430,
+ "shinutiNormal": 2810,
+ "shinutiHard": 1550,
+ "shinutiMania": 1060,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4430,
+ "shinutiNormalDuet": 2810,
+ "shinutiHardDuet": 1550,
+ "shinutiManiaDuet": 1060,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001970,
+ "scoreNormal": 1002800,
+ "scoreHard": 1001550,
+ "scoreMania": 1005410,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 836,
+ "id": "aino",
+ "songFileName": "song_aino",
+ "order": 1150,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 8,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7680,
+ "shinutiNormal": 6970,
+ "shinutiHard": 3760,
+ "shinutiMania": 4220,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7680,
+ "shinutiNormalDuet": 6970,
+ "shinutiHardDuet": 3760,
+ "shinutiManiaDuet": 4220,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000660,
+ "scoreNormal": 1001310,
+ "scoreHard": 0,
+ "scoreMania": 1000140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 837,
+ "id": "apollo",
+ "songFileName": "song_apollo",
+ "order": 1207,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 2,
+ "starUra": 8,
+ "shinutiEasy": 14410,
+ "shinutiNormal": 7650,
+ "shinutiHard": 4720,
+ "shinutiMania": 4370,
+ "shinutiUra": 1950,
+ "shinutiEasyDuet": 14410,
+ "shinutiNormalDuet": 7650,
+ "shinutiHardDuet": 4720,
+ "shinutiManiaDuet": 4370,
+ "shinutiUraDuet": 1950,
+ "scoreEasy": 1000330,
+ "scoreNormal": 1000620,
+ "scoreHard": 1001680,
+ "scoreMania": 1000320,
+ "scoreUra": 1004680
+ },
+ {
+ "uniqueId": 838,
+ "id": "argmem",
+ "songFileName": "song_argmem",
+ "order": 1211,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7810,
+ "shinutiNormal": 4830,
+ "shinutiHard": 3160,
+ "shinutiMania": 1550,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7810,
+ "shinutiNormalDuet": 4830,
+ "shinutiHardDuet": 3160,
+ "shinutiManiaDuet": 1550,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000390,
+ "scoreNormal": 1001750,
+ "scoreHard": 1000810,
+ "scoreMania": 1003600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 839,
+ "id": "babel",
+ "songFileName": "song_babel",
+ "order": 1232,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6660,
+ "shinutiNormal": 4910,
+ "shinutiHard": 3310,
+ "shinutiMania": 2140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6660,
+ "shinutiNormalDuet": 4910,
+ "shinutiHardDuet": 3310,
+ "shinutiManiaDuet": 2140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000260,
+ "scoreNormal": 1000060,
+ "scoreHard": 1002820,
+ "scoreMania": 1003320,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 840,
+ "id": "bko1",
+ "songFileName": "song_bko1",
+ "order": 1250,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6460,
+ "shinutiNormal": 4340,
+ "shinutiHard": 2100,
+ "shinutiMania": 1750,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6460,
+ "shinutiNormalDuet": 4340,
+ "shinutiHardDuet": 2100,
+ "shinutiManiaDuet": 1750,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000840,
+ "scoreNormal": 1002050,
+ "scoreHard": 1001520,
+ "scoreMania": 1002750,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 841,
+ "id": "clsika",
+ "songFileName": "song_clsika",
+ "order": 1347,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 6500,
+ "shinutiNormal": 4590,
+ "shinutiHard": 2910,
+ "shinutiMania": 2450,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6500,
+ "shinutiNormalDuet": 4590,
+ "shinutiHardDuet": 2910,
+ "shinutiManiaDuet": 2450,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001000,
+ "scoreNormal": 1000620,
+ "scoreHard": 1001040,
+ "scoreMania": 1002050,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 842,
+ "id": "clslps",
+ "songFileName": "song_clslps",
+ "order": 1370,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7190,
+ "shinutiNormal": 4930,
+ "shinutiHard": 2450,
+ "shinutiMania": 1710,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7190,
+ "shinutiNormalDuet": 4930,
+ "shinutiHardDuet": 2450,
+ "shinutiManiaDuet": 1710,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000110,
+ "scoreNormal": 1001520,
+ "scoreHard": 1001000,
+ "scoreMania": 1002140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 843,
+ "id": "clsn",
+ "songFileName": "song_clsn",
+ "order": 1384,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6140,
+ "shinutiNormal": 4740,
+ "shinutiHard": 2750,
+ "shinutiMania": 1980,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6140,
+ "shinutiNormalDuet": 4740,
+ "shinutiHardDuet": 2750,
+ "shinutiManiaDuet": 1980,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000980,
+ "scoreNormal": 1001970,
+ "scoreHard": 1001000,
+ "scoreMania": 1002650,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 844,
+ "id": "clsrad",
+ "songFileName": "song_clsrad",
+ "order": 1391,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 5430,
+ "shinutiNormal": 3090,
+ "shinutiHard": 2230,
+ "shinutiMania": 1730,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5430,
+ "shinutiNormalDuet": 3090,
+ "shinutiHardDuet": 2230,
+ "shinutiManiaDuet": 1730,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001170,
+ "scoreNormal": 1000560,
+ "scoreHard": 1001540,
+ "scoreMania": 1000160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 845,
+ "id": "coro4",
+ "songFileName": "song_coro4",
+ "order": 1416,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 16570,
+ "shinutiNormal": 8090,
+ "shinutiHard": 4330,
+ "shinutiMania": 3280,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16570,
+ "shinutiNormalDuet": 8090,
+ "shinutiHardDuet": 4330,
+ "shinutiManiaDuet": 3280,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1000850,
+ "scoreHard": 1000580,
+ "scoreMania": 1001870,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 846,
+ "id": "crturb",
+ "songFileName": "song_crturb",
+ "order": 1426,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8100,
+ "shinutiNormal": 6110,
+ "shinutiHard": 2310,
+ "shinutiMania": 1530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8100,
+ "shinutiNormalDuet": 6110,
+ "shinutiHardDuet": 2310,
+ "shinutiManiaDuet": 1530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000920,
+ "scoreNormal": 1001580,
+ "scoreHard": 1003310,
+ "scoreMania": 1006350,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 847,
+ "id": "cs4op",
+ "songFileName": "song_cs4op",
+ "order": 1429,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 5410,
+ "shinutiNormal": 4230,
+ "shinutiHard": 2790,
+ "shinutiMania": 2350,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5410,
+ "shinutiNormalDuet": 4230,
+ "shinutiHardDuet": 2790,
+ "shinutiManiaDuet": 2350,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1000510,
+ "scoreHard": 1000500,
+ "scoreMania": 1001510,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 848,
+ "id": "csabop",
+ "songFileName": "song_csabop",
+ "order": 1431,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7440,
+ "shinutiNormal": 5660,
+ "shinutiHard": 3270,
+ "shinutiMania": 1770,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7440,
+ "shinutiNormalDuet": 5660,
+ "shinutiHardDuet": 3270,
+ "shinutiManiaDuet": 1770,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000730,
+ "scoreNormal": 1001420,
+ "scoreHard": 1000940,
+ "scoreMania": 1003590,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 849,
+ "id": "dariu2",
+ "songFileName": "song_dariu2",
+ "order": 1444,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5770,
+ "shinutiNormal": 4250,
+ "shinutiHard": 2520,
+ "shinutiMania": 1340,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5770,
+ "shinutiNormalDuet": 4250,
+ "shinutiHardDuet": 2520,
+ "shinutiManiaDuet": 1340,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1002300,
+ "scoreHard": 1001320,
+ "scoreMania": 1003920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 850,
+ "id": "digmon",
+ "songFileName": "song_digmon",
+ "order": 1485,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9920,
+ "shinutiNormal": 6920,
+ "shinutiHard": 3250,
+ "shinutiMania": 2560,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9920,
+ "shinutiNormalDuet": 6920,
+ "shinutiHardDuet": 3250,
+ "shinutiManiaDuet": 2560,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000490,
+ "scoreNormal": 1001380,
+ "scoreHard": 1000100,
+ "scoreMania": 1002580,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 851,
+ "id": "dlearn",
+ "songFileName": "song_dlearn",
+ "order": 1493,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 9,
+ "shinutiEasy": 6900,
+ "shinutiNormal": 4190,
+ "shinutiHard": 2410,
+ "shinutiMania": 1640,
+ "shinutiUra": 1720,
+ "shinutiEasyDuet": 6900,
+ "shinutiNormalDuet": 4190,
+ "shinutiHardDuet": 2410,
+ "shinutiManiaDuet": 1640,
+ "shinutiUraDuet": 1720,
+ "scoreEasy": 1000570,
+ "scoreNormal": 1001680,
+ "scoreHard": 1003450,
+ "scoreMania": 1003410,
+ "scoreUra": 1001440
+ },
+ {
+ "uniqueId": 852,
+ "id": "drsb",
+ "songFileName": "song_drsb",
+ "order": 1540,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 4290,
+ "shinutiNormal": 3280,
+ "shinutiHard": 1780,
+ "shinutiMania": 1290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4290,
+ "shinutiNormalDuet": 3280,
+ "shinutiHardDuet": 1780,
+ "shinutiManiaDuet": 1290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000180,
+ "scoreNormal": 1002190,
+ "scoreHard": 1002290,
+ "scoreMania": 1005330,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 853,
+ "id": "ds3bs2",
+ "songFileName": "song_ds3bs2",
+ "order": 1550,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7250,
+ "shinutiNormal": 4850,
+ "shinutiHard": 2180,
+ "shinutiMania": 1610,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7250,
+ "shinutiNormalDuet": 4850,
+ "shinutiHardDuet": 2180,
+ "shinutiManiaDuet": 1610,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000250,
+ "scoreNormal": 1000380,
+ "scoreHard": 1000200,
+ "scoreMania": 1004160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 854,
+ "id": "excsab",
+ "songFileName": "song_excsab",
+ "order": 1584,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 2780,
+ "shinutiNormal": 2330,
+ "shinutiHard": 1310,
+ "shinutiMania": 1020,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 2780,
+ "shinutiNormalDuet": 2330,
+ "shinutiHardDuet": 1310,
+ "shinutiManiaDuet": 1020,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001460,
+ "scoreNormal": 1003780,
+ "scoreHard": 1005800,
+ "scoreMania": 1002350,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 855,
+ "id": "exnao",
+ "songFileName": "song_exnao",
+ "order": 1585,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 3850,
+ "shinutiNormal": 2860,
+ "shinutiHard": 1630,
+ "shinutiMania": 1010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3850,
+ "shinutiNormalDuet": 2860,
+ "shinutiHardDuet": 1630,
+ "shinutiManiaDuet": 1010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001830,
+ "scoreNormal": 1001310,
+ "scoreHard": 1000220,
+ "scoreMania": 1008990,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 856,
+ "id": "exw2b2",
+ "songFileName": "song_exw2b2",
+ "order": 1587,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 5,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 3840,
+ "shinutiNormal": 3100,
+ "shinutiHard": 1480,
+ "shinutiMania": 1020,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3840,
+ "shinutiNormalDuet": 3100,
+ "shinutiHardDuet": 1480,
+ "shinutiManiaDuet": 1020,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000820,
+ "scoreNormal": 1002260,
+ "scoreHard": 1003340,
+ "scoreMania": 1005420,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 857,
+ "id": "flksak",
+ "songFileName": "song_flksak",
+ "order": 1607,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11560,
+ "shinutiNormal": 6300,
+ "shinutiHard": 3620,
+ "shinutiMania": 2750,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11560,
+ "shinutiNormalDuet": 6300,
+ "shinutiHardDuet": 3620,
+ "shinutiManiaDuet": 2750,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000650,
+ "scoreNormal": 1000010,
+ "scoreHard": 1002160,
+ "scoreMania": 1003200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 858,
+ "id": "gimcho",
+ "songFileName": "song_gimcho",
+ "order": 1676,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 10,
+ "shinutiEasy": 5260,
+ "shinutiNormal": 2940,
+ "shinutiHard": 1470,
+ "shinutiMania": 1170,
+ "shinutiUra": 890,
+ "shinutiEasyDuet": 5260,
+ "shinutiNormalDuet": 2940,
+ "shinutiHardDuet": 1470,
+ "shinutiManiaDuet": 1170,
+ "shinutiUraDuet": 890,
+ "scoreEasy": 1000910,
+ "scoreNormal": 1000160,
+ "scoreHard": 1004370,
+ "scoreMania": 1007370,
+ "scoreUra": 1011040
+ },
+ {
+ "uniqueId": 859,
+ "id": "gldnkm",
+ "songFileName": "song_gldnkm",
+ "order": 1683,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10500,
+ "shinutiNormal": 6270,
+ "shinutiHard": 3960,
+ "shinutiMania": 3050,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10500,
+ "shinutiNormalDuet": 6270,
+ "shinutiHardDuet": 3960,
+ "shinutiManiaDuet": 3050,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000130,
+ "scoreNormal": 1000060,
+ "scoreHard": 1000640,
+ "scoreMania": 1001170,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 861,
+ "id": "go9ra9",
+ "songFileName": "song_go9ra9",
+ "order": 1693,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10380,
+ "shinutiNormal": 6640,
+ "shinutiHard": 4880,
+ "shinutiMania": 3320,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10380,
+ "shinutiNormalDuet": 6640,
+ "shinutiHardDuet": 4880,
+ "shinutiManiaDuet": 3320,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000180,
+ "scoreNormal": 1000760,
+ "scoreHard": 1000870,
+ "scoreMania": 1001780,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 862,
+ "id": "gumis2",
+ "songFileName": "song_gumis2",
+ "order": 1723,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 7320,
+ "shinutiNormal": 5410,
+ "shinutiHard": 2830,
+ "shinutiMania": 1940,
+ "shinutiUra": 1440,
+ "shinutiEasyDuet": 7320,
+ "shinutiNormalDuet": 5410,
+ "shinutiHardDuet": 2830,
+ "shinutiManiaDuet": 1940,
+ "shinutiUraDuet": 1440,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1000770,
+ "scoreHard": 1003030,
+ "scoreMania": 1001340,
+ "scoreUra": 1003010
+ },
+ {
+ "uniqueId": 863,
+ "id": "hkitty",
+ "songFileName": "song_hkitty",
+ "order": 1766,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 20760,
+ "shinutiNormal": 12020,
+ "shinutiHard": 9480,
+ "shinutiMania": 4990,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 20760,
+ "shinutiNormalDuet": 12020,
+ "shinutiHardDuet": 9480,
+ "shinutiManiaDuet": 4990,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000190,
+ "scoreNormal": 1000460,
+ "scoreHard": 1000400,
+ "scoreMania": 1001140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 864,
+ "id": "hsgirl",
+ "songFileName": "song_hsgirl",
+ "order": 1789,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7300,
+ "shinutiNormal": 4120,
+ "shinutiHard": 3230,
+ "shinutiMania": 2160,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7300,
+ "shinutiNormalDuet": 4120,
+ "shinutiHardDuet": 3230,
+ "shinutiManiaDuet": 2160,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000990,
+ "scoreNormal": 1000490,
+ "scoreHard": 1000250,
+ "scoreMania": 1003920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 865,
+ "id": "hypmic",
+ "songFileName": "song_hypmic",
+ "order": 1796,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 2430,
+ "shinutiNormal": 1560,
+ "shinutiHard": 800,
+ "shinutiMania": 600,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 2430,
+ "shinutiNormalDuet": 1560,
+ "shinutiHardDuet": 800,
+ "shinutiManiaDuet": 600,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000270,
+ "scoreNormal": 1002050,
+ "scoreHard": 1009480,
+ "scoreMania": 1000310,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 866,
+ "id": "imsnex",
+ "songFileName": "song_imsnex",
+ "order": 1901,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6560,
+ "shinutiNormal": 5440,
+ "shinutiHard": 2640,
+ "shinutiMania": 1150,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6560,
+ "shinutiNormalDuet": 5440,
+ "shinutiHardDuet": 2640,
+ "shinutiManiaDuet": 1150,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000120,
+ "scoreNormal": 1001410,
+ "scoreHard": 1002230,
+ "scoreMania": 1007400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 867,
+ "id": "insidm",
+ "songFileName": "song_insidm",
+ "order": 1938,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5270,
+ "shinutiNormal": 3000,
+ "shinutiHard": 1900,
+ "shinutiMania": 1230,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5270,
+ "shinutiNormalDuet": 3000,
+ "shinutiHardDuet": 1900,
+ "shinutiManiaDuet": 1230,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000040,
+ "scoreNormal": 1001880,
+ "scoreHard": 1001530,
+ "scoreMania": 1003250,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 868,
+ "id": "iswaze",
+ "songFileName": "song_iswaze",
+ "order": 1953,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4960,
+ "shinutiNormal": 3890,
+ "shinutiHard": 2100,
+ "shinutiMania": 1560,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4960,
+ "shinutiNormalDuet": 3890,
+ "shinutiHardDuet": 2100,
+ "shinutiManiaDuet": 1560,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000620,
+ "scoreNormal": 1000730,
+ "scoreHard": 1002070,
+ "scoreMania": 1000920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 869,
+ "id": "jazz2",
+ "songFileName": "song_jazz2",
+ "order": 1968,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 17170,
+ "shinutiNormal": 11600,
+ "shinutiHard": 6400,
+ "shinutiMania": 4350,
+ "shinutiUra": 2450,
+ "shinutiEasyDuet": 17170,
+ "shinutiNormalDuet": 11600,
+ "shinutiHardDuet": 6400,
+ "shinutiManiaDuet": 4350,
+ "shinutiUraDuet": 2450,
+ "scoreEasy": 1000160,
+ "scoreNormal": 1000760,
+ "scoreHard": 1000990,
+ "scoreMania": 1002250,
+ "scoreUra": 1000660
+ },
+ {
+ "uniqueId": 870,
+ "id": "kahim",
+ "songFileName": "song_kahim",
+ "order": 1991,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 10,
+ "shinutiEasy": 5530,
+ "shinutiNormal": 3730,
+ "shinutiHard": 2170,
+ "shinutiMania": 1620,
+ "shinutiUra": 890,
+ "shinutiEasyDuet": 5530,
+ "shinutiNormalDuet": 3730,
+ "shinutiHardDuet": 2170,
+ "shinutiManiaDuet": 1620,
+ "shinutiUraDuet": 890,
+ "scoreEasy": 1001580,
+ "scoreNormal": 1001180,
+ "scoreHard": 1002780,
+ "scoreMania": 1001650,
+ "scoreUra": 1002030
+ },
+ {
+ "uniqueId": 871,
+ "id": "keion",
+ "songFileName": "song_keion",
+ "order": 2010,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7550,
+ "shinutiNormal": 4840,
+ "shinutiHard": 3090,
+ "shinutiMania": 1920,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7550,
+ "shinutiNormalDuet": 4840,
+ "shinutiHardDuet": 3090,
+ "shinutiManiaDuet": 1920,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000230,
+ "scoreNormal": 1001840,
+ "scoreHard": 1001960,
+ "scoreMania": 1002510,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 872,
+ "id": "kmbaby",
+ "songFileName": "song_kmbaby",
+ "order": 2057,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7220,
+ "shinutiNormal": 4520,
+ "shinutiHard": 2030,
+ "shinutiMania": 1670,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7220,
+ "shinutiNormalDuet": 4520,
+ "shinutiHardDuet": 2030,
+ "shinutiManiaDuet": 1670,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001160,
+ "scoreNormal": 1000420,
+ "scoreHard": 1002740,
+ "scoreMania": 1000540,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 873,
+ "id": "ksrain",
+ "songFileName": "song_ksrain",
+ "order": 2085,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 8,
+ "shinutiEasy": 6180,
+ "shinutiNormal": 4090,
+ "shinutiHard": 2930,
+ "shinutiMania": 2300,
+ "shinutiUra": 1500,
+ "shinutiEasyDuet": 6180,
+ "shinutiNormalDuet": 4090,
+ "shinutiHardDuet": 2930,
+ "shinutiManiaDuet": 2300,
+ "shinutiUraDuet": 1500,
+ "scoreEasy": 1001160,
+ "scoreNormal": 1002050,
+ "scoreHard": 1002060,
+ "scoreMania": 1001880,
+ "scoreUra": 1005720
+ },
+ {
+ "uniqueId": 874,
+ "id": "mappy2",
+ "songFileName": "song_mappy2",
+ "order": 2175,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5830,
+ "shinutiNormal": 3970,
+ "shinutiHard": 2370,
+ "shinutiMania": 1580,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5830,
+ "shinutiNormalDuet": 3970,
+ "shinutiHardDuet": 2370,
+ "shinutiManiaDuet": 1580,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000570,
+ "scoreNormal": 1000040,
+ "scoreHard": 1001220,
+ "scoreMania": 1000980,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 876,
+ "id": "mikugk",
+ "songFileName": "song_mikugk",
+ "order": 2243,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 10,
+ "starUra": 10,
+ "shinutiEasy": 4080,
+ "shinutiNormal": 2950,
+ "shinutiHard": 2360,
+ "shinutiMania": 1410,
+ "shinutiUra": 1000,
+ "shinutiEasyDuet": 4080,
+ "shinutiNormalDuet": 2950,
+ "shinutiHardDuet": 2360,
+ "shinutiManiaDuet": 1410,
+ "shinutiUraDuet": 1000,
+ "scoreEasy": 1001010,
+ "scoreNormal": 1001380,
+ "scoreHard": 1003330,
+ "scoreMania": 1003130,
+ "scoreUra": 1002130
+ },
+ {
+ "uniqueId": 877,
+ "id": "moji",
+ "songFileName": "song_moji",
+ "order": 2283,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 3,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 4970,
+ "shinutiNormal": 3830,
+ "shinutiHard": 2960,
+ "shinutiMania": 1360,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4970,
+ "shinutiNormalDuet": 3830,
+ "shinutiHardDuet": 2960,
+ "shinutiManiaDuet": 1360,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001160,
+ "scoreNormal": 1000190,
+ "scoreHard": 1001640,
+ "scoreMania": 1005040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 878,
+ "id": "neverl",
+ "songFileName": "song_neverl",
+ "order": 2340,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 9440,
+ "shinutiNormal": 6070,
+ "shinutiHard": 2910,
+ "shinutiMania": 2020,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9440,
+ "shinutiNormalDuet": 6070,
+ "shinutiHardDuet": 2910,
+ "shinutiManiaDuet": 2020,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000430,
+ "scoreHard": 1002630,
+ "scoreMania": 1002130,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 879,
+ "id": "omirai",
+ "songFileName": "song_omirai",
+ "order": 2378,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7320,
+ "shinutiNormal": 5460,
+ "shinutiHard": 2850,
+ "shinutiMania": 1600,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7320,
+ "shinutiNormalDuet": 5460,
+ "shinutiHardDuet": 2850,
+ "shinutiManiaDuet": 1600,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000990,
+ "scoreNormal": 1000890,
+ "scoreHard": 1000210,
+ "scoreMania": 1001790,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 880,
+ "id": "r4nak",
+ "songFileName": "song_r4nak",
+ "order": 2501,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5080,
+ "shinutiNormal": 3580,
+ "shinutiHard": 1700,
+ "shinutiMania": 1220,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5080,
+ "shinutiNormalDuet": 3580,
+ "shinutiHardDuet": 1700,
+ "shinutiManiaDuet": 1220,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000810,
+ "scoreNormal": 1001280,
+ "scoreHard": 1000770,
+ "scoreMania": 1007760,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 881,
+ "id": "saoop",
+ "songFileName": "song_saoop",
+ "order": 2584,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 12240,
+ "shinutiNormal": 8180,
+ "shinutiHard": 4620,
+ "shinutiMania": 3310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12240,
+ "shinutiNormalDuet": 8180,
+ "shinutiHardDuet": 4620,
+ "shinutiManiaDuet": 3310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1000170,
+ "scoreHard": 1000900,
+ "scoreMania": 1000340,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 882,
+ "id": "senval",
+ "songFileName": "song_senval",
+ "order": 2601,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5910,
+ "shinutiNormal": 3700,
+ "shinutiHard": 2280,
+ "shinutiMania": 1630,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5910,
+ "shinutiNormalDuet": 3700,
+ "shinutiHardDuet": 2280,
+ "shinutiManiaDuet": 1630,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001140,
+ "scoreNormal": 1000190,
+ "scoreHard": 1003550,
+ "scoreMania": 1005560,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 883,
+ "id": "so2omf",
+ "songFileName": "song_so2omf",
+ "order": 2654,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 3300,
+ "shinutiNormal": 1750,
+ "shinutiHard": 1200,
+ "shinutiMania": 680,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3300,
+ "shinutiNormalDuet": 1750,
+ "shinutiHardDuet": 1200,
+ "shinutiManiaDuet": 680,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000360,
+ "scoreNormal": 1004700,
+ "scoreHard": 1004110,
+ "scoreMania": 1011160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 884,
+ "id": "solstr",
+ "songFileName": "song_solstr",
+ "order": 2659,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7080,
+ "shinutiNormal": 3320,
+ "shinutiHard": 2120,
+ "shinutiMania": 1280,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7080,
+ "shinutiNormalDuet": 3320,
+ "shinutiHardDuet": 2120,
+ "shinutiManiaDuet": 1280,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001050,
+ "scoreNormal": 1002390,
+ "scoreHard": 1002890,
+ "scoreMania": 1006660,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 885,
+ "id": "tkwata",
+ "songFileName": "song_tkwata",
+ "order": 2802,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5360,
+ "shinutiNormal": 3460,
+ "shinutiHard": 2230,
+ "shinutiMania": 1460,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5360,
+ "shinutiNormalDuet": 3460,
+ "shinutiHardDuet": 2230,
+ "shinutiManiaDuet": 1460,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001540,
+ "scoreNormal": 1000510,
+ "scoreHard": 1000270,
+ "scoreMania": 1003080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 886,
+ "id": "tkym2",
+ "songFileName": "song_tkym2",
+ "order": 2803,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5360,
+ "shinutiNormal": 4450,
+ "shinutiHard": 2870,
+ "shinutiMania": 2130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5360,
+ "shinutiNormalDuet": 4450,
+ "shinutiHardDuet": 2870,
+ "shinutiManiaDuet": 2130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001200,
+ "scoreNormal": 1000390,
+ "scoreHard": 1003070,
+ "scoreMania": 1003080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 887,
+ "id": "tnkgrd",
+ "songFileName": "song_tnkgrd",
+ "order": 2807,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10070,
+ "shinutiNormal": 6270,
+ "shinutiHard": 3260,
+ "shinutiMania": 1800,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10070,
+ "shinutiNormalDuet": 6270,
+ "shinutiHardDuet": 3260,
+ "shinutiManiaDuet": 1800,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000340,
+ "scoreNormal": 1001350,
+ "scoreHard": 1000720,
+ "scoreMania": 1000520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 888,
+ "id": "tobers",
+ "songFileName": "song_tobers",
+ "order": 2634,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7760,
+ "shinutiNormal": 3740,
+ "shinutiHard": 2150,
+ "shinutiMania": 1490,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7760,
+ "shinutiNormalDuet": 3740,
+ "shinutiHardDuet": 2150,
+ "shinutiManiaDuet": 1490,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001040,
+ "scoreNormal": 1002320,
+ "scoreHard": 1001900,
+ "scoreMania": 1005750,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 889,
+ "id": "tongat",
+ "songFileName": "song_tongat",
+ "order": 2817,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 9980,
+ "shinutiNormal": 6050,
+ "shinutiHard": 4890,
+ "shinutiMania": 2100,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9980,
+ "shinutiNormalDuet": 6050,
+ "shinutiHardDuet": 4890,
+ "shinutiManiaDuet": 2100,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000980,
+ "scoreNormal": 1000280,
+ "scoreHard": 1000520,
+ "scoreMania": 1002300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 890,
+ "id": "udtkkr",
+ "songFileName": "song_udtkkr",
+ "order": 2863,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8910,
+ "shinutiNormal": 4350,
+ "shinutiHard": 2840,
+ "shinutiMania": 1730,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8910,
+ "shinutiNormalDuet": 4350,
+ "shinutiHardDuet": 2840,
+ "shinutiManiaDuet": 1730,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000850,
+ "scoreNormal": 1001620,
+ "scoreHard": 1003130,
+ "scoreMania": 1000180,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 891,
+ "id": "uminok",
+ "songFileName": "song_uminok",
+ "order": 2889,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 16810,
+ "shinutiNormal": 10500,
+ "shinutiHard": 5050,
+ "shinutiMania": 3770,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16810,
+ "shinutiNormalDuet": 10500,
+ "shinutiHardDuet": 5050,
+ "shinutiManiaDuet": 3770,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000500,
+ "scoreNormal": 1000480,
+ "scoreHard": 1001070,
+ "scoreMania": 1001400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 892,
+ "id": "wblade",
+ "songFileName": "song_wblade",
+ "order": 2939,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6340,
+ "shinutiNormal": 2810,
+ "shinutiHard": 1910,
+ "shinutiMania": 1430,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6340,
+ "shinutiNormalDuet": 2810,
+ "shinutiHardDuet": 1910,
+ "shinutiManiaDuet": 1430,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000620,
+ "scoreNormal": 1002930,
+ "scoreHard": 1003400,
+ "scoreMania": 1002690,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 893,
+ "id": "wii5op",
+ "songFileName": "song_wii5op",
+ "order": 2950,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9900,
+ "shinutiNormal": 6770,
+ "shinutiHard": 4040,
+ "shinutiMania": 2490,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9900,
+ "shinutiNormalDuet": 6770,
+ "shinutiHardDuet": 4040,
+ "shinutiManiaDuet": 2490,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000260,
+ "scoreNormal": 1000800,
+ "scoreHard": 1002430,
+ "scoreMania": 1002930,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 894,
+ "id": "zootop",
+ "songFileName": "song_zootop",
+ "order": 3031,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 3,
+ "starUra": 0,
+ "shinutiEasy": 15820,
+ "shinutiNormal": 7660,
+ "shinutiHard": 6050,
+ "shinutiMania": 4880,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15820,
+ "shinutiNormalDuet": 7660,
+ "shinutiHardDuet": 6050,
+ "shinutiManiaDuet": 4880,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1001010,
+ "scoreHard": 1001120,
+ "scoreMania": 1000550,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 895,
+ "id": "20tanm",
+ "songFileName": "song_20tanm",
+ "order": 1014,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10710,
+ "shinutiNormal": 7150,
+ "shinutiHard": 4090,
+ "shinutiMania": 2810,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10710,
+ "shinutiNormalDuet": 7150,
+ "shinutiHardDuet": 4090,
+ "shinutiManiaDuet": 2810,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000690,
+ "scoreNormal": 1000250,
+ "scoreHard": 1002410,
+ "scoreMania": 1001430,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 896,
+ "id": "20tbtu",
+ "songFileName": "song_20tbtu",
+ "order": 1016,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5160,
+ "shinutiNormal": 3480,
+ "shinutiHard": 2260,
+ "shinutiMania": 1160,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5160,
+ "shinutiNormalDuet": 3480,
+ "shinutiHardDuet": 2260,
+ "shinutiManiaDuet": 1160,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001230,
+ "scoreNormal": 1001840,
+ "scoreHard": 1000610,
+ "scoreMania": 1005720,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 897,
+ "id": "20tcty",
+ "songFileName": "song_20tcty",
+ "order": 1017,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 11560,
+ "shinutiNormal": 6400,
+ "shinutiHard": 3220,
+ "shinutiMania": 2170,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11560,
+ "shinutiNormalDuet": 6400,
+ "shinutiHardDuet": 3220,
+ "shinutiManiaDuet": 2170,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000840,
+ "scoreNormal": 1001140,
+ "scoreHard": 1002440,
+ "scoreMania": 1001150,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 898,
+ "id": "20tdnc",
+ "songFileName": "song_20tdnc",
+ "order": 1018,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8270,
+ "shinutiNormal": 5100,
+ "shinutiHard": 3510,
+ "shinutiMania": 1790,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8270,
+ "shinutiNormalDuet": 5100,
+ "shinutiHardDuet": 3510,
+ "shinutiManiaDuet": 1790,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000920,
+ "scoreNormal": 1000050,
+ "scoreHard": 1000260,
+ "scoreMania": 1002510,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 899,
+ "id": "20tfes",
+ "songFileName": "song_20tfes",
+ "order": 1019,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6430,
+ "shinutiNormal": 4130,
+ "shinutiHard": 2140,
+ "shinutiMania": 1290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6430,
+ "shinutiNormalDuet": 4130,
+ "shinutiHardDuet": 2140,
+ "shinutiManiaDuet": 1290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000810,
+ "scoreNormal": 1000890,
+ "scoreHard": 1003260,
+ "scoreMania": 1000840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 900,
+ "id": "20tftb",
+ "songFileName": "song_20tftb",
+ "order": 1019,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6060,
+ "shinutiNormal": 3740,
+ "shinutiHard": 2480,
+ "shinutiMania": 1390,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6060,
+ "shinutiNormalDuet": 3740,
+ "shinutiHardDuet": 2480,
+ "shinutiManiaDuet": 1390,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001520,
+ "scoreNormal": 1000760,
+ "scoreHard": 1000440,
+ "scoreMania": 1003940,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 901,
+ "id": "20thei",
+ "songFileName": "song_20thei",
+ "order": 1022,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 5550,
+ "shinutiNormal": 3050,
+ "shinutiHard": 2310,
+ "shinutiMania": 1780,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5550,
+ "shinutiNormalDuet": 3050,
+ "shinutiHardDuet": 2310,
+ "shinutiManiaDuet": 1780,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000520,
+ "scoreNormal": 1002290,
+ "scoreHard": 1003510,
+ "scoreMania": 1003660,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 902,
+ "id": "20tidl",
+ "songFileName": "song_20tidl",
+ "order": 1023,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5210,
+ "shinutiNormal": 3370,
+ "shinutiHard": 1920,
+ "shinutiMania": 1330,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5210,
+ "shinutiNormalDuet": 3370,
+ "shinutiHardDuet": 1920,
+ "shinutiManiaDuet": 1330,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000160,
+ "scoreNormal": 1002410,
+ "scoreHard": 1000500,
+ "scoreMania": 1002160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 903,
+ "id": "20tvcl",
+ "songFileName": "song_20tvcl",
+ "order": 1024,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4040,
+ "shinutiNormal": 2800,
+ "shinutiHard": 1770,
+ "shinutiMania": 1130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4040,
+ "shinutiNormalDuet": 2800,
+ "shinutiHardDuet": 1770,
+ "shinutiManiaDuet": 1130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000490,
+ "scoreNormal": 1002350,
+ "scoreHard": 1001200,
+ "scoreMania": 1003440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 904,
+ "id": "366day",
+ "songFileName": "song_366day",
+ "order": 1036,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10130,
+ "shinutiNormal": 6720,
+ "shinutiHard": 4650,
+ "shinutiMania": 2530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10130,
+ "shinutiNormalDuet": 6720,
+ "shinutiHardDuet": 4650,
+ "shinutiManiaDuet": 2530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000780,
+ "scoreNormal": 1000640,
+ "scoreHard": 1001970,
+ "scoreMania": 1000830,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 905,
+ "id": "3d3b1x",
+ "songFileName": "song_3d3b1x",
+ "order": 1040,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4320,
+ "shinutiNormal": 3370,
+ "shinutiHard": 1720,
+ "shinutiMania": 1140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4320,
+ "shinutiNormalDuet": 3370,
+ "shinutiHardDuet": 1720,
+ "shinutiManiaDuet": 1140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001910,
+ "scoreNormal": 1001600,
+ "scoreHard": 1000940,
+ "scoreMania": 1001820,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 906,
+ "id": "4nkari",
+ "songFileName": "song_4nkari",
+ "order": 1054,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 12220,
+ "shinutiNormal": 7980,
+ "shinutiHard": 3960,
+ "shinutiMania": 2770,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12220,
+ "shinutiNormalDuet": 7980,
+ "shinutiHardDuet": 3960,
+ "shinutiManiaDuet": 2770,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000260,
+ "scoreNormal": 1000150,
+ "scoreHard": 1002500,
+ "scoreMania": 1001810,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 907,
+ "id": "adodo",
+ "songFileName": "song_adodo",
+ "order": 1143,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9060,
+ "shinutiNormal": 5920,
+ "shinutiHard": 3430,
+ "shinutiMania": 2270,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9060,
+ "shinutiNormalDuet": 5920,
+ "shinutiHardDuet": 3430,
+ "shinutiManiaDuet": 2270,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000720,
+ "scoreNormal": 1000120,
+ "scoreHard": 1001940,
+ "scoreMania": 1001130,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 908,
+ "id": "adusse",
+ "songFileName": "song_adusse",
+ "order": 1144,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 12310,
+ "shinutiNormal": 8300,
+ "shinutiHard": 5140,
+ "shinutiMania": 2380,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12310,
+ "shinutiNormalDuet": 8300,
+ "shinutiHardDuet": 5140,
+ "shinutiManiaDuet": 2380,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000360,
+ "scoreNormal": 1000040,
+ "scoreHard": 1000600,
+ "scoreMania": 1001970,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 909,
+ "id": "anadrm",
+ "songFileName": "song_anadrm",
+ "order": 1185,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 3,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 33050,
+ "shinutiNormal": 13600,
+ "shinutiHard": 6300,
+ "shinutiMania": 4030,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 33050,
+ "shinutiNormalDuet": 13600,
+ "shinutiHardDuet": 6300,
+ "shinutiManiaDuet": 4030,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000020,
+ "scoreNormal": 1000590,
+ "scoreHard": 1000440,
+ "scoreMania": 1001970,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 910,
+ "id": "anaint",
+ "songFileName": "song_anaint",
+ "order": 1186,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 21050,
+ "shinutiNormal": 14950,
+ "shinutiHard": 6870,
+ "shinutiMania": 4230,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 21050,
+ "shinutiNormalDuet": 14950,
+ "shinutiHardDuet": 6870,
+ "shinutiManiaDuet": 4230,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000290,
+ "scoreNormal": 1000460,
+ "scoreHard": 1001130,
+ "scoreMania": 1001630,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 911,
+ "id": "beasta",
+ "songFileName": "song_beasta",
+ "order": 1243,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10150,
+ "shinutiNormal": 5080,
+ "shinutiHard": 3250,
+ "shinutiMania": 2150,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10150,
+ "shinutiNormalDuet": 5080,
+ "shinutiHardDuet": 3250,
+ "shinutiManiaDuet": 2150,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000420,
+ "scoreNormal": 1001380,
+ "scoreHard": 1000350,
+ "scoreMania": 1002200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 912,
+ "id": "bko4",
+ "songFileName": "song_bko4",
+ "order": 1254,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 9,
+ "shinutiEasy": 8810,
+ "shinutiNormal": 6030,
+ "shinutiHard": 3790,
+ "shinutiMania": 2900,
+ "shinutiUra": 1780,
+ "shinutiEasyDuet": 8810,
+ "shinutiNormalDuet": 6030,
+ "shinutiHardDuet": 3790,
+ "shinutiManiaDuet": 2900,
+ "shinutiUraDuet": 1780,
+ "scoreEasy": 1000820,
+ "scoreNormal": 1000040,
+ "scoreHard": 1001120,
+ "scoreMania": 1001700,
+ "scoreUra": 1003060
+ },
+ {
+ "uniqueId": 913,
+ "id": "bluesa",
+ "songFileName": "song_bluesa",
+ "order": 1262,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 8,
+ "shinutiEasy": 3930,
+ "shinutiNormal": 3930,
+ "shinutiHard": 3930,
+ "shinutiMania": 3320,
+ "shinutiUra": 2160,
+ "shinutiEasyDuet": 3930,
+ "shinutiNormalDuet": 3930,
+ "shinutiHardDuet": 3930,
+ "shinutiManiaDuet": 3320,
+ "shinutiUraDuet": 2160,
+ "scoreEasy": 1000420,
+ "scoreNormal": 1000820,
+ "scoreHard": 1001720,
+ "scoreMania": 1001640,
+ "scoreUra": 1000180
+ },
+ {
+ "uniqueId": 914,
+ "id": "bokmit",
+ "songFileName": "song_bokmit",
+ "order": 1267,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5920,
+ "shinutiNormal": 3350,
+ "shinutiHard": 2030,
+ "shinutiMania": 1470,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5920,
+ "shinutiNormalDuet": 3350,
+ "shinutiHardDuet": 2030,
+ "shinutiManiaDuet": 1470,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000790,
+ "scoreNormal": 1000190,
+ "scoreHard": 1003260,
+ "scoreMania": 1005440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 915,
+ "id": "brs",
+ "songFileName": "song_brs",
+ "order": 1273,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6000,
+ "shinutiNormal": 5280,
+ "shinutiHard": 2680,
+ "shinutiMania": 1460,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6000,
+ "shinutiNormalDuet": 5280,
+ "shinutiHardDuet": 2680,
+ "shinutiManiaDuet": 1460,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000840,
+ "scoreNormal": 1000160,
+ "scoreHard": 1002640,
+ "scoreMania": 1003230,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 916,
+ "id": "buru",
+ "songFileName": "song_buru",
+ "order": 1284,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8180,
+ "shinutiNormal": 5340,
+ "shinutiHard": 3180,
+ "shinutiMania": 2200,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8180,
+ "shinutiNormalDuet": 5340,
+ "shinutiHardDuet": 3180,
+ "shinutiManiaDuet": 2200,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000480,
+ "scoreNormal": 1001220,
+ "scoreHard": 1000980,
+ "scoreMania": 1003200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 917,
+ "id": "butamn",
+ "songFileName": "song_butamn",
+ "order": 1286,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6320,
+ "shinutiNormal": 4740,
+ "shinutiHard": 2930,
+ "shinutiMania": 2020,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6320,
+ "shinutiNormalDuet": 4740,
+ "shinutiHardDuet": 2930,
+ "shinutiManiaDuet": 2020,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000180,
+ "scoreNormal": 1000640,
+ "scoreHard": 1002510,
+ "scoreMania": 1003220,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 918,
+ "id": "chrace",
+ "songFileName": "song_chrace",
+ "order": 1339,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": true,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 6070,
+ "shinutiNormal": 3790,
+ "shinutiHard": 1950,
+ "shinutiMania": 1180,
+ "shinutiUra": 1250,
+ "shinutiEasyDuet": 6070,
+ "shinutiNormalDuet": 3790,
+ "shinutiHardDuet": 1950,
+ "shinutiManiaDuet": 1180,
+ "shinutiUraDuet": 1250,
+ "scoreEasy": 1000110,
+ "scoreNormal": 1002210,
+ "scoreHard": 1003210,
+ "scoreMania": 1005360,
+ "scoreUra": 1000000
+ },
+ {
+ "uniqueId": 919,
+ "id": "cls25",
+ "songFileName": "song_cls25",
+ "order": 1347,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 4450,
+ "shinutiNormal": 3330,
+ "shinutiHard": 1940,
+ "shinutiMania": 1600,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4450,
+ "shinutiNormalDuet": 3330,
+ "shinutiHardDuet": 1940,
+ "shinutiManiaDuet": 1600,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000650,
+ "scoreNormal": 1001060,
+ "scoreHard": 1001880,
+ "scoreMania": 1004220,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 920,
+ "id": "clscam",
+ "songFileName": "song_clscam",
+ "order": 1355,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 6,
+ "starUra": 9,
+ "shinutiEasy": 9780,
+ "shinutiNormal": 6790,
+ "shinutiHard": 3630,
+ "shinutiMania": 2540,
+ "shinutiUra": 1420,
+ "shinutiEasyDuet": 9780,
+ "shinutiNormalDuet": 6790,
+ "shinutiHardDuet": 3630,
+ "shinutiManiaDuet": 2540,
+ "shinutiUraDuet": 1420,
+ "scoreEasy": 1000120,
+ "scoreNormal": 1001130,
+ "scoreHard": 1001880,
+ "scoreMania": 1003300,
+ "scoreUra": 1003100
+ },
+ {
+ "uniqueId": 921,
+ "id": "clsh",
+ "songFileName": "song_clsh",
+ "order": 1361,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 4370,
+ "shinutiNormal": 3190,
+ "shinutiHard": 2530,
+ "shinutiMania": 2210,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4370,
+ "shinutiNormalDuet": 3190,
+ "shinutiHardDuet": 2530,
+ "shinutiManiaDuet": 2210,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001670,
+ "scoreNormal": 1001700,
+ "scoreHard": 1000800,
+ "scoreMania": 1002500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 922,
+ "id": "clsine",
+ "songFileName": "song_clsine",
+ "order": 1348,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8170,
+ "shinutiNormal": 5890,
+ "shinutiHard": 2870,
+ "shinutiMania": 2060,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8170,
+ "shinutiNormalDuet": 5890,
+ "shinutiHardDuet": 2870,
+ "shinutiManiaDuet": 2060,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000640,
+ "scoreNormal": 1000110,
+ "scoreHard": 1002530,
+ "scoreMania": 1001160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 923,
+ "id": "clslu7",
+ "songFileName": "song_clslu7",
+ "order": 1353,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5380,
+ "shinutiNormal": 3000,
+ "shinutiHard": 1600,
+ "shinutiMania": 1000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5380,
+ "shinutiNormalDuet": 3000,
+ "shinutiHardDuet": 1600,
+ "shinutiManiaDuet": 1000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000120,
+ "scoreNormal": 1000500,
+ "scoreHard": 1000100,
+ "scoreMania": 1005400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 924,
+ "id": "clsmao",
+ "songFileName": "song_clsmao",
+ "order": 1378,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9450,
+ "shinutiNormal": 6890,
+ "shinutiHard": 3050,
+ "shinutiMania": 2110,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9450,
+ "shinutiNormalDuet": 6890,
+ "shinutiHardDuet": 3050,
+ "shinutiManiaDuet": 2110,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000670,
+ "scoreNormal": 1000310,
+ "scoreHard": 1002340,
+ "scoreMania": 1003100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 925,
+ "id": "clsmar",
+ "songFileName": "song_clsmar",
+ "order": 1355,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7760,
+ "shinutiNormal": 6030,
+ "shinutiHard": 3340,
+ "shinutiMania": 2490,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7760,
+ "shinutiNormalDuet": 6030,
+ "shinutiHardDuet": 3340,
+ "shinutiManiaDuet": 2490,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001040,
+ "scoreNormal": 1000980,
+ "scoreHard": 1002000,
+ "scoreMania": 1000980,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 926,
+ "id": "clsnut",
+ "songFileName": "song_clsnut",
+ "order": 1379,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9220,
+ "shinutiNormal": 5360,
+ "shinutiHard": 2970,
+ "shinutiMania": 2590,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9220,
+ "shinutiNormalDuet": 5360,
+ "shinutiHardDuet": 2970,
+ "shinutiManiaDuet": 2590,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000620,
+ "scoreNormal": 1001010,
+ "scoreHard": 1000400,
+ "scoreMania": 1003370,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 927,
+ "id": "clsoft",
+ "songFileName": "song_clsoft",
+ "order": 1386,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 7410,
+ "shinutiNormal": 5470,
+ "shinutiHard": 4120,
+ "shinutiMania": 3170,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7410,
+ "shinutiNormalDuet": 5470,
+ "shinutiHardDuet": 4120,
+ "shinutiManiaDuet": 3170,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000350,
+ "scoreNormal": 1001010,
+ "scoreHard": 1001160,
+ "scoreMania": 1001720,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 928,
+ "id": "clstoy",
+ "songFileName": "song_clstoy",
+ "order": 1400,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9240,
+ "shinutiNormal": 5900,
+ "shinutiHard": 3040,
+ "shinutiMania": 2070,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9240,
+ "shinutiNormalDuet": 5900,
+ "shinutiHardDuet": 3040,
+ "shinutiManiaDuet": 2070,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000030,
+ "scoreNormal": 1000730,
+ "scoreHard": 1001330,
+ "scoreMania": 1001880,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 929,
+ "id": "clstrk",
+ "songFileName": "song_clstrk",
+ "order": 1402,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8390,
+ "shinutiNormal": 4680,
+ "shinutiHard": 2880,
+ "shinutiMania": 2090,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8390,
+ "shinutiNormalDuet": 4680,
+ "shinutiHardDuet": 2880,
+ "shinutiManiaDuet": 2090,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001180,
+ "scoreNormal": 1000550,
+ "scoreHard": 1002240,
+ "scoreMania": 1003500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 930,
+ "id": "cosmb",
+ "songFileName": "song_cosmb",
+ "order": 1417,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9110,
+ "shinutiNormal": 7080,
+ "shinutiHard": 3770,
+ "shinutiMania": 2790,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9110,
+ "shinutiNormalDuet": 7080,
+ "shinutiHardDuet": 3770,
+ "shinutiManiaDuet": 2790,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000210,
+ "scoreNormal": 1000190,
+ "scoreHard": 1002360,
+ "scoreMania": 1002560,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 931,
+ "id": "crtrcs",
+ "songFileName": "song_crtrcs",
+ "order": 1424,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5080,
+ "shinutiNormal": 3660,
+ "shinutiHard": 1850,
+ "shinutiMania": 1260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5080,
+ "shinutiNormalDuet": 3660,
+ "shinutiHardDuet": 1850,
+ "shinutiManiaDuet": 1260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000320,
+ "scoreNormal": 1000690,
+ "scoreHard": 1005210,
+ "scoreMania": 1005730,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 932,
+ "id": "dball2",
+ "songFileName": "song_dball2",
+ "order": 1444,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8150,
+ "shinutiNormal": 5050,
+ "shinutiHard": 3270,
+ "shinutiMania": 2190,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8150,
+ "shinutiNormalDuet": 5050,
+ "shinutiHardDuet": 3270,
+ "shinutiManiaDuet": 2190,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000070,
+ "scoreNormal": 1001040,
+ "scoreHard": 1000360,
+ "scoreMania": 1003200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 933,
+ "id": "dbcdyn",
+ "songFileName": "song_dbcdyn",
+ "order": 1455,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 15700,
+ "shinutiNormal": 10170,
+ "shinutiHard": 4390,
+ "shinutiMania": 3190,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15700,
+ "shinutiNormalDuet": 10170,
+ "shinutiHardDuet": 4390,
+ "shinutiManiaDuet": 3190,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000450,
+ "scoreNormal": 1000370,
+ "scoreHard": 1000660,
+ "scoreMania": 1000780,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 934,
+ "id": "diet",
+ "songFileName": "song_diet",
+ "order": 1482,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9900,
+ "shinutiNormal": 6830,
+ "shinutiHard": 3110,
+ "shinutiMania": 2200,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9900,
+ "shinutiNormalDuet": 6830,
+ "shinutiHardDuet": 3110,
+ "shinutiManiaDuet": 2200,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000540,
+ "scoreNormal": 1000860,
+ "scoreHard": 1000310,
+ "scoreMania": 1000430,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 935,
+ "id": "dobbbl",
+ "songFileName": "song_dobbbl",
+ "order": 1498,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10590,
+ "shinutiNormal": 6300,
+ "shinutiHard": 3250,
+ "shinutiMania": 2020,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10590,
+ "shinutiNormalDuet": 6300,
+ "shinutiHardDuet": 3250,
+ "shinutiManiaDuet": 2020,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000650,
+ "scoreNormal": 1001450,
+ "scoreHard": 1002780,
+ "scoreMania": 1003990,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 936,
+ "id": "dobhbs",
+ "songFileName": "song_dobhbs",
+ "order": 1504,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5830,
+ "shinutiNormal": 4080,
+ "shinutiHard": 2110,
+ "shinutiMania": 1140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5830,
+ "shinutiNormalDuet": 4080,
+ "shinutiHardDuet": 2110,
+ "shinutiManiaDuet": 1140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001260,
+ "scoreNormal": 1002340,
+ "scoreHard": 1000960,
+ "scoreMania": 1001180,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 937,
+ "id": "dobhov",
+ "songFileName": "song_dobhov",
+ "order": 1505,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 9440,
+ "shinutiNormal": 4870,
+ "shinutiHard": 2690,
+ "shinutiMania": 1520,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9440,
+ "shinutiNormalDuet": 4870,
+ "shinutiHardDuet": 2690,
+ "shinutiManiaDuet": 1520,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000880,
+ "scoreNormal": 1001830,
+ "scoreHard": 1001170,
+ "scoreMania": 1003270,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 938,
+ "id": "dobslt",
+ "songFileName": "song_dobslt",
+ "order": 1508,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5290,
+ "shinutiNormal": 3760,
+ "shinutiHard": 2170,
+ "shinutiMania": 1150,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5290,
+ "shinutiNormalDuet": 3760,
+ "shinutiHardDuet": 2170,
+ "shinutiManiaDuet": 1150,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000060,
+ "scoreNormal": 1002030,
+ "scoreHard": 1003740,
+ "scoreMania": 1007380,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 939,
+ "id": "doyo",
+ "songFileName": "song_doyo",
+ "order": 1526,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 2,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8530,
+ "shinutiNormal": 6560,
+ "shinutiHard": 5090,
+ "shinutiMania": 2560,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8530,
+ "shinutiNormalDuet": 6560,
+ "shinutiHardDuet": 5090,
+ "shinutiManiaDuet": 2560,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000530,
+ "scoreNormal": 1000180,
+ "scoreHard": 1001780,
+ "scoreMania": 1001520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 940,
+ "id": "draond",
+ "songFileName": "song_draond",
+ "order": 1536,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 1,
+ "starHard": 3,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 12010,
+ "shinutiNormal": 8440,
+ "shinutiHard": 5350,
+ "shinutiMania": 3140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12010,
+ "shinutiNormalDuet": 8440,
+ "shinutiHardDuet": 5350,
+ "shinutiManiaDuet": 3140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000480,
+ "scoreNormal": 1000150,
+ "scoreHard": 1000810,
+ "scoreMania": 1000660,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 941,
+ "id": "drill",
+ "songFileName": "song_drill",
+ "order": 1493,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6760,
+ "shinutiNormal": 5790,
+ "shinutiHard": 3040,
+ "shinutiMania": 2450,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6760,
+ "shinutiNormalDuet": 5790,
+ "shinutiHardDuet": 3040,
+ "shinutiManiaDuet": 2450,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000480,
+ "scoreNormal": 1001670,
+ "scoreHard": 1000160,
+ "scoreMania": 1002050,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 942,
+ "id": "drwdrm",
+ "songFileName": "song_drwdrm",
+ "order": 1544,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8760,
+ "shinutiNormal": 4510,
+ "shinutiHard": 2170,
+ "shinutiMania": 1880,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8760,
+ "shinutiNormalDuet": 4510,
+ "shinutiHardDuet": 2170,
+ "shinutiManiaDuet": 1880,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001060,
+ "scoreNormal": 1001800,
+ "scoreHard": 1000370,
+ "scoreMania": 1000260,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 943,
+ "id": "dryflw",
+ "songFileName": "song_dryflw",
+ "order": 1545,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 18110,
+ "shinutiNormal": 9050,
+ "shinutiHard": 6060,
+ "shinutiMania": 4080,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18110,
+ "shinutiNormalDuet": 9050,
+ "shinutiHardDuet": 6060,
+ "shinutiManiaDuet": 4080,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000530,
+ "scoreNormal": 1000650,
+ "scoreHard": 1000790,
+ "scoreMania": 1001790,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 944,
+ "id": "ds2op",
+ "songFileName": "song_ds2op",
+ "order": 1548,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9790,
+ "shinutiNormal": 5900,
+ "shinutiHard": 3980,
+ "shinutiMania": 2030,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9790,
+ "shinutiNormalDuet": 5900,
+ "shinutiHardDuet": 3980,
+ "shinutiManiaDuet": 2030,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001000,
+ "scoreNormal": 1001040,
+ "scoreHard": 1002380,
+ "scoreMania": 1004590,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 945,
+ "id": "dsoul",
+ "songFileName": "song_dsoul",
+ "order": 1540,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 1,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10590,
+ "shinutiNormal": 7530,
+ "shinutiHard": 3960,
+ "shinutiMania": 2810,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10590,
+ "shinutiNormalDuet": 7530,
+ "shinutiHardDuet": 3960,
+ "shinutiManiaDuet": 2810,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1000320,
+ "scoreHard": 1001670,
+ "scoreMania": 1001160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 946,
+ "id": "eigas",
+ "songFileName": "song_eigas",
+ "order": 1564,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6610,
+ "shinutiNormal": 3930,
+ "shinutiHard": 2990,
+ "shinutiMania": 1970,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6610,
+ "shinutiNormalDuet": 3930,
+ "shinutiHardDuet": 2990,
+ "shinutiManiaDuet": 1970,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000520,
+ "scoreNormal": 1002480,
+ "scoreHard": 1002090,
+ "scoreMania": 1001730,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 947,
+ "id": "evekai",
+ "songFileName": "song_evekai",
+ "order": 1581,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 11030,
+ "shinutiNormal": 5220,
+ "shinutiHard": 3210,
+ "shinutiMania": 2070,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11030,
+ "shinutiNormalDuet": 5220,
+ "shinutiHardDuet": 3210,
+ "shinutiManiaDuet": 2070,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000680,
+ "scoreNormal": 1001220,
+ "scoreHard": 1000200,
+ "scoreMania": 1004240,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 948,
+ "id": "ezdo",
+ "songFileName": "song_ezdo",
+ "order": 1588,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10340,
+ "shinutiNormal": 7380,
+ "shinutiHard": 3710,
+ "shinutiMania": 1840,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10340,
+ "shinutiNormalDuet": 7380,
+ "shinutiHardDuet": 3710,
+ "shinutiManiaDuet": 1840,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000390,
+ "scoreNormal": 1000020,
+ "scoreHard": 1001400,
+ "scoreMania": 1001830,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 949,
+ "id": "flkmio",
+ "songFileName": "song_flkmio",
+ "order": 1550,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 12430,
+ "shinutiNormal": 9940,
+ "shinutiHard": 3560,
+ "shinutiMania": 2600,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12430,
+ "shinutiNormalDuet": 9940,
+ "shinutiHardDuet": 3560,
+ "shinutiManiaDuet": 2600,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1000700,
+ "scoreHard": 1001940,
+ "scoreMania": 1001800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 950,
+ "id": "gldarm",
+ "songFileName": "song_gldarm",
+ "order": 1682,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6640,
+ "shinutiNormal": 3750,
+ "shinutiHard": 2250,
+ "shinutiMania": 1430,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6640,
+ "shinutiNormalDuet": 3750,
+ "shinutiHardDuet": 2250,
+ "shinutiManiaDuet": 1430,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000680,
+ "scoreNormal": 1001800,
+ "scoreHard": 1004010,
+ "scoreMania": 1006450,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 951,
+ "id": "gumi10",
+ "songFileName": "song_gumi10",
+ "order": 1710,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 8,
+ "shinutiEasy": 3850,
+ "shinutiNormal": 3000,
+ "shinutiHard": 2160,
+ "shinutiMania": 1310,
+ "shinutiUra": 980,
+ "shinutiEasyDuet": 3850,
+ "shinutiNormalDuet": 3000,
+ "shinutiHardDuet": 2160,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 980,
+ "scoreEasy": 1001120,
+ "scoreNormal": 1002920,
+ "scoreHard": 1003540,
+ "scoreMania": 1006470,
+ "scoreUra": 1001570
+ },
+ {
+ "uniqueId": 952,
+ "id": "gunjou",
+ "songFileName": "song_gunjou",
+ "order": 1726,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9050,
+ "shinutiNormal": 3950,
+ "shinutiHard": 2260,
+ "shinutiMania": 1600,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9050,
+ "shinutiNormalDuet": 3950,
+ "shinutiHardDuet": 2260,
+ "shinutiManiaDuet": 1600,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000930,
+ "scoreNormal": 1000720,
+ "scoreHard": 1002380,
+ "scoreMania": 1003820,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 953,
+ "id": "hadaka",
+ "songFileName": "song_hadaka",
+ "order": 1730,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 17750,
+ "shinutiNormal": 11820,
+ "shinutiHard": 7120,
+ "shinutiMania": 5260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 17750,
+ "shinutiNormalDuet": 11820,
+ "shinutiHardDuet": 7120,
+ "shinutiManiaDuet": 5260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000050,
+ "scoreNormal": 1000580,
+ "scoreHard": 1000560,
+ "scoreMania": 1000270,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 954,
+ "id": "haiky3",
+ "songFileName": "song_haiky3",
+ "order": 1732,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 13070,
+ "shinutiNormal": 7410,
+ "shinutiHard": 4630,
+ "shinutiMania": 2160,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13070,
+ "shinutiNormalDuet": 7410,
+ "shinutiHardDuet": 4630,
+ "shinutiManiaDuet": 2160,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000230,
+ "scoreNormal": 1001150,
+ "scoreHard": 1001970,
+ "scoreMania": 1003540,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 955,
+ "id": "hapsyn",
+ "songFileName": "song_hapsyn",
+ "order": 1673,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10460,
+ "shinutiNormal": 5920,
+ "shinutiHard": 3630,
+ "shinutiMania": 3020,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10460,
+ "shinutiNormalDuet": 5920,
+ "shinutiHardDuet": 3630,
+ "shinutiManiaDuet": 3020,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1000760,
+ "scoreHard": 1000720,
+ "scoreMania": 1003020,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 956,
+ "id": "haruji",
+ "songFileName": "song_haruji",
+ "order": 1740,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 15290,
+ "shinutiNormal": 8860,
+ "shinutiHard": 5440,
+ "shinutiMania": 3320,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15290,
+ "shinutiNormalDuet": 8860,
+ "shinutiHardDuet": 5440,
+ "shinutiManiaDuet": 3320,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1001040,
+ "scoreHard": 1001790,
+ "scoreMania": 1001030,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 957,
+ "id": "haya",
+ "songFileName": "song_haya",
+ "order": 1746,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 5,
+ "starUra": 10,
+ "shinutiEasy": 7590,
+ "shinutiNormal": 5870,
+ "shinutiHard": 4100,
+ "shinutiMania": 2930,
+ "shinutiUra": 1120,
+ "shinutiEasyDuet": 7590,
+ "shinutiNormalDuet": 5870,
+ "shinutiHardDuet": 4100,
+ "shinutiManiaDuet": 2930,
+ "shinutiUraDuet": 1120,
+ "scoreEasy": 1000520,
+ "scoreNormal": 1000740,
+ "scoreHard": 1001250,
+ "scoreMania": 1000210,
+ "scoreUra": 1004130
+ },
+ {
+ "uniqueId": 958,
+ "id": "hkyell",
+ "songFileName": "song_hkyell",
+ "order": 1767,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 1,
+ "starHard": 3,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 15080,
+ "shinutiNormal": 11560,
+ "shinutiHard": 8070,
+ "shinutiMania": 4070,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15080,
+ "shinutiNormalDuet": 11560,
+ "shinutiHardDuet": 8070,
+ "shinutiManiaDuet": 4070,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000020,
+ "scoreNormal": 1000280,
+ "scoreHard": 1000780,
+ "scoreMania": 1000840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 959,
+ "id": "howlin",
+ "songFileName": "song_howlin",
+ "order": 1786,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10280,
+ "shinutiNormal": 7120,
+ "shinutiHard": 3640,
+ "shinutiMania": 2240,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10280,
+ "shinutiNormalDuet": 7120,
+ "shinutiHardDuet": 3640,
+ "shinutiManiaDuet": 2240,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000360,
+ "scoreNormal": 1000800,
+ "scoreHard": 1000460,
+ "scoreMania": 1002040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 960,
+ "id": "howlmg",
+ "songFileName": "song_howlmg",
+ "order": 1710,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8510,
+ "shinutiNormal": 6550,
+ "shinutiHard": 4920,
+ "shinutiMania": 3280,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8510,
+ "shinutiNormalDuet": 6550,
+ "shinutiHardDuet": 4920,
+ "shinutiManiaDuet": 3280,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000860,
+ "scoreNormal": 1000700,
+ "scoreHard": 1000480,
+ "scoreMania": 1002160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 961,
+ "id": "ika",
+ "songFileName": "song_ika",
+ "order": 1815,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 5600,
+ "shinutiNormal": 3840,
+ "shinutiHard": 2370,
+ "shinutiMania": 1920,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5600,
+ "shinutiNormalDuet": 3840,
+ "shinutiHardDuet": 2370,
+ "shinutiManiaDuet": 1920,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000610,
+ "scoreNormal": 1001200,
+ "scoreHard": 1001750,
+ "scoreMania": 1000900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 962,
+ "id": "immbon",
+ "songFileName": "song_immbon",
+ "order": 1846,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7240,
+ "shinutiNormal": 4240,
+ "shinutiHard": 2340,
+ "shinutiMania": 1480,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7240,
+ "shinutiNormalDuet": 4240,
+ "shinutiHardDuet": 2340,
+ "shinutiManiaDuet": 1480,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000770,
+ "scoreNormal": 1001830,
+ "scoreHard": 1000720,
+ "scoreMania": 1003430,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 963,
+ "id": "indyjo",
+ "songFileName": "song_indyjo",
+ "order": 1936,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9910,
+ "shinutiNormal": 5430,
+ "shinutiHard": 2800,
+ "shinutiMania": 2010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9910,
+ "shinutiNormalDuet": 5430,
+ "shinutiHardDuet": 2800,
+ "shinutiManiaDuet": 2010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000530,
+ "scoreNormal": 1000290,
+ "scoreHard": 1002830,
+ "scoreMania": 1004770,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 964,
+ "id": "integr",
+ "songFileName": "song_integr",
+ "order": 1941,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6360,
+ "shinutiNormal": 3020,
+ "shinutiHard": 2060,
+ "shinutiMania": 1530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6360,
+ "shinutiNormalDuet": 3020,
+ "shinutiHardDuet": 2060,
+ "shinutiManiaDuet": 1530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000640,
+ "scoreNormal": 1000870,
+ "scoreHard": 1003180,
+ "scoreMania": 1005040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 965,
+ "id": "inunon",
+ "songFileName": "song_inunon",
+ "order": 1944,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9910,
+ "shinutiNormal": 4710,
+ "shinutiHard": 3180,
+ "shinutiMania": 2710,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9910,
+ "shinutiNormalDuet": 4710,
+ "shinutiHardDuet": 3180,
+ "shinutiManiaDuet": 2710,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000510,
+ "scoreNormal": 1000470,
+ "scoreHard": 1001370,
+ "scoreMania": 1000810,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 966,
+ "id": "jojo",
+ "songFileName": "song_jojo",
+ "order": 1972,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7640,
+ "shinutiNormal": 5730,
+ "shinutiHard": 2700,
+ "shinutiMania": 1610,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7640,
+ "shinutiNormalDuet": 5730,
+ "shinutiHardDuet": 2700,
+ "shinutiManiaDuet": 1610,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000490,
+ "scoreNormal": 1000560,
+ "scoreHard": 1002200,
+ "scoreMania": 1001050,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 967,
+ "id": "kim100",
+ "songFileName": "song_kim100",
+ "order": 2022,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 14180,
+ "shinutiNormal": 9170,
+ "shinutiHard": 4330,
+ "shinutiMania": 3290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14180,
+ "shinutiNormalDuet": 9170,
+ "shinutiHardDuet": 4330,
+ "shinutiManiaDuet": 3290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000490,
+ "scoreNormal": 1001050,
+ "scoreHard": 1002220,
+ "scoreMania": 1001410,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 968,
+ "id": "kirari",
+ "songFileName": "song_kirari",
+ "order": 2041,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11010,
+ "shinutiNormal": 6260,
+ "shinutiHard": 4360,
+ "shinutiMania": 3130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11010,
+ "shinutiNormalDuet": 6260,
+ "shinutiHardDuet": 4360,
+ "shinutiManiaDuet": 3130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000620,
+ "scoreNormal": 1001130,
+ "scoreHard": 1001680,
+ "scoreMania": 1001110,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 969,
+ "id": "kishi2",
+ "songFileName": "song_kishi2",
+ "order": 2046,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6350,
+ "shinutiNormal": 4150,
+ "shinutiHard": 2710,
+ "shinutiMania": 1810,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6350,
+ "shinutiNormalDuet": 4150,
+ "shinutiHardDuet": 2710,
+ "shinutiManiaDuet": 1810,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000690,
+ "scoreNormal": 1001380,
+ "scoreHard": 1001520,
+ "scoreMania": 1002800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 970,
+ "id": "kousui",
+ "songFileName": "song_kousui",
+ "order": 2073,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 18070,
+ "shinutiNormal": 9280,
+ "shinutiHard": 4380,
+ "shinutiMania": 2960,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18070,
+ "shinutiNormalDuet": 9280,
+ "shinutiHardDuet": 4380,
+ "shinutiManiaDuet": 2960,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000110,
+ "scoreNormal": 1000680,
+ "scoreHard": 1000520,
+ "scoreMania": 1001600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 971,
+ "id": "latino",
+ "songFileName": "song_latino",
+ "order": 2111,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 14380,
+ "shinutiNormal": 9390,
+ "shinutiHard": 3020,
+ "shinutiMania": 2410,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14380,
+ "shinutiNormalDuet": 9390,
+ "shinutiHardDuet": 3020,
+ "shinutiManiaDuet": 2410,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000270,
+ "scoreNormal": 1000640,
+ "scoreHard": 1002640,
+ "scoreMania": 1000150,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 972,
+ "id": "m96slm",
+ "songFileName": "song_m96slm",
+ "order": 2153,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8810,
+ "shinutiNormal": 5600,
+ "shinutiHard": 3100,
+ "shinutiMania": 2370,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8810,
+ "shinutiNormalDuet": 5600,
+ "shinutiHardDuet": 3100,
+ "shinutiManiaDuet": 2370,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000710,
+ "scoreNormal": 1001750,
+ "scoreHard": 1002900,
+ "scoreMania": 1002120,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 973,
+ "id": "m96sr2",
+ "songFileName": "song_m96sr2",
+ "order": 2154,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6490,
+ "shinutiNormal": 4740,
+ "shinutiHard": 2980,
+ "shinutiMania": 1940,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6490,
+ "shinutiNormalDuet": 4740,
+ "shinutiHardDuet": 2980,
+ "shinutiManiaDuet": 1940,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000320,
+ "scoreNormal": 1000320,
+ "scoreHard": 1002330,
+ "scoreMania": 1001810,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 974,
+ "id": "magrec",
+ "songFileName": "song_magrec",
+ "order": 2162,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 13650,
+ "shinutiNormal": 5930,
+ "shinutiHard": 3520,
+ "shinutiMania": 2510,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13650,
+ "shinutiNormalDuet": 5930,
+ "shinutiHardDuet": 3520,
+ "shinutiManiaDuet": 2510,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000560,
+ "scoreNormal": 1000200,
+ "scoreHard": 1001840,
+ "scoreMania": 1001230,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 975,
+ "id": "mahosk",
+ "songFileName": "song_mahosk",
+ "order": 2164,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5460,
+ "shinutiNormal": 2990,
+ "shinutiHard": 1740,
+ "shinutiMania": 1460,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5460,
+ "shinutiNormalDuet": 2990,
+ "shinutiHardDuet": 1740,
+ "shinutiManiaDuet": 1460,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001030,
+ "scoreNormal": 1000460,
+ "scoreHard": 1004270,
+ "scoreMania": 1000440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 976,
+ "id": "maidra",
+ "songFileName": "song_maidra",
+ "order": 2166,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 16470,
+ "shinutiNormal": 12030,
+ "shinutiHard": 4030,
+ "shinutiMania": 1960,
+ "shinutiUra": 2060,
+ "shinutiEasyDuet": 16470,
+ "shinutiNormalDuet": 12030,
+ "shinutiHardDuet": 4030,
+ "shinutiManiaDuet": 1960,
+ "shinutiUraDuet": 2060,
+ "scoreEasy": 1000270,
+ "scoreNormal": 1000240,
+ "scoreHard": 1001530,
+ "scoreMania": 1004750,
+ "scoreUra": 1001160
+ },
+ {
+ "uniqueId": 977,
+ "id": "majotk",
+ "songFileName": "song_majotk",
+ "order": 2062,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 16520,
+ "shinutiNormal": 12350,
+ "shinutiHard": 6070,
+ "shinutiMania": 4450,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16520,
+ "shinutiNormalDuet": 12350,
+ "shinutiHardDuet": 6070,
+ "shinutiManiaDuet": 4450,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000500,
+ "scoreNormal": 1000200,
+ "scoreHard": 1000310,
+ "scoreMania": 1000600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 978,
+ "id": "manpu9",
+ "songFileName": "song_manpu9",
+ "order": 2065,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 1,
+ "starMania": 1,
+ "starUra": 10,
+ "shinutiEasy": 25730,
+ "shinutiNormal": 17130,
+ "shinutiHard": 9660,
+ "shinutiMania": 6490,
+ "shinutiUra": 2110,
+ "shinutiEasyDuet": 25730,
+ "shinutiNormalDuet": 17130,
+ "shinutiHardDuet": 9660,
+ "shinutiManiaDuet": 6490,
+ "shinutiUraDuet": 2110,
+ "scoreEasy": 300180,
+ "scoreNormal": 400280,
+ "scoreHard": 550930,
+ "scoreMania": 701290,
+ "scoreUra": 1204680
+ },
+ {
+ "uniqueId": 979,
+ "id": "melt",
+ "songFileName": "song_melt",
+ "order": 2096,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9200,
+ "shinutiNormal": 6010,
+ "shinutiHard": 3560,
+ "shinutiMania": 1850,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9200,
+ "shinutiNormalDuet": 6010,
+ "shinutiHardDuet": 3560,
+ "shinutiManiaDuet": 1850,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1000050,
+ "scoreHard": 1001440,
+ "scoreMania": 1001350,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 980,
+ "id": "mi5ufo",
+ "songFileName": "song_mi5ufo",
+ "order": 2229,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 4930,
+ "shinutiNormal": 3120,
+ "shinutiHard": 1950,
+ "shinutiMania": 1660,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4930,
+ "shinutiNormalDuet": 3120,
+ "shinutiHardDuet": 1950,
+ "shinutiManiaDuet": 1660,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000750,
+ "scoreNormal": 1002770,
+ "scoreHard": 1004480,
+ "scoreMania": 1002300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 981,
+ "id": "mikatu",
+ "songFileName": "song_mikatu",
+ "order": 2232,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 1,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 12620,
+ "shinutiNormal": 9140,
+ "shinutiHard": 5730,
+ "shinutiMania": 4390,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12620,
+ "shinutiNormalDuet": 9140,
+ "shinutiHardDuet": 5730,
+ "shinutiManiaDuet": 4390,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000380,
+ "scoreNormal": 1000390,
+ "scoreHard": 1000890,
+ "scoreMania": 1000520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 982,
+ "id": "mikubd",
+ "songFileName": "song_mikubd",
+ "order": 2125,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4680,
+ "shinutiNormal": 2490,
+ "shinutiHard": 1710,
+ "shinutiMania": 1210,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4680,
+ "shinutiNormalDuet": 2490,
+ "shinutiHardDuet": 1710,
+ "shinutiManiaDuet": 1210,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001520,
+ "scoreNormal": 1003470,
+ "scoreHard": 1005480,
+ "scoreMania": 1001880,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 983,
+ "id": "mikush",
+ "songFileName": "song_mikush",
+ "order": 2255,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5110,
+ "shinutiNormal": 3710,
+ "shinutiHard": 2280,
+ "shinutiMania": 1370,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5110,
+ "shinutiNormalDuet": 3710,
+ "shinutiHardDuet": 2280,
+ "shinutiManiaDuet": 1370,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001450,
+ "scoreNormal": 1001160,
+ "scoreHard": 1003550,
+ "scoreMania": 1000300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 984,
+ "id": "mikvam",
+ "songFileName": "song_mikvam",
+ "order": 2261,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6620,
+ "shinutiNormal": 4310,
+ "shinutiHard": 2520,
+ "shinutiMania": 1540,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6620,
+ "shinutiNormalDuet": 4310,
+ "shinutiHardDuet": 2520,
+ "shinutiManiaDuet": 1540,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000290,
+ "scoreNormal": 1000290,
+ "scoreHard": 1002030,
+ "scoreMania": 1000820,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 985,
+ "id": "milsam",
+ "songFileName": "song_milsam",
+ "order": 2262,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6190,
+ "shinutiNormal": 4060,
+ "shinutiHard": 2100,
+ "shinutiMania": 1600,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6190,
+ "shinutiNormalDuet": 4060,
+ "shinutiHardDuet": 2100,
+ "shinutiManiaDuet": 1600,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001420,
+ "scoreNormal": 1000170,
+ "scoreHard": 1003370,
+ "scoreMania": 1000170,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 986,
+ "id": "mjtk83",
+ "songFileName": "song_mjtk83",
+ "order": 2268,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 8,
+ "shinutiEasy": 17150,
+ "shinutiNormal": 12900,
+ "shinutiHard": 5970,
+ "shinutiMania": 4250,
+ "shinutiUra": 3000,
+ "shinutiEasyDuet": 17150,
+ "shinutiNormalDuet": 12900,
+ "shinutiHardDuet": 5970,
+ "shinutiManiaDuet": 4250,
+ "shinutiUraDuet": 3000,
+ "scoreEasy": 1000570,
+ "scoreNormal": 1000670,
+ "scoreHard": 1000660,
+ "scoreMania": 1000770,
+ "scoreUra": 1002470
+ },
+ {
+ "uniqueId": 987,
+ "id": "mk3rai",
+ "songFileName": "song_mk3rai",
+ "order": 2269,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 4800,
+ "shinutiNormal": 3730,
+ "shinutiHard": 2290,
+ "shinutiMania": 1410,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4800,
+ "shinutiNormalDuet": 3730,
+ "shinutiHardDuet": 2290,
+ "shinutiManiaDuet": 1410,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000560,
+ "scoreNormal": 1000910,
+ "scoreHard": 1003960,
+ "scoreMania": 1003920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 988,
+ "id": "mkftbt",
+ "songFileName": "song_mkftbt",
+ "order": 2270,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6160,
+ "shinutiNormal": 3670,
+ "shinutiHard": 1980,
+ "shinutiMania": 1440,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6160,
+ "shinutiNormalDuet": 3670,
+ "shinutiHardDuet": 1980,
+ "shinutiManiaDuet": 1440,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001310,
+ "scoreNormal": 1000830,
+ "scoreHard": 1000500,
+ "scoreMania": 1003880,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 989,
+ "id": "mkftmd",
+ "songFileName": "song_mkftmd",
+ "order": 2271,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8410,
+ "shinutiNormal": 3930,
+ "shinutiHard": 2790,
+ "shinutiMania": 1800,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8410,
+ "shinutiNormalDuet": 3930,
+ "shinutiHardDuet": 2790,
+ "shinutiManiaDuet": 1800,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000410,
+ "scoreNormal": 1000290,
+ "scoreHard": 1000970,
+ "scoreMania": 1002400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 990,
+ "id": "morobt",
+ "songFileName": "song_morobt",
+ "order": 2295,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 17120,
+ "shinutiNormal": 7750,
+ "shinutiHard": 4230,
+ "shinutiMania": 2500,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 17120,
+ "shinutiNormalDuet": 7750,
+ "shinutiHardDuet": 4230,
+ "shinutiManiaDuet": 2500,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000410,
+ "scoreNormal": 1001120,
+ "scoreHard": 1001530,
+ "scoreMania": 1000200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 991,
+ "id": "mrrun",
+ "songFileName": "song_mrrun",
+ "order": 2300,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6460,
+ "shinutiNormal": 4150,
+ "shinutiHard": 1860,
+ "shinutiMania": 1120,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6460,
+ "shinutiNormalDuet": 4150,
+ "shinutiHardDuet": 1860,
+ "shinutiManiaDuet": 1120,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000330,
+ "scoreNormal": 1000520,
+ "scoreHard": 1002440,
+ "scoreMania": 1003300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 992,
+ "id": "mscl2",
+ "songFileName": "song_mscl2",
+ "order": 2302,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8040,
+ "shinutiNormal": 5410,
+ "shinutiHard": 3160,
+ "shinutiMania": 2360,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8040,
+ "shinutiNormalDuet": 5410,
+ "shinutiHardDuet": 3160,
+ "shinutiManiaDuet": 2360,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000800,
+ "scoreNormal": 1000000,
+ "scoreHard": 1002720,
+ "scoreMania": 1001320,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 993,
+ "id": "namco2",
+ "songFileName": "song_namco2",
+ "order": 2317,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 7,
+ "shinutiEasy": 8200,
+ "shinutiNormal": 4290,
+ "shinutiHard": 3040,
+ "shinutiMania": 1790,
+ "shinutiUra": 2770,
+ "shinutiEasyDuet": 8200,
+ "shinutiNormalDuet": 4290,
+ "shinutiHardDuet": 3040,
+ "shinutiManiaDuet": 1790,
+ "shinutiUraDuet": 2770,
+ "scoreEasy": 1000070,
+ "scoreNormal": 1000390,
+ "scoreHard": 1001780,
+ "scoreMania": 1004350,
+ "scoreUra": 1002100
+ },
+ {
+ "uniqueId": 994,
+ "id": "nbwalk",
+ "songFileName": "song_nbwalk",
+ "order": 2328,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9700,
+ "shinutiNormal": 5610,
+ "shinutiHard": 3170,
+ "shinutiMania": 2050,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9700,
+ "shinutiNormalDuet": 5610,
+ "shinutiHardDuet": 3170,
+ "shinutiManiaDuet": 2050,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000130,
+ "scoreNormal": 1000170,
+ "scoreHard": 1000160,
+ "scoreMania": 1003620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 995,
+ "id": "nekods",
+ "songFileName": "song_nekods",
+ "order": 2336,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 14850,
+ "shinutiNormal": 9040,
+ "shinutiHard": 6540,
+ "shinutiMania": 3200,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14850,
+ "shinutiNormalDuet": 9040,
+ "shinutiHardDuet": 6540,
+ "shinutiManiaDuet": 3200,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1000370,
+ "scoreHard": 1001330,
+ "scoreMania": 1002130,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 996,
+ "id": "nekot2",
+ "songFileName": "song_nekot2",
+ "order": 2337,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 16490,
+ "shinutiNormal": 7980,
+ "shinutiHard": 4170,
+ "shinutiMania": 2770,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16490,
+ "shinutiNormalDuet": 7980,
+ "shinutiHardDuet": 4170,
+ "shinutiManiaDuet": 2770,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000590,
+ "scoreNormal": 1000120,
+ "scoreHard": 1000560,
+ "scoreMania": 1001270,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 997,
+ "id": "nekotm",
+ "songFileName": "song_nekotm",
+ "order": 2338,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 2,
+ "starMania": 2,
+ "starUra": 0,
+ "shinutiEasy": 14010,
+ "shinutiNormal": 9840,
+ "shinutiHard": 3910,
+ "shinutiMania": 2860,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14010,
+ "shinutiNormalDuet": 9840,
+ "shinutiHardDuet": 3910,
+ "shinutiManiaDuet": 2860,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000130,
+ "scoreNormal": 1000260,
+ "scoreHard": 1000770,
+ "scoreMania": 1000280,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 998,
+ "id": "ohdcry",
+ "songFileName": "song_ohdcry",
+ "order": 2370,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 13400,
+ "shinutiNormal": 8550,
+ "shinutiHard": 4850,
+ "shinutiMania": 3000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13400,
+ "shinutiNormalDuet": 8550,
+ "shinutiHardDuet": 4850,
+ "shinutiManiaDuet": 3000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1000210,
+ "scoreHard": 1000990,
+ "scoreMania": 1001530,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 999,
+ "id": "onsayg",
+ "songFileName": "song_onsayg",
+ "order": 2383,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 10,
+ "shinutiEasy": 7650,
+ "shinutiNormal": 4750,
+ "shinutiHard": 3230,
+ "shinutiMania": 4090,
+ "shinutiUra": 1620,
+ "shinutiEasyDuet": 7650,
+ "shinutiNormalDuet": 4750,
+ "shinutiHardDuet": 3230,
+ "shinutiManiaDuet": 4090,
+ "shinutiUraDuet": 1620,
+ "scoreEasy": 1000720,
+ "scoreNormal": 1000880,
+ "scoreHard": 1001100,
+ "scoreMania": 1001880,
+ "scoreUra": 1006020
+ },
+ {
+ "uniqueId": 1000,
+ "id": "orgmis",
+ "songFileName": "song_orgmis",
+ "order": 2390,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 9450,
+ "shinutiNormal": 5750,
+ "shinutiHard": 2430,
+ "shinutiMania": 1800,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9450,
+ "shinutiNormalDuet": 5750,
+ "shinutiHardDuet": 2430,
+ "shinutiManiaDuet": 1800,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000610,
+ "scoreNormal": 1000140,
+ "scoreHard": 1001100,
+ "scoreMania": 1003220,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1001,
+ "id": "pirate",
+ "songFileName": "song_pirate",
+ "order": 2427,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 14150,
+ "shinutiNormal": 7470,
+ "shinutiHard": 4720,
+ "shinutiMania": 3220,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14150,
+ "shinutiNormalDuet": 7470,
+ "shinutiHardDuet": 4720,
+ "shinutiManiaDuet": 3220,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000130,
+ "scoreNormal": 1001060,
+ "scoreHard": 1001670,
+ "scoreMania": 1001340,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1002,
+ "id": "pkm123",
+ "songFileName": "song_pkm123",
+ "order": 2434,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 19090,
+ "shinutiNormal": 8340,
+ "shinutiHard": 3980,
+ "shinutiMania": 2280,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 19090,
+ "shinutiNormalDuet": 8340,
+ "shinutiHardDuet": 3980,
+ "shinutiManiaDuet": 2280,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1000520,
+ "scoreHard": 1000260,
+ "scoreMania": 1000770,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1003,
+ "id": "pspopn",
+ "songFileName": "song_pspopn",
+ "order": 2483,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10830,
+ "shinutiNormal": 7690,
+ "shinutiHard": 4010,
+ "shinutiMania": 2670,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10830,
+ "shinutiNormalDuet": 7690,
+ "shinutiHardDuet": 4010,
+ "shinutiManiaDuet": 2670,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000650,
+ "scoreNormal": 1000170,
+ "scoreHard": 1002190,
+ "scoreMania": 1003050,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1004,
+ "id": "rezer2",
+ "songFileName": "song_rezer2",
+ "order": 2515,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11110,
+ "shinutiNormal": 5940,
+ "shinutiHard": 3460,
+ "shinutiMania": 2590,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11110,
+ "shinutiNormalDuet": 5940,
+ "shinutiHardDuet": 3460,
+ "shinutiManiaDuet": 2590,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000340,
+ "scoreNormal": 1000850,
+ "scoreHard": 1001780,
+ "scoreMania": 1001220,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1005,
+ "id": "rhope",
+ "songFileName": "song_rhope",
+ "order": 2518,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9210,
+ "shinutiNormal": 4020,
+ "shinutiHard": 2700,
+ "shinutiMania": 2120,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9210,
+ "shinutiNormalDuet": 4020,
+ "shinutiHardDuet": 2700,
+ "shinutiManiaDuet": 2120,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1000870,
+ "scoreHard": 1001420,
+ "scoreMania": 1004650,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1006,
+ "id": "rocket",
+ "songFileName": "song_rocket",
+ "order": 2540,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 12760,
+ "shinutiNormal": 8230,
+ "shinutiHard": 4730,
+ "shinutiMania": 2420,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12760,
+ "shinutiNormalDuet": 8230,
+ "shinutiHardDuet": 4730,
+ "shinutiManiaDuet": 2420,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000390,
+ "scoreNormal": 1000640,
+ "scoreHard": 1001130,
+ "scoreMania": 1001840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1007,
+ "id": "rouge",
+ "songFileName": "song_rouge",
+ "order": 2551,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11590,
+ "shinutiNormal": 9570,
+ "shinutiHard": 4260,
+ "shinutiMania": 2230,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11590,
+ "shinutiNormalDuet": 9570,
+ "shinutiHardDuet": 4260,
+ "shinutiManiaDuet": 2230,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000680,
+ "scoreNormal": 1000480,
+ "scoreHard": 1001860,
+ "scoreMania": 1001270,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1008,
+ "id": "sbnelc",
+ "songFileName": "song_sbnelc",
+ "order": 2586,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 5890,
+ "shinutiNormal": 5200,
+ "shinutiHard": 2940,
+ "shinutiMania": 1970,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5890,
+ "shinutiNormalDuet": 5200,
+ "shinutiHardDuet": 2940,
+ "shinutiManiaDuet": 1970,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000090,
+ "scoreNormal": 1000100,
+ "scoreHard": 1000080,
+ "scoreMania": 1003760,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1009,
+ "id": "ssn3rd",
+ "songFileName": "song_ssn3rd",
+ "order": 2685,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 5540,
+ "shinutiNormal": 2850,
+ "shinutiHard": 2110,
+ "shinutiMania": 1250,
+ "shinutiUra": 1130,
+ "shinutiEasyDuet": 5540,
+ "shinutiNormalDuet": 2850,
+ "shinutiHardDuet": 2110,
+ "shinutiManiaDuet": 1250,
+ "shinutiUraDuet": 1130,
+ "scoreEasy": 1000790,
+ "scoreNormal": 1003140,
+ "scoreHard": 1002580,
+ "scoreMania": 1005580,
+ "scoreUra": 1002690
+ },
+ {
+ "uniqueId": 1010,
+ "id": "ssnkjs",
+ "songFileName": "song_ssnkjs",
+ "order": 2686,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 7410,
+ "shinutiNormal": 3980,
+ "shinutiHard": 2780,
+ "shinutiMania": 1840,
+ "shinutiUra": 1610,
+ "shinutiEasyDuet": 7410,
+ "shinutiNormalDuet": 3980,
+ "shinutiHardDuet": 2780,
+ "shinutiManiaDuet": 1840,
+ "shinutiUraDuet": 1610,
+ "scoreEasy": 1000410,
+ "scoreNormal": 1000420,
+ "scoreHard": 1002330,
+ "scoreMania": 1004880,
+ "scoreUra": 1005510
+ },
+ {
+ "uniqueId": 1011,
+ "id": "ssnrns",
+ "songFileName": "song_ssnrns",
+ "order": 2687,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 10,
+ "shinutiEasy": 7210,
+ "shinutiNormal": 3720,
+ "shinutiHard": 2420,
+ "shinutiMania": 1780,
+ "shinutiUra": 1400,
+ "shinutiEasyDuet": 7210,
+ "shinutiNormalDuet": 3720,
+ "shinutiHardDuet": 2420,
+ "shinutiManiaDuet": 1780,
+ "shinutiUraDuet": 1400,
+ "scoreEasy": 1001190,
+ "scoreNormal": 1000840,
+ "scoreHard": 1002400,
+ "scoreMania": 1004680,
+ "scoreUra": 1001120
+ },
+ {
+ "uniqueId": 1012,
+ "id": "starws",
+ "songFileName": "song_starws",
+ "order": 2692,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 13620,
+ "shinutiNormal": 8850,
+ "shinutiHard": 5540,
+ "shinutiMania": 3370,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13620,
+ "shinutiNormalDuet": 8850,
+ "shinutiHardDuet": 5540,
+ "shinutiManiaDuet": 3370,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000710,
+ "scoreNormal": 1000000,
+ "scoreHard": 1001520,
+ "scoreMania": 1002070,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1013,
+ "id": "stmic6",
+ "songFileName": "song_stmic6",
+ "order": 2696,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 8950,
+ "shinutiNormal": 6110,
+ "shinutiHard": 3390,
+ "shinutiMania": 2110,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8950,
+ "shinutiNormalDuet": 6110,
+ "shinutiHardDuet": 3390,
+ "shinutiManiaDuet": 2110,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000890,
+ "scoreNormal": 1001610,
+ "scoreHard": 1001080,
+ "scoreMania": 1004140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1014,
+ "id": "stmic7",
+ "songFileName": "song_stmic7",
+ "order": 2697,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8470,
+ "shinutiNormal": 5610,
+ "shinutiHard": 2450,
+ "shinutiMania": 1950,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8470,
+ "shinutiNormalDuet": 5610,
+ "shinutiHardDuet": 2450,
+ "shinutiManiaDuet": 1950,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000730,
+ "scoreNormal": 1000360,
+ "scoreHard": 1001220,
+ "scoreMania": 1000800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1015,
+ "id": "tairik",
+ "songFileName": "song_tairik",
+ "order": 2731,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7440,
+ "shinutiNormal": 6360,
+ "shinutiHard": 3250,
+ "shinutiMania": 2100,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7440,
+ "shinutiNormalDuet": 6360,
+ "shinutiHardDuet": 3250,
+ "shinutiManiaDuet": 2100,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000430,
+ "scoreNormal": 1001160,
+ "scoreHard": 1001620,
+ "scoreMania": 1002070,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1016,
+ "id": "takara",
+ "songFileName": "song_takara",
+ "order": 2735,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6000,
+ "shinutiNormal": 4680,
+ "shinutiHard": 3250,
+ "shinutiMania": 2150,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6000,
+ "shinutiNormalDuet": 4680,
+ "shinutiHardDuet": 3250,
+ "shinutiManiaDuet": 2150,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000990,
+ "scoreNormal": 1000120,
+ "scoreHard": 1001350,
+ "scoreMania": 1004530,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1017,
+ "id": "tkstad",
+ "songFileName": "song_tkstad",
+ "order": 2800,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7410,
+ "shinutiNormal": 3920,
+ "shinutiHard": 2130,
+ "shinutiMania": 1160,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7410,
+ "shinutiNormalDuet": 3920,
+ "shinutiHardDuet": 2130,
+ "shinutiManiaDuet": 1160,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001180,
+ "scoreNormal": 1000000,
+ "scoreHard": 1001440,
+ "scoreMania": 1007200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1018,
+ "id": "tnkkaz",
+ "songFileName": "song_tnkkaz",
+ "order": 2808,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4820,
+ "shinutiNormal": 3140,
+ "shinutiHard": 1950,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4820,
+ "shinutiNormalDuet": 3140,
+ "shinutiHardDuet": 1950,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000820,
+ "scoreNormal": 1000640,
+ "scoreHard": 1000090,
+ "scoreMania": 1001300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1019,
+ "id": "tondem",
+ "songFileName": "song_tondem",
+ "order": 2816,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 8480,
+ "shinutiNormal": 5670,
+ "shinutiHard": 3110,
+ "shinutiMania": 1770,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8480,
+ "shinutiNormalDuet": 5670,
+ "shinutiHardDuet": 3110,
+ "shinutiManiaDuet": 1770,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000880,
+ "scoreNormal": 1000560,
+ "scoreHard": 1000360,
+ "scoreMania": 1000320,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1020,
+ "id": "train",
+ "songFileName": "song_train",
+ "order": 2836,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 4210,
+ "shinutiNormal": 2790,
+ "shinutiHard": 2270,
+ "shinutiMania": 1890,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4210,
+ "shinutiNormalDuet": 2790,
+ "shinutiHardDuet": 2270,
+ "shinutiManiaDuet": 1890,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000370,
+ "scoreNormal": 1001980,
+ "scoreHard": 1000810,
+ "scoreMania": 1003270,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1021,
+ "id": "ttrkaz",
+ "songFileName": "song_ttrkaz",
+ "order": 2847,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12710,
+ "shinutiNormal": 7980,
+ "shinutiHard": 5080,
+ "shinutiMania": 2930,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12710,
+ "shinutiNormalDuet": 7980,
+ "shinutiHardDuet": 5080,
+ "shinutiManiaDuet": 2930,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000770,
+ "scoreNormal": 1000360,
+ "scoreHard": 1001670,
+ "scoreMania": 1002300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1022,
+ "id": "twcyes",
+ "songFileName": "song_twcyes",
+ "order": 2860,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10290,
+ "shinutiNormal": 5300,
+ "shinutiHard": 3510,
+ "shinutiMania": 2440,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10290,
+ "shinutiNormalDuet": 5300,
+ "shinutiHardDuet": 3510,
+ "shinutiManiaDuet": 2440,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1000210,
+ "scoreHard": 1001870,
+ "scoreMania": 1003720,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1023,
+ "id": "umdeja",
+ "songFileName": "song_umdeja",
+ "order": 2886,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 12160,
+ "shinutiNormal": 5900,
+ "shinutiHard": 3970,
+ "shinutiMania": 2580,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12160,
+ "shinutiNormalDuet": 5900,
+ "shinutiHardDuet": 3970,
+ "shinutiManiaDuet": 2580,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000170,
+ "scoreNormal": 1001690,
+ "scoreHard": 1000570,
+ "scoreMania": 1003600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1024,
+ "id": "vfveno",
+ "songFileName": "song_vfveno",
+ "order": 2911,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7300,
+ "shinutiNormal": 4130,
+ "shinutiHard": 2490,
+ "shinutiMania": 1740,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7300,
+ "shinutiNormalDuet": 4130,
+ "shinutiHardDuet": 2490,
+ "shinutiManiaDuet": 1740,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001100,
+ "scoreNormal": 1001060,
+ "scoreHard": 1000490,
+ "scoreMania": 1004000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1025,
+ "id": "voidse",
+ "songFileName": "song_voidse",
+ "order": 2916,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 4960,
+ "shinutiNormal": 2940,
+ "shinutiHard": 1880,
+ "shinutiMania": 1120,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4960,
+ "shinutiNormalDuet": 2940,
+ "shinutiHardDuet": 1880,
+ "shinutiManiaDuet": 1120,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000760,
+ "scoreNormal": 1000180,
+ "scoreHard": 1002590,
+ "scoreMania": 1001590,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1026,
+ "id": "wavybb",
+ "songFileName": "song_wavybb",
+ "order": 2938,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6460,
+ "shinutiNormal": 3260,
+ "shinutiHard": 2270,
+ "shinutiMania": 1460,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6460,
+ "shinutiNormalDuet": 3260,
+ "shinutiHardDuet": 2270,
+ "shinutiManiaDuet": 1460,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001420,
+ "scoreNormal": 1001970,
+ "scoreHard": 1001050,
+ "scoreMania": 1006520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1027,
+ "id": "wecan",
+ "songFileName": "song_wecan",
+ "order": 2941,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8840,
+ "shinutiNormal": 5620,
+ "shinutiHard": 2550,
+ "shinutiMania": 1670,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8840,
+ "shinutiNormalDuet": 5620,
+ "shinutiHardDuet": 2550,
+ "shinutiManiaDuet": 1670,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000030,
+ "scoreNormal": 1001660,
+ "scoreHard": 1003880,
+ "scoreMania": 1004450,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1028,
+ "id": "wegos",
+ "songFileName": "song_wegos",
+ "order": 2944,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9750,
+ "shinutiNormal": 7140,
+ "shinutiHard": 3560,
+ "shinutiMania": 2190,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9750,
+ "shinutiNormalDuet": 7140,
+ "shinutiHardDuet": 3560,
+ "shinutiManiaDuet": 2190,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000730,
+ "scoreNormal": 1000330,
+ "scoreHard": 1000440,
+ "scoreMania": 1001100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1029,
+ "id": "wii2op",
+ "songFileName": "song_wii2op",
+ "order": 2948,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9460,
+ "shinutiNormal": 5940,
+ "shinutiHard": 3230,
+ "shinutiMania": 2440,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9460,
+ "shinutiNormalDuet": 5940,
+ "shinutiHardDuet": 3230,
+ "shinutiManiaDuet": 2440,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000710,
+ "scoreNormal": 1000170,
+ "scoreHard": 1002150,
+ "scoreMania": 1001960,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1030,
+ "id": "wiu2op",
+ "songFileName": "song_wiu2op",
+ "order": 2954,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6260,
+ "shinutiNormal": 4350,
+ "shinutiHard": 2650,
+ "shinutiMania": 1660,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6260,
+ "shinutiNormalDuet": 4350,
+ "shinutiHardDuet": 2650,
+ "shinutiManiaDuet": 1660,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001110,
+ "scoreNormal": 1002230,
+ "scoreHard": 1000060,
+ "scoreMania": 1002140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1031,
+ "id": "ymharu",
+ "songFileName": "song_ymharu",
+ "order": 2981,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10290,
+ "shinutiNormal": 5710,
+ "shinutiHard": 3330,
+ "shinutiMania": 2430,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10290,
+ "shinutiNormalDuet": 5710,
+ "shinutiHardDuet": 3330,
+ "shinutiManiaDuet": 2430,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000140,
+ "scoreNormal": 1001690,
+ "scoreHard": 1002430,
+ "scoreMania": 1003790,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1032,
+ "id": "ynzkdn",
+ "songFileName": "song_ynzkdn",
+ "order": 2988,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 18740,
+ "shinutiNormal": 10440,
+ "shinutiHard": 5910,
+ "shinutiMania": 2660,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18740,
+ "shinutiNormalDuet": 10440,
+ "shinutiHardDuet": 5910,
+ "shinutiManiaDuet": 2660,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000530,
+ "scoreNormal": 1000800,
+ "scoreHard": 1001130,
+ "scoreMania": 1000160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1033,
+ "id": "ypp",
+ "songFileName": "song_ypp",
+ "order": 3000,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 4,
+ "starUra": 8,
+ "shinutiEasy": 6950,
+ "shinutiNormal": 4330,
+ "shinutiHard": 2880,
+ "shinutiMania": 2780,
+ "shinutiUra": 1820,
+ "shinutiEasyDuet": 6950,
+ "shinutiNormalDuet": 4330,
+ "shinutiHardDuet": 2880,
+ "shinutiManiaDuet": 2780,
+ "shinutiUraDuet": 1820,
+ "scoreEasy": 1001350,
+ "scoreNormal": 1000900,
+ "scoreHard": 1003150,
+ "scoreMania": 1003580,
+ "scoreUra": 1002100
+ },
+ {
+ "uniqueId": 1034,
+ "id": "mlpony",
+ "songFileName": "song_mlpony",
+ "order": 2275,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 2,
+ "starMania": 3,
+ "starUra": 0,
+ "shinutiEasy": 14040,
+ "shinutiNormal": 9050,
+ "shinutiHard": 5850,
+ "shinutiMania": 3790,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14040,
+ "shinutiNormalDuet": 9050,
+ "shinutiHardDuet": 5850,
+ "shinutiManiaDuet": 3790,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000450,
+ "scoreNormal": 1000450,
+ "scoreHard": 1001330,
+ "scoreMania": 1002260,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1035,
+ "id": "cap283",
+ "songFileName": "song_cap283",
+ "order": 1312,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 15070,
+ "shinutiNormal": 11810,
+ "shinutiHard": 5730,
+ "shinutiMania": 3600,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15070,
+ "shinutiNormalDuet": 11810,
+ "shinutiHardDuet": 5730,
+ "shinutiManiaDuet": 3600,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000430,
+ "scoreNormal": 1000430,
+ "scoreHard": 1000060,
+ "scoreMania": 1001320,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1036,
+ "id": "genpe3",
+ "songFileName": "song_genpe3",
+ "order": 1667,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5730,
+ "shinutiNormal": 3390,
+ "shinutiHard": 1850,
+ "shinutiMania": 1520,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5730,
+ "shinutiNormalDuet": 3390,
+ "shinutiHardDuet": 1850,
+ "shinutiManiaDuet": 1520,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1000600,
+ "scoreHard": 1003310,
+ "scoreMania": 1006240,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1037,
+ "id": "dojoaj",
+ "songFileName": "song_dojoaj",
+ "order": 1514,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 11690,
+ "shinutiNormal": 6900,
+ "shinutiHard": 4740,
+ "shinutiMania": 3460,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11690,
+ "shinutiNormalDuet": 6900,
+ "shinutiHardDuet": 4740,
+ "shinutiManiaDuet": 3460,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000060,
+ "scoreNormal": 1001180,
+ "scoreHard": 1000470,
+ "scoreMania": 1000080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1038,
+ "id": "dojoae",
+ "songFileName": "song_dojoae",
+ "order": 1513,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 11690,
+ "shinutiNormal": 6900,
+ "shinutiHard": 4740,
+ "shinutiMania": 3460,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11690,
+ "shinutiNormalDuet": 6900,
+ "shinutiHardDuet": 4740,
+ "shinutiManiaDuet": 3460,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000060,
+ "scoreNormal": 1001180,
+ "scoreHard": 1000470,
+ "scoreMania": 1000080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1039,
+ "id": "tugaru",
+ "songFileName": "song_tugaru",
+ "order": 2851,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 8,
+ "shinutiEasy": 19500,
+ "shinutiNormal": 11820,
+ "shinutiHard": 7510,
+ "shinutiMania": 4480,
+ "shinutiUra": 2850,
+ "shinutiEasyDuet": 19500,
+ "shinutiNormalDuet": 11820,
+ "shinutiHardDuet": 7510,
+ "shinutiManiaDuet": 4480,
+ "shinutiUraDuet": 2850,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1000470,
+ "scoreHard": 1001280,
+ "scoreMania": 1000510,
+ "scoreUra": 1002250
+ },
+ {
+ "uniqueId": 1040,
+ "id": "anayu2",
+ "songFileName": "song_anayu2",
+ "order": 1191,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 2,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 9090,
+ "shinutiNormal": 6410,
+ "shinutiHard": 3530,
+ "shinutiMania": 2650,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9090,
+ "shinutiNormalDuet": 6410,
+ "shinutiHardDuet": 3530,
+ "shinutiManiaDuet": 2650,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001070,
+ "scoreNormal": 1000820,
+ "scoreHard": 1000980,
+ "scoreMania": 1001590,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1041,
+ "id": "lupin",
+ "songFileName": "song_lupin",
+ "order": 2147,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 8,
+ "shinutiEasy": 9420,
+ "shinutiNormal": 6210,
+ "shinutiHard": 3290,
+ "shinutiMania": 3090,
+ "shinutiUra": 2640,
+ "shinutiEasyDuet": 9420,
+ "shinutiNormalDuet": 6210,
+ "shinutiHardDuet": 3290,
+ "shinutiManiaDuet": 3090,
+ "shinutiUraDuet": 2640,
+ "scoreEasy": 1000570,
+ "scoreNormal": 1000520,
+ "scoreHard": 1000160,
+ "scoreMania": 1003000,
+ "scoreUra": 1002190
+ },
+ {
+ "uniqueId": 1042,
+ "id": "1pswup",
+ "songFileName": "song_1pswup",
+ "order": 1011,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9750,
+ "shinutiNormal": 5610,
+ "shinutiHard": 3730,
+ "shinutiMania": 2740,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9750,
+ "shinutiNormalDuet": 5610,
+ "shinutiHardDuet": 3730,
+ "shinutiManiaDuet": 2740,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000590,
+ "scoreNormal": 1000840,
+ "scoreHard": 1000420,
+ "scoreMania": 1003330,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1043,
+ "id": "3d2b1x",
+ "songFileName": "song_3d2b1x",
+ "order": 1037,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5100,
+ "shinutiNormal": 3580,
+ "shinutiHard": 2220,
+ "shinutiMania": 1350,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5100,
+ "shinutiNormalDuet": 3580,
+ "shinutiHardDuet": 2220,
+ "shinutiManiaDuet": 1350,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000770,
+ "scoreNormal": 1000100,
+ "scoreHard": 1000540,
+ "scoreMania": 1006620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1045,
+ "id": "amacha",
+ "songFileName": "song_amacha",
+ "order": 1178,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12260,
+ "shinutiNormal": 7450,
+ "shinutiHard": 3840,
+ "shinutiMania": 3010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12260,
+ "shinutiNormalDuet": 7450,
+ "shinutiHardDuet": 3840,
+ "shinutiManiaDuet": 3010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000340,
+ "scoreNormal": 1001020,
+ "scoreHard": 1000280,
+ "scoreMania": 1000180,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1046,
+ "id": "clsff",
+ "songFileName": "song_clsff",
+ "order": 1364,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 7840,
+ "shinutiNormal": 4940,
+ "shinutiHard": 3330,
+ "shinutiMania": 2510,
+ "shinutiUra": 1540,
+ "shinutiEasyDuet": 7840,
+ "shinutiNormalDuet": 4940,
+ "shinutiHardDuet": 3330,
+ "shinutiManiaDuet": 2510,
+ "shinutiUraDuet": 1540,
+ "scoreEasy": 1000560,
+ "scoreNormal": 1000670,
+ "scoreHard": 1002770,
+ "scoreMania": 1000900,
+ "scoreUra": 1002310
+ },
+ {
+ "uniqueId": 1047,
+ "id": "clsyod",
+ "songFileName": "song_clsyod",
+ "order": 1406,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7460,
+ "shinutiNormal": 5770,
+ "shinutiHard": 2720,
+ "shinutiMania": 2020,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7460,
+ "shinutiNormalDuet": 5770,
+ "shinutiHardDuet": 2720,
+ "shinutiManiaDuet": 2020,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000830,
+ "scoreNormal": 1000370,
+ "scoreHard": 1002110,
+ "scoreMania": 1001780,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1048,
+ "id": "curl2",
+ "songFileName": "song_curl2",
+ "order": 1435,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 17480,
+ "shinutiNormal": 12930,
+ "shinutiHard": 9740,
+ "shinutiMania": 5910,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 17480,
+ "shinutiNormalDuet": 12930,
+ "shinutiHardDuet": 9740,
+ "shinutiManiaDuet": 5910,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000350,
+ "scoreNormal": 1000680,
+ "scoreHard": 1000720,
+ "scoreMania": 1001410,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1049,
+ "id": "fu7fu7",
+ "songFileName": "song_fu7fu7",
+ "order": 1625,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7950,
+ "shinutiNormal": 5870,
+ "shinutiHard": 2980,
+ "shinutiMania": 1670,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7950,
+ "shinutiNormalDuet": 5870,
+ "shinutiHardDuet": 2980,
+ "shinutiManiaDuet": 1670,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1000840,
+ "scoreHard": 1002940,
+ "scoreMania": 1004580,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1050,
+ "id": "gaimus",
+ "songFileName": "song_gaimus",
+ "order": 1638,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 18100,
+ "shinutiNormal": 11830,
+ "shinutiHard": 5190,
+ "shinutiMania": 3600,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18100,
+ "shinutiNormalDuet": 11830,
+ "shinutiHardDuet": 5190,
+ "shinutiManiaDuet": 3600,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000150,
+ "scoreNormal": 1000150,
+ "scoreHard": 1000900,
+ "scoreMania": 1002040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1051,
+ "id": "gumima",
+ "songFileName": "song_gumima",
+ "order": 1720,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 3620,
+ "shinutiNormal": 2600,
+ "shinutiHard": 1800,
+ "shinutiMania": 1440,
+ "shinutiUra": 1160,
+ "shinutiEasyDuet": 3620,
+ "shinutiNormalDuet": 2600,
+ "shinutiHardDuet": 1800,
+ "shinutiManiaDuet": 1440,
+ "shinutiUraDuet": 1160,
+ "scoreEasy": 1001590,
+ "scoreNormal": 1001400,
+ "scoreHard": 1002110,
+ "scoreMania": 1006290,
+ "scoreUra": 1003090
+ },
+ {
+ "uniqueId": 1052,
+ "id": "gurt",
+ "songFileName": "song_gurt",
+ "order": 1728,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8660,
+ "shinutiNormal": 5970,
+ "shinutiHard": 2740,
+ "shinutiMania": 1750,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8660,
+ "shinutiNormalDuet": 5970,
+ "shinutiHardDuet": 2740,
+ "shinutiManiaDuet": 1750,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000630,
+ "scoreNormal": 1000500,
+ "scoreHard": 1001180,
+ "scoreMania": 1003080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1053,
+ "id": "hcpri9",
+ "songFileName": "song_hcpri9",
+ "order": 1748,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 14200,
+ "shinutiNormal": 8270,
+ "shinutiHard": 4020,
+ "shinutiMania": 3150,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14200,
+ "shinutiNormalDuet": 8270,
+ "shinutiHardDuet": 4020,
+ "shinutiManiaDuet": 3150,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000580,
+ "scoreNormal": 1000910,
+ "scoreHard": 1001130,
+ "scoreMania": 1000050,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1054,
+ "id": "m96srb",
+ "songFileName": "song_m96srb",
+ "order": 2155,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6490,
+ "shinutiNormal": 4740,
+ "shinutiHard": 2980,
+ "shinutiMania": 1940,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6490,
+ "shinutiNormalDuet": 4740,
+ "shinutiHardDuet": 2980,
+ "shinutiManiaDuet": 1940,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000320,
+ "scoreNormal": 1000320,
+ "scoreHard": 1002330,
+ "scoreMania": 1001810,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1055,
+ "id": "mottai",
+ "songFileName": "song_mottai",
+ "order": 2297,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6890,
+ "shinutiNormal": 4820,
+ "shinutiHard": 2940,
+ "shinutiMania": 2210,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6890,
+ "shinutiNormalDuet": 4820,
+ "shinutiHardDuet": 2940,
+ "shinutiManiaDuet": 2210,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001390,
+ "scoreNormal": 1001950,
+ "scoreHard": 1002230,
+ "scoreMania": 1000960,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1057,
+ "id": "pacm",
+ "songFileName": "song_pacm",
+ "order": 2411,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5100,
+ "shinutiNormal": 3170,
+ "shinutiHard": 2150,
+ "shinutiMania": 1690,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5100,
+ "shinutiNormalDuet": 3170,
+ "shinutiHardDuet": 2150,
+ "shinutiManiaDuet": 1690,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1001670,
+ "scoreHard": 1001670,
+ "scoreMania": 1005840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1058,
+ "id": "pkmnvo",
+ "songFileName": "song_pkmnvo",
+ "order": 2440,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 16390,
+ "shinutiNormal": 7760,
+ "shinutiHard": 2970,
+ "shinutiMania": 2210,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16390,
+ "shinutiNormalDuet": 7760,
+ "shinutiHardDuet": 2970,
+ "shinutiManiaDuet": 2210,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1000040,
+ "scoreHard": 1001400,
+ "scoreMania": 1002210,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1059,
+ "id": "shline",
+ "songFileName": "song_shline",
+ "order": 2614,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 14620,
+ "shinutiNormal": 11540,
+ "shinutiHard": 4020,
+ "shinutiMania": 2900,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14620,
+ "shinutiNormalDuet": 11540,
+ "shinutiHardDuet": 4020,
+ "shinutiManiaDuet": 2900,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000230,
+ "scoreNormal": 1000560,
+ "scoreHard": 1001830,
+ "scoreMania": 1003380,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1060,
+ "id": "sochi",
+ "songFileName": "song_sochi",
+ "order": 2657,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 7560,
+ "shinutiNormal": 4820,
+ "shinutiHard": 3510,
+ "shinutiMania": 2670,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7560,
+ "shinutiNormalDuet": 4820,
+ "shinutiHardDuet": 3510,
+ "shinutiManiaDuet": 2670,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000800,
+ "scoreNormal": 1000760,
+ "scoreHard": 1000700,
+ "scoreMania": 1003720,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1061,
+ "id": "tok9ja",
+ "songFileName": "song_tok9ja",
+ "order": 2812,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 14200,
+ "shinutiNormal": 12890,
+ "shinutiHard": 5480,
+ "shinutiMania": 3780,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14200,
+ "shinutiNormalDuet": 12890,
+ "shinutiHardDuet": 5480,
+ "shinutiManiaDuet": 3780,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000250,
+ "scoreNormal": 1000070,
+ "scoreHard": 1000930,
+ "scoreMania": 1001660,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1062,
+ "id": "zolext",
+ "songFileName": "song_zolext",
+ "order": 3030,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5130,
+ "shinutiNormal": 3540,
+ "shinutiHard": 2080,
+ "shinutiMania": 1450,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5130,
+ "shinutiNormalDuet": 3540,
+ "shinutiHardDuet": 2080,
+ "shinutiManiaDuet": 1450,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000500,
+ "scoreNormal": 1002150,
+ "scoreHard": 1002760,
+ "scoreMania": 1003500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1063,
+ "id": "3d3hex",
+ "songFileName": "song_3d3hex",
+ "order": 1042,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6130,
+ "shinutiNormal": 4180,
+ "shinutiHard": 2260,
+ "shinutiMania": 1250,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6130,
+ "shinutiNormalDuet": 4180,
+ "shinutiHardDuet": 2260,
+ "shinutiManiaDuet": 1250,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001530,
+ "scoreNormal": 1000920,
+ "scoreHard": 1003900,
+ "scoreMania": 1001000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1064,
+ "id": "ansa23",
+ "songFileName": "song_ansa23",
+ "order": 1203,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10370,
+ "shinutiNormal": 7100,
+ "shinutiHard": 3180,
+ "shinutiMania": 2220,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10370,
+ "shinutiNormalDuet": 7100,
+ "shinutiHardDuet": 3180,
+ "shinutiManiaDuet": 2220,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000730,
+ "scoreNormal": 1000760,
+ "scoreHard": 1001260,
+ "scoreMania": 1001920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1065,
+ "id": "calib3",
+ "songFileName": "song_calib3",
+ "order": 1303,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6870,
+ "shinutiNormal": 4250,
+ "shinutiHard": 2510,
+ "shinutiMania": 2040,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6870,
+ "shinutiNormalDuet": 4250,
+ "shinutiHardDuet": 2510,
+ "shinutiManiaDuet": 2040,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001180,
+ "scoreNormal": 1001940,
+ "scoreHard": 1000680,
+ "scoreMania": 1004630,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1066,
+ "id": "dietft",
+ "songFileName": "song_dietft",
+ "order": 1483,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6940,
+ "shinutiNormal": 4680,
+ "shinutiHard": 2310,
+ "shinutiMania": 1680,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6940,
+ "shinutiNormalDuet": 4680,
+ "shinutiHardDuet": 2310,
+ "shinutiManiaDuet": 1680,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000190,
+ "scoreNormal": 1002060,
+ "scoreHard": 1003820,
+ "scoreMania": 1004490,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1067,
+ "id": "dora36",
+ "songFileName": "song_dora36",
+ "order": 1522,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12970,
+ "shinutiNormal": 8070,
+ "shinutiHard": 3490,
+ "shinutiMania": 2550,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12970,
+ "shinutiNormalDuet": 8070,
+ "shinutiHardDuet": 3490,
+ "shinutiManiaDuet": 2550,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000130,
+ "scoreNormal": 1000240,
+ "scoreHard": 1000230,
+ "scoreMania": 1003030,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1068,
+ "id": "gyak31",
+ "songFileName": "song_gyak31",
+ "order": 1729,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6440,
+ "shinutiNormal": 4140,
+ "shinutiHard": 2560,
+ "shinutiMania": 1700,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6440,
+ "shinutiNormalDuet": 4140,
+ "shinutiHardDuet": 2560,
+ "shinutiManiaDuet": 1700,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001050,
+ "scoreNormal": 1001380,
+ "scoreHard": 1002950,
+ "scoreMania": 1000530,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1069,
+ "id": "hkdays",
+ "songFileName": "song_hkdays",
+ "order": 1764,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 7900,
+ "shinutiNormal": 4950,
+ "shinutiHard": 2500,
+ "shinutiMania": 2240,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7900,
+ "shinutiNormalDuet": 4950,
+ "shinutiHardDuet": 2500,
+ "shinutiManiaDuet": 2240,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000410,
+ "scoreNormal": 1001470,
+ "scoreHard": 1000240,
+ "scoreMania": 1003650,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1070,
+ "id": "iachil",
+ "songFileName": "song_iachil",
+ "order": 1805,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 9570,
+ "shinutiNormal": 6300,
+ "shinutiHard": 3250,
+ "shinutiMania": 2050,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9570,
+ "shinutiNormalDuet": 6300,
+ "shinutiHardDuet": 3250,
+ "shinutiManiaDuet": 2050,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000740,
+ "scoreNormal": 1000680,
+ "scoreHard": 1002760,
+ "scoreMania": 1004500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1071,
+ "id": "kimuso",
+ "songFileName": "song_kimuso",
+ "order": 2034,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10410,
+ "shinutiNormal": 6290,
+ "shinutiHard": 3860,
+ "shinutiMania": 2410,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10410,
+ "shinutiNormalDuet": 6290,
+ "shinutiHardDuet": 3860,
+ "shinutiManiaDuet": 2410,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000450,
+ "scoreNormal": 1000400,
+ "scoreHard": 1001510,
+ "scoreMania": 1004010,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1072,
+ "id": "kr5st2",
+ "songFileName": "song_kr5st2",
+ "order": 2075,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 17390,
+ "shinutiNormal": 10440,
+ "shinutiHard": 4260,
+ "shinutiMania": 3490,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 17390,
+ "shinutiNormalDuet": 10440,
+ "shinutiHardDuet": 4260,
+ "shinutiManiaDuet": 3490,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1000910,
+ "scoreHard": 1000840,
+ "scoreMania": 1000170,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1073,
+ "id": "krkrkk",
+ "songFileName": "song_krkrkk",
+ "order": 2081,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 12230,
+ "shinutiNormal": 7420,
+ "shinutiHard": 3680,
+ "shinutiMania": 2040,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12230,
+ "shinutiNormalDuet": 7420,
+ "shinutiHardDuet": 3680,
+ "shinutiManiaDuet": 2040,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000090,
+ "scoreNormal": 1000060,
+ "scoreHard": 1000460,
+ "scoreMania": 1000250,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1074,
+ "id": "monhnx",
+ "songFileName": "song_monhnx",
+ "order": 2289,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12890,
+ "shinutiNormal": 7550,
+ "shinutiHard": 4280,
+ "shinutiMania": 2770,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12890,
+ "shinutiNormalDuet": 7550,
+ "shinutiHardDuet": 4280,
+ "shinutiManiaDuet": 2770,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000710,
+ "scoreNormal": 1000610,
+ "scoreHard": 1000400,
+ "scoreMania": 1002830,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1075,
+ "id": "mscl4",
+ "songFileName": "song_mscl4",
+ "order": 2304,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6140,
+ "shinutiNormal": 4380,
+ "shinutiHard": 2420,
+ "shinutiMania": 1540,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6140,
+ "shinutiNormalDuet": 4380,
+ "shinutiHardDuet": 2420,
+ "shinutiManiaDuet": 1540,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000090,
+ "scoreNormal": 1000600,
+ "scoreHard": 1003150,
+ "scoreMania": 1005670,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1076,
+ "id": "nameko",
+ "songFileName": "song_nameko",
+ "order": 2319,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 9,
+ "shinutiEasy": 8720,
+ "shinutiNormal": 4110,
+ "shinutiHard": 2710,
+ "shinutiMania": 2560,
+ "shinutiUra": 1310,
+ "shinutiEasyDuet": 8720,
+ "shinutiNormalDuet": 4110,
+ "shinutiHardDuet": 2710,
+ "shinutiManiaDuet": 2560,
+ "shinutiUraDuet": 1310,
+ "scoreEasy": 1000050,
+ "scoreNormal": 1001290,
+ "scoreHard": 1002500,
+ "scoreMania": 1000770,
+ "scoreUra": 1002350
+ },
+ {
+ "uniqueId": 1077,
+ "id": "nedari",
+ "songFileName": "song_nedari",
+ "order": 2330,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6370,
+ "shinutiNormal": 4780,
+ "shinutiHard": 2770,
+ "shinutiMania": 1920,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6370,
+ "shinutiNormalDuet": 4780,
+ "shinutiHardDuet": 2770,
+ "shinutiManiaDuet": 1920,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1000330,
+ "scoreHard": 1000090,
+ "scoreMania": 1004960,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1078,
+ "id": "sora3x",
+ "songFileName": "song_sora3x",
+ "order": 2665,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6500,
+ "shinutiNormal": 4900,
+ "shinutiHard": 2630,
+ "shinutiMania": 1860,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6500,
+ "shinutiNormalDuet": 4900,
+ "shinutiHardDuet": 2630,
+ "shinutiManiaDuet": 1860,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1000950,
+ "scoreHard": 1001820,
+ "scoreMania": 1003110,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1079,
+ "id": "sphang",
+ "songFileName": "song_sphang",
+ "order": 2676,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4910,
+ "shinutiNormal": 2690,
+ "shinutiHard": 1360,
+ "shinutiMania": 1130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4910,
+ "shinutiNormalDuet": 2690,
+ "shinutiHardDuet": 1360,
+ "shinutiManiaDuet": 1130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001640,
+ "scoreNormal": 1000680,
+ "scoreHard": 1003780,
+ "scoreMania": 1005800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1080,
+ "id": "untaka",
+ "songFileName": "song_untaka",
+ "order": 2899,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 21180,
+ "shinutiNormal": 12110,
+ "shinutiHard": 4980,
+ "shinutiMania": 3510,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 21180,
+ "shinutiNormalDuet": 12110,
+ "shinutiHardDuet": 4980,
+ "shinutiManiaDuet": 3510,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000260,
+ "scoreNormal": 1000170,
+ "scoreHard": 1001370,
+ "scoreMania": 1002210,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1081,
+ "id": "valk",
+ "songFileName": "song_valk",
+ "order": 2904,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 6760,
+ "shinutiNormal": 5080,
+ "shinutiHard": 3360,
+ "shinutiMania": 2620,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6760,
+ "shinutiNormalDuet": 5080,
+ "shinutiHardDuet": 3360,
+ "shinutiManiaDuet": 2620,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000010,
+ "scoreNormal": 1000570,
+ "scoreHard": 1000000,
+ "scoreMania": 1000060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1082,
+ "id": "3sh3yo",
+ "songFileName": "song_3sh3yo",
+ "order": 1049,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7180,
+ "shinutiNormal": 6230,
+ "shinutiHard": 2770,
+ "shinutiMania": 2000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7180,
+ "shinutiNormalDuet": 6230,
+ "shinutiHardDuet": 2770,
+ "shinutiManiaDuet": 2000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000020,
+ "scoreNormal": 1000330,
+ "scoreHard": 1000900,
+ "scoreMania": 1002070,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1083,
+ "id": "3tisbz",
+ "songFileName": "song_3tisbz",
+ "order": 1051,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 5470,
+ "shinutiNormal": 3300,
+ "shinutiHard": 2010,
+ "shinutiMania": 1510,
+ "shinutiUra": 1170,
+ "shinutiEasyDuet": 5470,
+ "shinutiNormalDuet": 3300,
+ "shinutiHardDuet": 2010,
+ "shinutiManiaDuet": 1510,
+ "shinutiUraDuet": 1170,
+ "scoreEasy": 1000050,
+ "scoreNormal": 1000710,
+ "scoreHard": 1002440,
+ "scoreMania": 1004400,
+ "scoreUra": 1001930
+ },
+ {
+ "uniqueId": 1084,
+ "id": "5tiusa",
+ "songFileName": "song_5tiusa",
+ "order": 1063,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11270,
+ "shinutiNormal": 6220,
+ "shinutiHard": 3310,
+ "shinutiMania": 2700,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11270,
+ "shinutiNormalDuet": 6220,
+ "shinutiHardDuet": 3310,
+ "shinutiManiaDuet": 2700,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1001190,
+ "scoreHard": 1001500,
+ "scoreMania": 1003390,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1085,
+ "id": "ansa2k",
+ "songFileName": "song_ansa2k",
+ "order": 1204,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9100,
+ "shinutiNormal": 5970,
+ "shinutiHard": 3140,
+ "shinutiMania": 2450,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9100,
+ "shinutiNormalDuet": 5970,
+ "shinutiHardDuet": 3140,
+ "shinutiManiaDuet": 2450,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000710,
+ "scoreNormal": 1000290,
+ "scoreHard": 1003110,
+ "scoreMania": 1003500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1086,
+ "id": "ansa22",
+ "songFileName": "song_ansa22",
+ "order": 1202,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9800,
+ "shinutiNormal": 9120,
+ "shinutiHard": 5390,
+ "shinutiMania": 2360,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9800,
+ "shinutiNormalDuet": 9120,
+ "shinutiHardDuet": 5390,
+ "shinutiManiaDuet": 2360,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000440,
+ "scoreNormal": 1000680,
+ "scoreHard": 1001010,
+ "scoreMania": 1003490,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1087,
+ "id": "arigat",
+ "songFileName": "song_arigat",
+ "order": 1212,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 2,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 18380,
+ "shinutiNormal": 14130,
+ "shinutiHard": 7920,
+ "shinutiMania": 4310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18380,
+ "shinutiNormalDuet": 14130,
+ "shinutiHardDuet": 7920,
+ "shinutiManiaDuet": 4310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1000390,
+ "scoreHard": 1001050,
+ "scoreMania": 1001150,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1088,
+ "id": "audasu",
+ "songFileName": "song_audasu",
+ "order": 1222,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 6000,
+ "shinutiNormal": 3420,
+ "shinutiHard": 2070,
+ "shinutiMania": 1760,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6000,
+ "shinutiNormalDuet": 3420,
+ "shinutiHardDuet": 2070,
+ "shinutiManiaDuet": 1760,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000990,
+ "scoreNormal": 1000520,
+ "scoreHard": 1002320,
+ "scoreMania": 1002570,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1089,
+ "id": "audg14",
+ "songFileName": "song_audg14",
+ "order": 1223,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5940,
+ "shinutiNormal": 4350,
+ "shinutiHard": 2710,
+ "shinutiMania": 1570,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5940,
+ "shinutiNormalDuet": 4350,
+ "shinutiHardDuet": 2710,
+ "shinutiManiaDuet": 1570,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1001650,
+ "scoreHard": 1000580,
+ "scoreMania": 1001190,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1090,
+ "id": "audsen",
+ "songFileName": "song_audsen",
+ "order": 1224,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7580,
+ "shinutiNormal": 4280,
+ "shinutiHard": 2290,
+ "shinutiMania": 1790,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7580,
+ "shinutiNormalDuet": 4280,
+ "shinutiHardDuet": 2290,
+ "shinutiManiaDuet": 1790,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000410,
+ "scoreNormal": 1000370,
+ "scoreHard": 1003230,
+ "scoreMania": 1002260,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1091,
+ "id": "avtapl",
+ "songFileName": "song_avtapl",
+ "order": 1225,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 8090,
+ "shinutiNormal": 5830,
+ "shinutiHard": 2940,
+ "shinutiMania": 2150,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8090,
+ "shinutiNormalDuet": 5830,
+ "shinutiHardDuet": 2940,
+ "shinutiManiaDuet": 2150,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001080,
+ "scoreNormal": 1000250,
+ "scoreHard": 1002670,
+ "scoreMania": 1001920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1092,
+ "id": "avtdou",
+ "songFileName": "song_avtdou",
+ "order": 1226,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7050,
+ "shinutiNormal": 4220,
+ "shinutiHard": 2590,
+ "shinutiMania": 1840,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7050,
+ "shinutiNormalDuet": 4220,
+ "shinutiHardDuet": 2590,
+ "shinutiManiaDuet": 1840,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001350,
+ "scoreNormal": 1000510,
+ "scoreHard": 1002330,
+ "scoreMania": 1001260,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1093,
+ "id": "avtdts",
+ "songFileName": "song_avtdts",
+ "order": 1227,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9750,
+ "shinutiNormal": 6670,
+ "shinutiHard": 3190,
+ "shinutiMania": 2350,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9750,
+ "shinutiNormalDuet": 6670,
+ "shinutiHardDuet": 3190,
+ "shinutiManiaDuet": 2350,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000170,
+ "scoreNormal": 1000770,
+ "scoreHard": 1000000,
+ "scoreMania": 1000180,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1094,
+ "id": "avtwho",
+ "songFileName": "song_avtwho",
+ "order": 1228,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7050,
+ "shinutiNormal": 4940,
+ "shinutiHard": 2400,
+ "shinutiMania": 1800,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7050,
+ "shinutiNormalDuet": 4940,
+ "shinutiHardDuet": 2400,
+ "shinutiManiaDuet": 1800,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000890,
+ "scoreNormal": 1001260,
+ "scoreHard": 1001740,
+ "scoreMania": 1004180,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1095,
+ "id": "basara",
+ "songFileName": "song_basara",
+ "order": 1237,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5230,
+ "shinutiNormal": 3120,
+ "shinutiHard": 1720,
+ "shinutiMania": 1070,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5230,
+ "shinutiNormalDuet": 3120,
+ "shinutiHardDuet": 1720,
+ "shinutiManiaDuet": 1070,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000090,
+ "scoreNormal": 1001300,
+ "scoreHard": 1001030,
+ "scoreMania": 1006060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1096,
+ "id": "calib5",
+ "songFileName": "song_calib5",
+ "order": 1289,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10000,
+ "shinutiNormal": 5750,
+ "shinutiHard": 3720,
+ "shinutiMania": 2290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10000,
+ "shinutiNormalDuet": 5750,
+ "shinutiHardDuet": 3720,
+ "shinutiManiaDuet": 2290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000500,
+ "scoreHard": 1000680,
+ "scoreMania": 1003020,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1097,
+ "id": "charlo",
+ "songFileName": "song_charlo",
+ "order": 1330,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10940,
+ "shinutiNormal": 7150,
+ "shinutiHard": 3120,
+ "shinutiMania": 2210,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10940,
+ "shinutiNormalDuet": 7150,
+ "shinutiHardDuet": 3120,
+ "shinutiManiaDuet": 2210,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000860,
+ "scoreNormal": 1000320,
+ "scoreHard": 1002290,
+ "scoreMania": 1003350,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1098,
+ "id": "dagasi",
+ "songFileName": "song_dagasi",
+ "order": 1438,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 12890,
+ "shinutiNormal": 6860,
+ "shinutiHard": 3600,
+ "shinutiMania": 2440,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12890,
+ "shinutiNormalDuet": 6860,
+ "shinutiHardDuet": 3600,
+ "shinutiManiaDuet": 2440,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000500,
+ "scoreNormal": 1000220,
+ "scoreHard": 1001200,
+ "scoreMania": 1002460,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1099,
+ "id": "digmog",
+ "songFileName": "song_digmog",
+ "order": 1484,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9640,
+ "shinutiNormal": 6880,
+ "shinutiHard": 3510,
+ "shinutiMania": 2250,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9640,
+ "shinutiNormalDuet": 6880,
+ "shinutiHardDuet": 3510,
+ "shinutiManiaDuet": 2250,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1000480,
+ "scoreHard": 1001360,
+ "scoreMania": 1003620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1100,
+ "id": "donuts",
+ "songFileName": "song_donuts",
+ "order": 1519,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 4560,
+ "shinutiNormal": 3060,
+ "shinutiHard": 2030,
+ "shinutiMania": 1370,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4560,
+ "shinutiNormalDuet": 3060,
+ "shinutiHardDuet": 2030,
+ "shinutiManiaDuet": 1370,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000660,
+ "scoreNormal": 1000740,
+ "scoreHard": 1004850,
+ "scoreMania": 1004620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1101,
+ "id": "dual2",
+ "songFileName": "song_dual2",
+ "order": 1556,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7100,
+ "shinutiNormal": 5040,
+ "shinutiHard": 1950,
+ "shinutiMania": 1320,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7100,
+ "shinutiNormalDuet": 5040,
+ "shinutiHardDuet": 1950,
+ "shinutiManiaDuet": 1320,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001240,
+ "scoreNormal": 1001600,
+ "scoreHard": 1001520,
+ "scoreMania": 1000210,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1102,
+ "id": "f2naru",
+ "songFileName": "song_f2naru",
+ "order": 1589,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9650,
+ "shinutiNormal": 5700,
+ "shinutiHard": 3860,
+ "shinutiMania": 2580,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9650,
+ "shinutiNormalDuet": 5700,
+ "shinutiHardDuet": 3860,
+ "shinutiManiaDuet": 2580,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000650,
+ "scoreNormal": 1001720,
+ "scoreHard": 1000710,
+ "scoreMania": 1001110,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1103,
+ "id": "fateop",
+ "songFileName": "song_fateop",
+ "order": 1593,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9620,
+ "shinutiNormal": 6360,
+ "shinutiHard": 2720,
+ "shinutiMania": 2010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9620,
+ "shinutiNormalDuet": 6360,
+ "shinutiHardDuet": 2720,
+ "shinutiManiaDuet": 2010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000520,
+ "scoreNormal": 1000090,
+ "scoreHard": 1001160,
+ "scoreMania": 1003170,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1104,
+ "id": "flkama",
+ "songFileName": "song_flkama",
+ "order": 1605,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 13620,
+ "shinutiNormal": 9370,
+ "shinutiHard": 3910,
+ "shinutiMania": 2620,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13620,
+ "shinutiNormalDuet": 9370,
+ "shinutiHardDuet": 3910,
+ "shinutiManiaDuet": 2620,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000720,
+ "scoreNormal": 1001040,
+ "scoreHard": 1000870,
+ "scoreMania": 1003530,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1105,
+ "id": "follom",
+ "songFileName": "song_follom",
+ "order": 1615,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10690,
+ "shinutiNormal": 7350,
+ "shinutiHard": 4140,
+ "shinutiMania": 2830,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10690,
+ "shinutiNormalDuet": 7350,
+ "shinutiHardDuet": 4140,
+ "shinutiManiaDuet": 2830,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000450,
+ "scoreNormal": 1000420,
+ "scoreHard": 1001520,
+ "scoreMania": 1001910,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1106,
+ "id": "freedw",
+ "songFileName": "song_freedw",
+ "order": 1621,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 8,
+ "shinutiEasy": 6350,
+ "shinutiNormal": 3930,
+ "shinutiHard": 2840,
+ "shinutiMania": 2450,
+ "shinutiUra": 1850,
+ "shinutiEasyDuet": 6350,
+ "shinutiNormalDuet": 3930,
+ "shinutiHardDuet": 2840,
+ "shinutiManiaDuet": 2450,
+ "shinutiUraDuet": 1850,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1002440,
+ "scoreHard": 1000210,
+ "scoreMania": 1002890,
+ "scoreUra": 1000990
+ },
+ {
+ "uniqueId": 1107,
+ "id": "ga9sen",
+ "songFileName": "song_ga9sen",
+ "order": 1637,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 14600,
+ "shinutiNormal": 7510,
+ "shinutiHard": 4460,
+ "shinutiMania": 2990,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14600,
+ "shinutiNormalDuet": 7510,
+ "shinutiHardDuet": 4460,
+ "shinutiManiaDuet": 2990,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000150,
+ "scoreNormal": 1000140,
+ "scoreHard": 1001800,
+ "scoreMania": 1002230,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1108,
+ "id": "gdmbld",
+ "songFileName": "song_gdmbld",
+ "order": 1649,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6780,
+ "shinutiNormal": 4500,
+ "shinutiHard": 3330,
+ "shinutiMania": 2300,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6780,
+ "shinutiNormalDuet": 4500,
+ "shinutiHardDuet": 3330,
+ "shinutiManiaDuet": 2300,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000980,
+ "scoreNormal": 1000910,
+ "scoreHard": 1001450,
+ "scoreMania": 1000030,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1109,
+ "id": "gdmorp",
+ "songFileName": "song_gdmorp",
+ "order": 1651,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 18760,
+ "shinutiNormal": 9620,
+ "shinutiHard": 4310,
+ "shinutiMania": 2430,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18760,
+ "shinutiNormalDuet": 9620,
+ "shinutiHardDuet": 4310,
+ "shinutiManiaDuet": 2430,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000350,
+ "scoreNormal": 1000140,
+ "scoreHard": 1001230,
+ "scoreMania": 1003090,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1110,
+ "id": "gdmrec",
+ "songFileName": "song_gdmrec",
+ "order": 1652,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7370,
+ "shinutiNormal": 4670,
+ "shinutiHard": 3340,
+ "shinutiMania": 2650,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7370,
+ "shinutiNormalDuet": 4670,
+ "shinutiHardDuet": 3340,
+ "shinutiManiaDuet": 2650,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001120,
+ "scoreNormal": 1001080,
+ "scoreHard": 1002520,
+ "scoreMania": 1000220,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1111,
+ "id": "godea3",
+ "songFileName": "song_godea3",
+ "order": 1695,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6210,
+ "shinutiNormal": 4300,
+ "shinutiHard": 2490,
+ "shinutiMania": 1760,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6210,
+ "shinutiNormalDuet": 4300,
+ "shinutiHardDuet": 2490,
+ "shinutiManiaDuet": 1760,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001500,
+ "scoreNormal": 1001860,
+ "scoreHard": 1001910,
+ "scoreMania": 1002110,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1112,
+ "id": "godea4",
+ "songFileName": "song_godea4",
+ "order": 1696,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 10130,
+ "shinutiNormal": 7680,
+ "shinutiHard": 4130,
+ "shinutiMania": 1640,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10130,
+ "shinutiNormalDuet": 7680,
+ "shinutiHardDuet": 4130,
+ "shinutiManiaDuet": 1640,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000490,
+ "scoreNormal": 1000300,
+ "scoreHard": 1001670,
+ "scoreMania": 1005320,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1113,
+ "id": "grumin",
+ "songFileName": "song_grumin",
+ "order": 1707,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7150,
+ "shinutiNormal": 5110,
+ "shinutiHard": 2080,
+ "shinutiMania": 1320,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7150,
+ "shinutiNormalDuet": 5110,
+ "shinutiHardDuet": 2080,
+ "shinutiManiaDuet": 1320,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000500,
+ "scoreNormal": 1000360,
+ "scoreHard": 1004710,
+ "scoreMania": 1002100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1114,
+ "id": "gumivv",
+ "songFileName": "song_gumivv",
+ "order": 1724,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6430,
+ "shinutiNormal": 4690,
+ "shinutiHard": 2440,
+ "shinutiMania": 1480,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6430,
+ "shinutiNormalDuet": 4690,
+ "shinutiHardDuet": 2440,
+ "shinutiManiaDuet": 1480,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001380,
+ "scoreNormal": 1000610,
+ "scoreHard": 1001910,
+ "scoreMania": 1006010,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1115,
+ "id": "haikyu",
+ "songFileName": "song_haikyu",
+ "order": 1733,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9320,
+ "shinutiNormal": 4670,
+ "shinutiHard": 2700,
+ "shinutiMania": 2080,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9320,
+ "shinutiNormalDuet": 4670,
+ "shinutiHardDuet": 2700,
+ "shinutiManiaDuet": 2080,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000140,
+ "scoreNormal": 1000590,
+ "scoreHard": 1001700,
+ "scoreMania": 1000480,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1116,
+ "id": "heromt",
+ "songFileName": "song_heromt",
+ "order": 1754,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10310,
+ "shinutiNormal": 7890,
+ "shinutiHard": 3690,
+ "shinutiMania": 2230,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10310,
+ "shinutiNormalDuet": 7890,
+ "shinutiHardDuet": 3690,
+ "shinutiManiaDuet": 2230,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000810,
+ "scoreNormal": 1000620,
+ "scoreHard": 1001870,
+ "scoreMania": 1002260,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1117,
+ "id": "hormon",
+ "songFileName": "song_hormon",
+ "order": 1781,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5040,
+ "shinutiNormal": 3820,
+ "shinutiHard": 2130,
+ "shinutiMania": 1200,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5040,
+ "shinutiNormalDuet": 3820,
+ "shinutiHardDuet": 2130,
+ "shinutiManiaDuet": 1200,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1000400,
+ "scoreHard": 1001830,
+ "scoreMania": 1007290,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1118,
+ "id": "iaybns",
+ "songFileName": "song_iaybns",
+ "order": 1809,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6760,
+ "shinutiNormal": 4680,
+ "shinutiHard": 3000,
+ "shinutiMania": 1420,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6760,
+ "shinutiNormalDuet": 4680,
+ "shinutiHardDuet": 3000,
+ "shinutiManiaDuet": 1420,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000290,
+ "scoreNormal": 1000500,
+ "scoreHard": 1000610,
+ "scoreMania": 1002400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1120,
+ "id": "kimsak",
+ "songFileName": "song_kimsak",
+ "order": 2033,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8590,
+ "shinutiNormal": 5350,
+ "shinutiHard": 3510,
+ "shinutiMania": 2100,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8590,
+ "shinutiNormalDuet": 5350,
+ "shinutiHardDuet": 3510,
+ "shinutiManiaDuet": 2100,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000880,
+ "scoreNormal": 1000640,
+ "scoreHard": 1000970,
+ "scoreMania": 1001260,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1121,
+ "id": "loghor",
+ "songFileName": "song_loghor",
+ "order": 2126,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8900,
+ "shinutiNormal": 5150,
+ "shinutiHard": 3020,
+ "shinutiMania": 2390,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8900,
+ "shinutiNormalDuet": 5150,
+ "shinutiHardDuet": 3020,
+ "shinutiManiaDuet": 2390,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000520,
+ "scoreNormal": 1001850,
+ "scoreHard": 1001050,
+ "scoreMania": 1002610,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1122,
+ "id": "medl2t",
+ "songFileName": "song_medl2t",
+ "order": 2199,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 2640,
+ "shinutiNormal": 1990,
+ "shinutiHard": 990,
+ "shinutiMania": 710,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 2640,
+ "shinutiNormalDuet": 1990,
+ "shinutiHardDuet": 990,
+ "shinutiManiaDuet": 710,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1002440,
+ "scoreNormal": 1004830,
+ "scoreHard": 1001220,
+ "scoreMania": 1012170,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1123,
+ "id": "megm1x",
+ "songFileName": "song_megm1x",
+ "order": 2201,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6410,
+ "shinutiNormal": 3540,
+ "shinutiHard": 1960,
+ "shinutiMania": 1580,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6410,
+ "shinutiNormalDuet": 3540,
+ "shinutiHardDuet": 1960,
+ "shinutiManiaDuet": 1580,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000760,
+ "scoreNormal": 1001870,
+ "scoreHard": 1004140,
+ "scoreMania": 1002560,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1124,
+ "id": "megm2x",
+ "songFileName": "song_megm2x",
+ "order": 2202,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 4760,
+ "shinutiNormal": 2630,
+ "shinutiHard": 1790,
+ "shinutiMania": 1280,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4760,
+ "shinutiNormalDuet": 2630,
+ "shinutiHardDuet": 1790,
+ "shinutiManiaDuet": 1280,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000780,
+ "scoreNormal": 1000260,
+ "scoreHard": 1004880,
+ "scoreMania": 1000840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1125,
+ "id": "mikurs",
+ "songFileName": "song_mikurs",
+ "order": 2253,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8750,
+ "shinutiNormal": 5910,
+ "shinutiHard": 3410,
+ "shinutiMania": 2440,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8750,
+ "shinutiNormalDuet": 5910,
+ "shinutiHardDuet": 3410,
+ "shinutiManiaDuet": 2440,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000530,
+ "scoreNormal": 1000060,
+ "scoreHard": 1001590,
+ "scoreMania": 1003950,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1126,
+ "id": "mikuuy",
+ "songFileName": "song_mikuuy",
+ "order": 2258,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 4030,
+ "shinutiNormal": 3000,
+ "shinutiHard": 2020,
+ "shinutiMania": 1570,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4030,
+ "shinutiNormalDuet": 3000,
+ "shinutiHardDuet": 2020,
+ "shinutiManiaDuet": 1570,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001360,
+ "scoreNormal": 1003200,
+ "scoreHard": 1002160,
+ "scoreMania": 1000830,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1127,
+ "id": "mlov1k",
+ "songFileName": "song_mlov1k",
+ "order": 2273,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 13290,
+ "shinutiNormal": 9390,
+ "shinutiHard": 4730,
+ "shinutiMania": 2950,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13290,
+ "shinutiNormalDuet": 9390,
+ "shinutiHardDuet": 4730,
+ "shinutiManiaDuet": 2950,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000720,
+ "scoreNormal": 1000790,
+ "scoreHard": 1000650,
+ "scoreMania": 1003000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1128,
+ "id": "neko",
+ "songFileName": "song_neko",
+ "order": 2334,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 6200,
+ "shinutiNormal": 4470,
+ "shinutiHard": 2430,
+ "shinutiMania": 1690,
+ "shinutiUra": 1220,
+ "shinutiEasyDuet": 6200,
+ "shinutiNormalDuet": 4470,
+ "shinutiHardDuet": 2430,
+ "shinutiManiaDuet": 1690,
+ "shinutiUraDuet": 1220,
+ "scoreEasy": 1001500,
+ "scoreNormal": 1000910,
+ "scoreHard": 1000700,
+ "scoreMania": 1003360,
+ "scoreUra": 1007820
+ },
+ {
+ "uniqueId": 1129,
+ "id": "rlnses",
+ "songFileName": "song_rlnses",
+ "order": 2535,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 10,
+ "shinutiEasy": 9170,
+ "shinutiNormal": 6340,
+ "shinutiHard": 3070,
+ "shinutiMania": 1870,
+ "shinutiUra": 1350,
+ "shinutiEasyDuet": 9170,
+ "shinutiNormalDuet": 6340,
+ "shinutiHardDuet": 3070,
+ "shinutiManiaDuet": 1870,
+ "shinutiUraDuet": 1350,
+ "scoreEasy": 1000370,
+ "scoreNormal": 1001080,
+ "scoreHard": 1001440,
+ "scoreMania": 1001750,
+ "scoreUra": 1003310
+ },
+ {
+ "uniqueId": 1130,
+ "id": "rrvdig",
+ "songFileName": "song_rrvdig",
+ "order": 2564,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4980,
+ "shinutiNormal": 3180,
+ "shinutiHard": 1880,
+ "shinutiMania": 1170,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4980,
+ "shinutiNormalDuet": 3180,
+ "shinutiHardDuet": 1880,
+ "shinutiManiaDuet": 1170,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000670,
+ "scoreNormal": 1000900,
+ "scoreHard": 1004240,
+ "scoreMania": 1005500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1131,
+ "id": "rrvusa",
+ "songFileName": "song_rrvusa",
+ "order": 2565,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5590,
+ "shinutiNormal": 2740,
+ "shinutiHard": 1900,
+ "shinutiMania": 1060,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5590,
+ "shinutiNormalDuet": 2740,
+ "shinutiHardDuet": 1900,
+ "shinutiManiaDuet": 1060,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001610,
+ "scoreNormal": 1002660,
+ "scoreHard": 1004630,
+ "scoreMania": 1009000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1132,
+ "id": "tozest",
+ "songFileName": "song_tozest",
+ "order": 2835,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7680,
+ "shinutiNormal": 4970,
+ "shinutiHard": 2130,
+ "shinutiMania": 1590,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7680,
+ "shinutiNormalDuet": 4970,
+ "shinutiHardDuet": 2130,
+ "shinutiManiaDuet": 1590,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1001650,
+ "scoreHard": 1004200,
+ "scoreMania": 1003780,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1133,
+ "id": "tutti",
+ "songFileName": "song_tutti",
+ "order": 2855,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10980,
+ "shinutiNormal": 7890,
+ "shinutiHard": 3940,
+ "shinutiMania": 2300,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10980,
+ "shinutiNormalDuet": 7890,
+ "shinutiHardDuet": 3940,
+ "shinutiManiaDuet": 2300,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1001000,
+ "scoreHard": 1001000,
+ "scoreMania": 1002580,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1134,
+ "id": "umaru",
+ "songFileName": "song_umaru",
+ "order": 2883,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10070,
+ "shinutiNormal": 6080,
+ "shinutiHard": 3360,
+ "shinutiMania": 2430,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10070,
+ "shinutiNormalDuet": 6080,
+ "shinutiHardDuet": 3360,
+ "shinutiManiaDuet": 2430,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000490,
+ "scoreNormal": 1000140,
+ "scoreHard": 1001880,
+ "scoreMania": 1002900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1137,
+ "id": "xanadu",
+ "songFileName": "song_xanadu",
+ "order": 2962,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6650,
+ "shinutiNormal": 5450,
+ "shinutiHard": 2370,
+ "shinutiMania": 1140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6650,
+ "shinutiNormalDuet": 5450,
+ "shinutiHardDuet": 2370,
+ "shinutiManiaDuet": 1140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000650,
+ "scoreNormal": 1001810,
+ "scoreHard": 1004000,
+ "scoreMania": 1008360,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1138,
+ "id": "yugio2",
+ "songFileName": "song_yugio2",
+ "order": 3005,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5510,
+ "shinutiNormal": 3620,
+ "shinutiHard": 2490,
+ "shinutiMania": 1840,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5510,
+ "shinutiNormalDuet": 3620,
+ "shinutiHardDuet": 2490,
+ "shinutiManiaDuet": 1840,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001250,
+ "scoreNormal": 1001730,
+ "scoreHard": 1003110,
+ "scoreMania": 1002670,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1139,
+ "id": "1234dk",
+ "songFileName": "song_1234dk",
+ "order": 1004,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 12030,
+ "shinutiNormal": 8190,
+ "shinutiHard": 3300,
+ "shinutiMania": 1940,
+ "shinutiUra": 1400,
+ "shinutiEasyDuet": 12030,
+ "shinutiNormalDuet": 8190,
+ "shinutiHardDuet": 3300,
+ "shinutiManiaDuet": 1940,
+ "shinutiUraDuet": 1400,
+ "scoreEasy": 1000130,
+ "scoreNormal": 1000890,
+ "scoreHard": 1002480,
+ "scoreMania": 1005070,
+ "scoreUra": 1005370
+ },
+ {
+ "uniqueId": 1140,
+ "id": "1ps",
+ "songFileName": "song_1ps",
+ "order": 1006,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 8390,
+ "shinutiNormal": 5460,
+ "shinutiHard": 3660,
+ "shinutiMania": 3260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8390,
+ "shinutiNormalDuet": 5460,
+ "shinutiHardDuet": 3660,
+ "shinutiManiaDuet": 3260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001060,
+ "scoreNormal": 1001260,
+ "scoreHard": 1001990,
+ "scoreMania": 1001840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1141,
+ "id": "20tbc",
+ "songFileName": "song_20tbc",
+ "order": 1015,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4230,
+ "shinutiNormal": 2740,
+ "shinutiHard": 1800,
+ "shinutiMania": 1000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4230,
+ "shinutiNormalDuet": 2740,
+ "shinutiHardDuet": 1800,
+ "shinutiManiaDuet": 1000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1002810,
+ "scoreHard": 1002130,
+ "scoreMania": 1008000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1142,
+ "id": "24kara",
+ "songFileName": "song_24kara",
+ "order": 1025,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 13170,
+ "shinutiNormal": 7790,
+ "shinutiHard": 5060,
+ "shinutiMania": 3260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13170,
+ "shinutiNormalDuet": 7790,
+ "shinutiHardDuet": 5060,
+ "shinutiManiaDuet": 3260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000690,
+ "scoreNormal": 1001020,
+ "scoreHard": 1000670,
+ "scoreMania": 1000290,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1143,
+ "id": "brand",
+ "songFileName": "song_brand",
+ "order": 1273,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 8510,
+ "shinutiNormal": 4940,
+ "shinutiHard": 3560,
+ "shinutiMania": 2690,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8510,
+ "shinutiNormalDuet": 4940,
+ "shinutiHardDuet": 3560,
+ "shinutiManiaDuet": 2690,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000150,
+ "scoreNormal": 1000590,
+ "scoreHard": 1000900,
+ "scoreMania": 1001140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1144,
+ "id": "cats",
+ "songFileName": "song_cats",
+ "order": 1319,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 14010,
+ "shinutiNormal": 7830,
+ "shinutiHard": 3700,
+ "shinutiMania": 2380,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14010,
+ "shinutiNormalDuet": 7830,
+ "shinutiHardDuet": 3700,
+ "shinutiManiaDuet": 2380,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1000060,
+ "scoreHard": 1001070,
+ "scoreMania": 1001350,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1145,
+ "id": "cutie",
+ "songFileName": "song_cutie",
+ "order": 1436,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7980,
+ "shinutiNormal": 5650,
+ "shinutiHard": 2860,
+ "shinutiMania": 2020,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7980,
+ "shinutiNormalDuet": 5650,
+ "shinutiHardDuet": 2860,
+ "shinutiManiaDuet": 2020,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001210,
+ "scoreNormal": 1000680,
+ "scoreHard": 1000330,
+ "scoreMania": 1003940,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1146,
+ "id": "daja",
+ "songFileName": "song_daja",
+ "order": 1441,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 3,
+ "starUra": 0,
+ "shinutiEasy": 5410,
+ "shinutiNormal": 4080,
+ "shinutiHard": 3970,
+ "shinutiMania": 3040,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5410,
+ "shinutiNormalDuet": 4080,
+ "shinutiHardDuet": 3970,
+ "shinutiManiaDuet": 3040,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000350,
+ "scoreNormal": 1001870,
+ "scoreHard": 1000740,
+ "scoreMania": 1003060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1147,
+ "id": "diveto",
+ "songFileName": "song_diveto",
+ "order": 1491,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7290,
+ "shinutiNormal": 4970,
+ "shinutiHard": 3610,
+ "shinutiMania": 1890,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7290,
+ "shinutiNormalDuet": 4970,
+ "shinutiHardDuet": 3610,
+ "shinutiManiaDuet": 1890,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001230,
+ "scoreNormal": 1002010,
+ "scoreHard": 1002710,
+ "scoreMania": 1002700,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1148,
+ "id": "dora2",
+ "songFileName": "song_dora2",
+ "order": 1521,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 3,
+ "starUra": 0,
+ "shinutiEasy": 11720,
+ "shinutiNormal": 7580,
+ "shinutiHard": 4550,
+ "shinutiMania": 3340,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11720,
+ "shinutiNormalDuet": 7580,
+ "shinutiHardDuet": 4550,
+ "shinutiManiaDuet": 3340,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000810,
+ "scoreNormal": 1000600,
+ "scoreHard": 1001900,
+ "scoreMania": 1002000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1149,
+ "id": "dorama",
+ "songFileName": "song_dorama",
+ "order": 1524,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10140,
+ "shinutiNormal": 7350,
+ "shinutiHard": 3920,
+ "shinutiMania": 2560,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10140,
+ "shinutiNormalDuet": 7350,
+ "shinutiHardDuet": 3920,
+ "shinutiManiaDuet": 2560,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000090,
+ "scoreNormal": 1001060,
+ "scoreHard": 1000340,
+ "scoreMania": 1000960,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1150,
+ "id": "engarm",
+ "songFileName": "song_engarm",
+ "order": 1568,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11980,
+ "shinutiNormal": 7410,
+ "shinutiHard": 5140,
+ "shinutiMania": 2730,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11980,
+ "shinutiNormalDuet": 7410,
+ "shinutiHardDuet": 5140,
+ "shinutiManiaDuet": 2730,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000520,
+ "scoreNormal": 1000700,
+ "scoreHard": 1000750,
+ "scoreMania": 1002020,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1151,
+ "id": "engdre",
+ "songFileName": "song_engdre",
+ "order": 1569,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 11960,
+ "shinutiNormal": 7180,
+ "shinutiHard": 3810,
+ "shinutiMania": 2640,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11960,
+ "shinutiNormalDuet": 7180,
+ "shinutiHardDuet": 3810,
+ "shinutiManiaDuet": 2640,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1000320,
+ "scoreHard": 1000740,
+ "scoreMania": 1001720,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1152,
+ "id": "engori",
+ "songFileName": "song_engori",
+ "order": 1570,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 11150,
+ "shinutiNormal": 7450,
+ "shinutiHard": 3790,
+ "shinutiMania": 2110,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11150,
+ "shinutiNormalDuet": 7450,
+ "shinutiHardDuet": 3790,
+ "shinutiManiaDuet": 2110,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1000180,
+ "scoreHard": 1000630,
+ "scoreMania": 1000010,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1153,
+ "id": "frieng",
+ "songFileName": "song_frieng",
+ "order": 1623,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11440,
+ "shinutiNormal": 7340,
+ "shinutiHard": 4270,
+ "shinutiMania": 2390,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11440,
+ "shinutiNormalDuet": 7340,
+ "shinutiHardDuet": 4270,
+ "shinutiManiaDuet": 2390,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1001010,
+ "scoreHard": 1000570,
+ "scoreMania": 1001410,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1154,
+ "id": "gdmtb",
+ "songFileName": "song_gdmtb",
+ "order": 1654,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 11590,
+ "shinutiNormal": 5310,
+ "shinutiHard": 3380,
+ "shinutiMania": 1520,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11590,
+ "shinutiNormalDuet": 5310,
+ "shinutiHardDuet": 3380,
+ "shinutiManiaDuet": 1520,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000490,
+ "scoreNormal": 1000010,
+ "scoreHard": 1002470,
+ "scoreMania": 1004900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1155,
+ "id": "gumikg",
+ "songFileName": "song_gumikg",
+ "order": 1719,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6780,
+ "shinutiNormal": 3620,
+ "shinutiHard": 1960,
+ "shinutiMania": 1280,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6780,
+ "shinutiNormalDuet": 3620,
+ "shinutiHardDuet": 1960,
+ "shinutiManiaDuet": 1280,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000760,
+ "scoreNormal": 1000220,
+ "scoreHard": 1004360,
+ "scoreMania": 1003280,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1156,
+ "id": "honey",
+ "songFileName": "song_honey",
+ "order": 1779,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 7640,
+ "shinutiNormal": 5060,
+ "shinutiHard": 3540,
+ "shinutiMania": 3310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7640,
+ "shinutiNormalDuet": 5060,
+ "shinutiHardDuet": 3540,
+ "shinutiManiaDuet": 3310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000840,
+ "scoreNormal": 1001880,
+ "scoreHard": 1002300,
+ "scoreMania": 1002930,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1157,
+ "id": "iina1",
+ "songFileName": "song_iina1",
+ "order": 1814,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 16620,
+ "shinutiNormal": 9790,
+ "shinutiHard": 4720,
+ "shinutiMania": 3750,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16620,
+ "shinutiNormalDuet": 9790,
+ "shinutiHardDuet": 4720,
+ "shinutiManiaDuet": 3750,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1000800,
+ "scoreHard": 1001730,
+ "scoreMania": 1002480,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1158,
+ "id": "irmake",
+ "songFileName": "song_irmake",
+ "order": 1947,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12560,
+ "shinutiNormal": 6140,
+ "shinutiHard": 3570,
+ "shinutiMania": 2590,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12560,
+ "shinutiNormalDuet": 6140,
+ "shinutiHardDuet": 3570,
+ "shinutiManiaDuet": 2590,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1001090,
+ "scoreHard": 1001050,
+ "scoreMania": 1001210,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1159,
+ "id": "irsumm",
+ "songFileName": "song_irsumm",
+ "order": 1949,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8070,
+ "shinutiNormal": 4320,
+ "shinutiHard": 2620,
+ "shinutiMania": 1800,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8070,
+ "shinutiNormalDuet": 4320,
+ "shinutiHardDuet": 2620,
+ "shinutiManiaDuet": 1800,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000640,
+ "scoreNormal": 1001240,
+ "scoreHard": 1000020,
+ "scoreMania": 1000600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1160,
+ "id": "junglp",
+ "songFileName": "song_junglp",
+ "order": 1977,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 14190,
+ "shinutiNormal": 7820,
+ "shinutiHard": 4050,
+ "shinutiMania": 2210,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14190,
+ "shinutiNormalDuet": 7820,
+ "shinutiHardDuet": 4050,
+ "shinutiManiaDuet": 2210,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000020,
+ "scoreNormal": 1000760,
+ "scoreHard": 1001450,
+ "scoreMania": 1003140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1161,
+ "id": "jysuki",
+ "songFileName": "song_jysuki",
+ "order": 1979,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11950,
+ "shinutiNormal": 8540,
+ "shinutiHard": 4650,
+ "shinutiMania": 3190,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11950,
+ "shinutiNormalDuet": 8540,
+ "shinutiHardDuet": 4650,
+ "shinutiManiaDuet": 3190,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000270,
+ "scoreNormal": 1000220,
+ "scoreHard": 1002110,
+ "scoreMania": 1001560,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1162,
+ "id": "kame3",
+ "songFileName": "song_kame3",
+ "order": 1997,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9930,
+ "shinutiNormal": 6170,
+ "shinutiHard": 3100,
+ "shinutiMania": 2150,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9930,
+ "shinutiNormalDuet": 6170,
+ "shinutiHardDuet": 3100,
+ "shinutiManiaDuet": 2150,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000340,
+ "scoreNormal": 1000240,
+ "scoreHard": 1002430,
+ "scoreMania": 1002820,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1163,
+ "id": "kimiga",
+ "songFileName": "song_kimiga",
+ "order": 2030,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8870,
+ "shinutiNormal": 5640,
+ "shinutiHard": 2980,
+ "shinutiMania": 1680,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8870,
+ "shinutiNormalDuet": 5640,
+ "shinutiHardDuet": 2980,
+ "shinutiManiaDuet": 1680,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000720,
+ "scoreNormal": 1001360,
+ "scoreHard": 1001630,
+ "scoreMania": 1001660,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1164,
+ "id": "korn",
+ "songFileName": "song_korn",
+ "order": 2070,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10450,
+ "shinutiNormal": 6740,
+ "shinutiHard": 3470,
+ "shinutiMania": 2110,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10450,
+ "shinutiNormalDuet": 6740,
+ "shinutiHardDuet": 3470,
+ "shinutiManiaDuet": 2110,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000230,
+ "scoreNormal": 1001080,
+ "scoreHard": 1002600,
+ "scoreMania": 1004360,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1166,
+ "id": "lovefo",
+ "songFileName": "song_lovefo",
+ "order": 2130,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 11850,
+ "shinutiNormal": 7960,
+ "shinutiHard": 4910,
+ "shinutiMania": 3080,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11850,
+ "shinutiNormalDuet": 7960,
+ "shinutiHardDuet": 4910,
+ "shinutiManiaDuet": 3080,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000800,
+ "scoreNormal": 1000510,
+ "scoreHard": 1001080,
+ "scoreMania": 1001140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1167,
+ "id": "lvsoup",
+ "songFileName": "song_lvsoup",
+ "order": 2149,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8570,
+ "shinutiNormal": 6020,
+ "shinutiHard": 3710,
+ "shinutiMania": 2250,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8570,
+ "shinutiNormalDuet": 6020,
+ "shinutiHardDuet": 3710,
+ "shinutiManiaDuet": 2250,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001080,
+ "scoreNormal": 1001020,
+ "scoreHard": 1000440,
+ "scoreMania": 1000290,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1168,
+ "id": "motos",
+ "songFileName": "song_motos",
+ "order": 2296,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7540,
+ "shinutiNormal": 5820,
+ "shinutiHard": 2960,
+ "shinutiMania": 2190,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7540,
+ "shinutiNormalDuet": 5820,
+ "shinutiHardDuet": 2960,
+ "shinutiManiaDuet": 2190,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000290,
+ "scoreNormal": 1001600,
+ "scoreHard": 1001220,
+ "scoreMania": 1003440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1169,
+ "id": "nulite",
+ "songFileName": "song_nulite",
+ "order": 2360,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 3700,
+ "shinutiNormal": 3180,
+ "shinutiHard": 1510,
+ "shinutiMania": 1010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3700,
+ "shinutiNormalDuet": 3180,
+ "shinutiHardDuet": 1510,
+ "shinutiManiaDuet": 1010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000650,
+ "scoreNormal": 1000120,
+ "scoreHard": 1005660,
+ "scoreMania": 1009490,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1170,
+ "id": "peach",
+ "songFileName": "song_peach",
+ "order": 2417,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 12320,
+ "shinutiNormal": 8540,
+ "shinutiHard": 5110,
+ "shinutiMania": 3230,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12320,
+ "shinutiNormalDuet": 8540,
+ "shinutiHardDuet": 5110,
+ "shinutiManiaDuet": 3230,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000330,
+ "scoreNormal": 1000820,
+ "scoreHard": 1001560,
+ "scoreMania": 1003020,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1171,
+ "id": "pop",
+ "songFileName": "song_pop",
+ "order": 2452,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9960,
+ "shinutiNormal": 7210,
+ "shinutiHard": 3600,
+ "shinutiMania": 2150,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9960,
+ "shinutiNormalDuet": 7210,
+ "shinutiHardDuet": 3600,
+ "shinutiManiaDuet": 2150,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000750,
+ "scoreNormal": 1001370,
+ "scoreHard": 1000270,
+ "scoreMania": 1004050,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1172,
+ "id": "pr9hug",
+ "songFileName": "song_pr9hug",
+ "order": 2464,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 2,
+ "starMania": 2,
+ "starUra": 0,
+ "shinutiEasy": 28350,
+ "shinutiNormal": 13760,
+ "shinutiHard": 8970,
+ "shinutiMania": 4500,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 28350,
+ "shinutiNormalDuet": 13760,
+ "shinutiHardDuet": 8970,
+ "shinutiManiaDuet": 4500,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000340,
+ "scoreNormal": 1000660,
+ "scoreHard": 1000090,
+ "scoreMania": 1001180,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1173,
+ "id": "puffy",
+ "songFileName": "song_puffy",
+ "order": 2485,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8130,
+ "shinutiNormal": 6990,
+ "shinutiHard": 4710,
+ "shinutiMania": 2630,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8130,
+ "shinutiNormalDuet": 6990,
+ "shinutiHardDuet": 4710,
+ "shinutiManiaDuet": 2630,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001180,
+ "scoreNormal": 1001020,
+ "scoreHard": 1000480,
+ "scoreMania": 1000940,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1174,
+ "id": "puzdr2",
+ "songFileName": "song_puzdr2",
+ "order": 2490,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8570,
+ "shinutiNormal": 5710,
+ "shinutiHard": 4580,
+ "shinutiMania": 2450,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8570,
+ "shinutiNormalDuet": 5710,
+ "shinutiHardDuet": 4580,
+ "shinutiManiaDuet": 2450,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000350,
+ "scoreNormal": 1001140,
+ "scoreHard": 1000690,
+ "scoreMania": 1001780,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1175,
+ "id": "puzdr3",
+ "songFileName": "song_puzdr3",
+ "order": 2491,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6270,
+ "shinutiNormal": 4340,
+ "shinutiHard": 2560,
+ "shinutiMania": 1550,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6270,
+ "shinutiNormalDuet": 4340,
+ "shinutiHardDuet": 2560,
+ "shinutiManiaDuet": 1550,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001080,
+ "scoreNormal": 1000150,
+ "scoreHard": 1001010,
+ "scoreMania": 1003500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1176,
+ "id": "puzdr5",
+ "songFileName": "song_puzdr5",
+ "order": 2493,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7640,
+ "shinutiNormal": 4280,
+ "shinutiHard": 2410,
+ "shinutiMania": 1510,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7640,
+ "shinutiNormalDuet": 4280,
+ "shinutiHardDuet": 2410,
+ "shinutiManiaDuet": 1510,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001160,
+ "scoreNormal": 1001150,
+ "scoreHard": 1001700,
+ "scoreMania": 1000900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1177,
+ "id": "roman",
+ "songFileName": "song_roman",
+ "order": 2545,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": true,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 14670,
+ "shinutiNormal": 7520,
+ "shinutiHard": 3850,
+ "shinutiMania": 3030,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14670,
+ "shinutiNormalDuet": 7520,
+ "shinutiHardDuet": 3850,
+ "shinutiManiaDuet": 3030,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000490,
+ "scoreNormal": 1000160,
+ "scoreHard": 1001000,
+ "scoreMania": 1002930,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1178,
+ "id": "romanc",
+ "songFileName": "song_romanc",
+ "order": 2546,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9230,
+ "shinutiNormal": 5930,
+ "shinutiHard": 2940,
+ "shinutiMania": 1840,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9230,
+ "shinutiNormalDuet": 5930,
+ "shinutiHardDuet": 2940,
+ "shinutiManiaDuet": 1840,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1000810,
+ "scoreHard": 1002840,
+ "scoreMania": 1005410,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1179,
+ "id": "sakura",
+ "songFileName": "song_sakura",
+ "order": 2578,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9130,
+ "shinutiNormal": 6300,
+ "shinutiHard": 3530,
+ "shinutiMania": 2640,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9130,
+ "shinutiNormalDuet": 6300,
+ "shinutiHardDuet": 3530,
+ "shinutiManiaDuet": 2640,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001020,
+ "scoreNormal": 1000650,
+ "scoreHard": 1002500,
+ "scoreMania": 1001970,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1180,
+ "id": "siruvu",
+ "songFileName": "song_siruvu",
+ "order": 2631,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8440,
+ "shinutiNormal": 5020,
+ "shinutiHard": 3380,
+ "shinutiMania": 2270,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8440,
+ "shinutiNormalDuet": 5020,
+ "shinutiHardDuet": 3380,
+ "shinutiManiaDuet": 2270,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000880,
+ "scoreNormal": 1000060,
+ "scoreHard": 1001700,
+ "scoreMania": 1002330,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1182,
+ "id": "sukima",
+ "songFileName": "song_sukima",
+ "order": 2706,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11550,
+ "shinutiNormal": 7330,
+ "shinutiHard": 2950,
+ "shinutiMania": 2140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11550,
+ "shinutiNormalDuet": 7330,
+ "shinutiHardDuet": 2950,
+ "shinutiManiaDuet": 2140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000310,
+ "scoreNormal": 1001300,
+ "scoreHard": 1003010,
+ "scoreMania": 1001270,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1183,
+ "id": "sunaon",
+ "songFileName": "song_sunaon",
+ "order": 2707,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 11360,
+ "shinutiNormal": 8060,
+ "shinutiHard": 4480,
+ "shinutiMania": 3760,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11360,
+ "shinutiNormalDuet": 8060,
+ "shinutiHardDuet": 4480,
+ "shinutiManiaDuet": 3760,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000290,
+ "scoreNormal": 1000180,
+ "scoreHard": 1000390,
+ "scoreMania": 1002210,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1184,
+ "id": "tana84",
+ "songFileName": "song_tana84",
+ "order": 2741,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 18160,
+ "shinutiNormal": 10170,
+ "shinutiHard": 6700,
+ "shinutiMania": 1990,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18160,
+ "shinutiNormalDuet": 10170,
+ "shinutiHardDuet": 6700,
+ "shinutiManiaDuet": 1990,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000530,
+ "scoreNormal": 1000650,
+ "scoreHard": 1001300,
+ "scoreMania": 1001590,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1185,
+ "id": "tei59k",
+ "songFileName": "song_tei59k",
+ "order": 2750,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11560,
+ "shinutiNormal": 6890,
+ "shinutiHard": 3760,
+ "shinutiMania": 2570,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11560,
+ "shinutiNormalDuet": 6890,
+ "shinutiHardDuet": 3760,
+ "shinutiManiaDuet": 2570,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000850,
+ "scoreNormal": 1000790,
+ "scoreHard": 1000420,
+ "scoreMania": 1002930,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1186,
+ "id": "teleca",
+ "songFileName": "song_teleca",
+ "order": 2757,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4700,
+ "shinutiNormal": 3620,
+ "shinutiHard": 1760,
+ "shinutiMania": 1010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4700,
+ "shinutiNormalDuet": 3620,
+ "shinutiHardDuet": 1760,
+ "shinutiManiaDuet": 1010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000780,
+ "scoreNormal": 1000820,
+ "scoreHard": 1005250,
+ "scoreMania": 1009180,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1187,
+ "id": "vfgbs",
+ "songFileName": "song_vfgbs",
+ "order": 2908,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5710,
+ "shinutiNormal": 3240,
+ "shinutiHard": 1840,
+ "shinutiMania": 1450,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5710,
+ "shinutiNormalDuet": 3240,
+ "shinutiHardDuet": 1840,
+ "shinutiManiaDuet": 1450,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000770,
+ "scoreNormal": 1002370,
+ "scoreHard": 1004130,
+ "scoreMania": 1005150,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1188,
+ "id": "imeacc",
+ "songFileName": "song_imeacc",
+ "order": 1838,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 10,
+ "shinutiEasy": 7630,
+ "shinutiNormal": 3960,
+ "shinutiHard": 2410,
+ "shinutiMania": 1470,
+ "shinutiUra": 1050,
+ "shinutiEasyDuet": 7630,
+ "shinutiNormalDuet": 3960,
+ "shinutiHardDuet": 2410,
+ "shinutiManiaDuet": 1470,
+ "shinutiUraDuet": 1050,
+ "scoreEasy": 1001090,
+ "scoreNormal": 1001670,
+ "scoreHard": 1003390,
+ "scoreMania": 1001510,
+ "scoreUra": 1009050
+ },
+ {
+ "uniqueId": 1189,
+ "id": "imeali",
+ "songFileName": "song_imeali",
+ "order": 1839,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6860,
+ "shinutiNormal": 5060,
+ "shinutiHard": 3140,
+ "shinutiMania": 1410,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6860,
+ "shinutiNormalDuet": 5060,
+ "shinutiHardDuet": 3140,
+ "shinutiManiaDuet": 1410,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1000040,
+ "scoreHard": 1000140,
+ "scoreMania": 1002510,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1190,
+ "id": "imehel",
+ "songFileName": "song_imehel",
+ "order": 1842,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6250,
+ "shinutiNormal": 4470,
+ "shinutiHard": 3200,
+ "shinutiMania": 1640,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6250,
+ "shinutiNormalDuet": 4470,
+ "shinutiHardDuet": 3200,
+ "shinutiManiaDuet": 1640,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000990,
+ "scoreNormal": 1001280,
+ "scoreHard": 1001040,
+ "scoreMania": 1004880,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1191,
+ "id": "ims2ji",
+ "songFileName": "song_ims2ji",
+ "order": 1850,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7070,
+ "shinutiNormal": 4570,
+ "shinutiHard": 2940,
+ "shinutiMania": 1630,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7070,
+ "shinutiNormalDuet": 4570,
+ "shinutiHardDuet": 2940,
+ "shinutiManiaDuet": 1630,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000750,
+ "scoreNormal": 1000080,
+ "scoreHard": 1001200,
+ "scoreMania": 1002350,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1192,
+ "id": "ims2t",
+ "songFileName": "song_ims2t",
+ "order": 1851,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 8,
+ "shinutiEasy": 6360,
+ "shinutiNormal": 4530,
+ "shinutiHard": 2680,
+ "shinutiMania": 2010,
+ "shinutiUra": 1310,
+ "shinutiEasyDuet": 6360,
+ "shinutiNormalDuet": 4530,
+ "shinutiHardDuet": 2680,
+ "shinutiManiaDuet": 2010,
+ "shinutiUraDuet": 1310,
+ "scoreEasy": 1000610,
+ "scoreNormal": 1002170,
+ "scoreHard": 1000580,
+ "scoreMania": 1004000,
+ "scoreUra": 1002150
+ },
+ {
+ "uniqueId": 1193,
+ "id": "ims73d",
+ "songFileName": "song_ims73d",
+ "order": 1853,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9650,
+ "shinutiNormal": 6410,
+ "shinutiHard": 4350,
+ "shinutiMania": 2480,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9650,
+ "shinutiNormalDuet": 6410,
+ "shinutiHardDuet": 4350,
+ "shinutiManiaDuet": 2480,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000010,
+ "scoreNormal": 1001030,
+ "scoreHard": 1002040,
+ "scoreMania": 1003860,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1194,
+ "id": "ims7ir",
+ "songFileName": "song_ims7ir",
+ "order": 1854,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7580,
+ "shinutiNormal": 5800,
+ "shinutiHard": 2990,
+ "shinutiMania": 2190,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7580,
+ "shinutiNormalDuet": 5800,
+ "shinutiHardDuet": 2990,
+ "shinutiManiaDuet": 2190,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000540,
+ "scoreNormal": 1000080,
+ "scoreHard": 1002490,
+ "scoreMania": 1000830,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1195,
+ "id": "ims7nd",
+ "songFileName": "song_ims7nd",
+ "order": 1855,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 5980,
+ "shinutiNormal": 4230,
+ "shinutiHard": 2380,
+ "shinutiMania": 1590,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5980,
+ "shinutiNormalDuet": 4230,
+ "shinutiHardDuet": 2380,
+ "shinutiManiaDuet": 1590,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001150,
+ "scoreNormal": 1000270,
+ "scoreHard": 1002290,
+ "scoreMania": 1001330,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1196,
+ "id": "ims89s",
+ "songFileName": "song_ims89s",
+ "order": 1856,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 13690,
+ "shinutiNormal": 11040,
+ "shinutiHard": 5400,
+ "shinutiMania": 4050,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13690,
+ "shinutiNormalDuet": 11040,
+ "shinutiHardDuet": 5400,
+ "shinutiManiaDuet": 4050,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000360,
+ "scoreNormal": 1000380,
+ "scoreHard": 1001510,
+ "scoreMania": 1001080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1197,
+ "id": "imsbdl",
+ "songFileName": "song_imsbdl",
+ "order": 1859,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8970,
+ "shinutiNormal": 6110,
+ "shinutiHard": 3510,
+ "shinutiMania": 1720,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8970,
+ "shinutiNormalDuet": 6110,
+ "shinutiHardDuet": 3510,
+ "shinutiManiaDuet": 1720,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000410,
+ "scoreNormal": 1000560,
+ "scoreHard": 1002300,
+ "scoreMania": 1003250,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1198,
+ "id": "imschg",
+ "songFileName": "song_imschg",
+ "order": 1860,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9440,
+ "shinutiNormal": 7560,
+ "shinutiHard": 3650,
+ "shinutiMania": 2470,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9440,
+ "shinutiNormalDuet": 7560,
+ "shinutiHardDuet": 3650,
+ "shinutiManiaDuet": 2470,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000250,
+ "scoreNormal": 1001010,
+ "scoreHard": 1000850,
+ "scoreMania": 1001530,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1199,
+ "id": "imsday",
+ "songFileName": "song_imsday",
+ "order": 1862,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7920,
+ "shinutiNormal": 4940,
+ "shinutiHard": 2730,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7920,
+ "shinutiNormalDuet": 4940,
+ "shinutiHardDuet": 2730,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1000670,
+ "scoreHard": 1000700,
+ "scoreMania": 1002150,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1200,
+ "id": "imsdia",
+ "songFileName": "song_imsdia",
+ "order": 1863,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7790,
+ "shinutiNormal": 5690,
+ "shinutiHard": 3920,
+ "shinutiMania": 2680,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7790,
+ "shinutiNormalDuet": 5690,
+ "shinutiHardDuet": 3920,
+ "shinutiManiaDuet": 2680,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001240,
+ "scoreNormal": 1000810,
+ "scoreHard": 1002420,
+ "scoreMania": 1001890,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1201,
+ "id": "imsedn",
+ "songFileName": "song_imsedn",
+ "order": 1865,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7490,
+ "shinutiNormal": 5600,
+ "shinutiHard": 3480,
+ "shinutiMania": 1420,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7490,
+ "shinutiNormalDuet": 5600,
+ "shinutiHardDuet": 3480,
+ "shinutiManiaDuet": 1420,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000900,
+ "scoreNormal": 1001430,
+ "scoreHard": 1001950,
+ "scoreMania": 1001530,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1202,
+ "id": "imsgem",
+ "songFileName": "song_imsgem",
+ "order": 1869,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6500,
+ "shinutiNormal": 4850,
+ "shinutiHard": 2980,
+ "shinutiMania": 1730,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6500,
+ "shinutiNormalDuet": 4850,
+ "shinutiHardDuet": 2980,
+ "shinutiManiaDuet": 1730,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001230,
+ "scoreNormal": 1002010,
+ "scoreHard": 1001080,
+ "scoreMania": 1003020,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1203,
+ "id": "imsim2",
+ "songFileName": "song_imsim2",
+ "order": 1874,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5900,
+ "shinutiNormal": 4720,
+ "shinutiHard": 2270,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5900,
+ "shinutiNormalDuet": 4720,
+ "shinutiHardDuet": 2270,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000460,
+ "scoreNormal": 1000640,
+ "scoreHard": 1001370,
+ "scoreMania": 1002550,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1204,
+ "id": "imsk87",
+ "songFileName": "song_imsk87",
+ "order": 1881,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10150,
+ "shinutiNormal": 7650,
+ "shinutiHard": 4240,
+ "shinutiMania": 2310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10150,
+ "shinutiNormalDuet": 7650,
+ "shinutiHardDuet": 4240,
+ "shinutiManiaDuet": 2310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000160,
+ "scoreNormal": 1001240,
+ "scoreHard": 1001340,
+ "scoreMania": 1004030,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1205,
+ "id": "imskyu",
+ "songFileName": "song_imskyu",
+ "order": 1885,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 7720,
+ "shinutiNormal": 5620,
+ "shinutiHard": 3580,
+ "shinutiMania": 2290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7720,
+ "shinutiNormalDuet": 5620,
+ "shinutiHardDuet": 3580,
+ "shinutiManiaDuet": 2290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000610,
+ "scoreNormal": 1000570,
+ "scoreHard": 1002420,
+ "scoreMania": 1003440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1206,
+ "id": "imslvl",
+ "songFileName": "song_imslvl",
+ "order": 1888,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 5270,
+ "shinutiNormal": 4980,
+ "shinutiHard": 3070,
+ "shinutiMania": 1990,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5270,
+ "shinutiNormalDuet": 4980,
+ "shinutiHardDuet": 3070,
+ "shinutiManiaDuet": 1990,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000290,
+ "scoreNormal": 1000570,
+ "scoreHard": 1002430,
+ "scoreMania": 1002170,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1207,
+ "id": "imsmat",
+ "songFileName": "song_imsmat",
+ "order": 1890,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7400,
+ "shinutiNormal": 5290,
+ "shinutiHard": 3230,
+ "shinutiMania": 1650,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7400,
+ "shinutiNormalDuet": 5290,
+ "shinutiHardDuet": 3230,
+ "shinutiManiaDuet": 1650,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000350,
+ "scoreNormal": 1000370,
+ "scoreHard": 1003020,
+ "scoreMania": 1001270,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1208,
+ "id": "imsmgr",
+ "songFileName": "song_imsmgr",
+ "order": 1892,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 5980,
+ "shinutiNormal": 4210,
+ "shinutiHard": 2490,
+ "shinutiMania": 1760,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5980,
+ "shinutiNormalDuet": 4210,
+ "shinutiHardDuet": 2490,
+ "shinutiManiaDuet": 1760,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000610,
+ "scoreNormal": 1001120,
+ "scoreHard": 1001810,
+ "scoreMania": 1005550,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1209,
+ "id": "imsmus",
+ "songFileName": "song_imsmus",
+ "order": 1898,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 8,
+ "shinutiEasy": 5810,
+ "shinutiNormal": 5040,
+ "shinutiHard": 2840,
+ "shinutiMania": 2250,
+ "shinutiUra": 1540,
+ "shinutiEasyDuet": 5810,
+ "shinutiNormalDuet": 5040,
+ "shinutiHardDuet": 2840,
+ "shinutiManiaDuet": 2250,
+ "shinutiUraDuet": 1540,
+ "scoreEasy": 1000150,
+ "scoreNormal": 1000950,
+ "scoreHard": 1000960,
+ "scoreMania": 1003390,
+ "scoreUra": 1001680
+ },
+ {
+ "uniqueId": 1210,
+ "id": "imsnmr",
+ "songFileName": "song_imsnmr",
+ "order": 1902,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 13790,
+ "shinutiNormal": 8940,
+ "shinutiHard": 6730,
+ "shinutiMania": 4510,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13790,
+ "shinutiNormalDuet": 8940,
+ "shinutiHardDuet": 6730,
+ "shinutiManiaDuet": 4510,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000060,
+ "scoreNormal": 1001050,
+ "scoreHard": 1001100,
+ "scoreMania": 1001120,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1211,
+ "id": "imsodm",
+ "songFileName": "song_imsodm",
+ "order": 1903,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 7300,
+ "shinutiNormal": 4550,
+ "shinutiHard": 3080,
+ "shinutiMania": 2190,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7300,
+ "shinutiNormalDuet": 4550,
+ "shinutiHardDuet": 3080,
+ "shinutiManiaDuet": 2190,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000750,
+ "scoreNormal": 1001980,
+ "scoreHard": 1002200,
+ "scoreMania": 1004050,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1213,
+ "id": "imsrbw",
+ "songFileName": "song_imsrbw",
+ "order": 1908,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 6480,
+ "shinutiNormal": 4970,
+ "shinutiHard": 3540,
+ "shinutiMania": 1780,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6480,
+ "shinutiNormalDuet": 4970,
+ "shinutiHardDuet": 3540,
+ "shinutiManiaDuet": 1780,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000620,
+ "scoreNormal": 1001020,
+ "scoreHard": 1000430,
+ "scoreMania": 1005590,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1214,
+ "id": "imsrdy",
+ "songFileName": "song_imsrdy",
+ "order": 1909,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10030,
+ "shinutiNormal": 8270,
+ "shinutiHard": 3400,
+ "shinutiMania": 2380,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10030,
+ "shinutiNormalDuet": 8270,
+ "shinutiHardDuet": 3400,
+ "shinutiManiaDuet": 2380,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000570,
+ "scoreNormal": 1000970,
+ "scoreHard": 1002670,
+ "scoreMania": 1002210,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1215,
+ "id": "imssmo",
+ "songFileName": "song_imssmo",
+ "order": 1916,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8740,
+ "shinutiNormal": 6540,
+ "shinutiHard": 3320,
+ "shinutiMania": 2010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8740,
+ "shinutiNormalDuet": 6540,
+ "shinutiHardDuet": 3320,
+ "shinutiManiaDuet": 2010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000480,
+ "scoreNormal": 1000730,
+ "scoreHard": 1002920,
+ "scoreMania": 1003490,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1216,
+ "id": "imssmt",
+ "songFileName": "song_imssmt",
+ "order": 1917,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9280,
+ "shinutiNormal": 6090,
+ "shinutiHard": 3980,
+ "shinutiMania": 2000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9280,
+ "shinutiNormalDuet": 6090,
+ "shinutiHardDuet": 3980,
+ "shinutiManiaDuet": 2000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000690,
+ "scoreNormal": 1001590,
+ "scoreHard": 1000400,
+ "scoreMania": 1000000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1217,
+ "id": "imsstt",
+ "songFileName": "song_imsstt",
+ "order": 1919,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6020,
+ "shinutiNormal": 4530,
+ "shinutiHard": 2670,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6020,
+ "shinutiNormalDuet": 4530,
+ "shinutiHardDuet": 2670,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001550,
+ "scoreNormal": 1001390,
+ "scoreHard": 1002350,
+ "scoreMania": 1007600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1218,
+ "id": "imsthn",
+ "songFileName": "song_imsthn",
+ "order": 1920,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 10,
+ "shinutiEasy": 4970,
+ "shinutiNormal": 3970,
+ "shinutiHard": 2230,
+ "shinutiMania": 1780,
+ "shinutiUra": 1140,
+ "shinutiEasyDuet": 4970,
+ "shinutiNormalDuet": 3970,
+ "shinutiHardDuet": 2230,
+ "shinutiManiaDuet": 1780,
+ "shinutiUraDuet": 1140,
+ "scoreEasy": 1001300,
+ "scoreNormal": 1001130,
+ "scoreHard": 1001110,
+ "scoreMania": 1001570,
+ "scoreUra": 1004440
+ },
+ {
+ "uniqueId": 1219,
+ "id": "imstri",
+ "songFileName": "song_imstri",
+ "order": 1923,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6490,
+ "shinutiNormal": 3940,
+ "shinutiHard": 2970,
+ "shinutiMania": 1480,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6490,
+ "shinutiNormalDuet": 3940,
+ "shinutiHardDuet": 2970,
+ "shinutiManiaDuet": 1480,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000990,
+ "scoreNormal": 1002430,
+ "scoreHard": 1001830,
+ "scoreMania": 1003440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1220,
+ "id": "imsuom",
+ "songFileName": "song_imsuom",
+ "order": 1925,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6130,
+ "shinutiNormal": 4590,
+ "shinutiHard": 2400,
+ "shinutiMania": 1600,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6130,
+ "shinutiNormalDuet": 4590,
+ "shinutiHardDuet": 2400,
+ "shinutiManiaDuet": 1600,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001080,
+ "scoreNormal": 1001220,
+ "scoreHard": 1003090,
+ "scoreMania": 1000680,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1221,
+ "id": "imsvis",
+ "songFileName": "song_imsvis",
+ "order": 1926,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5980,
+ "shinutiNormal": 4240,
+ "shinutiHard": 2500,
+ "shinutiMania": 1640,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5980,
+ "shinutiNormalDuet": 4240,
+ "shinutiHardDuet": 2500,
+ "shinutiManiaDuet": 1640,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1000590,
+ "scoreHard": 1000230,
+ "scoreMania": 1003050,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1222,
+ "id": "imsweh",
+ "songFileName": "song_imsweh",
+ "order": 1927,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6230,
+ "shinutiNormal": 5440,
+ "shinutiHard": 3120,
+ "shinutiMania": 1650,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6230,
+ "shinutiNormalDuet": 5440,
+ "shinutiHardDuet": 3120,
+ "shinutiManiaDuet": 1650,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001010,
+ "scoreNormal": 1001690,
+ "scoreHard": 1000010,
+ "scoreMania": 1004950,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1223,
+ "id": "ims5hn",
+ "songFileName": "song_ims5hn",
+ "order": 1852,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6780,
+ "shinutiNormal": 5200,
+ "shinutiHard": 2730,
+ "shinutiMania": 1320,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6780,
+ "shinutiNormalDuet": 5200,
+ "shinutiHardDuet": 2730,
+ "shinutiManiaDuet": 1320,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000250,
+ "scoreNormal": 1000970,
+ "scoreHard": 1000610,
+ "scoreMania": 1000280,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1224,
+ "id": "imsalr",
+ "songFileName": "song_imsalr",
+ "order": 1857,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7920,
+ "shinutiNormal": 5500,
+ "shinutiHard": 3270,
+ "shinutiMania": 1860,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7920,
+ "shinutiNormalDuet": 5500,
+ "shinutiHardDuet": 3270,
+ "shinutiManiaDuet": 1860,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000920,
+ "scoreNormal": 1001390,
+ "scoreHard": 1000770,
+ "scoreMania": 1005250,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1225,
+ "id": "imsarc",
+ "songFileName": "song_imsarc",
+ "order": 1858,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 10560,
+ "shinutiNormal": 6760,
+ "shinutiHard": 3760,
+ "shinutiMania": 1790,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10560,
+ "shinutiNormalDuet": 6760,
+ "shinutiHardDuet": 3760,
+ "shinutiManiaDuet": 1790,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000940,
+ "scoreNormal": 1000470,
+ "scoreHard": 1001720,
+ "scoreMania": 1000190,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1226,
+ "id": "imscol",
+ "songFileName": "song_imscol",
+ "order": 1861,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8880,
+ "shinutiNormal": 6300,
+ "shinutiHard": 4160,
+ "shinutiMania": 1890,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8880,
+ "shinutiNormalDuet": 6300,
+ "shinutiHardDuet": 4160,
+ "shinutiManiaDuet": 1890,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000460,
+ "scoreNormal": 1001100,
+ "scoreHard": 1001940,
+ "scoreMania": 1002130,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1227,
+ "id": "imsdod",
+ "songFileName": "song_imsdod",
+ "order": 1864,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6250,
+ "shinutiNormal": 5290,
+ "shinutiHard": 2600,
+ "shinutiMania": 1690,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6250,
+ "shinutiNormalDuet": 5290,
+ "shinutiHardDuet": 2600,
+ "shinutiManiaDuet": 1690,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001410,
+ "scoreNormal": 1000400,
+ "scoreHard": 1000680,
+ "scoreMania": 1005540,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1228,
+ "id": "imsflw",
+ "songFileName": "song_imsflw",
+ "order": 1866,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10310,
+ "shinutiNormal": 5860,
+ "shinutiHard": 4230,
+ "shinutiMania": 1740,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10310,
+ "shinutiNormalDuet": 5860,
+ "shinutiHardDuet": 4230,
+ "shinutiManiaDuet": 1740,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000250,
+ "scoreNormal": 1000270,
+ "scoreHard": 1002140,
+ "scoreMania": 1002380,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1229,
+ "id": "imsfrf",
+ "songFileName": "song_imsfrf",
+ "order": 1867,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7010,
+ "shinutiNormal": 5580,
+ "shinutiHard": 3530,
+ "shinutiMania": 2050,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7010,
+ "shinutiNormalDuet": 5580,
+ "shinutiHardDuet": 3530,
+ "shinutiManiaDuet": 2050,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1001140,
+ "scoreHard": 1002470,
+ "scoreMania": 1002190,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1230,
+ "id": "imsftr",
+ "songFileName": "song_imsftr",
+ "order": 1868,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 9510,
+ "shinutiNormal": 6170,
+ "shinutiHard": 4160,
+ "shinutiMania": 3040,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9510,
+ "shinutiNormalDuet": 6170,
+ "shinutiHardDuet": 4160,
+ "shinutiManiaDuet": 3040,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000140,
+ "scoreNormal": 1000680,
+ "scoreHard": 1000120,
+ "scoreMania": 1000490,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1231,
+ "id": "imsgmw",
+ "songFileName": "song_imsgmw",
+ "order": 1870,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": true,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 7,
+ "shinutiEasy": 6410,
+ "shinutiNormal": 5340,
+ "shinutiHard": 3190,
+ "shinutiMania": 1770,
+ "shinutiUra": 1770,
+ "shinutiEasyDuet": 6410,
+ "shinutiNormalDuet": 5340,
+ "shinutiHardDuet": 3190,
+ "shinutiManiaDuet": 1770,
+ "shinutiUraDuet": 1770,
+ "scoreEasy": 1000140,
+ "scoreNormal": 1001550,
+ "scoreHard": 1002000,
+ "scoreMania": 1001870,
+ "scoreUra": 1005360
+ },
+ {
+ "uniqueId": 1232,
+ "id": "imsgtp",
+ "songFileName": "song_imsgtp",
+ "order": 1871,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7020,
+ "shinutiNormal": 5410,
+ "shinutiHard": 2550,
+ "shinutiMania": 1830,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7020,
+ "shinutiNormalDuet": 5410,
+ "shinutiHardDuet": 2550,
+ "shinutiManiaDuet": 1830,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000680,
+ "scoreNormal": 1001550,
+ "scoreHard": 1001330,
+ "scoreMania": 1002000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1233,
+ "id": "imsidl",
+ "songFileName": "song_imsidl",
+ "order": 1873,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5330,
+ "shinutiNormal": 4270,
+ "shinutiHard": 2640,
+ "shinutiMania": 1530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5330,
+ "shinutiNormalDuet": 4270,
+ "shinutiHardDuet": 2640,
+ "shinutiManiaDuet": 1530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000850,
+ "scoreNormal": 1000110,
+ "scoreHard": 1000480,
+ "scoreMania": 1006490,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1234,
+ "id": "imsiml",
+ "songFileName": "song_imsiml",
+ "order": 1875,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": true,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6140,
+ "shinutiNormal": 5170,
+ "shinutiHard": 2660,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6140,
+ "shinutiNormalDuet": 5170,
+ "shinutiHardDuet": 2660,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000850,
+ "scoreNormal": 1001040,
+ "scoreHard": 1000880,
+ "scoreMania": 1002150,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1235,
+ "id": "imsipi",
+ "songFileName": "song_imsipi",
+ "order": 1877,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9070,
+ "shinutiNormal": 4800,
+ "shinutiHard": 3030,
+ "shinutiMania": 1670,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9070,
+ "shinutiNormalDuet": 4800,
+ "shinutiHardDuet": 3030,
+ "shinutiManiaDuet": 1670,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000780,
+ "scoreNormal": 1001970,
+ "scoreHard": 1001020,
+ "scoreMania": 1004300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1236,
+ "id": "imsiwt",
+ "songFileName": "song_imsiwt",
+ "order": 1878,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5700,
+ "shinutiNormal": 3990,
+ "shinutiHard": 2100,
+ "shinutiMania": 520,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5700,
+ "shinutiNormalDuet": 3990,
+ "shinutiHardDuet": 2100,
+ "shinutiManiaDuet": 520,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001700,
+ "scoreNormal": 1002300,
+ "scoreHard": 1004200,
+ "scoreMania": 1017250,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1237,
+ "id": "imsjit",
+ "songFileName": "song_imsjit",
+ "order": 1880,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7090,
+ "shinutiNormal": 5670,
+ "shinutiHard": 2610,
+ "shinutiMania": 1720,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7090,
+ "shinutiNormalDuet": 5670,
+ "shinutiHardDuet": 2610,
+ "shinutiManiaDuet": 1720,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000340,
+ "scoreNormal": 1001140,
+ "scoreHard": 1001960,
+ "scoreMania": 1004440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1238,
+ "id": "imskam",
+ "songFileName": "song_imskam",
+ "order": 1882,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7290,
+ "shinutiNormal": 6110,
+ "shinutiHard": 2980,
+ "shinutiMania": 1960,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7290,
+ "shinutiNormalDuet": 6110,
+ "shinutiHardDuet": 2980,
+ "shinutiManiaDuet": 1960,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001250,
+ "scoreNormal": 1001340,
+ "scoreHard": 1003330,
+ "scoreMania": 1000150,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1239,
+ "id": "imskos",
+ "songFileName": "song_imskos",
+ "order": 1883,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8930,
+ "shinutiNormal": 5680,
+ "shinutiHard": 3420,
+ "shinutiMania": 1910,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8930,
+ "shinutiNormalDuet": 5680,
+ "shinutiHardDuet": 3420,
+ "shinutiManiaDuet": 1910,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000690,
+ "scoreNormal": 1000090,
+ "scoreHard": 1002280,
+ "scoreMania": 1003660,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1240,
+ "id": "imskrm",
+ "songFileName": "song_imskrm",
+ "order": 1884,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 9,
+ "shinutiEasy": 7000,
+ "shinutiNormal": 4890,
+ "shinutiHard": 2370,
+ "shinutiMania": 1440,
+ "shinutiUra": 1450,
+ "shinutiEasyDuet": 7000,
+ "shinutiNormalDuet": 4890,
+ "shinutiHardDuet": 2370,
+ "shinutiManiaDuet": 1440,
+ "shinutiUraDuet": 1450,
+ "scoreEasy": 1000610,
+ "scoreNormal": 1001240,
+ "scoreHard": 1000970,
+ "scoreMania": 1004270,
+ "scoreUra": 1003150
+ },
+ {
+ "uniqueId": 1241,
+ "id": "imsliv",
+ "songFileName": "song_imsliv",
+ "order": 1886,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7510,
+ "shinutiNormal": 5170,
+ "shinutiHard": 3400,
+ "shinutiMania": 1540,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7510,
+ "shinutiNormalDuet": 5170,
+ "shinutiHardDuet": 3400,
+ "shinutiManiaDuet": 1540,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000370,
+ "scoreNormal": 1001880,
+ "scoreHard": 1000040,
+ "scoreMania": 1004680,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1242,
+ "id": "imslob",
+ "songFileName": "song_imslob",
+ "order": 1887,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6590,
+ "shinutiNormal": 5670,
+ "shinutiHard": 2410,
+ "shinutiMania": 1480,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6590,
+ "shinutiNormalDuet": 5670,
+ "shinutiHardDuet": 2410,
+ "shinutiManiaDuet": 1480,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001110,
+ "scoreNormal": 1000050,
+ "scoreHard": 1000870,
+ "scoreMania": 1003760,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1243,
+ "id": "imsmeg",
+ "songFileName": "song_imsmeg",
+ "order": 1891,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7560,
+ "shinutiNormal": 5200,
+ "shinutiHard": 3570,
+ "shinutiMania": 1740,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7560,
+ "shinutiNormalDuet": 5200,
+ "shinutiHardDuet": 3570,
+ "shinutiManiaDuet": 1740,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000390,
+ "scoreNormal": 1000110,
+ "scoreHard": 1001700,
+ "scoreMania": 1003490,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1244,
+ "id": "imsmsm",
+ "songFileName": "song_imsmsm",
+ "order": 1895,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7810,
+ "shinutiNormal": 5690,
+ "shinutiHard": 2970,
+ "shinutiMania": 1690,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7810,
+ "shinutiNormalDuet": 5690,
+ "shinutiHardDuet": 2970,
+ "shinutiManiaDuet": 1690,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000790,
+ "scoreNormal": 1000910,
+ "scoreHard": 1003130,
+ "scoreMania": 1001640,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1245,
+ "id": "imsmys",
+ "songFileName": "song_imsmys",
+ "order": 1899,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10220,
+ "shinutiNormal": 7070,
+ "shinutiHard": 4200,
+ "shinutiMania": 2520,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10220,
+ "shinutiNormalDuet": 7070,
+ "shinutiHardDuet": 4200,
+ "shinutiManiaDuet": 2520,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000190,
+ "scoreNormal": 1000550,
+ "scoreHard": 1001490,
+ "scoreMania": 1001990,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1246,
+ "id": "imsmyt",
+ "songFileName": "song_imsmyt",
+ "order": 1900,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8470,
+ "shinutiNormal": 5500,
+ "shinutiHard": 4030,
+ "shinutiMania": 1940,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8470,
+ "shinutiNormalDuet": 5500,
+ "shinutiHardDuet": 4030,
+ "shinutiManiaDuet": 1940,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1001030,
+ "scoreHard": 1002280,
+ "scoreMania": 1004920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1247,
+ "id": "imsotm",
+ "songFileName": "song_imsotm",
+ "order": 1905,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7190,
+ "shinutiNormal": 6010,
+ "shinutiHard": 3780,
+ "shinutiMania": 2090,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7190,
+ "shinutiNormalDuet": 6010,
+ "shinutiHardDuet": 3780,
+ "shinutiManiaDuet": 2090,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000340,
+ "scoreNormal": 1001640,
+ "scoreHard": 1002080,
+ "scoreMania": 1000490,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1248,
+ "id": "imsovm",
+ "songFileName": "song_imsovm",
+ "order": 1906,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 7450,
+ "shinutiNormal": 5530,
+ "shinutiHard": 2650,
+ "shinutiMania": 1770,
+ "shinutiUra": 1310,
+ "shinutiEasyDuet": 7450,
+ "shinutiNormalDuet": 5530,
+ "shinutiHardDuet": 2650,
+ "shinutiManiaDuet": 1770,
+ "shinutiUraDuet": 1310,
+ "scoreEasy": 1000710,
+ "scoreNormal": 1001330,
+ "scoreHard": 1000340,
+ "scoreMania": 1005020,
+ "scoreUra": 1007110
+ },
+ {
+ "uniqueId": 1249,
+ "id": "imspos",
+ "songFileName": "song_imspos",
+ "order": 1907,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7670,
+ "shinutiNormal": 4840,
+ "shinutiHard": 3180,
+ "shinutiMania": 1780,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7670,
+ "shinutiNormalDuet": 4840,
+ "shinutiHardDuet": 3180,
+ "shinutiManiaDuet": 1780,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001270,
+ "scoreNormal": 1001990,
+ "scoreHard": 1001600,
+ "scoreMania": 1000360,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1250,
+ "id": "imsrei",
+ "songFileName": "song_imsrei",
+ "order": 1910,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5800,
+ "shinutiNormal": 4800,
+ "shinutiHard": 2360,
+ "shinutiMania": 1550,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5800,
+ "shinutiNormalDuet": 4800,
+ "shinutiHardDuet": 2360,
+ "shinutiManiaDuet": 1550,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000730,
+ "scoreNormal": 1000600,
+ "scoreHard": 1003430,
+ "scoreMania": 1001360,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1251,
+ "id": "imsrel",
+ "songFileName": "song_imsrel",
+ "order": 1911,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6320,
+ "shinutiNormal": 4400,
+ "shinutiHard": 2830,
+ "shinutiMania": 1640,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6320,
+ "shinutiNormalDuet": 4400,
+ "shinutiHardDuet": 2830,
+ "shinutiManiaDuet": 1640,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001320,
+ "scoreNormal": 1000030,
+ "scoreHard": 1003460,
+ "scoreMania": 1002190,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1252,
+ "id": "imsriz",
+ "songFileName": "song_imsriz",
+ "order": 1912,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7410,
+ "shinutiNormal": 5570,
+ "shinutiHard": 3920,
+ "shinutiMania": 1760,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7410,
+ "shinutiNormalDuet": 5570,
+ "shinutiHardDuet": 3920,
+ "shinutiManiaDuet": 1760,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1000200,
+ "scoreHard": 1000150,
+ "scoreMania": 1000100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1253,
+ "id": "imsshk",
+ "songFileName": "song_imsshk",
+ "order": 1913,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7600,
+ "shinutiNormal": 5230,
+ "shinutiHard": 2620,
+ "shinutiMania": 1430,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7600,
+ "shinutiNormalDuet": 5230,
+ "shinutiHardDuet": 2620,
+ "shinutiManiaDuet": 1430,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001050,
+ "scoreNormal": 1001420,
+ "scoreHard": 1000220,
+ "scoreMania": 1001000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1254,
+ "id": "imssky",
+ "songFileName": "song_imssky",
+ "order": 1915,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8510,
+ "shinutiNormal": 6720,
+ "shinutiHard": 3160,
+ "shinutiMania": 2310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8510,
+ "shinutiNormalDuet": 6720,
+ "shinutiHardDuet": 3160,
+ "shinutiManiaDuet": 2310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001010,
+ "scoreNormal": 1000530,
+ "scoreHard": 1000370,
+ "scoreMania": 1001490,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1255,
+ "id": "imssts",
+ "songFileName": "song_imssts",
+ "order": 1918,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6310,
+ "shinutiNormal": 5330,
+ "shinutiHard": 2910,
+ "shinutiMania": 1480,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6310,
+ "shinutiNormalDuet": 5330,
+ "shinutiHardDuet": 2910,
+ "shinutiManiaDuet": 1480,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001110,
+ "scoreNormal": 1001410,
+ "scoreHard": 1002980,
+ "scoreMania": 1004660,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1256,
+ "id": "imstnr",
+ "songFileName": "song_imstnr",
+ "order": 1921,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 10780,
+ "shinutiNormal": 8610,
+ "shinutiHard": 4710,
+ "shinutiMania": 3520,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10780,
+ "shinutiNormalDuet": 8610,
+ "shinutiHardDuet": 4710,
+ "shinutiManiaDuet": 3520,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000570,
+ "scoreNormal": 1001140,
+ "scoreHard": 1001170,
+ "scoreMania": 1000830,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1257,
+ "id": "imstok",
+ "songFileName": "song_imstok",
+ "order": 1922,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 5770,
+ "shinutiNormal": 4280,
+ "shinutiHard": 2480,
+ "shinutiMania": 1650,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5770,
+ "shinutiNormalDuet": 4280,
+ "shinutiHardDuet": 2480,
+ "shinutiManiaDuet": 1650,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001570,
+ "scoreNormal": 1001250,
+ "scoreHard": 1002570,
+ "scoreMania": 1003680,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1258,
+ "id": "imsttt",
+ "songFileName": "song_imsttt",
+ "order": 1924,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8620,
+ "shinutiNormal": 5650,
+ "shinutiHard": 3640,
+ "shinutiMania": 2260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8620,
+ "shinutiNormalDuet": 5650,
+ "shinutiHardDuet": 3640,
+ "shinutiManiaDuet": 2260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000530,
+ "scoreNormal": 1000780,
+ "scoreHard": 1001370,
+ "scoreMania": 1004000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1259,
+ "id": "aiwoko",
+ "songFileName": "song_aiwoko",
+ "order": 1154,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 12470,
+ "shinutiNormal": 9400,
+ "shinutiHard": 4930,
+ "shinutiMania": 3840,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12470,
+ "shinutiNormalDuet": 9400,
+ "shinutiHardDuet": 4930,
+ "shinutiManiaDuet": 3840,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000620,
+ "scoreNormal": 1000070,
+ "scoreHard": 1000830,
+ "scoreMania": 1002120,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1260,
+ "id": "anakoi",
+ "songFileName": "song_anakoi",
+ "order": 1187,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9630,
+ "shinutiNormal": 6080,
+ "shinutiHard": 3610,
+ "shinutiMania": 2870,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9630,
+ "shinutiNormalDuet": 6080,
+ "shinutiHardDuet": 3610,
+ "shinutiManiaDuet": 2870,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000470,
+ "scoreNormal": 1001350,
+ "scoreHard": 1002570,
+ "scoreMania": 1001680,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1261,
+ "id": "babstp",
+ "songFileName": "song_babstp",
+ "order": 1233,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9840,
+ "shinutiNormal": 7560,
+ "shinutiHard": 4170,
+ "shinutiMania": 3200,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9840,
+ "shinutiNormalDuet": 7560,
+ "shinutiHardDuet": 4170,
+ "shinutiManiaDuet": 3200,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000730,
+ "scoreNormal": 1000610,
+ "scoreHard": 1000780,
+ "scoreMania": 1001410,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1262,
+ "id": "butumo",
+ "songFileName": "song_butumo",
+ "order": 1297,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8100,
+ "shinutiNormal": 4830,
+ "shinutiHard": 2710,
+ "shinutiMania": 1960,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8100,
+ "shinutiNormalDuet": 4830,
+ "shinutiHardDuet": 2710,
+ "shinutiManiaDuet": 1960,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000340,
+ "scoreNormal": 1000120,
+ "scoreHard": 1002290,
+ "scoreMania": 1002740,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1263,
+ "id": "clsarl",
+ "songFileName": "song_clsarl",
+ "order": 1350,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 5730,
+ "shinutiNormal": 4260,
+ "shinutiHard": 2450,
+ "shinutiMania": 1860,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5730,
+ "shinutiNormalDuet": 4260,
+ "shinutiHardDuet": 2450,
+ "shinutiManiaDuet": 1860,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000530,
+ "scoreNormal": 1001220,
+ "scoreHard": 1003100,
+ "scoreMania": 1004230,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1264,
+ "id": "clsblr",
+ "songFileName": "song_clsblr",
+ "order": 1351,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 5,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9150,
+ "shinutiNormal": 5430,
+ "shinutiHard": 3370,
+ "shinutiMania": 2530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9150,
+ "shinutiNormalDuet": 5430,
+ "shinutiHardDuet": 3370,
+ "shinutiManiaDuet": 2530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001000,
+ "scoreNormal": 1000970,
+ "scoreHard": 1001160,
+ "scoreMania": 1000220,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1265,
+ "id": "clsmas",
+ "songFileName": "song_clsmas",
+ "order": 1380,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7310,
+ "shinutiNormal": 5680,
+ "shinutiHard": 3500,
+ "shinutiMania": 2370,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7310,
+ "shinutiNormalDuet": 5680,
+ "shinutiHardDuet": 3500,
+ "shinutiManiaDuet": 2370,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001130,
+ "scoreNormal": 1000950,
+ "scoreHard": 1001570,
+ "scoreMania": 1000950,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1266,
+ "id": "clsplk",
+ "songFileName": "song_clsplk",
+ "order": 1388,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 1380,
+ "shinutiNormal": 1260,
+ "shinutiHard": 1070,
+ "shinutiMania": 880,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 1380,
+ "shinutiNormalDuet": 1260,
+ "shinutiHardDuet": 1070,
+ "shinutiManiaDuet": 880,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1006870,
+ "scoreNormal": 1005260,
+ "scoreHard": 1000990,
+ "scoreMania": 1006870,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1267,
+ "id": "clstaj",
+ "songFileName": "song_clstaj",
+ "order": 1396,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7840,
+ "shinutiNormal": 4980,
+ "shinutiHard": 2460,
+ "shinutiMania": 1900,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7840,
+ "shinutiNormalDuet": 4980,
+ "shinutiHardDuet": 2460,
+ "shinutiManiaDuet": 1900,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000170,
+ "scoreNormal": 1001630,
+ "scoreHard": 1004020,
+ "scoreMania": 1003620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1268,
+ "id": "cs3op",
+ "songFileName": "song_cs3op",
+ "order": 1428,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 12480,
+ "shinutiNormal": 7740,
+ "shinutiHard": 5220,
+ "shinutiMania": 3930,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12480,
+ "shinutiNormalDuet": 7740,
+ "shinutiHardDuet": 5220,
+ "shinutiManiaDuet": 3930,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000480,
+ "scoreNormal": 1000980,
+ "scoreHard": 1001460,
+ "scoreMania": 1001120,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1269,
+ "id": "dayday",
+ "songFileName": "song_dayday",
+ "order": 1453,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10060,
+ "shinutiNormal": 6420,
+ "shinutiHard": 2870,
+ "shinutiMania": 1970,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10060,
+ "shinutiNormalDuet": 6420,
+ "shinutiHardDuet": 2870,
+ "shinutiManiaDuet": 1970,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000440,
+ "scoreNormal": 1000820,
+ "scoreHard": 1001310,
+ "scoreMania": 1001840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1270,
+ "id": "ds2bs3",
+ "songFileName": "song_ds2bs3",
+ "order": 1547,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 8110,
+ "shinutiNormal": 5310,
+ "shinutiHard": 2950,
+ "shinutiMania": 1670,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8110,
+ "shinutiNormalDuet": 5310,
+ "shinutiHardDuet": 2950,
+ "shinutiManiaDuet": 1670,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000860,
+ "scoreNormal": 1001720,
+ "scoreHard": 1000780,
+ "scoreMania": 1000750,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1271,
+ "id": "gumihk",
+ "songFileName": "song_gumihk",
+ "order": 1717,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 9450,
+ "shinutiNormal": 4570,
+ "shinutiHard": 2470,
+ "shinutiMania": 1970,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9450,
+ "shinutiNormalDuet": 4570,
+ "shinutiHardDuet": 2470,
+ "shinutiManiaDuet": 1970,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000270,
+ "scoreNormal": 1000470,
+ "scoreHard": 1004040,
+ "scoreMania": 1000970,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1272,
+ "id": "kekkai",
+ "songFileName": "song_kekkai",
+ "order": 2012,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 13940,
+ "shinutiNormal": 9680,
+ "shinutiHard": 3020,
+ "shinutiMania": 2460,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13940,
+ "shinutiNormalDuet": 9680,
+ "shinutiHardDuet": 3020,
+ "shinutiManiaDuet": 2460,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000290,
+ "scoreNormal": 1000500,
+ "scoreHard": 1000670,
+ "scoreMania": 1002060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1273,
+ "id": "kim9re",
+ "songFileName": "song_kim9re",
+ "order": 2025,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 13140,
+ "shinutiNormal": 9150,
+ "shinutiHard": 5020,
+ "shinutiMania": 4010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13140,
+ "shinutiNormalDuet": 9150,
+ "shinutiHardDuet": 5020,
+ "shinutiManiaDuet": 4010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000740,
+ "scoreNormal": 1000050,
+ "scoreHard": 1000820,
+ "scoreMania": 1001220,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1274,
+ "id": "kjoker",
+ "songFileName": "song_kjoker",
+ "order": 2049,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10720,
+ "shinutiNormal": 6150,
+ "shinutiHard": 4190,
+ "shinutiMania": 2340,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10720,
+ "shinutiNormalDuet": 6150,
+ "shinutiHardDuet": 4190,
+ "shinutiManiaDuet": 2340,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000780,
+ "scoreNormal": 1001430,
+ "scoreHard": 1000300,
+ "scoreMania": 1001620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1276,
+ "id": "lapis",
+ "songFileName": "song_lapis",
+ "order": 2106,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 14810,
+ "shinutiNormal": 8760,
+ "shinutiHard": 4100,
+ "shinutiMania": 2950,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14810,
+ "shinutiNormalDuet": 8760,
+ "shinutiHardDuet": 4100,
+ "shinutiManiaDuet": 2950,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000560,
+ "scoreNormal": 1000430,
+ "scoreHard": 1001260,
+ "scoreMania": 1001510,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1277,
+ "id": "listen",
+ "songFileName": "song_listen",
+ "order": 2119,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 7,
+ "shinutiEasy": 12940,
+ "shinutiNormal": 6960,
+ "shinutiHard": 4200,
+ "shinutiMania": 2760,
+ "shinutiUra": 2750,
+ "shinutiEasyDuet": 12940,
+ "shinutiNormalDuet": 6960,
+ "shinutiHardDuet": 4200,
+ "shinutiManiaDuet": 2760,
+ "shinutiUraDuet": 2750,
+ "scoreEasy": 1000550,
+ "scoreNormal": 1000350,
+ "scoreHard": 1001700,
+ "scoreMania": 1000230,
+ "scoreUra": 1000610
+ },
+ {
+ "uniqueId": 1278,
+ "id": "lvx",
+ "songFileName": "song_lvx",
+ "order": 2150,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 8,
+ "shinutiEasy": 6900,
+ "shinutiNormal": 4610,
+ "shinutiHard": 2540,
+ "shinutiMania": 1960,
+ "shinutiUra": 1520,
+ "shinutiEasyDuet": 6900,
+ "shinutiNormalDuet": 4610,
+ "shinutiHardDuet": 2540,
+ "shinutiManiaDuet": 1960,
+ "shinutiUraDuet": 1520,
+ "scoreEasy": 1000130,
+ "scoreNormal": 1000100,
+ "scoreHard": 1000760,
+ "scoreMania": 1000840,
+ "scoreUra": 1006440
+ },
+ {
+ "uniqueId": 1279,
+ "id": "mgirlf",
+ "songFileName": "song_mgirlf",
+ "order": 2216,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 13640,
+ "shinutiNormal": 9650,
+ "shinutiHard": 4130,
+ "shinutiMania": 3120,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13640,
+ "shinutiNormalDuet": 9650,
+ "shinutiHardDuet": 4130,
+ "shinutiManiaDuet": 3120,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000590,
+ "scoreNormal": 1000640,
+ "scoreHard": 1001970,
+ "scoreMania": 1001820,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1280,
+ "id": "mikukp",
+ "songFileName": "song_mikukp",
+ "order": 2250,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 13120,
+ "shinutiNormal": 7310,
+ "shinutiHard": 3940,
+ "shinutiMania": 2010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13120,
+ "shinutiNormalDuet": 7310,
+ "shinutiHardDuet": 3940,
+ "shinutiManiaDuet": 2010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000670,
+ "scoreNormal": 1000150,
+ "scoreHard": 1000880,
+ "scoreMania": 1002740,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1281,
+ "id": "nirgil",
+ "songFileName": "song_nirgil",
+ "order": 2351,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10940,
+ "shinutiNormal": 6900,
+ "shinutiHard": 3930,
+ "shinutiMania": 2590,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10940,
+ "shinutiNormalDuet": 6900,
+ "shinutiHardDuet": 3930,
+ "shinutiManiaDuet": 2590,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000680,
+ "scoreNormal": 1000220,
+ "scoreHard": 1001730,
+ "scoreMania": 1000930,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1282,
+ "id": "nrtkaz",
+ "songFileName": "song_nrtkaz",
+ "order": 2358,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8870,
+ "shinutiNormal": 6320,
+ "shinutiHard": 3510,
+ "shinutiMania": 2890,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8870,
+ "shinutiNormalDuet": 6320,
+ "shinutiHardDuet": 3510,
+ "shinutiManiaDuet": 2890,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000030,
+ "scoreNormal": 1001140,
+ "scoreHard": 1000710,
+ "scoreMania": 1002610,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1283,
+ "id": "ola",
+ "songFileName": "song_ola",
+ "order": 2377,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 16300,
+ "shinutiNormal": 9310,
+ "shinutiHard": 5750,
+ "shinutiMania": 4120,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16300,
+ "shinutiNormalDuet": 9310,
+ "shinutiHardDuet": 5750,
+ "shinutiManiaDuet": 4120,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000450,
+ "scoreNormal": 1000900,
+ "scoreHard": 1000600,
+ "scoreMania": 1002240,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1284,
+ "id": "orival",
+ "songFileName": "song_orival",
+ "order": 2393,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9520,
+ "shinutiNormal": 6650,
+ "shinutiHard": 3370,
+ "shinutiMania": 2160,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9520,
+ "shinutiNormalDuet": 6650,
+ "shinutiHardDuet": 3370,
+ "shinutiManiaDuet": 2160,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000590,
+ "scoreNormal": 1001000,
+ "scoreHard": 1000370,
+ "scoreMania": 1000460,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1285,
+ "id": "pkgtbb",
+ "songFileName": "song_pkgtbb",
+ "order": 2431,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 20640,
+ "shinutiNormal": 7990,
+ "shinutiHard": 3810,
+ "shinutiMania": 3310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 20640,
+ "shinutiNormalDuet": 7990,
+ "shinutiHardDuet": 3810,
+ "shinutiManiaDuet": 3310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000440,
+ "scoreNormal": 1000940,
+ "scoreHard": 1000330,
+ "scoreMania": 1002860,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1286,
+ "id": "prpri9",
+ "songFileName": "song_prpri9",
+ "order": 2477,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 3,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10140,
+ "shinutiNormal": 7340,
+ "shinutiHard": 4150,
+ "shinutiMania": 2250,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10140,
+ "shinutiNormalDuet": 7340,
+ "shinutiHardDuet": 4150,
+ "shinutiManiaDuet": 2250,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000030,
+ "scoreNormal": 1000850,
+ "scoreHard": 1001120,
+ "scoreMania": 1000510,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1287,
+ "id": "sdashs",
+ "songFileName": "song_sdashs",
+ "order": 2588,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 13760,
+ "shinutiNormal": 8710,
+ "shinutiHard": 4820,
+ "shinutiMania": 3080,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13760,
+ "shinutiNormalDuet": 8710,
+ "shinutiHardDuet": 4820,
+ "shinutiManiaDuet": 3080,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000250,
+ "scoreNormal": 1000320,
+ "scoreHard": 1001260,
+ "scoreMania": 1000910,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1288,
+ "id": "skoant",
+ "songFileName": "song_skoant",
+ "order": 2636,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 8860,
+ "shinutiNormal": 6170,
+ "shinutiHard": 3070,
+ "shinutiMania": 2290,
+ "shinutiUra": 1670,
+ "shinutiEasyDuet": 8860,
+ "shinutiNormalDuet": 6170,
+ "shinutiHardDuet": 3070,
+ "shinutiManiaDuet": 2290,
+ "shinutiUraDuet": 1670,
+ "scoreEasy": 1000690,
+ "scoreNormal": 1001000,
+ "scoreHard": 1002820,
+ "scoreMania": 1001060,
+ "scoreUra": 1002000
+ },
+ {
+ "uniqueId": 1289,
+ "id": "spectr",
+ "songFileName": "song_spectr",
+ "order": 2675,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 11950,
+ "shinutiNormal": 7140,
+ "shinutiHard": 3590,
+ "shinutiMania": 2290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11950,
+ "shinutiNormalDuet": 7140,
+ "shinutiHardDuet": 3590,
+ "shinutiManiaDuet": 2290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000060,
+ "scoreNormal": 1000960,
+ "scoreHard": 1000260,
+ "scoreMania": 1003300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1290,
+ "id": "spitz",
+ "songFileName": "song_spitz",
+ "order": 2677,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10130,
+ "shinutiNormal": 8230,
+ "shinutiHard": 3780,
+ "shinutiMania": 2260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10130,
+ "shinutiNormalDuet": 8230,
+ "shinutiHardDuet": 3780,
+ "shinutiManiaDuet": 2260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000860,
+ "scoreNormal": 1000100,
+ "scoreHard": 1001550,
+ "scoreMania": 1000940,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1291,
+ "id": "wiu3op",
+ "songFileName": "song_wiu3op",
+ "order": 2955,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9590,
+ "shinutiNormal": 6630,
+ "shinutiHard": 2720,
+ "shinutiMania": 2130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9590,
+ "shinutiNormalDuet": 6630,
+ "shinutiHardDuet": 2720,
+ "shinutiManiaDuet": 2130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000030,
+ "scoreNormal": 1000020,
+ "scoreHard": 1003070,
+ "scoreMania": 1003430,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1292,
+ "id": "worldt",
+ "songFileName": "song_worldt",
+ "order": 2959,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 15490,
+ "shinutiNormal": 8920,
+ "shinutiHard": 3690,
+ "shinutiMania": 2780,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15490,
+ "shinutiNormalDuet": 8920,
+ "shinutiHardDuet": 3690,
+ "shinutiManiaDuet": 2780,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000310,
+ "scoreNormal": 1000740,
+ "scoreHard": 1002250,
+ "scoreMania": 1000130,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1293,
+ "id": "yokai",
+ "songFileName": "song_yokai",
+ "order": 2994,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 9,
+ "shinutiEasy": 6300,
+ "shinutiNormal": 4810,
+ "shinutiHard": 3310,
+ "shinutiMania": 2070,
+ "shinutiUra": 1320,
+ "shinutiEasyDuet": 6300,
+ "shinutiNormalDuet": 4810,
+ "shinutiHardDuet": 3310,
+ "shinutiManiaDuet": 2070,
+ "shinutiUraDuet": 1320,
+ "scoreEasy": 1000050,
+ "scoreNormal": 1000970,
+ "scoreHard": 1002070,
+ "scoreMania": 1001880,
+ "scoreUra": 1007600
+ },
+ {
+ "uniqueId": 1294,
+ "id": "2n2nja",
+ "songFileName": "song_2n2nja",
+ "order": 1031,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 17430,
+ "shinutiNormal": 9940,
+ "shinutiHard": 3760,
+ "shinutiMania": 3270,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 17430,
+ "shinutiNormalDuet": 9940,
+ "shinutiHardDuet": 3760,
+ "shinutiManiaDuet": 3270,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000370,
+ "scoreNormal": 1000320,
+ "scoreHard": 1000780,
+ "scoreMania": 1000040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1295,
+ "id": "akblbr",
+ "songFileName": "song_akblbr",
+ "order": 1165,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8120,
+ "shinutiNormal": 5720,
+ "shinutiHard": 3620,
+ "shinutiMania": 2330,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8120,
+ "shinutiNormalDuet": 5720,
+ "shinutiHardDuet": 3620,
+ "shinutiManiaDuet": 2330,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001070,
+ "scoreNormal": 1000980,
+ "scoreHard": 1000150,
+ "scoreMania": 1003880,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1296,
+ "id": "bambi",
+ "songFileName": "song_bambi",
+ "order": 1236,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5710,
+ "shinutiNormal": 4660,
+ "shinutiHard": 2670,
+ "shinutiMania": 1590,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5710,
+ "shinutiNormalDuet": 4660,
+ "shinutiHardDuet": 2670,
+ "shinutiManiaDuet": 1590,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001400,
+ "scoreNormal": 1001750,
+ "scoreHard": 1002900,
+ "scoreMania": 1003390,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1297,
+ "id": "butfly",
+ "songFileName": "song_butfly",
+ "order": 1287,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10190,
+ "shinutiNormal": 7390,
+ "shinutiHard": 3660,
+ "shinutiMania": 2650,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10190,
+ "shinutiNormalDuet": 7390,
+ "shinutiHardDuet": 3660,
+ "shinutiManiaDuet": 2650,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000830,
+ "scoreNormal": 1000330,
+ "scoreHard": 1001560,
+ "scoreMania": 1002680,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1298,
+ "id": "clshol",
+ "songFileName": "song_clshol",
+ "order": 1369,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9600,
+ "shinutiNormal": 6350,
+ "shinutiHard": 3730,
+ "shinutiMania": 2700,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9600,
+ "shinutiNormalDuet": 6350,
+ "shinutiHardDuet": 3730,
+ "shinutiManiaDuet": 2700,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000430,
+ "scoreNormal": 1000440,
+ "scoreHard": 1001650,
+ "scoreMania": 1001800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1299,
+ "id": "clstal",
+ "songFileName": "song_clstal",
+ "order": 1397,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 4440,
+ "shinutiNormal": 3710,
+ "shinutiHard": 1680,
+ "shinutiMania": 1240,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4440,
+ "shinutiNormalDuet": 3710,
+ "shinutiHardDuet": 1680,
+ "shinutiManiaDuet": 1240,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001890,
+ "scoreNormal": 1001780,
+ "scoreHard": 1001470,
+ "scoreMania": 1004920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1300,
+ "id": "ds3bs3",
+ "songFileName": "song_ds3bs3",
+ "order": 1551,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5530,
+ "shinutiNormal": 4290,
+ "shinutiHard": 2430,
+ "shinutiMania": 1300,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5530,
+ "shinutiNormalDuet": 4290,
+ "shinutiHardDuet": 2430,
+ "shinutiManiaDuet": 1300,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001430,
+ "scoreNormal": 1000490,
+ "scoreHard": 1001620,
+ "scoreMania": 1001340,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1301,
+ "id": "duduwa",
+ "songFileName": "song_duduwa",
+ "order": 1557,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12540,
+ "shinutiNormal": 9790,
+ "shinutiHard": 4070,
+ "shinutiMania": 2730,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12540,
+ "shinutiNormalDuet": 9790,
+ "shinutiHardDuet": 4070,
+ "shinutiManiaDuet": 2730,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000120,
+ "scoreNormal": 1000540,
+ "scoreHard": 1001280,
+ "scoreMania": 1000860,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1302,
+ "id": "fparty",
+ "songFileName": "song_fparty",
+ "order": 1618,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10860,
+ "shinutiNormal": 5380,
+ "shinutiHard": 3100,
+ "shinutiMania": 2360,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10860,
+ "shinutiNormalDuet": 5380,
+ "shinutiHardDuet": 3100,
+ "shinutiManiaDuet": 2360,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000530,
+ "scoreNormal": 1000680,
+ "scoreHard": 1002190,
+ "scoreMania": 1003890,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1303,
+ "id": "fu7bug",
+ "songFileName": "song_fu7bug",
+ "order": 1624,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7450,
+ "shinutiNormal": 4900,
+ "shinutiHard": 2840,
+ "shinutiMania": 1540,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7450,
+ "shinutiNormalDuet": 4900,
+ "shinutiHardDuet": 2840,
+ "shinutiManiaDuet": 1540,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000270,
+ "scoreNormal": 1001390,
+ "scoreHard": 1001330,
+ "scoreMania": 1003260,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1304,
+ "id": "giogio",
+ "songFileName": "song_giogio",
+ "order": 1679,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10460,
+ "shinutiNormal": 7640,
+ "shinutiHard": 4900,
+ "shinutiMania": 3130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10460,
+ "shinutiNormalDuet": 7640,
+ "shinutiHardDuet": 4900,
+ "shinutiManiaDuet": 3130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000860,
+ "scoreHard": 1000390,
+ "scoreMania": 1002480,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1305,
+ "id": "gotama",
+ "songFileName": "song_gotama",
+ "order": 1704,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 13460,
+ "shinutiNormal": 9050,
+ "shinutiHard": 4270,
+ "shinutiMania": 2740,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13460,
+ "shinutiNormalDuet": 9050,
+ "shinutiHardDuet": 4270,
+ "shinutiManiaDuet": 2740,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1000060,
+ "scoreHard": 1000670,
+ "scoreMania": 1002370,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1306,
+ "id": "kenkaj",
+ "songFileName": "song_kenkaj",
+ "order": 2013,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6480,
+ "shinutiNormal": 4770,
+ "shinutiHard": 2630,
+ "shinutiMania": 1940,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6480,
+ "shinutiNormalDuet": 4770,
+ "shinutiHardDuet": 2630,
+ "shinutiManiaDuet": 1940,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001500,
+ "scoreNormal": 1000780,
+ "scoreHard": 1002600,
+ "scoreMania": 1004380,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1307,
+ "id": "kerajk",
+ "songFileName": "song_kerajk",
+ "order": 2014,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 21530,
+ "shinutiNormal": 8430,
+ "shinutiHard": 3980,
+ "shinutiMania": 2650,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 21530,
+ "shinutiNormalDuet": 8430,
+ "shinutiHardDuet": 3980,
+ "shinutiManiaDuet": 2650,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000190,
+ "scoreNormal": 1000930,
+ "scoreHard": 1001290,
+ "scoreMania": 1002000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1308,
+ "id": "krdriv",
+ "songFileName": "song_krdriv",
+ "order": 2077,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 19790,
+ "shinutiNormal": 10110,
+ "shinutiHard": 3500,
+ "shinutiMania": 2940,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 19790,
+ "shinutiNormalDuet": 10110,
+ "shinutiHardDuet": 3500,
+ "shinutiManiaDuet": 2940,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000480,
+ "scoreNormal": 1000100,
+ "scoreHard": 1001500,
+ "scoreMania": 1003140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1309,
+ "id": "lets5o",
+ "songFileName": "song_lets5o",
+ "order": 2114,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8390,
+ "shinutiNormal": 6090,
+ "shinutiHard": 3840,
+ "shinutiMania": 2840,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8390,
+ "shinutiNormalDuet": 6090,
+ "shinutiHardDuet": 3840,
+ "shinutiManiaDuet": 2840,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000460,
+ "scoreNormal": 1000140,
+ "scoreHard": 1000270,
+ "scoreMania": 1001400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1310,
+ "id": "monh4g",
+ "songFileName": "song_monh4g",
+ "order": 2285,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5380,
+ "shinutiNormal": 3930,
+ "shinutiHard": 2020,
+ "shinutiMania": 1320,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5380,
+ "shinutiNormalDuet": 3930,
+ "shinutiHardDuet": 2020,
+ "shinutiManiaDuet": 1320,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001470,
+ "scoreNormal": 1001810,
+ "scoreHard": 1000400,
+ "scoreMania": 1001560,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1311,
+ "id": "niku",
+ "songFileName": "song_niku",
+ "order": 2347,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6330,
+ "shinutiNormal": 4350,
+ "shinutiHard": 2060,
+ "shinutiMania": 1320,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6330,
+ "shinutiNormalDuet": 4350,
+ "shinutiHardDuet": 2060,
+ "shinutiManiaDuet": 1320,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001480,
+ "scoreNormal": 1002120,
+ "scoreHard": 1001400,
+ "scoreMania": 1002180,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1312,
+ "id": "pkoras",
+ "songFileName": "song_pkoras",
+ "order": 2442,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 14560,
+ "shinutiNormal": 6730,
+ "shinutiHard": 2470,
+ "shinutiMania": 1810,
+ "shinutiUra": 1340,
+ "shinutiEasyDuet": 14560,
+ "shinutiNormalDuet": 6730,
+ "shinutiHardDuet": 2470,
+ "shinutiManiaDuet": 1810,
+ "shinutiUraDuet": 1340,
+ "scoreEasy": 1000640,
+ "scoreNormal": 1000290,
+ "scoreHard": 1003880,
+ "scoreMania": 1000880,
+ "scoreUra": 1000340
+ },
+ {
+ "uniqueId": 1313,
+ "id": "qp3min",
+ "songFileName": "song_qp3min",
+ "order": 2357,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6720,
+ "shinutiNormal": 6180,
+ "shinutiHard": 3900,
+ "shinutiMania": 2030,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6720,
+ "shinutiNormalDuet": 6180,
+ "shinutiHardDuet": 3900,
+ "shinutiManiaDuet": 2030,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001280,
+ "scoreNormal": 1001160,
+ "scoreHard": 1002300,
+ "scoreMania": 1000790,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1314,
+ "id": "skohmc",
+ "songFileName": "song_skohmc",
+ "order": 2639,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10570,
+ "shinutiNormal": 6920,
+ "shinutiHard": 3960,
+ "shinutiMania": 2800,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10570,
+ "shinutiNormalDuet": 6920,
+ "shinutiHardDuet": 3960,
+ "shinutiManiaDuet": 2800,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000940,
+ "scoreNormal": 1000390,
+ "scoreHard": 1000350,
+ "scoreMania": 1003400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1315,
+ "id": "soiya",
+ "songFileName": "song_soiya",
+ "order": 2658,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5730,
+ "shinutiNormal": 4130,
+ "shinutiHard": 1930,
+ "shinutiMania": 1540,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5730,
+ "shinutiNormalDuet": 4130,
+ "shinutiHardDuet": 1930,
+ "shinutiManiaDuet": 1540,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001210,
+ "scoreNormal": 1002110,
+ "scoreHard": 1001530,
+ "scoreMania": 1002970,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1316,
+ "id": "turk",
+ "songFileName": "song_turk",
+ "order": 2854,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 8,
+ "shinutiEasy": 4950,
+ "shinutiNormal": 3730,
+ "shinutiHard": 2640,
+ "shinutiMania": 1730,
+ "shinutiUra": 1210,
+ "shinutiEasyDuet": 4950,
+ "shinutiNormalDuet": 3730,
+ "shinutiHardDuet": 2640,
+ "shinutiManiaDuet": 1730,
+ "shinutiUraDuet": 1210,
+ "scoreEasy": 1000620,
+ "scoreNormal": 1001930,
+ "scoreHard": 1003200,
+ "scoreMania": 1005230,
+ "scoreUra": 1006820
+ },
+ {
+ "uniqueId": 1317,
+ "id": "123koi",
+ "songFileName": "song_123koi",
+ "order": 1005,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8190,
+ "shinutiNormal": 4150,
+ "shinutiHard": 2820,
+ "shinutiMania": 2330,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8190,
+ "shinutiNormalDuet": 4150,
+ "shinutiHardDuet": 2820,
+ "shinutiManiaDuet": 2330,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000340,
+ "scoreNormal": 1000400,
+ "scoreHard": 1001030,
+ "scoreMania": 1004140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1318,
+ "id": "aikatu",
+ "songFileName": "song_aikatu",
+ "order": 1149,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 9,
+ "shinutiEasy": 13820,
+ "shinutiNormal": 9470,
+ "shinutiHard": 5140,
+ "shinutiMania": 4000,
+ "shinutiUra": 2070,
+ "shinutiEasyDuet": 13820,
+ "shinutiNormalDuet": 9470,
+ "shinutiHardDuet": 5140,
+ "shinutiManiaDuet": 4000,
+ "shinutiUraDuet": 2070,
+ "scoreEasy": 1000310,
+ "scoreNormal": 1000750,
+ "scoreHard": 1000730,
+ "scoreMania": 1001900,
+ "scoreUra": 1001370
+ },
+ {
+ "uniqueId": 1319,
+ "id": "akb347",
+ "songFileName": "song_akb347",
+ "order": 1158,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8600,
+ "shinutiNormal": 5840,
+ "shinutiHard": 2990,
+ "shinutiMania": 2070,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8600,
+ "shinutiNormalDuet": 5840,
+ "shinutiHardDuet": 2990,
+ "shinutiManiaDuet": 2070,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1000150,
+ "scoreHard": 1003320,
+ "scoreMania": 1004160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1320,
+ "id": "akbait",
+ "songFileName": "song_akbait",
+ "order": 1160,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 10510,
+ "shinutiNormal": 7930,
+ "shinutiHard": 4700,
+ "shinutiMania": 3090,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10510,
+ "shinutiNormalDuet": 7930,
+ "shinutiHardDuet": 4700,
+ "shinutiManiaDuet": 3090,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000040,
+ "scoreNormal": 1001110,
+ "scoreHard": 1001250,
+ "scoreMania": 1001460,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1321,
+ "id": "anp2",
+ "songFileName": "song_anp2",
+ "order": 1200,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 1,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 12590,
+ "shinutiNormal": 7920,
+ "shinutiHard": 6570,
+ "shinutiMania": 3120,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12590,
+ "shinutiNormalDuet": 7920,
+ "shinutiHardDuet": 6570,
+ "shinutiManiaDuet": 3120,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000070,
+ "scoreNormal": 1000210,
+ "scoreHard": 1000140,
+ "scoreMania": 1001520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1322,
+ "id": "chocod",
+ "songFileName": "song_chocod",
+ "order": 1336,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 8400,
+ "shinutiNormal": 6360,
+ "shinutiHard": 3530,
+ "shinutiMania": 2690,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8400,
+ "shinutiNormalDuet": 6360,
+ "shinutiHardDuet": 3530,
+ "shinutiManiaDuet": 2690,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001190,
+ "scoreNormal": 1000450,
+ "scoreHard": 1002130,
+ "scoreMania": 1000080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1323,
+ "id": "clsken",
+ "songFileName": "song_clsken",
+ "order": 1373,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6770,
+ "shinutiNormal": 3950,
+ "shinutiHard": 2540,
+ "shinutiMania": 1810,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6770,
+ "shinutiNormalDuet": 3950,
+ "shinutiHardDuet": 2540,
+ "shinutiManiaDuet": 1810,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1001900,
+ "scoreHard": 1001620,
+ "scoreMania": 1004450,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1324,
+ "id": "dis1",
+ "songFileName": "song_dis1",
+ "order": 1487,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7570,
+ "shinutiNormal": 4700,
+ "shinutiHard": 3550,
+ "shinutiMania": 2020,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7570,
+ "shinutiNormalDuet": 4700,
+ "shinutiHardDuet": 3550,
+ "shinutiManiaDuet": 2020,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000380,
+ "scoreNormal": 1001860,
+ "scoreHard": 1002130,
+ "scoreMania": 1001920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1325,
+ "id": "dkpri9",
+ "songFileName": "song_dkpri9",
+ "order": 1492,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 17750,
+ "shinutiNormal": 12120,
+ "shinutiHard": 5090,
+ "shinutiMania": 3390,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 17750,
+ "shinutiNormalDuet": 12120,
+ "shinutiHardDuet": 5090,
+ "shinutiManiaDuet": 3390,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000210,
+ "scoreNormal": 1000490,
+ "scoreHard": 1001850,
+ "scoreMania": 1000170,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1326,
+ "id": "dq10b",
+ "songFileName": "song_dq10b",
+ "order": 1531,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 18370,
+ "shinutiNormal": 12200,
+ "shinutiHard": 8890,
+ "shinutiMania": 6200,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18370,
+ "shinutiNormalDuet": 12200,
+ "shinutiHardDuet": 8890,
+ "shinutiManiaDuet": 6200,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000460,
+ "scoreNormal": 1000230,
+ "scoreHard": 1000600,
+ "scoreMania": 1000620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1327,
+ "id": "fcrbal",
+ "songFileName": "song_fcrbal",
+ "order": 1596,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10710,
+ "shinutiNormal": 5400,
+ "shinutiHard": 3730,
+ "shinutiMania": 1920,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10710,
+ "shinutiNormalDuet": 5400,
+ "shinutiHardDuet": 3730,
+ "shinutiManiaDuet": 1920,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000880,
+ "scoreNormal": 1000420,
+ "scoreHard": 1000540,
+ "scoreMania": 1003320,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1328,
+ "id": "fcrdrm",
+ "songFileName": "song_fcrdrm",
+ "order": 1597,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7720,
+ "shinutiNormal": 4850,
+ "shinutiHard": 3040,
+ "shinutiMania": 2170,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7720,
+ "shinutiNormalDuet": 4850,
+ "shinutiHardDuet": 3040,
+ "shinutiManiaDuet": 2170,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000820,
+ "scoreNormal": 1001310,
+ "scoreHard": 1001770,
+ "scoreMania": 1004300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1329,
+ "id": "fcrmix",
+ "songFileName": "song_fcrmix",
+ "order": 1598,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8480,
+ "shinutiNormal": 4370,
+ "shinutiHard": 2900,
+ "shinutiMania": 2200,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8480,
+ "shinutiNormalDuet": 4370,
+ "shinutiHardDuet": 2900,
+ "shinutiManiaDuet": 2200,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001120,
+ "scoreNormal": 1001030,
+ "scoreHard": 1002670,
+ "scoreMania": 1002620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1330,
+ "id": "fcrzel",
+ "songFileName": "song_fcrzel",
+ "order": 1599,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 13110,
+ "shinutiNormal": 9320,
+ "shinutiHard": 4020,
+ "shinutiMania": 3370,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13110,
+ "shinutiNormalDuet": 9320,
+ "shinutiHardDuet": 4020,
+ "shinutiManiaDuet": 3370,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000160,
+ "scoreNormal": 1000760,
+ "scoreHard": 1001860,
+ "scoreMania": 1002330,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1331,
+ "id": "flwsng",
+ "songFileName": "song_flwsng",
+ "order": 1609,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 11820,
+ "shinutiNormal": 8490,
+ "shinutiHard": 4970,
+ "shinutiMania": 3530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11820,
+ "shinutiNormalDuet": 8490,
+ "shinutiHardDuet": 4970,
+ "shinutiManiaDuet": 3530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000610,
+ "scoreNormal": 1000710,
+ "scoreHard": 1001570,
+ "scoreMania": 1001380,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1333,
+ "id": "gumire",
+ "songFileName": "song_gumire",
+ "order": 1722,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 3780,
+ "shinutiNormal": 2640,
+ "shinutiHard": 1590,
+ "shinutiMania": 1000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3780,
+ "shinutiNormalDuet": 2640,
+ "shinutiHardDuet": 1590,
+ "shinutiManiaDuet": 1000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001790,
+ "scoreNormal": 1000520,
+ "scoreHard": 1004120,
+ "scoreMania": 1001980,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1334,
+ "id": "handsu",
+ "songFileName": "song_handsu",
+ "order": 1736,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11080,
+ "shinutiNormal": 6450,
+ "shinutiHard": 3690,
+ "shinutiMania": 2700,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11080,
+ "shinutiNormalDuet": 6450,
+ "shinutiHardDuet": 3690,
+ "shinutiManiaDuet": 2700,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1000500,
+ "scoreHard": 1002560,
+ "scoreMania": 1002900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1335,
+ "id": "inagac",
+ "songFileName": "song_inagac",
+ "order": 1931,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 13090,
+ "shinutiNormal": 8950,
+ "shinutiHard": 5330,
+ "shinutiMania": 3140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13090,
+ "shinutiNormalDuet": 8950,
+ "shinutiHardDuet": 5330,
+ "shinutiManiaDuet": 3140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000020,
+ "scoreNormal": 1000440,
+ "scoreHard": 1000500,
+ "scoreMania": 1003170,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1336,
+ "id": "kyorja",
+ "songFileName": "song_kyorja",
+ "order": 2098,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 16530,
+ "shinutiNormal": 10000,
+ "shinutiHard": 5580,
+ "shinutiMania": 4340,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16530,
+ "shinutiNormalDuet": 10000,
+ "shinutiHardDuet": 5580,
+ "shinutiManiaDuet": 4340,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1000250,
+ "scoreHard": 1001760,
+ "scoreMania": 1001510,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1337,
+ "id": "m96tk",
+ "songFileName": "song_m96tk",
+ "order": 2156,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 7010,
+ "shinutiNormal": 4400,
+ "shinutiHard": 3720,
+ "shinutiMania": 2500,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7010,
+ "shinutiNormalDuet": 4400,
+ "shinutiHardDuet": 3720,
+ "shinutiManiaDuet": 2500,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000610,
+ "scoreNormal": 1000490,
+ "scoreHard": 1002300,
+ "scoreMania": 1003340,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1338,
+ "id": "monsun",
+ "songFileName": "song_monsun",
+ "order": 2292,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8230,
+ "shinutiNormal": 5160,
+ "shinutiHard": 3460,
+ "shinutiMania": 2230,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8230,
+ "shinutiNormalDuet": 5160,
+ "shinutiHardDuet": 3460,
+ "shinutiManiaDuet": 2230,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000760,
+ "scoreNormal": 1001860,
+ "scoreHard": 1001110,
+ "scoreMania": 1003930,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1339,
+ "id": "odorik",
+ "songFileName": "song_odorik",
+ "order": 2367,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6990,
+ "shinutiNormal": 5740,
+ "shinutiHard": 3320,
+ "shinutiMania": 1850,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6990,
+ "shinutiNormalDuet": 5740,
+ "shinutiHardDuet": 3320,
+ "shinutiManiaDuet": 1850,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1001520,
+ "scoreHard": 1001050,
+ "scoreMania": 1001700,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1340,
+ "id": "pkxyac",
+ "songFileName": "song_pkxyac",
+ "order": 2443,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9810,
+ "shinutiNormal": 6380,
+ "shinutiHard": 2850,
+ "shinutiMania": 1570,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9810,
+ "shinutiNormalDuet": 6380,
+ "shinutiHardDuet": 2850,
+ "shinutiManiaDuet": 1570,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000740,
+ "scoreNormal": 1000990,
+ "scoreHard": 1000100,
+ "scoreMania": 1000670,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1341,
+ "id": "pkxycs",
+ "songFileName": "song_pkxycs",
+ "order": 2444,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8640,
+ "shinutiNormal": 5630,
+ "shinutiHard": 3020,
+ "shinutiMania": 1960,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8640,
+ "shinutiNormalDuet": 5630,
+ "shinutiHardDuet": 3020,
+ "shinutiManiaDuet": 1960,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000180,
+ "scoreNormal": 1000470,
+ "scoreHard": 1001210,
+ "scoreMania": 1001610,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1342,
+ "id": "postm",
+ "songFileName": "song_postm",
+ "order": 2455,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6960,
+ "shinutiNormal": 4040,
+ "shinutiHard": 3080,
+ "shinutiMania": 1740,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6960,
+ "shinutiNormalDuet": 4040,
+ "shinutiHardDuet": 3080,
+ "shinutiManiaDuet": 1740,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001380,
+ "scoreNormal": 1002400,
+ "scoreHard": 1001830,
+ "scoreMania": 1005270,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1343,
+ "id": "psp3bs",
+ "songFileName": "song_psp3bs",
+ "order": 2480,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6140,
+ "shinutiNormal": 3630,
+ "shinutiHard": 2370,
+ "shinutiMania": 1300,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6140,
+ "shinutiNormalDuet": 3630,
+ "shinutiHardDuet": 2370,
+ "shinutiManiaDuet": 1300,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000710,
+ "scoreNormal": 1002620,
+ "scoreHard": 1000920,
+ "scoreMania": 1005910,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1344,
+ "id": "puzdrz",
+ "songFileName": "song_puzdrz",
+ "order": 2497,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9560,
+ "shinutiNormal": 6330,
+ "shinutiHard": 3120,
+ "shinutiMania": 2260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9560,
+ "shinutiNormalDuet": 6330,
+ "shinutiHardDuet": 3120,
+ "shinutiManiaDuet": 2260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000640,
+ "scoreNormal": 1000960,
+ "scoreHard": 1000510,
+ "scoreMania": 1002590,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1345,
+ "id": "torik2",
+ "songFileName": "song_torik2",
+ "order": 2822,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8820,
+ "shinutiNormal": 6720,
+ "shinutiHard": 4110,
+ "shinutiMania": 3160,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8820,
+ "shinutiNormalDuet": 6720,
+ "shinutiHardDuet": 4110,
+ "shinutiManiaDuet": 3160,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000740,
+ "scoreNormal": 1000810,
+ "scoreHard": 1000740,
+ "scoreMania": 1001550,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1346,
+ "id": "wiu1op",
+ "songFileName": "song_wiu1op",
+ "order": 2953,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8630,
+ "shinutiNormal": 5790,
+ "shinutiHard": 3790,
+ "shinutiMania": 2410,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8630,
+ "shinutiNormalDuet": 5790,
+ "shinutiHardDuet": 3790,
+ "shinutiManiaDuet": 2410,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000470,
+ "scoreNormal": 1000620,
+ "scoreHard": 1001090,
+ "scoreMania": 1003900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1347,
+ "id": "1psikr",
+ "songFileName": "song_1psikr",
+ "order": 1008,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9110,
+ "shinutiNormal": 5570,
+ "shinutiHard": 3430,
+ "shinutiMania": 2540,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9110,
+ "shinutiNormalDuet": 5570,
+ "shinutiHardDuet": 3430,
+ "shinutiManiaDuet": 2540,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000440,
+ "scoreNormal": 1001580,
+ "scoreHard": 1000950,
+ "scoreMania": 1001890,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1348,
+ "id": "2jiwar",
+ "songFileName": "song_2jiwar",
+ "order": 1030,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 6630,
+ "shinutiNormal": 5710,
+ "shinutiHard": 2730,
+ "shinutiMania": 2000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6630,
+ "shinutiNormalDuet": 5710,
+ "shinutiHardDuet": 2730,
+ "shinutiManiaDuet": 2000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001210,
+ "scoreNormal": 1000050,
+ "scoreHard": 1003510,
+ "scoreMania": 1000170,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1349,
+ "id": "365lov",
+ "songFileName": "song_365lov",
+ "order": 1035,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8980,
+ "shinutiNormal": 6870,
+ "shinutiHard": 4390,
+ "shinutiMania": 2880,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8980,
+ "shinutiNormalDuet": 6870,
+ "shinutiHardDuet": 4390,
+ "shinutiManiaDuet": 2880,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000050,
+ "scoreNormal": 1000120,
+ "scoreHard": 1001350,
+ "scoreMania": 1000940,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1350,
+ "id": "5bust",
+ "songFileName": "song_5bust",
+ "order": 1060,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 1,
+ "starHard": 3,
+ "starMania": 3,
+ "starUra": 0,
+ "shinutiEasy": 17450,
+ "shinutiNormal": 11680,
+ "shinutiHard": 6270,
+ "shinutiMania": 4420,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 17450,
+ "shinutiNormalDuet": 11680,
+ "shinutiHardDuet": 6270,
+ "shinutiManiaDuet": 4420,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000510,
+ "scoreNormal": 1000460,
+ "scoreHard": 1000450,
+ "scoreMania": 1001920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1351,
+ "id": "5kaija",
+ "songFileName": "song_5kaija",
+ "order": 1061,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 2,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 12450,
+ "shinutiNormal": 7440,
+ "shinutiHard": 4940,
+ "shinutiMania": 3370,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12450,
+ "shinutiNormalDuet": 7440,
+ "shinutiHardDuet": 4940,
+ "shinutiManiaDuet": 3370,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000560,
+ "scoreNormal": 1000970,
+ "scoreHard": 1000360,
+ "scoreMania": 1000520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1352,
+ "id": "7oops",
+ "songFileName": "song_7oops",
+ "order": 1069,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10700,
+ "shinutiNormal": 5980,
+ "shinutiHard": 4230,
+ "shinutiMania": 2430,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10700,
+ "shinutiNormalDuet": 5980,
+ "shinutiHardDuet": 4230,
+ "shinutiManiaDuet": 2430,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000650,
+ "scoreNormal": 1001130,
+ "scoreHard": 1001950,
+ "scoreMania": 1000680,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1354,
+ "id": "965op2",
+ "songFileName": "song_965op2",
+ "order": 1074,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10560,
+ "shinutiNormal": 7950,
+ "shinutiHard": 3370,
+ "shinutiMania": 2080,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10560,
+ "shinutiNormalDuet": 7950,
+ "shinutiHardDuet": 3370,
+ "shinutiManiaDuet": 2080,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000410,
+ "scoreNormal": 1001100,
+ "scoreHard": 1002500,
+ "scoreMania": 1003710,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1355,
+ "id": "9renja",
+ "songFileName": "song_9renja",
+ "order": 1075,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 13940,
+ "shinutiNormal": 10840,
+ "shinutiHard": 5000,
+ "shinutiMania": 3250,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13940,
+ "shinutiNormalDuet": 10840,
+ "shinutiHardDuet": 5000,
+ "shinutiManiaDuet": 3250,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000390,
+ "scoreNormal": 1000910,
+ "scoreHard": 1001280,
+ "scoreMania": 1002970,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1356,
+ "id": "ageta6",
+ "songFileName": "song_ageta6",
+ "order": 1147,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6420,
+ "shinutiNormal": 3540,
+ "shinutiHard": 1980,
+ "shinutiMania": 1380,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6420,
+ "shinutiNormalDuet": 3540,
+ "shinutiHardDuet": 1980,
+ "shinutiManiaDuet": 1380,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000110,
+ "scoreNormal": 1002330,
+ "scoreHard": 1001470,
+ "scoreMania": 1002250,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1357,
+ "id": "akb10t",
+ "songFileName": "song_akb10t",
+ "order": 1157,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 7260,
+ "shinutiNormal": 5310,
+ "shinutiHard": 3170,
+ "shinutiMania": 2210,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7260,
+ "shinutiNormalDuet": 5310,
+ "shinutiHardDuet": 3170,
+ "shinutiManiaDuet": 2210,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000540,
+ "scoreNormal": 1000160,
+ "scoreHard": 1001930,
+ "scoreMania": 1002090,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1358,
+ "id": "akbsg",
+ "songFileName": "song_akbsg",
+ "order": 1166,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 8860,
+ "shinutiNormal": 7180,
+ "shinutiHard": 3660,
+ "shinutiMania": 2550,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8860,
+ "shinutiNormalDuet": 7180,
+ "shinutiHardDuet": 3660,
+ "shinutiManiaDuet": 2550,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000560,
+ "scoreNormal": 1001190,
+ "scoreHard": 1002330,
+ "scoreMania": 1002870,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1359,
+ "id": "akbuza",
+ "songFileName": "song_akbuza",
+ "order": 1167,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 13050,
+ "shinutiNormal": 6320,
+ "shinutiHard": 4210,
+ "shinutiMania": 2960,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13050,
+ "shinutiNormalDuet": 6320,
+ "shinutiHardDuet": 4210,
+ "shinutiManiaDuet": 2960,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000690,
+ "scoreNormal": 1001520,
+ "scoreHard": 1001660,
+ "scoreMania": 1000650,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1360,
+ "id": "alxswn",
+ "songFileName": "song_alxswn",
+ "order": 1176,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10770,
+ "shinutiNormal": 6340,
+ "shinutiHard": 3820,
+ "shinutiMania": 2290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10770,
+ "shinutiNormalDuet": 6340,
+ "shinutiHardDuet": 3820,
+ "shinutiManiaDuet": 2290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000310,
+ "scoreNormal": 1000290,
+ "scoreHard": 1001280,
+ "scoreMania": 1001010,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1361,
+ "id": "anp3",
+ "songFileName": "song_anp3",
+ "order": 1201,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 2,
+ "starMania": 2,
+ "starUra": 0,
+ "shinutiEasy": 14870,
+ "shinutiNormal": 11570,
+ "shinutiHard": 6060,
+ "shinutiMania": 5180,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14870,
+ "shinutiNormalDuet": 11570,
+ "shinutiHardDuet": 6060,
+ "shinutiManiaDuet": 5180,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000260,
+ "scoreNormal": 1000210,
+ "scoreHard": 1001160,
+ "scoreMania": 1001620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1362,
+ "id": "aruite",
+ "songFileName": "song_aruite",
+ "order": 1215,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 1,
+ "starMania": 3,
+ "starUra": 0,
+ "shinutiEasy": 11130,
+ "shinutiNormal": 7490,
+ "shinutiHard": 4760,
+ "shinutiMania": 3530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11130,
+ "shinutiNormalDuet": 7490,
+ "shinutiHardDuet": 4760,
+ "shinutiManiaDuet": 3530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000040,
+ "scoreNormal": 1001120,
+ "scoreHard": 1001730,
+ "scoreMania": 1002140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1363,
+ "id": "attaka",
+ "songFileName": "song_attaka",
+ "order": 1221,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10240,
+ "shinutiNormal": 5160,
+ "shinutiHard": 3590,
+ "shinutiMania": 2400,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10240,
+ "shinutiNormalDuet": 5160,
+ "shinutiHardDuet": 3590,
+ "shinutiManiaDuet": 2400,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000690,
+ "scoreNormal": 1000400,
+ "scoreHard": 1001250,
+ "scoreMania": 1002570,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1364,
+ "id": "bakuti",
+ "songFileName": "song_bakuti",
+ "order": 1235,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8200,
+ "shinutiNormal": 6000,
+ "shinutiHard": 2750,
+ "shinutiMania": 1730,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8200,
+ "shinutiNormalDuet": 6000,
+ "shinutiHardDuet": 2750,
+ "shinutiManiaDuet": 1730,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000640,
+ "scoreNormal": 1000240,
+ "scoreHard": 1001830,
+ "scoreMania": 1003660,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1365,
+ "id": "bko2",
+ "songFileName": "song_bko2",
+ "order": 1251,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 3,
+ "starMania": 4,
+ "starUra": 8,
+ "shinutiEasy": 5380,
+ "shinutiNormal": 4240,
+ "shinutiHard": 3260,
+ "shinutiMania": 2350,
+ "shinutiUra": 440,
+ "shinutiEasyDuet": 5380,
+ "shinutiNormalDuet": 4240,
+ "shinutiHardDuet": 3260,
+ "shinutiManiaDuet": 2350,
+ "shinutiUraDuet": 440,
+ "scoreEasy": 1001320,
+ "scoreNormal": 1001420,
+ "scoreHard": 1000820,
+ "scoreMania": 1003450,
+ "scoreUra": 1009250
+ },
+ {
+ "uniqueId": 1366,
+ "id": "bldcir",
+ "songFileName": "song_bldcir",
+ "order": 1258,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10610,
+ "shinutiNormal": 6540,
+ "shinutiHard": 3040,
+ "shinutiMania": 2400,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10610,
+ "shinutiNormalDuet": 6540,
+ "shinutiHardDuet": 3040,
+ "shinutiManiaDuet": 2400,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000270,
+ "scoreNormal": 1000510,
+ "scoreHard": 1000790,
+ "scoreMania": 1003450,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1369,
+ "id": "bymysi",
+ "songFileName": "song_bymysi",
+ "order": 1299,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 11700,
+ "shinutiNormal": 7640,
+ "shinutiHard": 3940,
+ "shinutiMania": 2760,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11700,
+ "shinutiNormalDuet": 7640,
+ "shinutiHardDuet": 3940,
+ "shinutiManiaDuet": 2760,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000410,
+ "scoreNormal": 1000690,
+ "scoreHard": 1000310,
+ "scoreMania": 1002150,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1370,
+ "id": "cando",
+ "songFileName": "song_cando",
+ "order": 1309,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 11160,
+ "shinutiNormal": 7090,
+ "shinutiHard": 3760,
+ "shinutiMania": 2330,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11160,
+ "shinutiNormalDuet": 7090,
+ "shinutiHardDuet": 3760,
+ "shinutiManiaDuet": 2330,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000020,
+ "scoreNormal": 1000830,
+ "scoreHard": 1001100,
+ "scoreMania": 1002590,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1373,
+ "id": "cha3",
+ "songFileName": "song_cha3",
+ "order": 1323,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8060,
+ "shinutiNormal": 5810,
+ "shinutiHard": 3580,
+ "shinutiMania": 2920,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8060,
+ "shinutiNormalDuet": 5810,
+ "shinutiHardDuet": 3580,
+ "shinutiManiaDuet": 2920,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1000100,
+ "scoreHard": 1000160,
+ "scoreMania": 1001920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1374,
+ "id": "chu2ed",
+ "songFileName": "song_chu2ed",
+ "order": 1340,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6920,
+ "shinutiNormal": 5350,
+ "shinutiHard": 3680,
+ "shinutiMania": 2170,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6920,
+ "shinutiNormalDuet": 5350,
+ "shinutiHardDuet": 3680,
+ "shinutiManiaDuet": 2170,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000680,
+ "scoreNormal": 1000200,
+ "scoreHard": 1000690,
+ "scoreMania": 1002450,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1379,
+ "id": "cowcow",
+ "songFileName": "song_cowcow",
+ "order": 1418,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 1,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 15540,
+ "shinutiNormal": 10490,
+ "shinutiHard": 7080,
+ "shinutiMania": 4560,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15540,
+ "shinutiNormalDuet": 10490,
+ "shinutiHardDuet": 7080,
+ "shinutiManiaDuet": 4560,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000270,
+ "scoreNormal": 1000940,
+ "scoreHard": 1000170,
+ "scoreMania": 1001510,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1380,
+ "id": "dmgene",
+ "songFileName": "song_dmgene",
+ "order": 1494,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10280,
+ "shinutiNormal": 6820,
+ "shinutiHard": 4610,
+ "shinutiMania": 3070,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10280,
+ "shinutiNormalDuet": 6820,
+ "shinutiHardDuet": 4610,
+ "shinutiManiaDuet": 3070,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000840,
+ "scoreNormal": 1000190,
+ "scoreHard": 1001290,
+ "scoreMania": 1000380,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1382,
+ "id": "doremi",
+ "songFileName": "song_doremi",
+ "order": 1525,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 12940,
+ "shinutiNormal": 8710,
+ "shinutiHard": 4710,
+ "shinutiMania": 2890,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12940,
+ "shinutiNormalDuet": 8710,
+ "shinutiHardDuet": 4710,
+ "shinutiManiaDuet": 2890,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000550,
+ "scoreNormal": 1000000,
+ "scoreHard": 1001470,
+ "scoreMania": 1002210,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1383,
+ "id": "dq10",
+ "songFileName": "song_dq10",
+ "order": 1530,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 23080,
+ "shinutiNormal": 14540,
+ "shinutiHard": 11090,
+ "shinutiMania": 7490,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 23080,
+ "shinutiNormalDuet": 14540,
+ "shinutiHardDuet": 11090,
+ "shinutiManiaDuet": 7490,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000050,
+ "scoreNormal": 1000130,
+ "scoreHard": 1000200,
+ "scoreMania": 1001260,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1385,
+ "id": "eblaze",
+ "songFileName": "song_eblaze",
+ "order": 1561,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11970,
+ "shinutiNormal": 8690,
+ "shinutiHard": 4340,
+ "shinutiMania": 3080,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11970,
+ "shinutiNormalDuet": 8690,
+ "shinutiHardDuet": 4340,
+ "shinutiManiaDuet": 3080,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000510,
+ "scoreNormal": 1000420,
+ "scoreHard": 1001980,
+ "scoreMania": 1000610,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1386,
+ "id": "egaokp",
+ "songFileName": "song_egaokp",
+ "order": 1562,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10030,
+ "shinutiNormal": 5870,
+ "shinutiHard": 3350,
+ "shinutiMania": 2500,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10030,
+ "shinutiNormalDuet": 5870,
+ "shinutiHardDuet": 3350,
+ "shinutiManiaDuet": 2500,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000790,
+ "scoreNormal": 1000820,
+ "scoreHard": 1002510,
+ "scoreMania": 1001920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1388,
+ "id": "fantbb",
+ "songFileName": "song_fantbb",
+ "order": 1592,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7300,
+ "shinutiNormal": 5920,
+ "shinutiHard": 2530,
+ "shinutiMania": 1840,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7300,
+ "shinutiNormalDuet": 5920,
+ "shinutiHardDuet": 2530,
+ "shinutiManiaDuet": 1840,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001040,
+ "scoreNormal": 1000790,
+ "scoreHard": 1000320,
+ "scoreMania": 1001120,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1390,
+ "id": "fozeop",
+ "songFileName": "song_fozeop",
+ "order": 1617,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 3,
+ "starMania": 3,
+ "starUra": 9,
+ "shinutiEasy": 19110,
+ "shinutiNormal": 12280,
+ "shinutiHard": 5320,
+ "shinutiMania": 4060,
+ "shinutiUra": 2190,
+ "shinutiEasyDuet": 19110,
+ "shinutiNormalDuet": 12280,
+ "shinutiHardDuet": 5320,
+ "shinutiManiaDuet": 4060,
+ "shinutiUraDuet": 2190,
+ "scoreEasy": 1000330,
+ "scoreNormal": 1000610,
+ "scoreHard": 1000170,
+ "scoreMania": 1001200,
+ "scoreUra": 1000660
+ },
+ {
+ "uniqueId": 1391,
+ "id": "fufish",
+ "songFileName": "song_fufish",
+ "order": 1626,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 7500,
+ "shinutiNormal": 5240,
+ "shinutiHard": 3670,
+ "shinutiMania": 2770,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7500,
+ "shinutiNormalDuet": 5240,
+ "shinutiHardDuet": 3670,
+ "shinutiManiaDuet": 2770,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001120,
+ "scoreNormal": 1000060,
+ "scoreHard": 1000390,
+ "scoreMania": 1000860,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1394,
+ "id": "gbfgo",
+ "songFileName": "song_gbfgo",
+ "order": 1642,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12930,
+ "shinutiNormal": 7160,
+ "shinutiHard": 4020,
+ "shinutiMania": 2700,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12930,
+ "shinutiNormalDuet": 7160,
+ "shinutiHardDuet": 4020,
+ "shinutiManiaDuet": 2700,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000680,
+ "scoreNormal": 1001350,
+ "scoreHard": 1000980,
+ "scoreMania": 1001220,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1395,
+ "id": "gng999",
+ "songFileName": "song_gng999",
+ "order": 1689,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8610,
+ "shinutiNormal": 5950,
+ "shinutiHard": 2700,
+ "shinutiMania": 2480,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8610,
+ "shinutiNormalDuet": 5950,
+ "shinutiHardDuet": 2700,
+ "shinutiManiaDuet": 2480,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000660,
+ "scoreNormal": 1000150,
+ "scoreHard": 1001700,
+ "scoreMania": 1000580,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1396,
+ "id": "gumimo",
+ "songFileName": "song_gumimo",
+ "order": 1721,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7080,
+ "shinutiNormal": 4610,
+ "shinutiHard": 3090,
+ "shinutiMania": 2030,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7080,
+ "shinutiNormalDuet": 4610,
+ "shinutiHardDuet": 3090,
+ "shinutiManiaDuet": 2030,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000140,
+ "scoreNormal": 1000270,
+ "scoreHard": 1001090,
+ "scoreMania": 1003770,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1397,
+ "id": "haphap",
+ "songFileName": "song_haphap",
+ "order": 1737,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10940,
+ "shinutiNormal": 9510,
+ "shinutiHard": 4840,
+ "shinutiMania": 3260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10940,
+ "shinutiNormalDuet": 9510,
+ "shinutiHardDuet": 4840,
+ "shinutiManiaDuet": 3260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000450,
+ "scoreNormal": 1000350,
+ "scoreHard": 1001880,
+ "scoreMania": 1002340,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1398,
+ "id": "hslove",
+ "songFileName": "song_hslove",
+ "order": 1790,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9990,
+ "shinutiNormal": 6660,
+ "shinutiHard": 4560,
+ "shinutiMania": 3200,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9990,
+ "shinutiNormalDuet": 6660,
+ "shinutiHardDuet": 4560,
+ "shinutiManiaDuet": 3200,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000790,
+ "scoreNormal": 1001160,
+ "scoreHard": 1000940,
+ "scoreMania": 1000380,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1399,
+ "id": "hslump",
+ "songFileName": "song_hslump",
+ "order": 1791,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10250,
+ "shinutiNormal": 7090,
+ "shinutiHard": 3370,
+ "shinutiMania": 2590,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10250,
+ "shinutiNormalDuet": 7090,
+ "shinutiHardDuet": 3370,
+ "shinutiManiaDuet": 2590,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000650,
+ "scoreNormal": 1000510,
+ "scoreHard": 1000090,
+ "scoreMania": 1001530,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1400,
+ "id": "iaenme",
+ "songFileName": "song_iaenme",
+ "order": 1806,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5810,
+ "shinutiNormal": 4460,
+ "shinutiHard": 2230,
+ "shinutiMania": 1660,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5810,
+ "shinutiNormalDuet": 4460,
+ "shinutiHardDuet": 2230,
+ "shinutiManiaDuet": 1660,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000730,
+ "scoreNormal": 1001370,
+ "scoreHard": 1003820,
+ "scoreMania": 1004860,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1402,
+ "id": "imibla",
+ "songFileName": "song_imibla",
+ "order": 1844,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 7090,
+ "shinutiNormal": 4880,
+ "shinutiHard": 3050,
+ "shinutiMania": 1870,
+ "shinutiUra": 1380,
+ "shinutiEasyDuet": 7090,
+ "shinutiNormalDuet": 4880,
+ "shinutiHardDuet": 3050,
+ "shinutiManiaDuet": 1870,
+ "shinutiUraDuet": 1380,
+ "scoreEasy": 1000580,
+ "scoreNormal": 1000340,
+ "scoreHard": 1000270,
+ "scoreMania": 1004640,
+ "scoreUra": 1004460
+ },
+ {
+ "uniqueId": 1403,
+ "id": "inach9",
+ "songFileName": "song_inach9",
+ "order": 1930,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 12210,
+ "shinutiNormal": 6470,
+ "shinutiHard": 3640,
+ "shinutiMania": 2990,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12210,
+ "shinutiNormalDuet": 6470,
+ "shinutiHardDuet": 3640,
+ "shinutiManiaDuet": 2990,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000410,
+ "scoreNormal": 1000880,
+ "scoreHard": 1000210,
+ "scoreMania": 1002990,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1404,
+ "id": "iwish",
+ "songFileName": "song_iwish",
+ "order": 1958,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 9580,
+ "shinutiNormal": 6870,
+ "shinutiHard": 3300,
+ "shinutiMania": 2640,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9580,
+ "shinutiNormalDuet": 6870,
+ "shinutiHardDuet": 3300,
+ "shinutiManiaDuet": 2640,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000110,
+ "scoreNormal": 1000760,
+ "scoreHard": 1001410,
+ "scoreMania": 1003370,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1405,
+ "id": "jyuoja",
+ "songFileName": "song_jyuoja",
+ "order": 1980,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 23040,
+ "shinutiNormal": 13210,
+ "shinutiHard": 6370,
+ "shinutiMania": 4530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 23040,
+ "shinutiNormalDuet": 13210,
+ "shinutiHardDuet": 6370,
+ "shinutiManiaDuet": 4530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1000710,
+ "scoreHard": 1000080,
+ "scoreMania": 1000140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1406,
+ "id": "k2mtom",
+ "songFileName": "song_k2mtom",
+ "order": 1982,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 11980,
+ "shinutiNormal": 6020,
+ "shinutiHard": 4150,
+ "shinutiMania": 3540,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11980,
+ "shinutiNormalDuet": 6020,
+ "shinutiHardDuet": 4150,
+ "shinutiManiaDuet": 3540,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000370,
+ "scoreNormal": 1000410,
+ "scoreHard": 1000530,
+ "scoreMania": 1000430,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1407,
+ "id": "kaasan",
+ "songFileName": "song_kaasan",
+ "order": 1984,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11990,
+ "shinutiNormal": 8640,
+ "shinutiHard": 4440,
+ "shinutiMania": 3330,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11990,
+ "shinutiNormalDuet": 8640,
+ "shinutiHardDuet": 4440,
+ "shinutiManiaDuet": 3330,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000310,
+ "scoreNormal": 1000050,
+ "scoreHard": 1001170,
+ "scoreMania": 1000650,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1408,
+ "id": "karon",
+ "songFileName": "song_karon",
+ "order": 2003,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8750,
+ "shinutiNormal": 6570,
+ "shinutiHard": 3800,
+ "shinutiMania": 2680,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8750,
+ "shinutiNormalDuet": 6570,
+ "shinutiHardDuet": 3800,
+ "shinutiManiaDuet": 2680,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000280,
+ "scoreNormal": 1001350,
+ "scoreHard": 1000640,
+ "scoreMania": 1001590,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1409,
+ "id": "kazega",
+ "songFileName": "song_kazega",
+ "order": 2008,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6070,
+ "shinutiNormal": 4220,
+ "shinutiHard": 2640,
+ "shinutiMania": 1680,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6070,
+ "shinutiNormalDuet": 4220,
+ "shinutiHardDuet": 2640,
+ "shinutiManiaDuet": 1680,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000260,
+ "scoreNormal": 1000470,
+ "scoreHard": 1003560,
+ "scoreMania": 1004800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1412,
+ "id": "kiraki",
+ "songFileName": "song_kiraki",
+ "order": 2037,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 2,
+ "starMania": 2,
+ "starUra": 0,
+ "shinutiEasy": 17100,
+ "shinutiNormal": 10140,
+ "shinutiHard": 5100,
+ "shinutiMania": 3880,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 17100,
+ "shinutiNormalDuet": 10140,
+ "shinutiHardDuet": 5100,
+ "shinutiManiaDuet": 3880,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000110,
+ "scoreNormal": 1000760,
+ "scoreHard": 1000160,
+ "scoreMania": 1001100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1413,
+ "id": "kirapw",
+ "songFileName": "song_kirapw",
+ "order": 2040,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 15240,
+ "shinutiNormal": 8480,
+ "shinutiHard": 3920,
+ "shinutiMania": 3390,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15240,
+ "shinutiNormalDuet": 8480,
+ "shinutiHardDuet": 3920,
+ "shinutiManiaDuet": 3390,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000370,
+ "scoreNormal": 1000540,
+ "scoreHard": 1001730,
+ "scoreMania": 1001360,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1414,
+ "id": "kiskis",
+ "songFileName": "song_kiskis",
+ "order": 2047,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 7140,
+ "shinutiNormal": 5520,
+ "shinutiHard": 3170,
+ "shinutiMania": 2060,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7140,
+ "shinutiNormalDuet": 5520,
+ "shinutiHardDuet": 3170,
+ "shinutiManiaDuet": 2060,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000770,
+ "scoreNormal": 1000080,
+ "scoreHard": 1000980,
+ "scoreMania": 1004240,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1415,
+ "id": "kktmhp",
+ "songFileName": "song_kktmhp",
+ "order": 2054,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 19060,
+ "shinutiNormal": 11410,
+ "shinutiHard": 4340,
+ "shinutiMania": 2670,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 19060,
+ "shinutiNormalDuet": 11410,
+ "shinutiHardDuet": 4340,
+ "shinutiManiaDuet": 2670,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000070,
+ "scoreNormal": 1000820,
+ "scoreHard": 1002260,
+ "scoreMania": 1001250,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1417,
+ "id": "kroman",
+ "songFileName": "song_kroman",
+ "order": 2083,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9570,
+ "shinutiNormal": 5830,
+ "shinutiHard": 3610,
+ "shinutiMania": 2500,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9570,
+ "shinutiNormalDuet": 5830,
+ "shinutiHardDuet": 3610,
+ "shinutiManiaDuet": 2500,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000340,
+ "scoreNormal": 1000580,
+ "scoreHard": 1002130,
+ "scoreMania": 1002670,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1419,
+ "id": "lion",
+ "songFileName": "song_lion",
+ "order": 2118,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 7,
+ "shinutiEasy": 9550,
+ "shinutiNormal": 5550,
+ "shinutiHard": 4150,
+ "shinutiMania": 2700,
+ "shinutiUra": 2040,
+ "shinutiEasyDuet": 9550,
+ "shinutiNormalDuet": 5550,
+ "shinutiHardDuet": 4150,
+ "shinutiManiaDuet": 2700,
+ "shinutiUraDuet": 2040,
+ "scoreEasy": 1000250,
+ "scoreNormal": 1000350,
+ "scoreHard": 1002090,
+ "scoreMania": 1000030,
+ "scoreUra": 1000580
+ },
+ {
+ "uniqueId": 1420,
+ "id": "llsnow",
+ "songFileName": "song_llsnow",
+ "order": 2122,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 7960,
+ "shinutiNormal": 6090,
+ "shinutiHard": 3800,
+ "shinutiMania": 2590,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7960,
+ "shinutiNormalDuet": 6090,
+ "shinutiHardDuet": 3800,
+ "shinutiManiaDuet": 2590,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1000330,
+ "scoreHard": 1002410,
+ "scoreMania": 1002340,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1421,
+ "id": "lovele",
+ "songFileName": "song_lovele",
+ "order": 2131,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 2,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 8160,
+ "shinutiNormal": 5460,
+ "shinutiHard": 4070,
+ "shinutiMania": 3150,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8160,
+ "shinutiNormalDuet": 5460,
+ "shinutiHardDuet": 4070,
+ "shinutiManiaDuet": 3150,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000210,
+ "scoreNormal": 1000260,
+ "scoreHard": 1001930,
+ "scoreMania": 1002560,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1422,
+ "id": "lspri9",
+ "songFileName": "song_lspri9",
+ "order": 2143,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 1,
+ "starHard": 3,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 14430,
+ "shinutiNormal": 11050,
+ "shinutiHard": 4230,
+ "shinutiMania": 3170,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14430,
+ "shinutiNormalDuet": 11050,
+ "shinutiHardDuet": 4230,
+ "shinutiManiaDuet": 3170,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1000480,
+ "scoreHard": 1001790,
+ "scoreMania": 1001720,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1423,
+ "id": "m96ikz",
+ "songFileName": "song_m96ikz",
+ "order": 2152,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 5680,
+ "shinutiNormal": 4490,
+ "shinutiHard": 2880,
+ "shinutiMania": 1980,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5680,
+ "shinutiNormalDuet": 4490,
+ "shinutiHardDuet": 2880,
+ "shinutiManiaDuet": 1980,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001070,
+ "scoreNormal": 1000870,
+ "scoreHard": 1001500,
+ "scoreMania": 1002590,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1425,
+ "id": "marumo",
+ "songFileName": "song_marumo",
+ "order": 2182,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 11070,
+ "shinutiNormal": 7160,
+ "shinutiHard": 4580,
+ "shinutiMania": 3460,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11070,
+ "shinutiNormalDuet": 7160,
+ "shinutiHardDuet": 4580,
+ "shinutiManiaDuet": 3460,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000530,
+ "scoreNormal": 1000170,
+ "scoreHard": 1000530,
+ "scoreMania": 1001810,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1426,
+ "id": "mcrd1d",
+ "songFileName": "song_mcrd1d",
+ "order": 2190,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 8730,
+ "shinutiNormal": 5040,
+ "shinutiHard": 3470,
+ "shinutiMania": 2450,
+ "shinutiUra": 1840,
+ "shinutiEasyDuet": 8730,
+ "shinutiNormalDuet": 5040,
+ "shinutiHardDuet": 3470,
+ "shinutiManiaDuet": 2450,
+ "shinutiUraDuet": 1840,
+ "scoreEasy": 1000470,
+ "scoreNormal": 1001230,
+ "scoreHard": 1001910,
+ "scoreMania": 1003080,
+ "scoreUra": 1000720
+ },
+ {
+ "uniqueId": 1427,
+ "id": "mcrdbl",
+ "songFileName": "song_mcrdbl",
+ "order": 2191,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 8,
+ "shinutiEasy": 9190,
+ "shinutiNormal": 7490,
+ "shinutiHard": 3790,
+ "shinutiMania": 2530,
+ "shinutiUra": 1870,
+ "shinutiEasyDuet": 9190,
+ "shinutiNormalDuet": 7490,
+ "shinutiHardDuet": 3790,
+ "shinutiManiaDuet": 2530,
+ "shinutiUraDuet": 1870,
+ "scoreEasy": 1000960,
+ "scoreNormal": 1000980,
+ "scoreHard": 1001890,
+ "scoreMania": 1003500,
+ "scoreUra": 1002790
+ },
+ {
+ "uniqueId": 1430,
+ "id": "misena",
+ "songFileName": "song_misena",
+ "order": 2266,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 14890,
+ "shinutiNormal": 10280,
+ "shinutiHard": 6530,
+ "shinutiMania": 4870,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14890,
+ "shinutiNormalDuet": 10280,
+ "shinutiHardDuet": 6530,
+ "shinutiManiaDuet": 4870,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000280,
+ "scoreNormal": 1000380,
+ "scoreHard": 1001440,
+ "scoreMania": 1001930,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1431,
+ "id": "mister",
+ "songFileName": "song_mister",
+ "order": 2267,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10270,
+ "shinutiNormal": 6460,
+ "shinutiHard": 3760,
+ "shinutiMania": 3020,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10270,
+ "shinutiNormalDuet": 6460,
+ "shinutiHardDuet": 3760,
+ "shinutiManiaDuet": 3020,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1000370,
+ "scoreHard": 1002030,
+ "scoreMania": 1002470,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1432,
+ "id": "mlov2k",
+ "songFileName": "song_mlov2k",
+ "order": 2274,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9120,
+ "shinutiNormal": 6890,
+ "shinutiHard": 4390,
+ "shinutiMania": 2330,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9120,
+ "shinutiNormalDuet": 6890,
+ "shinutiHardDuet": 4390,
+ "shinutiManiaDuet": 2330,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000510,
+ "scoreNormal": 1000690,
+ "scoreHard": 1001660,
+ "scoreMania": 1004250,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1433,
+ "id": "monhn3",
+ "songFileName": "song_monhn3",
+ "order": 2287,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 5910,
+ "shinutiNormal": 3790,
+ "shinutiHard": 2370,
+ "shinutiMania": 1560,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5910,
+ "shinutiNormalDuet": 3790,
+ "shinutiHardDuet": 2370,
+ "shinutiManiaDuet": 1560,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001010,
+ "scoreNormal": 1001920,
+ "scoreHard": 1003920,
+ "scoreMania": 1003010,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1434,
+ "id": "niji",
+ "songFileName": "song_niji",
+ "order": 2346,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 1,
+ "starHard": 2,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 11470,
+ "shinutiNormal": 7980,
+ "shinutiHard": 4170,
+ "shinutiMania": 3040,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11470,
+ "shinutiNormalDuet": 7980,
+ "shinutiHardDuet": 4170,
+ "shinutiManiaDuet": 3040,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000460,
+ "scoreNormal": 1000620,
+ "scoreHard": 1000800,
+ "scoreMania": 1002080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1438,
+ "id": "oneday",
+ "songFileName": "song_oneday",
+ "order": 2380,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 11380,
+ "shinutiNormal": 8040,
+ "shinutiHard": 4020,
+ "shinutiMania": 2930,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11380,
+ "shinutiNormalDuet": 8040,
+ "shinutiHardDuet": 4020,
+ "shinutiManiaDuet": 2930,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000090,
+ "scoreNormal": 1001100,
+ "scoreHard": 1001320,
+ "scoreMania": 1002840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1439,
+ "id": "onedri",
+ "songFileName": "song_onedri",
+ "order": 2381,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 12940,
+ "shinutiNormal": 7680,
+ "shinutiHard": 4630,
+ "shinutiMania": 3350,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12940,
+ "shinutiNormalDuet": 7680,
+ "shinutiHardDuet": 4630,
+ "shinutiManiaDuet": 3350,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000460,
+ "scoreNormal": 1001010,
+ "scoreHard": 1000820,
+ "scoreMania": 1001650,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1441,
+ "id": "osiri2",
+ "songFileName": "song_osiri2",
+ "order": 2397,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 9,
+ "shinutiEasy": 8890,
+ "shinutiNormal": 5440,
+ "shinutiHard": 3640,
+ "shinutiMania": 2260,
+ "shinutiUra": 1270,
+ "shinutiEasyDuet": 8890,
+ "shinutiNormalDuet": 5440,
+ "shinutiHardDuet": 3640,
+ "shinutiManiaDuet": 2260,
+ "shinutiUraDuet": 1270,
+ "scoreEasy": 1000880,
+ "scoreNormal": 1000330,
+ "scoreHard": 1001610,
+ "scoreMania": 1004080,
+ "scoreUra": 1000470
+ },
+ {
+ "uniqueId": 1442,
+ "id": "otemo",
+ "songFileName": "song_otemo",
+ "order": 2399,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7120,
+ "shinutiNormal": 4790,
+ "shinutiHard": 2880,
+ "shinutiMania": 1820,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7120,
+ "shinutiNormalDuet": 4790,
+ "shinutiHardDuet": 2880,
+ "shinutiManiaDuet": 1820,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000320,
+ "scoreNormal": 1000590,
+ "scoreHard": 1002260,
+ "scoreMania": 1000130,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1444,
+ "id": "pkmnbw",
+ "songFileName": "song_pkmnbw",
+ "order": 2437,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 2,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 9670,
+ "shinutiNormal": 7220,
+ "shinutiHard": 4780,
+ "shinutiMania": 3070,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9670,
+ "shinutiNormalDuet": 7220,
+ "shinutiHardDuet": 4780,
+ "shinutiManiaDuet": 3070,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1001330,
+ "scoreHard": 1000740,
+ "scoreMania": 1000870,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1445,
+ "id": "pkmnmd",
+ "songFileName": "song_pkmnmd",
+ "order": 2438,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6610,
+ "shinutiNormal": 4430,
+ "shinutiHard": 1750,
+ "shinutiMania": 1280,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6610,
+ "shinutiNormalDuet": 4430,
+ "shinutiHardDuet": 1750,
+ "shinutiManiaDuet": 1280,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001450,
+ "scoreNormal": 1002120,
+ "scoreHard": 1002820,
+ "scoreMania": 1000330,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1446,
+ "id": "pkmnyz",
+ "songFileName": "song_pkmnyz",
+ "order": 2441,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 2,
+ "starMania": 3,
+ "starUra": 0,
+ "shinutiEasy": 15570,
+ "shinutiNormal": 10450,
+ "shinutiHard": 5470,
+ "shinutiMania": 3240,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15570,
+ "shinutiNormalDuet": 10450,
+ "shinutiHardDuet": 5470,
+ "shinutiManiaDuet": 3240,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000340,
+ "scoreNormal": 1000450,
+ "scoreHard": 1000070,
+ "scoreMania": 1000300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1447,
+ "id": "poly",
+ "songFileName": "song_poly",
+ "order": 2448,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7680,
+ "shinutiNormal": 4760,
+ "shinutiHard": 3250,
+ "shinutiMania": 1740,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7680,
+ "shinutiNormalDuet": 4760,
+ "shinutiHardDuet": 3250,
+ "shinutiManiaDuet": 1740,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000180,
+ "scoreNormal": 1001760,
+ "scoreHard": 1001000,
+ "scoreMania": 1000230,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1448,
+ "id": "pr9ala",
+ "songFileName": "song_pr9ala",
+ "order": 2461,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 18740,
+ "shinutiNormal": 11010,
+ "shinutiHard": 5310,
+ "shinutiMania": 2830,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18740,
+ "shinutiNormalDuet": 11010,
+ "shinutiHardDuet": 5310,
+ "shinutiManiaDuet": 2830,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000070,
+ "scoreNormal": 1000530,
+ "scoreHard": 1001800,
+ "scoreMania": 1003260,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1449,
+ "id": "pr9mah",
+ "songFileName": "song_pr9mah",
+ "order": 2465,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 17080,
+ "shinutiNormal": 8820,
+ "shinutiHard": 3680,
+ "shinutiMania": 2890,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 17080,
+ "shinutiNormalDuet": 8820,
+ "shinutiHardDuet": 3680,
+ "shinutiManiaDuet": 2890,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000150,
+ "scoreNormal": 1000410,
+ "scoreHard": 1001650,
+ "scoreMania": 1003270,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1450,
+ "id": "punish",
+ "songFileName": "song_punish",
+ "order": 2487,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6400,
+ "shinutiNormal": 3890,
+ "shinutiHard": 1490,
+ "shinutiMania": 1010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6400,
+ "shinutiNormalDuet": 3890,
+ "shinutiHardDuet": 1490,
+ "shinutiManiaDuet": 1010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000270,
+ "scoreNormal": 1002530,
+ "scoreHard": 1004260,
+ "scoreMania": 1008990,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1452,
+ "id": "rakisu",
+ "songFileName": "song_rakisu",
+ "order": 2505,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8740,
+ "shinutiNormal": 5390,
+ "shinutiHard": 3250,
+ "shinutiMania": 2040,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8740,
+ "shinutiNormalDuet": 5390,
+ "shinutiHardDuet": 3250,
+ "shinutiManiaDuet": 2040,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000510,
+ "scoreNormal": 1000170,
+ "scoreHard": 1002070,
+ "scoreMania": 1002550,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1454,
+ "id": "rindon",
+ "songFileName": "song_rindon",
+ "order": 2520,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11430,
+ "shinutiNormal": 9840,
+ "shinutiHard": 4920,
+ "shinutiMania": 2520,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11430,
+ "shinutiNormalDuet": 9840,
+ "shinutiHardDuet": 4920,
+ "shinutiManiaDuet": 2520,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000050,
+ "scoreNormal": 1000690,
+ "scoreHard": 1000270,
+ "scoreMania": 1002960,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1455,
+ "id": "rising",
+ "songFileName": "song_rising",
+ "order": 2529,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 8240,
+ "shinutiNormal": 6970,
+ "shinutiHard": 4400,
+ "shinutiMania": 2980,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8240,
+ "shinutiNormalDuet": 6970,
+ "shinutiHardDuet": 4400,
+ "shinutiManiaDuet": 2980,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1000590,
+ "scoreHard": 1001490,
+ "scoreMania": 1000890,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1458,
+ "id": "rudolf",
+ "songFileName": "song_rudolf",
+ "order": 2567,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 12380,
+ "shinutiNormal": 8250,
+ "shinutiHard": 3950,
+ "shinutiMania": 2920,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12380,
+ "shinutiNormalDuet": 8250,
+ "shinutiHardDuet": 3950,
+ "shinutiManiaDuet": 2920,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000710,
+ "scoreNormal": 1001150,
+ "scoreHard": 1001830,
+ "scoreMania": 1002680,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1459,
+ "id": "seiya",
+ "songFileName": "song_seiya",
+ "order": 2593,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 11680,
+ "shinutiNormal": 6740,
+ "shinutiHard": 5200,
+ "shinutiMania": 3200,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11680,
+ "shinutiNormalDuet": 6740,
+ "shinutiHardDuet": 5200,
+ "shinutiManiaDuet": 3200,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000260,
+ "scoreNormal": 1000150,
+ "scoreHard": 1000260,
+ "scoreMania": 1002800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1461,
+ "id": "shine",
+ "songFileName": "song_shine",
+ "order": 2609,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 15050,
+ "shinutiNormal": 8620,
+ "shinutiHard": 6460,
+ "shinutiMania": 3890,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15050,
+ "shinutiNormalDuet": 8620,
+ "shinutiHardDuet": 6460,
+ "shinutiManiaDuet": 3890,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000410,
+ "scoreNormal": 1000530,
+ "scoreHard": 1000870,
+ "scoreMania": 1002420,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1462,
+ "id": "shtage",
+ "songFileName": "song_shtage",
+ "order": 2618,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10380,
+ "shinutiNormal": 7970,
+ "shinutiHard": 4440,
+ "shinutiMania": 2760,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10380,
+ "shinutiNormalDuet": 7970,
+ "shinutiHardDuet": 4440,
+ "shinutiManiaDuet": 2760,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000150,
+ "scoreNormal": 1000710,
+ "scoreHard": 1000600,
+ "scoreMania": 1000700,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1463,
+ "id": "sidos",
+ "songFileName": "song_sidos",
+ "order": 2624,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 9120,
+ "shinutiNormal": 6620,
+ "shinutiHard": 3680,
+ "shinutiMania": 1650,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9120,
+ "shinutiNormalDuet": 6620,
+ "shinutiHardDuet": 3680,
+ "shinutiManiaDuet": 1650,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000880,
+ "scoreNormal": 1001260,
+ "scoreHard": 1002340,
+ "scoreMania": 1004970,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1464,
+ "id": "sidvip",
+ "songFileName": "song_sidvip",
+ "order": 2627,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9100,
+ "shinutiNormal": 6690,
+ "shinutiHard": 4130,
+ "shinutiMania": 2900,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9100,
+ "shinutiNormalDuet": 6690,
+ "shinutiHardDuet": 4130,
+ "shinutiManiaDuet": 2900,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000090,
+ "scoreNormal": 1000070,
+ "scoreHard": 1001860,
+ "scoreMania": 1000800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1465,
+ "id": "smpri9",
+ "songFileName": "song_smpri9",
+ "order": 2648,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 3,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 14860,
+ "shinutiNormal": 8970,
+ "shinutiHard": 4210,
+ "shinutiMania": 3260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14860,
+ "shinutiNormalDuet": 8970,
+ "shinutiHardDuet": 4210,
+ "shinutiManiaDuet": 3260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000260,
+ "scoreNormal": 1000730,
+ "scoreHard": 1000310,
+ "scoreMania": 1000510,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1466,
+ "id": "soba",
+ "songFileName": "song_soba",
+ "order": 2655,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9860,
+ "shinutiNormal": 7890,
+ "shinutiHard": 4320,
+ "shinutiMania": 3290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9860,
+ "shinutiNormalDuet": 7890,
+ "shinutiHardDuet": 4320,
+ "shinutiManiaDuet": 3290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000480,
+ "scoreNormal": 1000200,
+ "scoreHard": 1001160,
+ "scoreMania": 1000060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1469,
+ "id": "stline",
+ "songFileName": "song_stline",
+ "order": 2695,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 25960,
+ "shinutiNormal": 14520,
+ "shinutiHard": 4970,
+ "shinutiMania": 3140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 25960,
+ "shinutiNormalDuet": 14520,
+ "shinutiHardDuet": 4970,
+ "shinutiManiaDuet": 3140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000250,
+ "scoreNormal": 1000400,
+ "scoreHard": 1001970,
+ "scoreMania": 1002550,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1472,
+ "id": "tg69",
+ "songFileName": "song_tg69",
+ "order": 2762,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 9610,
+ "shinutiNormal": 6320,
+ "shinutiHard": 2950,
+ "shinutiMania": 2540,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9610,
+ "shinutiNormalDuet": 6320,
+ "shinutiHardDuet": 2950,
+ "shinutiManiaDuet": 2540,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000050,
+ "scoreNormal": 1000740,
+ "scoreHard": 1001660,
+ "scoreMania": 1002280,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1475,
+ "id": "toriko",
+ "songFileName": "song_toriko",
+ "order": 2823,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 12790,
+ "shinutiNormal": 8830,
+ "shinutiHard": 4970,
+ "shinutiMania": 3430,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12790,
+ "shinutiNormalDuet": 8830,
+ "shinutiHardDuet": 4970,
+ "shinutiManiaDuet": 3430,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000180,
+ "scoreNormal": 1000900,
+ "scoreHard": 1000780,
+ "scoreMania": 1000210,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1476,
+ "id": "touch",
+ "songFileName": "song_touch",
+ "order": 2826,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 8370,
+ "shinutiNormal": 6330,
+ "shinutiHard": 3470,
+ "shinutiMania": 2810,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8370,
+ "shinutiNormalDuet": 6330,
+ "shinutiHardDuet": 3470,
+ "shinutiManiaDuet": 2810,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001100,
+ "scoreNormal": 1000280,
+ "scoreHard": 1002830,
+ "scoreMania": 1002260,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1477,
+ "id": "tougen",
+ "songFileName": "song_tougen",
+ "order": 2827,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8150,
+ "shinutiNormal": 6370,
+ "shinutiHard": 4620,
+ "shinutiMania": 2470,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8150,
+ "shinutiNormalDuet": 6370,
+ "shinutiHardDuet": 4620,
+ "shinutiManiaDuet": 2470,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000410,
+ "scoreNormal": 1000700,
+ "scoreHard": 1001150,
+ "scoreMania": 1003850,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1478,
+ "id": "touken",
+ "songFileName": "song_touken",
+ "order": 2829,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9640,
+ "shinutiNormal": 5230,
+ "shinutiHard": 3290,
+ "shinutiMania": 1940,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9640,
+ "shinutiNormalDuet": 5230,
+ "shinutiHardDuet": 3290,
+ "shinutiManiaDuet": 1940,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000690,
+ "scoreNormal": 1001530,
+ "scoreHard": 1000690,
+ "scoreMania": 1002740,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1480,
+ "id": "ttk3",
+ "songFileName": "song_ttk3",
+ "order": 2845,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10580,
+ "shinutiNormal": 6640,
+ "shinutiHard": 3380,
+ "shinutiMania": 2500,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10580,
+ "shinutiNormalDuet": 6640,
+ "shinutiHardDuet": 3380,
+ "shinutiManiaDuet": 2500,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000620,
+ "scoreNormal": 1001280,
+ "scoreHard": 1000480,
+ "scoreMania": 1003940,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1482,
+ "id": "umaru2",
+ "songFileName": "song_umaru2",
+ "order": 2884,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8800,
+ "shinutiNormal": 5880,
+ "shinutiHard": 3310,
+ "shinutiMania": 2400,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8800,
+ "shinutiNormalDuet": 5880,
+ "shinutiHardDuet": 3310,
+ "shinutiManiaDuet": 2400,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001070,
+ "scoreNormal": 1001040,
+ "scoreHard": 1000450,
+ "scoreMania": 1003850,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1483,
+ "id": "umauma",
+ "songFileName": "song_umauma",
+ "order": 2885,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6610,
+ "shinutiNormal": 4640,
+ "shinutiHard": 2510,
+ "shinutiMania": 1970,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6610,
+ "shinutiNormalDuet": 4640,
+ "shinutiHardDuet": 2510,
+ "shinutiManiaDuet": 1970,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000090,
+ "scoreNormal": 1000460,
+ "scoreHard": 1001490,
+ "scoreMania": 1001980,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1484,
+ "id": "urotan",
+ "songFileName": "song_urotan",
+ "order": 2900,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8600,
+ "shinutiNormal": 5070,
+ "shinutiHard": 3400,
+ "shinutiMania": 1760,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8600,
+ "shinutiNormalDuet": 5070,
+ "shinutiHardDuet": 3400,
+ "shinutiManiaDuet": 1760,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000270,
+ "scoreNormal": 1000200,
+ "scoreHard": 1002780,
+ "scoreMania": 1000620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1485,
+ "id": "valvra",
+ "songFileName": "song_valvra",
+ "order": 2905,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9880,
+ "shinutiNormal": 5770,
+ "shinutiHard": 3510,
+ "shinutiMania": 2420,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9880,
+ "shinutiNormalDuet": 5770,
+ "shinutiHardDuet": 3510,
+ "shinutiManiaDuet": 2420,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000580,
+ "scoreNormal": 1001490,
+ "scoreHard": 1000250,
+ "scoreMania": 1003040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1487,
+ "id": "wizard",
+ "songFileName": "song_wizard",
+ "order": 2956,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 20280,
+ "shinutiNormal": 12580,
+ "shinutiHard": 7200,
+ "shinutiMania": 3720,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 20280,
+ "shinutiNormalDuet": 12580,
+ "shinutiHardDuet": 7200,
+ "shinutiManiaDuet": 3720,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000390,
+ "scoreNormal": 1000750,
+ "scoreHard": 1001160,
+ "scoreMania": 1001640,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1488,
+ "id": "wland",
+ "songFileName": "song_wland",
+ "order": 2957,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9850,
+ "shinutiNormal": 6620,
+ "shinutiHard": 3690,
+ "shinutiMania": 2320,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9850,
+ "shinutiNormalDuet": 6620,
+ "shinutiHardDuet": 3690,
+ "shinutiManiaDuet": 2320,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000770,
+ "scoreNormal": 1000190,
+ "scoreHard": 1001460,
+ "scoreMania": 1003700,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1490,
+ "id": "yes",
+ "songFileName": "song_yes",
+ "order": 2975,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 7750,
+ "shinutiNormal": 5600,
+ "shinutiHard": 3340,
+ "shinutiMania": 2270,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7750,
+ "shinutiNormalDuet": 5600,
+ "shinutiHardDuet": 3340,
+ "shinutiManiaDuet": 2270,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000820,
+ "scoreNormal": 1000960,
+ "scoreHard": 1001610,
+ "scoreMania": 1000810,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1492,
+ "id": "yuuki",
+ "songFileName": "song_yuuki",
+ "order": 3008,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10400,
+ "shinutiNormal": 8810,
+ "shinutiHard": 3940,
+ "shinutiMania": 2960,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10400,
+ "shinutiNormalDuet": 8810,
+ "shinutiHardDuet": 3940,
+ "shinutiManiaDuet": 2960,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000110,
+ "scoreNormal": 1000250,
+ "scoreHard": 1001930,
+ "scoreMania": 1002250,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1493,
+ "id": "zutzut",
+ "songFileName": "song_zutzut",
+ "order": 3032,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 18780,
+ "shinutiNormal": 10460,
+ "shinutiHard": 3660,
+ "shinutiMania": 3070,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18780,
+ "shinutiNormalDuet": 10460,
+ "shinutiHardDuet": 3660,
+ "shinutiManiaDuet": 3070,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000170,
+ "scoreNormal": 1000790,
+ "scoreHard": 1001910,
+ "scoreMania": 1001910,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1494,
+ "id": "blackm",
+ "songFileName": "song_blackm",
+ "order": 1256,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7490,
+ "shinutiNormal": 5310,
+ "shinutiHard": 2530,
+ "shinutiMania": 1880,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7490,
+ "shinutiNormalDuet": 5310,
+ "shinutiHardDuet": 2530,
+ "shinutiManiaDuet": 1880,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1000850,
+ "scoreHard": 1003520,
+ "scoreMania": 1002140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1495,
+ "id": "gekits",
+ "songFileName": "song_gekits",
+ "order": 1664,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 8220,
+ "shinutiNormal": 6330,
+ "shinutiHard": 2960,
+ "shinutiMania": 2010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8220,
+ "shinutiNormalDuet": 6330,
+ "shinutiHardDuet": 2960,
+ "shinutiManiaDuet": 2010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000800,
+ "scoreNormal": 1000920,
+ "scoreHard": 1002760,
+ "scoreMania": 1002330,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1496,
+ "id": "imyme",
+ "songFileName": "song_imyme",
+ "order": 1928,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 11490,
+ "shinutiNormal": 8460,
+ "shinutiHard": 3820,
+ "shinutiMania": 2760,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11490,
+ "shinutiNormalDuet": 8460,
+ "shinutiHardDuet": 3820,
+ "shinutiManiaDuet": 2760,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000410,
+ "scoreNormal": 1000370,
+ "scoreHard": 1002460,
+ "scoreMania": 1002890,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1497,
+ "id": "inajou",
+ "songFileName": "song_inajou",
+ "order": 1933,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12370,
+ "shinutiNormal": 7210,
+ "shinutiHard": 4150,
+ "shinutiMania": 3150,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12370,
+ "shinutiNormalDuet": 7210,
+ "shinutiHardDuet": 4150,
+ "shinutiManiaDuet": 3150,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000590,
+ "scoreNormal": 1000720,
+ "scoreHard": 1000910,
+ "scoreMania": 1003000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1498,
+ "id": "jazsaj",
+ "songFileName": "song_jazsaj",
+ "order": 1967,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6540,
+ "shinutiNormal": 5700,
+ "shinutiHard": 2990,
+ "shinutiMania": 1870,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6540,
+ "shinutiNormalDuet": 5700,
+ "shinutiHardDuet": 2990,
+ "shinutiManiaDuet": 1870,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000110,
+ "scoreNormal": 1000100,
+ "scoreHard": 1000700,
+ "scoreMania": 1004190,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1499,
+ "id": "mario3",
+ "songFileName": "song_mario3",
+ "order": 2179,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5890,
+ "shinutiNormal": 5140,
+ "shinutiHard": 3130,
+ "shinutiMania": 1520,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5890,
+ "shinutiNormalDuet": 5140,
+ "shinutiHardDuet": 3130,
+ "shinutiManiaDuet": 1520,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000120,
+ "scoreNormal": 1000570,
+ "scoreHard": 1002370,
+ "scoreMania": 1001730,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1501,
+ "id": "neko2",
+ "songFileName": "song_neko2",
+ "order": 2335,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5110,
+ "shinutiNormal": 3240,
+ "shinutiHard": 1900,
+ "shinutiMania": 1660,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5110,
+ "shinutiNormalDuet": 3240,
+ "shinutiHardDuet": 1900,
+ "shinutiManiaDuet": 1660,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000750,
+ "scoreNormal": 1002460,
+ "scoreHard": 1001190,
+ "scoreMania": 1002250,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1502,
+ "id": "shugei",
+ "songFileName": "song_shugei",
+ "order": 2620,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7130,
+ "shinutiNormal": 5340,
+ "shinutiHard": 2700,
+ "shinutiMania": 2060,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7130,
+ "shinutiNormalDuet": 5340,
+ "shinutiHardDuet": 2700,
+ "shinutiManiaDuet": 2060,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000990,
+ "scoreNormal": 1001260,
+ "scoreHard": 1001160,
+ "scoreMania": 1001490,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1503,
+ "id": "sora4x",
+ "songFileName": "song_sora4x",
+ "order": 2666,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6010,
+ "shinutiNormal": 4610,
+ "shinutiHard": 3160,
+ "shinutiMania": 1740,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6010,
+ "shinutiNormalDuet": 4610,
+ "shinutiHardDuet": 3160,
+ "shinutiManiaDuet": 1740,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000800,
+ "scoreNormal": 1000470,
+ "scoreHard": 1001580,
+ "scoreMania": 1004640,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1504,
+ "id": "toxil",
+ "songFileName": "song_toxil",
+ "order": 2832,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 4710,
+ "shinutiNormal": 3360,
+ "shinutiHard": 1590,
+ "shinutiMania": 1220,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4710,
+ "shinutiNormalDuet": 3360,
+ "shinutiHardDuet": 1590,
+ "shinutiManiaDuet": 1220,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1001120,
+ "scoreHard": 1003310,
+ "scoreMania": 1002920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1505,
+ "id": "tukema",
+ "songFileName": "song_tukema",
+ "order": 2852,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8520,
+ "shinutiNormal": 5160,
+ "shinutiHard": 3540,
+ "shinutiMania": 2780,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8520,
+ "shinutiNormalDuet": 5160,
+ "shinutiHardDuet": 3540,
+ "shinutiManiaDuet": 2780,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000800,
+ "scoreNormal": 1001670,
+ "scoreHard": 1000390,
+ "scoreMania": 1002640,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1506,
+ "id": "waru90",
+ "songFileName": "song_waru90",
+ "order": 2933,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6530,
+ "shinutiNormal": 4480,
+ "shinutiHard": 3250,
+ "shinutiMania": 2060,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6530,
+ "shinutiNormalDuet": 4480,
+ "shinutiHardDuet": 3250,
+ "shinutiManiaDuet": 2060,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1000130,
+ "scoreHard": 1001320,
+ "scoreMania": 1000260,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1507,
+ "id": "clsegl",
+ "songFileName": "song_clsegl",
+ "order": 1363,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7220,
+ "shinutiNormal": 5080,
+ "shinutiHard": 2790,
+ "shinutiMania": 1970,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7220,
+ "shinutiNormalDuet": 5080,
+ "shinutiHardDuet": 2790,
+ "shinutiManiaDuet": 1970,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000340,
+ "scoreNormal": 1001740,
+ "scoreHard": 1000000,
+ "scoreMania": 1001520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1508,
+ "id": "clsifu",
+ "songFileName": "song_clsifu",
+ "order": 1370,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6070,
+ "shinutiNormal": 4050,
+ "shinutiHard": 2590,
+ "shinutiMania": 2210,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6070,
+ "shinutiNormalDuet": 4050,
+ "shinutiHardDuet": 2590,
+ "shinutiManiaDuet": 2210,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000710,
+ "scoreNormal": 1000910,
+ "scoreHard": 1000660,
+ "scoreMania": 1003590,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1509,
+ "id": "clsstr",
+ "songFileName": "song_clsstr",
+ "order": 1393,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6310,
+ "shinutiNormal": 4790,
+ "shinutiHard": 2540,
+ "shinutiMania": 1750,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6310,
+ "shinutiNormalDuet": 4790,
+ "shinutiHardDuet": 2540,
+ "shinutiManiaDuet": 1750,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000260,
+ "scoreNormal": 1002010,
+ "scoreHard": 1001780,
+ "scoreMania": 1004800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1510,
+ "id": "enka2",
+ "songFileName": "song_enka2",
+ "order": 1571,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 12600,
+ "shinutiNormal": 7620,
+ "shinutiHard": 4950,
+ "shinutiMania": 4350,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12600,
+ "shinutiNormalDuet": 7620,
+ "shinutiHardDuet": 4950,
+ "shinutiManiaDuet": 4350,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000650,
+ "scoreNormal": 1000640,
+ "scoreHard": 1001330,
+ "scoreMania": 1000500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1511,
+ "id": "kotori",
+ "songFileName": "song_kotori",
+ "order": 2072,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 6170,
+ "shinutiNormal": 4560,
+ "shinutiHard": 2770,
+ "shinutiMania": 1960,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6170,
+ "shinutiNormalDuet": 4560,
+ "shinutiHardDuet": 2770,
+ "shinutiManiaDuet": 1960,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000530,
+ "scoreNormal": 1000070,
+ "scoreHard": 1002630,
+ "scoreMania": 1002140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1512,
+ "id": "monhn2",
+ "songFileName": "song_monhn2",
+ "order": 2286,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5040,
+ "shinutiNormal": 3750,
+ "shinutiHard": 2070,
+ "shinutiMania": 1240,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5040,
+ "shinutiNormalDuet": 3750,
+ "shinutiHardDuet": 2070,
+ "shinutiManiaDuet": 1240,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001320,
+ "scoreNormal": 1002080,
+ "scoreHard": 1000170,
+ "scoreMania": 1003770,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1513,
+ "id": "okla",
+ "songFileName": "song_okla",
+ "order": 2376,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 11930,
+ "shinutiNormal": 6590,
+ "shinutiHard": 4190,
+ "shinutiMania": 3050,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11930,
+ "shinutiNormalDuet": 6590,
+ "shinutiHardDuet": 4190,
+ "shinutiManiaDuet": 3050,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1000520,
+ "scoreHard": 1001410,
+ "scoreMania": 1001000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1514,
+ "id": "oresam",
+ "songFileName": "song_oresam",
+ "order": 2389,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 1,
+ "starMania": 2,
+ "starUra": 0,
+ "shinutiEasy": 15320,
+ "shinutiNormal": 10320,
+ "shinutiHard": 8140,
+ "shinutiMania": 6790,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15320,
+ "shinutiNormalDuet": 10320,
+ "shinutiHardDuet": 8140,
+ "shinutiManiaDuet": 6790,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000460,
+ "scoreNormal": 1000610,
+ "scoreHard": 1001090,
+ "scoreMania": 1000140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1515,
+ "id": "pkmn11",
+ "songFileName": "song_pkmn11",
+ "order": 2436,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10760,
+ "shinutiNormal": 8670,
+ "shinutiHard": 4090,
+ "shinutiMania": 2690,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10760,
+ "shinutiNormalDuet": 8670,
+ "shinutiHardDuet": 4090,
+ "shinutiManiaDuet": 2690,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000210,
+ "scoreNormal": 1000990,
+ "scoreHard": 1001500,
+ "scoreMania": 1001670,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1516,
+ "id": "ttk3s",
+ "songFileName": "song_ttk3s",
+ "order": 2846,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 15630,
+ "shinutiNormal": 9840,
+ "shinutiHard": 5170,
+ "shinutiMania": 3770,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15630,
+ "shinutiNormalDuet": 9840,
+ "shinutiHardDuet": 5170,
+ "shinutiManiaDuet": 3770,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000190,
+ "scoreNormal": 1000120,
+ "scoreHard": 1000070,
+ "scoreMania": 1001780,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1517,
+ "id": "usavi",
+ "songFileName": "song_usavi",
+ "order": 2902,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8750,
+ "shinutiNormal": 5210,
+ "shinutiHard": 2950,
+ "shinutiMania": 1990,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8750,
+ "shinutiNormalDuet": 5210,
+ "shinutiHardDuet": 2950,
+ "shinutiManiaDuet": 1990,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000210,
+ "scoreNormal": 1000190,
+ "scoreHard": 1002170,
+ "scoreMania": 1003400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1518,
+ "id": "wii4op",
+ "songFileName": "song_wii4op",
+ "order": 2949,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8600,
+ "shinutiNormal": 6210,
+ "shinutiHard": 3450,
+ "shinutiMania": 2230,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8600,
+ "shinutiNormalDuet": 6210,
+ "shinutiHardDuet": 3450,
+ "shinutiManiaDuet": 2230,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000410,
+ "scoreNormal": 1000990,
+ "scoreHard": 1001540,
+ "scoreMania": 1002330,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1519,
+ "id": "20t765",
+ "songFileName": "song_20t765",
+ "order": 1013,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 10,
+ "shinutiEasy": 3270,
+ "shinutiNormal": 2530,
+ "shinutiHard": 1510,
+ "shinutiMania": 1010,
+ "shinutiUra": 710,
+ "shinutiEasyDuet": 3270,
+ "shinutiNormalDuet": 2530,
+ "shinutiHardDuet": 1510,
+ "shinutiManiaDuet": 1010,
+ "shinutiUraDuet": 710,
+ "scoreEasy": 1001830,
+ "scoreNormal": 1001590,
+ "scoreHard": 1006200,
+ "scoreMania": 1002130,
+ "scoreUra": 1003530
+ },
+ {
+ "uniqueId": 1520,
+ "id": "evam20",
+ "songFileName": "song_evam20",
+ "order": 1579,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12510,
+ "shinutiNormal": 7160,
+ "shinutiHard": 4020,
+ "shinutiMania": 1950,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12510,
+ "shinutiNormalDuet": 7160,
+ "shinutiHardDuet": 4020,
+ "shinutiManiaDuet": 1950,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000230,
+ "scoreNormal": 1000910,
+ "scoreHard": 1000210,
+ "scoreMania": 1002300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1521,
+ "id": "10sou",
+ "songFileName": "song_10sou",
+ "order": 1002,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 13790,
+ "shinutiNormal": 8920,
+ "shinutiHard": 4150,
+ "shinutiMania": 3320,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13790,
+ "shinutiNormalDuet": 8920,
+ "shinutiHardDuet": 4150,
+ "shinutiManiaDuet": 3320,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000510,
+ "scoreNormal": 1000070,
+ "scoreHard": 1000750,
+ "scoreMania": 1002040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1522,
+ "id": "2bomi",
+ "songFileName": "song_2bomi",
+ "order": 1027,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 9290,
+ "shinutiNormal": 7110,
+ "shinutiHard": 4520,
+ "shinutiMania": 3420,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9290,
+ "shinutiNormalDuet": 7110,
+ "shinutiHardDuet": 4520,
+ "shinutiManiaDuet": 3420,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000590,
+ "scoreNormal": 1000160,
+ "scoreHard": 1001050,
+ "scoreMania": 1000630,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1523,
+ "id": "dokkan",
+ "songFileName": "song_dokkan",
+ "order": 1515,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10450,
+ "shinutiNormal": 7930,
+ "shinutiHard": 4690,
+ "shinutiMania": 3020,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10450,
+ "shinutiNormalDuet": 7930,
+ "shinutiHardDuet": 4690,
+ "shinutiManiaDuet": 3020,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000550,
+ "scoreNormal": 1000940,
+ "scoreHard": 1002040,
+ "scoreMania": 1002570,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1524,
+ "id": "lupin3",
+ "songFileName": "song_lupin3",
+ "order": 2148,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 10130,
+ "shinutiNormal": 7860,
+ "shinutiHard": 4060,
+ "shinutiMania": 2070,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10130,
+ "shinutiNormalDuet": 7860,
+ "shinutiHardDuet": 4060,
+ "shinutiManiaDuet": 2070,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000580,
+ "scoreNormal": 1000740,
+ "scoreHard": 1000890,
+ "scoreMania": 1001880,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1525,
+ "id": "neraiu",
+ "songFileName": "song_neraiu",
+ "order": 2339,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5970,
+ "shinutiNormal": 4740,
+ "shinutiHard": 2610,
+ "shinutiMania": 1610,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5970,
+ "shinutiNormalDuet": 4740,
+ "shinutiHardDuet": 2610,
+ "shinutiManiaDuet": 1610,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001120,
+ "scoreNormal": 1001490,
+ "scoreHard": 1003790,
+ "scoreMania": 1000060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1526,
+ "id": "ookami",
+ "songFileName": "song_ookami",
+ "order": 2384,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10290,
+ "shinutiNormal": 5310,
+ "shinutiHard": 3620,
+ "shinutiMania": 2920,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10290,
+ "shinutiNormalDuet": 5310,
+ "shinutiHardDuet": 3620,
+ "shinutiManiaDuet": 2920,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000610,
+ "scoreNormal": 1001290,
+ "scoreHard": 1000930,
+ "scoreMania": 1001390,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1527,
+ "id": "seibu",
+ "songFileName": "song_seibu",
+ "order": 2591,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9220,
+ "shinutiNormal": 6500,
+ "shinutiHard": 4750,
+ "shinutiMania": 3100,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9220,
+ "shinutiNormalDuet": 6500,
+ "shinutiHardDuet": 4750,
+ "shinutiManiaDuet": 3100,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000730,
+ "scoreNormal": 1000190,
+ "scoreHard": 1001460,
+ "scoreMania": 1001770,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1528,
+ "id": "ageage",
+ "songFileName": "song_ageage",
+ "order": 1146,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6240,
+ "shinutiNormal": 4750,
+ "shinutiHard": 2390,
+ "shinutiMania": 1730,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6240,
+ "shinutiNormalDuet": 4750,
+ "shinutiHardDuet": 2390,
+ "shinutiManiaDuet": 1730,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001020,
+ "scoreNormal": 1001070,
+ "scoreHard": 1002330,
+ "scoreMania": 1005130,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1529,
+ "id": "anan",
+ "songFileName": "song_anan",
+ "order": 1188,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5820,
+ "shinutiNormal": 4840,
+ "shinutiHard": 2300,
+ "shinutiMania": 1390,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5820,
+ "shinutiNormalDuet": 4840,
+ "shinutiHardDuet": 2300,
+ "shinutiManiaDuet": 1390,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000820,
+ "scoreNormal": 1000260,
+ "scoreHard": 1001400,
+ "scoreMania": 1000070,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1530,
+ "id": "arare",
+ "songFileName": "song_arare",
+ "order": 1210,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11480,
+ "shinutiNormal": 7340,
+ "shinutiHard": 4020,
+ "shinutiMania": 2980,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11480,
+ "shinutiNormalDuet": 7340,
+ "shinutiHardDuet": 4020,
+ "shinutiManiaDuet": 2980,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000590,
+ "scoreNormal": 1001200,
+ "scoreHard": 1000980,
+ "scoreMania": 1001280,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1531,
+ "id": "bouken",
+ "songFileName": "song_bouken",
+ "order": 1272,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 11290,
+ "shinutiNormal": 7810,
+ "shinutiHard": 2900,
+ "shinutiMania": 2260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11290,
+ "shinutiNormalDuet": 7810,
+ "shinutiHardDuet": 2900,
+ "shinutiManiaDuet": 2260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000520,
+ "scoreNormal": 1000700,
+ "scoreHard": 1000500,
+ "scoreMania": 1003190,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1532,
+ "id": "cancan",
+ "songFileName": "song_cancan",
+ "order": 1308,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10490,
+ "shinutiNormal": 6770,
+ "shinutiHard": 3930,
+ "shinutiMania": 2890,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10490,
+ "shinutiNormalDuet": 6770,
+ "shinutiHardDuet": 3930,
+ "shinutiManiaDuet": 2890,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000810,
+ "scoreNormal": 1001030,
+ "scoreHard": 1002010,
+ "scoreMania": 1001240,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1533,
+ "id": "cbebop",
+ "songFileName": "song_cbebop",
+ "order": 1320,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 9,
+ "shinutiEasy": 12830,
+ "shinutiNormal": 11440,
+ "shinutiHard": 3130,
+ "shinutiMania": 1950,
+ "shinutiUra": 1850,
+ "shinutiEasyDuet": 12830,
+ "shinutiNormalDuet": 11440,
+ "shinutiHardDuet": 3130,
+ "shinutiManiaDuet": 1950,
+ "shinutiUraDuet": 1850,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1000220,
+ "scoreHard": 1000200,
+ "scoreMania": 1003920,
+ "scoreUra": 1000560
+ },
+ {
+ "uniqueId": 1535,
+ "id": "chaosr",
+ "songFileName": "song_chaosr",
+ "order": 1328,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7660,
+ "shinutiNormal": 5540,
+ "shinutiHard": 2970,
+ "shinutiMania": 2130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7660,
+ "shinutiNormalDuet": 5540,
+ "shinutiHardDuet": 2970,
+ "shinutiManiaDuet": 2130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1001610,
+ "scoreHard": 1001540,
+ "scoreMania": 1004520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1537,
+ "id": "choo2",
+ "songFileName": "song_choo2",
+ "order": 1337,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 13730,
+ "shinutiNormal": 10510,
+ "shinutiHard": 4950,
+ "shinutiMania": 3380,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13730,
+ "shinutiNormalDuet": 10510,
+ "shinutiHardDuet": 4950,
+ "shinutiManiaDuet": 3380,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1000550,
+ "scoreHard": 1000600,
+ "scoreMania": 1000840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1538,
+ "id": "clstpk",
+ "songFileName": "song_clstpk",
+ "order": 1401,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10860,
+ "shinutiNormal": 7390,
+ "shinutiHard": 2930,
+ "shinutiMania": 2600,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10860,
+ "shinutiNormalDuet": 7390,
+ "shinutiHardDuet": 2930,
+ "shinutiManiaDuet": 2600,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000720,
+ "scoreNormal": 1000370,
+ "scoreHard": 1002060,
+ "scoreMania": 1001000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1539,
+ "id": "das109",
+ "songFileName": "song_das109",
+ "order": 1447,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9640,
+ "shinutiNormal": 5800,
+ "shinutiHard": 4160,
+ "shinutiMania": 3390,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9640,
+ "shinutiNormalDuet": 5800,
+ "shinutiHardDuet": 4160,
+ "shinutiManiaDuet": 3390,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000060,
+ "scoreNormal": 1000600,
+ "scoreHard": 1001440,
+ "scoreMania": 1000730,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1540,
+ "id": "dasbel",
+ "songFileName": "song_dasbel",
+ "order": 1448,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9640,
+ "shinutiNormal": 6710,
+ "shinutiHard": 4080,
+ "shinutiMania": 3180,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9640,
+ "shinutiNormalDuet": 6710,
+ "shinutiHardDuet": 4080,
+ "shinutiManiaDuet": 3180,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000470,
+ "scoreNormal": 1001060,
+ "scoreHard": 1002400,
+ "scoreMania": 1002450,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1541,
+ "id": "dasbou",
+ "songFileName": "song_dasbou",
+ "order": 1449,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6610,
+ "shinutiNormal": 4870,
+ "shinutiHard": 2610,
+ "shinutiMania": 1430,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6610,
+ "shinutiNormalDuet": 4870,
+ "shinutiHardDuet": 2610,
+ "shinutiManiaDuet": 1430,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000770,
+ "scoreNormal": 1000330,
+ "scoreHard": 1000940,
+ "scoreMania": 1002050,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1542,
+ "id": "dasdes",
+ "songFileName": "song_dasdes",
+ "order": 1450,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8490,
+ "shinutiNormal": 6650,
+ "shinutiHard": 3040,
+ "shinutiMania": 2220,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8490,
+ "shinutiNormalDuet": 6650,
+ "shinutiHardDuet": 3040,
+ "shinutiManiaDuet": 2220,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000490,
+ "scoreNormal": 1000850,
+ "scoreHard": 1002330,
+ "scoreMania": 1001310,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1543,
+ "id": "dashon",
+ "songFileName": "song_dashon",
+ "order": 1451,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7400,
+ "shinutiNormal": 4890,
+ "shinutiHard": 2890,
+ "shinutiMania": 1900,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7400,
+ "shinutiNormalDuet": 4890,
+ "shinutiHardDuet": 2890,
+ "shinutiManiaDuet": 1900,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1000270,
+ "scoreHard": 1000340,
+ "scoreMania": 1002920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1544,
+ "id": "donten",
+ "songFileName": "song_donten",
+ "order": 1518,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10820,
+ "shinutiNormal": 6670,
+ "shinutiHard": 4070,
+ "shinutiMania": 2680,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10820,
+ "shinutiNormalDuet": 6670,
+ "shinutiHardDuet": 4070,
+ "shinutiManiaDuet": 2680,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000650,
+ "scoreNormal": 1000090,
+ "scoreHard": 1000220,
+ "scoreMania": 1000500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1546,
+ "id": "ds2bs1",
+ "songFileName": "song_ds2bs1",
+ "order": 1546,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8870,
+ "shinutiNormal": 7460,
+ "shinutiHard": 3420,
+ "shinutiMania": 1820,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8870,
+ "shinutiNormalDuet": 7460,
+ "shinutiHardDuet": 3420,
+ "shinutiManiaDuet": 1820,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1000240,
+ "scoreHard": 1002700,
+ "scoreMania": 1002620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1547,
+ "id": "furisd",
+ "songFileName": "song_furisd",
+ "order": 1633,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9440,
+ "shinutiNormal": 5460,
+ "shinutiHard": 2940,
+ "shinutiMania": 1910,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9440,
+ "shinutiNormalDuet": 5460,
+ "shinutiHardDuet": 2940,
+ "shinutiManiaDuet": 1910,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000780,
+ "scoreNormal": 1001260,
+ "scoreHard": 1002280,
+ "scoreMania": 1000380,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1549,
+ "id": "haruka",
+ "songFileName": "song_haruka",
+ "order": 1741,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 10480,
+ "shinutiNormal": 7100,
+ "shinutiHard": 4440,
+ "shinutiMania": 3240,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10480,
+ "shinutiNormalDuet": 7100,
+ "shinutiHardDuet": 4440,
+ "shinutiManiaDuet": 3240,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000570,
+ "scoreNormal": 1000390,
+ "scoreHard": 1000160,
+ "scoreMania": 1001870,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1550,
+ "id": "hoku",
+ "songFileName": "song_hoku",
+ "order": 1768,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 3,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9670,
+ "shinutiNormal": 5590,
+ "shinutiHard": 5290,
+ "shinutiMania": 2800,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9670,
+ "shinutiNormalDuet": 5590,
+ "shinutiHardDuet": 5290,
+ "shinutiManiaDuet": 2800,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000460,
+ "scoreNormal": 1000560,
+ "scoreHard": 1001790,
+ "scoreMania": 1002400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1551,
+ "id": "hoshi",
+ "songFileName": "song_hoshi",
+ "order": 1782,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 15800,
+ "shinutiNormal": 10610,
+ "shinutiHard": 5570,
+ "shinutiMania": 3320,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15800,
+ "shinutiNormalDuet": 10610,
+ "shinutiHardDuet": 5570,
+ "shinutiManiaDuet": 3320,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000270,
+ "scoreNormal": 1000780,
+ "scoreHard": 1001410,
+ "scoreMania": 1001260,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1552,
+ "id": "hotlim",
+ "songFileName": "song_hotlim",
+ "order": 1785,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12010,
+ "shinutiNormal": 7970,
+ "shinutiHard": 4610,
+ "shinutiMania": 2950,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12010,
+ "shinutiNormalDuet": 7970,
+ "shinutiHardDuet": 4610,
+ "shinutiManiaDuet": 2950,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000470,
+ "scoreNormal": 1000380,
+ "scoreHard": 1001330,
+ "scoreMania": 1002870,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1553,
+ "id": "i2ki2k",
+ "songFileName": "song_i2ki2k",
+ "order": 1797,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 10570,
+ "shinutiNormal": 7940,
+ "shinutiHard": 5370,
+ "shinutiMania": 3740,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10570,
+ "shinutiNormalDuet": 7940,
+ "shinutiHardDuet": 5370,
+ "shinutiManiaDuet": 3740,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000610,
+ "scoreNormal": 1001240,
+ "scoreHard": 1001140,
+ "scoreMania": 1002580,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1554,
+ "id": "juken",
+ "songFileName": "song_juken",
+ "order": 1976,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12150,
+ "shinutiNormal": 8020,
+ "shinutiHard": 3870,
+ "shinutiMania": 2290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12150,
+ "shinutiNormalDuet": 8020,
+ "shinutiHardDuet": 3870,
+ "shinutiManiaDuet": 2290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000550,
+ "scoreNormal": 1000080,
+ "scoreHard": 1002330,
+ "scoreMania": 1003870,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1555,
+ "id": "kan",
+ "songFileName": "song_kan",
+ "order": 1998,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7180,
+ "shinutiNormal": 4930,
+ "shinutiHard": 3310,
+ "shinutiMania": 2550,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7180,
+ "shinutiNormalDuet": 4930,
+ "shinutiHardDuet": 3310,
+ "shinutiManiaDuet": 2550,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000840,
+ "scoreNormal": 1000040,
+ "scoreHard": 1002800,
+ "scoreMania": 1002400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1556,
+ "id": "karma",
+ "songFileName": "song_karma",
+ "order": 2002,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7030,
+ "shinutiNormal": 4690,
+ "shinutiHard": 2200,
+ "shinutiMania": 1430,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7030,
+ "shinutiNormalDuet": 4690,
+ "shinutiHardDuet": 2200,
+ "shinutiManiaDuet": 1430,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000270,
+ "scoreNormal": 1001660,
+ "scoreHard": 1002410,
+ "scoreMania": 1004280,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1558,
+ "id": "kin29m",
+ "songFileName": "song_kin29m",
+ "order": 2036,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 14170,
+ "shinutiNormal": 7550,
+ "shinutiHard": 4000,
+ "shinutiMania": 3260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14170,
+ "shinutiNormalDuet": 7550,
+ "shinutiHardDuet": 4000,
+ "shinutiManiaDuet": 3260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1001170,
+ "scoreHard": 1000520,
+ "scoreMania": 1000450,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1559,
+ "id": "kkkill",
+ "songFileName": "song_kkkill",
+ "order": 2052,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6980,
+ "shinutiNormal": 4730,
+ "shinutiHard": 3170,
+ "shinutiMania": 1880,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6980,
+ "shinutiNormalDuet": 4730,
+ "shinutiHardDuet": 3170,
+ "shinutiManiaDuet": 1880,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000460,
+ "scoreNormal": 1000770,
+ "scoreHard": 1001800,
+ "scoreMania": 1004440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1560,
+ "id": "lam",
+ "songFileName": "song_lam",
+ "order": 2104,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 8050,
+ "shinutiNormal": 5200,
+ "shinutiHard": 3650,
+ "shinutiMania": 2470,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8050,
+ "shinutiNormalDuet": 5200,
+ "shinutiHardDuet": 3650,
+ "shinutiManiaDuet": 2470,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000020,
+ "scoreNormal": 1000000,
+ "scoreHard": 1002390,
+ "scoreMania": 1000350,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1562,
+ "id": "love2k",
+ "songFileName": "song_love2k",
+ "order": 2129,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 7180,
+ "shinutiNormal": 4870,
+ "shinutiHard": 2810,
+ "shinutiMania": 2000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7180,
+ "shinutiNormalDuet": 4870,
+ "shinutiHardDuet": 2810,
+ "shinutiManiaDuet": 2000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001050,
+ "scoreNormal": 1001870,
+ "scoreHard": 1001110,
+ "scoreMania": 1003280,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1563,
+ "id": "lovest",
+ "songFileName": "song_lovest",
+ "order": 2135,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 13130,
+ "shinutiNormal": 9400,
+ "shinutiHard": 5240,
+ "shinutiMania": 2920,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13130,
+ "shinutiNormalDuet": 9400,
+ "shinutiHardDuet": 5240,
+ "shinutiManiaDuet": 2920,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000680,
+ "scoreNormal": 1000200,
+ "scoreHard": 1001600,
+ "scoreMania": 1001560,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1564,
+ "id": "lovezu",
+ "songFileName": "song_lovezu",
+ "order": 2136,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7110,
+ "shinutiNormal": 6550,
+ "shinutiHard": 2790,
+ "shinutiMania": 1610,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7110,
+ "shinutiNormalDuet": 6550,
+ "shinutiHardDuet": 2790,
+ "shinutiManiaDuet": 1610,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1001370,
+ "scoreHard": 1003420,
+ "scoreMania": 1003680,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1565,
+ "id": "maji",
+ "songFileName": "song_maji",
+ "order": 2167,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 12920,
+ "shinutiNormal": 6670,
+ "shinutiHard": 4460,
+ "shinutiMania": 2790,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12920,
+ "shinutiNormalDuet": 6670,
+ "shinutiHardDuet": 4460,
+ "shinutiManiaDuet": 2790,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1000820,
+ "scoreHard": 1000010,
+ "scoreMania": 1001610,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1566,
+ "id": "mcds",
+ "songFileName": "song_mcds",
+ "order": 2188,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 24360,
+ "shinutiNormal": 17840,
+ "shinutiHard": 11100,
+ "shinutiMania": 7800,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 24360,
+ "shinutiNormalDuet": 17840,
+ "shinutiHardDuet": 11100,
+ "shinutiManiaDuet": 7800,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1000440,
+ "scoreHard": 1000460,
+ "scoreMania": 1000200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1567,
+ "id": "monhun",
+ "songFileName": "song_monhun",
+ "order": 2290,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6140,
+ "shinutiNormal": 4270,
+ "shinutiHard": 2800,
+ "shinutiMania": 1490,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6140,
+ "shinutiNormalDuet": 4270,
+ "shinutiHardDuet": 2800,
+ "shinutiManiaDuet": 1490,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000190,
+ "scoreNormal": 1002070,
+ "scoreHard": 1003130,
+ "scoreMania": 1002860,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1568,
+ "id": "morai",
+ "songFileName": "song_morai",
+ "order": 2294,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9670,
+ "shinutiNormal": 7490,
+ "shinutiHard": 4130,
+ "shinutiMania": 2980,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9670,
+ "shinutiNormalDuet": 7490,
+ "shinutiHardDuet": 4130,
+ "shinutiManiaDuet": 2980,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000130,
+ "scoreNormal": 1000070,
+ "scoreHard": 1001340,
+ "scoreMania": 1002170,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1569,
+ "id": "remio",
+ "songFileName": "song_remio",
+ "order": 2512,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9980,
+ "shinutiNormal": 5550,
+ "shinutiHard": 2960,
+ "shinutiMania": 2230,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9980,
+ "shinutiNormalDuet": 5550,
+ "shinutiHardDuet": 2960,
+ "shinutiManiaDuet": 2230,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000880,
+ "scoreNormal": 1001410,
+ "scoreHard": 1003030,
+ "scoreMania": 1003600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1570,
+ "id": "rip_bikini",
+ "songFileName": "song_rip_bikini",
+ "order": 2378,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 5420,
+ "shinutiNormal": 4140,
+ "shinutiHard": 2660,
+ "shinutiMania": 2170,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5420,
+ "shinutiNormalDuet": 4140,
+ "shinutiHardDuet": 2660,
+ "shinutiManiaDuet": 2170,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001110,
+ "scoreNormal": 1000070,
+ "scoreHard": 1001520,
+ "scoreMania": 1004570,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1571,
+ "id": "rip_funk",
+ "songFileName": "song_rip_funk",
+ "order": 2379,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9980,
+ "shinutiNormal": 6280,
+ "shinutiHard": 2990,
+ "shinutiMania": 2280,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9980,
+ "shinutiNormalDuet": 6280,
+ "shinutiHardDuet": 2990,
+ "shinutiManiaDuet": 2280,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1001010,
+ "scoreHard": 1001760,
+ "scoreMania": 1003450,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1572,
+ "id": "rip_joint",
+ "songFileName": "song_rip_joint",
+ "order": 2380,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 6160,
+ "shinutiNormal": 5370,
+ "shinutiHard": 3440,
+ "shinutiMania": 2230,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6160,
+ "shinutiNormalDuet": 5370,
+ "shinutiHardDuet": 3440,
+ "shinutiManiaDuet": 2230,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001310,
+ "scoreNormal": 1001540,
+ "scoreHard": 1001710,
+ "scoreMania": 1002450,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1573,
+ "id": "rip_rakuen",
+ "songFileName": "song_rip_rakuen",
+ "order": 2381,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7850,
+ "shinutiNormal": 6380,
+ "shinutiHard": 3770,
+ "shinutiMania": 2670,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7850,
+ "shinutiNormalDuet": 6380,
+ "shinutiHardDuet": 3770,
+ "shinutiManiaDuet": 2670,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001240,
+ "scoreNormal": 1000540,
+ "scoreHard": 1000080,
+ "scoreMania": 1000080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1574,
+ "id": "rip_speedk",
+ "songFileName": "song_rip_speedk",
+ "order": 2382,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 3650,
+ "shinutiNormal": 3650,
+ "shinutiHard": 3650,
+ "shinutiMania": 3650,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3650,
+ "shinutiNormalDuet": 3650,
+ "shinutiHardDuet": 3650,
+ "shinutiManiaDuet": 3650,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001280,
+ "scoreNormal": 1001280,
+ "scoreHard": 1001280,
+ "scoreMania": 1001280,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1575,
+ "id": "rwrite",
+ "songFileName": "song_rwrite",
+ "order": 2568,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 3,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 7110,
+ "shinutiNormal": 5480,
+ "shinutiHard": 3610,
+ "shinutiMania": 2760,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7110,
+ "shinutiNormalDuet": 5480,
+ "shinutiHardDuet": 3610,
+ "shinutiManiaDuet": 2760,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1000480,
+ "scoreHard": 1000890,
+ "scoreMania": 1001420,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1576,
+ "id": "senor",
+ "songFileName": "song_senor",
+ "order": 2596,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10930,
+ "shinutiNormal": 9250,
+ "shinutiHard": 4700,
+ "shinutiMania": 2680,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10930,
+ "shinutiNormalDuet": 9250,
+ "shinutiHardDuet": 4700,
+ "shinutiManiaDuet": 2680,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000540,
+ "scoreNormal": 1000190,
+ "scoreHard": 1000270,
+ "scoreMania": 1000980,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1577,
+ "id": "sinken",
+ "songFileName": "song_sinken",
+ "order": 2629,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 11860,
+ "shinutiNormal": 8890,
+ "shinutiHard": 3970,
+ "shinutiMania": 2780,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11860,
+ "shinutiNormalDuet": 8890,
+ "shinutiHardDuet": 3970,
+ "shinutiManiaDuet": 2780,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000530,
+ "scoreNormal": 1000440,
+ "scoreHard": 1002090,
+ "scoreMania": 1002350,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1578,
+ "id": "sonic4",
+ "songFileName": "song_sonic4",
+ "order": 2662,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5430,
+ "shinutiNormal": 3310,
+ "shinutiHard": 2450,
+ "shinutiMania": 1650,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5430,
+ "shinutiNormalDuet": 3310,
+ "shinutiHardDuet": 2450,
+ "shinutiManiaDuet": 1650,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1000440,
+ "scoreHard": 1000440,
+ "scoreMania": 1003800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1579,
+ "id": "splnkr",
+ "songFileName": "song_splnkr",
+ "order": 2680,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5380,
+ "shinutiNormal": 4400,
+ "shinutiHard": 2150,
+ "shinutiMania": 1460,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5380,
+ "shinutiNormalDuet": 4400,
+ "shinutiHardDuet": 2150,
+ "shinutiManiaDuet": 1460,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000890,
+ "scoreNormal": 1000200,
+ "scoreHard": 1001850,
+ "scoreMania": 1002140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1580,
+ "id": "swtlay",
+ "songFileName": "song_swtlay",
+ "order": 2718,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7290,
+ "shinutiNormal": 5470,
+ "shinutiHard": 2670,
+ "shinutiMania": 1680,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7290,
+ "shinutiNormalDuet": 5470,
+ "shinutiHardDuet": 2670,
+ "shinutiManiaDuet": 1680,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000790,
+ "scoreNormal": 1000510,
+ "scoreHard": 1003380,
+ "scoreMania": 1004640,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1581,
+ "id": "tmr",
+ "songFileName": "song_tmr",
+ "order": 2805,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10070,
+ "shinutiNormal": 6690,
+ "shinutiHard": 4210,
+ "shinutiMania": 3400,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10070,
+ "shinutiNormalDuet": 6690,
+ "shinutiHardDuet": 4210,
+ "shinutiManiaDuet": 3400,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000510,
+ "scoreNormal": 1001000,
+ "scoreHard": 1000110,
+ "scoreMania": 1001860,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1582,
+ "id": "ult7",
+ "songFileName": "song_ult7",
+ "order": 2870,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10130,
+ "shinutiNormal": 7390,
+ "shinutiHard": 4920,
+ "shinutiMania": 2870,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10130,
+ "shinutiNormalDuet": 7390,
+ "shinutiHardDuet": 4920,
+ "shinutiManiaDuet": 2870,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000860,
+ "scoreNormal": 1000510,
+ "scoreHard": 1001920,
+ "scoreMania": 1003180,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1583,
+ "id": "ultace",
+ "songFileName": "song_ultace",
+ "order": 2871,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11750,
+ "shinutiNormal": 10140,
+ "shinutiHard": 3900,
+ "shinutiMania": 3140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11750,
+ "shinutiNormalDuet": 10140,
+ "shinutiHardDuet": 3900,
+ "shinutiManiaDuet": 3140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000180,
+ "scoreNormal": 1000750,
+ "scoreHard": 1001770,
+ "scoreMania": 1001050,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1584,
+ "id": "ultman",
+ "songFileName": "song_ultman",
+ "order": 2874,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10660,
+ "shinutiNormal": 7050,
+ "shinutiHard": 4290,
+ "shinutiMania": 3150,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10660,
+ "shinutiNormalDuet": 7050,
+ "shinutiHardDuet": 4290,
+ "shinutiManiaDuet": 3150,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000860,
+ "scoreNormal": 1000360,
+ "scoreHard": 1000320,
+ "scoreMania": 1002490,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1585,
+ "id": "ultnew",
+ "songFileName": "song_ultnew",
+ "order": 2875,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 10870,
+ "shinutiNormal": 7840,
+ "shinutiHard": 4130,
+ "shinutiMania": 3330,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10870,
+ "shinutiNormalDuet": 7840,
+ "shinutiHardDuet": 4130,
+ "shinutiManiaDuet": 3330,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000410,
+ "scoreNormal": 1001100,
+ "scoreHard": 1000820,
+ "scoreMania": 1000960,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1586,
+ "id": "ulttar",
+ "songFileName": "song_ulttar",
+ "order": 2877,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 14390,
+ "shinutiNormal": 13200,
+ "shinutiHard": 5230,
+ "shinutiMania": 2740,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14390,
+ "shinutiNormalDuet": 13200,
+ "shinutiHardDuet": 5230,
+ "shinutiManiaDuet": 2740,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000280,
+ "scoreNormal": 1000260,
+ "scoreHard": 1000680,
+ "scoreMania": 1000700,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1587,
+ "id": "ultz1",
+ "songFileName": "song_ultz1",
+ "order": 2879,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 19930,
+ "shinutiNormal": 15320,
+ "shinutiHard": 8430,
+ "shinutiMania": 5760,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 19930,
+ "shinutiNormalDuet": 15320,
+ "shinutiHardDuet": 8430,
+ "shinutiManiaDuet": 5760,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000270,
+ "scoreNormal": 1000370,
+ "scoreHard": 1000930,
+ "scoreMania": 1000140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1588,
+ "id": "ultz2",
+ "songFileName": "song_ultz2",
+ "order": 2880,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 22140,
+ "shinutiNormal": 14860,
+ "shinutiHard": 10350,
+ "shinutiMania": 6750,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 22140,
+ "shinutiNormalDuet": 14860,
+ "shinutiHardDuet": 10350,
+ "shinutiManiaDuet": 6750,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1000400,
+ "scoreHard": 1000070,
+ "scoreMania": 1000930,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1589,
+ "id": "yama",
+ "songFileName": "song_yama",
+ "order": 2969,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 15040,
+ "shinutiNormal": 9080,
+ "shinutiHard": 5830,
+ "shinutiMania": 3710,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15040,
+ "shinutiNormalDuet": 9080,
+ "shinutiHardDuet": 5830,
+ "shinutiManiaDuet": 3710,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1000380,
+ "scoreHard": 1001540,
+ "scoreMania": 1002210,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1590,
+ "id": "bkov2",
+ "songFileName": "song_bkov2",
+ "order": 1255,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 8,
+ "shinutiEasy": 5370,
+ "shinutiNormal": 4060,
+ "shinutiHard": 2450,
+ "shinutiMania": 1960,
+ "shinutiUra": 2220,
+ "shinutiEasyDuet": 5370,
+ "shinutiNormalDuet": 4060,
+ "shinutiHardDuet": 2450,
+ "shinutiManiaDuet": 1960,
+ "shinutiUraDuet": 2220,
+ "scoreEasy": 1001030,
+ "scoreNormal": 1001440,
+ "scoreHard": 1001040,
+ "scoreMania": 1004170,
+ "scoreUra": 1000990
+ },
+ {
+ "uniqueId": 1591,
+ "id": "dbmaxi",
+ "songFileName": "song_dbmaxi",
+ "order": 1457,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11180,
+ "shinutiNormal": 6410,
+ "shinutiHard": 4420,
+ "shinutiMania": 3000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11180,
+ "shinutiNormalDuet": 6410,
+ "shinutiHardDuet": 4420,
+ "shinutiManiaDuet": 3000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000450,
+ "scoreNormal": 1001470,
+ "scoreHard": 1002060,
+ "scoreMania": 1003170,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1592,
+ "id": "dmp31k",
+ "songFileName": "song_dmp31k",
+ "order": 1496,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5560,
+ "shinutiNormal": 4110,
+ "shinutiHard": 2760,
+ "shinutiMania": 1900,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5560,
+ "shinutiNormalDuet": 4110,
+ "shinutiHardDuet": 2760,
+ "shinutiManiaDuet": 1900,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001300,
+ "scoreNormal": 1000830,
+ "scoreHard": 1000870,
+ "scoreMania": 1000980,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1593,
+ "id": "gekit4",
+ "songFileName": "song_gekit4",
+ "order": 1663,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 18510,
+ "shinutiNormal": 14270,
+ "shinutiHard": 5410,
+ "shinutiMania": 3650,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18510,
+ "shinutiNormalDuet": 14270,
+ "shinutiHardDuet": 5410,
+ "shinutiManiaDuet": 3650,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000260,
+ "scoreNormal": 1000410,
+ "scoreHard": 1000850,
+ "scoreMania": 1000100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1594,
+ "id": "heavy2",
+ "songFileName": "song_heavy2",
+ "order": 1749,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7860,
+ "shinutiNormal": 5510,
+ "shinutiHard": 2860,
+ "shinutiMania": 1820,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7860,
+ "shinutiNormalDuet": 5510,
+ "shinutiHardDuet": 2860,
+ "shinutiManiaDuet": 1820,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001250,
+ "scoreNormal": 1001060,
+ "scoreHard": 1000820,
+ "scoreMania": 1002520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1595,
+ "id": "heroac",
+ "songFileName": "song_heroac",
+ "order": 1753,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9220,
+ "shinutiNormal": 5880,
+ "shinutiHard": 3380,
+ "shinutiMania": 2050,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9220,
+ "shinutiNormalDuet": 5880,
+ "shinutiHardDuet": 3380,
+ "shinutiManiaDuet": 2050,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000460,
+ "scoreNormal": 1000510,
+ "scoreHard": 1002550,
+ "scoreMania": 1002400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1596,
+ "id": "rr22",
+ "songFileName": "song_rr22",
+ "order": 2555,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 3990,
+ "shinutiNormal": 2500,
+ "shinutiHard": 1740,
+ "shinutiMania": 1300,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 3990,
+ "shinutiNormalDuet": 2500,
+ "shinutiHardDuet": 1740,
+ "shinutiManiaDuet": 1300,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1000900,
+ "scoreHard": 1001970,
+ "scoreMania": 1001980,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1597,
+ "id": "sekaif",
+ "songFileName": "song_sekaif",
+ "order": 2594,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 29270,
+ "shinutiNormal": 16850,
+ "shinutiHard": 10570,
+ "shinutiMania": 5950,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 29270,
+ "shinutiNormalDuet": 16850,
+ "shinutiHardDuet": 10570,
+ "shinutiManiaDuet": 5950,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000140,
+ "scoreNormal": 1000570,
+ "scoreHard": 1000630,
+ "scoreMania": 1001110,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1598,
+ "id": "anatab",
+ "songFileName": "song_anatab",
+ "order": 1189,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 8,
+ "shinutiEasy": 8440,
+ "shinutiNormal": 6110,
+ "shinutiHard": 3700,
+ "shinutiMania": 2710,
+ "shinutiUra": 2050,
+ "shinutiEasyDuet": 8440,
+ "shinutiNormalDuet": 6110,
+ "shinutiHardDuet": 3700,
+ "shinutiManiaDuet": 2710,
+ "shinutiUraDuet": 2050,
+ "scoreEasy": 1000270,
+ "scoreNormal": 1001350,
+ "scoreHard": 1001500,
+ "scoreMania": 1001110,
+ "scoreUra": 1002870
+ },
+ {
+ "uniqueId": 1600,
+ "id": "fads",
+ "songFileName": "song_fads",
+ "order": 1590,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7140,
+ "shinutiNormal": 5430,
+ "shinutiHard": 3470,
+ "shinutiMania": 1890,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7140,
+ "shinutiNormalDuet": 5430,
+ "shinutiHardDuet": 3470,
+ "shinutiManiaDuet": 1890,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000630,
+ "scoreNormal": 1000500,
+ "scoreHard": 1001110,
+ "scoreMania": 1000510,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1601,
+ "id": "lovem",
+ "songFileName": "song_lovem",
+ "order": 2132,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 7340,
+ "shinutiNormal": 5550,
+ "shinutiHard": 3700,
+ "shinutiMania": 3320,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7340,
+ "shinutiNormalDuet": 5550,
+ "shinutiHardDuet": 3700,
+ "shinutiManiaDuet": 3320,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1001500,
+ "scoreHard": 1002390,
+ "scoreMania": 1002640,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1602,
+ "id": "monky",
+ "songFileName": "song_monky",
+ "order": 2291,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10500,
+ "shinutiNormal": 7370,
+ "shinutiHard": 4600,
+ "shinutiMania": 2660,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10500,
+ "shinutiNormalDuet": 7370,
+ "shinutiHardDuet": 4600,
+ "shinutiManiaDuet": 2660,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1000240,
+ "scoreHard": 1001350,
+ "scoreMania": 1002850,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1603,
+ "id": "negima",
+ "songFileName": "song_negima",
+ "order": 2332,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6200,
+ "shinutiNormal": 4420,
+ "shinutiHard": 2980,
+ "shinutiMania": 1840,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6200,
+ "shinutiNormalDuet": 4420,
+ "shinutiHardDuet": 2980,
+ "shinutiManiaDuet": 1840,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001120,
+ "scoreNormal": 1002070,
+ "scoreHard": 1002880,
+ "scoreMania": 1000960,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1604,
+ "id": "osama",
+ "songFileName": "song_osama",
+ "order": 2395,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 6650,
+ "shinutiNormal": 4940,
+ "shinutiHard": 3750,
+ "shinutiMania": 2800,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6650,
+ "shinutiNormalDuet": 4940,
+ "shinutiHardDuet": 3750,
+ "shinutiManiaDuet": 2800,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000840,
+ "scoreNormal": 1001560,
+ "scoreHard": 1001500,
+ "scoreMania": 1003090,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1605,
+ "id": "ping",
+ "songFileName": "song_ping",
+ "order": 2424,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6040,
+ "shinutiNormal": 3860,
+ "shinutiHard": 2170,
+ "shinutiMania": 1620,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6040,
+ "shinutiNormalDuet": 3860,
+ "shinutiHardDuet": 2170,
+ "shinutiManiaDuet": 1620,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000090,
+ "scoreNormal": 1001880,
+ "scoreHard": 1000370,
+ "scoreMania": 1006020,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1606,
+ "id": "samba",
+ "songFileName": "song_samba",
+ "order": 2579,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8080,
+ "shinutiNormal": 5440,
+ "shinutiHard": 3530,
+ "shinutiMania": 2580,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8080,
+ "shinutiNormalDuet": 5440,
+ "shinutiHardDuet": 3530,
+ "shinutiManiaDuet": 2580,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001050,
+ "scoreNormal": 1000730,
+ "scoreHard": 1000880,
+ "scoreMania": 1000860,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1607,
+ "id": "taiyo",
+ "songFileName": "song_taiyo",
+ "order": 2733,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9070,
+ "shinutiNormal": 7720,
+ "shinutiHard": 4900,
+ "shinutiMania": 2310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9070,
+ "shinutiNormalDuet": 7720,
+ "shinutiHardDuet": 4900,
+ "shinutiManiaDuet": 2310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000180,
+ "scoreNormal": 1000460,
+ "scoreHard": 1000890,
+ "scoreMania": 1000520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1608,
+ "id": "truth2",
+ "songFileName": "song_truth2",
+ "order": 2843,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6360,
+ "shinutiNormal": 4340,
+ "shinutiHard": 2710,
+ "shinutiMania": 2060,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6360,
+ "shinutiNormalDuet": 4340,
+ "shinutiHardDuet": 2710,
+ "shinutiManiaDuet": 2060,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001410,
+ "scoreNormal": 1001390,
+ "scoreHard": 1002430,
+ "scoreMania": 1003320,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1609,
+ "id": "w2bs1x",
+ "songFileName": "song_w2bs1x",
+ "order": 2921,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7900,
+ "shinutiNormal": 5710,
+ "shinutiHard": 2610,
+ "shinutiMania": 1930,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7900,
+ "shinutiNormalDuet": 5710,
+ "shinutiHardDuet": 2610,
+ "shinutiManiaDuet": 1930,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000650,
+ "scoreNormal": 1001710,
+ "scoreHard": 1001500,
+ "scoreMania": 1003800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1610,
+ "id": "ace3ds",
+ "songFileName": "song_ace3ds",
+ "order": 1140,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7280,
+ "shinutiNormal": 5030,
+ "shinutiHard": 3250,
+ "shinutiMania": 1880,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7280,
+ "shinutiNormalDuet": 5030,
+ "shinutiHardDuet": 3250,
+ "shinutiManiaDuet": 1880,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000010,
+ "scoreNormal": 1000920,
+ "scoreHard": 1000450,
+ "scoreMania": 1002970,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1611,
+ "id": "ccb",
+ "songFileName": "song_ccb",
+ "order": 1321,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9850,
+ "shinutiNormal": 5840,
+ "shinutiHard": 3800,
+ "shinutiMania": 3070,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9850,
+ "shinutiNormalDuet": 5840,
+ "shinutiHardDuet": 3800,
+ "shinutiManiaDuet": 3070,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1001490,
+ "scoreHard": 1000900,
+ "scoreMania": 1003110,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1612,
+ "id": "inaoha",
+ "songFileName": "song_inaoha",
+ "order": 1934,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 2,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 13260,
+ "shinutiNormal": 9630,
+ "shinutiHard": 5420,
+ "shinutiMania": 4350,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13260,
+ "shinutiNormalDuet": 9630,
+ "shinutiHardDuet": 5420,
+ "shinutiManiaDuet": 4350,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000260,
+ "scoreNormal": 1000300,
+ "scoreHard": 1000790,
+ "scoreMania": 1000360,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1613,
+ "id": "smagic",
+ "songFileName": "song_smagic",
+ "order": 2645,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 4830,
+ "shinutiNormal": 3820,
+ "shinutiHard": 2260,
+ "shinutiMania": 1530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4830,
+ "shinutiNormalDuet": 3820,
+ "shinutiHardDuet": 2260,
+ "shinutiManiaDuet": 1530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001580,
+ "scoreNormal": 1001480,
+ "scoreHard": 1004360,
+ "scoreMania": 1002520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1614,
+ "id": "55yu0",
+ "songFileName": "song_55yu0",
+ "order": 1056,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8220,
+ "shinutiNormal": 5280,
+ "shinutiHard": 3160,
+ "shinutiMania": 1970,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8220,
+ "shinutiNormalDuet": 5280,
+ "shinutiHardDuet": 3160,
+ "shinutiManiaDuet": 1970,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001130,
+ "scoreNormal": 1000860,
+ "scoreHard": 1000930,
+ "scoreMania": 1000400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1615,
+ "id": "clskkh",
+ "songFileName": "song_clskkh",
+ "order": 1374,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 11990,
+ "shinutiNormal": 7480,
+ "shinutiHard": 4570,
+ "shinutiMania": 2720,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11990,
+ "shinutiNormalDuet": 7480,
+ "shinutiHardDuet": 4570,
+ "shinutiManiaDuet": 2720,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000390,
+ "scoreNormal": 1001210,
+ "scoreHard": 1000550,
+ "scoreMania": 1002870,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1616,
+ "id": "clsvio",
+ "songFileName": "song_clsvio",
+ "order": 1403,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 8460,
+ "shinutiNormal": 5260,
+ "shinutiHard": 3640,
+ "shinutiMania": 3480,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8460,
+ "shinutiNormalDuet": 5260,
+ "shinutiHardDuet": 3640,
+ "shinutiManiaDuet": 3480,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000210,
+ "scoreNormal": 1001750,
+ "scoreHard": 1001000,
+ "scoreMania": 1002240,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1617,
+ "id": "decad2",
+ "songFileName": "song_decad2",
+ "order": 1465,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 15090,
+ "shinutiNormal": 11300,
+ "shinutiHard": 5480,
+ "shinutiMania": 4240,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15090,
+ "shinutiNormalDuet": 11300,
+ "shinutiHardDuet": 5480,
+ "shinutiManiaDuet": 4240,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000040,
+ "scoreNormal": 1000570,
+ "scoreHard": 1001090,
+ "scoreMania": 1001230,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1618,
+ "id": "hpp",
+ "songFileName": "song_hpp",
+ "order": 1788,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6610,
+ "shinutiNormal": 5210,
+ "shinutiHard": 3260,
+ "shinutiMania": 2500,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6610,
+ "shinutiNormalDuet": 5210,
+ "shinutiHardDuet": 3260,
+ "shinutiManiaDuet": 2500,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000290,
+ "scoreNormal": 1001320,
+ "scoreHard": 1001110,
+ "scoreMania": 1003900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1619,
+ "id": "maglit",
+ "songFileName": "song_maglit",
+ "order": 2161,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8660,
+ "shinutiNormal": 5510,
+ "shinutiHard": 2970,
+ "shinutiMania": 1890,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8660,
+ "shinutiNormalDuet": 5510,
+ "shinutiHardDuet": 2970,
+ "shinutiManiaDuet": 1890,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000560,
+ "scoreNormal": 1001520,
+ "scoreHard": 1000640,
+ "scoreMania": 1000200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1620,
+ "id": "mgkiss",
+ "songFileName": "song_mgkiss",
+ "order": 2217,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8650,
+ "shinutiNormal": 5710,
+ "shinutiHard": 3600,
+ "shinutiMania": 2590,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8650,
+ "shinutiNormalDuet": 5710,
+ "shinutiHardDuet": 3600,
+ "shinutiManiaDuet": 2590,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000670,
+ "scoreNormal": 1000690,
+ "scoreHard": 1002130,
+ "scoreMania": 1003520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1621,
+ "id": "nobuts",
+ "songFileName": "song_nobuts",
+ "order": 2354,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8420,
+ "shinutiNormal": 6750,
+ "shinutiHard": 4280,
+ "shinutiMania": 2140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8420,
+ "shinutiNormalDuet": 6750,
+ "shinutiHardDuet": 4280,
+ "shinutiManiaDuet": 2140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000280,
+ "scoreNormal": 1000480,
+ "scoreHard": 1001970,
+ "scoreMania": 1003950,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1622,
+ "id": "oshiri",
+ "songFileName": "song_oshiri",
+ "order": 2396,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 3,
+ "starMania": 3,
+ "starUra": 0,
+ "shinutiEasy": 13060,
+ "shinutiNormal": 10210,
+ "shinutiHard": 3850,
+ "shinutiMania": 2710,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13060,
+ "shinutiNormalDuet": 10210,
+ "shinutiHardDuet": 3850,
+ "shinutiManiaDuet": 2710,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000570,
+ "scoreNormal": 1000210,
+ "scoreHard": 1001000,
+ "scoreMania": 1000880,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1623,
+ "id": "psp3op",
+ "songFileName": "song_psp3op",
+ "order": 2481,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8570,
+ "shinutiNormal": 6020,
+ "shinutiHard": 3360,
+ "shinutiMania": 1940,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8570,
+ "shinutiNormalDuet": 6020,
+ "shinutiHardDuet": 3360,
+ "shinutiManiaDuet": 1940,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001000,
+ "scoreNormal": 1001080,
+ "scoreHard": 1000540,
+ "scoreMania": 1002690,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1624,
+ "id": "skaska",
+ "songFileName": "song_skaska",
+ "order": 2635,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 7720,
+ "shinutiNormal": 5980,
+ "shinutiHard": 3530,
+ "shinutiMania": 2250,
+ "shinutiUra": 1690,
+ "shinutiEasyDuet": 7720,
+ "shinutiNormalDuet": 5980,
+ "shinutiHardDuet": 3530,
+ "shinutiManiaDuet": 2250,
+ "shinutiUraDuet": 1690,
+ "scoreEasy": 1001030,
+ "scoreNormal": 1000510,
+ "scoreHard": 1000840,
+ "scoreMania": 1002460,
+ "scoreUra": 1005460
+ },
+ {
+ "uniqueId": 1625,
+ "id": "sousa",
+ "songFileName": "song_sousa",
+ "order": 2671,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8820,
+ "shinutiNormal": 6540,
+ "shinutiHard": 3350,
+ "shinutiMania": 2110,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8820,
+ "shinutiNormalDuet": 6540,
+ "shinutiHardDuet": 3350,
+ "shinutiManiaDuet": 2110,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000540,
+ "scoreNormal": 1000110,
+ "scoreHard": 1000660,
+ "scoreMania": 1000140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1626,
+ "id": "tomare",
+ "songFileName": "song_tomare",
+ "order": 2815,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9160,
+ "shinutiNormal": 6980,
+ "shinutiHard": 3990,
+ "shinutiMania": 2450,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9160,
+ "shinutiNormalDuet": 6980,
+ "shinutiHardDuet": 3990,
+ "shinutiManiaDuet": 2450,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001020,
+ "scoreNormal": 1000890,
+ "scoreHard": 1000400,
+ "scoreMania": 1003250,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1628,
+ "id": "ayumi",
+ "songFileName": "song_ayumi",
+ "order": 1230,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 3,
+ "starUra": 0,
+ "shinutiEasy": 14280,
+ "shinutiNormal": 9090,
+ "shinutiHard": 6200,
+ "shinutiMania": 4760,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14280,
+ "shinutiNormalDuet": 9090,
+ "shinutiHardDuet": 6200,
+ "shinutiManiaDuet": 4760,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000490,
+ "scoreNormal": 1000990,
+ "scoreHard": 1000050,
+ "scoreMania": 1001100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1629,
+ "id": "beyour",
+ "songFileName": "song_beyour",
+ "order": 1245,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11330,
+ "shinutiNormal": 7920,
+ "shinutiHard": 4280,
+ "shinutiMania": 18190,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11330,
+ "shinutiNormalDuet": 7920,
+ "shinutiHardDuet": 4280,
+ "shinutiManiaDuet": 18190,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000020,
+ "scoreNormal": 1000430,
+ "scoreHard": 1000800,
+ "scoreMania": 1000450,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1630,
+ "id": "decade",
+ "songFileName": "song_decade",
+ "order": 1466,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 19590,
+ "shinutiNormal": 19570,
+ "shinutiHard": 19610,
+ "shinutiMania": 19610,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 19590,
+ "shinutiNormalDuet": 19570,
+ "shinutiHardDuet": 19610,
+ "shinutiManiaDuet": 19610,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000490,
+ "scoreNormal": 1000170,
+ "scoreHard": 1000110,
+ "scoreMania": 1000110,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1631,
+ "id": "dis2",
+ "songFileName": "song_dis2",
+ "order": 1488,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 19580,
+ "shinutiNormal": 7020,
+ "shinutiHard": 19580,
+ "shinutiMania": 19610,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 19580,
+ "shinutiNormalDuet": 7020,
+ "shinutiHardDuet": 19580,
+ "shinutiManiaDuet": 19610,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000480,
+ "scoreNormal": 1000080,
+ "scoreHard": 1000380,
+ "scoreMania": 1000110,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1633,
+ "id": "dq9",
+ "songFileName": "song_dq9",
+ "order": 1532,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 3,
+ "starUra": 0,
+ "shinutiEasy": 13470,
+ "shinutiNormal": 8180,
+ "shinutiHard": 5970,
+ "shinutiMania": 4900,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13470,
+ "shinutiNormalDuet": 8180,
+ "shinutiHardDuet": 5970,
+ "shinutiManiaDuet": 4900,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000440,
+ "scoreNormal": 1001180,
+ "scoreHard": 1001320,
+ "scoreMania": 1001160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1634,
+ "id": "firewo",
+ "songFileName": "song_firewo",
+ "order": 1602,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 10050,
+ "shinutiNormal": 58370,
+ "shinutiHard": 4690,
+ "shinutiMania": 3430,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10050,
+ "shinutiNormalDuet": 58370,
+ "shinutiHardDuet": 4690,
+ "shinutiManiaDuet": 3430,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000660,
+ "scoreNormal": 1000160,
+ "scoreHard": 1001850,
+ "scoreMania": 1001720,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1635,
+ "id": "fpri9h",
+ "songFileName": "song_fpri9h",
+ "order": 1620,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 14050,
+ "shinutiNormal": 16370,
+ "shinutiHard": 15690,
+ "shinutiMania": 15480,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14050,
+ "shinutiNormalDuet": 16370,
+ "shinutiHardDuet": 15690,
+ "shinutiManiaDuet": 15480,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1000570,
+ "scoreHard": 1000290,
+ "scoreMania": 1000280,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1636,
+ "id": "gegege",
+ "songFileName": "song_gegege",
+ "order": 1659,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 15380,
+ "shinutiNormal": 12650,
+ "shinutiHard": 35720,
+ "shinutiMania": 35720,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15380,
+ "shinutiNormalDuet": 12650,
+ "shinutiHardDuet": 35720,
+ "shinutiManiaDuet": 35720,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000450,
+ "scoreNormal": 1000260,
+ "scoreHard": 1000160,
+ "scoreMania": 1000160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1638,
+ "id": "gggdx",
+ "songFileName": "song_gggdx",
+ "order": 1673,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5610,
+ "shinutiNormal": 4590,
+ "shinutiHard": 2720,
+ "shinutiMania": 2040,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5610,
+ "shinutiNormalDuet": 4590,
+ "shinutiHardDuet": 2720,
+ "shinutiManiaDuet": 2040,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1001680,
+ "scoreHard": 1002880,
+ "scoreMania": 1002460,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1639,
+ "id": "hamagu",
+ "songFileName": "song_hamagu",
+ "order": 1734,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8460,
+ "shinutiNormal": 5410,
+ "shinutiHard": 3110,
+ "shinutiMania": 2250,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8460,
+ "shinutiNormalDuet": 5410,
+ "shinutiHardDuet": 3110,
+ "shinutiManiaDuet": 2250,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000130,
+ "scoreNormal": 1000780,
+ "scoreHard": 1000720,
+ "scoreMania": 1003580,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1641,
+ "id": "himawa",
+ "songFileName": "song_himawa",
+ "order": 1760,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 23250,
+ "shinutiNormal": 23250,
+ "shinutiHard": 23260,
+ "shinutiMania": 21620,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 23250,
+ "shinutiNormalDuet": 23250,
+ "shinutiHardDuet": 23260,
+ "shinutiManiaDuet": 21620,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000350,
+ "scoreNormal": 1000350,
+ "scoreHard": 1000180,
+ "scoreMania": 1000060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1642,
+ "id": "hitouc",
+ "songFileName": "song_hitouc",
+ "order": 1762,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 12180,
+ "shinutiNormal": 7490,
+ "shinutiHard": 15810,
+ "shinutiMania": 8990,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12180,
+ "shinutiNormalDuet": 7490,
+ "shinutiHardDuet": 15810,
+ "shinutiManiaDuet": 8990,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000690,
+ "scoreNormal": 1000030,
+ "scoreHard": 1000470,
+ "scoreMania": 1001090,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1643,
+ "id": "hotaru",
+ "songFileName": "song_hotaru",
+ "order": 1784,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10180,
+ "shinutiNormal": 6970,
+ "shinutiHard": 4310,
+ "shinutiMania": 3190,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10180,
+ "shinutiNormalDuet": 6970,
+ "shinutiHardDuet": 4310,
+ "shinutiManiaDuet": 3190,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000830,
+ "scoreNormal": 1000800,
+ "scoreHard": 1001540,
+ "scoreMania": 1000350,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1644,
+ "id": "ikzo",
+ "songFileName": "song_ikzo",
+ "order": 1821,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8190,
+ "shinutiNormal": 4820,
+ "shinutiHard": 2780,
+ "shinutiMania": 2010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8190,
+ "shinutiNormalDuet": 4820,
+ "shinutiHardDuet": 2780,
+ "shinutiManiaDuet": 2010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001060,
+ "scoreNormal": 1000580,
+ "scoreHard": 1001830,
+ "scoreMania": 1004550,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1646,
+ "id": "kata3",
+ "songFileName": "song_kata3",
+ "order": 2006,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7910,
+ "shinutiNormal": 4470,
+ "shinutiHard": 2910,
+ "shinutiMania": 16560,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7910,
+ "shinutiNormalDuet": 4470,
+ "shinutiHardDuet": 2910,
+ "shinutiManiaDuet": 16560,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000320,
+ "scoreNormal": 1001950,
+ "scoreHard": 1001440,
+ "scoreMania": 1000400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1647,
+ "id": "kerott",
+ "songFileName": "song_kerott",
+ "order": 2016,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 7,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 11870,
+ "shinutiNormal": 8970,
+ "shinutiHard": 3910,
+ "shinutiMania": 2840,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11870,
+ "shinutiNormalDuet": 8970,
+ "shinutiHardDuet": 3910,
+ "shinutiManiaDuet": 2840,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000650,
+ "scoreNormal": 1000470,
+ "scoreHard": 1000790,
+ "scoreMania": 1000240,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1648,
+ "id": "kimagr",
+ "songFileName": "song_kimagr",
+ "order": 2026,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10860,
+ "shinutiNormal": 7930,
+ "shinutiHard": 3830,
+ "shinutiMania": 18110,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10860,
+ "shinutiNormalDuet": 7930,
+ "shinutiHardDuet": 3830,
+ "shinutiManiaDuet": 18110,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1000350,
+ "scoreHard": 1001600,
+ "scoreMania": 1000410,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1649,
+ "id": "kznina",
+ "songFileName": "song_kznina",
+ "order": 2102,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12960,
+ "shinutiNormal": 8520,
+ "shinutiHard": 4280,
+ "shinutiMania": 3420,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12960,
+ "shinutiNormalDuet": 8520,
+ "shinutiHardDuet": 4280,
+ "shinutiManiaDuet": 3420,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000520,
+ "scoreNormal": 1000210,
+ "scoreHard": 1002120,
+ "scoreMania": 1001670,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1650,
+ "id": "mecham",
+ "songFileName": "song_mecham",
+ "order": 2194,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 18500,
+ "shinutiNormal": 6320,
+ "shinutiHard": 3740,
+ "shinutiMania": 2780,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18500,
+ "shinutiNormalDuet": 6320,
+ "shinutiHardDuet": 3740,
+ "shinutiManiaDuet": 2780,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000190,
+ "scoreNormal": 1000010,
+ "scoreHard": 1000540,
+ "scoreMania": 1001000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1651,
+ "id": "nakana",
+ "songFileName": "song_nakana",
+ "order": 2316,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 13140,
+ "shinutiNormal": 9600,
+ "shinutiHard": 5710,
+ "shinutiMania": 18870,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13140,
+ "shinutiNormalDuet": 9600,
+ "shinutiHardDuet": 5710,
+ "shinutiManiaDuet": 18870,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000640,
+ "scoreNormal": 1001020,
+ "scoreHard": 1000900,
+ "scoreMania": 1000110,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1652,
+ "id": "nightf",
+ "songFileName": "song_nightf",
+ "order": 2344,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 16670,
+ "shinutiNormal": 15870,
+ "shinutiHard": 15820,
+ "shinutiMania": 16670,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16670,
+ "shinutiNormalDuet": 15870,
+ "shinutiHardDuet": 15820,
+ "shinutiManiaDuet": 16670,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1000200,
+ "scoreHard": 1000400,
+ "scoreMania": 1000200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1653,
+ "id": "o2rang",
+ "songFileName": "song_o2rang",
+ "order": 2365,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8540,
+ "shinutiNormal": 6360,
+ "shinutiHard": 3700,
+ "shinutiMania": 2360,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8540,
+ "shinutiNormalDuet": 6360,
+ "shinutiHardDuet": 3700,
+ "shinutiManiaDuet": 2360,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000980,
+ "scoreNormal": 1000250,
+ "scoreHard": 1001100,
+ "scoreMania": 1001740,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1654,
+ "id": "penetr",
+ "songFileName": "song_penetr",
+ "order": 2419,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5500,
+ "shinutiNormal": 3770,
+ "shinutiHard": 10050,
+ "shinutiMania": 10640,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5500,
+ "shinutiNormalDuet": 3770,
+ "shinutiHardDuet": 10050,
+ "shinutiManiaDuet": 10640,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001420,
+ "scoreNormal": 1000540,
+ "scoreHard": 1000300,
+ "scoreMania": 1000160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1656,
+ "id": "ppants",
+ "songFileName": "song_ppants",
+ "order": 2458,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 12500,
+ "shinutiNormal": 9900,
+ "shinutiHard": 6460,
+ "shinutiMania": 4900,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12500,
+ "shinutiNormalDuet": 9900,
+ "shinutiHardDuet": 6460,
+ "shinutiManiaDuet": 4900,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1000930,
+ "scoreHard": 1001300,
+ "scoreMania": 1000200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1657,
+ "id": "pulmer",
+ "songFileName": "song_pulmer",
+ "order": 2486,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 23250,
+ "shinutiNormal": 23210,
+ "shinutiHard": 22080,
+ "shinutiMania": 23180,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 23250,
+ "shinutiNormalDuet": 23210,
+ "shinutiHardDuet": 22080,
+ "shinutiManiaDuet": 23180,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000250,
+ "scoreNormal": 1000030,
+ "scoreHard": 1000240,
+ "scoreMania": 1000340,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1658,
+ "id": "sclday",
+ "songFileName": "song_sclday",
+ "order": 2587,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 19210,
+ "shinutiNormal": 7280,
+ "shinutiHard": 18170,
+ "shinutiMania": 19170,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 19210,
+ "shinutiNormalDuet": 7280,
+ "shinutiHardDuet": 18170,
+ "shinutiManiaDuet": 19170,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000120,
+ "scoreNormal": 1000510,
+ "scoreHard": 1000140,
+ "scoreMania": 1000340,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1660,
+ "id": "shoujo",
+ "songFileName": "song_shoujo",
+ "order": 2561,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8640,
+ "shinutiNormal": 6770,
+ "shinutiHard": 3550,
+ "shinutiMania": 2580,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8640,
+ "shinutiNormalDuet": 6770,
+ "shinutiHardDuet": 3550,
+ "shinutiManiaDuet": 2580,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000480,
+ "scoreNormal": 1000800,
+ "scoreHard": 1000800,
+ "scoreMania": 1001000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1661,
+ "id": "shuchi",
+ "songFileName": "song_shuchi",
+ "order": 2619,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9610,
+ "shinutiNormal": 6790,
+ "shinutiHard": 4130,
+ "shinutiMania": 2530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9610,
+ "shinutiNormalDuet": 6790,
+ "shinutiHardDuet": 4130,
+ "shinutiManiaDuet": 2530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000630,
+ "scoreNormal": 1000340,
+ "scoreHard": 1001850,
+ "scoreMania": 1000690,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1662,
+ "id": "sobani",
+ "songFileName": "song_sobani",
+ "order": 2656,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 10420,
+ "shinutiNormal": 7520,
+ "shinutiHard": 3940,
+ "shinutiMania": 2720,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10420,
+ "shinutiNormalDuet": 7520,
+ "shinutiHardDuet": 3940,
+ "shinutiManiaDuet": 2720,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000320,
+ "scoreNormal": 1001160,
+ "scoreHard": 1001960,
+ "scoreMania": 1001180,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1663,
+ "id": "stairw",
+ "songFileName": "song_stairw",
+ "order": 2690,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8460,
+ "shinutiNormal": 6680,
+ "shinutiHard": 3640,
+ "shinutiMania": 2630,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8460,
+ "shinutiNormalDuet": 6680,
+ "shinutiHardDuet": 3640,
+ "shinutiManiaDuet": 2630,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000920,
+ "scoreNormal": 1000940,
+ "scoreHard": 1000290,
+ "scoreMania": 1000560,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1665,
+ "id": "trigon",
+ "songFileName": "song_trigon",
+ "order": 2853,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7220,
+ "shinutiNormal": 4840,
+ "shinutiHard": 2980,
+ "shinutiMania": 2200,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7220,
+ "shinutiNormalDuet": 4840,
+ "shinutiHardDuet": 2980,
+ "shinutiManiaDuet": 2200,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1001340,
+ "scoreHard": 1000940,
+ "scoreMania": 1001940,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1666,
+ "id": "umiyuk",
+ "songFileName": "song_umiyuk",
+ "order": 2890,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 13140,
+ "shinutiNormal": 10390,
+ "shinutiHard": 6050,
+ "shinutiMania": 3580,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13140,
+ "shinutiNormalDuet": 10390,
+ "shinutiHardDuet": 6050,
+ "shinutiManiaDuet": 3580,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000610,
+ "scoreNormal": 1000440,
+ "scoreHard": 1001260,
+ "scoreMania": 1002340,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1667,
+ "id": "yatta2",
+ "songFileName": "song_yatta2",
+ "order": 2971,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 11230,
+ "shinutiNormal": 6050,
+ "shinutiHard": 3960,
+ "shinutiMania": 3660,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11230,
+ "shinutiNormalDuet": 6050,
+ "shinutiHardDuet": 3960,
+ "shinutiManiaDuet": 3660,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000650,
+ "scoreNormal": 1000610,
+ "scoreHard": 1001480,
+ "scoreMania": 1002510,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1668,
+ "id": "ymck",
+ "songFileName": "song_ymck",
+ "order": 2979,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7190,
+ "shinutiNormal": 5590,
+ "shinutiHard": 63170,
+ "shinutiMania": 1640,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7190,
+ "shinutiNormalDuet": 5590,
+ "shinutiHardDuet": 63170,
+ "shinutiManiaDuet": 1640,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000870,
+ "scoreNormal": 1000520,
+ "scoreHard": 1000030,
+ "scoreMania": 1001970,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1669,
+ "id": "gekir3",
+ "songFileName": "song_gekir3",
+ "order": 1662,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12970,
+ "shinutiNormal": 9790,
+ "shinutiHard": 8180,
+ "shinutiMania": 7220,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12970,
+ "shinutiNormalDuet": 9790,
+ "shinutiHardDuet": 8180,
+ "shinutiManiaDuet": 7220,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000660,
+ "scoreNormal": 1000970,
+ "scoreHard": 1001190,
+ "scoreMania": 1001280,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1671,
+ "id": "cna3",
+ "songFileName": "song_cna3",
+ "order": 1409,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9720,
+ "shinutiNormal": 7330,
+ "shinutiHard": 3880,
+ "shinutiMania": 2230,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9720,
+ "shinutiNormalDuet": 7330,
+ "shinutiHardDuet": 3880,
+ "shinutiManiaDuet": 2230,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000380,
+ "scoreNormal": 1000510,
+ "scoreHard": 1001380,
+ "scoreMania": 1000650,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1672,
+ "id": "coro2",
+ "songFileName": "song_coro2",
+ "order": 1414,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6320,
+ "shinutiNormal": 4710,
+ "shinutiHard": 2700,
+ "shinutiMania": 45300,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6320,
+ "shinutiNormalDuet": 4710,
+ "shinutiHardDuet": 2700,
+ "shinutiManiaDuet": 45300,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1001900,
+ "scoreHard": 1000170,
+ "scoreMania": 1000000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1673,
+ "id": "funmon",
+ "songFileName": "song_funmon",
+ "order": 1632,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11740,
+ "shinutiNormal": 6970,
+ "shinutiHard": 18750,
+ "shinutiMania": 2370,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11740,
+ "shinutiNormalDuet": 6970,
+ "shinutiHardDuet": 18750,
+ "shinutiManiaDuet": 2370,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000660,
+ "scoreNormal": 1000160,
+ "scoreHard": 1000250,
+ "scoreMania": 1003670,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1674,
+ "id": "ichiko",
+ "songFileName": "song_ichiko",
+ "order": 1810,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 16090,
+ "shinutiNormal": 9400,
+ "shinutiHard": 5810,
+ "shinutiMania": 4180,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16090,
+ "shinutiNormalDuet": 9400,
+ "shinutiHardDuet": 5810,
+ "shinutiManiaDuet": 4180,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1000270,
+ "scoreHard": 1001140,
+ "scoreMania": 1001920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1675,
+ "id": "inaire",
+ "songFileName": "song_inaire",
+ "order": 1932,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11760,
+ "shinutiNormal": 7570,
+ "shinutiHard": 3730,
+ "shinutiMania": 2720,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11760,
+ "shinutiNormalDuet": 7570,
+ "shinutiHardDuet": 3730,
+ "shinutiManiaDuet": 2720,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000850,
+ "scoreNormal": 1001260,
+ "scoreHard": 1001820,
+ "scoreMania": 1000790,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1676,
+ "id": "lovera",
+ "songFileName": "song_lovera",
+ "order": 2133,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 21230,
+ "shinutiNormal": 8170,
+ "shinutiHard": 21200,
+ "shinutiMania": 20130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 21230,
+ "shinutiNormalDuet": 8170,
+ "shinutiHardDuet": 21200,
+ "shinutiManiaDuet": 20130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000210,
+ "scoreNormal": 1000580,
+ "scoreHard": 1000000,
+ "scoreMania": 1000210,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1677,
+ "id": "maneki",
+ "songFileName": "song_maneki",
+ "order": 2170,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 24980,
+ "shinutiNormal": 13150,
+ "shinutiHard": 5960,
+ "shinutiMania": 3750,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 24980,
+ "shinutiNormalDuet": 13150,
+ "shinutiHardDuet": 5960,
+ "shinutiManiaDuet": 3750,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000060,
+ "scoreNormal": 1000440,
+ "scoreHard": 1000930,
+ "scoreMania": 1002400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1678,
+ "id": "mcdnld",
+ "songFileName": "song_mcdnld",
+ "order": 2187,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8410,
+ "shinutiNormal": 6510,
+ "shinutiHard": 16630,
+ "shinutiMania": 90240,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8410,
+ "shinutiNormalDuet": 6510,
+ "shinutiHardDuet": 16630,
+ "shinutiManiaDuet": 90240,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1001420,
+ "scoreHard": 1000510,
+ "scoreMania": 1000040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1679,
+ "id": "mecha2",
+ "songFileName": "song_mecha2",
+ "order": 2193,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 20410,
+ "shinutiNormal": 7400,
+ "shinutiHard": 3990,
+ "shinutiMania": 2860,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 20410,
+ "shinutiNormalDuet": 7400,
+ "shinutiHardDuet": 3990,
+ "shinutiManiaDuet": 2860,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000090,
+ "scoreNormal": 1000430,
+ "scoreHard": 1000240,
+ "scoreMania": 1002530,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1680,
+ "id": "onara",
+ "songFileName": "song_onara",
+ "order": 2379,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 15540,
+ "shinutiNormal": 19450,
+ "shinutiHard": 14410,
+ "shinutiMania": 14350,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15540,
+ "shinutiNormalDuet": 19450,
+ "shinutiHardDuet": 14410,
+ "shinutiManiaDuet": 14350,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000150,
+ "scoreNormal": 1000500,
+ "scoreHard": 1000090,
+ "scoreMania": 1000050,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1681,
+ "id": "ryouma",
+ "songFileName": "song_ryouma",
+ "order": 2570,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8720,
+ "shinutiNormal": 52180,
+ "shinutiHard": 2860,
+ "shinutiMania": 2080,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8720,
+ "shinutiNormalDuet": 52180,
+ "shinutiHardDuet": 2860,
+ "shinutiManiaDuet": 2080,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000010,
+ "scoreNormal": 1000110,
+ "scoreHard": 1003450,
+ "scoreMania": 1000350,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1682,
+ "id": "saikoe",
+ "songFileName": "song_saikoe",
+ "order": 2577,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 17510,
+ "shinutiNormal": 17530,
+ "shinutiHard": 17490,
+ "shinutiMania": 17490,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 17510,
+ "shinutiNormalDuet": 17530,
+ "shinutiHardDuet": 17490,
+ "shinutiManiaDuet": 17490,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000170,
+ "scoreNormal": 1000110,
+ "scoreHard": 1000030,
+ "scoreMania": 1000230,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1683,
+ "id": "thrill",
+ "songFileName": "song_thrill",
+ "order": 2789,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 17520,
+ "shinutiNormal": 10520,
+ "shinutiHard": 24200,
+ "shinutiMania": 27740,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 17520,
+ "shinutiNormalDuet": 10520,
+ "shinutiHardDuet": 24200,
+ "shinutiManiaDuet": 27740,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000320,
+ "scoreNormal": 1000230,
+ "scoreHard": 1000100,
+ "scoreMania": 1000040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1684,
+ "id": "toumei",
+ "songFileName": "song_toumei",
+ "order": 2765,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10670,
+ "shinutiNormal": 9140,
+ "shinutiHard": 3470,
+ "shinutiMania": 2540,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10670,
+ "shinutiNormalDuet": 9140,
+ "shinutiHardDuet": 3470,
+ "shinutiManiaDuet": 2540,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000740,
+ "scoreNormal": 1000650,
+ "scoreHard": 1001630,
+ "scoreMania": 1003520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1685,
+ "id": "victry",
+ "songFileName": "song_victry",
+ "order": 2913,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11470,
+ "shinutiNormal": 6600,
+ "shinutiHard": 3850,
+ "shinutiMania": 2280,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11470,
+ "shinutiNormalDuet": 6600,
+ "shinutiHardDuet": 3850,
+ "shinutiManiaDuet": 2280,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000630,
+ "scoreNormal": 1000940,
+ "scoreHard": 1002000,
+ "scoreMania": 1002020,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1692,
+ "id": "a12c13",
+ "songFileName": "song_a12c13",
+ "order": 1082,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8470,
+ "shinutiNormal": 4860,
+ "shinutiHard": 3480,
+ "shinutiMania": 2560,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8470,
+ "shinutiNormalDuet": 4860,
+ "shinutiHardDuet": 3480,
+ "shinutiManiaDuet": 2560,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000340,
+ "scoreNormal": 1001160,
+ "scoreHard": 1000200,
+ "scoreMania": 1000960,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1693,
+ "id": "a12c15",
+ "songFileName": "song_a12c15",
+ "order": 1083,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8610,
+ "shinutiNormal": 5180,
+ "shinutiHard": 3210,
+ "shinutiMania": 2090,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8610,
+ "shinutiNormalDuet": 5180,
+ "shinutiHardDuet": 3210,
+ "shinutiManiaDuet": 2090,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000890,
+ "scoreNormal": 1000650,
+ "scoreHard": 1001160,
+ "scoreMania": 1002640,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1694,
+ "id": "a12c16",
+ "songFileName": "song_a12c16",
+ "order": 1084,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 7390,
+ "shinutiNormal": 5760,
+ "shinutiHard": 76580,
+ "shinutiMania": 2080,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7390,
+ "shinutiNormalDuet": 5760,
+ "shinutiHardDuet": 76580,
+ "shinutiManiaDuet": 2080,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000210,
+ "scoreNormal": 1000130,
+ "scoreHard": 1000020,
+ "scoreMania": 1000410,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1696,
+ "id": "a12c25",
+ "songFileName": "song_a12c25",
+ "order": 1086,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12810,
+ "shinutiNormal": 8840,
+ "shinutiHard": 4410,
+ "shinutiMania": 3160,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12810,
+ "shinutiNormalDuet": 8840,
+ "shinutiHardDuet": 4410,
+ "shinutiManiaDuet": 3160,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1000200,
+ "scoreHard": 1001070,
+ "scoreMania": 1001720,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1697,
+ "id": "a12c28",
+ "songFileName": "song_a12c28",
+ "order": 1087,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10090,
+ "shinutiNormal": 6620,
+ "shinutiHard": 3670,
+ "shinutiMania": 2660,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10090,
+ "shinutiNormalDuet": 6620,
+ "shinutiHardDuet": 3670,
+ "shinutiManiaDuet": 2660,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000810,
+ "scoreNormal": 1000640,
+ "scoreHard": 1001910,
+ "scoreMania": 1002820,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1698,
+ "id": "a12c40",
+ "songFileName": "song_a12c40",
+ "order": 1088,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 13210,
+ "shinutiNormal": 8430,
+ "shinutiHard": 3840,
+ "shinutiMania": 3130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13210,
+ "shinutiNormalDuet": 8430,
+ "shinutiHardDuet": 3840,
+ "shinutiManiaDuet": 3130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1001170,
+ "scoreHard": 1001870,
+ "scoreMania": 1001600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1699,
+ "id": "a12c41",
+ "songFileName": "song_a12c41",
+ "order": 1089,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 9420,
+ "shinutiNormal": 6740,
+ "shinutiHard": 11330,
+ "shinutiMania": 2810,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9420,
+ "shinutiNormalDuet": 6740,
+ "shinutiHardDuet": 11330,
+ "shinutiManiaDuet": 2810,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000510,
+ "scoreNormal": 1000080,
+ "scoreHard": 1000340,
+ "scoreMania": 1001540,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1700,
+ "id": "a12c43",
+ "songFileName": "song_a12c43",
+ "order": 1090,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 17200,
+ "shinutiNormal": 9500,
+ "shinutiHard": 5080,
+ "shinutiMania": 35510,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 17200,
+ "shinutiNormalDuet": 9500,
+ "shinutiHardDuet": 5080,
+ "shinutiManiaDuet": 35510,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000070,
+ "scoreNormal": 1000650,
+ "scoreHard": 1000650,
+ "scoreMania": 1000270,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1702,
+ "id": "a12c61",
+ "songFileName": "song_a12c61",
+ "order": 1092,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 15100,
+ "shinutiNormal": 10270,
+ "shinutiHard": 6640,
+ "shinutiMania": 4900,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15100,
+ "shinutiNormalDuet": 10270,
+ "shinutiHardDuet": 6640,
+ "shinutiManiaDuet": 4900,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000010,
+ "scoreNormal": 1000300,
+ "scoreHard": 1001120,
+ "scoreMania": 1001770,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1706,
+ "id": "a12c75",
+ "songFileName": "song_a12c75",
+ "order": 1096,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8250,
+ "shinutiNormal": 4870,
+ "shinutiHard": 55240,
+ "shinutiMania": 1500,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8250,
+ "shinutiNormalDuet": 4870,
+ "shinutiHardDuet": 55240,
+ "shinutiManiaDuet": 1500,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000130,
+ "scoreNormal": 1001670,
+ "scoreHard": 1000130,
+ "scoreMania": 1005220,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1707,
+ "id": "a12c77",
+ "songFileName": "song_a12c77",
+ "order": 1097,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 23250,
+ "shinutiNormal": 23240,
+ "shinutiHard": 3670,
+ "shinutiMania": 2520,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 23250,
+ "shinutiNormalDuet": 23240,
+ "shinutiHardDuet": 3670,
+ "shinutiManiaDuet": 2520,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000350,
+ "scoreNormal": 1000320,
+ "scoreHard": 1002680,
+ "scoreMania": 1001920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1710,
+ "id": "a12mus",
+ "songFileName": "song_a12mus",
+ "order": 1100,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 1,
+ "starHard": 3,
+ "starMania": 3,
+ "starUra": 0,
+ "shinutiEasy": 13150,
+ "shinutiNormal": 11750,
+ "shinutiHard": 8680,
+ "shinutiMania": 5200,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13150,
+ "shinutiNormalDuet": 11750,
+ "shinutiHardDuet": 8680,
+ "shinutiManiaDuet": 5200,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1000520,
+ "scoreHard": 1000510,
+ "scoreMania": 1001590,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1711,
+ "id": "a12o02",
+ "songFileName": "song_a12o02",
+ "order": 1101,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10000,
+ "shinutiNormal": 6490,
+ "shinutiHard": 3530,
+ "shinutiMania": 2720,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10000,
+ "shinutiNormalDuet": 6490,
+ "shinutiHardDuet": 3530,
+ "shinutiManiaDuet": 2720,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000730,
+ "scoreNormal": 1000340,
+ "scoreHard": 1001050,
+ "scoreMania": 1002020,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1712,
+ "id": "a12o04",
+ "songFileName": "song_a12o04",
+ "order": 1102,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 23260,
+ "shinutiNormal": 23260,
+ "shinutiHard": 23260,
+ "shinutiMania": 23260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 23260,
+ "shinutiNormalDuet": 23260,
+ "shinutiHardDuet": 23260,
+ "shinutiManiaDuet": 23260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000180,
+ "scoreNormal": 1000180,
+ "scoreHard": 1000180,
+ "scoreMania": 1000180,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1713,
+ "id": "a12o07",
+ "songFileName": "song_a12o07",
+ "order": 1103,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 11610,
+ "shinutiNormal": 1790,
+ "shinutiHard": 4970,
+ "shinutiMania": 1030,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11610,
+ "shinutiNormalDuet": 1790,
+ "shinutiHardDuet": 4970,
+ "shinutiManiaDuet": 1030,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000440,
+ "scoreNormal": 1001770,
+ "scoreHard": 1001720,
+ "scoreMania": 1003060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1714,
+ "id": "a12o10",
+ "songFileName": "song_a12o10",
+ "order": 1104,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11230,
+ "shinutiNormal": 5880,
+ "shinutiHard": 2710,
+ "shinutiMania": 2370,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11230,
+ "shinutiNormalDuet": 5880,
+ "shinutiHardDuet": 2710,
+ "shinutiManiaDuet": 2370,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000510,
+ "scoreNormal": 1001120,
+ "scoreHard": 1002670,
+ "scoreMania": 1001430,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1715,
+ "id": "a12wng",
+ "songFileName": "song_a12wng",
+ "order": 1105,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 24970,
+ "shinutiNormal": 24960,
+ "shinutiHard": 24960,
+ "shinutiMania": 25000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 24970,
+ "shinutiNormalDuet": 24960,
+ "shinutiHardDuet": 24960,
+ "shinutiManiaDuet": 25000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000000,
+ "scoreHard": 1000000,
+ "scoreMania": 1000000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1716,
+ "id": "a1donk",
+ "songFileName": "song_a1donk",
+ "order": 1109,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 24260,
+ "shinutiNormal": 14380,
+ "shinutiHard": 5110,
+ "shinutiMania": 90910,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 24260,
+ "shinutiNormalDuet": 14380,
+ "shinutiHardDuet": 5110,
+ "shinutiManiaDuet": 90910,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000280,
+ "scoreNormal": 1000450,
+ "scoreHard": 1001560,
+ "scoreMania": 1000010,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1717,
+ "id": "a1fah3",
+ "songFileName": "song_a1fah3",
+ "order": 1111,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11230,
+ "shinutiNormal": 7750,
+ "shinutiHard": 4320,
+ "shinutiMania": 3350,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11230,
+ "shinutiNormalDuet": 7750,
+ "shinutiHardDuet": 4320,
+ "shinutiManiaDuet": 3350,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000280,
+ "scoreNormal": 1000730,
+ "scoreHard": 1001800,
+ "scoreMania": 1000310,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1723,
+ "id": "a1mic1",
+ "songFileName": "song_a1mic1",
+ "order": 1124,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 17230,
+ "shinutiNormal": 9430,
+ "shinutiHard": 6050,
+ "shinutiMania": 7040,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 17230,
+ "shinutiNormalDuet": 9430,
+ "shinutiHardDuet": 6050,
+ "shinutiManiaDuet": 7040,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000520,
+ "scoreNormal": 1001010,
+ "scoreHard": 1000190,
+ "scoreMania": 1000090,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1724,
+ "id": "a1radi",
+ "songFileName": "song_a1radi",
+ "order": 1125,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 14080,
+ "shinutiNormal": 12340,
+ "shinutiHard": 5840,
+ "shinutiMania": 4210,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14080,
+ "shinutiNormalDuet": 12340,
+ "shinutiHardDuet": 5840,
+ "shinutiManiaDuet": 4210,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000650,
+ "scoreNormal": 1000710,
+ "scoreHard": 1000230,
+ "scoreMania": 1000450,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1725,
+ "id": "a1she1",
+ "songFileName": "song_a1she1",
+ "order": 1127,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 16370,
+ "shinutiNormal": 11750,
+ "shinutiHard": 6400,
+ "shinutiMania": 4030,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16370,
+ "shinutiNormalDuet": 11750,
+ "shinutiHardDuet": 6400,
+ "shinutiManiaDuet": 4030,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000070,
+ "scoreNormal": 1000590,
+ "scoreHard": 1001210,
+ "scoreMania": 1001840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1726,
+ "id": "a1tige",
+ "songFileName": "song_a1tige",
+ "order": 1131,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 11100,
+ "shinutiNormal": 8610,
+ "shinutiHard": 4590,
+ "shinutiMania": 2870,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11100,
+ "shinutiNormalDuet": 8610,
+ "shinutiHardDuet": 4590,
+ "shinutiManiaDuet": 2870,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000230,
+ "scoreNormal": 1000520,
+ "scoreHard": 1002060,
+ "scoreMania": 1003440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1727,
+ "id": "a1wan1",
+ "songFileName": "song_a1wan1",
+ "order": 1133,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 40000,
+ "shinutiNormal": 40000,
+ "shinutiHard": 40000,
+ "shinutiMania": 40000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 40000,
+ "shinutiNormalDuet": 40000,
+ "shinutiHardDuet": 40000,
+ "shinutiManiaDuet": 40000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000000,
+ "scoreHard": 1000000,
+ "scoreMania": 1000000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1728,
+ "id": "amane",
+ "songFileName": "song_amane",
+ "order": 1180,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 3,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 14700,
+ "shinutiNormal": 27750,
+ "shinutiHard": 6530,
+ "shinutiMania": 52640,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14700,
+ "shinutiNormalDuet": 27750,
+ "shinutiHardDuet": 6530,
+ "shinutiManiaDuet": 52640,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000560,
+ "scoreNormal": 1000160,
+ "scoreHard": 1000660,
+ "scoreMania": 1000160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1729,
+ "id": "anatat",
+ "songFileName": "song_anatat",
+ "order": 1190,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 14920,
+ "shinutiNormal": 10520,
+ "shinutiHard": 6020,
+ "shinutiMania": 4260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14920,
+ "shinutiNormalDuet": 10520,
+ "shinutiHardDuet": 6020,
+ "shinutiManiaDuet": 4260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000140,
+ "scoreNormal": 1000100,
+ "scoreHard": 1001160,
+ "scoreMania": 1001100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1730,
+ "id": "calib4",
+ "songFileName": "song_calib4",
+ "order": 1304,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10850,
+ "shinutiNormal": 19170,
+ "shinutiHard": 3720,
+ "shinutiMania": 2250,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10850,
+ "shinutiNormalDuet": 19170,
+ "shinutiHardDuet": 3720,
+ "shinutiManiaDuet": 2250,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000540,
+ "scoreNormal": 1000240,
+ "scoreHard": 1000310,
+ "scoreMania": 1003350,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1731,
+ "id": "chubur",
+ "songFileName": "song_chubur",
+ "order": 1341,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 27740,
+ "shinutiNormal": 7130,
+ "shinutiHard": 13870,
+ "shinutiMania": 14460,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 27740,
+ "shinutiNormalDuet": 7130,
+ "shinutiHardDuet": 13870,
+ "shinutiManiaDuet": 14460,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000350,
+ "scoreNormal": 1000610,
+ "scoreHard": 1000630,
+ "scoreMania": 1000240,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1732,
+ "id": "closer",
+ "songFileName": "song_closer",
+ "order": 1343,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10100,
+ "shinutiNormal": 18770,
+ "shinutiHard": 19240,
+ "shinutiMania": 18070,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10100,
+ "shinutiNormalDuet": 18770,
+ "shinutiHardDuet": 19240,
+ "shinutiManiaDuet": 18070,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000890,
+ "scoreNormal": 1000040,
+ "scoreHard": 1000480,
+ "scoreMania": 1000440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1733,
+ "id": "dancec",
+ "songFileName": "song_dancec",
+ "order": 1442,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 33280,
+ "shinutiNormal": 10300,
+ "shinutiHard": 5710,
+ "shinutiMania": 3610,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 33280,
+ "shinutiNormalDuet": 10300,
+ "shinutiHardDuet": 5710,
+ "shinutiManiaDuet": 3610,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1000940,
+ "scoreHard": 1001590,
+ "scoreMania": 1000020,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1734,
+ "id": "gdm00",
+ "songFileName": "song_gdm00",
+ "order": 1646,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10980,
+ "shinutiNormal": 8680,
+ "shinutiHard": 15850,
+ "shinutiMania": 15850,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10980,
+ "shinutiNormalDuet": 8680,
+ "shinutiHardDuet": 15850,
+ "shinutiManiaDuet": 15850,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000800,
+ "scoreNormal": 1000220,
+ "scoreHard": 1000050,
+ "scoreMania": 1000150,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1735,
+ "id": "gekido",
+ "songFileName": "song_gekido",
+ "order": 1660,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10870,
+ "shinutiNormal": 8260,
+ "shinutiHard": 3880,
+ "shinutiMania": 2530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10870,
+ "shinutiNormalDuet": 8260,
+ "shinutiHardDuet": 3880,
+ "shinutiManiaDuet": 2530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000570,
+ "scoreNormal": 1000330,
+ "scoreHard": 1002210,
+ "scoreMania": 1002060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1737,
+ "id": "hudson",
+ "songFileName": "song_hudson",
+ "order": 1792,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 9780,
+ "shinutiNormal": 8450,
+ "shinutiHard": 2980,
+ "shinutiMania": 1890,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9780,
+ "shinutiNormalDuet": 8450,
+ "shinutiHardDuet": 2980,
+ "shinutiManiaDuet": 1890,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000670,
+ "scoreNormal": 1000920,
+ "scoreHard": 1000690,
+ "scoreMania": 1003840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1738,
+ "id": "inouta",
+ "songFileName": "song_inouta",
+ "order": 1937,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 17510,
+ "shinutiNormal": 12170,
+ "shinutiHard": 7180,
+ "shinutiMania": 4770,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 17510,
+ "shinutiNormalDuet": 12170,
+ "shinutiHardDuet": 7180,
+ "shinutiManiaDuet": 4770,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000020,
+ "scoreNormal": 1000380,
+ "scoreHard": 1001240,
+ "scoreMania": 1000310,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1739,
+ "id": "kiba",
+ "songFileName": "song_kiba",
+ "order": 2020,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 14290,
+ "shinutiNormal": 9530,
+ "shinutiHard": 5520,
+ "shinutiMania": 4100,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14290,
+ "shinutiNormalDuet": 9530,
+ "shinutiHardDuet": 5520,
+ "shinutiManiaDuet": 4100,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1000650,
+ "scoreHard": 1000950,
+ "scoreMania": 1000400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1740,
+ "id": "krkrkr",
+ "songFileName": "song_krkrkr",
+ "order": 2082,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10630,
+ "shinutiNormal": 8050,
+ "shinutiHard": 3610,
+ "shinutiMania": 2030,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10630,
+ "shinutiNormalDuet": 8050,
+ "shinutiHardDuet": 3610,
+ "shinutiManiaDuet": 2030,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000930,
+ "scoreNormal": 1000090,
+ "scoreHard": 1001610,
+ "scoreMania": 1002790,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1742,
+ "id": "lmc88",
+ "songFileName": "song_lmc88",
+ "order": 2125,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 11360,
+ "shinutiNormal": 29390,
+ "shinutiHard": 4380,
+ "shinutiMania": 14070,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11360,
+ "shinutiNormalDuet": 29390,
+ "shinutiHardDuet": 4380,
+ "shinutiManiaDuet": 14070,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000380,
+ "scoreNormal": 1000110,
+ "scoreHard": 1000590,
+ "scoreMania": 1000620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1743,
+ "id": "or1",
+ "songFileName": "song_or1",
+ "order": 2386,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7690,
+ "shinutiNormal": 5680,
+ "shinutiHard": 3340,
+ "shinutiMania": 2390,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7690,
+ "shinutiNormalDuet": 5680,
+ "shinutiHardDuet": 3340,
+ "shinutiManiaDuet": 2390,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000980,
+ "scoreNormal": 1001240,
+ "scoreHard": 1001450,
+ "scoreMania": 1002220,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1744,
+ "id": "overtf",
+ "songFileName": "song_overtf",
+ "order": 2408,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10410,
+ "shinutiNormal": 7680,
+ "shinutiHard": 4860,
+ "shinutiMania": 2700,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10410,
+ "shinutiNormalDuet": 7680,
+ "shinutiHardDuet": 4860,
+ "shinutiManiaDuet": 2700,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000480,
+ "scoreNormal": 1001260,
+ "scoreHard": 1001600,
+ "scoreMania": 1000140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1745,
+ "id": "prison",
+ "songFileName": "song_prison",
+ "order": 2476,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 16380,
+ "shinutiNormal": 10740,
+ "shinutiHard": 6940,
+ "shinutiMania": 6120,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16380,
+ "shinutiNormalDuet": 10740,
+ "shinutiHardDuet": 6940,
+ "shinutiManiaDuet": 6120,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000230,
+ "scoreNormal": 1000090,
+ "scoreHard": 1001080,
+ "scoreMania": 1000180,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1746,
+ "id": "rise",
+ "songFileName": "song_rise",
+ "order": 2528,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8930,
+ "shinutiNormal": 4940,
+ "shinutiHard": 16400,
+ "shinutiMania": 16400,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8930,
+ "shinutiNormalDuet": 4940,
+ "shinutiHardDuet": 16400,
+ "shinutiManiaDuet": 16400,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000780,
+ "scoreNormal": 1000860,
+ "scoreHard": 1000400,
+ "scoreMania": 1000400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1750,
+ "id": "yaiko",
+ "songFileName": "song_yaiko",
+ "order": 2968,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9400,
+ "shinutiNormal": 6780,
+ "shinutiHard": 3640,
+ "shinutiMania": 1840,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9400,
+ "shinutiNormalDuet": 6780,
+ "shinutiHardDuet": 3640,
+ "shinutiManiaDuet": 1840,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000450,
+ "scoreNormal": 1000930,
+ "scoreHard": 1000140,
+ "scoreMania": 1004450,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1751,
+ "id": "5onop",
+ "songFileName": "song_5onop",
+ "order": 1062,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 17440,
+ "shinutiNormal": 10180,
+ "shinutiHard": 5080,
+ "shinutiMania": 3500,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 17440,
+ "shinutiNormalDuet": 10180,
+ "shinutiHardDuet": 5080,
+ "shinutiManiaDuet": 3500,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000150,
+ "scoreNormal": 1000010,
+ "scoreHard": 1000750,
+ "scoreMania": 1000530,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1752,
+ "id": "born",
+ "songFileName": "song_born",
+ "order": 1269,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7350,
+ "shinutiNormal": 4940,
+ "shinutiHard": 2870,
+ "shinutiMania": 2150,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7350,
+ "shinutiNormalDuet": 4940,
+ "shinutiHardDuet": 2870,
+ "shinutiManiaDuet": 2150,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000830,
+ "scoreNormal": 1001730,
+ "scoreHard": 1000870,
+ "scoreMania": 1003940,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1753,
+ "id": "flayer",
+ "songFileName": "song_flayer",
+ "order": 1604,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6680,
+ "shinutiNormal": 4480,
+ "shinutiHard": 590,
+ "shinutiMania": 11750,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6680,
+ "shinutiNormalDuet": 4480,
+ "shinutiHardDuet": 590,
+ "shinutiManiaDuet": 11750,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000070,
+ "scoreNormal": 1000000,
+ "scoreHard": 1007790,
+ "scoreMania": 1000750,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1754,
+ "id": "fpri9",
+ "songFileName": "song_fpri9",
+ "order": 1619,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 13670,
+ "shinutiNormal": 15850,
+ "shinutiHard": 15850,
+ "shinutiMania": 15010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13670,
+ "shinutiNormalDuet": 15850,
+ "shinutiHardDuet": 15850,
+ "shinutiManiaDuet": 15010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000560,
+ "scoreNormal": 1000550,
+ "scoreHard": 1000550,
+ "scoreMania": 1000030,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1755,
+ "id": "gi6pon",
+ "songFileName": "song_gi6pon",
+ "order": 1675,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 8540,
+ "shinutiNormal": 52570,
+ "shinutiHard": 4380,
+ "shinutiMania": 62370,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8540,
+ "shinutiNormalDuet": 52570,
+ "shinutiHardDuet": 4380,
+ "shinutiManiaDuet": 62370,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000180,
+ "scoreNormal": 1000040,
+ "scoreHard": 1000070,
+ "scoreMania": 1000100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1756,
+ "id": "loveso",
+ "songFileName": "song_loveso",
+ "order": 2134,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10740,
+ "shinutiNormal": 7330,
+ "shinutiHard": 3490,
+ "shinutiMania": 2160,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10740,
+ "shinutiNormalDuet": 7330,
+ "shinutiHardDuet": 3490,
+ "shinutiManiaDuet": 2160,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000500,
+ "scoreNormal": 1000350,
+ "scoreHard": 1001740,
+ "scoreMania": 1000740,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1757,
+ "id": "lovin",
+ "songFileName": "song_lovin",
+ "order": 2138,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9800,
+ "shinutiNormal": 6940,
+ "shinutiHard": 23260,
+ "shinutiMania": 23260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9800,
+ "shinutiNormalDuet": 6940,
+ "shinutiHardDuet": 23260,
+ "shinutiManiaDuet": 23260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000660,
+ "scoreNormal": 1000910,
+ "scoreHard": 1000180,
+ "scoreMania": 1000180,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1759,
+ "id": "pure",
+ "songFileName": "song_pure",
+ "order": 2488,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 15620,
+ "shinutiNormal": 10630,
+ "shinutiHard": 5970,
+ "shinutiMania": 22000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15620,
+ "shinutiNormalDuet": 10630,
+ "shinutiHardDuet": 5970,
+ "shinutiManiaDuet": 22000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000590,
+ "scoreNormal": 1000560,
+ "scoreHard": 1000080,
+ "scoreMania": 1000100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1760,
+ "id": "senkoe",
+ "songFileName": "song_senkoe",
+ "order": 2595,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10840,
+ "shinutiNormal": 7910,
+ "shinutiHard": 4470,
+ "shinutiMania": 2800,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10840,
+ "shinutiNormalDuet": 7910,
+ "shinutiHardDuet": 4470,
+ "shinutiManiaDuet": 2800,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000110,
+ "scoreNormal": 1000380,
+ "scoreHard": 1001710,
+ "scoreMania": 1003280,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1762,
+ "id": "triang",
+ "songFileName": "song_triang",
+ "order": 2838,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 19220,
+ "shinutiNormal": 7680,
+ "shinutiHard": 2800,
+ "shinutiMania": 2250,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 19220,
+ "shinutiNormalDuet": 7680,
+ "shinutiHardDuet": 2800,
+ "shinutiManiaDuet": 2250,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000250,
+ "scoreNormal": 1000530,
+ "scoreHard": 1000340,
+ "scoreMania": 1000400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1780,
+ "id": "afterd",
+ "songFileName": "song_afterd",
+ "order": 1143,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8250,
+ "shinutiNormal": 6150,
+ "shinutiHard": 3660,
+ "shinutiMania": 1930,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8250,
+ "shinutiNormalDuet": 6150,
+ "shinutiHardDuet": 3660,
+ "shinutiManiaDuet": 1930,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000920,
+ "scoreNormal": 1001280,
+ "scoreHard": 1000730,
+ "scoreMania": 1004050,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1781,
+ "id": "akniro",
+ "songFileName": "song_akniro",
+ "order": 1168,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 13300,
+ "shinutiNormal": 10180,
+ "shinutiHard": 5660,
+ "shinutiMania": 3220,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13300,
+ "shinutiNormalDuet": 10180,
+ "shinutiHardDuet": 5660,
+ "shinutiManiaDuet": 3220,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000050,
+ "scoreNormal": 1000720,
+ "scoreHard": 1000570,
+ "scoreMania": 1001880,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1782,
+ "id": "arara",
+ "songFileName": "song_arara",
+ "order": 1209,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8060,
+ "shinutiNormal": 4850,
+ "shinutiHard": 3320,
+ "shinutiMania": 16370,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8060,
+ "shinutiNormalDuet": 4850,
+ "shinutiHardDuet": 3320,
+ "shinutiManiaDuet": 16370,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000820,
+ "scoreNormal": 1001180,
+ "scoreHard": 1001580,
+ "scoreMania": 1000570,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1783,
+ "id": "chance",
+ "songFileName": "song_chance",
+ "order": 1326,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 1,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 35700,
+ "shinutiNormal": 9700,
+ "shinutiHard": 4000,
+ "shinutiMania": 2440,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 35700,
+ "shinutiNormalDuet": 9700,
+ "shinutiHardDuet": 4000,
+ "shinutiManiaDuet": 2440,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000250,
+ "scoreNormal": 1000050,
+ "scoreHard": 1002090,
+ "scoreMania": 1001360,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1785,
+ "id": "chiisa",
+ "songFileName": "song_chiisa",
+ "order": 1331,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 10090,
+ "shinutiNormal": 7860,
+ "shinutiHard": 4100,
+ "shinutiMania": 71220,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10090,
+ "shinutiNormalDuet": 7860,
+ "shinutiHardDuet": 4100,
+ "shinutiManiaDuet": 71220,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000520,
+ "scoreNormal": 1000490,
+ "scoreHard": 1001780,
+ "scoreMania": 1000100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1786,
+ "id": "distan",
+ "songFileName": "song_distan",
+ "order": 1489,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9890,
+ "shinutiNormal": 5910,
+ "shinutiHard": 13340,
+ "shinutiMania": 13340,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9890,
+ "shinutiNormalDuet": 5910,
+ "shinutiHardDuet": 13340,
+ "shinutiManiaDuet": 13340,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000140,
+ "scoreNormal": 1000310,
+ "scoreHard": 1000500,
+ "scoreMania": 1000500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1787,
+ "id": "kimit",
+ "songFileName": "song_kimit",
+ "order": 2038,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10480,
+ "shinutiNormal": 10460,
+ "shinutiHard": 4130,
+ "shinutiMania": 2480,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10480,
+ "shinutiNormalDuet": 10460,
+ "shinutiHardDuet": 4130,
+ "shinutiManiaDuet": 2480,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000850,
+ "scoreNormal": 1000660,
+ "scoreHard": 1001970,
+ "scoreMania": 1001540,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1789,
+ "id": "splend",
+ "songFileName": "song_splend",
+ "order": 2679,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9400,
+ "shinutiNormal": 13650,
+ "shinutiHard": 13670,
+ "shinutiMania": 12980,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9400,
+ "shinutiNormalDuet": 13650,
+ "shinutiHardDuet": 13670,
+ "shinutiManiaDuet": 12980,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000260,
+ "scoreNormal": 1000150,
+ "scoreHard": 1000510,
+ "scoreMania": 1000340,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1790,
+ "id": "ukiyo",
+ "songFileName": "song_ukiyo",
+ "order": 2869,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 13290,
+ "shinutiNormal": 8230,
+ "shinutiHard": 4130,
+ "shinutiMania": 14680,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13290,
+ "shinutiNormalDuet": 8230,
+ "shinutiHardDuet": 4130,
+ "shinutiManiaDuet": 14680,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000140,
+ "scoreNormal": 1000230,
+ "scoreHard": 1001040,
+ "scoreMania": 1000320,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1791,
+ "id": "deo",
+ "songFileName": "song_deo",
+ "order": 1477,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 16650,
+ "shinutiNormal": 3860,
+ "shinutiHard": 6200,
+ "shinutiMania": 2900,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16650,
+ "shinutiNormalDuet": 3860,
+ "shinutiHardDuet": 6200,
+ "shinutiManiaDuet": 2900,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000410,
+ "scoreNormal": 1001020,
+ "scoreHard": 1000520,
+ "scoreMania": 1002830,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1792,
+ "id": "fukoum",
+ "songFileName": "song_fukoum",
+ "order": 1629,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 66640,
+ "shinutiNormal": 7690,
+ "shinutiHard": 62450,
+ "shinutiMania": 3790,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 66640,
+ "shinutiNormalDuet": 7690,
+ "shinutiHardDuet": 62450,
+ "shinutiManiaDuet": 3790,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000300,
+ "scoreHard": 1000000,
+ "scoreMania": 1001560,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1793,
+ "id": "fundry",
+ "songFileName": "song_fundry",
+ "order": 1630,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8750,
+ "shinutiNormal": 6970,
+ "shinutiHard": 15870,
+ "shinutiMania": 2110,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8750,
+ "shinutiNormalDuet": 6970,
+ "shinutiHardDuet": 15870,
+ "shinutiManiaDuet": 2110,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000140,
+ "scoreNormal": 1000490,
+ "scoreHard": 1000530,
+ "scoreMania": 1000140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1794,
+ "id": "gmind",
+ "songFileName": "song_gmind",
+ "order": 1688,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 10490,
+ "shinutiNormal": 7440,
+ "shinutiHard": 3720,
+ "shinutiMania": 2840,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10490,
+ "shinutiNormalDuet": 7440,
+ "shinutiHardDuet": 3720,
+ "shinutiManiaDuet": 2840,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000170,
+ "scoreNormal": 1001010,
+ "scoreHard": 1000440,
+ "scoreMania": 1001040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1795,
+ "id": "ishoul",
+ "songFileName": "song_ishoul",
+ "order": 1951,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10090,
+ "shinutiNormal": 9000,
+ "shinutiHard": 23260,
+ "shinutiMania": 3550,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10090,
+ "shinutiNormalDuet": 9000,
+ "shinutiHardDuet": 23260,
+ "shinutiManiaDuet": 3550,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000370,
+ "scoreNormal": 1001040,
+ "scoreHard": 1000180,
+ "scoreMania": 1002100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1796,
+ "id": "kk2iru",
+ "songFileName": "song_kk2iru",
+ "order": 2050,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9250,
+ "shinutiNormal": 6060,
+ "shinutiHard": 3770,
+ "shinutiMania": 2490,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9250,
+ "shinutiNormalDuet": 6060,
+ "shinutiHardDuet": 3770,
+ "shinutiManiaDuet": 2490,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000850,
+ "scoreNormal": 1001570,
+ "scoreHard": 1002070,
+ "scoreMania": 1002480,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1799,
+ "id": "mayday",
+ "songFileName": "song_mayday",
+ "order": 2185,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6940,
+ "shinutiNormal": 6010,
+ "shinutiHard": 15880,
+ "shinutiMania": 15880,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6940,
+ "shinutiNormalDuet": 6010,
+ "shinutiHardDuet": 15880,
+ "shinutiManiaDuet": 15880,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001090,
+ "scoreNormal": 1000040,
+ "scoreHard": 1000440,
+ "scoreMania": 1000440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1800,
+ "id": "neiger",
+ "songFileName": "song_neiger",
+ "order": 2333,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12810,
+ "shinutiNormal": 10400,
+ "shinutiHard": 17200,
+ "shinutiMania": 17090,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12810,
+ "shinutiNormalDuet": 10400,
+ "shinutiHardDuet": 17200,
+ "shinutiManiaDuet": 17090,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000770,
+ "scoreNormal": 1000430,
+ "scoreHard": 1000000,
+ "scoreMania": 1000020,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1802,
+ "id": "prined",
+ "songFileName": "song_prined",
+ "order": 2473,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 3,
+ "starUra": 0,
+ "shinutiEasy": 9990,
+ "shinutiNormal": 19970,
+ "shinutiHard": 20580,
+ "shinutiMania": 20440,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9990,
+ "shinutiNormalDuet": 19970,
+ "shinutiHardDuet": 20580,
+ "shinutiManiaDuet": 20440,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000620,
+ "scoreNormal": 1000290,
+ "scoreHard": 1000280,
+ "scoreMania": 1000440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1803,
+ "id": "shizuk",
+ "songFileName": "song_shizuk",
+ "order": 2613,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 2,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 13140,
+ "shinutiNormal": 10290,
+ "shinutiHard": 55380,
+ "shinutiMania": 3350,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13140,
+ "shinutiNormalDuet": 10290,
+ "shinutiHardDuet": 55380,
+ "shinutiManiaDuet": 3350,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000480,
+ "scoreNormal": 1000590,
+ "scoreHard": 1000150,
+ "scoreMania": 1000900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1804,
+ "id": "80pan",
+ "songFileName": "song_80pan",
+ "order": 1070,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 13310,
+ "shinutiNormal": 6780,
+ "shinutiHard": 12120,
+ "shinutiMania": 13310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13310,
+ "shinutiNormalDuet": 6780,
+ "shinutiHardDuet": 12120,
+ "shinutiManiaDuet": 13310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000250,
+ "scoreNormal": 1000310,
+ "scoreHard": 1000200,
+ "scoreMania": 1000250,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1805,
+ "id": "alones",
+ "songFileName": "song_alones",
+ "order": 1172,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9400,
+ "shinutiNormal": 6950,
+ "shinutiHard": 4320,
+ "shinutiMania": 2650,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9400,
+ "shinutiNormalDuet": 6950,
+ "shinutiHardDuet": 4320,
+ "shinutiManiaDuet": 2650,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000780,
+ "scoreNormal": 1000170,
+ "scoreHard": 1001940,
+ "scoreMania": 1000680,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1806,
+ "id": "bright",
+ "songFileName": "song_bright",
+ "order": 1276,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9990,
+ "shinutiNormal": 7510,
+ "shinutiHard": 3300,
+ "shinutiMania": 620,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9990,
+ "shinutiNormalDuet": 7510,
+ "shinutiHardDuet": 3300,
+ "shinutiManiaDuet": 620,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000880,
+ "scoreNormal": 1001290,
+ "scoreHard": 1001850,
+ "scoreMania": 1008600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1807,
+ "id": "canta",
+ "songFileName": "song_canta",
+ "order": 1311,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 11130,
+ "shinutiNormal": 17320,
+ "shinutiHard": 17520,
+ "shinutiMania": 17520,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11130,
+ "shinutiNormalDuet": 17320,
+ "shinutiHardDuet": 17520,
+ "shinutiManiaDuet": 17520,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000670,
+ "scoreNormal": 1000440,
+ "scoreHard": 1000040,
+ "scoreMania": 1000440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1808,
+ "id": "clsfig",
+ "songFileName": "song_clsfig",
+ "order": 1367,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 5500,
+ "shinutiNormal": 3680,
+ "shinutiHard": 2720,
+ "shinutiMania": 1920,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5500,
+ "shinutiNormalDuet": 3680,
+ "shinutiHardDuet": 2720,
+ "shinutiManiaDuet": 1920,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001260,
+ "scoreNormal": 1001250,
+ "scoreHard": 1002790,
+ "scoreMania": 1001970,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1809,
+ "id": "deno",
+ "songFileName": "song_deno",
+ "order": 1473,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 16620,
+ "shinutiNormal": 11200,
+ "shinutiHard": 5310,
+ "shinutiMania": 2460,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16620,
+ "shinutiNormalDuet": 11200,
+ "shinutiHardDuet": 5310,
+ "shinutiManiaDuet": 2460,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000270,
+ "scoreNormal": 1000670,
+ "scoreHard": 1001070,
+ "scoreMania": 1002100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1810,
+ "id": "giniro",
+ "songFileName": "song_giniro",
+ "order": 1678,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10170,
+ "shinutiNormal": 8440,
+ "shinutiHard": 3320,
+ "shinutiMania": 2110,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10170,
+ "shinutiNormalDuet": 8440,
+ "shinutiHardDuet": 3320,
+ "shinutiManiaDuet": 2110,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000060,
+ "scoreNormal": 1000420,
+ "scoreHard": 1002170,
+ "scoreMania": 1002450,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1811,
+ "id": "happy",
+ "songFileName": "song_happy",
+ "order": 1738,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10310,
+ "shinutiNormal": 14930,
+ "shinutiHard": 4900,
+ "shinutiMania": 2730,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10310,
+ "shinutiNormalDuet": 14930,
+ "shinutiHardDuet": 4900,
+ "shinutiManiaDuet": 2730,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000640,
+ "scoreNormal": 1000310,
+ "scoreHard": 1000730,
+ "scoreMania": 1002110,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1812,
+ "id": "heros",
+ "songFileName": "song_heros",
+ "order": 1755,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12970,
+ "shinutiNormal": 8600,
+ "shinutiHard": 4090,
+ "shinutiMania": 2790,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12970,
+ "shinutiNormalDuet": 8600,
+ "shinutiHardDuet": 4090,
+ "shinutiManiaDuet": 2790,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000670,
+ "scoreNormal": 1000320,
+ "scoreHard": 1002050,
+ "scoreMania": 1001610,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1814,
+ "id": "ikasum",
+ "songFileName": "song_ikasum",
+ "order": 1817,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5540,
+ "shinutiNormal": 4570,
+ "shinutiHard": 2410,
+ "shinutiMania": 14690,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5540,
+ "shinutiNormalDuet": 4570,
+ "shinutiHardDuet": 2410,
+ "shinutiManiaDuet": 14690,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001300,
+ "scoreNormal": 1001880,
+ "scoreHard": 1003490,
+ "scoreMania": 1000670,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1815,
+ "id": "itoshi",
+ "songFileName": "song_itoshi",
+ "order": 1955,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9260,
+ "shinutiNormal": 7520,
+ "shinutiHard": 21680,
+ "shinutiMania": 19690,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9260,
+ "shinutiNormalDuet": 7520,
+ "shinutiHardDuet": 21680,
+ "shinutiManiaDuet": 19690,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000900,
+ "scoreNormal": 1001160,
+ "scoreHard": 1000080,
+ "scoreMania": 1000140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1816,
+ "id": "kaera",
+ "songFileName": "song_kaera",
+ "order": 1986,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 16640,
+ "shinutiNormal": 16630,
+ "shinutiHard": 15720,
+ "shinutiMania": 15760,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16640,
+ "shinutiNormalDuet": 16630,
+ "shinutiHardDuet": 15720,
+ "shinutiManiaDuet": 15760,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000000,
+ "scoreHard": 1000400,
+ "scoreMania": 1000000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1817,
+ "id": "michi",
+ "songFileName": "song_michi",
+ "order": 2230,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 4,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 12810,
+ "shinutiNormal": 7800,
+ "shinutiHard": 28490,
+ "shinutiMania": 30230,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12810,
+ "shinutiNormalDuet": 7800,
+ "shinutiHardDuet": 28490,
+ "shinutiManiaDuet": 30230,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000630,
+ "scoreNormal": 1000530,
+ "scoreHard": 1000270,
+ "scoreMania": 1000090,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1818,
+ "id": "mikan",
+ "songFileName": "song_mikan",
+ "order": 2231,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12050,
+ "shinutiNormal": 12050,
+ "shinutiHard": 3450,
+ "shinutiMania": 12050,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12050,
+ "shinutiNormalDuet": 12050,
+ "shinutiHardDuet": 3450,
+ "shinutiManiaDuet": 12050,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000550,
+ "scoreNormal": 1000650,
+ "scoreHard": 1001450,
+ "scoreMania": 1000150,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1819,
+ "id": "pri9g",
+ "songFileName": "song_pri9g",
+ "order": 2469,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 2,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 14820,
+ "shinutiNormal": 10510,
+ "shinutiHard": 4830,
+ "shinutiMania": 2770,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14820,
+ "shinutiNormalDuet": 10510,
+ "shinutiHardDuet": 4830,
+ "shinutiManiaDuet": 2770,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000420,
+ "scoreNormal": 1000360,
+ "scoreHard": 1001970,
+ "scoreMania": 1001430,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1820,
+ "id": "purigo",
+ "songFileName": "song_purigo",
+ "order": 2489,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 10100,
+ "shinutiNormal": 7090,
+ "shinutiHard": 3510,
+ "shinutiMania": 19610,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10100,
+ "shinutiNormalDuet": 7090,
+ "shinutiHardDuet": 3510,
+ "shinutiManiaDuet": 19610,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000580,
+ "scoreNormal": 1000800,
+ "scoreHard": 1000780,
+ "scoreMania": 1000110,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1821,
+ "id": "rocky",
+ "songFileName": "song_rocky",
+ "order": 2543,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 8210,
+ "shinutiNormal": 60370,
+ "shinutiHard": 3580,
+ "shinutiMania": 3090,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8210,
+ "shinutiNormalDuet": 60370,
+ "shinutiHardDuet": 3580,
+ "shinutiManiaDuet": 3090,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000150,
+ "scoreNormal": 1000140,
+ "scoreHard": 1000820,
+ "scoreMania": 1001270,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1822,
+ "id": "seamo",
+ "songFileName": "song_seamo",
+ "order": 2589,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 15130,
+ "shinutiNormal": 8910,
+ "shinutiHard": 25620,
+ "shinutiMania": 25650,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15130,
+ "shinutiNormalDuet": 8910,
+ "shinutiHardDuet": 25620,
+ "shinutiManiaDuet": 25650,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000590,
+ "scoreNormal": 1001010,
+ "scoreHard": 1000380,
+ "scoreMania": 1000350,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1823,
+ "id": "sevent",
+ "songFileName": "song_sevent",
+ "order": 2602,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8320,
+ "shinutiNormal": 6120,
+ "shinutiHard": 16120,
+ "shinutiMania": 2040,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8320,
+ "shinutiNormalDuet": 6120,
+ "shinutiHardDuet": 16120,
+ "shinutiManiaDuet": 2040,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000870,
+ "scoreNormal": 1000500,
+ "scoreHard": 1000240,
+ "scoreMania": 1000340,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1824,
+ "id": "shala",
+ "songFileName": "song_shala",
+ "order": 2606,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 14080,
+ "shinutiNormal": 13140,
+ "shinutiHard": 15750,
+ "shinutiMania": 17550,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14080,
+ "shinutiNormalDuet": 13140,
+ "shinutiHardDuet": 15750,
+ "shinutiManiaDuet": 17550,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000570,
+ "scoreNormal": 1000100,
+ "scoreHard": 1000150,
+ "scoreMania": 1000350,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1825,
+ "id": "sutoro",
+ "songFileName": "song_sutoro",
+ "order": 2713,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8920,
+ "shinutiNormal": 7290,
+ "shinutiHard": 15860,
+ "shinutiMania": 17860,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8920,
+ "shinutiNormalDuet": 7290,
+ "shinutiHardDuet": 15860,
+ "shinutiManiaDuet": 17860,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000450,
+ "scoreNormal": 1000910,
+ "scoreHard": 1000160,
+ "scoreMania": 1000160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1826,
+ "id": "sze",
+ "songFileName": "song_sze",
+ "order": 2726,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 14490,
+ "shinutiNormal": 8540,
+ "shinutiHard": 3750,
+ "shinutiMania": 3270,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14490,
+ "shinutiNormalDuet": 8540,
+ "shinutiHardDuet": 3750,
+ "shinutiManiaDuet": 3270,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000460,
+ "scoreNormal": 1001070,
+ "scoreHard": 1000840,
+ "scoreMania": 1000010,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1827,
+ "id": "takio",
+ "songFileName": "song_takio",
+ "order": 2736,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5900,
+ "shinutiNormal": 3690,
+ "shinutiHard": 2240,
+ "shinutiMania": 1630,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5900,
+ "shinutiNormalDuet": 3690,
+ "shinutiHardDuet": 2240,
+ "shinutiManiaDuet": 1630,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001160,
+ "scoreNormal": 1001250,
+ "scoreHard": 1002700,
+ "scoreMania": 1002820,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1828,
+ "id": "windin",
+ "songFileName": "song_windin",
+ "order": 2952,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 17210,
+ "shinutiNormal": 11470,
+ "shinutiHard": 7400,
+ "shinutiMania": 4020,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 17210,
+ "shinutiNormalDuet": 11470,
+ "shinutiHardDuet": 7400,
+ "shinutiManiaDuet": 4020,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000530,
+ "scoreNormal": 1000790,
+ "scoreHard": 1000500,
+ "scoreMania": 1002090,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1829,
+ "id": "2night",
+ "songFileName": "song_2night",
+ "order": 1032,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 8,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10610,
+ "shinutiNormal": 6880,
+ "shinutiHard": 2920,
+ "shinutiMania": 1990,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10610,
+ "shinutiNormalDuet": 6880,
+ "shinutiHardDuet": 2920,
+ "shinutiManiaDuet": 1990,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000470,
+ "scoreNormal": 1001400,
+ "scoreHard": 1001560,
+ "scoreMania": 1003060,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1831,
+ "id": "bymy",
+ "songFileName": "song_bymy",
+ "order": 1298,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9000,
+ "shinutiNormal": 6520,
+ "shinutiHard": 3710,
+ "shinutiMania": 2330,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9000,
+ "shinutiNormalDuet": 6520,
+ "shinutiHardDuet": 3710,
+ "shinutiManiaDuet": 2330,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000980,
+ "scoreNormal": 1000010,
+ "scoreHard": 1000070,
+ "scoreMania": 1000400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1833,
+ "id": "cry",
+ "songFileName": "song_cry",
+ "order": 1427,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8320,
+ "shinutiNormal": 15140,
+ "shinutiHard": 79080,
+ "shinutiMania": 2130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8320,
+ "shinutiNormalDuet": 15140,
+ "shinutiHardDuet": 79080,
+ "shinutiManiaDuet": 2130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000390,
+ "scoreNormal": 1000340,
+ "scoreHard": 1000030,
+ "scoreMania": 1001440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1834,
+ "id": "dang",
+ "songFileName": "song_dang",
+ "order": 1443,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9350,
+ "shinutiNormal": 5920,
+ "shinutiHard": 3300,
+ "shinutiMania": 2210,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9350,
+ "shinutiNormalDuet": 5920,
+ "shinutiHardDuet": 3300,
+ "shinutiManiaDuet": 2210,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001000,
+ "scoreNormal": 1001290,
+ "scoreHard": 1000800,
+ "scoreMania": 1002630,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1836,
+ "id": "ketui",
+ "songFileName": "song_ketui",
+ "order": 2017,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11850,
+ "shinutiNormal": 7230,
+ "shinutiHard": 3760,
+ "shinutiMania": 2720,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11850,
+ "shinutiNormalDuet": 7230,
+ "shinutiHardDuet": 3760,
+ "shinutiManiaDuet": 2720,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000580,
+ "scoreNormal": 1001370,
+ "scoreHard": 1002070,
+ "scoreMania": 1002090,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1837,
+ "id": "koda",
+ "songFileName": "song_koda",
+ "order": 2059,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9790,
+ "shinutiNormal": 6240,
+ "shinutiHard": 2680,
+ "shinutiMania": 2290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9790,
+ "shinutiNormalDuet": 6240,
+ "shinutiHardDuet": 2680,
+ "shinutiManiaDuet": 2290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000320,
+ "scoreNormal": 1001250,
+ "scoreHard": 1003700,
+ "scoreMania": 1001570,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1839,
+ "id": "lesson",
+ "songFileName": "song_lesson",
+ "order": 2113,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10090,
+ "shinutiNormal": 7500,
+ "shinutiHard": 3840,
+ "shinutiMania": 2010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10090,
+ "shinutiNormalDuet": 7500,
+ "shinutiHardDuet": 3840,
+ "shinutiManiaDuet": 2010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000620,
+ "scoreNormal": 1000590,
+ "scoreHard": 1000480,
+ "scoreMania": 1003570,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1841,
+ "id": "medaka",
+ "songFileName": "song_medaka",
+ "order": 2195,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 3,
+ "starUra": 0,
+ "shinutiEasy": 12800,
+ "shinutiNormal": 7550,
+ "shinutiHard": 4460,
+ "shinutiMania": 11700,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12800,
+ "shinutiNormalDuet": 7550,
+ "shinutiHardDuet": 4460,
+ "shinutiManiaDuet": 11700,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000430,
+ "scoreNormal": 1001230,
+ "scoreHard": 1001690,
+ "scoreMania": 1000200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1842,
+ "id": "melody",
+ "songFileName": "song_melody",
+ "order": 2204,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 14010,
+ "shinutiNormal": 15780,
+ "shinutiHard": 4580,
+ "shinutiMania": 1960,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14010,
+ "shinutiNormalDuet": 15780,
+ "shinutiHardDuet": 4580,
+ "shinutiManiaDuet": 1960,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000500,
+ "scoreNormal": 1000540,
+ "scoreHard": 1000010,
+ "scoreMania": 1001990,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1847,
+ "id": "pri9s",
+ "songFileName": "song_pri9s",
+ "order": 2471,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 18850,
+ "shinutiNormal": 11740,
+ "shinutiHard": 3890,
+ "shinutiMania": 17860,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18850,
+ "shinutiNormalDuet": 11740,
+ "shinutiHardDuet": 3890,
+ "shinutiManiaDuet": 17860,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000510,
+ "scoreNormal": 1000060,
+ "scoreHard": 1001490,
+ "scoreMania": 1000160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1848,
+ "id": "remen8",
+ "songFileName": "song_remen8",
+ "order": 2511,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9260,
+ "shinutiNormal": 6540,
+ "shinutiHard": 3540,
+ "shinutiMania": 1870,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9260,
+ "shinutiNormalDuet": 6540,
+ "shinutiHardDuet": 3540,
+ "shinutiManiaDuet": 1870,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000680,
+ "scoreNormal": 1001340,
+ "scoreHard": 1000650,
+ "scoreMania": 1002320,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1850,
+ "id": "sunjon",
+ "songFileName": "song_sunjon",
+ "order": 2708,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8020,
+ "shinutiNormal": 5630,
+ "shinutiHard": 2650,
+ "shinutiMania": 1940,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8020,
+ "shinutiNormalDuet": 5630,
+ "shinutiHardDuet": 2650,
+ "shinutiManiaDuet": 1940,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000820,
+ "scoreNormal": 1000570,
+ "scoreHard": 1001720,
+ "scoreMania": 1004770,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1854,
+ "id": "warau",
+ "songFileName": "song_warau",
+ "order": 2932,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 14900,
+ "shinutiNormal": 9780,
+ "shinutiHard": 3630,
+ "shinutiMania": 14280,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14900,
+ "shinutiNormalDuet": 9780,
+ "shinutiHardDuet": 3630,
+ "shinutiManiaDuet": 14280,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000540,
+ "scoreNormal": 1000750,
+ "scoreHard": 1002490,
+ "scoreMania": 1000080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1857,
+ "id": "zelda",
+ "songFileName": "song_zelda",
+ "order": 3021,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 18120,
+ "shinutiNormal": 11480,
+ "shinutiHard": 3950,
+ "shinutiMania": 2350,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18120,
+ "shinutiNormalDuet": 11480,
+ "shinutiHardDuet": 3950,
+ "shinutiManiaDuet": 2350,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000090,
+ "scoreNormal": 1000630,
+ "scoreHard": 1001850,
+ "scoreMania": 1002550,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1858,
+ "id": "1rin",
+ "songFileName": "song_1rin",
+ "order": 1012,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11190,
+ "shinutiNormal": 8490,
+ "shinutiHard": 3560,
+ "shinutiMania": 2240,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11190,
+ "shinutiNormalDuet": 8490,
+ "shinutiHardDuet": 3560,
+ "shinutiManiaDuet": 2240,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1000130,
+ "scoreHard": 1002020,
+ "scoreMania": 1000040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1859,
+ "id": "dqop",
+ "songFileName": "song_dqop",
+ "order": 1534,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 12800,
+ "shinutiNormal": 7680,
+ "shinutiHard": 6580,
+ "shinutiMania": 5180,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12800,
+ "shinutiNormalDuet": 7680,
+ "shinutiHardDuet": 6580,
+ "shinutiManiaDuet": 5180,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000330,
+ "scoreNormal": 1000480,
+ "scoreHard": 1001350,
+ "scoreMania": 1001550,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1862,
+ "id": "kage",
+ "songFileName": "song_kage",
+ "order": 1987,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7090,
+ "shinutiNormal": 6710,
+ "shinutiHard": 2560,
+ "shinutiMania": 1820,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7090,
+ "shinutiNormalDuet": 6710,
+ "shinutiHardDuet": 2560,
+ "shinutiManiaDuet": 1820,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000640,
+ "scoreNormal": 1000940,
+ "scoreHard": 1000600,
+ "scoreMania": 1005190,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1864,
+ "id": "konan3",
+ "songFileName": "song_konan3",
+ "order": 2066,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12920,
+ "shinutiNormal": 70980,
+ "shinutiHard": 3720,
+ "shinutiMania": 2640,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12920,
+ "shinutiNormalDuet": 70980,
+ "shinutiHardDuet": 3720,
+ "shinutiManiaDuet": 2640,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000050,
+ "scoreNormal": 1000110,
+ "scoreHard": 1001650,
+ "scoreMania": 1000560,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1865,
+ "id": "maiahi",
+ "songFileName": "song_maiahi",
+ "order": 2165,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9890,
+ "shinutiNormal": 6850,
+ "shinutiHard": 19990,
+ "shinutiMania": 20000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9890,
+ "shinutiNormalDuet": 6850,
+ "shinutiHardDuet": 19990,
+ "shinutiManiaDuet": 20000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000330,
+ "scoreNormal": 1001450,
+ "scoreHard": 1000300,
+ "scoreMania": 1000000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1868,
+ "id": "naru2",
+ "songFileName": "song_naru2",
+ "order": 2324,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9890,
+ "shinutiNormal": 7240,
+ "shinutiHard": 5020,
+ "shinutiMania": 13840,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9890,
+ "shinutiNormalDuet": 7240,
+ "shinutiHardDuet": 5020,
+ "shinutiManiaDuet": 13840,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000030,
+ "scoreNormal": 1001310,
+ "scoreHard": 1000140,
+ "scoreMania": 1000260,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1870,
+ "id": "otome",
+ "songFileName": "song_otome",
+ "order": 2400,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11750,
+ "shinutiNormal": 9070,
+ "shinutiHard": 15620,
+ "shinutiMania": 2020,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11750,
+ "shinutiNormalDuet": 9070,
+ "shinutiHardDuet": 15620,
+ "shinutiManiaDuet": 2020,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000290,
+ "scoreNormal": 1000320,
+ "scoreHard": 1000480,
+ "scoreMania": 1001920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1871,
+ "id": "pecori",
+ "songFileName": "song_pecori",
+ "order": 2418,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8690,
+ "shinutiNormal": 5250,
+ "shinutiHard": 15800,
+ "shinutiMania": 17860,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8690,
+ "shinutiNormalDuet": 5250,
+ "shinutiHardDuet": 15800,
+ "shinutiManiaDuet": 17860,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000750,
+ "scoreNormal": 1000300,
+ "scoreHard": 1000500,
+ "scoreMania": 1000160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1872,
+ "id": "porno",
+ "songFileName": "song_porno",
+ "order": 2454,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8670,
+ "shinutiNormal": 6130,
+ "shinutiHard": 3080,
+ "shinutiMania": 15630,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8670,
+ "shinutiNormalDuet": 6130,
+ "shinutiHardDuet": 3080,
+ "shinutiManiaDuet": 15630,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000060,
+ "scoreNormal": 1001290,
+ "scoreHard": 1002720,
+ "scoreMania": 1000320,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1874,
+ "id": "spark",
+ "songFileName": "song_spark",
+ "order": 2672,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7460,
+ "shinutiNormal": 5740,
+ "shinutiHard": 3240,
+ "shinutiMania": 2080,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7460,
+ "shinutiNormalDuet": 5740,
+ "shinutiHardDuet": 3240,
+ "shinutiManiaDuet": 2080,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000890,
+ "scoreNormal": 1000050,
+ "scoreHard": 1001160,
+ "scoreMania": 1004640,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1875,
+ "id": "sura2",
+ "songFileName": "song_sura2",
+ "order": 2710,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8050,
+ "shinutiNormal": 5170,
+ "shinutiHard": 2050,
+ "shinutiMania": 1710,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8050,
+ "shinutiNormalDuet": 5170,
+ "shinutiHardDuet": 2050,
+ "shinutiManiaDuet": 1710,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000780,
+ "scoreNormal": 1000400,
+ "scoreHard": 1000950,
+ "scoreMania": 1003790,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1876,
+ "id": "wat",
+ "songFileName": "song_wat",
+ "order": 2935,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9510,
+ "shinutiNormal": 7190,
+ "shinutiHard": 3380,
+ "shinutiMania": 2100,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9510,
+ "shinutiNormalDuet": 7190,
+ "shinutiHardDuet": 3380,
+ "shinutiManiaDuet": 2100,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000160,
+ "scoreNormal": 1000400,
+ "scoreHard": 1001810,
+ "scoreMania": 1002330,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1877,
+ "id": "wataru",
+ "songFileName": "song_wataru",
+ "order": 2937,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9240,
+ "shinutiNormal": 6610,
+ "shinutiHard": 3570,
+ "shinutiMania": 2410,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9240,
+ "shinutiNormalDuet": 6610,
+ "shinutiHardDuet": 3570,
+ "shinutiManiaDuet": 2410,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000590,
+ "scoreNormal": 1001450,
+ "scoreHard": 1001270,
+ "scoreMania": 1002840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1885,
+ "id": "ginga",
+ "songFileName": "song_ginga",
+ "order": 1720,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 6030,
+ "shinutiNormal": 4770,
+ "shinutiHard": 3070,
+ "shinutiMania": 1860,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6030,
+ "shinutiNormalDuet": 4770,
+ "shinutiHardDuet": 3070,
+ "shinutiManiaDuet": 1860,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000980,
+ "scoreNormal": 1001700,
+ "scoreHard": 1000820,
+ "scoreMania": 1002540,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1901,
+ "id": "bshar2",
+ "songFileName": "song_bshar2",
+ "order": 1279,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 3,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 23160,
+ "shinutiNormal": 13090,
+ "shinutiHard": 6440,
+ "shinutiMania": 3800,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 23160,
+ "shinutiNormalDuet": 13090,
+ "shinutiHardDuet": 6440,
+ "shinutiManiaDuet": 3800,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1000510,
+ "scoreHard": 1000040,
+ "scoreMania": 1000880,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1902,
+ "id": "moana2",
+ "songFileName": "song_moana2",
+ "order": 2281,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 15320,
+ "shinutiNormal": 8800,
+ "shinutiHard": 4530,
+ "shinutiMania": 3040,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15320,
+ "shinutiNormalDuet": 8800,
+ "shinutiHardDuet": 4530,
+ "shinutiManiaDuet": 3040,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000330,
+ "scoreNormal": 1000900,
+ "scoreHard": 1001320,
+ "scoreMania": 1000940,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1903,
+ "id": "toystr",
+ "songFileName": "song_toystr",
+ "order": 2834,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12120,
+ "shinutiNormal": 7290,
+ "shinutiHard": 4290,
+ "shinutiMania": 2650,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12120,
+ "shinutiNormalDuet": 7290,
+ "shinutiHardDuet": 4290,
+ "shinutiManiaDuet": 2650,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000250,
+ "scoreNormal": 1000910,
+ "scoreHard": 1000970,
+ "scoreMania": 1001620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1904,
+ "id": "zzernc",
+ "songFileName": "song_zzernc",
+ "order": 2831,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5525,
+ "shinutiNormal": 3560,
+ "shinutiHard": 2080,
+ "shinutiMania": 1470,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5525,
+ "shinutiNormalDuet": 3560,
+ "shinutiHardDuet": 2080,
+ "shinutiManiaDuet": 1470,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001300,
+ "scoreNormal": 1001700,
+ "scoreHard": 1002140,
+ "scoreMania": 1004260,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1904,
+ "id": "bresca",
+ "songFileName": "song_bresca",
+ "order": 1274,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 11905,
+ "shinutiNormal": 7465,
+ "shinutiHard": 4485,
+ "shinutiMania": 3290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11905,
+ "shinutiNormalDuet": 7465,
+ "shinutiHardDuet": 4485,
+ "shinutiManiaDuet": 3290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000020,
+ "scoreNormal": 1000310,
+ "scoreHard": 1000155,
+ "scoreMania": 1001910,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1905,
+ "id": "zzff14",
+ "songFileName": "song_zzff14",
+ "order": 2832,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 0,
+ "starNormal": 0,
+ "starHard": 8,
+ "starMania": 0,
+ "starUra": 0,
+ "shinutiEasy": 0,
+ "shinutiNormal": 0,
+ "shinutiHard": 1445,
+ "shinutiMania": 0,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 0,
+ "shinutiNormalDuet": 0,
+ "shinutiHardDuet": 1445,
+ "shinutiManiaDuet": 0,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 0,
+ "scoreNormal": 0,
+ "scoreHard": 1002140,
+ "scoreMania": 0,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1905,
+ "id": "brhoje",
+ "songFileName": "song_brhoje",
+ "order": 1275,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 17860,
+ "shinutiNormal": 12200,
+ "shinutiHard": 7580,
+ "shinutiMania": 4765,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 17860,
+ "shinutiNormalDuet": 12200,
+ "shinutiHardDuet": 7580,
+ "shinutiManiaDuet": 4765,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000160,
+ "scoreNormal": 1000400,
+ "scoreHard": 1000560,
+ "scoreMania": 1000650,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1990,
+ "id": "jazamp",
+ "songFileName": "song_jazamp",
+ "order": 1971,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7720,
+ "shinutiNormal": 5470,
+ "shinutiHard": 3080,
+ "shinutiMania": 2410,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7720,
+ "shinutiNormalDuet": 5470,
+ "shinutiHardDuet": 3080,
+ "shinutiManiaDuet": 2410,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000640,
+ "scoreNormal": 1000470,
+ "scoreHard": 1001560,
+ "scoreMania": 1003360,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1991,
+ "id": "coro",
+ "songFileName": "song_coro",
+ "order": 1413,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 8030,
+ "shinutiNormal": 68930,
+ "shinutiHard": 3000,
+ "shinutiMania": 2090,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8030,
+ "shinutiNormalDuet": 68930,
+ "shinutiHardDuet": 3000,
+ "shinutiManiaDuet": 2090,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000060,
+ "scoreNormal": 1000030,
+ "scoreHard": 1001140,
+ "scoreMania": 1004040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1993,
+ "id": "ds3bs1",
+ "songFileName": "song_ds3bs1",
+ "order": 1549,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6690,
+ "shinutiNormal": 5000,
+ "shinutiHard": 2710,
+ "shinutiMania": 2430,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6690,
+ "shinutiNormalDuet": 5000,
+ "shinutiHardDuet": 2710,
+ "shinutiManiaDuet": 2430,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001320,
+ "scoreNormal": 1001450,
+ "scoreHard": 1003090,
+ "scoreMania": 1002860,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1994,
+ "id": "ds3op",
+ "songFileName": "song_ds3op",
+ "order": 1558,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12070,
+ "shinutiNormal": 7710,
+ "shinutiHard": 4010,
+ "shinutiMania": 2820,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12070,
+ "shinutiNormalDuet": 7710,
+ "shinutiHardDuet": 4010,
+ "shinutiManiaDuet": 2820,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000010,
+ "scoreNormal": 1001150,
+ "scoreHard": 1000040,
+ "scoreMania": 1002850,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1995,
+ "id": "river",
+ "songFileName": "song_river",
+ "order": 2530,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 9600,
+ "shinutiNormal": 6150,
+ "shinutiHard": 62680,
+ "shinutiMania": 23810,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9600,
+ "shinutiNormalDuet": 6150,
+ "shinutiHardDuet": 62680,
+ "shinutiManiaDuet": 23810,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000940,
+ "scoreNormal": 1000770,
+ "scoreHard": 1000140,
+ "scoreMania": 1000020,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 1997,
+ "id": "sign",
+ "songFileName": "song_sign",
+ "order": 2572,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8820,
+ "shinutiNormal": 6180,
+ "shinutiHard": 3250,
+ "shinutiMania": 2500,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8820,
+ "shinutiNormalDuet": 6180,
+ "shinutiHardDuet": 3250,
+ "shinutiManiaDuet": 2500,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000180,
+ "scoreNormal": 1000960,
+ "scoreHard": 1001820,
+ "scoreMania": 1002320,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2003,
+ "id": "clsmil",
+ "songFileName": "song_clsmil",
+ "order": 1381,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8980,
+ "shinutiNormal": 6970,
+ "shinutiHard": 3290,
+ "shinutiMania": 2600,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8980,
+ "shinutiNormalDuet": 6970,
+ "shinutiHardDuet": 3290,
+ "shinutiManiaDuet": 2600,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000590,
+ "scoreNormal": 1001310,
+ "scoreHard": 1000400,
+ "scoreMania": 1003230,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2004,
+ "id": "crtesc",
+ "songFileName": "song_crtesc",
+ "order": 1422,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 10,
+ "shinutiEasy": 4020,
+ "shinutiNormal": 2410,
+ "shinutiHard": 1860,
+ "shinutiMania": 1300,
+ "shinutiUra": 860,
+ "shinutiEasyDuet": 4020,
+ "shinutiNormalDuet": 2410,
+ "shinutiHardDuet": 1860,
+ "shinutiManiaDuet": 1300,
+ "shinutiUraDuet": 860,
+ "scoreEasy": 1000040,
+ "scoreNormal": 1001070,
+ "scoreHard": 1004880,
+ "scoreMania": 1005970,
+ "scoreUra": 1006060
+ },
+ {
+ "uniqueId": 2005,
+ "id": "cs7op",
+ "songFileName": "song_cs7op",
+ "order": 1430,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7950,
+ "shinutiNormal": 4470,
+ "shinutiHard": 2640,
+ "shinutiMania": 1970,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7950,
+ "shinutiNormalDuet": 4470,
+ "shinutiHardDuet": 2640,
+ "shinutiManiaDuet": 1970,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000830,
+ "scoreNormal": 1000180,
+ "scoreHard": 0,
+ "scoreMania": 1002580,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2006,
+ "id": "ddudu",
+ "songFileName": "song_ddudu",
+ "order": 1461,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12150,
+ "shinutiNormal": 7780,
+ "shinutiHard": 4600,
+ "shinutiMania": 2870,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12150,
+ "shinutiNormalDuet": 7780,
+ "shinutiHardDuet": 4600,
+ "shinutiManiaDuet": 2870,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000530,
+ "scoreNormal": 1001150,
+ "scoreHard": 1001770,
+ "scoreMania": 1001260,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2008,
+ "id": "fmod",
+ "songFileName": "song_fmod",
+ "order": 1612,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 5510,
+ "shinutiNormal": 2530,
+ "shinutiHard": 1840,
+ "shinutiMania": 1530,
+ "shinutiUra": 1110,
+ "shinutiEasyDuet": 5510,
+ "shinutiNormalDuet": 2530,
+ "shinutiHardDuet": 1840,
+ "shinutiManiaDuet": 1530,
+ "shinutiUraDuet": 1110,
+ "scoreEasy": 1000010,
+ "scoreNormal": 1001400,
+ "scoreHard": 1003460,
+ "scoreMania": 1000880,
+ "scoreUra": 1007960
+ },
+ {
+ "uniqueId": 2009,
+ "id": "hold",
+ "songFileName": "song_hold",
+ "order": 1772,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8040,
+ "shinutiNormal": 5950,
+ "shinutiHard": 4300,
+ "shinutiMania": 3030,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8040,
+ "shinutiNormalDuet": 5950,
+ "shinutiHardDuet": 4300,
+ "shinutiManiaDuet": 3030,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001190,
+ "scoreNormal": 1001070,
+ "scoreHard": 1001330,
+ "scoreMania": 1002650,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2010,
+ "id": "kappa",
+ "songFileName": "song_kappa",
+ "order": 2000,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6870,
+ "shinutiNormal": 4360,
+ "shinutiHard": 2750,
+ "shinutiMania": 1480,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6870,
+ "shinutiNormalDuet": 4360,
+ "shinutiHardDuet": 2750,
+ "shinutiManiaDuet": 1480,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000760,
+ "scoreNormal": 1000200,
+ "scoreHard": 1000790,
+ "scoreMania": 1003590,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2011,
+ "id": "kirby3",
+ "songFileName": "song_kirby3",
+ "order": 2044,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8180,
+ "shinutiNormal": 4630,
+ "shinutiHard": 2570,
+ "shinutiMania": 1550,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8180,
+ "shinutiNormalDuet": 4630,
+ "shinutiHardDuet": 2570,
+ "shinutiManiaDuet": 1550,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001070,
+ "scoreNormal": 1000290,
+ "scoreHard": 1000920,
+ "scoreMania": 1002310,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2012,
+ "id": "kumokn",
+ "songFileName": "song_kumokn",
+ "order": 2090,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 8130,
+ "shinutiNormal": 4000,
+ "shinutiHard": 2660,
+ "shinutiMania": 1530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8130,
+ "shinutiNormalDuet": 4000,
+ "shinutiHardDuet": 2660,
+ "shinutiManiaDuet": 1530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000720,
+ "scoreNormal": 1000600,
+ "scoreHard": 1002890,
+ "scoreMania": 1000160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2013,
+ "id": "nijbtn",
+ "songFileName": "song_nijbtn",
+ "order": 2345,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7620,
+ "shinutiNormal": 3910,
+ "shinutiHard": 2330,
+ "shinutiMania": 1370,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7620,
+ "shinutiNormalDuet": 3910,
+ "shinutiHardDuet": 2330,
+ "shinutiManiaDuet": 1370,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000530,
+ "scoreNormal": 1001470,
+ "scoreHard": 1003570,
+ "scoreMania": 1001080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2014,
+ "id": "ohdlov",
+ "songFileName": "song_ohdlov",
+ "order": 2371,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 15290,
+ "shinutiNormal": 9450,
+ "shinutiHard": 5050,
+ "shinutiMania": 2850,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15290,
+ "shinutiNormalDuet": 9450,
+ "shinutiHardDuet": 5050,
+ "shinutiManiaDuet": 2850,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000630,
+ "scoreNormal": 1000650,
+ "scoreHard": 1000820,
+ "scoreMania": 1001840,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2015,
+ "id": "p5life",
+ "songFileName": "song_p5life",
+ "order": 2410,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10540,
+ "shinutiNormal": 7070,
+ "shinutiHard": 3390,
+ "shinutiMania": 2060,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10540,
+ "shinutiNormalDuet": 7070,
+ "shinutiHardDuet": 3390,
+ "shinutiManiaDuet": 2060,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000370,
+ "scoreNormal": 1001280,
+ "scoreHard": 1000010,
+ "scoreMania": 1000340,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2016,
+ "id": "ponpok",
+ "songFileName": "song_ponpok",
+ "order": 2449,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6990,
+ "shinutiNormal": 3260,
+ "shinutiHard": 2450,
+ "shinutiMania": 1800,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6990,
+ "shinutiNormalDuet": 3260,
+ "shinutiHardDuet": 2450,
+ "shinutiManiaDuet": 1800,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001180,
+ "scoreNormal": 1000860,
+ "scoreHard": 1001970,
+ "scoreMania": 1000590,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2017,
+ "id": "ptptpk",
+ "songFileName": "song_ptptpk",
+ "order": 2484,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 8550,
+ "shinutiNormal": 5360,
+ "shinutiHard": 3440,
+ "shinutiMania": 1890,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8550,
+ "shinutiNormalDuet": 5360,
+ "shinutiHardDuet": 3440,
+ "shinutiManiaDuet": 1890,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001130,
+ "scoreNormal": 1000240,
+ "scoreHard": 1001890,
+ "scoreMania": 1003630,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2018,
+ "id": "smoon2",
+ "songFileName": "song_smoon2",
+ "order": 2647,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 12470,
+ "shinutiNormal": 9490,
+ "shinutiHard": 4470,
+ "shinutiMania": 2540,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12470,
+ "shinutiNormalDuet": 9490,
+ "shinutiHardDuet": 4470,
+ "shinutiManiaDuet": 2540,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000670,
+ "scoreNormal": 1000180,
+ "scoreHard": 1000980,
+ "scoreMania": 1003800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2019,
+ "id": "sw2op",
+ "songFileName": "song_sw2op",
+ "order": 2715,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8290,
+ "shinutiNormal": 4670,
+ "shinutiHard": 2680,
+ "shinutiMania": 1640,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8290,
+ "shinutiNormalDuet": 4670,
+ "shinutiHardDuet": 2680,
+ "shinutiManiaDuet": 1640,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000060,
+ "scoreNormal": 1001040,
+ "scoreHard": 1003500,
+ "scoreMania": 1002210,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2020,
+ "id": "tmbeat",
+ "songFileName": "song_tmbeat",
+ "order": 2804,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7080,
+ "shinutiNormal": 3920,
+ "shinutiHard": 2020,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7080,
+ "shinutiNormalDuet": 3920,
+ "shinutiHardDuet": 2020,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000510,
+ "scoreNormal": 1001610,
+ "scoreHard": 1002500,
+ "scoreMania": 1003040,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2021,
+ "id": "twcfsp",
+ "songFileName": "song_twcfsp",
+ "order": 2857,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11570,
+ "shinutiNormal": 6410,
+ "shinutiHard": 3810,
+ "shinutiMania": 2420,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11570,
+ "shinutiNormalDuet": 6410,
+ "shinutiHardDuet": 3810,
+ "shinutiManiaDuet": 2420,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000290,
+ "scoreNormal": 1000260,
+ "scoreHard": 1001490,
+ "scoreMania": 1002310,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2022,
+ "id": "vfvill",
+ "songFileName": "song_vfvill",
+ "order": 2912,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 8,
+ "shinutiEasy": 9470,
+ "shinutiNormal": 5870,
+ "shinutiHard": 3970,
+ "shinutiMania": 2780,
+ "shinutiUra": 1770,
+ "shinutiEasyDuet": 9470,
+ "shinutiNormalDuet": 5870,
+ "shinutiHardDuet": 3970,
+ "shinutiManiaDuet": 2780,
+ "shinutiUraDuet": 1770,
+ "scoreEasy": 1000810,
+ "scoreNormal": 1000820,
+ "scoreHard": 1000400,
+ "scoreMania": 1003110,
+ "scoreUra": 1005540
+ },
+ {
+ "uniqueId": 2025,
+ "id": "yumeut",
+ "songFileName": "song_yumeut",
+ "order": 3007,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10090,
+ "shinutiNormal": 6670,
+ "shinutiHard": 4150,
+ "shinutiMania": 2280,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10090,
+ "shinutiNormalDuet": 6670,
+ "shinutiHardDuet": 4150,
+ "shinutiManiaDuet": 2280,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000010,
+ "scoreNormal": 1000820,
+ "scoreHard": 1002110,
+ "scoreMania": 1000180,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2026,
+ "id": "zelda3",
+ "songFileName": "song_zelda3",
+ "order": 3022,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11660,
+ "shinutiNormal": 7500,
+ "shinutiHard": 4980,
+ "shinutiMania": 3410,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11660,
+ "shinutiNormalDuet": 7500,
+ "shinutiHardDuet": 4980,
+ "shinutiManiaDuet": 3410,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000180,
+ "scoreNormal": 1001280,
+ "scoreHard": 1001120,
+ "scoreMania": 1000470,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2027,
+ "id": "amatjk",
+ "songFileName": "song_amatjk",
+ "order": 1181,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6160,
+ "shinutiNormal": 3940,
+ "shinutiHard": 2400,
+ "shinutiMania": 1420,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6160,
+ "shinutiNormalDuet": 3940,
+ "shinutiHardDuet": 2400,
+ "shinutiManiaDuet": 1420,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001550,
+ "scoreNormal": 1001360,
+ "scoreHard": 1002990,
+ "scoreMania": 1005410,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2028,
+ "id": "asmajo",
+ "songFileName": "song_asmajo",
+ "order": 1219,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 2940,
+ "shinutiNormal": 1880,
+ "shinutiHard": 1470,
+ "shinutiMania": 910,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 2940,
+ "shinutiNormalDuet": 1880,
+ "shinutiHardDuet": 1470,
+ "shinutiManiaDuet": 910,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1002540,
+ "scoreNormal": 1002040,
+ "scoreHard": 1002540,
+ "scoreMania": 1011010,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2029,
+ "id": "batimt",
+ "songFileName": "song_batimt",
+ "order": 1239,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5160,
+ "shinutiNormal": 3320,
+ "shinutiHard": 2200,
+ "shinutiMania": 1040,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5160,
+ "shinutiNormalDuet": 3320,
+ "shinutiHardDuet": 2200,
+ "shinutiManiaDuet": 1040,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001350,
+ "scoreNormal": 1000440,
+ "scoreHard": 1001090,
+ "scoreMania": 1007070,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2030,
+ "id": "bleach",
+ "songFileName": "song_bleach",
+ "order": 1259,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8400,
+ "shinutiNormal": 6130,
+ "shinutiHard": 3870,
+ "shinutiMania": 2800,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8400,
+ "shinutiNormalDuet": 6130,
+ "shinutiHardDuet": 3870,
+ "shinutiManiaDuet": 2800,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000800,
+ "scoreNormal": 1000920,
+ "scoreHard": 1000860,
+ "scoreMania": 1000020,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2032,
+ "id": "divdrv",
+ "songFileName": "song_divdrv",
+ "order": 1490,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4290,
+ "shinutiNormal": 2560,
+ "shinutiHard": 1790,
+ "shinutiMania": 1120,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4290,
+ "shinutiNormalDuet": 2560,
+ "shinutiHardDuet": 1790,
+ "shinutiManiaDuet": 1120,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000020,
+ "scoreNormal": 1001460,
+ "scoreHard": 1004880,
+ "scoreMania": 1001640,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2033,
+ "id": "dogma2",
+ "songFileName": "song_dogma2",
+ "order": 1512,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4570,
+ "shinutiNormal": 2550,
+ "shinutiHard": 1460,
+ "shinutiMania": 1020,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4570,
+ "shinutiNormalDuet": 2550,
+ "shinutiHardDuet": 1460,
+ "shinutiManiaDuet": 1020,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001520,
+ "scoreNormal": 1002950,
+ "scoreHard": 1005650,
+ "scoreMania": 1004660,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2034,
+ "id": "dondo",
+ "songFileName": "song_dondo",
+ "order": 1517,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8550,
+ "shinutiNormal": 2980,
+ "shinutiHard": 2910,
+ "shinutiMania": 2120,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8550,
+ "shinutiNormalDuet": 2980,
+ "shinutiHardDuet": 2910,
+ "shinutiManiaDuet": 2120,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000350,
+ "scoreNormal": 1001280,
+ "scoreHard": 1002240,
+ "scoreMania": 1002340,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2035,
+ "id": "dppkm",
+ "songFileName": "song_dppkm",
+ "order": 1528,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 18410,
+ "shinutiNormal": 12720,
+ "shinutiHard": 5850,
+ "shinutiMania": 3860,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18410,
+ "shinutiNormalDuet": 12720,
+ "shinutiHardDuet": 5850,
+ "shinutiManiaDuet": 3860,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000250,
+ "scoreNormal": 1000280,
+ "scoreHard": 1000350,
+ "scoreMania": 1001020,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2036,
+ "id": "gdm3",
+ "songFileName": "song_gdm3",
+ "order": 1648,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7840,
+ "shinutiNormal": 5500,
+ "shinutiHard": 3240,
+ "shinutiMania": 2370,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7840,
+ "shinutiNormalDuet": 5500,
+ "shinutiHardDuet": 3240,
+ "shinutiManiaDuet": 2370,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000510,
+ "scoreNormal": 1001370,
+ "scoreHard": 1000090,
+ "scoreMania": 1000140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2037,
+ "id": "hi4kok",
+ "songFileName": "song_hi4kok",
+ "order": 1757,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6000,
+ "shinutiNormal": 4300,
+ "shinutiHard": 2310,
+ "shinutiMania": 1170,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6000,
+ "shinutiNormalDuet": 4300,
+ "shinutiHardDuet": 2310,
+ "shinutiManiaDuet": 1170,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000290,
+ "scoreNormal": 1001640,
+ "scoreHard": 1003460,
+ "scoreMania": 1003940,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2038,
+ "id": "japan",
+ "songFileName": "song_japan",
+ "order": 1962,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8460,
+ "shinutiNormal": 7030,
+ "shinutiHard": 4130,
+ "shinutiMania": 3220,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8460,
+ "shinutiNormalDuet": 7030,
+ "shinutiHardDuet": 4130,
+ "shinutiManiaDuet": 3220,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000120,
+ "scoreNormal": 1000490,
+ "scoreHard": 1001110,
+ "scoreMania": 1000380,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2039,
+ "id": "jdgekk",
+ "songFileName": "song_jdgekk",
+ "order": 1969,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 12320,
+ "shinutiNormal": 9490,
+ "shinutiHard": 5860,
+ "shinutiMania": 3470,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12320,
+ "shinutiNormalDuet": 9490,
+ "shinutiHardDuet": 5860,
+ "shinutiManiaDuet": 3470,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000120,
+ "scoreNormal": 1000330,
+ "scoreHard": 1000150,
+ "scoreMania": 1002720,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2040,
+ "id": "kabkim",
+ "songFileName": "song_kabkim",
+ "order": 1985,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7200,
+ "shinutiNormal": 4060,
+ "shinutiHard": 2290,
+ "shinutiMania": 1440,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7200,
+ "shinutiNormalDuet": 4060,
+ "shinutiHardDuet": 2290,
+ "shinutiManiaDuet": 1440,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000480,
+ "scoreNormal": 1001560,
+ "scoreHard": 1002180,
+ "scoreMania": 1006420,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2041,
+ "id": "kobenm",
+ "songFileName": "song_kobenm",
+ "order": 2058,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4740,
+ "shinutiNormal": 2690,
+ "shinutiHard": 1800,
+ "shinutiMania": 1020,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4740,
+ "shinutiNormalDuet": 2690,
+ "shinutiHardDuet": 1800,
+ "shinutiManiaDuet": 1020,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000960,
+ "scoreNormal": 1002070,
+ "scoreHard": 1000340,
+ "scoreMania": 1009130,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2042,
+ "id": "lapaz",
+ "songFileName": "song_lapaz",
+ "order": 2105,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 8590,
+ "shinutiNormal": 4990,
+ "shinutiHard": 2640,
+ "shinutiMania": 1430,
+ "shinutiUra": 1100,
+ "shinutiEasyDuet": 8590,
+ "shinutiNormalDuet": 4990,
+ "shinutiHardDuet": 2640,
+ "shinutiManiaDuet": 1430,
+ "shinutiUraDuet": 1100,
+ "scoreEasy": 1000490,
+ "scoreNormal": 1001520,
+ "scoreHard": 1001330,
+ "scoreMania": 1002740,
+ "scoreUra": 1007430
+ },
+ {
+ "uniqueId": 2043,
+ "id": "leciel",
+ "songFileName": "song_leciel",
+ "order": 2112,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4880,
+ "shinutiNormal": 3110,
+ "shinutiHard": 2190,
+ "shinutiMania": 1320,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4880,
+ "shinutiNormalDuet": 3110,
+ "shinutiHardDuet": 2190,
+ "shinutiManiaDuet": 1320,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001890,
+ "scoreNormal": 1003100,
+ "scoreHard": 1001290,
+ "scoreMania": 1006450,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2044,
+ "id": "moeyos",
+ "songFileName": "song_moeyos",
+ "order": 2282,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6970,
+ "shinutiNormal": 4440,
+ "shinutiHard": 2450,
+ "shinutiMania": 1260,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6970,
+ "shinutiNormalDuet": 4440,
+ "shinutiHardDuet": 2450,
+ "shinutiManiaDuet": 1260,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000880,
+ "scoreNormal": 1000160,
+ "scoreHard": 1002900,
+ "scoreMania": 1001880,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2045,
+ "id": "thusat",
+ "songFileName": "song_thusat",
+ "order": 2792,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6800,
+ "shinutiNormal": 4320,
+ "shinutiHard": 2140,
+ "shinutiMania": 1440,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6800,
+ "shinutiNormalDuet": 4320,
+ "shinutiHardDuet": 2140,
+ "shinutiManiaDuet": 1440,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000750,
+ "scoreNormal": 1001350,
+ "scoreHard": 1002780,
+ "scoreMania": 1002430,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2046,
+ "id": "zenkja",
+ "songFileName": "song_zenkja",
+ "order": 3024,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 22030,
+ "shinutiNormal": 11240,
+ "shinutiHard": 5390,
+ "shinutiMania": 3940,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 22030,
+ "shinutiNormalDuet": 11240,
+ "shinutiHardDuet": 5390,
+ "shinutiManiaDuet": 3940,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000370,
+ "scoreNormal": 1000100,
+ "scoreHard": 1001260,
+ "scoreMania": 1002260,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2047,
+ "id": "20tftr",
+ "songFileName": "song_20tftr",
+ "order": 1021,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7140,
+ "shinutiNormal": 3780,
+ "shinutiHard": 2030,
+ "shinutiMania": 1380,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7140,
+ "shinutiNormalDuet": 3780,
+ "shinutiHardDuet": 2030,
+ "shinutiManiaDuet": 1380,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000530,
+ "scoreNormal": 1001940,
+ "scoreHard": 1002680,
+ "scoreMania": 1000560,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2048,
+ "id": "gdmwss",
+ "songFileName": "song_gdmwss",
+ "order": 1655,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9710,
+ "shinutiNormal": 6180,
+ "shinutiHard": 3200,
+ "shinutiMania": 2210,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9710,
+ "shinutiNormalDuet": 6180,
+ "shinutiHardDuet": 3200,
+ "shinutiManiaDuet": 2210,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000540,
+ "scoreNormal": 1001240,
+ "scoreHard": 1001710,
+ "scoreMania": 1001900,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2049,
+ "id": "holprs",
+ "songFileName": "song_holprs",
+ "order": 1776,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 16230,
+ "shinutiNormal": 6150,
+ "shinutiHard": 3770,
+ "shinutiMania": 2560,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16230,
+ "shinutiNormalDuet": 6150,
+ "shinutiHardDuet": 3770,
+ "shinutiManiaDuet": 2560,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000460,
+ "scoreNormal": 1001580,
+ "scoreHard": 1000700,
+ "scoreMania": 1000500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2050,
+ "id": "holtmp",
+ "songFileName": "song_holtmp",
+ "order": 1778,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 14830,
+ "shinutiNormal": 6350,
+ "shinutiHard": 3600,
+ "shinutiMania": 1850,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14830,
+ "shinutiNormalDuet": 6350,
+ "shinutiHardDuet": 3600,
+ "shinutiManiaDuet": 1850,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000510,
+ "scoreNormal": 1000020,
+ "scoreHard": 1001070,
+ "scoreMania": 1002400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2051,
+ "id": "mappy1",
+ "songFileName": "song_mappy1",
+ "order": 2174,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 13260,
+ "shinutiNormal": 7290,
+ "shinutiHard": 5270,
+ "shinutiMania": 2970,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13260,
+ "shinutiNormalDuet": 7290,
+ "shinutiHardDuet": 5270,
+ "shinutiManiaDuet": 2970,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000620,
+ "scoreNormal": 1000860,
+ "scoreHard": 1000880,
+ "scoreMania": 1000630,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2052,
+ "id": "seiga1",
+ "songFileName": "song_seiga1",
+ "order": 2592,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6680,
+ "shinutiNormal": 4020,
+ "shinutiHard": 2530,
+ "shinutiMania": 1160,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6680,
+ "shinutiNormalDuet": 4020,
+ "shinutiHardDuet": 2530,
+ "shinutiManiaDuet": 1160,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001070,
+ "scoreNormal": 1002290,
+ "scoreHard": 1001150,
+ "scoreMania": 1007110,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2053,
+ "id": "yo7yo7",
+ "songFileName": "song_yo7yo7",
+ "order": 2992,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10710,
+ "shinutiNormal": 6080,
+ "shinutiHard": 3570,
+ "shinutiMania": 2000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10710,
+ "shinutiNormalDuet": 6080,
+ "shinutiHardDuet": 3570,
+ "shinutiManiaDuet": 2000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000210,
+ "scoreNormal": 1001170,
+ "scoreHard": 1001430,
+ "scoreMania": 1003000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2054,
+ "id": "plstlv",
+ "songFileName": "song_plstlv",
+ "order": 2446,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9370,
+ "shinutiNormal": 5480,
+ "shinutiHard": 2900,
+ "shinutiMania": 2160,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9370,
+ "shinutiNormalDuet": 5480,
+ "shinutiHardDuet": 2900,
+ "shinutiManiaDuet": 2160,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000680,
+ "scoreNormal": 1000150,
+ "scoreHard": 1000320,
+ "scoreMania": 1002850,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2055,
+ "id": "powlov",
+ "songFileName": "song_powlov",
+ "order": 2456,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 16360,
+ "shinutiNormal": 9970,
+ "shinutiHard": 5410,
+ "shinutiMania": 3180,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16360,
+ "shinutiNormalDuet": 9970,
+ "shinutiHardDuet": 5410,
+ "shinutiManiaDuet": 3180,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000470,
+ "scoreNormal": 1000500,
+ "scoreHard": 1000220,
+ "scoreMania": 1001890,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2056,
+ "id": "sonic1",
+ "songFileName": "song_sonic1",
+ "order": 2661,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8800,
+ "shinutiNormal": 5400,
+ "shinutiHard": 3570,
+ "shinutiMania": 2270,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8800,
+ "shinutiNormalDuet": 5400,
+ "shinutiHardDuet": 3570,
+ "shinutiManiaDuet": 2270,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000880,
+ "scoreNormal": 1001800,
+ "scoreHard": 1000780,
+ "scoreMania": 1000220,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2057,
+ "id": "citrus",
+ "songFileName": "song_citrus",
+ "order": 1342,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 13640,
+ "shinutiNormal": 8510,
+ "shinutiHard": 5440,
+ "shinutiMania": 3350,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13640,
+ "shinutiNormalDuet": 8510,
+ "shinutiHardDuet": 5440,
+ "shinutiManiaDuet": 3350,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1000810,
+ "scoreHard": 1000060,
+ "scoreMania": 1001670,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2059,
+ "id": "kimznk",
+ "songFileName": "song_kimznk",
+ "order": 2035,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11070,
+ "shinutiNormal": 5990,
+ "shinutiHard": 3740,
+ "shinutiMania": 2290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11070,
+ "shinutiNormalDuet": 5990,
+ "shinutiHardDuet": 3740,
+ "shinutiManiaDuet": 2290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000480,
+ "scoreNormal": 1001620,
+ "scoreHard": 1000370,
+ "scoreMania": 1000490,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2060,
+ "id": "lwitch",
+ "songFileName": "song_lwitch",
+ "order": 2151,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7910,
+ "shinutiNormal": 4510,
+ "shinutiHard": 2300,
+ "shinutiMania": 1360,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7910,
+ "shinutiNormalDuet": 4510,
+ "shinutiHardDuet": 2300,
+ "shinutiManiaDuet": 1360,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001020,
+ "scoreNormal": 1001700,
+ "scoreHard": 1003560,
+ "scoreMania": 1006890,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2061,
+ "id": "pacmte",
+ "songFileName": "song_pacmte",
+ "order": 2414,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10820,
+ "shinutiNormal": 7160,
+ "shinutiHard": 3680,
+ "shinutiMania": 2310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10820,
+ "shinutiNormalDuet": 7160,
+ "shinutiHardDuet": 3680,
+ "shinutiManiaDuet": 2310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000260,
+ "scoreNormal": 1000500,
+ "scoreHard": 1000110,
+ "scoreMania": 1002320,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2062,
+ "id": "kfphon",
+ "songFileName": "song_kfphon",
+ "order": 2018,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 7030,
+ "shinutiNormal": 4300,
+ "shinutiHard": 2370,
+ "shinutiMania": 1710,
+ "shinutiUra": 1090,
+ "shinutiEasyDuet": 7030,
+ "shinutiNormalDuet": 4300,
+ "shinutiHardDuet": 2370,
+ "shinutiManiaDuet": 1710,
+ "shinutiUraDuet": 1090,
+ "scoreEasy": 1001190,
+ "scoreNormal": 1000570,
+ "scoreHard": 1000470,
+ "scoreMania": 1001530,
+ "scoreUra": 1006410
+ },
+ {
+ "uniqueId": 2063,
+ "id": "megm3x",
+ "songFileName": "song_megm3x",
+ "order": 2203,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8180,
+ "shinutiNormal": 6070,
+ "shinutiHard": 3570,
+ "shinutiMania": 1460,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8180,
+ "shinutiNormalDuet": 6070,
+ "shinutiHardDuet": 3570,
+ "shinutiManiaDuet": 1460,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000370,
+ "scoreNormal": 1000870,
+ "scoreHard": 1002330,
+ "scoreMania": 1002410,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2064,
+ "id": "mndoor",
+ "songFileName": "song_mndoor",
+ "order": 2277,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 12380,
+ "shinutiNormal": 8590,
+ "shinutiHard": 4220,
+ "shinutiMania": 2590,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12380,
+ "shinutiNormalDuet": 8590,
+ "shinutiHardDuet": 4220,
+ "shinutiManiaDuet": 2590,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000670,
+ "scoreNormal": 1000390,
+ "scoreHard": 1000560,
+ "scoreMania": 1003770,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2065,
+ "id": "ohdmi2",
+ "songFileName": "song_ohdmi2",
+ "order": 2372,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 12220,
+ "shinutiNormal": 7960,
+ "shinutiHard": 4700,
+ "shinutiMania": 2390,
+ "shinutiUra": 1670,
+ "shinutiEasyDuet": 12220,
+ "shinutiNormalDuet": 7960,
+ "shinutiHardDuet": 4700,
+ "shinutiManiaDuet": 2390,
+ "shinutiUraDuet": 1670,
+ "scoreEasy": 1000170,
+ "scoreNormal": 1000430,
+ "scoreHard": 1001450,
+ "scoreMania": 1003830,
+ "scoreUra": 1003100
+ },
+ {
+ "uniqueId": 2066,
+ "id": "pkm121",
+ "songFileName": "song_pkm121",
+ "order": 2433,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 15290,
+ "shinutiNormal": 11680,
+ "shinutiHard": 3970,
+ "shinutiMania": 2330,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 15290,
+ "shinutiNormalDuet": 11680,
+ "shinutiHardDuet": 3970,
+ "shinutiManiaDuet": 2330,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000240,
+ "scoreNormal": 1000590,
+ "scoreHard": 1001070,
+ "scoreMania": 1000670,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2067,
+ "id": "hol6po",
+ "songFileName": "song_hol6po",
+ "order": 1770,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": true,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 10,
+ "shinutiEasy": 11160,
+ "shinutiNormal": 5780,
+ "shinutiHard": 3250,
+ "shinutiMania": 1940,
+ "shinutiUra": 850,
+ "shinutiEasyDuet": 11160,
+ "shinutiNormalDuet": 5780,
+ "shinutiHardDuet": 3250,
+ "shinutiManiaDuet": 1940,
+ "shinutiUraDuet": 850,
+ "scoreEasy": 1000610,
+ "scoreNormal": 1000120,
+ "scoreHard": 1002160,
+ "scoreMania": 1000650,
+ "scoreUra": 1000450
+ },
+ {
+ "uniqueId": 2068,
+ "id": "wego",
+ "songFileName": "song_wego",
+ "order": 2943,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 7040,
+ "shinutiNormal": 5360,
+ "shinutiHard": 2700,
+ "shinutiMania": 1720,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7040,
+ "shinutiNormalDuet": 5360,
+ "shinutiHardDuet": 2700,
+ "shinutiManiaDuet": 1720,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000500,
+ "scoreNormal": 1001450,
+ "scoreHard": 1002980,
+ "scoreMania": 1002690,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2069,
+ "id": "kimakb",
+ "songFileName": "song_kimakb",
+ "order": 2027,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": true,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 18380,
+ "shinutiNormal": 10310,
+ "shinutiHard": 6250,
+ "shinutiMania": 4210,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18380,
+ "shinutiNormalDuet": 10310,
+ "shinutiHardDuet": 6250,
+ "shinutiManiaDuet": 4210,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000380,
+ "scoreNormal": 1000580,
+ "scoreHard": 1000000,
+ "scoreMania": 1001470,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2070,
+ "id": "skohab",
+ "songFileName": "song_skohab",
+ "order": 2638,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 8,
+ "shinutiEasy": 11170,
+ "shinutiNormal": 6310,
+ "shinutiHard": 3850,
+ "shinutiMania": 2550,
+ "shinutiUra": 1530,
+ "shinutiEasyDuet": 11170,
+ "shinutiNormalDuet": 6310,
+ "shinutiHardDuet": 3850,
+ "shinutiManiaDuet": 2550,
+ "shinutiUraDuet": 1530,
+ "scoreEasy": 1000650,
+ "scoreNormal": 1000120,
+ "scoreHard": 1000420,
+ "scoreMania": 1001390,
+ "scoreUra": 1003880
+ },
+ {
+ "uniqueId": 2071,
+ "id": "metamt",
+ "songFileName": "song_metamt",
+ "order": 2208,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6670,
+ "shinutiNormal": 4680,
+ "shinutiHard": 3030,
+ "shinutiMania": 1780,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6670,
+ "shinutiNormalDuet": 4680,
+ "shinutiHardDuet": 3030,
+ "shinutiManiaDuet": 1780,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000990,
+ "scoreNormal": 1001460,
+ "scoreHard": 1000670,
+ "scoreMania": 1003920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2072,
+ "id": "otomuh",
+ "songFileName": "song_otomuh",
+ "order": 2401,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 8520,
+ "shinutiNormal": 4710,
+ "shinutiHard": 2530,
+ "shinutiMania": 1710,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8520,
+ "shinutiNormalDuet": 4710,
+ "shinutiHardDuet": 2530,
+ "shinutiManiaDuet": 1710,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000990,
+ "scoreNormal": 1001470,
+ "scoreHard": 1001410,
+ "scoreMania": 1004140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2073,
+ "id": "holhom",
+ "songFileName": "song_holhom",
+ "order": 1773,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 2,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 16560,
+ "shinutiNormal": 9910,
+ "shinutiHard": 6330,
+ "shinutiMania": 3360,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16560,
+ "shinutiNormalDuet": 9910,
+ "shinutiHardDuet": 6330,
+ "shinutiManiaDuet": 3360,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000490,
+ "scoreNormal": 1000280,
+ "scoreHard": 1001540,
+ "scoreMania": 1000960,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2074,
+ "id": "holsmg",
+ "songFileName": "song_holsmg",
+ "order": 1777,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10330,
+ "shinutiNormal": 6780,
+ "shinutiHard": 3960,
+ "shinutiMania": 2000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10330,
+ "shinutiNormalDuet": 6780,
+ "shinutiHardDuet": 3960,
+ "shinutiManiaDuet": 2000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000130,
+ "scoreNormal": 1000660,
+ "scoreHard": 1000470,
+ "scoreMania": 1002770,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2075,
+ "id": "kjksi",
+ "songFileName": "song_kjksi",
+ "order": 2048,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 6890,
+ "shinutiNormal": 3940,
+ "shinutiHard": 2310,
+ "shinutiMania": 1530,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6890,
+ "shinutiNormalDuet": 3940,
+ "shinutiHardDuet": 2310,
+ "shinutiManiaDuet": 1530,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001060,
+ "scoreNormal": 1000790,
+ "scoreHard": 1002320,
+ "scoreMania": 1001120,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2076,
+ "id": "1pssj2",
+ "songFileName": "song_1pssj2",
+ "order": 1010,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9750,
+ "shinutiNormal": 4160,
+ "shinutiHard": 2980,
+ "shinutiMania": 1800,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9750,
+ "shinutiNormalDuet": 4160,
+ "shinutiHardDuet": 2980,
+ "shinutiManiaDuet": 1800,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000940,
+ "scoreNormal": 1001450,
+ "scoreHard": 1000960,
+ "scoreMania": 1001630,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2077,
+ "id": "bshark",
+ "songFileName": "song_bshark",
+ "order": 1280,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 3,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 17770,
+ "shinutiNormal": 10800,
+ "shinutiHard": 5270,
+ "shinutiMania": 3100,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 17770,
+ "shinutiNormalDuet": 10800,
+ "shinutiHardDuet": 5270,
+ "shinutiManiaDuet": 3100,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000280,
+ "scoreNormal": 1000490,
+ "scoreHard": 1001040,
+ "scoreMania": 1001480,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2078,
+ "id": "crtfix",
+ "songFileName": "song_crtfix",
+ "order": 1423,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 8240,
+ "shinutiNormal": 3970,
+ "shinutiHard": 1730,
+ "shinutiMania": 930,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8240,
+ "shinutiNormalDuet": 3970,
+ "shinutiHardDuet": 1730,
+ "shinutiManiaDuet": 930,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1001100,
+ "scoreHard": 1004390,
+ "scoreMania": 1004490,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2079,
+ "id": "holahy",
+ "songFileName": "song_holahy",
+ "order": 1771,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8950,
+ "shinutiNormal": 5060,
+ "shinutiHard": 3260,
+ "shinutiMania": 2310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8950,
+ "shinutiNormalDuet": 5060,
+ "shinutiHardDuet": 3260,
+ "shinutiManiaDuet": 2310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000690,
+ "scoreNormal": 1000810,
+ "scoreHard": 1002810,
+ "scoreMania": 1002380,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2080,
+ "id": "holnnn",
+ "songFileName": "song_holnnn",
+ "order": 1774,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8790,
+ "shinutiNormal": 5360,
+ "shinutiHard": 3460,
+ "shinutiMania": 2200,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8790,
+ "shinutiNormalDuet": 5360,
+ "shinutiHardDuet": 3460,
+ "shinutiManiaDuet": 2200,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000850,
+ "scoreNormal": 1000970,
+ "scoreHard": 1001690,
+ "scoreMania": 1001780,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2081,
+ "id": "vivivi",
+ "songFileName": "song_vivivi",
+ "order": 2914,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 9550,
+ "shinutiNormal": 5800,
+ "shinutiHard": 3280,
+ "shinutiMania": 1500,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9550,
+ "shinutiNormalDuet": 5800,
+ "shinutiHardDuet": 3280,
+ "shinutiManiaDuet": 1500,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000540,
+ "scoreNormal": 1001270,
+ "scoreHard": 1000500,
+ "scoreMania": 1002950,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2082,
+ "id": "kaneda",
+ "songFileName": "song_kaneda",
+ "order": 1999,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9150,
+ "shinutiNormal": 5730,
+ "shinutiHard": 2670,
+ "shinutiMania": 2010,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9150,
+ "shinutiNormalDuet": 5730,
+ "shinutiHardDuet": 2670,
+ "shinutiManiaDuet": 2010,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000440,
+ "scoreNormal": 1000770,
+ "scoreHard": 1001040,
+ "scoreMania": 1004740,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2083,
+ "id": "timing",
+ "songFileName": "song_timing",
+ "order": 2795,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 12130,
+ "shinutiNormal": 6530,
+ "shinutiHard": 4080,
+ "shinutiMania": 2520,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12130,
+ "shinutiNormalDuet": 6530,
+ "shinutiHardDuet": 4080,
+ "shinutiManiaDuet": 2520,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000650,
+ "scoreNormal": 1000650,
+ "scoreHard": 1000520,
+ "scoreMania": 1003920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2084,
+ "id": "extrap",
+ "songFileName": "song_extrap",
+ "order": 1586,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5940,
+ "shinutiNormal": 3800,
+ "shinutiHard": 2140,
+ "shinutiMania": 1130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5940,
+ "shinutiNormalDuet": 3800,
+ "shinutiHardDuet": 2140,
+ "shinutiManiaDuet": 1130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001440,
+ "scoreNormal": 1000220,
+ "scoreHard": 1002840,
+ "scoreMania": 1006540,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2085,
+ "id": "gdmsui",
+ "songFileName": "song_gdmsui",
+ "order": 1653,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 11030,
+ "shinutiNormal": 4950,
+ "shinutiHard": 2900,
+ "shinutiMania": 1980,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11030,
+ "shinutiNormalDuet": 4950,
+ "shinutiHardDuet": 2900,
+ "shinutiManiaDuet": 1980,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000440,
+ "scoreNormal": 1001550,
+ "scoreHard": 1003080,
+ "scoreMania": 1004680,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2086,
+ "id": "hol168",
+ "songFileName": "song_hol168",
+ "order": 1769,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7630,
+ "shinutiNormal": 4020,
+ "shinutiHard": 2710,
+ "shinutiMania": 1840,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7630,
+ "shinutiNormalDuet": 4020,
+ "shinutiHardDuet": 2710,
+ "shinutiManiaDuet": 1840,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000940,
+ "scoreNormal": 1001130,
+ "scoreHard": 1003320,
+ "scoreMania": 1001960,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2087,
+ "id": "holovd",
+ "songFileName": "song_holovd",
+ "order": 1775,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 10,
+ "shinutiEasy": 6880,
+ "shinutiNormal": 4140,
+ "shinutiHard": 2790,
+ "shinutiMania": 2260,
+ "shinutiUra": 1370,
+ "shinutiEasyDuet": 6880,
+ "shinutiNormalDuet": 4140,
+ "shinutiHardDuet": 2790,
+ "shinutiManiaDuet": 2260,
+ "shinutiUraDuet": 1370,
+ "scoreEasy": 1001050,
+ "scoreNormal": 1002320,
+ "scoreHard": 1001120,
+ "scoreMania": 1001980,
+ "scoreUra": 1006430
+ },
+ {
+ "uniqueId": 2088,
+ "id": "krgeat",
+ "songFileName": "song_krgeat",
+ "order": 2079,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 19920,
+ "shinutiNormal": 10470,
+ "shinutiHard": 5010,
+ "shinutiMania": 3470,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 19920,
+ "shinutiNormalDuet": 10470,
+ "shinutiHardDuet": 5010,
+ "shinutiManiaDuet": 3470,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000130,
+ "scoreNormal": 1000530,
+ "scoreHard": 1000240,
+ "scoreMania": 1001490,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2089,
+ "id": "mikkmp",
+ "songFileName": "song_mikkmp",
+ "order": 2235,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10060,
+ "shinutiNormal": 5530,
+ "shinutiHard": 3360,
+ "shinutiMania": 2130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10060,
+ "shinutiNormalDuet": 5530,
+ "shinutiHardDuet": 3360,
+ "shinutiManiaDuet": 2130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1000960,
+ "scoreHard": 1002170,
+ "scoreMania": 1003680,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2090,
+ "id": "tosym",
+ "songFileName": "song_tosym",
+ "order": 2824,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10240,
+ "shinutiNormal": 5290,
+ "shinutiHard": 3310,
+ "shinutiMania": 2470,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10240,
+ "shinutiNormalDuet": 5290,
+ "shinutiHardDuet": 3310,
+ "shinutiManiaDuet": 2470,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000060,
+ "scoreNormal": 1001530,
+ "scoreHard": 1002310,
+ "scoreMania": 1002270,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2091,
+ "id": "watakw",
+ "songFileName": "song_watakw",
+ "order": 2936,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 13810,
+ "shinutiNormal": 8280,
+ "shinutiHard": 4130,
+ "shinutiMania": 2780,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13810,
+ "shinutiNormalDuet": 8280,
+ "shinutiHardDuet": 4130,
+ "shinutiManiaDuet": 2780,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000500,
+ "scoreNormal": 1000230,
+ "scoreHard": 1000510,
+ "scoreMania": 1000710,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2092,
+ "id": "badguy",
+ "songFileName": "song_badguy",
+ "order": 1234,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7620,
+ "shinutiNormal": 4300,
+ "shinutiHard": 3250,
+ "shinutiMania": 2550,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7620,
+ "shinutiNormalDuet": 4300,
+ "shinutiHardDuet": 3250,
+ "shinutiManiaDuet": 2550,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000940,
+ "scoreNormal": 1000900,
+ "scoreHard": 1002220,
+ "scoreMania": 1000180,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2093,
+ "id": "cpyoak",
+ "songFileName": "song_cpyoak",
+ "order": 1419,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4270,
+ "shinutiNormal": 2630,
+ "shinutiHard": 1660,
+ "shinutiMania": 1040,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4270,
+ "shinutiNormalDuet": 2630,
+ "shinutiHardDuet": 1660,
+ "shinutiManiaDuet": 1040,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000950,
+ "scoreNormal": 1001000,
+ "scoreHard": 1002070,
+ "scoreMania": 1007090,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2094,
+ "id": "dobakb",
+ "songFileName": "song_dobakb",
+ "order": 1497,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4210,
+ "shinutiNormal": 2660,
+ "shinutiHard": 1900,
+ "shinutiMania": 1210,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4210,
+ "shinutiNormalDuet": 2660,
+ "shinutiHardDuet": 1900,
+ "shinutiManiaDuet": 1210,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1002060,
+ "scoreNormal": 1000350,
+ "scoreHard": 1001010,
+ "scoreMania": 1003300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2095,
+ "id": "mgadh",
+ "songFileName": "song_mgadh",
+ "order": 2212,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9760,
+ "shinutiNormal": 6140,
+ "shinutiHard": 3170,
+ "shinutiMania": 2110,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9760,
+ "shinutiNormalDuet": 6140,
+ "shinutiHardDuet": 3170,
+ "shinutiManiaDuet": 2110,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000620,
+ "scoreNormal": 1001410,
+ "scoreHard": 1003090,
+ "scoreMania": 1000550,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2096,
+ "id": "mikdp",
+ "songFileName": "song_mikdp",
+ "order": 2233,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6790,
+ "shinutiNormal": 4230,
+ "shinutiHard": 2180,
+ "shinutiMania": 1110,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6790,
+ "shinutiNormalDuet": 4230,
+ "shinutiHardDuet": 2180,
+ "shinutiManiaDuet": 1110,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000420,
+ "scoreNormal": 1002310,
+ "scoreHard": 1000660,
+ "scoreMania": 1002970,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2097,
+ "id": "teknow",
+ "songFileName": "song_teknow",
+ "order": 2755,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6200,
+ "shinutiNormal": 2920,
+ "shinutiHard": 1750,
+ "shinutiMania": 1120,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6200,
+ "shinutiNormalDuet": 2920,
+ "shinutiHardDuet": 1750,
+ "shinutiManiaDuet": 1120,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000230,
+ "scoreNormal": 1003030,
+ "scoreHard": 1001480,
+ "scoreMania": 1002260,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2098,
+ "id": "clspgn",
+ "songFileName": "song_clspgn",
+ "order": 1387,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4990,
+ "shinutiNormal": 2810,
+ "shinutiHard": 1690,
+ "shinutiMania": 1120,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4990,
+ "shinutiNormalDuet": 2810,
+ "shinutiHardDuet": 1690,
+ "shinutiManiaDuet": 1120,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001580,
+ "scoreNormal": 1001450,
+ "scoreHard": 1005000,
+ "scoreMania": 1008420,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2099,
+ "id": "dobbkr",
+ "songFileName": "song_dobbkr",
+ "order": 1499,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5870,
+ "shinutiNormal": 3020,
+ "shinutiHard": 2010,
+ "shinutiMania": 1190,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5870,
+ "shinutiNormalDuet": 3020,
+ "shinutiHardDuet": 2010,
+ "shinutiManiaDuet": 1190,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000880,
+ "scoreNormal": 1003070,
+ "scoreHard": 1003570,
+ "scoreMania": 1002480,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2100,
+ "id": "dobiam",
+ "songFileName": "song_dobiam",
+ "order": 1506,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7080,
+ "shinutiNormal": 4770,
+ "shinutiHard": 2840,
+ "shinutiMania": 1690,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7080,
+ "shinutiNormalDuet": 4770,
+ "shinutiHardDuet": 2840,
+ "shinutiManiaDuet": 1690,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000350,
+ "scoreNormal": 1000150,
+ "scoreHard": 1003020,
+ "scoreMania": 1001290,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2101,
+ "id": "mksskn",
+ "songFileName": "song_mksskn",
+ "order": 2272,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8620,
+ "shinutiNormal": 4020,
+ "shinutiHard": 2890,
+ "shinutiMania": 1640,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8620,
+ "shinutiNormalDuet": 4020,
+ "shinutiHardDuet": 2890,
+ "shinutiManiaDuet": 1640,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001040,
+ "scoreNormal": 1000430,
+ "scoreHard": 1001770,
+ "scoreMania": 1001520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2102,
+ "id": "rr6pac",
+ "songFileName": "song_rr6pac",
+ "order": 2560,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6510,
+ "shinutiNormal": 3490,
+ "shinutiHard": 2090,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6510,
+ "shinutiNormalDuet": 3490,
+ "shinutiHardDuet": 2090,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000440,
+ "scoreNormal": 1002810,
+ "scoreHard": 1001530,
+ "scoreMania": 1003610,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2103,
+ "id": "wxyta2",
+ "songFileName": "song_wxyta2",
+ "order": 2960,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12020,
+ "shinutiNormal": 8370,
+ "shinutiHard": 5490,
+ "shinutiMania": 2950,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12020,
+ "shinutiNormalDuet": 8370,
+ "shinutiHardDuet": 5490,
+ "shinutiManiaDuet": 2950,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000760,
+ "scoreNormal": 1000530,
+ "scoreHard": 1001170,
+ "scoreMania": 1000590,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2104,
+ "id": "dai0kn",
+ "songFileName": "song_dai0kn",
+ "order": 1439,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11710,
+ "shinutiNormal": 6090,
+ "shinutiHard": 3290,
+ "shinutiMania": 2340,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11710,
+ "shinutiNormalDuet": 6090,
+ "shinutiHardDuet": 3290,
+ "shinutiManiaDuet": 2340,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000380,
+ "scoreNormal": 1000260,
+ "scoreHard": 1001010,
+ "scoreMania": 1004200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2105,
+ "id": "dobcrs",
+ "songFileName": "song_dobcrs",
+ "order": 1501,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8770,
+ "shinutiNormal": 5260,
+ "shinutiHard": 3020,
+ "shinutiMania": 2000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8770,
+ "shinutiNormalDuet": 5260,
+ "shinutiHardDuet": 3020,
+ "shinutiManiaDuet": 2000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001020,
+ "scoreNormal": 1000900,
+ "scoreHard": 1001650,
+ "scoreMania": 1004200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2106,
+ "id": "dobgnb",
+ "songFileName": "song_dobgnb",
+ "order": 1503,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9760,
+ "shinutiNormal": 5790,
+ "shinutiHard": 4940,
+ "shinutiMania": 2450,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9760,
+ "shinutiNormalDuet": 5790,
+ "shinutiHardDuet": 4940,
+ "shinutiManiaDuet": 2450,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000270,
+ "scoreNormal": 1001620,
+ "scoreHard": 1000980,
+ "scoreMania": 1002010,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2107,
+ "id": "giosto",
+ "songFileName": "song_giosto",
+ "order": 1680,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7700,
+ "shinutiNormal": 4320,
+ "shinutiHard": 3470,
+ "shinutiMania": 2520,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7700,
+ "shinutiNormalDuet": 4320,
+ "shinutiHardDuet": 3470,
+ "shinutiManiaDuet": 2520,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000680,
+ "scoreNormal": 1002230,
+ "scoreHard": 1002850,
+ "scoreMania": 1001170,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2108,
+ "id": "gum41d",
+ "songFileName": "song_gum41d",
+ "order": 1709,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8810,
+ "shinutiNormal": 5620,
+ "shinutiHard": 2830,
+ "shinutiMania": 2060,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8810,
+ "shinutiNormalDuet": 5620,
+ "shinutiHardDuet": 2830,
+ "shinutiManiaDuet": 2060,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000580,
+ "scoreNormal": 1001300,
+ "scoreHard": 1001310,
+ "scoreMania": 1003730,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2109,
+ "id": "ohdsub",
+ "songFileName": "song_ohdsub",
+ "order": 2374,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12730,
+ "shinutiNormal": 8370,
+ "shinutiHard": 5650,
+ "shinutiMania": 3560,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12730,
+ "shinutiNormalDuet": 8370,
+ "shinutiHardDuet": 5650,
+ "shinutiManiaDuet": 3560,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000140,
+ "scoreNormal": 1000250,
+ "scoreHard": 1000310,
+ "scoreMania": 1000240,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2111,
+ "id": "snhero",
+ "songFileName": "song_snhero",
+ "order": 2649,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10300,
+ "shinutiNormal": 5450,
+ "shinutiHard": 3430,
+ "shinutiMania": 2630,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10300,
+ "shinutiNormalDuet": 5450,
+ "shinutiHardDuet": 3430,
+ "shinutiManiaDuet": 2630,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1000890,
+ "scoreHard": 1000180,
+ "scoreMania": 1000610,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2112,
+ "id": "xevi",
+ "songFileName": "song_xevi",
+ "order": 2965,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 7720,
+ "shinutiNormal": 4690,
+ "shinutiHard": 3450,
+ "shinutiMania": 2960,
+ "shinutiUra": 1460,
+ "shinutiEasyDuet": 7720,
+ "shinutiNormalDuet": 4690,
+ "shinutiHardDuet": 3450,
+ "shinutiManiaDuet": 2960,
+ "shinutiUraDuet": 1460,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1001810,
+ "scoreHard": 1000050,
+ "scoreMania": 1001440,
+ "scoreUra": 1002700
+ },
+ {
+ "uniqueId": 2113,
+ "id": "gdmchr",
+ "songFileName": "song_gdmchr",
+ "order": 1650,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 8,
+ "shinutiEasy": 12720,
+ "shinutiNormal": 7730,
+ "shinutiHard": 4250,
+ "shinutiMania": 3060,
+ "shinutiUra": 2180,
+ "shinutiEasyDuet": 12720,
+ "shinutiNormalDuet": 7730,
+ "shinutiHardDuet": 4250,
+ "shinutiManiaDuet": 3060,
+ "shinutiUraDuet": 2180,
+ "scoreEasy": 1000050,
+ "scoreNormal": 1000580,
+ "scoreHard": 1000900,
+ "scoreMania": 1000270,
+ "scoreUra": 1002340
+ },
+ {
+ "uniqueId": 2114,
+ "id": "nainai",
+ "songFileName": "song_nainai",
+ "order": 2315,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11380,
+ "shinutiNormal": 7150,
+ "shinutiHard": 3590,
+ "shinutiMania": 2500,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11380,
+ "shinutiNormalDuet": 7150,
+ "shinutiHardDuet": 3590,
+ "shinutiManiaDuet": 2500,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000190,
+ "scoreNormal": 1000680,
+ "scoreHard": 1002460,
+ "scoreMania": 1002170,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2115,
+ "id": "trigun",
+ "songFileName": "song_trigun",
+ "order": 2840,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10950,
+ "shinutiNormal": 6180,
+ "shinutiHard": 2960,
+ "shinutiMania": 1920,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10950,
+ "shinutiNormalDuet": 6180,
+ "shinutiHardDuet": 2960,
+ "shinutiManiaDuet": 1920,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000900,
+ "scoreNormal": 1000420,
+ "scoreHard": 1002280,
+ "scoreMania": 1000670,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2116,
+ "id": "bouabr",
+ "songFileName": "song_bouabr",
+ "order": 1271,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 16850,
+ "shinutiNormal": 11690,
+ "shinutiHard": 6250,
+ "shinutiMania": 4460,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16850,
+ "shinutiNormalDuet": 11690,
+ "shinutiHardDuet": 6250,
+ "shinutiManiaDuet": 4460,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000490,
+ "scoreNormal": 1000110,
+ "scoreHard": 1000690,
+ "scoreMania": 1001490,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2117,
+ "id": "fmura2",
+ "songFileName": "song_fmura2",
+ "order": 1614,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 4,
+ "starUra": 0,
+ "shinutiEasy": 16130,
+ "shinutiNormal": 8480,
+ "shinutiHard": 5500,
+ "shinutiMania": 4210,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16130,
+ "shinutiNormalDuet": 8480,
+ "shinutiHardDuet": 5500,
+ "shinutiManiaDuet": 4210,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000060,
+ "scoreNormal": 1000640,
+ "scoreHard": 1001000,
+ "scoreMania": 1002080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2118,
+ "id": "strmin",
+ "songFileName": "song_strmin",
+ "order": 2699,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11190,
+ "shinutiNormal": 7770,
+ "shinutiHard": 3330,
+ "shinutiMania": 2380,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11190,
+ "shinutiNormalDuet": 7770,
+ "shinutiHardDuet": 3330,
+ "shinutiManiaDuet": 2380,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000120,
+ "scoreNormal": 1000700,
+ "scoreHard": 1001870,
+ "scoreMania": 1000240,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2119,
+ "id": "surges",
+ "songFileName": "song_surges",
+ "order": 2711,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9580,
+ "shinutiNormal": 5500,
+ "shinutiHard": 3080,
+ "shinutiMania": 1860,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9580,
+ "shinutiNormalDuet": 5500,
+ "shinutiHardDuet": 3080,
+ "shinutiManiaDuet": 1860,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001000,
+ "scoreNormal": 1001790,
+ "scoreHard": 1002180,
+ "scoreMania": 1003430,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2120,
+ "id": "tontwi",
+ "songFileName": "song_tontwi",
+ "order": 2818,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5260,
+ "shinutiNormal": 2770,
+ "shinutiHard": 1870,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5260,
+ "shinutiNormalDuet": 2770,
+ "shinutiHardDuet": 1870,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000880,
+ "scoreNormal": 1003550,
+ "scoreHard": 1005320,
+ "scoreMania": 1002650,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2121,
+ "id": "twcttk",
+ "songFileName": "song_twcttk",
+ "order": 2859,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10940,
+ "shinutiNormal": 6460,
+ "shinutiHard": 4840,
+ "shinutiMania": 3630,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10940,
+ "shinutiNormalDuet": 6460,
+ "shinutiHardDuet": 4840,
+ "shinutiManiaDuet": 3630,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000180,
+ "scoreNormal": 1000620,
+ "scoreHard": 1001890,
+ "scoreMania": 1002090,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2122,
+ "id": "goonya",
+ "songFileName": "song_goonya",
+ "order": 1704,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 11470,
+ "shinutiNormal": 5930,
+ "shinutiHard": 3650,
+ "shinutiMania": 2240,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11470,
+ "shinutiNormalDuet": 5930,
+ "shinutiHardDuet": 3650,
+ "shinutiManiaDuet": 2240,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000470,
+ "scoreNormal": 1000460,
+ "scoreHard": 1001250,
+ "scoreMania": 1003280,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2123,
+ "id": "scarbl",
+ "songFileName": "song_scarbl",
+ "order": 2588,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9870,
+ "shinutiNormal": 5330,
+ "shinutiHard": 3430,
+ "shinutiMania": 2240,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9870,
+ "shinutiNormalDuet": 5330,
+ "shinutiHardDuet": 3430,
+ "shinutiManiaDuet": 2240,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1001510,
+ "scoreHard": 1001190,
+ "scoreMania": 1001490,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2124,
+ "id": "souvnr",
+ "songFileName": "song_souvnr",
+ "order": 2674,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 11280,
+ "shinutiNormal": 6930,
+ "shinutiHard": 3990,
+ "shinutiMania": 2410,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11280,
+ "shinutiNormalDuet": 6930,
+ "shinutiHardDuet": 3990,
+ "shinutiManiaDuet": 2410,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000320,
+ "scoreNormal": 1000760,
+ "scoreHard": 1002350,
+ "scoreMania": 1000970,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2125,
+ "id": "torays",
+ "songFileName": "song_torays",
+ "order": 2824,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 11450,
+ "shinutiNormal": 7710,
+ "shinutiHard": 5090,
+ "shinutiMania": 3610,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11450,
+ "shinutiNormalDuet": 7710,
+ "shinutiHardDuet": 5090,
+ "shinutiManiaDuet": 3610,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000720,
+ "scoreNormal": 1000320,
+ "scoreHard": 1000210,
+ "scoreMania": 1002270,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2126,
+ "id": "disjmb",
+ "songFileName": "song_disjmb",
+ "order": 1494,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 9320,
+ "shinutiNormal": 6470,
+ "shinutiHard": 3700,
+ "shinutiMania": 2480,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9320,
+ "shinutiNormalDuet": 6470,
+ "shinutiHardDuet": 3700,
+ "shinutiManiaDuet": 2480,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000580,
+ "scoreNormal": 1000530,
+ "scoreHard": 1000930,
+ "scoreMania": 1002440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2127,
+ "id": "kw5men",
+ "songFileName": "song_kw5men",
+ "order": 2101,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7390,
+ "shinutiNormal": 4210,
+ "shinutiHard": 2850,
+ "shinutiMania": 1870,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7390,
+ "shinutiNormalDuet": 4210,
+ "shinutiHardDuet": 2850,
+ "shinutiManiaDuet": 1870,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000060,
+ "scoreNormal": 1000690,
+ "scoreHard": 1000630,
+ "scoreMania": 1001140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2128,
+ "id": "min7kg",
+ "songFileName": "song_min7kg",
+ "order": 2271,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5140,
+ "shinutiNormal": 2990,
+ "shinutiHard": 2020,
+ "shinutiMania": 1280,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5140,
+ "shinutiNormalDuet": 2990,
+ "shinutiHardDuet": 2020,
+ "shinutiManiaDuet": 1280,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001790,
+ "scoreNormal": 1000960,
+ "scoreHard": 1002540,
+ "scoreMania": 1001030,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2129,
+ "id": "timimo",
+ "songFileName": "song_timimo",
+ "order": 2806,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5080,
+ "shinutiNormal": 3020,
+ "shinutiHard": 1810,
+ "shinutiMania": 920,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5080,
+ "shinutiNormalDuet": 3020,
+ "shinutiHardDuet": 1810,
+ "shinutiManiaDuet": 920,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000770,
+ "scoreNormal": 1000050,
+ "scoreHard": 1000170,
+ "scoreMania": 1009540,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2130,
+ "id": "tkrcop",
+ "songFileName": "song_tkrcop",
+ "order": 2810,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8430,
+ "shinutiNormal": 4880,
+ "shinutiHard": 2220,
+ "shinutiMania": 1550,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8430,
+ "shinutiNormalDuet": 4880,
+ "shinutiHardDuet": 2220,
+ "shinutiManiaDuet": 1550,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000380,
+ "scoreNormal": 1000490,
+ "scoreHard": 1000770,
+ "scoreMania": 1004110,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2131,
+ "id": "challe",
+ "songFileName": "song_challe",
+ "order": 1325,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4780,
+ "shinutiNormal": 3410,
+ "shinutiHard": 2390,
+ "shinutiMania": 1320,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4780,
+ "shinutiNormalDuet": 3410,
+ "shinutiHardDuet": 2390,
+ "shinutiManiaDuet": 1320,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001750,
+ "scoreNormal": 1000950,
+ "scoreHard": 1002880,
+ "scoreMania": 1004090,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2132,
+ "id": "clsc2",
+ "songFileName": "song_clsc2",
+ "order": 1355,
+ "genreNo": 5,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 5460,
+ "shinutiNormal": 4340,
+ "shinutiHard": 2740,
+ "shinutiMania": 2100,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5460,
+ "shinutiNormalDuet": 4340,
+ "shinutiHardDuet": 2740,
+ "shinutiManiaDuet": 2100,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000920,
+ "scoreNormal": 1000670,
+ "scoreHard": 1003220,
+ "scoreMania": 1000940,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2133,
+ "id": "cs5op",
+ "songFileName": "song_cs5op",
+ "order": 1432,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 6400,
+ "shinutiNormal": 4510,
+ "shinutiHard": 3380,
+ "shinutiMania": 2600,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6400,
+ "shinutiNormalDuet": 4510,
+ "shinutiHardDuet": 3380,
+ "shinutiManiaDuet": 2600,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001360,
+ "scoreNormal": 1000330,
+ "scoreHard": 1001850,
+ "scoreMania": 1000200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2134,
+ "id": "cs6op",
+ "songFileName": "song_cs6op",
+ "order": 1433,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 12150,
+ "shinutiNormal": 8360,
+ "shinutiHard": 4170,
+ "shinutiMania": 2830,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12150,
+ "shinutiNormalDuet": 8360,
+ "shinutiHardDuet": 4170,
+ "shinutiManiaDuet": 2830,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000180,
+ "scoreNormal": 1000800,
+ "scoreHard": 1000180,
+ "scoreMania": 1001090,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2135,
+ "id": "csabed",
+ "songFileName": "song_csabed",
+ "order": 1435,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 7320,
+ "shinutiNormal": 5470,
+ "shinutiHard": 4010,
+ "shinutiMania": 2820,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7320,
+ "shinutiNormalDuet": 5470,
+ "shinutiHardDuet": 4010,
+ "shinutiManiaDuet": 2820,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000320,
+ "scoreNormal": 1001660,
+ "scoreHard": 1001010,
+ "scoreMania": 1001590,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2136,
+ "id": "moeyod",
+ "songFileName": "song_moeyod",
+ "order": 2291,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 16340,
+ "shinutiNormal": 9130,
+ "shinutiHard": 4700,
+ "shinutiMania": 3080,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16340,
+ "shinutiNormalDuet": 9130,
+ "shinutiHardDuet": 4700,
+ "shinutiManiaDuet": 3080,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000540,
+ "scoreNormal": 1000010,
+ "scoreHard": 1000270,
+ "scoreMania": 1001210,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2137,
+ "id": "sesami",
+ "songFileName": "song_sesami",
+ "order": 2613,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 18260,
+ "shinutiNormal": 11440,
+ "shinutiHard": 5110,
+ "shinutiMania": 3500,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18260,
+ "shinutiNormalDuet": 11440,
+ "shinutiHardDuet": 5110,
+ "shinutiManiaDuet": 3500,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000420,
+ "scoreNormal": 1000360,
+ "scoreHard": 1000280,
+ "scoreMania": 1002300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2138,
+ "id": "alcdp",
+ "songFileName": "song_alcdp",
+ "order": 1172,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 10,
+ "shinutiEasy": 7310,
+ "shinutiNormal": 3920,
+ "shinutiHard": 2690,
+ "shinutiMania": 1560,
+ "shinutiUra": 1080,
+ "shinutiEasyDuet": 7310,
+ "shinutiNormalDuet": 3920,
+ "shinutiHardDuet": 2690,
+ "shinutiManiaDuet": 1560,
+ "shinutiUraDuet": 1080,
+ "scoreEasy": 1000460,
+ "scoreNormal": 1000060,
+ "scoreHard": 1002320,
+ "scoreMania": 1005140,
+ "scoreUra": 1007620
+ },
+ {
+ "uniqueId": 2139,
+ "id": "dddsst",
+ "songFileName": "song_dddsst",
+ "order": 1484,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 6100,
+ "shinutiNormal": 4270,
+ "shinutiHard": 3400,
+ "shinutiMania": 1700,
+ "shinutiUra": 760,
+ "shinutiEasyDuet": 6100,
+ "shinutiNormalDuet": 4270,
+ "shinutiHardDuet": 3400,
+ "shinutiManiaDuet": 1700,
+ "shinutiUraDuet": 760,
+ "scoreEasy": 1001400,
+ "scoreNormal": 1001330,
+ "scoreHard": 1002400,
+ "scoreMania": 1004400,
+ "scoreUra": 1013060
+ },
+ {
+ "uniqueId": 2140,
+ "id": "oki448",
+ "songFileName": "song_oki448",
+ "order": 2433,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 5370,
+ "shinutiNormal": 4120,
+ "shinutiHard": 3400,
+ "shinutiMania": 2680,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5370,
+ "shinutiNormalDuet": 4120,
+ "shinutiHardDuet": 3400,
+ "shinutiManiaDuet": 2680,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001470,
+ "scoreNormal": 1000210,
+ "scoreHard": 1000310,
+ "scoreMania": 1000170,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2141,
+ "id": "shouyu",
+ "songFileName": "song_shouyu",
+ "order": 2682,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6350,
+ "shinutiNormal": 3880,
+ "shinutiHard": 2110,
+ "shinutiMania": 1370,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6350,
+ "shinutiNormalDuet": 3880,
+ "shinutiHardDuet": 2110,
+ "shinutiManiaDuet": 1370,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000450,
+ "scoreNormal": 1002180,
+ "scoreHard": 1001540,
+ "scoreMania": 1000830,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2142,
+ "id": "usnova",
+ "songFileName": "song_usnova",
+ "order": 2996,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 10,
+ "shinutiEasy": 3780,
+ "shinutiNormal": 2440,
+ "shinutiHard": 1980,
+ "shinutiMania": 1070,
+ "shinutiUra": 910,
+ "shinutiEasyDuet": 3780,
+ "shinutiNormalDuet": 2440,
+ "shinutiHardDuet": 1980,
+ "shinutiManiaDuet": 1070,
+ "shinutiUraDuet": 910,
+ "scoreEasy": 1001640,
+ "scoreNormal": 1002880,
+ "scoreHard": 1004800,
+ "scoreMania": 1008390,
+ "scoreUra": 1010630
+ },
+ {
+ "uniqueId": 2143,
+ "id": "zouoto",
+ "songFileName": "song_zouoto",
+ "order": 3129,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 10,
+ "shinutiEasy": 4730,
+ "shinutiNormal": 3050,
+ "shinutiHard": 2000,
+ "shinutiMania": 1360,
+ "shinutiUra": 850,
+ "shinutiEasyDuet": 4730,
+ "shinutiNormalDuet": 3050,
+ "shinutiHardDuet": 2000,
+ "shinutiManiaDuet": 1360,
+ "shinutiUraDuet": 850,
+ "scoreEasy": 1002070,
+ "scoreNormal": 1001150,
+ "scoreHard": 1001600,
+ "scoreMania": 1001720,
+ "scoreUra": 1005000
+ },
+ {
+ "uniqueId": 2144,
+ "id": "anochu",
+ "songFileName": "song_anochu",
+ "order": 1204,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 11040,
+ "shinutiNormal": 6270,
+ "shinutiHard": 3180,
+ "shinutiMania": 2120,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11040,
+ "shinutiNormalDuet": 6270,
+ "shinutiHardDuet": 3180,
+ "shinutiManiaDuet": 2120,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000510,
+ "scoreNormal": 1000490,
+ "scoreHard": 1000450,
+ "scoreMania": 1000560,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2145,
+ "id": "ji9ch3",
+ "songFileName": "song_ji9ch3",
+ "order": 2005,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6770,
+ "shinutiNormal": 3400,
+ "shinutiHard": 2350,
+ "shinutiMania": 1430,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6770,
+ "shinutiNormalDuet": 3400,
+ "shinutiHardDuet": 2350,
+ "shinutiManiaDuet": 1430,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000980,
+ "scoreNormal": 1001350,
+ "scoreHard": 1003640,
+ "scoreMania": 1002140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2146,
+ "id": "o4noko",
+ "songFileName": "song_o4noko",
+ "order": 2420,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10930,
+ "shinutiNormal": 5600,
+ "shinutiHard": 3480,
+ "shinutiMania": 2080,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10930,
+ "shinutiNormalDuet": 5600,
+ "shinutiHardDuet": 3480,
+ "shinutiManiaDuet": 2080,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000780,
+ "scoreNormal": 1000300,
+ "scoreHard": 1001880,
+ "scoreMania": 1000580,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2147,
+ "id": "adashu",
+ "songFileName": "song_adashu",
+ "order": 1142,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 14170,
+ "shinutiNormal": 7450,
+ "shinutiHard": 3740,
+ "shinutiMania": 2160,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14170,
+ "shinutiNormalDuet": 7450,
+ "shinutiHardDuet": 3740,
+ "shinutiManiaDuet": 2160,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1000750,
+ "scoreHard": 1000060,
+ "scoreMania": 1001260,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2148,
+ "id": "agentt",
+ "songFileName": "song_agentt",
+ "order": 1148,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 10,
+ "starUra": 9,
+ "shinutiEasy": 7030,
+ "shinutiNormal": 4350,
+ "shinutiHard": 2690,
+ "shinutiMania": 1450,
+ "shinutiUra": 1930,
+ "shinutiEasyDuet": 7030,
+ "shinutiNormalDuet": 4350,
+ "shinutiHardDuet": 2690,
+ "shinutiManiaDuet": 1450,
+ "shinutiUraDuet": 1930,
+ "scoreEasy": 1001160,
+ "scoreNormal": 1000150,
+ "scoreHard": 1002490,
+ "scoreMania": 1006150,
+ "scoreUra": 1930
+ },
+ {
+ "uniqueId": 2149,
+ "id": "alckil",
+ "songFileName": "song_alckil",
+ "order": 1173,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 5710,
+ "shinutiNormal": 3310,
+ "shinutiHard": 2240,
+ "shinutiMania": 1590,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5710,
+ "shinutiNormalDuet": 3310,
+ "shinutiHardDuet": 2240,
+ "shinutiManiaDuet": 1590,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000040,
+ "scoreNormal": 1001010,
+ "scoreHard": 1000160,
+ "scoreMania": 1000230,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2150,
+ "id": "aleph0",
+ "songFileName": "song_aleph0",
+ "order": 1174,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6430,
+ "shinutiNormal": 4050,
+ "shinutiHard": 2580,
+ "shinutiMania": 1690,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6430,
+ "shinutiNormalDuet": 4050,
+ "shinutiHardDuet": 2580,
+ "shinutiManiaDuet": 1690,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001020,
+ "scoreNormal": 1001500,
+ "scoreHard": 1000100,
+ "scoreMania": 1001710,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2151,
+ "id": "aloft",
+ "songFileName": "song_aloft",
+ "order": 1177,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9450,
+ "shinutiNormal": 5970,
+ "shinutiHard": 3480,
+ "shinutiMania": 2250,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9450,
+ "shinutiNormalDuet": 5970,
+ "shinutiHardDuet": 3480,
+ "shinutiManiaDuet": 2250,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000750,
+ "scoreNormal": 1001420,
+ "scoreHard": 1000900,
+ "scoreMania": 1004150,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2152,
+ "id": "aragam",
+ "songFileName": "song_aragam",
+ "order": 1216,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6730,
+ "shinutiNormal": 3730,
+ "shinutiHard": 2400,
+ "shinutiMania": 1190,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6730,
+ "shinutiNormalDuet": 3730,
+ "shinutiHardDuet": 2400,
+ "shinutiManiaDuet": 1190,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000440,
+ "scoreNormal": 1002340,
+ "scoreHard": 1000100,
+ "scoreMania": 1003110,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2153,
+ "id": "arcgai",
+ "songFileName": "song_arcgai",
+ "order": 1219,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5500,
+ "shinutiNormal": 3510,
+ "shinutiHard": 1700,
+ "shinutiMania": 880,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5500,
+ "shinutiNormalDuet": 3510,
+ "shinutiHardDuet": 1700,
+ "shinutiManiaDuet": 880,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001300,
+ "scoreNormal": 1000630,
+ "scoreHard": 1001300,
+ "scoreMania": 1002540,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2154,
+ "id": "bisprm",
+ "songFileName": "song_bisprm",
+ "order": 1257,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 8,
+ "shinutiEasy": 11670,
+ "shinutiNormal": 6390,
+ "shinutiHard": 4430,
+ "shinutiMania": 2950,
+ "shinutiUra": 1490,
+ "shinutiEasyDuet": 11670,
+ "shinutiNormalDuet": 6390,
+ "shinutiHardDuet": 4430,
+ "shinutiManiaDuet": 2950,
+ "shinutiUraDuet": 1490,
+ "scoreEasy": 1000750,
+ "scoreNormal": 1001150,
+ "scoreHard": 1001590,
+ "scoreMania": 1002100,
+ "scoreUra": 1490
+ },
+ {
+ "uniqueId": 2155,
+ "id": "btlno1",
+ "songFileName": "song_btlno1",
+ "order": 1291,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": true,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4340,
+ "shinutiNormal": 2830,
+ "shinutiHard": 2100,
+ "shinutiMania": 1020,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4340,
+ "shinutiNormalDuet": 2830,
+ "shinutiHardDuet": 2100,
+ "shinutiManiaDuet": 1020,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001860,
+ "scoreNormal": 1000800,
+ "scoreHard": 1002700,
+ "scoreMania": 1008100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2156,
+ "id": "chaini",
+ "songFileName": "song_chaini",
+ "order": 1335,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 18820,
+ "shinutiNormal": 10170,
+ "shinutiHard": 6960,
+ "shinutiMania": 5180,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18820,
+ "shinutiNormalDuet": 10170,
+ "shinutiHardDuet": 6960,
+ "shinutiManiaDuet": 5180,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000460,
+ "scoreNormal": 1000460,
+ "scoreHard": 1000580,
+ "scoreMania": 1001660,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2157,
+ "id": "chaslt",
+ "songFileName": "song_chaslt",
+ "order": 1344,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 13250,
+ "shinutiNormal": 8270,
+ "shinutiHard": 4280,
+ "shinutiMania": 2960,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13250,
+ "shinutiNormalDuet": 8270,
+ "shinutiHardDuet": 4280,
+ "shinutiManiaDuet": 2960,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000150,
+ "scoreNormal": 1000600,
+ "scoreHard": 1000640,
+ "scoreMania": 1002620,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2158,
+ "id": "chaway",
+ "songFileName": "song_chaway",
+ "order": 1345,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 13810,
+ "shinutiNormal": 7880,
+ "shinutiHard": 4760,
+ "shinutiMania": 3680,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13810,
+ "shinutiNormalDuet": 7880,
+ "shinutiHardDuet": 4760,
+ "shinutiManiaDuet": 3680,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000320,
+ "scoreNormal": 1000480,
+ "scoreHard": 1000180,
+ "scoreMania": 1002440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2159,
+ "id": "chdist",
+ "songFileName": "song_chdist",
+ "order": 1346,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 11470,
+ "shinutiNormal": 6550,
+ "shinutiHard": 4360,
+ "shinutiMania": 3520,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11470,
+ "shinutiNormalDuet": 6550,
+ "shinutiHardDuet": 4360,
+ "shinutiManiaDuet": 3520,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000220,
+ "scoreNormal": 1000000,
+ "scoreHard": 1000040,
+ "scoreMania": 1002000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2160,
+ "id": "chplov",
+ "songFileName": "song_chplov",
+ "order": 1355,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12880,
+ "shinutiNormal": 7990,
+ "shinutiHard": 5220,
+ "shinutiMania": 3730,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12880,
+ "shinutiNormalDuet": 7990,
+ "shinutiHardDuet": 5220,
+ "shinutiManiaDuet": 3730,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000060,
+ "scoreNormal": 1001160,
+ "scoreHard": 1000680,
+ "scoreMania": 1001520,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2161,
+ "id": "chu2go",
+ "songFileName": "song_chu2go",
+ "order": 1358,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 4050,
+ "shinutiNormal": 3140,
+ "shinutiHard": 2070,
+ "shinutiMania": 1120,
+ "shinutiUra": 820,
+ "shinutiEasyDuet": 4050,
+ "shinutiNormalDuet": 3140,
+ "shinutiHardDuet": 2070,
+ "shinutiManiaDuet": 1120,
+ "shinutiUraDuet": 820,
+ "scoreEasy": 1001350,
+ "scoreNormal": 1000100,
+ "scoreHard": 1002250,
+ "scoreMania": 1000600,
+ "scoreUra": 820
+ },
+ {
+ "uniqueId": 2162,
+ "id": "chuwap",
+ "songFileName": "song_chuwap",
+ "order": 1360,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 1,
+ "starHard": 3,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 16570,
+ "shinutiNormal": 10680,
+ "shinutiHard": 4790,
+ "shinutiMania": 3470,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16570,
+ "shinutiNormalDuet": 10680,
+ "shinutiHardDuet": 4790,
+ "shinutiManiaDuet": 3470,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000200,
+ "scoreNormal": 1000840,
+ "scoreHard": 1001520,
+ "scoreMania": 1001760,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2163,
+ "id": "dai6kn",
+ "songFileName": "song_dai6kn",
+ "order": 1463,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9450,
+ "shinutiNormal": 4210,
+ "shinutiHard": 2840,
+ "shinutiMania": 1830,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9450,
+ "shinutiNormalDuet": 4210,
+ "shinutiHardDuet": 2840,
+ "shinutiManiaDuet": 1830,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000450,
+ "scoreNormal": 1001260,
+ "scoreHard": 1001760,
+ "scoreMania": 1001500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2164,
+ "id": "daig2",
+ "songFileName": "song_daig2",
+ "order": 1464,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 7200,
+ "shinutiNormal": 5070,
+ "shinutiHard": 2710,
+ "shinutiMania": 2080,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7200,
+ "shinutiNormalDuet": 5070,
+ "shinutiHardDuet": 2710,
+ "shinutiManiaDuet": 2080,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1001520,
+ "scoreHard": 1000650,
+ "scoreMania": 1003880,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2165,
+ "id": "dmonky",
+ "songFileName": "song_dmonky",
+ "order": 1523,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8670,
+ "shinutiNormal": 5420,
+ "shinutiHard": 3410,
+ "shinutiMania": 2500,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8670,
+ "shinutiNormalDuet": 5420,
+ "shinutiHardDuet": 3410,
+ "shinutiManiaDuet": 2500,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000750,
+ "scoreNormal": 1000180,
+ "scoreHard": 1001320,
+ "scoreMania": 1000100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2166,
+ "id": "donbro",
+ "songFileName": "song_donbro",
+ "order": 1544,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 26830,
+ "shinutiNormal": 13380,
+ "shinutiHard": 6030,
+ "shinutiMania": 3790,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 26830,
+ "shinutiNormalDuet": 13380,
+ "shinutiHardDuet": 6030,
+ "shinutiManiaDuet": 3790,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000310,
+ "scoreNormal": 1000220,
+ "scoreHard": 1000420,
+ "scoreMania": 1002570,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2167,
+ "id": "emma",
+ "songFileName": "song_emma",
+ "order": 1596,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8260,
+ "shinutiNormal": 5800,
+ "shinutiHard": 3650,
+ "shinutiMania": 1740,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8260,
+ "shinutiNormalDuet": 5800,
+ "shinutiHardDuet": 3650,
+ "shinutiManiaDuet": 1740,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000340,
+ "scoreNormal": 1001200,
+ "scoreHard": 1000950,
+ "scoreMania": 1002240,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2168,
+ "id": "fun3",
+ "songFileName": "song_fun3",
+ "order": 1660,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 14010,
+ "shinutiNormal": 8120,
+ "shinutiHard": 4970,
+ "shinutiMania": 3340,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14010,
+ "shinutiNormalDuet": 8120,
+ "shinutiHardDuet": 4970,
+ "shinutiManiaDuet": 3340,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000210,
+ "scoreNormal": 1000540,
+ "scoreHard": 1001230,
+ "scoreMania": 1001340,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2169,
+ "id": "hanzaw",
+ "songFileName": "song_hanzaw",
+ "order": 1769,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 2,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 11020,
+ "shinutiNormal": 9330,
+ "shinutiHard": 6600,
+ "shinutiMania": 2620,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11020,
+ "shinutiNormalDuet": 9330,
+ "shinutiHardDuet": 6600,
+ "shinutiManiaDuet": 2620,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000800,
+ "scoreNormal": 1000780,
+ "scoreHard": 1000900,
+ "scoreMania": 1001500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2170,
+ "id": "heljok",
+ "songFileName": "song_heljok",
+ "order": 1784,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5540,
+ "shinutiNormal": 3110,
+ "shinutiHard": 2020,
+ "shinutiMania": 1200,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5540,
+ "shinutiNormalDuet": 3110,
+ "shinutiHardDuet": 2020,
+ "shinutiManiaDuet": 1200,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000320,
+ "scoreNormal": 1001460,
+ "scoreHard": 1002180,
+ "scoreMania": 1000700,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2171,
+ "id": "ims15t",
+ "songFileName": "song_ims15t",
+ "order": 1884,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8590,
+ "shinutiNormal": 4590,
+ "shinutiHard": 3110,
+ "shinutiMania": 1890,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8590,
+ "shinutiNormalDuet": 4590,
+ "shinutiHardDuet": 3110,
+ "shinutiManiaDuet": 1890,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000750,
+ "scoreNormal": 1000950,
+ "scoreHard": 1001260,
+ "scoreMania": 1000150,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2172,
+ "id": "justaw",
+ "songFileName": "song_justaw",
+ "order": 2015,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 11070,
+ "shinutiNormal": 6630,
+ "shinutiHard": 3680,
+ "shinutiMania": 1910,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11070,
+ "shinutiNormalDuet": 6630,
+ "shinutiHardDuet": 3680,
+ "shinutiManiaDuet": 1910,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1000500,
+ "scoreHard": 1002180,
+ "scoreMania": 1002940,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2174,
+ "id": "kamizm",
+ "songFileName": "song_kamizm",
+ "order": 2035,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 11310,
+ "shinutiNormal": 7890,
+ "shinutiHard": 3810,
+ "shinutiMania": 2220,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11310,
+ "shinutiNormalDuet": 7890,
+ "shinutiHardDuet": 3810,
+ "shinutiManiaDuet": 2220,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000580,
+ "scoreNormal": 1001140,
+ "scoreHard": 1002110,
+ "scoreMania": 1002020,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2175,
+ "id": "kgn1zu",
+ "songFileName": "song_kgn1zu",
+ "order": 2057,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 10380,
+ "shinutiNormal": 5330,
+ "shinutiHard": 3360,
+ "shinutiMania": 2020,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10380,
+ "shinutiNormalDuet": 5330,
+ "shinutiHardDuet": 3360,
+ "shinutiManiaDuet": 2020,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000080,
+ "scoreNormal": 1000010,
+ "scoreHard": 1001320,
+ "scoreMania": 1001100,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2176,
+ "id": "kl2gtl",
+ "songFileName": "song_kl2gtl",
+ "order": 2094,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 11020,
+ "shinutiNormal": 5410,
+ "shinutiHard": 2950,
+ "shinutiMania": 1750,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11020,
+ "shinutiNormalDuet": 5410,
+ "shinutiHardDuet": 2950,
+ "shinutiManiaDuet": 1750,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000430,
+ "scoreHard": 1001850,
+ "scoreMania": 1003800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2177,
+ "id": "ko9ryu",
+ "songFileName": "song_ko9ryu",
+ "order": 2098,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5640,
+ "shinutiNormal": 3280,
+ "shinutiHard": 2100,
+ "shinutiMania": 1130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5640,
+ "shinutiNormalDuet": 3280,
+ "shinutiHardDuet": 2100,
+ "shinutiManiaDuet": 1130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000440,
+ "scoreNormal": 1002020,
+ "scoreHard": 1004500,
+ "scoreMania": 1002350,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2178,
+ "id": "krdoto",
+ "songFileName": "song_krdoto",
+ "order": 2118,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 5760,
+ "shinutiNormal": 3170,
+ "shinutiHard": 2200,
+ "shinutiMania": 1490,
+ "shinutiUra": 890,
+ "shinutiEasyDuet": 5760,
+ "shinutiNormalDuet": 3170,
+ "shinutiHardDuet": 2200,
+ "shinutiManiaDuet": 1490,
+ "shinutiUraDuet": 890,
+ "scoreEasy": 1001020,
+ "scoreNormal": 1002640,
+ "scoreHard": 1000100,
+ "scoreMania": 1001950,
+ "scoreUra": 890
+ },
+ {
+ "uniqueId": 2179,
+ "id": "krrev",
+ "songFileName": "song_krrev",
+ "order": 2126,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 18050,
+ "shinutiNormal": 8470,
+ "shinutiHard": 4150,
+ "shinutiMania": 2970,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 18050,
+ "shinutiNormalDuet": 8470,
+ "shinutiHardDuet": 4150,
+ "shinutiManiaDuet": 2970,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000250,
+ "scoreNormal": 1000390,
+ "scoreHard": 1001900,
+ "scoreMania": 1002820,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2180,
+ "id": "kwondo",
+ "songFileName": "song_kwondo",
+ "order": 2138,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 8580,
+ "shinutiNormal": 6260,
+ "shinutiHard": 3940,
+ "shinutiMania": 2480,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8580,
+ "shinutiNormalDuet": 6260,
+ "shinutiHardDuet": 3940,
+ "shinutiManiaDuet": 2480,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000380,
+ "scoreNormal": 1001440,
+ "scoreHard": 1000380,
+ "scoreMania": 1002000,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2181,
+ "id": "mikanm",
+ "songFileName": "song_mikanm",
+ "order": 2277,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 6490,
+ "shinutiNormal": 3780,
+ "shinutiHard": 1850,
+ "shinutiMania": 1220,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6490,
+ "shinutiNormalDuet": 3780,
+ "shinutiHardDuet": 1850,
+ "shinutiManiaDuet": 1220,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000370,
+ "scoreNormal": 1000860,
+ "scoreHard": 1000500,
+ "scoreMania": 1005280,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2182,
+ "id": "mikcin",
+ "songFileName": "song_mikcin",
+ "order": 2279,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 5300,
+ "shinutiNormal": 3000,
+ "shinutiHard": 2040,
+ "shinutiMania": 1510,
+ "shinutiUra": 1030,
+ "shinutiEasyDuet": 5300,
+ "shinutiNormalDuet": 3000,
+ "shinutiHardDuet": 2040,
+ "shinutiManiaDuet": 1510,
+ "shinutiUraDuet": 1030,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1003100,
+ "scoreHard": 1000820,
+ "scoreMania": 1000010,
+ "scoreUra": 1030
+ },
+ {
+ "uniqueId": 2183,
+ "id": "mikteo",
+ "songFileName": "song_mikteo",
+ "order": 2283,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7100,
+ "shinutiNormal": 4320,
+ "shinutiHard": 2250,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7100,
+ "shinutiNormalDuet": 4320,
+ "shinutiHardDuet": 2250,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1001000,
+ "scoreHard": 1004300,
+ "scoreMania": 1004120,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2184,
+ "id": "mkirdr",
+ "songFileName": "song_mkirdr",
+ "order": 2321,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7860,
+ "shinutiNormal": 4240,
+ "shinutiHard": 2230,
+ "shinutiMania": 1170,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7860,
+ "shinutiNormalDuet": 4240,
+ "shinutiHardDuet": 2230,
+ "shinutiManiaDuet": 1170,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000760,
+ "scoreNormal": 1002220,
+ "scoreHard": 1003830,
+ "scoreMania": 1005200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2185,
+ "id": "modshs",
+ "songFileName": "song_modshs",
+ "order": 2332,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 12100,
+ "shinutiNormal": 7700,
+ "shinutiHard": 4360,
+ "shinutiMania": 2700,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12100,
+ "shinutiNormalDuet": 7700,
+ "shinutiHardDuet": 4360,
+ "shinutiManiaDuet": 2700,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000100,
+ "scoreNormal": 1000200,
+ "scoreHard": 1001180,
+ "scoreMania": 1001400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2186,
+ "id": "mr5sug",
+ "songFileName": "song_mr5sug",
+ "order": 2350,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 14980,
+ "shinutiNormal": 7530,
+ "shinutiHard": 3960,
+ "shinutiMania": 2420,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14980,
+ "shinutiNormalDuet": 7530,
+ "shinutiHardDuet": 3960,
+ "shinutiManiaDuet": 2420,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000280,
+ "scoreNormal": 1000060,
+ "scoreHard": 1000360,
+ "scoreMania": 1001740,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2187,
+ "id": "naniyt",
+ "songFileName": "song_naniyt",
+ "order": 2374,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7260,
+ "shinutiNormal": 4000,
+ "shinutiHard": 2630,
+ "shinutiMania": 1750,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7260,
+ "shinutiNormalDuet": 4000,
+ "shinutiHardDuet": 2630,
+ "shinutiManiaDuet": 1750,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001020,
+ "scoreNormal": 1000200,
+ "scoreHard": 1001550,
+ "scoreMania": 1000250,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2188,
+ "id": "ohdmix",
+ "songFileName": "song_ohdmix",
+ "order": 2428,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12220,
+ "shinutiNormal": 7960,
+ "shinutiHard": 4700,
+ "shinutiMania": 2390,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12220,
+ "shinutiNormalDuet": 7960,
+ "shinutiHardDuet": 4700,
+ "shinutiManiaDuet": 2390,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000120,
+ "scoreNormal": 1000540,
+ "scoreHard": 1001400,
+ "scoreMania": 1003680,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2189,
+ "id": "ohdshk",
+ "songFileName": "song_ohdshk",
+ "order": 2430,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 21570,
+ "shinutiNormal": 14150,
+ "shinutiHard": 6810,
+ "shinutiMania": 3450,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 21570,
+ "shinutiNormalDuet": 14150,
+ "shinutiHardDuet": 6810,
+ "shinutiManiaDuet": 3450,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000120,
+ "scoreNormal": 1000500,
+ "scoreHard": 1000660,
+ "scoreMania": 1000750,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2190,
+ "id": "playhi",
+ "songFileName": "song_playhi",
+ "order": 2504,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 7520,
+ "shinutiNormal": 3980,
+ "shinutiHard": 2370,
+ "shinutiMania": 1090,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7520,
+ "shinutiNormalDuet": 3980,
+ "shinutiHardDuet": 2370,
+ "shinutiManiaDuet": 1090,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001220,
+ "scoreNormal": 1000040,
+ "scoreHard": 1001150,
+ "scoreMania": 1006470,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2191,
+ "id": "punkbs",
+ "songFileName": "song_punkbs",
+ "order": 2547,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5900,
+ "shinutiNormal": 3930,
+ "shinutiHard": 2400,
+ "shinutiMania": 1330,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5900,
+ "shinutiNormalDuet": 3930,
+ "shinutiHardDuet": 2400,
+ "shinutiManiaDuet": 1330,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1001660,
+ "scoreHard": 1003800,
+ "scoreMania": 1007370,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2192,
+ "id": "savagl",
+ "songFileName": "song_savagl",
+ "order": 2646,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 12970,
+ "shinutiNormal": 8990,
+ "shinutiHard": 5970,
+ "shinutiMania": 3670,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12970,
+ "shinutiNormalDuet": 8990,
+ "shinutiHardDuet": 5970,
+ "shinutiManiaDuet": 3670,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000290,
+ "scoreNormal": 1000190,
+ "scoreHard": 1000790,
+ "scoreMania": 1001940,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2193,
+ "id": "shing3",
+ "songFileName": "song_shing3",
+ "order": 2674,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 9770,
+ "shinutiNormal": 5580,
+ "shinutiHard": 3900,
+ "shinutiMania": 2400,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9770,
+ "shinutiNormalDuet": 5580,
+ "shinutiHardDuet": 3900,
+ "shinutiManiaDuet": 2400,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000340,
+ "scoreNormal": 1000840,
+ "scoreHard": 1001500,
+ "scoreMania": 1001200,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2194,
+ "id": "sinryu",
+ "songFileName": "song_sinryu",
+ "order": 2696,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 10,
+ "shinutiEasy": 4320,
+ "shinutiNormal": 2910,
+ "shinutiHard": 1930,
+ "shinutiMania": 1030,
+ "shinutiUra": 740,
+ "shinutiEasyDuet": 4320,
+ "shinutiNormalDuet": 2910,
+ "shinutiHardDuet": 1930,
+ "shinutiManiaDuet": 1030,
+ "shinutiUraDuet": 740,
+ "scoreEasy": 1000560,
+ "scoreNormal": 1001680,
+ "scoreHard": 1002340,
+ "scoreMania": 1005690,
+ "scoreUra": 740
+ },
+ {
+ "uniqueId": 2195,
+ "id": "smncon",
+ "songFileName": "song_smncon",
+ "order": 2712,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 5080,
+ "shinutiNormal": 3510,
+ "shinutiHard": 2220,
+ "shinutiMania": 1360,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5080,
+ "shinutiNormalDuet": 3510,
+ "shinutiHardDuet": 2220,
+ "shinutiManiaDuet": 1360,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001900,
+ "scoreNormal": 1002010,
+ "scoreHard": 1001220,
+ "scoreMania": 1005140,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2196,
+ "id": "smntwi",
+ "songFileName": "song_smntwi",
+ "order": 2713,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 8200,
+ "shinutiNormal": 4950,
+ "shinutiHard": 2740,
+ "shinutiMania": 1700,
+ "shinutiUra": 1230,
+ "shinutiEasyDuet": 8200,
+ "shinutiNormalDuet": 4950,
+ "shinutiHardDuet": 2740,
+ "shinutiManiaDuet": 1700,
+ "shinutiUraDuet": 1230,
+ "scoreEasy": 1000800,
+ "scoreNormal": 1000400,
+ "scoreHard": 1003440,
+ "scoreMania": 1003000,
+ "scoreUra": 1230
+ },
+ {
+ "uniqueId": 2197,
+ "id": "spride",
+ "songFileName": "song_spride",
+ "order": 2751,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6630,
+ "shinutiNormal": 3860,
+ "shinutiHard": 2050,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6630,
+ "shinutiNormalDuet": 3860,
+ "shinutiHardDuet": 2050,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000570,
+ "scoreNormal": 1002100,
+ "scoreHard": 1002900,
+ "scoreMania": 1001580,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2198,
+ "id": "sqr3",
+ "songFileName": "song_sqr3",
+ "order": 2755,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6400,
+ "shinutiNormal": 3900,
+ "shinutiHard": 2180,
+ "shinutiMania": 1570,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6400,
+ "shinutiNormalDuet": 3900,
+ "shinutiHardDuet": 2180,
+ "shinutiManiaDuet": 1570,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001200,
+ "scoreNormal": 1001100,
+ "scoreHard": 1002200,
+ "scoreMania": 1001580,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2199,
+ "id": "sstnue",
+ "songFileName": "song_sstnue",
+ "order": 2760,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4940,
+ "shinutiNormal": 2840,
+ "shinutiHard": 1900,
+ "shinutiMania": 1100,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4940,
+ "shinutiNormalDuet": 2840,
+ "shinutiHardDuet": 1900,
+ "shinutiManiaDuet": 1100,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1000180,
+ "scoreHard": 1005100,
+ "scoreMania": 1005400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2200,
+ "id": "stpsss",
+ "songFileName": "song_stpsss",
+ "order": 2771,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 7600,
+ "shinutiNormal": 4910,
+ "shinutiHard": 3420,
+ "shinutiMania": 2480,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7600,
+ "shinutiNormalDuet": 4910,
+ "shinutiHardDuet": 3420,
+ "shinutiManiaDuet": 2480,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000700,
+ "scoreNormal": 1000720,
+ "scoreHard": 1000180,
+ "scoreMania": 1002340,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2201,
+ "id": "stpstp",
+ "songFileName": "song_stpstp",
+ "order": 2772,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 6660,
+ "shinutiNormal": 4780,
+ "shinutiHard": 3300,
+ "shinutiMania": 2140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6660,
+ "shinutiNormalDuet": 4780,
+ "shinutiHardDuet": 3300,
+ "shinutiManiaDuet": 2140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000040,
+ "scoreNormal": 1001960,
+ "scoreHard": 1001100,
+ "scoreMania": 1000160,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2202,
+ "id": "stpstr",
+ "songFileName": "song_stpstr",
+ "order": 2773,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 10120,
+ "shinutiNormal": 6200,
+ "shinutiHard": 4010,
+ "shinutiMania": 2290,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 10120,
+ "shinutiNormalDuet": 6200,
+ "shinutiHardDuet": 4010,
+ "shinutiManiaDuet": 2290,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000260,
+ "scoreNormal": 1000300,
+ "scoreHard": 1001070,
+ "scoreMania": 1000180,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2203,
+ "id": "suirnk",
+ "songFileName": "song_suirnk",
+ "order": 2780,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8550,
+ "shinutiNormal": 4840,
+ "shinutiHard": 2390,
+ "shinutiMania": 1540,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8550,
+ "shinutiNormalDuet": 4840,
+ "shinutiHardDuet": 2390,
+ "shinutiManiaDuet": 1540,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1000560,
+ "scoreHard": 1002280,
+ "scoreMania": 1003860,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2204,
+ "id": "sykake",
+ "songFileName": "song_sykake",
+ "order": 2798,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6510,
+ "shinutiNormal": 4370,
+ "shinutiHard": 2450,
+ "shinutiMania": 1690,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6510,
+ "shinutiNormalDuet": 4370,
+ "shinutiHardDuet": 2450,
+ "shinutiManiaDuet": 1690,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000020,
+ "scoreNormal": 1001320,
+ "scoreHard": 1002900,
+ "scoreMania": 1004870,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2205,
+ "id": "sylray",
+ "songFileName": "song_sylray",
+ "order": 2799,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6960,
+ "shinutiNormal": 4210,
+ "shinutiHard": 2270,
+ "shinutiMania": 1140,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6960,
+ "shinutiNormalDuet": 4210,
+ "shinutiHardDuet": 2270,
+ "shinutiManiaDuet": 1140,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000520,
+ "scoreNormal": 1000240,
+ "scoreHard": 1004080,
+ "scoreMania": 1004700,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2206,
+ "id": "syseka",
+ "songFileName": "song_syseka",
+ "order": 2801,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 14220,
+ "shinutiNormal": 7120,
+ "shinutiHard": 3520,
+ "shinutiMania": 2130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 14220,
+ "shinutiNormalDuet": 7120,
+ "shinutiHardDuet": 3520,
+ "shinutiManiaDuet": 2130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000300,
+ "scoreNormal": 1001300,
+ "scoreHard": 1000360,
+ "scoreMania": 1001890,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2207,
+ "id": "syyura",
+ "songFileName": "song_syyura",
+ "order": 2805,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6020,
+ "shinutiNormal": 3790,
+ "shinutiHard": 2510,
+ "shinutiMania": 1610,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6020,
+ "shinutiNormalDuet": 3790,
+ "shinutiHardDuet": 2510,
+ "shinutiManiaDuet": 1610,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001100,
+ "scoreNormal": 1001780,
+ "scoreHard": 1001440,
+ "scoreMania": 1000540,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2208,
+ "id": "telesc",
+ "songFileName": "song_telesc",
+ "order": 2838,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6350,
+ "shinutiNormal": 4220,
+ "shinutiHard": 2270,
+ "shinutiMania": 1320,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6350,
+ "shinutiNormalDuet": 4220,
+ "shinutiHardDuet": 2270,
+ "shinutiManiaDuet": 1320,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000450,
+ "scoreNormal": 1000740,
+ "scoreHard": 1003570,
+ "scoreMania": 1005340,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2209,
+ "id": "thgs87",
+ "songFileName": "song_thgs87",
+ "order": 2857,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8420,
+ "shinutiNormal": 3730,
+ "shinutiHard": 2070,
+ "shinutiMania": 1340,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8420,
+ "shinutiNormalDuet": 3730,
+ "shinutiHardDuet": 2070,
+ "shinutiManiaDuet": 1340,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001040,
+ "scoreNormal": 1000120,
+ "scoreHard": 1001680,
+ "scoreMania": 1001400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2210,
+ "id": "thm241",
+ "songFileName": "song_thm241",
+ "order": 2861,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 10,
+ "shinutiEasy": 6550,
+ "shinutiNormal": 3720,
+ "shinutiHard": 2210,
+ "shinutiMania": 1450,
+ "shinutiUra": 920,
+ "shinutiEasyDuet": 6550,
+ "shinutiNormalDuet": 3720,
+ "shinutiHardDuet": 2210,
+ "shinutiManiaDuet": 1450,
+ "shinutiUraDuet": 920,
+ "scoreEasy": 1001250,
+ "scoreNormal": 1001700,
+ "scoreHard": 1002540,
+ "scoreMania": 1006100,
+ "scoreUra": 920
+ },
+ {
+ "uniqueId": 2211,
+ "id": "turing",
+ "songFileName": "song_turing",
+ "order": 2940,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 11280,
+ "shinutiNormal": 6000,
+ "shinutiHard": 3240,
+ "shinutiMania": 2330,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11280,
+ "shinutiNormalDuet": 6000,
+ "shinutiHardDuet": 3240,
+ "shinutiManiaDuet": 2330,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000540,
+ "scoreNormal": 1000700,
+ "scoreHard": 1002880,
+ "scoreMania": 1001480,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2212,
+ "id": "tuykrb",
+ "songFileName": "song_tuykrb",
+ "order": 2943,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 8700,
+ "shinutiNormal": 5200,
+ "shinutiHard": 3060,
+ "shinutiMania": 2080,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8700,
+ "shinutiNormalDuet": 5200,
+ "shinutiHardDuet": 3060,
+ "shinutiManiaDuet": 2080,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1000300,
+ "scoreHard": 1002560,
+ "scoreMania": 1003920,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2214,
+ "id": "umclfp",
+ "songFileName": "song_umclfp",
+ "order": 2974,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 2,
+ "starHard": 4,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 21170,
+ "shinutiNormal": 13980,
+ "shinutiHard": 7730,
+ "shinutiMania": 4380,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 21170,
+ "shinutiNormalDuet": 13980,
+ "shinutiHardDuet": 7730,
+ "shinutiManiaDuet": 4380,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000290,
+ "scoreNormal": 1000080,
+ "scoreHard": 1000740,
+ "scoreMania": 1001700,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2215,
+ "id": "umgou",
+ "songFileName": "song_umgou",
+ "order": 2976,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 24180,
+ "shinutiNormal": 14550,
+ "shinutiHard": 6020,
+ "shinutiMania": 3130,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 24180,
+ "shinutiNormalDuet": 14550,
+ "shinutiHardDuet": 6020,
+ "shinutiManiaDuet": 3130,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000380,
+ "scoreNormal": 1000600,
+ "scoreHard": 1000680,
+ "scoreMania": 1001080,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2216,
+ "id": "umhnmr",
+ "songFileName": "song_umhnmr",
+ "order": 2978,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 3,
+ "starMania": 5,
+ "starUra": 0,
+ "shinutiEasy": 17710,
+ "shinutiNormal": 9800,
+ "shinutiHard": 5230,
+ "shinutiMania": 3280,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 17710,
+ "shinutiNormalDuet": 9800,
+ "shinutiHardDuet": 5230,
+ "shinutiManiaDuet": 3280,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000460,
+ "scoreNormal": 1000900,
+ "scoreHard": 1001870,
+ "scoreMania": 1000860,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2217,
+ "id": "umiiko",
+ "songFileName": "song_umiiko",
+ "order": 2979,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7180,
+ "shinutiNormal": 3900,
+ "shinutiHard": 2140,
+ "shinutiMania": 1460,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7180,
+ "shinutiNormalDuet": 3900,
+ "shinutiHardDuet": 2140,
+ "shinutiManiaDuet": 1460,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001040,
+ "scoreNormal": 1000200,
+ "scoreHard": 1001200,
+ "scoreMania": 1004420,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2218,
+ "id": "unlmtg",
+ "songFileName": "song_unlmtg",
+ "order": 2991,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5520,
+ "shinutiNormal": 3880,
+ "shinutiHard": 2570,
+ "shinutiMania": 1190,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5520,
+ "shinutiNormalDuet": 3880,
+ "shinutiHardDuet": 2570,
+ "shinutiManiaDuet": 1190,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001780,
+ "scoreNormal": 1002520,
+ "scoreHard": 1002240,
+ "scoreMania": 1005870,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2219,
+ "id": "worldn",
+ "songFileName": "song_worldn",
+ "order": 3053,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 9550,
+ "shinutiNormal": 5570,
+ "shinutiHard": 3030,
+ "shinutiMania": 2000,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 9550,
+ "shinutiNormalDuet": 5570,
+ "shinutiHardDuet": 3030,
+ "shinutiManiaDuet": 2000,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000600,
+ "scoreNormal": 1000760,
+ "scoreHard": 1003110,
+ "scoreMania": 1003800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2220,
+ "id": "yumikk",
+ "songFileName": "song_yumikk",
+ "order": 3103,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 10,
+ "shinutiEasy": 6560,
+ "shinutiNormal": 3260,
+ "shinutiHard": 2100,
+ "shinutiMania": 1450,
+ "shinutiUra": 940,
+ "shinutiEasyDuet": 6560,
+ "shinutiNormalDuet": 3260,
+ "shinutiHardDuet": 2100,
+ "shinutiManiaDuet": 1450,
+ "shinutiUraDuet": 940,
+ "scoreEasy": 1001320,
+ "scoreNormal": 1002960,
+ "scoreHard": 1004400,
+ "scoreMania": 1004800,
+ "scoreUra": 940
+ },
+ {
+ "uniqueId": 2221,
+ "id": "yykibo",
+ "songFileName": "song_yykibo",
+ "order": 3115,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 7280,
+ "shinutiNormal": 3910,
+ "shinutiHard": 2210,
+ "shinutiMania": 1190,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7280,
+ "shinutiNormalDuet": 3910,
+ "shinutiHardDuet": 2210,
+ "shinutiManiaDuet": 1190,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000860,
+ "scoreNormal": 1000450,
+ "scoreHard": 1003620,
+ "scoreMania": 1001810,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2232,
+ "id": "adkrkr",
+ "songFileName": "song_adkrkr",
+ "order": 1145,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 13970,
+ "shinutiNormal": 7820,
+ "shinutiHard": 3710,
+ "shinutiMania": 2100,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13970,
+ "shinutiNormalDuet": 7820,
+ "shinutiHardDuet": 3710,
+ "shinutiManiaDuet": 2100,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 0,
+ "scoreNormal": 0,
+ "scoreHard": 0,
+ "scoreMania": 0,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2233,
+ "id": "crtcrs",
+ "songFileName": "song_crtcrs",
+ "order": 1448,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 5,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 4710,
+ "shinutiNormal": 1990,
+ "shinutiHard": 1260,
+ "shinutiMania": 870,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4710,
+ "shinutiNormalDuet": 1990,
+ "shinutiHardDuet": 1260,
+ "shinutiManiaDuet": 870,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 0,
+ "scoreNormal": 0,
+ "scoreHard": 0,
+ "scoreMania": 0,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2234,
+ "id": "ddkfit",
+ "songFileName": "song_ddkfit",
+ "order": 1492,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6930,
+ "shinutiNormal": 4110,
+ "shinutiHard": 2300,
+ "shinutiMania": 1270,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6930,
+ "shinutiNormalDuet": 4110,
+ "shinutiHardDuet": 2300,
+ "shinutiManiaDuet": 1270,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 0,
+ "scoreNormal": 0,
+ "scoreHard": 0,
+ "scoreMania": 0,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2235,
+ "id": "friere",
+ "songFileName": "song_friere",
+ "order": 1663,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 11210,
+ "shinutiNormal": 6900,
+ "shinutiHard": 4230,
+ "shinutiMania": 2640,
+ "shinutiUra": 1490,
+ "shinutiEasyDuet": 11210,
+ "shinutiNormalDuet": 6900,
+ "shinutiHardDuet": 4230,
+ "shinutiManiaDuet": 2640,
+ "shinutiUraDuet": 1490,
+ "scoreEasy": 0,
+ "scoreNormal": 0,
+ "scoreHard": 0,
+ "scoreMania": 0,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2236,
+ "id": "gdmsen",
+ "songFileName": "song_gdmsen",
+ "order": 1694,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 7240,
+ "shinutiNormal": 3950,
+ "shinutiHard": 2360,
+ "shinutiMania": 1510,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7240,
+ "shinutiNormalDuet": 3950,
+ "shinutiHardDuet": 2360,
+ "shinutiManiaDuet": 1510,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 0,
+ "scoreNormal": 0,
+ "scoreHard": 0,
+ "scoreMania": 0,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2237,
+ "id": "imsto2",
+ "songFileName": "song_imsto2",
+ "order": 1973,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 4830,
+ "shinutiNormal": 3000,
+ "shinutiHard": 2300,
+ "shinutiMania": 1540,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4830,
+ "shinutiNormalDuet": 3000,
+ "shinutiHardDuet": 2300,
+ "shinutiManiaDuet": 1540,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 0,
+ "scoreNormal": 0,
+ "scoreHard": 0,
+ "scoreMania": 0,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2238,
+ "id": "kyallb",
+ "songFileName": "song_kyallb",
+ "order": 2160,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 5470,
+ "shinutiNormal": 3440,
+ "shinutiHard": 2110,
+ "shinutiMania": 1580,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5470,
+ "shinutiNormalDuet": 3440,
+ "shinutiHardDuet": 2110,
+ "shinutiManiaDuet": 1580,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 0,
+ "scoreNormal": 0,
+ "scoreHard": 0,
+ "scoreMania": 0,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2239,
+ "id": "nekokz",
+ "songFileName": "song_nekokz",
+ "order": 2416,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 13410,
+ "shinutiNormal": 8170,
+ "shinutiHard": 4500,
+ "shinutiMania": 3090,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13410,
+ "shinutiNormalDuet": 8170,
+ "shinutiHardDuet": 4500,
+ "shinutiManiaDuet": 3090,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 0,
+ "scoreNormal": 0,
+ "scoreHard": 0,
+ "scoreMania": 0,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2240,
+ "id": "nightd",
+ "songFileName": "song_nightd",
+ "order": 2424,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 11210,
+ "shinutiNormal": 7180,
+ "shinutiHard": 4900,
+ "shinutiMania": 3110,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11210,
+ "shinutiNormalDuet": 7180,
+ "shinutiHardDuet": 4900,
+ "shinutiManiaDuet": 3110,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 0,
+ "scoreNormal": 0,
+ "scoreHard": 0,
+ "scoreMania": 0,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2241,
+ "id": "pkmdkm",
+ "songFileName": "song_pkmdkm",
+ "order": 2522,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 3,
+ "starHard": 4,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 13370,
+ "shinutiNormal": 7440,
+ "shinutiHard": 3630,
+ "shinutiMania": 2080,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 13370,
+ "shinutiNormalDuet": 7440,
+ "shinutiHardDuet": 3630,
+ "shinutiManiaDuet": 2080,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 0,
+ "scoreNormal": 0,
+ "scoreHard": 0,
+ "scoreMania": 0,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2242,
+ "id": "ravemc",
+ "songFileName": "song_ravemc",
+ "order": 2600,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 5860,
+ "shinutiNormal": 3750,
+ "shinutiHard": 2070,
+ "shinutiMania": 1350,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5860,
+ "shinutiNormalDuet": 3750,
+ "shinutiHardDuet": 2070,
+ "shinutiManiaDuet": 1350,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 0,
+ "scoreNormal": 0,
+ "scoreHard": 0,
+ "scoreMania": 0,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2243,
+ "id": "thsclp",
+ "songFileName": "song_thsclp",
+ "order": 2911,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 2,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 9,
+ "shinutiEasy": 7580,
+ "shinutiNormal": 5570,
+ "shinutiHard": 2740,
+ "shinutiMania": 1680,
+ "shinutiUra": 1080,
+ "shinutiEasyDuet": 7580,
+ "shinutiNormalDuet": 5570,
+ "shinutiHardDuet": 2740,
+ "shinutiManiaDuet": 1680,
+ "shinutiUraDuet": 1080,
+ "scoreEasy": 0,
+ "scoreNormal": 0,
+ "scoreHard": 0,
+ "scoreMania": 0,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2244,
+ "id": "ha9jit",
+ "songFileName": "song_ha9jit",
+ "order": 1775,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 4810,
+ "shinutiNormal": 2810,
+ "shinutiHard": 2070,
+ "shinutiMania": 1450,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 4810,
+ "shinutiNormalDuet": 2810,
+ "shinutiHardDuet": 2070,
+ "shinutiManiaDuet": 1450,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000480,
+ "scoreNormal": 1003170,
+ "scoreHard": 1001880,
+ "scoreMania": 1000500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2245,
+ "id": "heira",
+ "songFileName": "song_heira",
+ "order": 1797,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 6500,
+ "shinutiNormal": 3670,
+ "shinutiHard": 2510,
+ "shinutiMania": 1810,
+ "shinutiUra": 1230,
+ "shinutiEasyDuet": 6500,
+ "shinutiNormalDuet": 3670,
+ "shinutiHardDuet": 2510,
+ "shinutiManiaDuet": 1810,
+ "shinutiUraDuet": 1230,
+ "scoreEasy": 1001000,
+ "scoreNormal": 1001910,
+ "scoreHard": 1001490,
+ "scoreMania": 1004550,
+ "scoreUra": 1007370
+ },
+ {
+ "uniqueId": 2246,
+ "id": "holond",
+ "songFileName": "song_holond",
+ "order": 1824,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 6,
+ "starUra": 0,
+ "shinutiEasy": 11770,
+ "shinutiNormal": 8200,
+ "shinutiHard": 4530,
+ "shinutiMania": 2780,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11770,
+ "shinutiNormalDuet": 8200,
+ "shinutiHardDuet": 4530,
+ "shinutiManiaDuet": 2780,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000450,
+ "scoreNormal": 1000400,
+ "scoreHard": 1001130,
+ "scoreMania": 1000800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2247,
+ "id": "laches",
+ "songFileName": "song_laches",
+ "order": 2170,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 6500,
+ "shinutiNormal": 4000,
+ "shinutiHard": 2590,
+ "shinutiMania": 1530,
+ "shinutiUra": 980,
+ "shinutiEasyDuet": 6500,
+ "shinutiNormalDuet": 4000,
+ "shinutiHardDuet": 2590,
+ "shinutiManiaDuet": 1530,
+ "shinutiUraDuet": 980,
+ "scoreEasy": 1001000,
+ "scoreNormal": 1000000,
+ "scoreHard": 1002330,
+ "scoreMania": 1000620,
+ "scoreUra": 1003520
+ },
+ {
+ "uniqueId": 2248,
+ "id": "odloop",
+ "songFileName": "song_odloop",
+ "order": 2449,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6290,
+ "shinutiNormal": 3960,
+ "shinutiHard": 2490,
+ "shinutiMania": 1440,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6290,
+ "shinutiNormalDuet": 3960,
+ "shinutiHardDuet": 2490,
+ "shinutiManiaDuet": 1440,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000110,
+ "scoreNormal": 1001880,
+ "scoreHard": 1000980,
+ "scoreMania": 1000800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2249,
+ "id": "surikn",
+ "songFileName": "song_surikn",
+ "order": 2825,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 7,
+ "starHard": 7,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 5110,
+ "shinutiNormal": 3000,
+ "shinutiHard": 2120,
+ "shinutiMania": 1480,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 5110,
+ "shinutiNormalDuet": 3000,
+ "shinutiHardDuet": 2120,
+ "shinutiManiaDuet": 1480,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001560,
+ "scoreNormal": 1002000,
+ "scoreHard": 1000640,
+ "scoreMania": 1003440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2250,
+ "id": "tmktsr",
+ "songFileName": "song_tmktsr",
+ "order": 2929,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 3,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 12200,
+ "shinutiNormal": 8550,
+ "shinutiHard": 3310,
+ "shinutiMania": 2050,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12200,
+ "shinutiNormalDuet": 8550,
+ "shinutiHardDuet": 3310,
+ "shinutiManiaDuet": 2050,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1000350,
+ "scoreHard": 1002930,
+ "scoreMania": 1004500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2251,
+ "id": "ucgirl",
+ "songFileName": "song_ucgirl",
+ "order": 2990,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6460,
+ "shinutiNormal": 3870,
+ "shinutiHard": 2180,
+ "shinutiMania": 1380,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6460,
+ "shinutiNormalDuet": 3870,
+ "shinutiHardDuet": 2180,
+ "shinutiManiaDuet": 1380,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001300,
+ "scoreNormal": 1002330,
+ "scoreHard": 1000620,
+ "scoreMania": 1000500,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2252,
+ "id": "adsho2",
+ "songFileName": "song_adsho2",
+ "order": 1147,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 11120,
+ "shinutiNormal": 6580,
+ "shinutiHard": 3210,
+ "shinutiMania": 2180,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11120,
+ "shinutiNormalDuet": 6580,
+ "shinutiHardDuet": 3210,
+ "shinutiManiaDuet": 2180,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000800,
+ "scoreNormal": 1000160,
+ "scoreHard": 1001520,
+ "scoreMania": 1002800,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2253,
+ "id": "btrssc",
+ "songFileName": "song_btrssc",
+ "order": 1296,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 8410,
+ "shinutiNormal": 5240,
+ "shinutiHard": 2960,
+ "shinutiMania": 1760,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 8410,
+ "shinutiNormalDuet": 5240,
+ "shinutiHardDuet": 2960,
+ "shinutiManiaDuet": 1760,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000790,
+ "scoreNormal": 1000840,
+ "scoreHard": 1000480,
+ "scoreMania": 1001440,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2254,
+ "id": "ksdaha",
+ "songFileName": "song_ksdaha",
+ "order": 2148,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 11910,
+ "shinutiNormal": 6500,
+ "shinutiHard": 3410,
+ "shinutiMania": 2040,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 11910,
+ "shinutiNormalDuet": 6500,
+ "shinutiHardDuet": 3410,
+ "shinutiManiaDuet": 2040,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000440,
+ "scoreNormal": 1001000,
+ "scoreHard": 1002540,
+ "scoreMania": 1001640,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2255,
+ "id": "mikddc",
+ "songFileName": "song_mikddc",
+ "order": 2303,
+ "genreNo": 2,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6100,
+ "shinutiNormal": 3590,
+ "shinutiHard": 2070,
+ "shinutiMania": 1380,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6100,
+ "shinutiNormalDuet": 3590,
+ "shinutiHardDuet": 2070,
+ "shinutiManiaDuet": 1380,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1001610,
+ "scoreHard": 1003950,
+ "scoreMania": 1004640,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2256,
+ "id": "pkmhal",
+ "songFileName": "song_pkmhal",
+ "order": 2523,
+ "genreNo": 1,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 1,
+ "starNormal": 3,
+ "starHard": 3,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 16400,
+ "shinutiNormal": 8930,
+ "shinutiHard": 5210,
+ "shinutiMania": 2600,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 16400,
+ "shinutiNormalDuet": 8930,
+ "shinutiHardDuet": 5210,
+ "shinutiManiaDuet": 2600,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1000160,
+ "scoreHard": 1000320,
+ "scoreMania": 1003600,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2257,
+ "id": "rikka",
+ "songFileName": "song_rikka",
+ "order": 2612,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 7150,
+ "shinutiNormal": 4120,
+ "shinutiHard": 2930,
+ "shinutiMania": 1420,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 7150,
+ "shinutiNormalDuet": 4120,
+ "shinutiHardDuet": 2930,
+ "shinutiManiaDuet": 1420,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001000,
+ "scoreNormal": 1001160,
+ "scoreHard": 1002060,
+ "scoreMania": 1005360,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2258,
+ "id": "smtcin",
+ "songFileName": "song_smtcin",
+ "order": 2752,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 4,
+ "starMania": 7,
+ "starUra": 0,
+ "shinutiEasy": 12050,
+ "shinutiNormal": 7300,
+ "shinutiHard": 4070,
+ "shinutiMania": 2810,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12050,
+ "shinutiNormalDuet": 7300,
+ "shinutiHardDuet": 4070,
+ "shinutiManiaDuet": 2810,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000150,
+ "scoreNormal": 1000100,
+ "scoreHard": 1001220,
+ "scoreMania": 1003170,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2259,
+ "id": "utauta",
+ "songFileName": "song_utauta",
+ "order": 3039,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 8,
+ "starMania": 10,
+ "starUra": 0,
+ "shinutiEasy": 6420,
+ "shinutiNormal": 4510,
+ "shinutiHard": 2550,
+ "shinutiMania": 1480,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6420,
+ "shinutiNormalDuet": 4510,
+ "shinutiHardDuet": 2550,
+ "shinutiManiaDuet": 1480,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1001520,
+ "scoreNormal": 1001220,
+ "scoreHard": 1002150,
+ "scoreMania": 1006400,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2260,
+ "id": "ymyrp5",
+ "songFileName": "song_ymyrp5",
+ "order": 3123,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 4,
+ "starNormal": 6,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 6900,
+ "shinutiNormal": 3840,
+ "shinutiHard": 2210,
+ "shinutiMania": 1720,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6900,
+ "shinutiNormalDuet": 3840,
+ "shinutiHardDuet": 2210,
+ "shinutiManiaDuet": 1720,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000500,
+ "scoreNormal": 1002240,
+ "scoreHard": 1003340,
+ "scoreMania": 1002760,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2261,
+ "id": "ks531",
+ "songFileName": "song_ks531",
+ "order": 2147,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 10,
+ "shinutiEasy": 5820,
+ "shinutiNormal": 4000,
+ "shinutiHard": 2400,
+ "shinutiMania": 1550,
+ "shinutiUra": 1150,
+ "shinutiEasyDuet": 5820,
+ "shinutiNormalDuet": 4000,
+ "shinutiHardDuet": 2400,
+ "shinutiManiaDuet": 1550,
+ "shinutiUraDuet": 1150,
+ "scoreEasy": 1001040,
+ "scoreNormal": 1000000,
+ "scoreHard": 1000800,
+ "scoreMania": 1002850,
+ "scoreUra": 1000500
+ },
+ {
+ "uniqueId": 2262,
+ "id": "mknyel",
+ "songFileName": "song_mknyel",
+ "order": 2346,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 9,
+ "starUra": 0,
+ "shinutiEasy": 6100,
+ "shinutiNormal": 200000,
+ "shinutiHard": 2620,
+ "shinutiMania": 1310,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 6100,
+ "shinutiNormalDuet": 200000,
+ "shinutiHardDuet": 2620,
+ "shinutiManiaDuet": 1310,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000400,
+ "scoreNormal": 1000000,
+ "scoreHard": 1000840,
+ "scoreMania": 1002150,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 2263,
+ "id": "cna2b",
+ "songFileName": "song_cna2b",
+ "order": 1432,
+ "genreNo": 7,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 2,
+ "starNormal": 4,
+ "starHard": 5,
+ "starMania": 8,
+ "starUra": 7,
+ "shinutiEasy": 15630,
+ "shinutiNormal": 8000,
+ "shinutiHard": 4020,
+ "shinutiMania": 2540,
+ "shinutiUra": 3930,
+ "shinutiEasyDuet": 15630,
+ "shinutiNormalDuet": 8000,
+ "shinutiHardDuet": 4020,
+ "shinutiManiaDuet": 2540,
+ "shinutiUraDuet": 3930,
+ "scoreEasy": 1000320,
+ "scoreNormal": 1000000,
+ "scoreHard": 1000980,
+ "scoreMania": 1000760,
+ "scoreUra": 1002150
+ },
+ {
+ "uniqueId": 2264,
+ "id": "rydeen",
+ "songFileName": "song_rydeen",
+ "order": 2662,
+ "genreNo": 0,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 7,
+ "starMania": 7,
+ "starUra": 9,
+ "shinutiEasy": 8000,
+ "shinutiNormal": 4410,
+ "shinutiHard": 2790,
+ "shinutiMania": 1790,
+ "shinutiUra": 1240,
+ "shinutiEasyDuet": 8000,
+ "shinutiNormalDuet": 4410,
+ "shinutiHardDuet": 2790,
+ "shinutiManiaDuet": 1790,
+ "shinutiUraDuet": 1240,
+ "scoreEasy": 1000000,
+ "scoreNormal": 1001070,
+ "scoreHard": 1001610,
+ "scoreMania": 1000610,
+ "scoreUra": 1003160
+ },
+ {
+ "uniqueId": 2265,
+ "id": "gojira",
+ "songFileName": "song_gojira",
+ "order": 1746,
+ "genreNo": 3,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 3,
+ "starNormal": 5,
+ "starHard": 6,
+ "starMania": 8,
+ "starUra": 0,
+ "shinutiEasy": 12990,
+ "shinutiNormal": 7410,
+ "shinutiHard": 4550,
+ "shinutiMania": 2540,
+ "shinutiUra": 0,
+ "shinutiEasyDuet": 12990,
+ "shinutiNormalDuet": 7410,
+ "shinutiHardDuet": 4550,
+ "shinutiManiaDuet": 2540,
+ "shinutiUraDuet": 0,
+ "scoreEasy": 1000230,
+ "scoreNormal": 1000350,
+ "scoreHard": 1001000,
+ "scoreMania": 1003300,
+ "scoreUra": 0
+ },
+ {
+ "uniqueId": 9000,
+ "id": "udtmglx",
+ "songFileName": "song_udtmglx",
+ "order": 39001,
+ "genreNo": 6,
+ "branchEasy": false,
+ "branchNormal": false,
+ "branchHard": false,
+ "branchMania": false,
+ "branchUra": false,
+ "starEasy": 0,
+ "starNormal": 0,
+ "starHard": 0,
+ "starMania": 9,
+ "starUra": 10,
+ "shinutiEasy": 0,
+ "shinutiNormal": 0,
+ "shinutiHard": 0,
+ "shinutiMania": 1470,
+ "shinutiUra": 930,
+ "shinutiEasyDuet": 0,
+ "shinutiNormalDuet": 0,
+ "shinutiHardDuet": 0,
+ "shinutiManiaDuet": 1470,
+ "shinutiUraDuet": 930,
+ "scoreEasy": 0,
+ "scoreNormal": 0,
+ "scoreHard": 0,
+ "scoreMania": 1000980,
+ "scoreUra": 1010370
+ }
+]
\ No newline at end of file
diff --git a/TaikoSongConversionTool/script/_misc/wordlist.json b/TaikoSongConversionTool/script/_misc/wordlist.json
new file mode 100644
index 0000000..64c4942
--- /dev/null
+++ b/TaikoSongConversionTool/script/_misc/wordlist.json
@@ -0,0 +1,41750 @@
+[
+ {
+ "id": "80pan",
+ "songName": {
+ "jpText": "夏のドナサマー",
+ "jpFont": 0,
+ "enText": "Natsu no Donasama",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "夏のドナサマー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bright",
+ "songName": {
+ "jpText": "Brightdown",
+ "jpFont": 0,
+ "enText": "Brightdown",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "canta",
+ "songName": {
+ "jpText": "Allegro Cantabile",
+ "jpFont": 0,
+ "enText": "Allegro Cantabile",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "deno",
+ "songName": {
+ "jpText": "Climax Jump",
+ "jpFont": 0,
+ "enText": "Climax Jump",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "happy",
+ "songName": {
+ "jpText": "ハッピー☆彡",
+ "jpFont": 0,
+ "enText": "Happy ☆ 彡",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ハッピー☆彡",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ikasum",
+ "songName": {
+ "jpText": "イカSUMMER",
+ "jpFont": 0,
+ "enText": "Ika SUMMER",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "itoshi",
+ "songName": {
+ "jpText": "愛しい人へ",
+ "jpFont": 0,
+ "enText": "Itoshii Hito e",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "愛しい人へ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kaera",
+ "songName": {
+ "jpText": "リルラリルハ",
+ "jpFont": 0,
+ "enText": "Real Life, Real Heart",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "リルラリルハ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "michi",
+ "songName": {
+ "jpText": "道",
+ "jpFont": 0,
+ "enText": "Michi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "道",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikan",
+ "songName": {
+ "jpText": "みかんのうた",
+ "jpFont": 0,
+ "enText": "Mikan no Uta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "みかんのうた",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pri9g",
+ "songName": {
+ "jpText": "プリキュア5、スマイル go go!",
+ "jpFont": 0,
+ "enText": "Precure 5 Smile Go Go!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "プリキュア5、スマイル go go!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "purigo",
+ "songName": {
+ "jpText": "プリごろ太マーチ",
+ "jpFont": 0,
+ "enText": "Purigorota March",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "プリごろ太マーチ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rocky",
+ "songName": {
+ "jpText": "ロッキーのテーマ",
+ "jpFont": 0,
+ "enText": "Rocky Theme",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ロッキーのテーマ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "seamo",
+ "songName": {
+ "jpText": "マタアイマショウ",
+ "jpFont": 0,
+ "enText": "Mata Ai Mashou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "マタアイマショウ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sevent",
+ "songName": {
+ "jpText": "SEVENTH HEAVEN",
+ "jpFont": 0,
+ "enText": "SEVENTH HEAVEN",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "shala",
+ "songName": {
+ "jpText": "Sha la la -アヤカシNIGHT-",
+ "jpFont": 0,
+ "enText": "Sha la la - Ayakashi NIGHT -",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sutoro",
+ "songName": {
+ "jpText": "ストロベリmelody",
+ "jpFont": 0,
+ "enText": "Strawberry melody",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sze",
+ "songName": {
+ "jpText": "サザエさん一家",
+ "jpFont": 0,
+ "enText": "Sazae-san Ikka",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "サザエさん一家",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "takio",
+ "songName": {
+ "jpText": "南中ソーラン TAKIO'S SOHRAN 2",
+ "jpFont": 0,
+ "enText": "Takio's Sohran 2",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "windin",
+ "songName": {
+ "jpText": "WINDING ROAD",
+ "jpFont": 0,
+ "enText": "WINDING ROAD",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "akniro",
+ "songName": {
+ "jpText": "茜色の約束",
+ "jpFont": 0,
+ "enText": "Akaneiro no Yakusoku",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "茜色の約束",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "arara",
+ "songName": {
+ "jpText": "アララの呪文",
+ "jpFont": 0,
+ "enText": "Arara no Jumon",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アララの呪文",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "chance",
+ "songName": {
+ "jpText": "チャンス!",
+ "jpFont": 0,
+ "enText": "Chance!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "チャンス!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "chiisa",
+ "songName": {
+ "jpText": "小さな掌",
+ "jpFont": 0,
+ "enText": "Chiisana Tenohira",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "小さな掌",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "distan",
+ "songName": {
+ "jpText": "distance",
+ "jpFont": 0,
+ "enText": "distance",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fukoum",
+ "songName": {
+ "jpText": "フコウの国のお姫さま",
+ "jpFont": 0,
+ "enText": "Fukou no Kuni no Ohime-sama",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "フコウの国のお姫さま",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fundry",
+ "songName": {
+ "jpText": "フンダリー ケッタリー",
+ "jpFont": 0,
+ "enText": "Fundari Kettari",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "フンダリー ケッタリー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gmind",
+ "songName": {
+ "jpText": "グロリアス マインド",
+ "jpFont": 0,
+ "enText": "Glorious Mind",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "グロリアス マインド",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ishoul",
+ "songName": {
+ "jpText": "I SHOULD BE SO LUCKY",
+ "jpFont": 0,
+ "enText": "I SHOULD BE SO LUCKY",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kk2iru",
+ "songName": {
+ "jpText": "ここにいるよ feat.青山テルマ",
+ "jpFont": 0,
+ "enText": "Koko ni Iru yo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ここにいるよ feat.青山テルマ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mayday",
+ "songName": {
+ "jpText": "メーデー",
+ "jpFont": 0,
+ "enText": "Mayday",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "メーデー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "neiger",
+ "songName": {
+ "jpText": "豪石!超神ネイガー",
+ "jpFont": 0,
+ "enText": "Gouseki! Chokami Neiga",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "豪石!超神ネイガー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "prined",
+ "songName": {
+ "jpText": "手と手つないでハートもリンク!!",
+ "jpFont": 0,
+ "enText": "Te to te Tsunaide Heart mo Link!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "手と手つないでハートもリンク!!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "shizuk",
+ "songName": {
+ "jpText": "ぷるるんっ!しずくちゃん",
+ "jpFont": 0,
+ "enText": "Pururun! Shizuku-Chan",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ぷるるんっ!しずくちゃん",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "splend",
+ "songName": {
+ "jpText": "SPLENDOR",
+ "jpFont": 0,
+ "enText": "SPLENDOR",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ukiyo",
+ "songName": {
+ "jpText": "浮世CROSSING",
+ "jpFont": 0,
+ "enText": "Ukiyo CROSSING",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "浮世CROSSING",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a12c13",
+ "songName": {
+ "jpText": "箇中強手",
+ "jpFont": 0,
+ "enText": "Ge Zhong Qiangshou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "箇中強手",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a12c15",
+ "songName": {
+ "jpText": "獨家快樂",
+ "jpFont": 0,
+ "enText": "Dujia Kuaile",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "獨家快樂",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a12c16",
+ "songName": {
+ "jpText": "不愛最大",
+ "jpFont": 0,
+ "enText": "Bu Ai Zuida",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "不愛最大",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a12c25",
+ "songName": {
+ "jpText": "美好時光",
+ "jpFont": 0,
+ "enText": "Meihao Shíguang",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "美好時光",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a12c28",
+ "songName": {
+ "jpText": "頭號甜心",
+ "jpFont": 0,
+ "enText": "Tou Hao Tian Xing",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "頭號甜心",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a12c40",
+ "songName": {
+ "jpText": "我就是這樣",
+ "jpFont": 0,
+ "enText": "Wo Jiushi Zheyang",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "我就是這樣",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a12c41",
+ "songName": {
+ "jpText": "日不落",
+ "jpFont": 0,
+ "enText": "Ri Bu Luo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "日不落",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a12c43",
+ "songName": {
+ "jpText": "情不自禁",
+ "jpFont": 0,
+ "enText": "Qing Bu Zhi Jing",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "情不自禁",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a12c61",
+ "songName": {
+ "jpText": "男人KTV",
+ "jpFont": 0,
+ "enText": "Nan Ren KTV",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "男人KTV",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a12c75",
+ "songName": {
+ "jpText": "愛你的只有一個我",
+ "jpFont": 0,
+ "enText": "Ai Ni De Zhiyou Yige Wo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "愛你的只有一個我",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a12c77",
+ "songName": {
+ "jpText": "什麼東西",
+ "jpFont": 0,
+ "enText": "Shenme Dongxi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "什麼東西",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a12mus",
+ "songName": {
+ "jpText": "郷下老鼠",
+ "jpFont": 0,
+ "enText": "Xiang Xia Laoshu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "郷下老鼠",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a12o02",
+ "songName": {
+ "jpText": "煞科",
+ "jpFont": 0,
+ "enText": "Sha Ke",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "煞科",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a12o04",
+ "songName": {
+ "jpText": "雙節棍",
+ "jpFont": 0,
+ "enText": "Shuang Jie Gun",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "雙節棍",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a12o07",
+ "songName": {
+ "jpText": "對面的女孩看過來",
+ "jpFont": 0,
+ "enText": "Duimian de Nuhai Kan Guolai",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "對面的女孩看過來",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a12o10",
+ "songName": {
+ "jpText": "霍元甲",
+ "jpFont": 0,
+ "enText": "Huo Yuan Jia",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "霍元甲",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a12wng",
+ "songName": {
+ "jpText": "王老先生有塊地",
+ "jpFont": 0,
+ "enText": "Wang Lao Xiansheng You Kuai Di",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "王老先生有塊地",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a1donk",
+ "songName": {
+ "jpText": "小毛驢",
+ "jpFont": 0,
+ "enText": "Xiao Maolu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "小毛驢",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a1fah3",
+ "songName": {
+ "jpText": "我有我的young",
+ "jpFont": 0,
+ "enText": "Wo You Wo De young",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "我有我的young",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a1mic1",
+ "songName": {
+ "jpText": "童話",
+ "jpFont": 0,
+ "enText": "Tong Hua",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "童話",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a1radi",
+ "songName": {
+ "jpText": "拔蘿蔔",
+ "jpFont": 0,
+ "enText": "Ba Luo Buo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "拔蘿蔔",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a1she1",
+ "songName": {
+ "jpText": "Super Star",
+ "jpFont": 0,
+ "enText": "Super Star",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a1tige",
+ "songName": {
+ "jpText": "兩隻老虎",
+ "jpFont": 0,
+ "enText": "Liang Zhi Lao Hu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "兩隻老虎",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a1wan1",
+ "songName": {
+ "jpText": "改變自己",
+ "jpFont": 0,
+ "enText": "Gaibian Ziji",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "改變自己",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "amane",
+ "songName": {
+ "jpText": "タイヨウのうた",
+ "jpFont": 0,
+ "enText": "Taiyou no Uta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "タイヨウのうた",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "anatat",
+ "songName": {
+ "jpText": "あなたと",
+ "jpFont": 0,
+ "enText": "Anata to",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "あなたと",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "calib4",
+ "songName": {
+ "jpText": "IMMACULATE PLEDGE",
+ "jpFont": 0,
+ "enText": "IMMACULATE PLEDGE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "chubur",
+ "songName": {
+ "jpText": "CHU-BURA",
+ "jpFont": 0,
+ "enText": "CHU-BURA",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "closer",
+ "songName": {
+ "jpText": "CLOSER",
+ "jpFont": 0,
+ "enText": "CLOSER",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dancec",
+ "songName": {
+ "jpText": "Shooting Star",
+ "jpFont": 0,
+ "enText": "Shooting Star",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gdm00",
+ "songName": {
+ "jpText": "DAYBREAK'S BELL",
+ "jpFont": 0,
+ "enText": "DAYBREAK'S BELL",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gekido",
+ "songName": {
+ "jpText": "激動",
+ "jpFont": 0,
+ "enText": "Gekidou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "激動",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hudson",
+ "songName": {
+ "jpText": "スターソルジャーメドレー",
+ "jpFont": 0,
+ "enText": "Star Soldier Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "スターソルジャーメドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "inouta",
+ "songName": {
+ "jpText": "愛のうた",
+ "jpFont": 0,
+ "enText": "Ai no Uta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "愛のうた",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kiba",
+ "songName": {
+ "jpText": "Break the Chain",
+ "jpFont": 0,
+ "enText": "Break the Chain",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "krkrkr",
+ "songName": {
+ "jpText": "きらきらキララ☆彡",
+ "jpFont": 0,
+ "enText": "Kirakira Kirara☆彡",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "きらきらキララ☆彡",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lmc88",
+ "songName": {
+ "jpText": "88",
+ "jpFont": 0,
+ "enText": "88",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "or1",
+ "songName": {
+ "jpText": "花",
+ "jpFont": 0,
+ "enText": "Hana",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "花",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "overtf",
+ "songName": {
+ "jpText": "Over the Future",
+ "jpFont": 0,
+ "enText": "Over the Future",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "prison",
+ "songName": {
+ "jpText": "Prisoner Of Love",
+ "jpFont": 0,
+ "enText": "Prisoner Of Love",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rise",
+ "songName": {
+ "jpText": "RISE",
+ "jpFont": 0,
+ "enText": "RISE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "yaiko",
+ "songName": {
+ "jpText": "My Sweet Darlin'",
+ "jpFont": 0,
+ "enText": "My Sweet Darlin'",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "5onop",
+ "songName": {
+ "jpText": "炎神戦隊ゴーオンジャー",
+ "jpFont": 0,
+ "enText": "Engine Sentai Go Onger",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "炎神戦隊ゴーオンジャー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "born",
+ "songName": {
+ "jpText": "I Was Born To Love You",
+ "jpFont": 0,
+ "enText": "I Was Born To Love You",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "flayer",
+ "songName": {
+ "jpText": "TE-20",
+ "jpFont": 0,
+ "enText": "TE-20",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fpri9",
+ "songName": {
+ "jpText": "Let's!フレッシュプリキュア!",
+ "jpFont": 0,
+ "enText": "Let's! Fresh Precure!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Let's!フレッシュプリキュア!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gi6pon",
+ "songName": {
+ "jpText": "六本木~GIROPPON~",
+ "jpFont": 0,
+ "enText": "Roppongi ~ GIROPPON ~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "六本木~GIROPPON~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "loveso",
+ "songName": {
+ "jpText": "Love so sweet",
+ "jpFont": 0,
+ "enText": "Love so sweet",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lovin",
+ "songName": {
+ "jpText": "Lovin' Life",
+ "jpFont": 0,
+ "enText": "Lovin' Life",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pure",
+ "songName": {
+ "jpText": "Pure",
+ "jpFont": 0,
+ "enText": "Pure",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "triang",
+ "songName": {
+ "jpText": "トライアングラー",
+ "jpFont": 0,
+ "enText": "Triangler",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "トライアングラー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ayumi",
+ "songName": {
+ "jpText": "歩み",
+ "jpFont": 0,
+ "enText": "Ayumi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "歩み",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "beyour",
+ "songName": {
+ "jpText": "Be your wings",
+ "jpFont": 0,
+ "enText": "Be your wings",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「テイルズ オブ バーサス」テーマソング",
+ "jpFont": 0,
+ "enText": "\" Tales of VS. \" Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "decade",
+ "songName": {
+ "jpText": "Journey through the Decade",
+ "jpFont": 0,
+ "enText": "Journey through the Decade",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「仮面ライダーディケイド」より",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dis2",
+ "songName": {
+ "jpText": "エレクトリカルパレードのテーマ",
+ "jpFont": 0,
+ "enText": "BAROQUE HOEDOWN ~Electrical Parade Theme~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "エレクトリカルパレードのテーマ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dq9",
+ "songName": {
+ "jpText": "序曲IX",
+ "jpFont": 0,
+ "enText": "Overture IX",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ドラゴンクエストIX」より",
+ "jpFont": 0,
+ "enText": "From \" Dragon Quest IX \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "序曲IX",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "firewo",
+ "songName": {
+ "jpText": "FIREWORKS",
+ "jpFont": 0,
+ "enText": "FIREWORKS",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fpri9h",
+ "songName": {
+ "jpText": "LET'S!フレッシュプリキュア! ~Hybrid ver.~",
+ "jpFont": 0,
+ "enText": "Let’s! Fresh Pretty Cure! ~Hybrid Ver.~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "LET'S!フレッシュプリキュア! ~Hybrid ver.~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gegege",
+ "songName": {
+ "jpText": "ゲゲゲの鬼太郎",
+ "jpFont": 0,
+ "enText": "Gegege no Kitaro",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ゲゲゲの鬼太郎",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gggdx",
+ "songName": {
+ "jpText": "にんげんっていいな",
+ "jpFont": 0,
+ "enText": "Ningen tte Ii na",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「まんが日本昔ばなし」より",
+ "jpFont": 0,
+ "enText": "From \" Manga Nippon Mukashi Banashi \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "にんげんっていいな",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hamagu",
+ "songName": {
+ "jpText": "はまぐりボンバー",
+ "jpFont": 0,
+ "enText": "Hamaguri Bomber",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "はまぐりボンバー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "himawa",
+ "songName": {
+ "jpText": "ひまわり",
+ "jpFont": 0,
+ "enText": "Himawari",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ひまわり",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hitouc",
+ "songName": {
+ "jpText": "ハイタッチ!",
+ "jpFont": 0,
+ "enText": "High Touch!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ポケットモンスター ダイヤモンド・パール」より",
+ "jpFont": 0,
+ "enText": "From \" Pokémon the Series: Diamond and Pearl \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ハイタッチ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ikzo",
+ "songName": {
+ "jpText": "俺ら東京さ行ぐだ",
+ "jpFont": 0,
+ "enText": "Ora Tokyo-sa Iguda",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "俺ら東京さ行ぐだ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kata3",
+ "songName": {
+ "jpText": "塊オンザウィングス",
+ "jpFont": 0,
+ "enText": "Katamari on the Wings",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "塊オンザウィングス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kerott",
+ "songName": {
+ "jpText": "ケロッ!とマーチ",
+ "jpFont": 0,
+ "enText": "Kero! to March",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ケロロ軍曹」より",
+ "jpFont": 0,
+ "enText": "From \" Sgt. Frog \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ケロッ!とマーチ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kimagr",
+ "songName": {
+ "jpText": "LIFE",
+ "jpFont": 0,
+ "enText": "LIFE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kznina",
+ "songName": {
+ "jpText": "風になりたい",
+ "jpFont": 0,
+ "enText": "Kaze ni Naritai",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "風になりたい",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mecham",
+ "songName": {
+ "jpText": "めちゃモテ I LOVE YOU",
+ "jpFont": 0,
+ "enText": "Mecha Mote I LOVE YOU",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「極上!!めちゃモテ委員長」より",
+ "jpFont": 0,
+ "enText": "From \" Gokujo!! Mecha Mote Iincho \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "めちゃモテ I LOVE YOU",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nakana",
+ "songName": {
+ "jpText": "泣かないで",
+ "jpFont": 0,
+ "enText": "Nakanaide",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "泣かないで",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nightf",
+ "songName": {
+ "jpText": "NIGHT OF FIRE",
+ "jpFont": 0,
+ "enText": "NIGHT OF FIRE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "penetr",
+ "songName": {
+ "jpText": "PENETRATION",
+ "jpFont": 0,
+ "enText": "PENETRATION",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "タイトー「レイフォース」より",
+ "jpFont": 0,
+ "enText": "Taito From \" RayForce \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ppants",
+ "songName": {
+ "jpText": "パンパカパンツ",
+ "jpFont": 0,
+ "enText": "Pan Paka Pants",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "パンパカパンツ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pulmer",
+ "songName": {
+ "jpText": "プルメリア~花唄~",
+ "jpFont": 0,
+ "enText": "Plumeria ~Hana-Uta~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "プルメリア~花唄~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sclday",
+ "songName": {
+ "jpText": "School Days",
+ "jpFont": 0,
+ "enText": "School Days",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "アニメ「しゅごキャラ!!どきっ」より",
+ "jpFont": 0,
+ "enText": "From \" Shugo Chara!! Doki \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "shuchi",
+ "songName": {
+ "jpText": "羞恥心",
+ "jpFont": 0,
+ "enText": "Shuchishin",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "羞恥心",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sobani",
+ "songName": {
+ "jpText": "そばにいるね",
+ "jpFont": 0,
+ "enText": "Soba ni Iru ne",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "そばにいるね",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "umiyuk",
+ "songName": {
+ "jpText": "海雪",
+ "jpFont": 0,
+ "enText": "Umi Yuki",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "海雪",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "yatta2",
+ "songName": {
+ "jpText": "ヤッターマンの歌 (ET-KING)",
+ "jpFont": 0,
+ "enText": "Yatterman no Uta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Yatterman",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ヤッターマンの歌 (ET-KING)",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ymck",
+ "songName": {
+ "jpText": "ファミリードンドン",
+ "jpFont": 0,
+ "enText": "Family Don-don",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "by YMCK",
+ "jpFont": 0,
+ "enText": "by YMCK",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ファミリードンドン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "coro2",
+ "songName": {
+ "jpText": "お菓子刑事の歌",
+ "jpFont": 0,
+ "enText": "Okashi Deka no Uta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "お菓子刑事の歌",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "funmon",
+ "songName": {
+ "jpText": "ヒーロー",
+ "jpFont": 0,
+ "enText": "Hero",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ヒーロー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ichiko",
+ "songName": {
+ "jpText": "また君に恋してる",
+ "jpFont": 0,
+ "enText": "Mata Kimi ni Koishi Teru",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "また君に恋してる",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "inaire",
+ "songName": {
+ "jpText": "勝って泣こうゼッ!",
+ "jpFont": 0,
+ "enText": "Katte Nakou Ze~! ",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "TVアニメ「イナズマイレブン」より",
+ "jpFont": 0,
+ "enText": "From \" Inazuma Eleven \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "勝って泣こうゼッ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lovera",
+ "songName": {
+ "jpText": "LOVE RAIN ~恋の雨~",
+ "jpFont": 0,
+ "enText": "LOVE RAIN ~Koi no Ame~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "LOVE RAIN ~恋の雨~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "maneki",
+ "songName": {
+ "jpText": "まねきねこダックの歌",
+ "jpFont": 0,
+ "enText": "Maneki Neko Duck no Uta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "まねきねこダックの歌",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mcdnld",
+ "songName": {
+ "jpText": "パパマママック",
+ "jpFont": 0,
+ "enText": "Papa Mama Mc",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "マクドナルドコラボ曲",
+ "jpFont": 0,
+ "enText": "McDonalds Collaboration Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "パパマママック",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mecha2",
+ "songName": {
+ "jpText": "君が主役さっ!",
+ "jpFont": 0,
+ "enText": "Kimi ga Shuyaku Sa~!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「極上!!めちゃモテ委員長」より",
+ "jpFont": 0,
+ "enText": "From \" Gokujo!! Mecha Mote Iincho \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "君が主役さっ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "onara",
+ "songName": {
+ "jpText": "Onaraはずかしくないよ",
+ "jpFont": 0,
+ "enText": "Onara Hazukashikunai Yo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "テレビ東京「ピラメキーノ」より",
+ "jpFont": 0,
+ "enText": "TV TOKYO From \" Piramekino \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Onaraはずかしくないよ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ryouma",
+ "songName": {
+ "jpText": "龍馬伝",
+ "jpFont": 0,
+ "enText": "Ryoumaden",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "龍馬伝",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "saikoe",
+ "songName": {
+ "jpText": "サイコー・エブリデイ!",
+ "jpFont": 0,
+ "enText": "Saikou Everyday!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ポケットモンスター ダイヤモンド・パール」より",
+ "jpFont": 0,
+ "enText": "From \" Pokémon the Series: Diamond and Pearl \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "サイコー・エブリデイ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thrill",
+ "songName": {
+ "jpText": "スリラー",
+ "jpFont": 0,
+ "enText": "Thriller",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "スリラー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "victry",
+ "songName": {
+ "jpText": "VICTORY",
+ "jpFont": 0,
+ "enText": "VICTORY",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dqop",
+ "songName": {
+ "jpText": "ドラゴンクエストⅧ 序曲",
+ "jpFont": 0,
+ "enText": "Dragon Quest 8 Opening",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドラゴンクエストⅧ 序曲",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kage",
+ "songName": {
+ "jpText": "影の伝説",
+ "jpFont": 0,
+ "enText": "Kage no Densetsu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "影の伝説",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "konan3",
+ "songName": {
+ "jpText": "Growing of my heart",
+ "jpFont": 0,
+ "enText": "Growing of my heart",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "maiahi",
+ "songName": {
+ "jpText": "恋のマイアヒ",
+ "jpFont": 0,
+ "enText": "Koi no Maiyahi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "恋のマイアヒ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "naru2",
+ "songName": {
+ "jpText": "波風サテライト",
+ "jpFont": 0,
+ "enText": "Namikaze Satellite",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "波風サテライト",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "otome",
+ "songName": {
+ "jpText": "オトメロディー",
+ "jpFont": 0,
+ "enText": "Oto Melody",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "オトメロディー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pecori",
+ "songName": {
+ "jpText": "PECORI♥NIGHT",
+ "jpFont": 0,
+ "enText": "PECORI♥NIGHT",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "porno",
+ "songName": {
+ "jpText": "ジョバイロ",
+ "jpFont": 0,
+ "enText": "Yo Bailo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ジョバイロ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "spark",
+ "songName": {
+ "jpText": "SPARKING 鉄拳5",
+ "jpFont": 0,
+ "enText": "SPARKING Tekken 5",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "SPARKING 鉄拳5",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sura2",
+ "songName": {
+ "jpText": "スライムもりもり ドラゴンクエスト2",
+ "jpFont": 0,
+ "enText": "Dragon Quest Heroes: Rocket Slime",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "スライムもりもり ドラゴンクエスト2",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "wat",
+ "songName": {
+ "jpText": "僕のキモチ",
+ "jpFont": 0,
+ "enText": "Boku no Kimochi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "僕のキモチ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "wataru",
+ "songName": {
+ "jpText": "渡る世間は鬼ばかり テーマ",
+ "jpFont": 0,
+ "enText": "Wataru Seken wa Onibakari Theme",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "渡る世間は鬼ばかり テーマ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bymy",
+ "songName": {
+ "jpText": "バイマイメロディー",
+ "jpFont": 0,
+ "enText": "Bye My Melody",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "バイマイメロディー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "cry",
+ "songName": {
+ "jpText": "NO MORE CRY",
+ "jpFont": 0,
+ "enText": "NO MORE CRY",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dang",
+ "songName": {
+ "jpText": "Dang Dang",
+ "jpFont": 0,
+ "enText": "Dang Dang",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "koda",
+ "songName": {
+ "jpText": "Butterfly",
+ "jpFont": 0,
+ "enText": "Butterfly",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lesson",
+ "songName": {
+ "jpText": "恋のPecori♡Lesson",
+ "jpFont": 0,
+ "enText": "Koi no Pecori ♥ Lesson",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "恋のPecori♡Lesson",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "medaka",
+ "songName": {
+ "jpText": "めだかの兄妹",
+ "jpFont": 0,
+ "enText": "Medaka no Kyoudai",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "めだかの兄妹",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "melody",
+ "songName": {
+ "jpText": "コイ♥クル",
+ "jpFont": 0,
+ "enText": "Koi ♥ Kuru",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "コイ♥クル",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pri9s",
+ "songName": {
+ "jpText": "まかせて★スプラッシュ☆スター★",
+ "jpFont": 0,
+ "enText": "Makasete Splash Star",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "まかせて★スプラッシュ☆スター★",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "remen8",
+ "songName": {
+ "jpText": "Re\\:member",
+ "jpFont": 0,
+ "enText": "Re\\:member",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sunjon",
+ "songName": {
+ "jpText": "純情~スンジョン~",
+ "jpFont": 0,
+ "enText": "Junjou ~sunjon~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "純情~スンジョン~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "warau",
+ "songName": {
+ "jpText": "「笑うが勝ち!」でGO!",
+ "jpFont": 0,
+ "enText": "Warau ga Kachi! De GO!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "「笑うが勝ち!」でGO!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "zelda",
+ "songName": {
+ "jpText": "ゼルダの伝説のテーマ",
+ "jpFont": 0,
+ "enText": "Legend of Zelda Theme",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ゼルダの伝説のテーマ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ds3bs1",
+ "songName": {
+ "jpText": "KAGYUKIYO",
+ "jpFont": 0,
+ "enText": "KAGYUKIYO",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "river",
+ "songName": {
+ "jpText": "RIVER",
+ "jpFont": 0,
+ "enText": "RIVER",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "coro",
+ "songName": {
+ "jpText": "俺たちコロコロAge",
+ "jpFont": 0,
+ "enText": "Oretachi CoroCoro Age",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "俺たちコロコロAge",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ace3ds",
+ "songName": {
+ "jpText": "Fighter's Honor (Flying Remix)",
+ "jpFont": 0,
+ "enText": "Fighter's Honor (Flying Remix)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ccb",
+ "songName": {
+ "jpText": "君に、ロマンティック。",
+ "jpFont": 0,
+ "enText": "Kimi ni, Romantic",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "君に、ロマンティック。",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "inaoha",
+ "songName": {
+ "jpText": "おはよう!シャイニング・デイ",
+ "jpFont": 0,
+ "enText": "Ohayou! Shining Day",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「イナズマイレブンGO」より",
+ "jpFont": 0,
+ "enText": "From \" Inazuma Eleven GO \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "おはよう!シャイニング・デイ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "smagic",
+ "songName": {
+ "jpText": "Sweet Sweet Magic",
+ "jpFont": 0,
+ "enText": "Sweet Sweet Magic",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "anatab",
+ "songName": {
+ "jpText": "アナタボシ",
+ "jpFont": 0,
+ "enText": "Anataboshi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「きらりん☆レボリューション」より",
+ "jpFont": 0,
+ "enText": "From \" Kirarin☆Revolution \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アナタボシ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "monky",
+ "songName": {
+ "jpText": "モンキー・マジック",
+ "jpFont": 0,
+ "enText": "Monkey Magic",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "モンキー・マジック",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "negima",
+ "songName": {
+ "jpText": "ハッピー★マテリアル",
+ "jpFont": 0,
+ "enText": "Happy Material",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "魔法先生ネギま!",
+ "jpFont": 0,
+ "enText": "Negima! Magister Negi Magi!",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ハッピー★マテリアル",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "osama",
+ "songName": {
+ "jpText": "かつとマリ子の絵かきうた",
+ "jpFont": 0,
+ "enText": "Katsu to Mariko no Ekaki Uta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "かつとマリ子の絵かきうた",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ping",
+ "songName": {
+ "jpText": "卓球de脱臼",
+ "jpFont": 0,
+ "enText": "Takkyu de Dakkyu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Kinta",
+ "jpFont": 0,
+ "enText": "Kinta",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "卓球de脱臼",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "samba",
+ "songName": {
+ "jpText": "マツケンサンバII",
+ "jpFont": 0,
+ "enText": "Matsuken Samba II",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "マツケンサンバII",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "taiyo",
+ "songName": {
+ "jpText": "手のひらを太陽に",
+ "jpFont": 0,
+ "enText": "Tenohira o Taiyou ni",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "手のひらを太陽に",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "truth2",
+ "songName": {
+ "jpText": "TRUTH",
+ "jpFont": 0,
+ "enText": "TRUTH",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "w2bs1x",
+ "songName": {
+ "jpText": "ワルルーさまの歌を聴けぇ!",
+ "jpFont": 0,
+ "enText": "Waruru-sama no Uta o Ki ke!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ワルルーさまの歌を聴けぇ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bkov2",
+ "songName": {
+ "jpText": "ラブユー☆どんちゃん",
+ "jpFont": 0,
+ "enText": "Love You☆Don-Chan",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ラブユー☆どんちゃん",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dbmaxi",
+ "songName": {
+ "jpText": "マキシフュージョン",
+ "jpFont": 0,
+ "enText": "Max Fusion",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ドラゴンボールフュージョンズ」より",
+ "jpFont": 0,
+ "enText": "From \" Dragon Ball Fusions \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "マキシフュージョン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dmp31k",
+ "songName": {
+ "jpText": "Ψです I LIKE YOU",
+ "jpFont": 0,
+ "enText": "Psi Desu I LIKE YOU",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「斉木楠雄のΨ難」より",
+ "jpFont": 0,
+ "enText": "From \" The Disastrous Life of Saiki K. \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Ψです I LIKE YOU",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gekit4",
+ "songName": {
+ "jpText": "Inscrutable Battle",
+ "jpFont": 0,
+ "enText": "Inscrutable Battle",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「大改造!!劇的ビフォーアフター」より",
+ "jpFont": 0,
+ "enText": "From \" Daikaizo!! Gekiteki Bifuxo-afuta \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "heavy2",
+ "songName": {
+ "jpText": "地獄の太鼓事典",
+ "jpFont": 0,
+ "enText": "Jigoku no Taiko Jiten",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "地獄の太鼓事典",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rr22",
+ "songName": {
+ "jpText": "Rare Hero",
+ "jpFont": 0,
+ "enText": "Rare Hero",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "リッジレーサー",
+ "jpFont": 0,
+ "enText": "From \" Ridge Racer \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sekaif",
+ "songName": {
+ "jpText": "世界ふしぎ発見!オープニングテーマ",
+ "jpFont": 0,
+ "enText": "Sekai Fushigi Hakken! Opening Theme",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "世界ふしぎ発見!オープニングテーマ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "1psikr",
+ "songName": {
+ "jpText": "怒りをくれよ",
+ "jpFont": 0,
+ "enText": "Ikari o Kure yo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ワンピース フィルム ゴールド」より",
+ "jpFont": 0,
+ "enText": "From \" One Piece: Gold \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "怒りをくれよ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "2jiwar",
+ "songName": {
+ "jpText": "虹色の戦争",
+ "jpFont": 0,
+ "enText": "Nijiiro no Sensou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "SEKAI NO OWARI",
+ "jpFont": 0,
+ "enText": "SEKAI NO OWARI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "虹色の戦争",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "365lov",
+ "songName": {
+ "jpText": "365日のラブストーリー。",
+ "jpFont": 0,
+ "enText": "365 Nichi no Love Story",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "365日のラブストーリー。",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "5bust",
+ "songName": {
+ "jpText": "バスターズ レディーゴー!",
+ "jpFont": 0,
+ "enText": "Busters Let's Go!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「特命戦隊ゴーバスターズ」より",
+ "jpFont": 0,
+ "enText": "From \" Tokumei Sentai Go-Busters \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "バスターズ レディーゴー!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "5kaija",
+ "songName": {
+ "jpText": "海賊戦隊ゴーカイジャー ",
+ "jpFont": 0,
+ "enText": "Kaizoku Sentai Gokaiger",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "海賊戦隊ゴーカイジャー ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "7oops",
+ "songName": {
+ "jpText": "ラヴァーズ",
+ "jpFont": 0,
+ "enText": "Lovers",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「NARUTO‐ナルト‐疾風伝」より",
+ "jpFont": 0,
+ "enText": "From \" Naruto: Shippuden \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ラヴァーズ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "965op2",
+ "songName": {
+ "jpText": "The Other self",
+ "jpFont": 0,
+ "enText": "The Other self",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「黒子のバスケ」より",
+ "jpFont": 0,
+ "enText": "From \" Kuroko no Basuke \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "9renja",
+ "songName": {
+ "jpText": "LUCKYSTAR",
+ "jpFont": 0,
+ "enText": "LUCKYSTAR",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「宇宙戦隊キュウレンジャー」より",
+ "jpFont": 0,
+ "enText": "From \" Uchu Sentai Kyuranger \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ageta6",
+ "songName": {
+ "jpText": "とんかつDJアゲ太郎",
+ "jpFont": 0,
+ "enText": "Tonkatsu DJ Agetarou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "-太鼓の達人Mix-",
+ "jpFont": 0,
+ "enText": "-Taiko no Tatsujin Mix-",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "とんかつDJアゲ太郎",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "akb10t",
+ "songName": {
+ "jpText": "風は吹いている",
+ "jpFont": 0,
+ "enText": "Kaze wa Fuiteiru",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "AKB48 × 太鼓の達人",
+ "jpFont": 0,
+ "enText": "AKB48 x Taiko no Tatsujin",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "風は吹いている",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "akbsg",
+ "songName": {
+ "jpText": "真夏のSounds good!",
+ "jpFont": 0,
+ "enText": "Manatsu no Sounds good!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "真夏のSounds good!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "akbuza",
+ "songName": {
+ "jpText": "UZA",
+ "jpFont": 0,
+ "enText": "UZA",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "alxswn",
+ "songName": {
+ "jpText": "Swan",
+ "jpFont": 0,
+ "enText": "Swan",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "[Alexandros]",
+ "jpFont": 0,
+ "enText": "[Alexandros]",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "anp3",
+ "songName": {
+ "jpText": "アンパンマンたいそう",
+ "jpFont": 0,
+ "enText": "Anpanman Taisou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "それいけ!アンパンマン",
+ "jpFont": 0,
+ "enText": "Sore Ike! Anpanman",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アンパンマンたいそう",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "aruite",
+ "songName": {
+ "jpText": "歩いていこう",
+ "jpFont": 0,
+ "enText": "Aruite Ikou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ドラマ「ランナウェイ 〜愛する君のために」より",
+ "jpFont": 0,
+ "enText": "From \" Runaways: For Your Love \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "歩いていこう",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "attaka",
+ "songName": {
+ "jpText": "あったかいんだからぁ♪",
+ "jpFont": 0,
+ "enText": "Atatakai'n Dakara♪",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Kumamushi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "あったかいんだからぁ♪",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bakuti",
+ "songName": {
+ "jpText": "バクチ・ダンサー",
+ "jpFont": 0,
+ "enText": "Bakuchi Dancer",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「劇場版 銀魂 新訳紅桜篇」より",
+ "jpFont": 0,
+ "enText": "From \" Gintama: The Movie \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "バクチ・ダンサー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bko2",
+ "songName": {
+ "jpText": "どん子のファーストデート",
+ "jpFont": 0,
+ "enText": "Donko no First Date",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "どん子のファーストデート",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bldcir",
+ "songName": {
+ "jpText": "ブラッドサーキュレーター",
+ "jpFont": 0,
+ "enText": "Blood Circulator",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「NARUTO-ナルト-疾風伝」より",
+ "jpFont": 0,
+ "enText": "From \" Naruto: Shippuden \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ブラッドサーキュレーター",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bymysi",
+ "songName": {
+ "jpText": "バイマイサイド",
+ "jpFont": 0,
+ "enText": "By My Side",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「NARUTO‐ナルト‐疾風伝」より",
+ "jpFont": 0,
+ "enText": "From \" Naruto: Shippuden \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "バイマイサイド",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "cando",
+ "songName": {
+ "jpText": "Can Do",
+ "jpFont": 0,
+ "enText": "Can Do",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「黒子のバスケ」より",
+ "jpFont": 0,
+ "enText": "From \" Kuroko's Basketball \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "cha3",
+ "songName": {
+ "jpText": "おもちゃのチャチャチャ",
+ "jpFont": 0,
+ "enText": "Omocha no Chachacha",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "おもちゃのチャチャチャ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "chu2ed",
+ "songName": {
+ "jpText": "INSIDE IDENTITY",
+ "jpFont": 0,
+ "enText": "INSIDE IDENTITY",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「中二病でも恋がしたい!」より",
+ "jpFont": 0,
+ "enText": "From \" Love, Chunibyo & Other Delusions \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "cowcow",
+ "songName": {
+ "jpText": "あたりまえ体操",
+ "jpFont": 0,
+ "enText": "Atarimae Taisou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "あたりまえ体操",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dmgene",
+ "songName": {
+ "jpText": "Dance My Generation",
+ "jpFont": 0,
+ "enText": "Dance My Generation",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ゴールデンボンバー",
+ "jpFont": 0,
+ "enText": "Goldenbomber",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "doremi",
+ "songName": {
+ "jpText": "ドレミファソライロ",
+ "jpFont": 0,
+ "enText": "DoReMiFa Sorairo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「たまごっち!ゆめキラドリーム」より",
+ "jpFont": 0,
+ "enText": "From \" Tamagotchi! Yume Kiradori-mu \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドレミファソライロ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dq10",
+ "songName": {
+ "jpText": "序曲 ドラゴンクエストXより",
+ "jpFont": 0,
+ "enText": "Overture From Dragon Quest X",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "序曲 ドラゴンクエストXより",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "eblaze",
+ "songName": {
+ "jpText": "ETERNAL BLAZE",
+ "jpFont": 0,
+ "enText": "ETERNAL BLAZE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "水樹奈々",
+ "jpFont": 0,
+ "enText": "Nana Mizuki",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "egaokp",
+ "songName": {
+ "jpText": "笑顔にカンパイ!",
+ "jpFont": 0,
+ "enText": "Egao ni Kanpai!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「サラリーマンNEO」より",
+ "jpFont": 0,
+ "enText": "From \" Neo Office Chuckles \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "笑顔にカンパイ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fantbb",
+ "songName": {
+ "jpText": "FANTASTIC BABY",
+ "jpFont": 0,
+ "enText": "FANTASTIC BABY",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fozeop",
+ "songName": {
+ "jpText": "Switch On!",
+ "jpFont": 0,
+ "enText": "Switch On!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「仮面ライダーフォーゼ」より",
+ "jpFont": 0,
+ "enText": "From \" Kamen Rider Fourze \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fufish",
+ "songName": {
+ "jpText": "FUTURE FISH",
+ "jpFont": 0,
+ "enText": "FUTURE FISH",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「Free! -Eternal Summer-」より",
+ "jpFont": 0,
+ "enText": "From \" Free! -Eternal Summer- \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gbfgo",
+ "songName": {
+ "jpText": "GO",
+ "jpFont": 0,
+ "enText": "GO",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gekir3",
+ "songName": {
+ "jpText": "激レアさんスペシャルメドレー",
+ "jpFont": 0,
+ "enText": "Geki-rare-san Special Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "激レアさんを連れてきた。",
+ "jpFont": 0,
+ "enText": "Geki-rare-san wo Tsurete kita",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "激レアさんスペシャルメドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gng999",
+ "songName": {
+ "jpText": "銀河鉄道999",
+ "jpFont": 0,
+ "enText": "Galaxy Express 999",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "銀河鉄道999",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gumimo",
+ "songName": {
+ "jpText": "モザイクロール",
+ "jpFont": 0,
+ "enText": "Mozaik Role",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "DECO*27 feat. GUMI",
+ "jpFont": 0,
+ "enText": "DECO*27 feat. GUMI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "モザイクロール",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "haphap",
+ "songName": {
+ "jpText": "ハピハピ",
+ "jpFont": 0,
+ "enText": "Happy Happy",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "TVアニメ「クレヨンしんちゃん」より",
+ "jpFont": 0,
+ "enText": "From \" Crayon Shin-chan \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ハピハピ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hslove",
+ "songName": {
+ "jpText": "Highschool ♡ love",
+ "jpFont": 0,
+ "enText": "Highschool ♡ love",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hslump",
+ "songName": {
+ "jpText": "ハートスランプ二人ぼっち",
+ "jpFont": 0,
+ "enText": "Heart Slump Futari-bocchi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「探偵!ナイトスクープ」のテーマ",
+ "jpFont": 0,
+ "enText": "From \" Knight Scoop \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ハートスランプ二人ぼっち",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "iaenme",
+ "songName": {
+ "jpText": "延命治療",
+ "jpFont": 0,
+ "enText": "Enmei Chiryou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Neru feat.IA",
+ "jpFont": 0,
+ "enText": "Neru feat.IA",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "延命治療",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imibla",
+ "songName": {
+ "jpText": "IMITATION BLACK",
+ "jpFont": 0,
+ "enText": "IMITATION BLACK",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "SCL Project(NatsuP) feat.VanaN'Ice",
+ "jpFont": 0,
+ "enText": "SCL Project (natsuP) feat.Vana N'Ice",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "inach9",
+ "songName": {
+ "jpText": "地球を回せっ!",
+ "jpFont": 0,
+ "enText": "Chikyuu o Mawase!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「イナズマイレブンGOギャラクシー」より",
+ "jpFont": 0,
+ "enText": "From \" Inazuma Eleven GO \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "地球を回せっ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "iwish",
+ "songName": {
+ "jpText": "I Wish For You",
+ "jpFont": 0,
+ "enText": "I Wish For You",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "jyuoja",
+ "songName": {
+ "jpText": "動物戦隊ジュウオウジャー",
+ "jpFont": 0,
+ "enText": "Doubutsu Sentai Zyuohger",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "動物戦隊ジュウオウジャー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "k2mtom",
+ "songName": {
+ "jpText": "友よ ~この先もずっと…",
+ "jpFont": 0,
+ "enText": "Tomo Yo~Kono Saki mo Zutto…",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "友よ ~この先もずっと…",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kaasan",
+ "songName": {
+ "jpText": "毎日かあさん",
+ "jpFont": 0,
+ "enText": "Mainichi Kaasan",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "毎日かあさん",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "karon",
+ "songName": {
+ "jpText": "カロン",
+ "jpFont": 0,
+ "enText": "Karon",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "au「LISMO!」CMソング",
+ "jpFont": 0,
+ "enText": "au \" LISMO! \" CM Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "カロン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kazega",
+ "songName": {
+ "jpText": "風が吹いている",
+ "jpFont": 0,
+ "enText": "Kaze wa Fuiteiru",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "NHKロンドンオリンピック放送 テーマソング",
+ "jpFont": 0,
+ "enText": "NHK London Olympics Broadcast Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "風が吹いている",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kiraki",
+ "songName": {
+ "jpText": "キラキラ Every day",
+ "jpFont": 0,
+ "enText": "Kirakira Every day",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「たまごっち!」より",
+ "jpFont": 0,
+ "enText": "From \" Tamagotchi \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "キラキラ Every day",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kirapw",
+ "songName": {
+ "jpText": "KIRA☆Power",
+ "jpFont": 0,
+ "enText": "KIRA☆Power",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイカツ!」より",
+ "jpFont": 0,
+ "enText": "From \" Aikatsu! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kiskis",
+ "songName": {
+ "jpText": "KISS KISS BANG BANG",
+ "jpFont": 0,
+ "enText": "KISS KISS BANG BANG",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アサヒ飲料十六茶CM」より",
+ "jpFont": 0,
+ "enText": "From \" Asahi Soft Drink Jurokucha CM \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kktmhp",
+ "songName": {
+ "jpText": "ここたまハッピ~パラダイス!",
+ "jpFont": 0,
+ "enText": "Cocotama Happy~Paradise!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ここたまハッピ~パラダイス!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kroman",
+ "songName": {
+ "jpText": "気まぐれロマンティック",
+ "jpFont": 0,
+ "enText": "Kimagure Romantic",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "気まぐれロマンティック",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lion",
+ "songName": {
+ "jpText": "ライオン",
+ "jpFont": 0,
+ "enText": "Lion",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「マクロスFrontier」より",
+ "jpFont": 0,
+ "enText": "From \" Macross Frontier \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ライオン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "llsnow",
+ "songName": {
+ "jpText": "Snow halation",
+ "jpFont": 0,
+ "enText": "Snow halation",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "μ's 「ラブライブ!」より",
+ "jpFont": 0,
+ "enText": "μ's From \" Love Live! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lovele",
+ "songName": {
+ "jpText": "ラブレター",
+ "jpFont": 0,
+ "enText": "Love Letter",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ラブレター",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lspri9",
+ "songName": {
+ "jpText": "ラ♪ラ♪ラ♪スイートプリキュア♪",
+ "jpFont": 0,
+ "enText": "La La La Suite Precure",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ラ♪ラ♪ラ♪スイートプリキュア♪",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "m96ikz",
+ "songName": {
+ "jpText": "行くぜっ!怪盗少女 ‐Z ver.‐",
+ "jpFont": 0,
+ "enText": "Ikuze! Kaitou Shoujo -Z ver.-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "行くぜっ!怪盗少女 ‐Z ver.‐",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "marumo",
+ "songName": {
+ "jpText": "マル・マル・モリ・モリ!",
+ "jpFont": 0,
+ "enText": "Maru Maru Mori Mori!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "マル・マル・モリ・モリ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mcrd1d",
+ "songName": {
+ "jpText": "一度だけの恋なら",
+ "jpFont": 0,
+ "enText": "Ichido Dake Koi Nara",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「マクロスΔ」より",
+ "jpFont": 0,
+ "enText": "From \" Macross Delta \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "一度だけの恋なら",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mcrdbl",
+ "songName": {
+ "jpText": "いけないボーダーライン",
+ "jpFont": 0,
+ "enText": "Ikenai Borderline",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「マクロスΔ」より",
+ "jpFont": 0,
+ "enText": "From \" Macross Delta \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "いけないボーダーライン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "misena",
+ "songName": {
+ "jpText": "ミセナイナミダハ、きっといつか",
+ "jpFont": 0,
+ "enText": "Misenai Namida wa, Kitto Itsu Ka",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ミセナイナミダハ、きっといつか",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mister",
+ "songName": {
+ "jpText": "MISTER",
+ "jpFont": 0,
+ "enText": "MISTER",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mlov2k",
+ "songName": {
+ "jpText": "マジLOVE2000%",
+ "jpFont": 0,
+ "enText": "Maji LOVE 2000%",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「うたの☆プリンスさまっ♪ マジLOVE2000%」より",
+ "jpFont": 0,
+ "enText": "From \" Uta no☆Purinsu sa ma♪Maji LOVE 2000% \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "マジLOVE2000%",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "monhn3",
+ "songName": {
+ "jpText": "モンスターハンター3(トライ)G メドレー",
+ "jpFont": 0,
+ "enText": "Monster Hunter 3(Tri)G Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "モンスターハンター3(トライ)G メドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "niji",
+ "songName": {
+ "jpText": "虹",
+ "jpFont": 0,
+ "enText": "Niji",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "虹",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "oneday",
+ "songName": {
+ "jpText": "One day",
+ "jpFont": 0,
+ "enText": "One day",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ワンピース」より",
+ "jpFont": 0,
+ "enText": "From \" ONE PIECE \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "onedri",
+ "songName": {
+ "jpText": "1 ドリーム",
+ "jpFont": 0,
+ "enText": "1 Dream",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ダンボール戦機」より",
+ "jpFont": 0,
+ "enText": "From \" Little Battlers Experience \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "1 ドリーム",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "osiri2",
+ "songName": {
+ "jpText": "おしりの山はエベレスト",
+ "jpFont": 0,
+ "enText": "Oshiri no Yama wa Everest",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「NHKみんなのうた」より",
+ "jpFont": 0,
+ "enText": "From \" NHK Minna no Uta \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "おしりの山はエベレスト",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "otemo",
+ "songName": {
+ "jpText": "おてもやん",
+ "jpFont": 0,
+ "enText": "Otemoyan",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Omodaka feat.パラダイス山元",
+ "jpFont": 0,
+ "enText": "Omodaka feat.Paradise Yamamoto",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "おてもやん",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pkmnbw",
+ "songName": {
+ "jpText": "ベストウイッシュ!",
+ "jpFont": 0,
+ "enText": "Best Wishes!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ポケットモンスター ベストウイッシュ」より",
+ "jpFont": 0,
+ "enText": "From \" Pokémon the Series: Black & White \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ベストウイッシュ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pkmnmd",
+ "songName": {
+ "jpText": "ポケットモンスターブラック2・ホワイト2 ジム戦メドレー",
+ "jpFont": 0,
+ "enText": "Pokémon Black 2/White 2 Gym Battle Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ポケットモンスターブラック2・ホワイト2 ジム戦メドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pkmnyz",
+ "songName": {
+ "jpText": "やじるしになって!",
+ "jpFont": 0,
+ "enText": "Yajirushi ni Natte!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ポケットモンスター ベストウィッシュ シーズン2」より",
+ "jpFont": 0,
+ "enText": "From \"Pokémon the Series: Black & White \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "やじるしになって!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "poly",
+ "songName": {
+ "jpText": "ポリリズム",
+ "jpFont": 0,
+ "enText": "Polyrhythm",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ポリリズム",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pr9ala",
+ "songName": {
+ "jpText": "SHINE!! キラキラ☆プリキュアアラモード",
+ "jpFont": 0,
+ "enText": "SHINE!! Kirakira☆PreCure a la Mode",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "SHINE!! キラキラ☆プリキュアアラモード",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pr9mah",
+ "songName": {
+ "jpText": "Dokkin♢魔法つかいプリキュア!",
+ "jpFont": 0,
+ "enText": "Dokkin♦Mahou-tsukai PreCure!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Dokkin♢魔法つかいプリキュア!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "punish",
+ "songName": {
+ "jpText": "Punishment",
+ "jpFont": 0,
+ "enText": "Punishment",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "9mm Parabellum Bullet",
+ "jpFont": 0,
+ "enText": "9mm Parabellum Bullet",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rakisu",
+ "songName": {
+ "jpText": "もってけ!セーラーふく",
+ "jpFont": 0,
+ "enText": "Motteke! Sailor Fuku",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「らき☆すた」より",
+ "jpFont": 0,
+ "enText": "From \" Lucky Star \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "もってけ!セーラーふく",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rindon",
+ "songName": {
+ "jpText": "Ring a Ding Dong",
+ "jpFont": 0,
+ "enText": "Ring a Ding Dong",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "TVCM「NTTドコモ」より",
+ "jpFont": 0,
+ "enText": "From TV CM \" NTT DoCoMo \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rising",
+ "songName": {
+ "jpText": "Rising Sun",
+ "jpFont": 0,
+ "enText": "Rising Sun",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rudolf",
+ "songName": {
+ "jpText": "黒い猫の歌",
+ "jpFont": 0,
+ "enText": "Kuroi Neko no Uta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "back number 映画「ルドルフとイッパイアッテナ」主題歌",
+ "jpFont": 0,
+ "enText": "back number Movie \" Rudolf the Black Cat \" Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "黒い猫の歌",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "seiya",
+ "songName": {
+ "jpText": "ペガサス幻想",
+ "jpFont": 0,
+ "enText": "Pegasus Fantasy",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「聖闘士星矢」より",
+ "jpFont": 0,
+ "enText": "From \" Saint Seiya: Knights of the Zodiac \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ペガサス幻想",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "shine",
+ "songName": {
+ "jpText": "Shine",
+ "jpFont": 0,
+ "enText": "Shine",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "shtage",
+ "songName": {
+ "jpText": "Hacking to the Gate",
+ "jpFont": 0,
+ "enText": "Hacking to the Gate",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "TVアニメ「シュタインズ・ゲート」より",
+ "jpFont": 0,
+ "enText": "From \" Steins;Gate \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sidos",
+ "songName": {
+ "jpText": "S",
+ "jpFont": 0,
+ "enText": "S",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sidvip",
+ "songName": {
+ "jpText": "V.I.P",
+ "jpFont": 0,
+ "enText": "V.I.P",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「マギ」より",
+ "jpFont": 0,
+ "enText": "From \" Magi \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "smpri9",
+ "songName": {
+ "jpText": "Let's go! スマイルプリキュア!",
+ "jpFont": 0,
+ "enText": "Let's go! Smile Precure",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Let's go! スマイルプリキュア!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "soba",
+ "songName": {
+ "jpText": "そばかす",
+ "jpFont": 0,
+ "enText": "Sobakasu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "そばかす",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "stline",
+ "songName": {
+ "jpText": "スタートライン!",
+ "jpFont": 0,
+ "enText": "Start Line!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイカツスターズ!」より",
+ "jpFont": 0,
+ "enText": "From \" Aikatsu Stars! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "スタートライン!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tg69",
+ "songName": {
+ "jpText": "突撃ロック",
+ "jpFont": 0,
+ "enText": "Totsugeki Rock",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「NARUTO‐ナルト‐疾風伝」より",
+ "jpFont": 0,
+ "enText": "From \" Naruto: Shippuden \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "突撃ロック",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "toriko",
+ "songName": {
+ "jpText": "ガツガツ!!",
+ "jpFont": 0,
+ "enText": "Guts Guts!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ガツガツ!!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "touch",
+ "songName": {
+ "jpText": "タッチ",
+ "jpFont": 0,
+ "enText": "Touch",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "タッチ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tougen",
+ "songName": {
+ "jpText": "桃源郷エイリアン",
+ "jpFont": 0,
+ "enText": "Tougenkyou Alien",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「銀魂」より",
+ "jpFont": 0,
+ "enText": "From \" Gintama \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "桃源郷エイリアン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "touken",
+ "songName": {
+ "jpText": "花丸◎日和!",
+ "jpFont": 0,
+ "enText": "Hanamaru◎biyori!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「刀剣乱舞-花丸-」より",
+ "jpFont": 0,
+ "enText": "From \" Touken Ranbu: Hanamaru \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "花丸◎日和!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ttk3",
+ "songName": {
+ "jpText": "ハム太郎とっとこうた2005",
+ "jpFont": 0,
+ "enText": "Hamtaro Tottokou Uta 2005",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "とっとこハム太郎はむはむぱらだいちゅ!",
+ "jpFont": 0,
+ "enText": "Hamtaro Hamtaro wa Muhamuparadaichu!",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ハム太郎とっとこうた2005",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "umaru2",
+ "songName": {
+ "jpText": "にめんせい☆ウラオモテライフ!",
+ "jpFont": 0,
+ "enText": "Nimensei☆Ura-omote Life!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「干物妹!うまるちゃんR」より",
+ "jpFont": 0,
+ "enText": "From \" Himouto! Umaru-chan \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "にめんせい☆ウラオモテライフ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "umauma",
+ "songName": {
+ "jpText": "ウッーウッーウマウマ",
+ "jpFont": 0,
+ "enText": "Caramelldansen",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "caramelldansen",
+ "jpFont": 0,
+ "enText": " ",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ウッーウッーウマウマ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "urotan",
+ "songName": {
+ "jpText": "卑怯戦隊うろたんだー",
+ "jpFont": 0,
+ "enText": "Hikyou Sentai Urotander",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "シンP",
+ "jpFont": 0,
+ "enText": "Shin-P",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "卑怯戦隊うろたんだー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "valvra",
+ "songName": {
+ "jpText": "Preserved Roses",
+ "jpFont": 0,
+ "enText": "Preserved Roses",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "T.M.Revolution×水樹奈々「革命機ヴァルヴレイヴ」より",
+ "jpFont": 0,
+ "enText": "T.M.Revolution x Nana Mizuki From \" Valvrave the Liberator \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "wizard",
+ "songName": {
+ "jpText": "Life is SHOW TIME",
+ "jpFont": 0,
+ "enText": "Life is SHOW TIME",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「仮面ライダーウィザード」より",
+ "jpFont": 0,
+ "enText": "From \" Kamen Rider Wizard \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "wland",
+ "songName": {
+ "jpText": "ワンダーランド",
+ "jpFont": 0,
+ "enText": "Wonderland",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「銀魂」より",
+ "jpFont": 0,
+ "enText": "From \" Gintama \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ワンダーランド",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "yes",
+ "songName": {
+ "jpText": "イエス",
+ "jpFont": 0,
+ "enText": "Yes",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "イエス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "yuuki",
+ "songName": {
+ "jpText": "勇気100%",
+ "jpFont": 0,
+ "enText": "100% Yuuki",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "勇気100%",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "zutzut",
+ "songName": {
+ "jpText": "ずっとずっとトモダチ",
+ "jpFont": 0,
+ "enText": "Zutto Zutto Tomodachi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ジュエルペット きら☆デコッ!」主題歌",
+ "jpFont": 0,
+ "enText": "From \" Jewelpet Kira☆Deco! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ずっとずっとトモダチ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "zzernc",
+ "songName": {
+ "jpText": "Help me, ERINNNNNN!! -Cranky remix-",
+ "jpFont": 0,
+ "enText": "Help me, ERINNNNNN!! -Cranky remix-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "zzff14",
+ "songName": {
+ "jpText": "極タイタン討滅戦",
+ "jpFont": 0,
+ "enText": "The Navel Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ファイナルファンタジーXIV 新生エオルゼア」より",
+ "jpFont": 0,
+ "enText": "From \" Final Fantasy XIV: A Realm Reborn \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "1234dk",
+ "songName": {
+ "jpText": "1・2・さんしのでドンドカッカッ!",
+ "jpFont": 0,
+ "enText": "1-2-San-Shi no de Dondokaka!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "AIきりたん feat.ユーキヒロセ",
+ "jpFont": 0,
+ "enText": "AI Kiritan feat. Yuki Hirose",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "1・2・さんしのでドンドカッカッ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "1ps",
+ "songName": {
+ "jpText": "ココロのちず",
+ "jpFont": 0,
+ "enText": "Kokoro no Chizu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ワンピース」より",
+ "jpFont": 0,
+ "enText": "From \" One Piece \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ココロのちず",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "20t765",
+ "songName": {
+ "jpText": "The Future of the 太鼓ドラム",
+ "jpFont": 0,
+ "enText": "The Future of the Taiko Drum",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "太鼓 de タイムトラベル2765 / かめりあ",
+ "jpFont": 0,
+ "enText": "Taiko de Time Travel 2765 / Camellia",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "The Future of the 太鼓ドラム",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "20tbc",
+ "songName": {
+ "jpText": "たいこの2000",
+ "jpFont": 0,
+ "enText": "Taiko no 2000",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "太鼓 de タイムトラベル紀元前 / LindaAI-CUE",
+ "jpFont": 0,
+ "enText": "Taiko de Time Travel B.C.E. / LindaAI-CUE",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "たいこの2000",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "24kara",
+ "songName": {
+ "jpText": "24 karats TRIBE OF GOLD",
+ "jpFont": 0,
+ "enText": "24 karats TRIBE OF GOLD",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "brand",
+ "songName": {
+ "jpText": "BRAND NEW WORLD",
+ "jpFont": 0,
+ "enText": "BRAND NEW WORLD",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ワンピース」より",
+ "jpFont": 0,
+ "enText": "From \" One Piece \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "cats",
+ "songName": {
+ "jpText": "CAT'S EYE",
+ "jpFont": 0,
+ "enText": "CAT'S EYE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "cutie",
+ "songName": {
+ "jpText": "キューティーハニー",
+ "jpFont": 0,
+ "enText": "Cutie Honey",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "キューティーハニー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "daja",
+ "songName": {
+ "jpText": "ダジャレdeオシャレ",
+ "jpFont": 0,
+ "enText": "Dajare de Oshare",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ダジャレdeオシャレ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "diveto",
+ "songName": {
+ "jpText": "DIVE TO WORLD",
+ "jpFont": 0,
+ "enText": "DIVE TO WORLD",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「家庭教師ヒットマンREBORN!」より",
+ "jpFont": 0,
+ "enText": "From \" Reborn! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dora2",
+ "songName": {
+ "jpText": "ドラえもんのうた",
+ "jpFont": 0,
+ "enText": "Doraemon no Uta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドラえもんのうた",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dorama",
+ "songName": {
+ "jpText": "ドラマチック",
+ "jpFont": 0,
+ "enText": "Dramatic",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ハチミツとクローバー」より",
+ "jpFont": 0,
+ "enText": "From \" Honey and Clover \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドラマチック",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "engarm",
+ "songName": {
+ "jpText": "Armor Break",
+ "jpFont": 0,
+ "enText": "Armor Break",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "えのぐ",
+ "jpFont": 0,
+ "enText": "enogu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "engdre",
+ "songName": {
+ "jpText": "Dreamin' World",
+ "jpFont": 0,
+ "enText": "Dreamin' World",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "えのぐ",
+ "jpFont": 0,
+ "enText": "enogu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "engori",
+ "songName": {
+ "jpText": "Original Color Girls!!!!",
+ "jpFont": 0,
+ "enText": "Original Color Girls!!!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "えのぐ",
+ "jpFont": 0,
+ "enText": "enogu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "evam20",
+ "songName": {
+ "jpText": "Battaille Décisive",
+ "jpFont": 0,
+ "enText": "Battaille Décisive",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ヱヴァンゲリヲン新劇場版:序」より",
+ "jpFont": 0,
+ "enText": "From \" Evangelion: 1.0 You Are (Not) Alone \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "frieng",
+ "songName": {
+ "jpText": "フレンジャー",
+ "jpFont": 0,
+ "enText": "Frienger",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "フレンジャー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gdmtb",
+ "songName": {
+ "jpText": "Groovy Duel",
+ "jpFont": 0,
+ "enText": "Groovy Duel",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「機動戦士ガンダム サンダーボルト」",
+ "jpFont": 0,
+ "enText": "\" Mobile Suit Gundam Thunderbolt \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gdmwss",
+ "songName": {
+ "jpText": "思春期を殺した少年の翼",
+ "jpFont": 0,
+ "enText": "Wings of a Boy That Killed Adolescence",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "思春期を殺した少年の翼",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gumikg",
+ "songName": {
+ "jpText": "KING",
+ "jpFont": 0,
+ "enText": "KING",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Kanaria",
+ "jpFont": 0,
+ "enText": "Kanaria",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "holprs",
+ "songName": {
+ "jpText": "Prism Melody",
+ "jpFont": 0,
+ "enText": "Prism Melody",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "holtmp",
+ "songName": {
+ "jpText": "TEMPLATE",
+ "jpFont": 0,
+ "enText": "TEMPLATE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "honey",
+ "songName": {
+ "jpText": "上海ハニー",
+ "jpFont": 0,
+ "enText": "Shanghai Honey",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "上海ハニー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "iina1",
+ "songName": {
+ "jpText": "にんげんっていいな",
+ "jpFont": 0,
+ "enText": "Ni'n Gen Tte Ii Na",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「まんが日本昔ばなし」より",
+ "jpFont": 0,
+ "enText": "From \" Manga Nippon Mukashi Banashi \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "にんげんっていいな",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "irmake",
+ "songName": {
+ "jpText": "Make it!",
+ "jpFont": 0,
+ "enText": "Make it!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "i☆Ris",
+ "jpFont": 0,
+ "enText": "i☆Ris",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "irsumm",
+ "songName": {
+ "jpText": "Summer Dude",
+ "jpFont": 0,
+ "enText": "Summer Dude",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "i☆Ris",
+ "jpFont": 0,
+ "enText": "i☆Ris",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "junglp",
+ "songName": {
+ "jpText": "Jungle P",
+ "jpFont": 0,
+ "enText": "Jungle P",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ONE PIECE」より",
+ "jpFont": 0,
+ "enText": "From \" One Piece \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "jysuki",
+ "songName": {
+ "jpText": "好きな人がいること",
+ "jpFont": 0,
+ "enText": "Sukina Hito ga Iro Koto",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "好きな人がいること",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kame3",
+ "songName": {
+ "jpText": "コミカルに追いかけっこ",
+ "jpFont": 0,
+ "enText": "Komikaru ni oi Kakekko",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「こちら葛飾区亀有公園前派出所」より",
+ "jpFont": 0,
+ "enText": "From \" KochiKame: Tokyo Beat Cops \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "コミカルに追いかけっこ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kimiga",
+ "songName": {
+ "jpText": "キミがいる",
+ "jpFont": 0,
+ "enText": "Kimi ga Iru",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ドラマ「ホタルノヒカリ2」主題歌",
+ "jpFont": 0,
+ "enText": "Drama \" Hotaru no Hikari 2 \" Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "キミがいる",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "korn",
+ "songName": {
+ "jpText": "WON'T BE LONG",
+ "jpFont": 0,
+ "enText": "WON'T BE LONG",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lovefo",
+ "songName": {
+ "jpText": "Love Forever",
+ "jpFont": 0,
+ "enText": "Love Forever",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lvsoup",
+ "songName": {
+ "jpText": "Soup",
+ "jpFont": 0,
+ "enText": "Soup",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mappy1",
+ "songName": {
+ "jpText": "マッピー音頭",
+ "jpFont": 0,
+ "enText": "Mappy Ondo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "マッピー音頭",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "motos",
+ "songName": {
+ "jpText": "シンフォニック モトス",
+ "jpFont": 0,
+ "enText": "Symphonic Motos",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "シンフォニック モトス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nulite",
+ "songName": {
+ "jpText": "新しい光",
+ "jpFont": 0,
+ "enText": "Atarashii Hikari",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "9mm Parabellum Bullet",
+ "jpFont": 0,
+ "enText": "9mm Parabellum Bullet",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "新しい光(9mm)",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "peach",
+ "songName": {
+ "jpText": "PEACH",
+ "jpFont": 0,
+ "enText": "PEACH",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pop",
+ "songName": {
+ "jpText": "POP STAR",
+ "jpFont": 0,
+ "enText": "POP STAR",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pr9hug",
+ "songName": {
+ "jpText": "We can!! HUGっと!プリキュア",
+ "jpFont": 0,
+ "enText": "We can!! HUGtto! PreCure",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "We can!! HUGっと!プリキュア",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "puffy",
+ "songName": {
+ "jpText": "アジアの純真",
+ "jpFont": 0,
+ "enText": "Ajia no Junshin",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アジアの純真",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "puzdr2",
+ "songName": {
+ "jpText": "A New Journey",
+ "jpFont": 0,
+ "enText": "A New Journey",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「パズル&ドラゴンズ」より",
+ "jpFont": 0,
+ "enText": "From \" Puzzle & Dragons \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "puzdr3",
+ "songName": {
+ "jpText": "The Orb Festival",
+ "jpFont": 0,
+ "enText": "The Orb Festival",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「パズル&ドラゴンズ」より",
+ "jpFont": 0,
+ "enText": "From \" Puzzle & Dragons \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "puzdr5",
+ "songName": {
+ "jpText": "Fight the Fanatics",
+ "jpFont": 0,
+ "enText": "Fight the Fanatics",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「パズル&ドラゴンズ」より",
+ "jpFont": 0,
+ "enText": "From \" Puzzle & Dragons \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "roman",
+ "songName": {
+ "jpText": "Romanticが止まらない",
+ "jpFont": 0,
+ "enText": "Romantic Ga Tomaranai",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Romanticが止まらない",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "romanc",
+ "songName": {
+ "jpText": "ロマンス",
+ "jpFont": 0,
+ "enText": "Romance",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ロマンス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sakura",
+ "songName": {
+ "jpText": "桜",
+ "jpFont": 0,
+ "enText": "Sakura",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "桜",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "seiga1",
+ "songName": {
+ "jpText": "星河一天",
+ "jpFont": 0,
+ "enText": "Seigaitten",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "星河一天",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "siruvu",
+ "songName": {
+ "jpText": "シル・ヴ・プレジデント",
+ "jpFont": 0,
+ "enText": "S'il Vous President",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "P丸様。",
+ "jpFont": 0,
+ "enText": "Pmarusama",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "シル・ヴ・プレジデント",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sukima",
+ "songName": {
+ "jpText": "全力少年",
+ "jpFont": 0,
+ "enText": "Zenryoku Shounen",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "全力少年",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sunaon",
+ "songName": {
+ "jpText": "素直になれたら",
+ "jpFont": 0,
+ "enText": "Sunao ni Naretara",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "素直になれたら",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tana84",
+ "songName": {
+ "jpText": "LOVE&ENERGY",
+ "jpFont": 0,
+ "enText": "LOVE&ENERGY",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "新日本プロレス 棚橋弘至入場テーマ",
+ "jpFont": 0,
+ "enText": "New Japan Pro-Wrestling Hiroshi Tanahashi Admission Theme",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tei59k",
+ "songName": {
+ "jpText": "檄!帝国華撃団",
+ "jpFont": 0,
+ "enText": "Geki! Teikoku Kagekidan",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「サクラ大戦」より",
+ "jpFont": 0,
+ "enText": "From \" Sakura Wars \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "檄!帝国華撃団",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "teleca",
+ "songName": {
+ "jpText": "Telecastic fake show",
+ "jpFont": 0,
+ "enText": "Telecastic fake show",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "凛として時雨",
+ "jpFont": 0,
+ "enText": "Ling Tosite Sigure",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "vfgbs",
+ "songName": {
+ "jpText": "グッバイ宣言",
+ "jpFont": 0,
+ "enText": "Goodbye Sengen",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Chinozo feat. flower",
+ "jpFont": 0,
+ "enText": "Chinozo feat. flower",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "グッバイ宣言",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "yo7yo7",
+ "songName": {
+ "jpText": "YONA YONA DANCE",
+ "jpFont": 0,
+ "enText": "YONA YONA DANCE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "10sou",
+ "songName": {
+ "jpText": "天装戦隊ゴセイジャー",
+ "jpFont": 0,
+ "enText": "Tensou Sentai Goseiger",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "天装戦隊ゴセイジャー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "2bomi",
+ "songName": {
+ "jpText": "蕾",
+ "jpFont": 0,
+ "enText": "Tsubomi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "蕾",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ageage",
+ "songName": {
+ "jpText": "アゲ♂アゲ♂EVERY☆騎士",
+ "jpFont": 0,
+ "enText": "Age Age Every Knight",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アゲ♂アゲ♂EVERY☆騎士",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "anan",
+ "songName": {
+ "jpText": "きゃりーANAN",
+ "jpFont": 0,
+ "enText": "Kyary ANAN",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "きゃりーぱみゅぱみゅ",
+ "jpFont": 0,
+ "enText": "Kyary Pamyu Pamyu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "きゃりーANAN",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "arare",
+ "songName": {
+ "jpText": "ワイワイワールド",
+ "jpFont": 0,
+ "enText": "Wai Wai World",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「Dr.スランプ アラレちゃん」より",
+ "jpFont": 0,
+ "enText": "From \" Dr. Slump \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ワイワイワールド",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bouken",
+ "songName": {
+ "jpText": "轟轟戦隊ボウケンジャー",
+ "jpFont": 0,
+ "enText": "Gogo Sentai Boukenger",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "轟轟戦隊ボウケンジャー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "cancan",
+ "songName": {
+ "jpText": "CANDY CANDY",
+ "jpFont": 0,
+ "enText": "CANDY CANDY",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "きゃりーぱみゅぱみゅ",
+ "jpFont": 0,
+ "enText": "Kyary Pamyu Pamyu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "cbebop",
+ "songName": {
+ "jpText": "Tank!",
+ "jpFont": 0,
+ "enText": "Tank!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "アニメ「カウボーイ ビバップ」より",
+ "jpFont": 0,
+ "enText": "From \" Cowboy Bebop \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "chaosr",
+ "songName": {
+ "jpText": "CHAOS RINGS",
+ "jpFont": 0,
+ "enText": "CHAOS RINGS",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "choo2",
+ "songName": {
+ "jpText": "Choo Choo TRAIN",
+ "jpFont": 0,
+ "enText": "Choo Choo TRAIN",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clstpk",
+ "songName": {
+ "jpText": "ロシアの踊り「トレパーク」",
+ "jpFont": 0,
+ "enText": "Russian Dance 'Trepak'",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "チャイコフスキー",
+ "jpFont": 0,
+ "enText": "Pyotr Ilyich Tchaikovsky",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ロシアの踊り「トレパーク」",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "das109",
+ "songName": {
+ "jpText": "遠くまで",
+ "jpFont": 0,
+ "enText": "Toku Made",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Do As Infinity",
+ "jpFont": 0,
+ "enText": "Do As Infinity",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "遠くまで",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dasbel",
+ "songName": {
+ "jpText": "believe in you",
+ "jpFont": 0,
+ "enText": "believe in you",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「テイルズ オブ アスタリア」テーマソング",
+ "jpFont": 0,
+ "enText": "\" Tales of Asteria \" Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dasbou",
+ "songName": {
+ "jpText": "冒険者たち",
+ "jpFont": 0,
+ "enText": "Bokenshatachi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Do As Infinity",
+ "jpFont": 0,
+ "enText": "Do As Infinity",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "冒険者たち",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dasdes",
+ "songName": {
+ "jpText": "Desire",
+ "jpFont": 0,
+ "enText": "Desire",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Do As Infinity",
+ "jpFont": 0,
+ "enText": "Do As Infinity",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dashon",
+ "songName": {
+ "jpText": "本日ハ晴天ナリ",
+ "jpFont": 0,
+ "enText": "Honjitsu wa Seiten Nari",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Do As Infinity",
+ "jpFont": 0,
+ "enText": "Do As Infinity",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "本日ハ晴天ナリ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dokkan",
+ "songName": {
+ "jpText": "どかーん",
+ "jpFont": 0,
+ "enText": "Dokaan",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "(ブラバン!甲子園)",
+ "jpFont": 0,
+ "enText": "Bura Ban! Koshien",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "どかーん",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "donten",
+ "songName": {
+ "jpText": "曇天",
+ "jpFont": 0,
+ "enText": "Donten",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「銀魂」主題曲",
+ "jpFont": 0,
+ "enText": "\" Gintama \" Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "曇天",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ds2bs1",
+ "songName": {
+ "jpText": "われら無敵のドコン団",
+ "jpFont": 0,
+ "enText": "Warera Muteki no Dokon Dan",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "われら無敵のドコン団",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "furisd",
+ "songName": {
+ "jpText": "ふりそでーしょん",
+ "jpFont": 0,
+ "enText": "Furisodeshon",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "きゃりーぱみゅぱみゅ",
+ "jpFont": 0,
+ "enText": "Kyary Pamyu Pamyu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ふりそでーしょん",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "haruka",
+ "songName": {
+ "jpText": "遥か",
+ "jpFont": 0,
+ "enText": "Haruka",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "映画「ROOKIES-卒業-」主題歌",
+ "jpFont": 0,
+ "enText": "\" Rookies: Graduation \" Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "遥か",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hoku",
+ "songName": {
+ "jpText": "愛をとりもどせ!!",
+ "jpFont": 0,
+ "enText": "Ai o Torimodose!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "愛をとりもどせ!!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hoshi",
+ "songName": {
+ "jpText": "地上の星",
+ "jpFont": 0,
+ "enText": "Chijou no Hoshi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "地上の星",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hotlim",
+ "songName": {
+ "jpText": "HOT LIMIT",
+ "jpFont": 0,
+ "enText": "HOT LIMIT",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "i2ki2k",
+ "songName": {
+ "jpText": "いつかいつか",
+ "jpFont": 0,
+ "enText": "Itsuka Itsuka",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「たまごっち!みらくるフレンズ」より",
+ "jpFont": 0,
+ "enText": "From \" Tamagotchi! Mira Kuru Furenzu \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "いつかいつか",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "juken",
+ "songName": {
+ "jpText": "獣拳戦隊ゲキレンジャー",
+ "jpFont": 0,
+ "enText": "Juuken Sentai Geki Ranger",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "オープニング「獣拳戦隊ゲキレンジャー」",
+ "jpFont": 0,
+ "enText": "\" Juken Sentai Gekiranger \" Opening",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "獣拳戦隊ゲキレンジャー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kan",
+ "songName": {
+ "jpText": "愛は勝つ",
+ "jpFont": 0,
+ "enText": "Ai Wa Katsu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "愛は勝つ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "karma",
+ "songName": {
+ "jpText": "カルマ",
+ "jpFont": 0,
+ "enText": "Karma",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「テイルズ オブ ジ アビス」テーマソング",
+ "jpFont": 0,
+ "enText": "\" Tales of the Abyss \" Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "カルマ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kin29m",
+ "songName": {
+ "jpText": "キン肉マン Go Fight!",
+ "jpFont": 0,
+ "enText": "Kinnikuman Go Fight!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "キン肉マン Go Fight!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kkkill",
+ "songName": {
+ "jpText": "きらきらキラー",
+ "jpFont": 0,
+ "enText": "Kira Kira Killer",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "きゃりーぱみゅぱみゅ",
+ "jpFont": 0,
+ "enText": "Kyary Pamyu Pamyu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "きらきらキラー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lam",
+ "songName": {
+ "jpText": "ラムのラブソング",
+ "jpFont": 0,
+ "enText": "Lum no Love Song",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "うる星やつらより",
+ "jpFont": 0,
+ "enText": "Uru Hoshi Yatsura Yori",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ラムのラブソング",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "love2k",
+ "songName": {
+ "jpText": "LOVE 2000",
+ "jpFont": 0,
+ "enText": "LOVE 2000",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lovest",
+ "songName": {
+ "jpText": "ラブ・ストーリーは突然に",
+ "jpFont": 0,
+ "enText": "Love Story wa Totsuzen Ni",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ラブ・ストーリーは突然に",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lovezu",
+ "songName": {
+ "jpText": "LOVEずっきゅん",
+ "jpFont": 0,
+ "enText": "Love Zukkyun",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "LOVEずっきゅん",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lupin3",
+ "songName": {
+ "jpText": "ルパン三世",
+ "jpFont": 0,
+ "enText": "Lupin III",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ルパン三世",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "maji",
+ "songName": {
+ "jpText": "魔法戦隊マジレンジャー",
+ "jpFont": 0,
+ "enText": "Mahou Sentai Magiranger",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "魔法戦隊マジレンジャー",
+ "jpFont": 0,
+ "enText": "Maho Sentai Magiranger",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "魔法戦隊マジレンジャー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mcds",
+ "songName": {
+ "jpText": "パパマママック限定バージョン",
+ "jpFont": 0,
+ "enText": "Papa Mama Mc -Short Version-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "パパマママック限定バージョン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "monhun",
+ "songName": {
+ "jpText": "モンスターハンターメドレー",
+ "jpFont": 0,
+ "enText": "Monster Hunter Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "モンスターハンターメドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "morai",
+ "songName": {
+ "jpText": "もらい泣き",
+ "jpFont": 0,
+ "enText": "Morainaki",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "もらい泣き",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "neraiu",
+ "songName": {
+ "jpText": "狙いうち",
+ "jpFont": 0,
+ "enText": "Nerai Uchi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "(ブラバン!甲子園)",
+ "jpFont": 0,
+ "enText": "Bura Ban! Koshien",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "狙いうち",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ookami",
+ "songName": {
+ "jpText": "オオカミ少年ケンのテーマ",
+ "jpFont": 0,
+ "enText": "Ookami Shounen Ken Theme",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "(ブラバン!甲子園)",
+ "jpFont": 0,
+ "enText": "Bura Ban! Koshien",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "オオカミ少年ケンのテーマ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "remio",
+ "songName": {
+ "jpText": "粉雪",
+ "jpFont": 0,
+ "enText": "Konayuki",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "粉雪",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rip_bikini",
+ "songName": {
+ "jpText": "太陽とビキニ",
+ "jpFont": 0,
+ "enText": "Taiyou to Bikini",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "太陽とビキニ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rip_funk",
+ "songName": {
+ "jpText": "FUNKASTIC",
+ "jpFont": 0,
+ "enText": "FUNKASTIC",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rip_joint",
+ "songName": {
+ "jpText": "JOINT",
+ "jpFont": 0,
+ "enText": "JOINT",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rip_rakuen",
+ "songName": {
+ "jpText": "楽園ベイベー",
+ "jpFont": 0,
+ "enText": "Rakuen Baby",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "楽園ベイベー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rip_speedk",
+ "songName": {
+ "jpText": "SPEED KING",
+ "jpFont": 0,
+ "enText": "SPEED KING",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rwrite",
+ "songName": {
+ "jpText": "リライト",
+ "jpFont": 0,
+ "enText": "Rewrite",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "リライト",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "seibu",
+ "songName": {
+ "jpText": "西部警察PARTⅡ",
+ "jpFont": 0,
+ "enText": "Western Police PART II",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "西部警察PARTⅡ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "senor",
+ "songName": {
+ "jpText": "抱いてセニョリータ",
+ "jpFont": 0,
+ "enText": "Daite Senorita",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "TVドラマ「クロサギ」より",
+ "jpFont": 0,
+ "enText": "From \" Kurosagi \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "抱いてセニョリータ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sinken",
+ "songName": {
+ "jpText": "侍戦隊シンケンジャー",
+ "jpFont": 0,
+ "enText": "Samurai Sentai Shinkenger",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "侍戦隊シンケンジャー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sonic4",
+ "songName": {
+ "jpText": "ソニック4 エピソードI メドレー",
+ "jpFont": 0,
+ "enText": "Sonic 4 Episode I Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ソニック4 エピソードI メドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "splnkr",
+ "songName": {
+ "jpText": "スペランカー",
+ "jpFont": 0,
+ "enText": "Spelunker",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "スペランカー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "swtlay",
+ "songName": {
+ "jpText": "Sweet Lay",
+ "jpFont": 0,
+ "enText": "Sweet Lay",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tmr",
+ "songName": {
+ "jpText": "ignited-イグナイテッド-",
+ "jpFont": 0,
+ "enText": "ignited - ignited -",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ignited-イグナイテッド-",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ult7",
+ "songName": {
+ "jpText": "ウルトラセブンの歌",
+ "jpFont": 0,
+ "enText": "Ultra Seven no Uta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ウルトラセブンの歌",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ultace",
+ "songName": {
+ "jpText": "ウルトラマンA",
+ "jpFont": 0,
+ "enText": "Ultraman A",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "(ウルトラマン・ブラス)",
+ "jpFont": 0,
+ "enText": "(Ultraman of Brass)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ウルトラマンA",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ultman",
+ "songName": {
+ "jpText": "ウルトラマンの歌",
+ "jpFont": 0,
+ "enText": "Ultraman no Uta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ウルトラマンの歌",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ultnew",
+ "songName": {
+ "jpText": "帰ってきたウルトラマン",
+ "jpFont": 0,
+ "enText": "Kaette Kita Ultraman",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "(ウルトラマン・ブラス)",
+ "jpFont": 0,
+ "enText": "(Ultraman of Brass)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "帰ってきたウルトラマン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ulttar",
+ "songName": {
+ "jpText": "ウルトラマンタロウ",
+ "jpFont": 0,
+ "enText": "Ultraman Tarou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "(ウルトラマン・ブラス)",
+ "jpFont": 0,
+ "enText": "(Ultraman of Brass)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ウルトラマンタロウ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ultz1",
+ "songName": {
+ "jpText": "新しい光",
+ "jpFont": 0,
+ "enText": "Atarashii Hikari",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "9mm Parabellum bullet",
+ "jpFont": 0,
+ "enText": "9mm Parabellum bullet",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "新しい光",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ultz2",
+ "songName": {
+ "jpText": "運命のしずく~Destiny's star~",
+ "jpFont": 0,
+ "enText": "Unmei no Shizuku ~Destiny's star~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "運命のしずく~Destiny's star~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "yama",
+ "songName": {
+ "jpText": "宇宙戦艦ヤマト",
+ "jpFont": 0,
+ "enText": "Uchuu Senkan Yamato",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "宇宙戦艦ヤマト",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "10binz",
+ "songName": {
+ "jpText": "てんびん座急行 夜を行く",
+ "jpFont": 0,
+ "enText": "Tenbinza Kyuukou Yoru o Iku",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "てんびん座急行 夜を行く",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "10jiku",
+ "songName": {
+ "jpText": "てんぢく2000",
+ "jpFont": 0,
+ "enText": "Tenjiku 2000",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "てんぢく2000",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "10tai",
+ "songName": {
+ "jpText": "天体観測",
+ "jpFont": 0,
+ "enText": "Tentai Kansoku",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "天体観測",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "1pshop",
+ "songName": {
+ "jpText": "Hope",
+ "jpFont": 0,
+ "enText": "Hope",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "安室奈美恵 「ワンピース」より",
+ "jpFont": 0,
+ "enText": "Namie Amuro From \" One Piece \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "1psovt",
+ "songName": {
+ "jpText": "OVER THE TOP",
+ "jpFont": 0,
+ "enText": "OVER THE TOP",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ONE PIECEワノ国編主題歌",
+ "jpFont": 0,
+ "enText": "One Piece / Land of Wano Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "29shok",
+ "songName": {
+ "jpText": "イオシス秋の肉食祭2014",
+ "jpFont": 0,
+ "enText": "IOSYS Aki no Nikushoku Matsuri 2014",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "D.watt(IOSYS) feat.Np 犬田彦 & はかせ",
+ "jpFont": 0,
+ "enText": "D.watt (IOSYS) feat. Np Hiko Inuta & Hakase",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "イオシス秋の肉食祭2014",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "2ge8ji",
+ "songName": {
+ "jpText": "恋",
+ "jpFont": 0,
+ "enText": "Koi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ドラマ「逃げるは恥だが役に立つ」より",
+ "jpFont": 0,
+ "enText": "Gen Hoshino From \" The Full-Time Wife Escapist \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "恋",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "2no92",
+ "songName": {
+ "jpText": "MOIL",
+ "jpFont": 0,
+ "enText": "MOIL",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "須田景凪 映画「二ノ国」より",
+ "jpFont": 0,
+ "enText": "Keina Suda From \" Ni no Kuni \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "32segw",
+ "songName": {
+ "jpText": "三瀬川乱舞",
+ "jpFont": 0,
+ "enText": "Mitsusegawa Ranbu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "三瀬川乱舞",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "3d2op",
+ "songName": {
+ "jpText": "超時空アドベンチャー",
+ "jpFont": 0,
+ "enText": "Choujikuu Adventure",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「太鼓の達人 どんとかつの時空大冒険」テーマソング",
+ "jpFont": 0,
+ "enText": "\" Taiko no Tatsujin:Don to Katsu no Jikuu Daibouken \" Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "超時空アドベンチャー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "3d3op",
+ "songName": {
+ "jpText": "世界はいつでもミステリー",
+ "jpFont": 0,
+ "enText": "Sekai wa Itsudemo Mystery",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「太鼓の達人 ドコドン!ミステリーアドベンチャー」テーマソング",
+ "jpFont": 0,
+ "enText": "\" Taiko no Tatsujin:Dokodon! Mystery Adventure \" Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "世界はいつでもミステリー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "3dsb1x",
+ "songName": {
+ "jpText": "マオウのショウタイム",
+ "jpFont": 0,
+ "enText": "Maou no Showtime",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "マオウのショウタイム",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "3dsop",
+ "songName": {
+ "jpText": "キミと響くハーモニー",
+ "jpFont": 0,
+ "enText": "Kimi to Hibiku Harmony",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「太鼓の達人 ちびドラゴンと不思議なオーブ」テーマソング",
+ "jpFont": 0,
+ "enText": " \" Taiko no Tatsujin: Chibi Dragon to Fushigi na Orb \" Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "キミと響くハーモニー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "3pcjaz",
+ "songName": {
+ "jpText": "3piece-JazzParty!",
+ "jpFont": 0,
+ "enText": "3piece-JazzParty!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "3raclt",
+ "songName": {
+ "jpText": "みらくる☆トラベル",
+ "jpFont": 0,
+ "enText": "Miracle☆Travel",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「たまごっち!みらくるフレンズ」より",
+ "jpFont": 0,
+ "enText": "From \" Tamagotchi! Miracle Friends \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "みらくる☆トラベル",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "3ru3ru",
+ "songName": {
+ "jpText": "ミルミル ~未来ミエル~",
+ "jpFont": 0,
+ "enText": "Mirumiru ~Mirai Mieru",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「魔法×戦士 マジマジョピュアーズ!」より",
+ "jpFont": 0,
+ "enText": "From \" Magical×Heroines Magimajo Pures! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ミルミル ~未来ミエル~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "3ti3ti",
+ "songName": {
+ "jpText": "さちさちにしてあげる♪",
+ "jpFont": 0,
+ "enText": "Sachi Sachi ni Shite Ageru♪",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "小林幸子",
+ "jpFont": 0,
+ "enText": "Sachiko Kobayashi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "さちさちにしてあげる♪",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "4396bl",
+ "songName": {
+ "jpText": "夜櫻ブレヰダアズ",
+ "jpFont": 0,
+ "enText": "Yozakura Bladerz",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ぽんきち",
+ "jpFont": 0,
+ "enText": "Ponkichi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "夜櫻ブレヰダアズ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "4gnyub",
+ "songName": {
+ "jpText": "指先からはじまる物語",
+ "jpFont": 0,
+ "enText": "Yubisaki Kara Hajimaru Monogatari",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "郁原ゆう 「しんぐんデストロ~イ!」より",
+ "jpFont": 0,
+ "enText": "Yuu Kahara From \" Shinhun Destro~y! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "指先からはじまる物語",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "4shaas",
+ "songName": {
+ "jpText": "明日も",
+ "jpFont": 0,
+ "enText": "Ashita mo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "NTTドコモ「ドコモの学割」CMソング",
+ "jpFont": 0,
+ "enText": "NTT Docomo \" Docomo Student Discounts \" CM Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "明日も",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "57mono",
+ "songName": {
+ "jpText": "コナモノ☆",
+ "jpFont": 0,
+ "enText": "Konamono☆",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "郷 拓郎",
+ "jpFont": 0,
+ "enText": "Takuro Go",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "コナモノ☆",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "589him",
+ "songName": {
+ "jpText": "流浪の琥珀姫",
+ "jpFont": 0,
+ "enText": "Rurou no Kohaku Hime",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "流浪の琥珀姫",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "59shin",
+ "songName": {
+ "jpText": "黒神クロニクル",
+ "jpFont": 0,
+ "enText": "Kokushin Chronicle",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "黒神クロニクル",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "6ne9om",
+ "songName": {
+ "jpText": "ドキドキ胸きゅん おまつりタイム",
+ "jpFont": 0,
+ "enText": "Doki-Doki Mune-Kyun Omatsuri Time",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドキドキ胸きゅん おまつりタイム",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "72mono",
+ "songName": {
+ "jpText": "ナツモノ☆",
+ "jpFont": 0,
+ "enText": "Natsumono☆",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "たんきゅんデモクラシー",
+ "jpFont": 0,
+ "enText": "Tanqun Democracy",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ナツモノ☆",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "7fuku",
+ "songName": {
+ "jpText": "激運!七福ハッピークルー",
+ "jpFont": 0,
+ "enText": "Geki-un! Shichifuku Happy Crew",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "コバヤシユウヤ(IOSYS) feat.山本椛 (monotone)",
+ "jpFont": 0,
+ "enText": "Yuuya Kobayashi (IOSYS) feat. Momiji Yamamoto (monotone)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "激運!七福ハッピークルー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "7iro",
+ "songName": {
+ "jpText": "七彩ボタン",
+ "jpFont": 0,
+ "enText": "Nanairo Button",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "七彩ボタン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "7ma8ge",
+ "songName": {
+ "jpText": "ナマハゲノウタ",
+ "jpFont": 0,
+ "enText": "Namahage no Uta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat.DAIKI",
+ "jpFont": 0,
+ "enText": "feat.DAIKI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ナマハゲノウタ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "83noma",
+ "songName": {
+ "jpText": "闇の魔法少女",
+ "jpFont": 0,
+ "enText": "Yami no Mahou Shoujo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Silver Forest feat.アキ",
+ "jpFont": 0,
+ "enText": "Silver Forest feat.Aki",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "闇の魔法少女",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "8ka7ki",
+ "songName": {
+ "jpText": "儚姫は原初に舞う",
+ "jpFont": 0,
+ "enText": "Hakanaki wa Gensho ni Mau",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Se-U-Ra",
+ "jpFont": 0,
+ "enText": "Se-U-Ra",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "儚姫は原初に舞う",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a3aaa",
+ "songName": {
+ "jpText": "Act! Addict! Actors!",
+ "jpFont": 0,
+ "enText": "Act! Addict! Actors!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "アニメ「A3!」より",
+ "jpFont": 0,
+ "enText": "From \" A3 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a3cos",
+ "songName": {
+ "jpText": "Circle of Seasons",
+ "jpFont": 0,
+ "enText": "Circle of Seasons",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "アニメ「A3!」より",
+ "jpFont": 0,
+ "enText": "A3!",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "a3mank",
+ "songName": {
+ "jpText": "MANKAI☆開花宣言",
+ "jpFont": 0,
+ "enText": "MANKAI☆Kaika Sengen",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「A3!」主題歌",
+ "jpFont": 0,
+ "enText": "\" A3! \" Main Theme",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "MANKAI☆開花宣言",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ac2nad",
+ "songName": {
+ "jpText": "Night And Day",
+ "jpFont": 0,
+ "enText": "Night And Day",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ACE COMBAT 2」より",
+ "jpFont": 0,
+ "enText": "From \" Ace Combat 2 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "adashu",
+ "songName": {
+ "jpText": "阿修羅ちゃん",
+ "jpFont": 0,
+ "enText": "Ashura-chan",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Ado",
+ "jpFont": 0,
+ "enText": "Ado",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "阿修羅ちゃん",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "adk",
+ "songName": {
+ "jpText": "オーディオ de カッ!",
+ "jpFont": 0,
+ "enText": "Audio de Ka!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "音響サスペンスドラマ「オーディオ刑事」より",
+ "jpFont": 0,
+ "enText": "Audio Suspense Drama From \" Audio Deka \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "オーディオ de カッ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "agentt",
+ "songName": {
+ "jpText": "Agent Hustle & Dr. Hassle",
+ "jpFont": 0,
+ "enText": "Agent Hustle & Dr. Hassle",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Cory Tarrow(BNSI)",
+ "jpFont": 0,
+ "enText": "Cory Tarrow(BNSI)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ai7ndz",
+ "songName": {
+ "jpText": "愛なんだぜ",
+ "jpFont": 0,
+ "enText": "Ai Nandaze",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "愛なんだぜ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ainokt",
+ "songName": {
+ "jpText": "アイノカタチ feat.HIDE(GReeeeN)",
+ "jpFont": 0,
+ "enText": "Ainokatachi feat. HIDE(GReeeeN)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "天下統一録",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "aisowr",
+ "songName": {
+ "jpText": "愛想笑い",
+ "jpFont": 0,
+ "enText": "Aisowarai",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "かねこちはる",
+ "jpFont": 0,
+ "enText": "Kaneko Chiharu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "愛想笑い",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "aiuta",
+ "songName": {
+ "jpText": "愛唄",
+ "jpFont": 0,
+ "enText": "Ai Uta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "愛唄",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "akanos",
+ "songName": {
+ "jpText": "朱の旋律",
+ "jpFont": 0,
+ "enText": "Aka no Senritsu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "朱の旋律",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "akb365",
+ "songName": {
+ "jpText": "365日の紙飛行機",
+ "jpFont": 0,
+ "enText": "365 Nichi no Kami-hikouki",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "365日の紙飛行機",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "akbfly",
+ "songName": {
+ "jpText": "フライングゲット",
+ "jpFont": 0,
+ "enText": "Flying Get",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "フライングゲット",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "akbftc",
+ "songName": {
+ "jpText": "恋するフォーチュンクッキー",
+ "jpFont": 0,
+ "enText": "Koisuru Fortune Cookie",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "恋するフォーチュンクッキー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "akbhvy",
+ "songName": {
+ "jpText": "ヘビーローテーション",
+ "jpFont": 0,
+ "enText": "Heavy Rotation",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ヘビーローテーション",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "akbkac",
+ "songName": {
+ "jpText": "Everyday、カチューシャ",
+ "jpFont": 0,
+ "enText": "Everyday, Katyusha",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "映画「もしドラ」主題歌",
+ "jpFont": 0,
+ "enText": "Moshidora",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Everyday、カチューシャ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "akukan",
+ "songName": {
+ "jpText": "亜空間遊泳ac12.5",
+ "jpFont": 0,
+ "enText": "Akuukan Yuuei ac12.5",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "亜空間遊泳ac12.5",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "alckil",
+ "songName": {
+ "jpText": "Kill My Fortune",
+ "jpFont": 0,
+ "enText": "Kill My Fortune",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "アリスシャッハと魔法の楽団",
+ "jpFont": 0,
+ "enText": "Alice Schach and the Magic Orchestra",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "aleph0",
+ "songName": {
+ "jpText": "Aleph-0",
+ "jpFont": 0,
+ "enText": "Aleph-0",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "LeaF",
+ "jpFont": 0,
+ "enText": "LeaF",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "alexan",
+ "songName": {
+ "jpText": "アレキサンダーのテーマ",
+ "jpFont": 0,
+ "enText": "Alexander no Theme",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アレキサンダーのテーマ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "allimh",
+ "songName": {
+ "jpText": "オール・イン・マイハート",
+ "jpFont": 0,
+ "enText": "All In My Heart",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ソメイヨシノ feat. 高木美佑 (Wake Up, Girls!)",
+ "jpFont": 0,
+ "enText": "Somei-yoshino feat. Miyu Takaki (Wake Up, Girls!)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "オール・イン・マイハート",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "aloft",
+ "songName": {
+ "jpText": "Aloft in the wind",
+ "jpFont": 0,
+ "enText": "Aloft in the wind",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Qutabire",
+ "jpFont": 0,
+ "enText": "Qutabire",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "altale",
+ "songName": {
+ "jpText": "Altale",
+ "jpFont": 0,
+ "enText": "Altale",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "削除",
+ "jpFont": 0,
+ "enText": "Sakuzyo",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "alxwtr",
+ "songName": {
+ "jpText": "ワタリドリ",
+ "jpFont": 0,
+ "enText": "Watari-dori",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "[Alexandros]",
+ "jpFont": 0,
+ "enText": "[Alexandros]",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ワタリドリ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "amanda",
+ "songName": {
+ "jpText": "Amanda",
+ "jpFont": 0,
+ "enText": "Amanda",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "amatrs",
+ "songName": {
+ "jpText": "天照",
+ "jpFont": 0,
+ "enText": "Amaterasu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Tatsh a.k.a 世阿弥",
+ "jpFont": 0,
+ "enText": "Tatsh a.k.a Xeami",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "天照",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "amhero",
+ "songName": {
+ "jpText": "Hero",
+ "jpFont": 0,
+ "enText": "Hero",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "安室奈美恵",
+ "jpFont": 0,
+ "enText": "Namie Amuro",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "amphit",
+ "songName": {
+ "jpText": "アムピト◇リーテー",
+ "jpFont": 0,
+ "enText": "Amphit♦rite",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "かねこちはる",
+ "jpFont": 0,
+ "enText": "Kaneko Chiharu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アムピト◇リーテー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "anayuk",
+ "songName": {
+ "jpText": "Let It Go~ありのままで~",
+ "jpFont": 0,
+ "enText": "Let It Go -Japanese Version-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アナと雪の女王」より",
+ "jpFont": 0,
+ "enText": "From \" Frozen \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Let It Go~ありのままで~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "androm",
+ "songName": {
+ "jpText": "渚のアンドロメダ",
+ "jpFont": 0,
+ "enText": "Nagisa no Andromeda",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "渚のアンドロメダ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "angel2",
+ "songName": {
+ "jpText": "風のファンタジー",
+ "jpFont": 0,
+ "enText": "Kaze no Fantasy",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "風のファンタジー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "angel3",
+ "songName": {
+ "jpText": "パステル ドリーム",
+ "jpFont": 0,
+ "enText": "Pastel Dream",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "パステル ドリーム",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "angelb",
+ "songName": {
+ "jpText": "My Soul,Your Beats!",
+ "jpFont": 0,
+ "enText": "My Soul, Your Beats!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「Angel Beats!」より",
+ "jpFont": 0,
+ "enText": "From \" Angel Beats \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "animal",
+ "songName": {
+ "jpText": "グレート!アニマルカイザー!!",
+ "jpFont": 0,
+ "enText": "Great! Animale Kaiser!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「百獣大戦グレートアニマルカイザー」より",
+ "jpFont": 0,
+ "enText": "From \" Hyakujuu Taisen Great Animal Kaiser \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "グレート!アニマルカイザー!!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "anohid",
+ "songName": {
+ "jpText": "あの日出会えたキセキ",
+ "jpFont": 0,
+ "enText": "Ano Hi Deaeta Kiseki",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "溝口ゆうま feat.大瀬良あい miko",
+ "jpFont": 0,
+ "enText": "Yuuma Mizonokuchi feat. Ai Oosera, miko",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "あの日出会えたキセキ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "anp",
+ "songName": {
+ "jpText": "アンパンマンのマーチ",
+ "jpFont": 0,
+ "enText": "Anpanman's March",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アンパンマンのマーチ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "antoni",
+ "songName": {
+ "jpText": "アントニオ",
+ "jpFont": 0,
+ "enText": "Antonio",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ゆるめるモ!",
+ "jpFont": 0,
+ "enText": "You'll Melt More!",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アントニオ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "aonose",
+ "songName": {
+ "jpText": "蒼の旋律",
+ "jpFont": 0,
+ "enText": "Ao no Senritsu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "蒼の旋律",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "aquari",
+ "songName": {
+ "jpText": "創聖のアクエリオン",
+ "jpFont": 0,
+ "enText": "Sousei no Aquarion",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「創聖のアクエリオン」より",
+ "jpFont": 0,
+ "enText": "From \" Genesis of Aquarion \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "創聖のアクエリオン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "aragam",
+ "songName": {
+ "jpText": "Aragami",
+ "jpFont": 0,
+ "enText": "Aragami",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "xi",
+ "jpFont": 0,
+ "enText": "xi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "arcgai",
+ "songName": {
+ "jpText": "弧",
+ "jpFont": 0,
+ "enText": "Arc",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "概念",
+ "jpFont": 0,
+ "enText": "Gainen",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "弧",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "armage",
+ "songName": {
+ "jpText": "ARMAGEΔDON",
+ "jpFont": 0,
+ "enText": "ARMAGEΔDON",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "BlackY",
+ "jpFont": 0,
+ "enText": "BlackY",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "arufw",
+ "songName": {
+ "jpText": "或ル不和",
+ "jpFont": 0,
+ "enText": "Aru Fuwa",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "aran",
+ "jpFont": 0,
+ "enText": "aran",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "或ル不和",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "asgbtb",
+ "songName": {
+ "jpText": "アサガオ",
+ "jpFont": 0,
+ "enText": "Asagao",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "BTB",
+ "jpFont": 0,
+ "enText": "BTB",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アサガオ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ashibe",
+ "songName": {
+ "jpText": "Smile! Smile! Smile!",
+ "jpFont": 0,
+ "enText": "Smile! Smile! Smile!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「少年アシベ GO!GO!ゴマちゃん」より",
+ "jpFont": 0,
+ "enText": "From \" Shounen Ashibe GO! GO! Goma-chan \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "aslt",
+ "songName": {
+ "jpText": "アサルト BGM1",
+ "jpFont": 0,
+ "enText": "ASSAULT BGM1",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アサルト BGM1",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "astero",
+ "songName": {
+ "jpText": "Asteroid",
+ "jpFont": 0,
+ "enText": "Asteroid",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "KORG Gadget Kamata デモソング",
+ "jpFont": 0,
+ "enText": "KORG Gadget Kamata Demo Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "aya10",
+ "songName": {
+ "jpText": "サンバ アレグリーア",
+ "jpFont": 0,
+ "enText": "Samba Alegria",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "日替り無料",
+ "jpFont": 0,
+ "enText": "Nichi Kawari Muryo",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "サンバ アレグリーア",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ba9ma2",
+ "songName": {
+ "jpText": "幕末維新譚",
+ "jpFont": 0,
+ "enText": "Bakumatsu Ishintan",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "黒沢ダイスケ × Masahiro \"Godspeed\" Aoki",
+ "jpFont": 0,
+ "enText": "Daisuke Kurosawa x Masahiro \" Godspeed \" Aoki",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "幕末維新譚",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "batan9",
+ "songName": {
+ "jpText": "全力バタンキュー",
+ "jpFont": 0,
+ "enText": "Zenryoku Batankyuu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「おそ松さん」より",
+ "jpFont": 0,
+ "enText": "From \" Osomatsu San \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "全力バタンキュー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bbb",
+ "songName": {
+ "jpText": "Blessed Bouquet Buskers",
+ "jpFont": 0,
+ "enText": "Blessed Bouquet Buskers",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bbkkbk",
+ "songName": {
+ "jpText": "B.B.K.K.B.K.K.",
+ "jpFont": 0,
+ "enText": "B.B.K.K.B.K.K.",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "nora2r",
+ "jpFont": 0,
+ "enText": "nora2r",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bburst",
+ "songName": {
+ "jpText": "くらえ!ブットバースト!!",
+ "jpFont": 0,
+ "enText": "Kurae! Butto Burst!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「友情装着!ブットバースト」より",
+ "jpFont": 0,
+ "enText": "From \" Yuujou Souchaku! Butto Burst \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "くらえ!ブットバースト!!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "behemo",
+ "songName": {
+ "jpText": "Behemoth",
+ "jpFont": 0,
+ "enText": "Behemoth",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "DJ Myosuke",
+ "jpFont": 0,
+ "enText": "DJ Myosuke",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bforc",
+ "songName": {
+ "jpText": "バーニングフォースメドレー",
+ "jpFont": 0,
+ "enText": "Burning Force Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "バーニングフォースメドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bijoto",
+ "songName": {
+ "jpText": "美女と野獣",
+ "jpFont": 0,
+ "enText": "Beauty and the Beast",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "美女と野獣",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bisprm",
+ "songName": {
+ "jpText": "プロミスザスター",
+ "jpFont": 0,
+ "enText": "promise the star",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "BiSH",
+ "jpFont": 0,
+ "enText": "BiSH",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "プロミスザスター",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bkline",
+ "songName": {
+ "jpText": "ブレイクライン",
+ "jpFont": 0,
+ "enText": "Break Line",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ブレイクライン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bkmntu",
+ "songName": {
+ "jpText": "化物月夜",
+ "jpFont": 0,
+ "enText": "Bakemono Tsukiyo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "くにきち",
+ "jpFont": 0,
+ "enText": "Kunikichi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "化物月夜",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bko22",
+ "songName": {
+ "jpText": "どん子のファーストデート",
+ "jpFont": 0,
+ "enText": "Donko no First Date",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "どん子のファーストデート",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bko3",
+ "songName": {
+ "jpText": "うなぎのたましいロック",
+ "jpFont": 0,
+ "enText": "Unagi no Tamashii Rock",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "うなぎのたましいロック",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "blazer",
+ "songName": {
+ "jpText": "Pastel Sealane",
+ "jpFont": 0,
+ "enText": "Pastel Sealane",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ブレイザー」より",
+ "jpFont": 0,
+ "enText": "From \" Blazer \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "blrose",
+ "songName": {
+ "jpText": "Blue Rose Ruin",
+ "jpFont": 0,
+ "enText": "Blue Rose Ruin",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bluert",
+ "songName": {
+ "jpText": "OK I’m blue rat",
+ "jpFont": 0,
+ "enText": "OK I’m blue rat",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "E.G.G.",
+ "jpFont": 0,
+ "enText": "E.G.G.",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "blzvtx",
+ "songName": {
+ "jpText": "BLAZING VORTEX",
+ "jpFont": 0,
+ "enText": "BLAZING VORTEX",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「クリティカルベロシティ」より",
+ "jpFont": 0,
+ "enText": "From \" Critical Velocity \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bn875",
+ "songName": {
+ "jpText": "高嶺の花子さん",
+ "jpFont": 0,
+ "enText": "Takaneno Hanakosan",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "back number",
+ "jpFont": 0,
+ "enText": "back number",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "高嶺の花子さん",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bnxmas",
+ "songName": {
+ "jpText": "クリスマスソング",
+ "jpFont": 0,
+ "enText": "Christmas Song",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "back number",
+ "jpFont": 0,
+ "enText": "back number",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "クリスマスソング",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bsdanc",
+ "songName": {
+ "jpText": "僕らの世界にダンスを",
+ "jpFont": 0,
+ "enText": "Bokura no Sekai ni Dance o",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "サカモト教授 feat. GUMI",
+ "jpFont": 0,
+ "enText": "Professor Sakamoto feat.GUMI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "僕らの世界にダンスを",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "btlno1",
+ "songName": {
+ "jpText": "BATTLE NO.1",
+ "jpFont": 0,
+ "enText": "BATTLE NO.1",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "TANO*C Sound Team",
+ "jpFont": 0,
+ "enText": "TANO*C Sound Team",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "btu5ar",
+ "songName": {
+ "jpText": "夜桜謝肉祭",
+ "jpFont": 0,
+ "enText": "Yozakura Shanikusai",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "夜桜謝肉祭",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bugi",
+ "songName": {
+ "jpText": "オフ♨ロック",
+ "jpFont": 0,
+ "enText": "Off♨Rock",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "オフ♨ロック",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bunkas",
+ "songName": {
+ "jpText": "ゆれるプリーツ実行委員",
+ "jpFont": 0,
+ "enText": "Yureru Pleats Jikkouiin",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat.団地ノ宮弥子",
+ "jpFont": 0,
+ "enText": "feat. Yako Danchinomiya",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ゆれるプリーツ実行委員",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "buru2",
+ "songName": {
+ "jpText": "ブルちゃんのおや2",
+ "jpFont": 0,
+ "enText": "Buru-chan no Oyatsu 2",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "腹ペコジャーニー第二章~ブルちゃんのおや2~\nもっと食べたい1より(クラシック風)",
+ "jpFont": 0,
+ "enText": "Empty Stomach Journey Chapter 2~\nBuru-chan no Oya2~ I Want to Eat Once More (Classic Style)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ブルちゃんのおや2",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "butou",
+ "songName": {
+ "jpText": "画竜点睛",
+ "jpFont": 0,
+ "enText": "Garyoutensei",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "画竜点睛",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "butou2",
+ "songName": {
+ "jpText": "真・画竜点睛",
+ "jpFont": 0,
+ "enText": "Shin Garyoutensei",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "真・画竜点睛",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "butou3",
+ "songName": {
+ "jpText": "月下美人",
+ "jpFont": 0,
+ "enText": "Gekka Bijin",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "月下美人",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "butou4",
+ "songName": {
+ "jpText": "黒船来航",
+ "jpFont": 0,
+ "enText": "Kurofune Raikou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "黒船来航",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "butou5",
+ "songName": {
+ "jpText": "百花繚乱",
+ "jpFont": 0,
+ "enText": "Hyakka Ryoran",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "百花繚乱",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "butou7",
+ "songName": {
+ "jpText": "風雲志士",
+ "jpFont": 0,
+ "enText": "Fuun Shishi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "風雲志士",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "butou8",
+ "songName": {
+ "jpText": "百鬼夜行",
+ "jpFont": 0,
+ "enText": "Hyakki Yakou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "百鬼夜行",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "byosin",
+ "songName": {
+ "jpText": "秒針を噛む",
+ "jpFont": 0,
+ "enText": "Byoushinwo Kamu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ずっと真夜中でいいのに。",
+ "jpFont": 0,
+ "enText": "ZUTOMAYO",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "秒針を噛む",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "calc",
+ "songName": {
+ "jpText": "Calculator",
+ "jpFont": 0,
+ "enText": "Calculator",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "M-O-T-U",
+ "jpFont": 0,
+ "enText": "M-O-T-U",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "calice",
+ "songName": {
+ "jpText": "CYBERgenicALICE",
+ "jpFont": 0,
+ "enText": "CYBERgenicALICE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "caramt",
+ "songName": {
+ "jpText": "カラメルタイム☆",
+ "jpFont": 0,
+ "enText": "Caramel Time☆",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "たんきゅん",
+ "jpFont": 0,
+ "enText": "Tanqun",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "カラメルタイム☆",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "caribb",
+ "songName": {
+ "jpText": "Caribbean Knight",
+ "jpFont": 0,
+ "enText": "Caribbean Knight",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Taiji",
+ "jpFont": 0,
+ "enText": "Taiji",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "carnat",
+ "songName": {
+ "jpText": "和蘭撫子",
+ "jpFont": 0,
+ "enText": "Carnation",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "和蘭撫子",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "carniv",
+ "songName": {
+ "jpText": "The Carnivorous Carnival",
+ "jpFont": 0,
+ "enText": "The Carnivorous Carnival",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "catdog",
+ "songName": {
+ "jpText": "白猫きゃらめる夢幻のわたあめ",
+ "jpFont": 0,
+ "enText": "Shiro Neko Caramel Mugen no Wata-ame",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "白猫きゃらめる夢幻のわたあめ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "chaini",
+ "songName": {
+ "jpText": "Love You",
+ "jpFont": 0,
+ "enText": "Love You",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "chaost",
+ "songName": {
+ "jpText": "!!!カオスタイム!!!",
+ "jpFont": 0,
+ "enText": "!!!Chaos Time!!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "t+pazolite",
+ "jpFont": 0,
+ "enText": "t+pazolite",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "!!!カオスタイム!!!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "chaslt",
+ "songName": {
+ "jpText": "逆戦 NI ZHAN",
+ "jpFont": 0,
+ "enText": "Ni Zhan",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "chaway",
+ "songName": {
+ "jpText": "AWAY",
+ "jpFont": 0,
+ "enText": "Away",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "chdist",
+ "songName": {
+ "jpText": "以後別做朋友 The Distance of Love",
+ "jpFont": 0,
+ "enText": "The Distance of Love",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "以後別做朋友 The Distance of Love",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "chinas",
+ "songName": {
+ "jpText": "ソードバトラーズ",
+ "jpFont": 0,
+ "enText": "Sword Battlers",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ソードバトラーズ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "chn96b",
+ "songName": {
+ "jpText": "チェインクロニクル 最終決戦メドレー",
+ "jpFont": 0,
+ "enText": "Chain Chronicle Final Battle Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "チェインクロニクル 最終決戦メドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "chn96n",
+ "songName": {
+ "jpText": "チェインクロニクル 通常バトルメドレー",
+ "jpFont": 0,
+ "enText": "Chain Chronicle Normal Battle Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "チェインクロニクル 通常バトルメドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "chn96t",
+ "songName": {
+ "jpText": "チェインクロニクル 総力戦メドレー",
+ "jpFont": 0,
+ "enText": "Chain Chronicle Total War Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "チェインクロニクル 総力戦メドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "chozet",
+ "songName": {
+ "jpText": "超絶技巧系少女",
+ "jpFont": 0,
+ "enText": "Chouzetsu-gikoukei Shoujo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ねこかぶりサイクロン(xi+ねこみりん)",
+ "jpFont": 0,
+ "enText": "Nekokaburi Cyclone (xi + Nekomirin)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "超絶技巧系少女",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "chplov",
+ "songName": {
+ "jpText": "修錬愛情 Practice Love",
+ "jpFont": 0,
+ "enText": "Practice Love",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "修錬愛情 Practice Love",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "chu2go",
+ "songName": {
+ "jpText": "業 -善なる神とこの世の悪について-",
+ "jpFont": 0,
+ "enText": "Misdeed -la bonté de Dieu et l'origine du mal-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "光吉猛修 VS 穴山大輔 「CHUNITHM」より",
+ "jpFont": 0,
+ "enText": "Takenobu Mitsuyoshi VS Daisuke Anayama From \" CHUNITHM \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "業 -善なる神とこの世の悪について-",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "chuwap",
+ "songName": {
+ "jpText": "チュワパネ!",
+ "jpFont": 0,
+ "enText": "Chuwapane!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ひみつ×戦士 ファントミラージュ!」より",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "チュワパネ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clotho",
+ "songName": {
+ "jpText": "Clotho クロートー",
+ "jpFont": 0,
+ "enText": "Clotho",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Tatsh feat. 小田ユウ",
+ "jpFont": 0,
+ "enText": "Tatsh feat. Yu Oda",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Clotho クロートー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "cls12r",
+ "songName": {
+ "jpText": "練習曲Op.10-4",
+ "jpFont": 0,
+ "enText": "Etude Op.10-4",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "練習曲Op.10-4",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "cls7",
+ "songName": {
+ "jpText": "交響曲第7番から",
+ "jpFont": 0,
+ "enText": "From Symphony No.7",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ベートーヴェン",
+ "jpFont": 0,
+ "enText": "Ludwig van Beethoven",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "交響曲第7番から",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsaip",
+ "songName": {
+ "jpText": "パリのアメリカ人",
+ "jpFont": 0,
+ "enText": "An American in Paris",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ガーシュウィン",
+ "jpFont": 0,
+ "enText": "Gershwin",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "パリのアメリカ人",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsbut",
+ "songName": {
+ "jpText": "サーフサイド・サティ",
+ "jpFont": 0,
+ "enText": "Surfside Satie",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "サーフサイド・サティ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clscds",
+ "songName": {
+ "jpText": "チャーリー ダッシュ!",
+ "jpFont": 0,
+ "enText": "Csardas!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "チャーリー ダッシュ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clscif",
+ "songName": {
+ "jpText": "ヘ調の協奏曲 第3楽章",
+ "jpFont": 0,
+ "enText": "Concerto in F 3rd Movement",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ガーシュウィン",
+ "jpFont": 0,
+ "enText": "Gershwin",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ヘ調の協奏曲 第3楽章",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clscpl",
+ "songName": {
+ "jpText": "クラポルポルスカ",
+ "jpFont": 0,
+ "enText": "Kuraporuporusuka",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "クラポルポルスカ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clscpr",
+ "songName": {
+ "jpText": "クープランの墓",
+ "jpFont": 0,
+ "enText": "Le Tombeau de Couperin",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "クープランの墓",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsdog",
+ "songName": {
+ "jpText": "プチポチ",
+ "jpFont": 0,
+ "enText": "Pupper Waltz",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "プチポチ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsdok",
+ "songName": {
+ "jpText": "道化師の朝の歌",
+ "jpFont": 0,
+ "enText": "Alborada del gracioso",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "道化師の朝の歌",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsgen",
+ "songName": {
+ "jpText": "幻想即興曲",
+ "jpFont": 0,
+ "enText": "Fantaisie-Impromptu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ショパン",
+ "jpFont": 0,
+ "enText": "Frédéric Chopin",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "幻想即興曲",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsh69",
+ "songName": {
+ "jpText": "ハンロック",
+ "jpFont": 0,
+ "enText": "Hungarian Rock",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ハンロック",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsmnk",
+ "songName": {
+ "jpText": "カレ・カノ・カノン",
+ "jpFont": 0,
+ "enText": "Kare Kano Canon",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "カレ・カノ・カノン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsmrs",
+ "songName": {
+ "jpText": "火星",
+ "jpFont": 0,
+ "enText": "Mars",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ホルスト",
+ "jpFont": 0,
+ "enText": "Gustav Holst",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "火星",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clspvn",
+ "songName": {
+ "jpText": "亡き王女のためのパヴァーヌ",
+ "jpFont": 0,
+ "enText": "Pavane for a Dead Princess",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "~きみのこどう~",
+ "jpFont": 0,
+ "enText": "~Kimi no Kodou~",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "亡き王女のためのパヴァーヌ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsrou",
+ "songName": {
+ "jpText": "「ルスランとリュドミラ」序曲",
+ "jpFont": 0,
+ "enText": "Ruslan and Lyudmila Overture",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "グリンカ",
+ "jpFont": 0,
+ "enText": "Mikhail Glinka",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "「ルスランとリュドミラ」序曲",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsswn",
+ "songName": {
+ "jpText": "白鳥の湖",
+ "jpFont": 0,
+ "enText": "Swan Lake",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "~still a duckling~",
+ "jpFont": 0,
+ "enText": "~still a duckling~",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "白鳥の湖",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clstic",
+ "songName": {
+ "jpText": "千鼓千鼓",
+ "jpFont": 0,
+ "enText": "Chikochiko",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "千鼓千鼓",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsvre",
+ "songName": {
+ "jpText": "おおブレネリ",
+ "jpFont": 0,
+ "enText": "O Vreneli",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "おおブレネリ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "cnctcl",
+ "songName": {
+ "jpText": "コネクトカラーズ",
+ "jpFont": 0,
+ "enText": "Connect Colors",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Ponchi♪ feat.はぁち",
+ "jpFont": 0,
+ "enText": "Ponchi♪ feat.Haxchi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "コネクトカラーズ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "confli",
+ "songName": {
+ "jpText": "conflict",
+ "jpFont": 0,
+ "enText": "conflict",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "siromaru + cranky",
+ "jpFont": 0,
+ "enText": "siromaru + cranky",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "coquet",
+ "songName": {
+ "jpText": "Coquette",
+ "jpFont": 0,
+ "enText": "Coquette",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Jun Kuroda",
+ "jpFont": 0,
+ "enText": "Jun Kuroda",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "coro3",
+ "songName": {
+ "jpText": "ココロ転がせっ!",
+ "jpFont": 0,
+ "enText": "Kokoro Korogase!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "コロコロコミック35周年応援ソング",
+ "jpFont": 0,
+ "enText": "CoroCoro Comics 35th Anniversary Support Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ココロ転がせっ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "crkvic",
+ "songName": {
+ "jpText": "VICTORIA",
+ "jpFont": 0,
+ "enText": "VICTORIA",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Cranky",
+ "jpFont": 0,
+ "enText": "Cranky",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "crosbl",
+ "songName": {
+ "jpText": "クロス・ブルー",
+ "jpFont": 0,
+ "enText": "Cross Blue",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "クロス・ブルー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "crtsun",
+ "songName": {
+ "jpText": "Sunset Runaway",
+ "jpFont": 0,
+ "enText": "Sunset Runaway",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「クリティカルベロシティ」より",
+ "jpFont": 0,
+ "enText": "From \" Critical Velocity \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "csmclr",
+ "songName": {
+ "jpText": "カラフルボイス",
+ "jpFont": 0,
+ "enText": "Colorful Voice",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "cosMo@暴走P feat.初音ミク・GUMI",
+ "jpFont": 0,
+ "enText": "cosMo@bousouP feat.Hatsune Miku・GUMI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "カラフルボイス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "csmmon",
+ "songName": {
+ "jpText": "モノクロボイス",
+ "jpFont": 0,
+ "enText": "Monochrome Voice",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "cosMo@暴走P feat.初音ミク・GUMI",
+ "jpFont": 0,
+ "enText": "cosMo@bousouP feat.Hatsune Miku・GUMI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "モノクロボイス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "d96can",
+ "songName": {
+ "jpText": "毒LOCANdy♡",
+ "jpFont": 0,
+ "enText": "DokuLO CANdy♡",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "t+pazolite",
+ "jpFont": 0,
+ "enText": "t+pazolite",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "毒LOCANdy♡",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dai6kn",
+ "songName": {
+ "jpText": "第六感",
+ "jpFont": 0,
+ "enText": "The Sixth Sense",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Reol",
+ "jpFont": 0,
+ "enText": "Reol",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "第六感",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "daig2",
+ "songName": {
+ "jpText": "それが大事",
+ "jpFont": 0,
+ "enText": "Sore ga Daiji",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "それが大事",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dariub",
+ "songName": {
+ "jpText": "Good-bye my earth",
+ "jpFont": 0,
+ "enText": "Good-bye my earth",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ダライアスバースト」より",
+ "jpFont": 0,
+ "enText": "From \" Dariusburst \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "daybyd",
+ "songName": {
+ "jpText": "Day by Day!",
+ "jpFont": 0,
+ "enText": "Day by Day!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dchero",
+ "songName": {
+ "jpText": "ダンシング・ヒーロー(Eat You Up)",
+ "jpFont": 0,
+ "enText": "Dancing Hero (Eat You Up)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "荻野目洋子",
+ "jpFont": 0,
+ "enText": "Youko Oginome",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ダンシング・ヒーロー(Eat You Up)",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ddkmon",
+ "songName": {
+ "jpText": "駄々っ子モンスター",
+ "jpFont": 0,
+ "enText": "Dadakko Monster",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "駄々っ子モンスター",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ddrumt",
+ "songName": {
+ "jpText": "電子ドラムの達人",
+ "jpFont": 0,
+ "enText": "Denshi-drum no Tatsujin",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ふぇのたす",
+ "jpFont": 0,
+ "enText": "Phenotas",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "電子ドラムの達人",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "deadie",
+ "songName": {
+ "jpText": "デッド・オア・ダイ",
+ "jpFont": 0,
+ "enText": "Dead or Die",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "REDALiCE",
+ "jpFont": 0,
+ "enText": "REDALiCE",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "デッド・オア・ダイ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "deathm",
+ "songName": {
+ "jpText": "Many wow bang!",
+ "jpFont": 0,
+ "enText": "Many wow bang!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dem31k",
+ "songName": {
+ "jpText": "Saika",
+ "jpFont": 0,
+ "enText": "Saika",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Rabpit 「DEEMO」より",
+ "jpFont": 0,
+ "enText": "Rabpit From \" DEEMO \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dema2m",
+ "songName": {
+ "jpText": "ANiMA",
+ "jpFont": 0,
+ "enText": "ANiMA",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "xi 「DEEMO」より",
+ "jpFont": 0,
+ "enText": "xi From \" DEEMO \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "demlev",
+ "songName": {
+ "jpText": "Leviathan",
+ "jpFont": 0,
+ "enText": "Leviathan",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "NeLiME 「DEEMO」より",
+ "jpFont": 0,
+ "enText": "NeLiME From \" DEEMO \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "demmag",
+ "songName": {
+ "jpText": "MagiCatz",
+ "jpFont": 0,
+ "enText": "MagiCatz",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Sakuzyo 「DEEMO」より",
+ "jpFont": 0,
+ "enText": "Sakuzyo From \" DEEMO \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "demwis",
+ "songName": {
+ "jpText": "Wish upon a shooting star",
+ "jpFont": 0,
+ "enText": "Wish upon a shooting star",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "SUi 「DEEMO」より",
+ "jpFont": 0,
+ "enText": "SUi From \" DEEMO \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "den",
+ "songName": {
+ "jpText": "伝説の祭り",
+ "jpFont": 0,
+ "enText": "Densetsu no Matsuri",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "伝説の祭り",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "densfz",
+ "songName": {
+ "jpText": "電車で電車でOPA!OPA!OPA! - GMT mashup -",
+ "jpFont": 0,
+ "enText": "Densha de Densha de OPA!OPA!OPA! - GMT mashup -",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Yuji Masubuchi(BNSI)「電車でGO!」「ファンタジーゾーン」 ",
+ "jpFont": 0,
+ "enText": "Yuji Masubuchi(BNSI)/Densha de GO!/Fantasy Zone",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "電車で電車でOPA!OPA!OPA! - GMT mashup -",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "densgo",
+ "songName": {
+ "jpText": "電車で電車でGO!GO!GO!GC! - GMT remix -",
+ "jpFont": 0,
+ "enText": "Densha de Densha de GO!GO!GO!GC! - GMT remix -",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "COSIO(ZUNTATA/TAITO)/沢城千春「電車でGO!」",
+ "jpFont": 0,
+ "enText": "COSIO(ZUNTATA/TAITO)/Chiharu Sawashiro/Densha de GO!",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "電車で電車でGO!GO!GO!GC! - GMT remix -",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "densrr",
+ "songName": {
+ "jpText": "リッジでリッジでGO!GO!GO! - GMT mashup -",
+ "jpFont": 0,
+ "enText": "Ridge de Ridge de GO!GO!GO! - GMT mashup -",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Hiro(SEGA)「RIDGE RACER」「電車でGO!」",
+ "jpFont": 0,
+ "enText": "Hiro(SEGA)/Ridge Racer/Densha de GO!",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "リッジでリッジでGO!GO!GO! - GMT mashup -",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dhero2",
+ "songName": {
+ "jpText": "ドラゴンボールヒーローズ ギャラクシーミッションシリーズ テーマソング",
+ "jpFont": 0,
+ "enText": "Dragon Ball Heroes Galaxy Mission Series Theme Song",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドラゴンボールヒーローズ ギャラクシーミッションシリーズ テーマソング",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dhero3",
+ "songName": {
+ "jpText": "ドラゴンボールヒーローズ 邪悪龍ミッションシリーズ テーマソング",
+ "jpFont": 0,
+ "enText": "Dragon Ball Heroes Evil Dragon Mission Series Theme Song",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドラゴンボールヒーローズ 邪悪龍ミッションシリーズ テーマソング",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dhero4",
+ "songName": {
+ "jpText": "ドラゴンボールヒーローズ ゴッドミッションシリーズ テーマソング",
+ "jpFont": 0,
+ "enText": "Dragon Ball Heroes God Mission Series Theme Song",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドラゴンボールヒーローズ ゴッドミッションシリーズ テーマソング",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dhero5",
+ "songName": {
+ "jpText": "スーパードラゴンボールヒーローズ テーマソング",
+ "jpFont": 0,
+ "enText": "Super Dragon Ball Heroes Theme Song",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "スーパードラゴンボールヒーローズ テーマソング",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dimens",
+ "songName": {
+ "jpText": "DIMENSIONS",
+ "jpFont": 0,
+ "enText": "DIMENSIONS",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dmjojo",
+ "songName": {
+ "jpText": "未来はジョー!ジョー!",
+ "jpFont": 0,
+ "enText": "Mirai wa Joe! Joe!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「デュエル・マスターズ」より",
+ "jpFont": 0,
+ "enText": "From \" Duel Masters \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "未来はジョー!ジョー!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dmonky",
+ "songName": {
+ "jpText": "DANCE MONKEY",
+ "jpFont": 0,
+ "enText": "Dance Monkey",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dobbsk",
+ "songName": {
+ "jpText": "アイドル狂戦士(feat.佐藤貴文)",
+ "jpFont": 0,
+ "enText": "Idol Berserker (feat. Takafumi Sato)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "茅野ふたば(CV:堀越せな) 「電音部」より",
+ "jpFont": 0,
+ "enText": "Futaba Kayano (CV:Sena Horikoshi) From \" DEN-ON-BU \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アイドル狂戦士(feat.佐藤貴文)",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dobfav",
+ "songName": {
+ "jpText": "Favorite Days",
+ "jpFont": 0,
+ "enText": "Favorite Days",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "日高零奈(CV:蔀 祐佳) 「電音部」より",
+ "jpFont": 0,
+ "enText": "Reina Hidaka (CV:Yuuka Shidomi) From \" DEN-ON-BU \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dobma2",
+ "songName": {
+ "jpText": "Mani Mani(Prod. TAKU INOUE)",
+ "jpFont": 0,
+ "enText": "Mani Mani(Prod. TAKU INOUE)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東雲和音(CV:天音みほ) 「電音部」より",
+ "jpFont": 0,
+ "enText": "Kazune Shinonome (CV:Miho Amane) From \" DEN-ON-BU \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "doctrx",
+ "songName": {
+ "jpText": "ドクターXのテーマ",
+ "jpFont": 0,
+ "enText": "Doctor-X Theme",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ドラマ「ドクターX ~外科医・大門未知子~」より",
+ "jpFont": 0,
+ "enText": "From \" Doctor-X:Surgeon Michiko Daimon \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドクターXのテーマ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dogbit",
+ "songName": {
+ "jpText": "Dogbite",
+ "jpFont": 0,
+ "enText": "Dogbite",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "t+pazolite",
+ "jpFont": 0,
+ "enText": "t+pazolite",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dogma1",
+ "songName": {
+ "jpText": "Central Dogma Pt.1",
+ "jpFont": 0,
+ "enText": "Central Dogma Pt.1",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "黒沢ダイスケ",
+ "jpFont": 0,
+ "enText": "Daisuke Kurosawa",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "donbro",
+ "songName": {
+ "jpText": "俺こそオンリーワン",
+ "jpFont": 0,
+ "enText": "Ore Koso Only One",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「暴太郎戦隊ドンブラザーズ」より",
+ "jpFont": 0,
+ "enText": "From \" Avataro Sentai Donbrothers \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "俺こそオンリーワン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "doncam",
+ "songName": {
+ "jpText": "ドンカマ2000",
+ "jpFont": 0,
+ "enText": "Donkama 2000",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドンカマ2000",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dora4",
+ "songName": {
+ "jpText": "夢をかなえてドラえもん",
+ "jpFont": 0,
+ "enText": "Yume o Kanaete Doraemon",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ドラえもん」より",
+ "jpFont": 0,
+ "enText": "From \" Doraemon \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "夢をかなえてドラえもん",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dparad",
+ "songName": {
+ "jpText": "DREAMERS’ PARADISE",
+ "jpFont": 0,
+ "enText": "DREAMERS’ PARADISE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "DANCE EARTH PARTY タイアップソング",
+ "jpFont": 0,
+ "enText": "DANCE EARTH PARTY Tie-up Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dptfct",
+ "songName": {
+ "jpText": "wonderful ROUTINE",
+ "jpFont": 0,
+ "enText": "wonderful ROUTINE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dragoo",
+ "songName": {
+ "jpText": "Dragoon",
+ "jpFont": 0,
+ "enText": "Dragoon",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Massive New Krew",
+ "jpFont": 0,
+ "enText": "Massive New Krew",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dreadn",
+ "songName": {
+ "jpText": "Dreadnought",
+ "jpFont": 0,
+ "enText": "Dreadnought",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Mastermind(xi+nora2r)",
+ "jpFont": 0,
+ "enText": "Mastermind(xi+nora2r)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dreamt",
+ "songName": {
+ "jpText": "Dream Tide",
+ "jpFont": 0,
+ "enText": "Dream Tide",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "-夢の潮流-",
+ "jpFont": 0,
+ "enText": "-Yume no Chouryu-",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "drsp",
+ "songName": {
+ "jpText": "ドラゴンスピリットメドレー",
+ "jpFont": 0,
+ "enText": "Dragon Spirit Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドラゴンスピリットメドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "druaga",
+ "songName": {
+ "jpText": "ドルアーガの塔メドレー",
+ "jpFont": 0,
+ "enText": "Tower of Druaga Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドルアーガの塔メドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dsadvn",
+ "songName": {
+ "jpText": "D′s Adventure Note",
+ "jpFont": 0,
+ "enText": "D's Adventure Note",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "暖@よみぃ",
+ "jpFont": 0,
+ "enText": "Dan@Yomii",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dsgame",
+ "songName": {
+ "jpText": "Don't Stop the Game",
+ "jpFont": 0,
+ "enText": "Don't Stop the Game",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "DJ Myosuke",
+ "jpFont": 0,
+ "enText": "DJ Myosuke",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ebika2",
+ "songName": {
+ "jpText": "エビカニクス",
+ "jpFont": 0,
+ "enText": "Ebikanics",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ケロポンズ",
+ "jpFont": 0,
+ "enText": "Keropons",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "エビカニクス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "egoego",
+ "songName": {
+ "jpText": "エゴエゴアタクシ",
+ "jpFont": 0,
+ "enText": "Ego Ego Atakushi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "エゴエゴアタクシ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ekiben",
+ "songName": {
+ "jpText": "EkiBEN2000",
+ "jpFont": 0,
+ "enText": "EkiBEN2000",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "elegy",
+ "songName": {
+ "jpText": "さよならエレジー",
+ "jpFont": 0,
+ "enText": "Sayonara Elegy",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "さよならエレジー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "emma",
+ "songName": {
+ "jpText": "Emma",
+ "jpFont": 0,
+ "enText": "Emma",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "BlackY feat. Risa Yuzuki",
+ "jpFont": 0,
+ "enText": "BlackY feat. Risa Yuzuki",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "eoria",
+ "songName": {
+ "jpText": "地平線のエオリア",
+ "jpFont": 0,
+ "enText": "Chiheisen no Aeolia",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "地平線のエオリア",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "erfanc",
+ "songName": {
+ "jpText": "いーあるふぁんくらぶ",
+ "jpFont": 0,
+ "enText": "1,2, Fanclub",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "みきとP feat.GUMI・鏡音リン",
+ "jpFont": 0,
+ "enText": "mikito P feat.GUMI・Kagamine Rin",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "いーあるふぁんくらぶ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "espera",
+ "songName": {
+ "jpText": "願いはエスペラント",
+ "jpFont": 0,
+ "enText": "Negai Wa Esperanto",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "願いはエスペラント",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "etbond",
+ "songName": {
+ "jpText": "Eternal bond",
+ "jpFont": 0,
+ "enText": "Eternal bond",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "リューイッティ feat.GUMI",
+ "jpFont": 0,
+ "enText": "Ryuwitty feat.GUMI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "etring",
+ "songName": {
+ "jpText": "EterNal Ring",
+ "jpFont": 0,
+ "enText": "EterNal Ring",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "museo",
+ "jpFont": 0,
+ "enText": "museo",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "evedrm",
+ "songName": {
+ "jpText": "ドラマツルギー",
+ "jpFont": 0,
+ "enText": "Dramaturgy",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Eve",
+ "jpFont": 0,
+ "enText": "Eve",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドラマツルギー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "evensb",
+ "songName": {
+ "jpText": "ナンセンス文学",
+ "jpFont": 0,
+ "enText": "Literary Nonsense",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Eve",
+ "jpFont": 0,
+ "enText": "Eve",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ナンセンス文学",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "evievi",
+ "songName": {
+ "jpText": "Evidence of evil",
+ "jpFont": 0,
+ "enText": "Evidence of evil",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "AJURIKA",
+ "jpFont": 0,
+ "enText": "AJURIKA",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fa3res",
+ "songName": {
+ "jpText": "ファミレスウォーズ",
+ "jpFont": 0,
+ "enText": "Famires Wars",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ファミレスウォーズ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fauna",
+ "songName": {
+ "jpText": "Scars of FAUNA",
+ "jpFont": 0,
+ "enText": "Scars of FAUNA",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "猫叉Master「jubeat」より",
+ "jpFont": 0,
+ "enText": "Nekomata Master From \" jubeat \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fcmedl",
+ "songName": {
+ "jpText": "ファミコンメドレー",
+ "jpFont": 0,
+ "enText": "Famicom Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "バルーンファイト・ドクターマリオ・エキサイトバイク",
+ "jpFont": 0,
+ "enText": "Balloon Fight/Dr. Mario/Excitebike",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ファミコンメドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "flabo",
+ "songName": {
+ "jpText": "フューチャー・ラボ",
+ "jpFont": 0,
+ "enText": "Future Lab",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "フューチャー・ラボ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fltlnd",
+ "songName": {
+ "jpText": "KUSANAGI",
+ "jpFont": 0,
+ "enText": "KUSANAGI",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "aran",
+ "jpFont": 0,
+ "enText": "aran",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "flyagn",
+ "songName": {
+ "jpText": "Fly again!",
+ "jpFont": 0,
+ "enText": "Fly again!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat.谷本貴義",
+ "jpFont": 0,
+ "enText": "feat. Takayoshi Tanimoto",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "flyawy",
+ "songName": {
+ "jpText": "Fly away",
+ "jpFont": 0,
+ "enText": "Fly away",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fmonst",
+ "songName": {
+ "jpText": "ファッションモンスター",
+ "jpFont": 0,
+ "enText": "Fashion Monster",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "きゃりーぱみゅぱみゅ",
+ "jpFont": 0,
+ "enText": "Kyary Pamyu Pamyu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ファッションモンスター",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "foofoo",
+ "songName": {
+ "jpText": "FooFooカセット",
+ "jpFont": 0,
+ "enText": "FooFoo Casette",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "はるなば feat.SaChi(harineko)",
+ "jpFont": 0,
+ "enText": "Harunaba feat.SaChi(harineko)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "FooFooカセット",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "freewy",
+ "songName": {
+ "jpText": "Freeway3234",
+ "jpFont": 0,
+ "enText": "Freeway3234",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": " ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fujin",
+ "songName": {
+ "jpText": "FUJIN Rumble",
+ "jpFont": 0,
+ "enText": "FUJIN Rumble",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "COSIO(ZUNTATA)「グルーヴコースター」より",
+ "jpFont": 0,
+ "enText": "COSIO(ZUNTATA)From \" Groove Coaster \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fun3",
+ "songName": {
+ "jpText": "Fun!Fun!Fun! ~夢∞~",
+ "jpFont": 0,
+ "enText": "Fun!Fun!Fun! ~YUME∞~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ビッ友×戦士 キラメキパワーズ!」より",
+ "jpFont": 0,
+ "enText": "From \" Bittomo × Heroine Kirameki Powers! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Fun!Fun!Fun! ~夢∞~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "funk",
+ "songName": {
+ "jpText": "サタデー太鼓フィーバー",
+ "jpFont": 0,
+ "enText": "Saturday Taiko Fever",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "サタデー太鼓フィーバー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "furyu",
+ "songName": {
+ "jpText": "冬竜 ~Toryu~",
+ "jpFont": 0,
+ "enText": "Toryu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "冬竜 ~Toryu~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fzone",
+ "songName": {
+ "jpText": "ファンタジーゾーン OPA-OPA! - GMT remix -",
+ "jpFont": 0,
+ "enText": "Fantasy Zone OPA-OPA! -GMT remix-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Hiro(SEGA)「ファンタジーゾーン」",
+ "jpFont": 0,
+ "enText": "Hiro(SEGA)/Fantasy Zone",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ファンタジーゾーン OPA-OPA! - GMT remix -",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "g14ki",
+ "songName": {
+ "jpText": "G意識過剰",
+ "jpFont": 0,
+ "enText": "G Ishiki Kajou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "G意識過剰",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "garakt",
+ "songName": {
+ "jpText": "Garakuta Doll Play",
+ "jpFont": 0,
+ "enText": "Garakuta Doll Play",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "t+pazolite 「maimai」より",
+ "jpFont": 0,
+ "enText": "t+pazolite From \" maimai \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gbfkim",
+ "songName": {
+ "jpText": "キミとボクのミライ",
+ "jpFont": 0,
+ "enText": "Kimi to Boku no Mirai",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「グランブルーファンタジー」より",
+ "jpFont": 0,
+ "enText": "From \" Granblue Fantasy \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "キミとボクのミライ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gbfsor",
+ "songName": {
+ "jpText": "ソラのミチシルベ",
+ "jpFont": 0,
+ "enText": "Sora no Michishirube",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「グランブルーファンタジー」より",
+ "jpFont": 0,
+ "enText": "From \" Granblue Fantasy \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ソラのミチシルベ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gdiver",
+ "songName": {
+ "jpText": "Diver",
+ "jpFont": 0,
+ "enText": "Diver",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「トレジャーガウスト ガウストダイバー」より",
+ "jpFont": 0,
+ "enText": "From \" Treasure Gaust:Gaust Diver \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gdtmp",
+ "songName": {
+ "jpText": "ぐでたまぷちょへんざ",
+ "jpFont": 0,
+ "enText": "Gudetama Put Your Hands Up",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ぐでたまぷちょへんざ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gdtmt",
+ "songName": {
+ "jpText": "ぐでたまテーマソング",
+ "jpFont": 0,
+ "enText": "Gudetama Theme Song",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ぐでたまテーマソング",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gegeg2",
+ "songName": {
+ "jpText": "ゲゲゲの鬼太郎",
+ "jpFont": 0,
+ "enText": "Gegege no Kitaro",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "TVアニメ 第6期 オープニング主題歌",
+ "jpFont": 0,
+ "enText": "TV Anime 6th Season Opening Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ゲゲゲの鬼太郎",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gekikk",
+ "songName": {
+ "jpText": "HARDCOREノ心得",
+ "jpFont": 0,
+ "enText": "HARDCORE no Kokoroe",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "DJ Myosuke",
+ "jpFont": 0,
+ "enText": "DJ Myosuke",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "HARDCOREノ心得",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "genpe",
+ "songName": {
+ "jpText": "KAGEKIYO",
+ "jpFont": 0,
+ "enText": "KAGEKIYO",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "源平討魔伝メドレー",
+ "jpFont": 0,
+ "enText": "\" The Genji and the Heike Clans \" Medley",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "genpe2",
+ "songName": {
+ "jpText": "SHOGYO MUJO",
+ "jpFont": 0,
+ "enText": "SHOGYO MUJO",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "源平討魔伝リミックス COSIO",
+ "jpFont": 0,
+ "enText": "\" The Genji and the Heike Clans \" Remix / COSIO",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gerapo",
+ "songName": {
+ "jpText": "ゲラゲラポーのうた",
+ "jpFont": 0,
+ "enText": "Geragerapo no Uta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「妖怪ウォッチ」より",
+ "jpFont": 0,
+ "enText": "From \" Yo-kai Watch \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ゲラゲラポーのうた",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gerber",
+ "songName": {
+ "jpText": "GERBERA",
+ "jpFont": 0,
+ "enText": "GERBERA",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "BEMANI Sound Team \"TAG\" 「SOUND VOLTEX」より",
+ "jpFont": 0,
+ "enText": "BEMANI Sound Team \"TAG\" From \" SOUND VOLTEX \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "germin",
+ "songName": {
+ "jpText": "GERMINATION",
+ "jpFont": 0,
+ "enText": "GERMINATION",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "geswat",
+ "songName": {
+ "jpText": "私以外私じゃないの",
+ "jpFont": 0,
+ "enText": "Watashi Igai Watashi Ja Nai No",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "私以外私じゃないの",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gfish",
+ "songName": {
+ "jpText": "Goldfish City",
+ "jpFont": 0,
+ "enText": "Goldfish City",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "はるなば",
+ "jpFont": 0,
+ "enText": "Harunaba",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ghnpan",
+ "songName": {
+ "jpText": "パン vs ごはん! 大決戦!",
+ "jpFont": 0,
+ "enText": "Pan vs Gohan! Dai-kessen!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "コバヤシユウヤ(IOSYS) feat.miko & 山本椛",
+ "jpFont": 0,
+ "enText": "Yuuya Kobayashi (IOSYS) feat. miko & Momiji Yamamoto",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "パン vs ごはん! 大決戦!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "glokey",
+ "songName": {
+ "jpText": "Gloria",
+ "jpFont": 0,
+ "enText": "Gloria",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "K.key",
+ "jpFont": 0,
+ "enText": "K.key",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "glyhow",
+ "songName": {
+ "jpText": "HOWEVER",
+ "jpFont": 0,
+ "enText": "HOWEVER",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "GLAY",
+ "jpFont": 0,
+ "enText": "GLAY",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "glyywk",
+ "songName": {
+ "jpText": "誘惑",
+ "jpFont": 0,
+ "enText": "Yuuwaku",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "GLAY",
+ "jpFont": 0,
+ "enText": "GLAY",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "誘惑",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "glyzmb",
+ "songName": {
+ "jpText": "シン・ゾンビ",
+ "jpFont": 0,
+ "enText": "Shin Zombie",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "GLAY×太鼓の達人タイアップソング",
+ "jpFont": 0,
+ "enText": "GLAY x Taiko no Tatsujin Tie-up Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "シン・ゾンビ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gnkcrt",
+ "songName": {
+ "jpText": "限界クリエイター応援歌",
+ "jpFont": 0,
+ "enText": "Genkai Creator Ouenka",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "限界クリエイター応援歌",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gntkag",
+ "songName": {
+ "jpText": "カゲロウ",
+ "jpFont": 0,
+ "enText": "Kagerou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「銀魂.」より",
+ "jpFont": 0,
+ "enText": "From \" Gintama \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "カゲロウ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "godkno",
+ "songName": {
+ "jpText": "God knows...",
+ "jpFont": 0,
+ "enText": "God knows...",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「涼宮ハルヒの憂鬱」より",
+ "jpFont": 0,
+ "enText": "From \" The Melancholy of Haruhi Suzumiya \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "godray",
+ "songName": {
+ "jpText": "God Ray",
+ "jpFont": 0,
+ "enText": "God Ray",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「シンクロニカ」より",
+ "jpFont": 0,
+ "enText": "From \" Synchronica \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "godsng",
+ "songName": {
+ "jpText": "ゴッドソング",
+ "jpFont": 0,
+ "enText": "Godsong",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "バンドじゃないもん!MAXX NAKAYOSHI",
+ "jpFont": 0,
+ "enText": "Band Ja Naimon! Maxx Nakayoshi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ゴッドソング",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "goget",
+ "songName": {
+ "jpText": "GO GET’EM!",
+ "jpFont": 0,
+ "enText": "GO GET’EM!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "寺島怜志",
+ "jpFont": 0,
+ "enText": "Satoshi Terashima",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gogo",
+ "songName": {
+ "jpText": "シャイニング65",
+ "jpFont": 0,
+ "enText": "Shining 65",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "シャイニング65",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gomkis",
+ "songName": {
+ "jpText": "ごめんなさいのKissing You",
+ "jpFont": 0,
+ "enText": "Gomen-nasai no Kissing You",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ごめんなさいのKissing You",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "goth",
+ "songName": {
+ "jpText": "DON’T CUT",
+ "jpFont": 0,
+ "enText": "DON’T CUT",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gotmor",
+ "songName": {
+ "jpText": "Got more raves?",
+ "jpFont": 0,
+ "enText": "Got more raves?",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "E.G.G.「グルーヴコースター」より",
+ "jpFont": 0,
+ "enText": "E.G.G.From \" Groove Coaster \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gstmsk",
+ "songName": {
+ "jpText": "ゴーストマスク",
+ "jpFont": 0,
+ "enText": "Ghost Mask",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "はるなば feat.結月ゆかり&石黒千尋",
+ "jpFont": 0,
+ "enText": "Harunaba feat.Yuzuki Yukari & Chihiro Ishiguro",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ゴーストマスク",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gumi22",
+ "songName": {
+ "jpText": "にんじんにん",
+ "jpFont": 0,
+ "enText": "Ninjin Nin",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "豊永ごんたP feat.GUMI",
+ "jpFont": 0,
+ "enText": "Toyonaga Gonta P feat.GUMI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "にんじんにん",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gumiam",
+ "songName": {
+ "jpText": "天ノ弱",
+ "jpFont": 0,
+ "enText": "Amanojaku",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "164 feat.GUMI",
+ "jpFont": 0,
+ "enText": "164 feat.GUMI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "天ノ弱",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gumico",
+ "songName": {
+ "jpText": "珈琲の味と",
+ "jpFont": 0,
+ "enText": "Coffee no Aji to",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "はるなば feat.GUMI",
+ "jpFont": 0,
+ "enText": "Harunaba feat.GUMI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "珈琲の味と",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gumidk",
+ "songName": {
+ "jpText": "ドキドキ恋の予感!?",
+ "jpFont": 0,
+ "enText": "Dokidoki Koi no Yokan!?",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Noriyuki feat.GUMI",
+ "jpFont": 0,
+ "enText": "Noriyuki feat.GUMI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドキドキ恋の予感!?",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gumidp",
+ "songName": {
+ "jpText": "拝啓ドッペルゲンガー",
+ "jpFont": 0,
+ "enText": "Haikei Doppelganger",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "kemu feat. GUMI",
+ "jpFont": 0,
+ "enText": "kemu feat.GUMI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "拝啓ドッペルゲンガー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gumids",
+ "songName": {
+ "jpText": "だれかの心臓になれたなら",
+ "jpFont": 0,
+ "enText": "I want to be your heart",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ユリイ・カノン feat.GUMI",
+ "jpFont": 0,
+ "enText": "Yurry Canon",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "だれかの心臓になれたなら",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gumijk",
+ "songName": {
+ "jpText": "重金属フューギティブ",
+ "jpFont": 0,
+ "enText": "Heavymetal Fugitive",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "リューイッティ feat.GUMI",
+ "jpFont": 0,
+ "enText": "Ryuwitty feat.GUMI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "重金属フューギティブ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gumizk",
+ "songName": {
+ "jpText": "残響",
+ "jpFont": 0,
+ "enText": "Zankyou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "164 feat.GUMI 「戦闘摂理解析システム#コンパス」より",
+ "jpFont": 0,
+ "enText": "164 feat.GUMI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "残響",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gunsln",
+ "songName": {
+ "jpText": "ガンスリンガーシンデレラ",
+ "jpFont": 0,
+ "enText": "Gunslinger Cinderella",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ガンスリンガーシンデレラ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "haiky2",
+ "songName": {
+ "jpText": "ヒカリアレ",
+ "jpFont": 0,
+ "enText": "Hikari Are",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ハイキュー!! 烏野高校 VS 白鳥沢学園高校」より",
+ "jpFont": 0,
+ "enText": "From \" Haikyuu!! Karasuno High School vs Shiratorizawa Academy \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ヒカリアレ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hanakp",
+ "songName": {
+ "jpText": "ス・マ・イ・ル",
+ "jpFont": 0,
+ "enText": "S-M-I-L-E",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「はなかっぱ」より",
+ "jpFont": 0,
+ "enText": "From \" Hana Kappa \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ス・マ・イ・ル",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hanzaw",
+ "songName": {
+ "jpText": "テーマ・オブ・半沢直樹 ~Main Title~",
+ "jpFont": 0,
+ "enText": "Theme of Hanzawa Naoki ~Main Title~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "TBS系日曜劇場「半沢直樹」より",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "テーマ・オブ・半沢直樹 ~Main Title~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "haruut",
+ "songName": {
+ "jpText": "ハルウタ",
+ "jpFont": 0,
+ "enText": "Haru Uta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「名探偵コナン 11人目のストライカー」より",
+ "jpFont": 0,
+ "enText": "From \" Detective Conan:The Eleventh Striker \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ハルウタ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "haryu",
+ "songName": {
+ "jpText": "春竜 ~Haryu~",
+ "jpFont": 0,
+ "enText": "Haryu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "春竜 ~Haryu~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hatara",
+ "songName": {
+ "jpText": "はたラク2000",
+ "jpFont": 0,
+ "enText": "Hataraku 2000",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "はたラク2000",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hayabu",
+ "songName": {
+ "jpText": "隼",
+ "jpFont": 0,
+ "enText": "Hayabusa",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "隼",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "helhal",
+ "songName": {
+ "jpText": "ハロー! ハロウィン",
+ "jpFont": 0,
+ "enText": "Hello! Halloween",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ハロー! ハロウィン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "heljok",
+ "songName": {
+ "jpText": "Hello, Mr.JOKER",
+ "jpFont": 0,
+ "enText": "Hello, Mr.JOKER",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "打打だいず",
+ "jpFont": 0,
+ "enText": "D-D-Dice",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hello2",
+ "songName": {
+ "jpText": "ハロー!どんちゃん",
+ "jpFont": 0,
+ "enText": "Hello! Don-Chan",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ハロー!どんちゃん",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hi4kko",
+ "songName": {
+ "jpText": "ひよっこファンタジー",
+ "jpFont": 0,
+ "enText": "Hiyokko Fantasy",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "つよみー",
+ "jpFont": 0,
+ "enText": "Tsuyomy",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ひよっこファンタジー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hide4s",
+ "songName": {
+ "jpText": "天下統一録",
+ "jpFont": 0,
+ "enText": "Tenka Touitsu Roku",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "黒沢ダイスケ × Masahiro \"Godspeed\" Aoki",
+ "jpFont": 0,
+ "enText": "Daisuke Kurosawa x Masahiro \" Godspeed \" Aoki",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "天下統一録",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "higgs",
+ "songName": {
+ "jpText": "少女の神の粒子",
+ "jpFont": 0,
+ "enText": "Shoujo no Kami no Ryuushi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "少女の神の粒子",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "himyak",
+ "songName": {
+ "jpText": "ひまわりの約束",
+ "jpFont": 0,
+ "enText": "Himawari no Yakusoku",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "映画「STAND BY ME ドラえもん」より",
+ "jpFont": 0,
+ "enText": "From \" Stand by Me Doraemon \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ひまわりの約束",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hiyam2",
+ "songName": {
+ "jpText": "月影SASURAI",
+ "jpFont": 0,
+ "enText": "Tsukikage SASURAI",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "月影SASURAI",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hkgmag",
+ "songName": {
+ "jpText": "ほうかご☆マジシャン",
+ "jpFont": 0,
+ "enText": "Houkago☆Magician",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "まりんべーす",
+ "jpFont": 0,
+ "enText": "Marine Base",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ほうかご☆マジシャン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "honnou",
+ "songName": {
+ "jpText": "本能寺の変",
+ "jpFont": 0,
+ "enText": "Honnouji no Hen",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "エグスプロージョン",
+ "jpFont": 0,
+ "enText": "Egu-Splosion",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "本能寺の変",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hoslin",
+ "songName": {
+ "jpText": "星屑とリニアと僕",
+ "jpFont": 0,
+ "enText": "Hoshikuzu to Linear to Boku",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat.結羽(プラムソニック)",
+ "jpFont": 0,
+ "enText": "feat. Yuu (pLumsonic!)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "星屑とリニアと僕",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hurtlb",
+ "songName": {
+ "jpText": "Hurtling Boys",
+ "jpFont": 0,
+ "enText": "Hurtling Boys",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "さだきち イシカダス",
+ "jpFont": 0,
+ "enText": "Sadakkey Ihcikadas",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hvride",
+ "songName": {
+ "jpText": "Heaven’s Rider",
+ "jpFont": 0,
+ "enText": "Heaven’s Rider",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "i7daut",
+ "songName": {
+ "jpText": "NO DOUBT",
+ "jpFont": 0,
+ "enText": "NO DOUBT",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドリッシュセブン」より",
+ "jpFont": 0,
+ "enText": "From \" IDOLiSH7 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "i7dscv",
+ "songName": {
+ "jpText": "DiSCOVER THE FUTURE",
+ "jpFont": 0,
+ "enText": "DiSCOVER THE FUTURE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "TVアニメ「アイドリッシュセブン Second BEAT!」より",
+ "jpFont": 0,
+ "enText": "From \" IDOLiSH7 Second BEAT! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "i7hvn",
+ "songName": {
+ "jpText": "Heavenly Visitor",
+ "jpFont": 0,
+ "enText": "Heavenly Visitor",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドリッシュセブン」より",
+ "jpFont": 0,
+ "enText": "From \" IDOLiSH7 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "i7natu",
+ "songName": {
+ "jpText": "NATSU☆しようぜ!",
+ "jpFont": 0,
+ "enText": "NATSU☆Shiyouze!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "IDOLiSH7 feat.TRIGGER 「アイドリッシュセブン」より",
+ "jpFont": 0,
+ "enText": "IDOLiSH7 feat. TRIGGER From \" IDOLiSH7 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "NATSU☆しようぜ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "i7wish",
+ "songName": {
+ "jpText": "WiSH VOYAGE",
+ "jpFont": 0,
+ "enText": "WiSH VOYAGE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドリッシュセブン」より",
+ "jpFont": 0,
+ "enText": "From \" IDOLiSH7 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ia6cho",
+ "songName": {
+ "jpText": "六兆年と一夜物語",
+ "jpFont": 0,
+ "enText": "A Tale of Six Trillion Years and a Night",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "kemu feat.IA",
+ "jpFont": 0,
+ "enText": "kemu feat.IA",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "六兆年と一夜物語",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "iaasny",
+ "songName": {
+ "jpText": "アスノヨゾラ哨戒班",
+ "jpFont": 0,
+ "enText": "Asuno Yozora Shokaihan",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Orangestar feat.IA",
+ "jpFont": 0,
+ "enText": "Orangestar feat.IA",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アスノヨゾラ哨戒班",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "iagera",
+ "songName": {
+ "jpText": "ゲラゲラと笑うな",
+ "jpFont": 0,
+ "enText": "Geragera to Warauna",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "石風呂 feat.IA",
+ "jpFont": 0,
+ "enText": "Ishifuro feat.IA",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ゲラゲラと笑うな",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "idol",
+ "songName": {
+ "jpText": "エリンギのエクボ",
+ "jpFont": 0,
+ "enText": "Eringi no Ekubo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "太鼓の達人オリジナル曲",
+ "jpFont": 0,
+ "enText": "Taiko no Tatsujin Original Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "エリンギのエクボ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "idol2",
+ "songName": {
+ "jpText": "スクロール・ミカ",
+ "jpFont": 0,
+ "enText": "Scroll Mika",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "スクロール・ミカ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ignis",
+ "songName": {
+ "jpText": "Ignis Danse",
+ "jpFont": 0,
+ "enText": "Ignis Danse",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Yuji Masubuchi「太鼓の達人」より",
+ "jpFont": 0,
+ "enText": "Yuji Masubuchi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ikaika",
+ "songName": {
+ "jpText": "行かないでイカロス",
+ "jpFont": 0,
+ "enText": "Ikanai de Ikaros",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "AJURIKA",
+ "jpFont": 0,
+ "enText": "AJURIKA",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "行かないでイカロス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ikazu7",
+ "songName": {
+ "jpText": "怒槌",
+ "jpFont": 0,
+ "enText": "Ikazuchi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "光吉猛修 「CHUNITHM」より",
+ "jpFont": 0,
+ "enText": "Takenobu Mitsuyoshi From \" CHUNITHM \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "怒槌",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ikenai",
+ "songName": {
+ "jpText": "イケナイ太陽",
+ "jpFont": 0,
+ "enText": "Ikenai Taiyou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "イケナイ太陽",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ikshim",
+ "songName": {
+ "jpText": "夢色コースター",
+ "jpFont": 0,
+ "enText": "Yumeiro Coaster",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "夢色コースター",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "im4dst",
+ "songName": {
+ "jpText": "ヒカリのdestination",
+ "jpFont": 0,
+ "enText": "Hikari no destination",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター シャイニーカラーズ」より",
+ "jpFont": 0,
+ "enText": "From \" THE iDOLM@STER Shiny Colors \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ヒカリのdestination",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "im4spr",
+ "songName": {
+ "jpText": "Spread the Wings!!",
+ "jpFont": 0,
+ "enText": "Spread the Wings!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター シャイニーカラーズ」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER Shiny Colors \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imas2t",
+ "songName": {
+ "jpText": "The world is all one !!",
+ "jpFont": 0,
+ "enText": "The world is all one !!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imasop",
+ "songName": {
+ "jpText": "READY!!",
+ "jpFont": 0,
+ "enText": "READY!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imc2bm",
+ "songName": {
+ "jpText": "華蕾夢ミル狂詩曲~魂ノ導~",
+ "jpFont": 0,
+ "enText": "Tsubomi Yumemiru Rapsodia ~Alma no Michibiki~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター シンデレラガールズ」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER Cinderella Girls \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "華蕾夢ミル狂詩曲~魂ノ導~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imc32b",
+ "songName": {
+ "jpText": "ミツボシ☆☆★",
+ "jpFont": 0,
+ "enText": "Mitsuboshi☆☆★",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター シンデレラガールズ」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER Cinderella Girls \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ミツボシ☆☆★",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imc5in",
+ "songName": {
+ "jpText": "GOIN'!!!",
+ "jpFont": 0,
+ "enText": "GOIN'!!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター シンデレラガールズ」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER Cinderella Girls \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imcagd",
+ "songName": {
+ "jpText": "エンジェル ドリーム",
+ "jpFont": 0,
+ "enText": "Angel Dream",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター シンデレラガールズ」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER Cinderella Girls \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "エンジェル ドリーム",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imcanz",
+ "songName": {
+ "jpText": "あんずのうた",
+ "jpFont": 0,
+ "enText": "Anzu no Uta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター シンデレラガールズ」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER CINDERELLA GIRLS \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "あんずのうた",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imclip",
+ "songName": {
+ "jpText": "Tulip",
+ "jpFont": 0,
+ "enText": "Tulip",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター シンデレラガールズ」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER Cinderella Girls \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imcnev",
+ "songName": {
+ "jpText": "Never say never",
+ "jpFont": 0,
+ "enText": "Never say never",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター シンデレラガールズ」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER Cinderella Girls \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imconc",
+ "songName": {
+ "jpText": "お願い!シンデレラ",
+ "jpFont": 0,
+ "enText": "Onegai! Cinderella",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター シンデレラガールズ」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER Cinderella Girls \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "お願い!シンデレラ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imcshn",
+ "songName": {
+ "jpText": "Shine!!",
+ "jpFont": 0,
+ "enText": "Shine!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター シンデレラガールズ」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER Cinderella Girls \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imcsml",
+ "songName": {
+ "jpText": "S(mile)ING!",
+ "jpFont": 0,
+ "enText": "S(mile)ING!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター シンデレラガールズ」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER Cinderella Girls \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imcstr",
+ "songName": {
+ "jpText": "Star!!",
+ "jpFont": 0,
+ "enText": "Star!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター シンデレラガールズ」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER Cinderella Girls \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imctok",
+ "songName": {
+ "jpText": "TOKIMEKIエスカレート",
+ "jpFont": 0,
+ "enText": "TOKIMEKI Escalate",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター シンデレラガールズ」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER Cinderella Girls \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "TOKIMEKIエスカレート",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imedrv",
+ "songName": {
+ "jpText": "DRIVE A LIVE",
+ "jpFont": 0,
+ "enText": "DRIVE A LIVE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター SideM」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER SideM \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imeglo",
+ "songName": {
+ "jpText": "GLORIOUS RO@D",
+ "jpFont": 0,
+ "enText": "GLORIOUS RO@D",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター SideM」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER SideM \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imersn",
+ "songName": {
+ "jpText": "Reason!!",
+ "jpFont": 0,
+ "enText": "Reason!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター SideM」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER SideM \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imm39",
+ "songName": {
+ "jpText": "Thank You!",
+ "jpFont": 0,
+ "enText": "Thank You!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター ミリオンライブ!」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER Million Live! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "immbra",
+ "songName": {
+ "jpText": "Brand New Theater!",
+ "jpFont": 0,
+ "enText": "Brand New Theater!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター ミリオンライブ!」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER Million Live! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imrdiv",
+ "songName": {
+ "jpText": "Dive to Blue",
+ "jpFont": 0,
+ "enText": "Dive to Blue",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "玉屋2060% アイマリン(CV:内田彩) 「アイマリンプロジェクト」より",
+ "jpFont": 0,
+ "enText": "Tamaya 2060%/iMarine (CV:Aya Uchida) From \" iMarine Project \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imrmm",
+ "songName": {
+ "jpText": "Marine Mirage",
+ "jpFont": 0,
+ "enText": "Marine Mirage",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ANCHOR(ZiNG) アイマリン(CV:内田彩)、アイウリン(CV:三森すずこ)、アイワリン(CV:竹達彩奈) 「アイマリンプロジェクト」より",
+ "jpFont": 0,
+ "enText": "iMarine (CV:Aya Uchida), iUrine (CV:Mizumori Suzuko), iWarine (CV:Ayana Takeuchi)/ANCHOR (ZiNG) From \" iMarine Project \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ims15t",
+ "songName": {
+ "jpText": "なんどでも笑おう",
+ "jpFont": 0,
+ "enText": "Nando Demo Waraou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "THE IDOLM@STER FIVE STARS!!!!!",
+ "jpFont": 0,
+ "enText": "The Idolm@ster Five Stars!!!!!",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imshhb",
+ "songName": {
+ "jpText": "Honey Heartbeat ~10 Stars Mix~",
+ "jpFont": 0,
+ "enText": "Honey Heartbeat ~10 Stars Mix~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsims",
+ "songName": {
+ "jpText": "THE IDOLM@STER",
+ "jpFont": 0,
+ "enText": "THE IDOLM@STER",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsjbr",
+ "songName": {
+ "jpText": "自分REST@RT",
+ "jpFont": 0,
+ "enText": "Jibun REST@RT",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "自分REST@RT",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsmah",
+ "songName": {
+ "jpText": "魔法をかけて!",
+ "jpFont": 0,
+ "enText": "Mahou o Kakete!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "魔法をかけて!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsmjd",
+ "songName": {
+ "jpText": "マジで…!?",
+ "jpFont": 0,
+ "enText": "Maji de...!?",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "マジで…!?",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsmpr",
+ "songName": {
+ "jpText": "待ち受けプリンス",
+ "jpFont": 0,
+ "enText": "Machiuke Prince",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "待ち受けプリンス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsmt5",
+ "songName": {
+ "jpText": "アイ MUST GO!",
+ "jpFont": 0,
+ "enText": "Ai MUST GO!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アイ MUST GO!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsmtp",
+ "songName": {
+ "jpText": "M@STERPIECE",
+ "jpFont": 0,
+ "enText": "M@STERPIECE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsomn",
+ "songName": {
+ "jpText": "ONLY MY NOTE",
+ "jpFont": 0,
+ "enText": "ONLY MY NOTE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsshn",
+ "songName": {
+ "jpText": "shiny smile",
+ "jpFont": 0,
+ "enText": "shiny smile",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imymok",
+ "songName": {
+ "jpText": "I my moko",
+ "jpFont": 0,
+ "enText": "I my moko",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "桃井はるこ",
+ "jpFont": 0,
+ "enText": "Haruko Momoi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "indeni",
+ "songName": {
+ "jpText": "オールナイトdeインデナイ",
+ "jpFont": 0,
+ "enText": "All Night de Indenai",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "オールナイトdeインデナイ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "insp29",
+ "songName": {
+ "jpText": "人のお金で焼肉を食したい!",
+ "jpFont": 0,
+ "enText": "Hito no Okane de Yakiniku o Shokushitai!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "INSPIONスペシャルコラボ",
+ "jpFont": 0,
+ "enText": "INSPION Special Collab",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "人のお金で焼肉を食したい!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "inspio",
+ "songName": {
+ "jpText": "INSPION",
+ "jpFont": 0,
+ "enText": "INSPION",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "サウンド制作スタジオ「INSPION」社歌",
+ "jpFont": 0,
+ "enText": "Sound Production Studio \" INSPION \" Company Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "inu",
+ "songName": {
+ "jpText": "いぬのおまわりさん",
+ "jpFont": 0,
+ "enText": "Inu no Omawari-san",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "いぬのおまわりさん",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "inuhoe",
+ "songName": {
+ "jpText": "犬吠える",
+ "jpFont": 0,
+ "enText": "Inu Hoeru",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "犬吠える",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "invara",
+ "songName": {
+ "jpText": "女帝 ~インバラトゥーラ~",
+ "jpFont": 0,
+ "enText": "Jotei -Imbiratula-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "女帝 ~インバラトゥーラ~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "invinv",
+ "songName": {
+ "jpText": "インベーダーインベーダー",
+ "jpFont": 0,
+ "enText": "Invader Invader",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "きゃりーぱみゅぱみゅ",
+ "jpFont": 0,
+ "enText": "Kyary Pamyu Pamyu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "インベーダーインベーダー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "irpunk",
+ "songName": {
+ "jpText": "大空と太鼓の踊り",
+ "jpFont": 0,
+ "enText": "Oozora to Taiko no Odori",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "paraμ",
+ "jpFont": 0,
+ "enText": "paraμ",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "大空と太鼓の踊り",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "isan",
+ "songName": {
+ "jpText": "和有るど経りて維持・序",
+ "jpFont": 0,
+ "enText": "Wa Arudo Herite Iji - Jo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat.団地ノ宮弥子",
+ "jpFont": 0,
+ "enText": "feat. Yako From Danchinomiya",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "和有るど経りて維持",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "issokm",
+ "songName": {
+ "jpText": "いっそこのままで",
+ "jpFont": 0,
+ "enText": "Isso Kono Mama de",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat.相沢",
+ "jpFont": 0,
+ "enText": "feat. Aizawa",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "いっそこのままで",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "itadak",
+ "songName": {
+ "jpText": "頂",
+ "jpFont": 0,
+ "enText": "Itadaki",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "CHUBAY",
+ "jpFont": 0,
+ "enText": "CHUBAY",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "頂",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "iwantu",
+ "songName": {
+ "jpText": "哀 want U",
+ "jpFont": 0,
+ "enText": "Ai want U",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "かねこちはる",
+ "jpFont": 0,
+ "enText": "Chiharu Kaneko",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "哀 want U",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "izanam",
+ "songName": {
+ "jpText": "黄泉のイザナミ",
+ "jpFont": 0,
+ "enText": "Yomi no Izanami",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "黄泉のイザナミ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "j99",
+ "songName": {
+ "jpText": "ねがいごと☆ぱずる",
+ "jpFont": 0,
+ "enText": "Negaigoto☆Puzzle",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ねがいごと☆ぱずる",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "japari",
+ "songName": {
+ "jpText": "ようこそジャパリパークへ",
+ "jpFont": 0,
+ "enText": "Yokouso Japari Park e",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "どうぶつビスケッツ×PPP 「けものフレンズ」より",
+ "jpFont": 0,
+ "enText": "Doubutsu Biscuits×PPP From \" Kemono Friends \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ようこそジャパリパークへ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "jazmen",
+ "songName": {
+ "jpText": "メヌエット",
+ "jpFont": 0,
+ "enText": "Minuet",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "メヌエット",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "jaznoc",
+ "songName": {
+ "jpText": "夜想曲Op.9-2",
+ "jpFont": 0,
+ "enText": "Night Jazz Opera 9 No. 2",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "夜想曲Op.9-2",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ji9cho",
+ "songName": {
+ "jpText": "時空庁時空1課",
+ "jpFont": 0,
+ "enText": "Jikuuchou Jikuu 1-ka",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat. unmo",
+ "jpFont": 0,
+ "enText": "feat.unmo",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "時空庁時空1課",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ji9sou",
+ "songName": {
+ "jpText": "時空庁捜査2課",
+ "jpFont": 0,
+ "enText": "Jikuuchou Sousa 2-ka",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat. 沙知(ハリネコ)",
+ "jpFont": 0,
+ "enText": "feat. Sachi (Harineko)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "時空庁捜査2課",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "jouzai",
+ "songName": {
+ "jpText": "愛と浄罪の森",
+ "jpFont": 0,
+ "enText": "Ai to Jouzai no Mori",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "愛と浄罪の森",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "joyful",
+ "songName": {
+ "jpText": "じょいふる",
+ "jpFont": 0,
+ "enText": "Joyful",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "じょいふる",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "jubflw",
+ "songName": {
+ "jpText": "FLOWER",
+ "jpFont": 0,
+ "enText": "FLOWER",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "DJ YOSHITAKA 「jubeat」より",
+ "jpFont": 0,
+ "enText": "DJ YOSHITAKA From \" jubeat \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "justaw",
+ "songName": {
+ "jpText": "Just Awake",
+ "jpFont": 0,
+ "enText": "Just Awake",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Fear, and Loathing in Las Vegas 「HUNTER×HUNTER」より",
+ "jpFont": 0,
+ "enText": "Fear, and Loathing in Las Vegas From \" Hunter x Hunter \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ka2kam",
+ "songName": {
+ "jpText": "サクリファイス",
+ "jpFont": 0,
+ "enText": "Sacrifice",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "まふまふ /TVアニメ「かつて神だった獣たちへ」より",
+ "jpFont": 0,
+ "enText": "Mafumafu / From \" To the Abandoned Sacred Beasts \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "サクリファイス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kagmtm",
+ "songName": {
+ "jpText": "輝きを求めて",
+ "jpFont": 0,
+ "enText": "Kagayaki wo Motomete",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Versus",
+ "jpFont": 0,
+ "enText": "Versus",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "輝きを求めて",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kagu27",
+ "songName": {
+ "jpText": "カグツチ",
+ "jpFont": 0,
+ "enText": "Kagutsuchi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Massive New Krew",
+ "jpFont": 0,
+ "enText": "Massive New Krew",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "カグツチ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kahata",
+ "songName": {
+ "jpText": "彼は誰時の誘惑",
+ "jpFont": 0,
+ "enText": "Kawatare-doki no Yuuwaku",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "t+pazolite",
+ "jpFont": 0,
+ "enText": "t+pazolite",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "彼は誰時の誘惑",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kaidan",
+ "songName": {
+ "jpText": "χ談",
+ "jpFont": 0,
+ "enText": "X-DAN",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "かねこちはる",
+ "jpFont": 0,
+ "enText": "Chiharu Kaneko",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "χ談",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kaiden",
+ "songName": {
+ "jpText": "太鼓乱舞 皆伝",
+ "jpFont": 0,
+ "enText": "Taiko Ranbu Kaiden",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "太鼓乱舞 皆伝",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kaiki",
+ "songName": {
+ "jpText": "トータル・エクリプス 2035",
+ "jpFont": 0,
+ "enText": "Total Eclipse 2035",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "~少女の時空皆既日食~",
+ "jpFont": 0,
+ "enText": "~Shoujo no Jikuu Kaiki-nikushoku~",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "トータル・エクリプス 2035",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kalice",
+ "songName": {
+ "jpText": "鏡の国のアリス",
+ "jpFont": 0,
+ "enText": "Kagami no Kuni no Alice",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "伊東歌詞太郎",
+ "jpFont": 0,
+ "enText": "Kashitarou Itou",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "鏡の国のアリス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kamizm",
+ "songName": {
+ "jpText": "カ!カ!カ!カミズモード!",
+ "jpFont": 0,
+ "enText": "Ka! Ka! Ka! Kamizmode!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「最響カミズモード!」より",
+ "jpFont": 0,
+ "enText": "From \" Saikyou Kamizmode! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "カ!カ!カ!カミズモード!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "karyu",
+ "songName": {
+ "jpText": "夏竜 ~Karyu~",
+ "jpFont": 0,
+ "enText": "Karyu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "夏竜 ~Karyu~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kecha",
+ "songName": {
+ "jpText": "ケチャドン2000",
+ "jpFont": 0,
+ "enText": "Kechadon 2000",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ケチャドン2000",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kgn1zu",
+ "songName": {
+ "jpText": "一途",
+ "jpFont": 0,
+ "enText": "Ichizu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "King Gnu",
+ "jpFont": 0,
+ "enText": "King Gnu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "一途",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kgnhak",
+ "songName": {
+ "jpText": "白日",
+ "jpFont": 0,
+ "enText": "Hakujitsu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "白日",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kienbj",
+ "songName": {
+ "jpText": "気焔万丈神楽",
+ "jpFont": 0,
+ "enText": "Kien Banjou Kagura",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ぺのれり",
+ "jpFont": 0,
+ "enText": "Penoreri",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "気焔万丈神楽",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kim69",
+ "songName": {
+ "jpText": "君はロックを聴かない",
+ "jpFont": 0,
+ "enText": "Kimiwa Rock wo Kikanai",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "君はロックを聴かない",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kimetu",
+ "songName": {
+ "jpText": "紅蓮華",
+ "jpFont": 0,
+ "enText": "Gurenge",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「鬼滅の刃」より",
+ "jpFont": 0,
+ "enText": "From \" Demon Slayer: Kimetsu no Yaiba \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "紅蓮華",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kimpla",
+ "songName": {
+ "jpText": "君のプラネット",
+ "jpFont": 0,
+ "enText": "Kimi no Planet",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "君のプラネット",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kirame",
+ "songName": {
+ "jpText": "キラメキラリ",
+ "jpFont": 0,
+ "enText": "Kirame Kirari",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "キラメキラリ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kiramj",
+ "songName": {
+ "jpText": "魔進戦隊キラメイジャー",
+ "jpFont": 0,
+ "enText": "Mashin Sentai Kiramager",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "魔進戦隊キラメイジャー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kirby",
+ "songName": {
+ "jpText": "星のカービィメドレー",
+ "jpFont": 0,
+ "enText": "Kirby Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「星のカービィ Wii」より",
+ "jpFont": 0,
+ "enText": "From \" Kirby's Return to Dream Land \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "星のカービィメドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kirby2",
+ "songName": {
+ "jpText": "メタナイトの逆襲メドレー",
+ "jpFont": 0,
+ "enText": "Revenge of Meta Knight Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「星のカービィ ウルトラスーパーデラックス」より",
+ "jpFont": 0,
+ "enText": "From \" Kirby Super Star Ultra \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "メタナイトの逆襲メドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kiseki",
+ "songName": {
+ "jpText": "キセキ",
+ "jpFont": 0,
+ "enText": "Kiseki",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ドラマ「ROOKIES」より",
+ "jpFont": 0,
+ "enText": "From \" ROOKIES \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "キセキ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kkairo",
+ "songName": {
+ "jpText": "絡繰廻廊",
+ "jpFont": 0,
+ "enText": "Karakuri Kairou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "はるなば",
+ "jpFont": 0,
+ "enText": "Harunaba",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "絡繰廻廊",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kkrobo",
+ "songName": {
+ "jpText": "ココロボ",
+ "jpFont": 0,
+ "enText": "Kokorobo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Ujico*",
+ "jpFont": 0,
+ "enText": "Ujico*",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ココロボ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kl2gtl",
+ "songName": {
+ "jpText": "GOING TO LUNATEA",
+ "jpFont": 0,
+ "enText": "Going To Lunatea",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「風のクロノア2」より",
+ "jpFont": 0,
+ "enText": "From \" Klonoa 2 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "klwind",
+ "songName": {
+ "jpText": "The Windmill Song",
+ "jpFont": 0,
+ "enText": "The Windmill Song",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「風のクロノア」より",
+ "jpFont": 0,
+ "enText": "From \" Klonoa \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ko9ryu",
+ "songName": {
+ "jpText": "刻竜 ~Kokuryu~",
+ "jpFont": 0,
+ "enText": "Kokuryu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "あず♪",
+ "jpFont": 0,
+ "enText": "Azu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "刻竜 ~Kokuryu~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "koi907",
+ "songName": {
+ "jpText": "濃紅",
+ "jpFont": 0,
+ "enText": "Koi-kurenai",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "黒沢ダイスケ × 小寺可南子",
+ "jpFont": 0,
+ "enText": "Daisuke Kurosawa × Kanako Kotera",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "濃紅",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "koiama",
+ "songName": {
+ "jpText": "恋音と雨空",
+ "jpFont": 0,
+ "enText": "Koioto to Amazora",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "恋音と雨空",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kokiku",
+ "songName": {
+ "jpText": "こ・き・く・くる・くる・くれ・こ!",
+ "jpFont": 0,
+ "enText": "Ko Ki Ku Kuru Kuru Kure Ko!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "諸星なな・加藤はるか",
+ "jpFont": 0,
+ "enText": "Moroboshi Nana / Kato Haruka",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "こ・き・く・くる・くる・くれ・こ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "konan0",
+ "songName": {
+ "jpText": "零 -ZERO-",
+ "jpFont": 0,
+ "enText": "ZERO",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "福山雅治 「名探偵コナン ゼロの執行人」より",
+ "jpFont": 0,
+ "enText": "Masaharu Fukuyama From \" Detective Conan:Zero the Enforcer \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "零 -ZERO-",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "konanc",
+ "songName": {
+ "jpText": "カウントダウン",
+ "jpFont": 0,
+ "enText": "Count Down",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「名探偵コナン」より",
+ "jpFont": 0,
+ "enText": "From \" Detective Conan \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "カウントダウン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "konant",
+ "songName": {
+ "jpText": "名探偵コナン メイン・テーマ",
+ "jpFont": 0,
+ "enText": "Detective Conan, Main Theme",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "アニメ映画「名探偵コナン」",
+ "jpFont": 0,
+ "enText": "From \" Detective Conan \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "名探偵コナン メイン・テーマ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kooryu",
+ "songName": {
+ "jpText": "氷竜 ~Kooryu~",
+ "jpFont": 0,
+ "enText": "Kooryu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "あず♪",
+ "jpFont": 0,
+ "enText": "Azu♪",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "氷竜 ~Kooryu~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kr01",
+ "songName": {
+ "jpText": "REAL×EYEZ",
+ "jpFont": 0,
+ "enText": "REAL×EYEZ",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「仮面ライダーゼロワン」より",
+ "jpFont": 0,
+ "enText": "From \" Kamen Rider Zero-One \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "krbld",
+ "songName": {
+ "jpText": "Be The One",
+ "jpFont": 0,
+ "enText": "Be The One",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「仮面ライダービルド」より",
+ "jpFont": 0,
+ "enText": "From \" Kamen Rider Build \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "krdoto",
+ "songName": {
+ "jpText": "狂瀾怒濤",
+ "jpFont": 0,
+ "enText": "Kyouran Dotou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "xi",
+ "jpFont": 0,
+ "enText": "xi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "狂瀾怒濤",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "krexd",
+ "songName": {
+ "jpText": "EXCITE",
+ "jpFont": 0,
+ "enText": "EXCITE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「仮面ライダーエグゼイド」より",
+ "jpFont": 0,
+ "enText": "From \" Kamen Rider Ex-Aid \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "krinne",
+ "songName": {
+ "jpText": "Shiny",
+ "jpFont": 0,
+ "enText": "Shiny",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「境界のRINNE」より",
+ "jpFont": 0,
+ "enText": "From \" Kyoukai no RINN \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "krrev",
+ "songName": {
+ "jpText": "liveDevil",
+ "jpFont": 0,
+ "enText": "liveDevil",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「仮面ライダーリバイス」より",
+ "jpFont": 0,
+ "enText": "From \" Kamen Rider Revice \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "krzio",
+ "songName": {
+ "jpText": "Over “Quartzer”",
+ "jpFont": 0,
+ "enText": "Over “Quartzer”",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「仮面ライダージオウ」より",
+ "jpFont": 0,
+ "enText": "From \" Kamen Rider Zi-O \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kteien",
+ "songName": {
+ "jpText": "懐中庭園を持つ少女",
+ "jpFont": 0,
+ "enText": "Kaichuteien wo Motsu Shoujo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "はるなば feat.石黒千尋",
+ "jpFont": 0,
+ "enText": "Harunaba feat. Chihiro Ishiguro",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "懐中庭園を持つ少女",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kuma",
+ "songName": {
+ "jpText": "もりのくまさん",
+ "jpFont": 0,
+ "enText": "Mori no Kuma-san",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "もりのくまさん",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kumams",
+ "songName": {
+ "jpText": "くまもとサプライズ!",
+ "jpFont": 0,
+ "enText": "Kumamoto Surprise!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "くまモン体操",
+ "jpFont": 0,
+ "enText": "Kumamon Gymnastics",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "くまもとサプライズ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kumatm",
+ "songName": {
+ "jpText": "おしえて くまとも",
+ "jpFont": 0,
+ "enText": "Oshiete Kumatomo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「クマ・トモ」テーマ曲",
+ "jpFont": 0,
+ "enText": "\" Kumatomo \" Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "おしえて くまとも",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kuon",
+ "songName": {
+ "jpText": "久遠の夜",
+ "jpFont": 0,
+ "enText": "Kuon no Yoru",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "久遠の夜",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kuraim",
+ "songName": {
+ "jpText": "食らいむ!まうんとぱふぇ",
+ "jpFont": 0,
+ "enText": "Climb! Mt.Parfait",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "unatra",
+ "jpFont": 0,
+ "enText": "unatra",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "食らいむ!まうんとぱふぇ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kuzure",
+ "songName": {
+ "jpText": "鳳凰天舞無限崩れ",
+ "jpFont": 0,
+ "enText": "Ho-oh Tenbu Mugen Kuzure",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "鳳凰天舞無限崩れ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kwondo",
+ "songName": {
+ "jpText": "河内音頭 ~ふしづくし~",
+ "jpFont": 0,
+ "enText": "Kawachi Ondo ~Fushidukushi~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "河内音頭 ~ふしづくし~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kykamb",
+ "songName": {
+ "jpText": "アンビバレント",
+ "jpFont": 0,
+ "enText": "Ambivalent",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アンビバレント",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kykgrs",
+ "songName": {
+ "jpText": "ガラスを割れ!",
+ "jpFont": 0,
+ "enText": "Garasu Wo Ware",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ガラスを割れ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kyksmj",
+ "songName": {
+ "jpText": "サイレントマジョリティー",
+ "jpFont": 0,
+ "enText": "Silent Majority",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "サイレントマジョリティー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kyo9kn",
+ "songName": {
+ "jpText": "極圏",
+ "jpFont": 0,
+ "enText": "Kyokuken",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "cosMo VS dj TAKA「SOUND VOLTEX」より",
+ "jpFont": 0,
+ "enText": "cosMo VS dj TAKA From \" Sound Voltex \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "極圏",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kyunva",
+ "songName": {
+ "jpText": "きゅんっ!ヴァンパイアガール",
+ "jpFont": 0,
+ "enText": "Kyun! Vampire Girl",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "きゅんっ!ヴァンパイアガール",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kznhel",
+ "songName": {
+ "jpText": "Hello, Morning",
+ "jpFont": 0,
+ "enText": "Hello, Morning",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Kizuna AI",
+ "jpFont": 0,
+ "enText": "Kizuna AI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kzniii",
+ "songName": {
+ "jpText": "AIAIAI (feat. 中田ヤスタカ)",
+ "jpFont": 0,
+ "enText": "AIAIAI (feat.Yasutaka Nakata)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Kizuna AI",
+ "jpFont": 0,
+ "enText": "Kizuna AI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "AIAIAI (feat.中田ヤスタカ)",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lactea",
+ "songName": {
+ "jpText": "via lactea",
+ "jpFont": 0,
+ "enText": "via lactea",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat.薛南",
+ "jpFont": 0,
+ "enText": "feat. Setsunann",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lassen",
+ "songName": {
+ "jpText": "ラッスンゴレライ",
+ "jpFont": 0,
+ "enText": "Lassen Gorelai",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "8.6秒バズーカー",
+ "jpFont": 0,
+ "enText": "8.6-second Bazooka",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ラッスンゴレライ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "last2k",
+ "songName": {
+ "jpText": "万戈イム-一ノ十",
+ "jpFont": 0,
+ "enText": "Joubutsu 2000",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "万戈イム-一ノ十",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lgmsek",
+ "songName": {
+ "jpText": "世界はあなたに笑いかけている",
+ "jpFont": 0,
+ "enText": "Sekai Wa Anata Ni Waraikakete Iru",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "世界はあなたに笑いかけている",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "linda",
+ "songName": {
+ "jpText": "リンダリンダ",
+ "jpFont": 0,
+ "enText": "Linda Linda",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "リンダリンダ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "llang",
+ "songName": {
+ "jpText": "Angelic Angel",
+ "jpFont": 0,
+ "enText": "Angelic Angel",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "μ's 映画「ラブライブ!The School Idol Movie」より",
+ "jpFont": 0,
+ "enText": "μ's From \" Love Live! The School Idol Movie \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "llbkrh",
+ "songName": {
+ "jpText": "僕らは今のなかで",
+ "jpFont": 0,
+ "enText": "Bokura wa Ima no Naka de",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "μ's TVアニメ「ラブライブ!」より",
+ "jpFont": 0,
+ "enText": "μ's From \" Love Live! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "僕らは今のなかで",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "llsore",
+ "songName": {
+ "jpText": "それは僕たちの奇跡",
+ "jpFont": 0,
+ "enText": "Sore wa Bokutachi no Kiseki",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "μ's TVアニメ「ラブライブ!」より",
+ "jpFont": 0,
+ "enText": "μ's From \" Love Live! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "それは僕たちの奇跡",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lm7708",
+ "songName": {
+ "jpText": "λ7708",
+ "jpFont": 0,
+ "enText": "λ7708",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Taiji",
+ "jpFont": 0,
+ "enText": "Taiji",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lost1g",
+ "songName": {
+ "jpText": "ロストワンの号哭",
+ "jpFont": 0,
+ "enText": "The Lost One's Weeping",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Neru feat.鏡音リン",
+ "jpFont": 0,
+ "enText": "Neru feat.Kagamine Rin",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ロストワンの号哭",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lov193",
+ "songName": {
+ "jpText": "LOVE戦!!",
+ "jpFont": 0,
+ "enText": "LOVE Ikusa!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "LOVE戦!!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lovfan",
+ "songName": {
+ "jpText": "恋幻想(Love Fantasy)",
+ "jpFont": 0,
+ "enText": "Love illusion (Love Fantasy)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "HONOKA",
+ "jpFont": 0,
+ "enText": "HONOKA",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "恋幻想(Love Fantasy)",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lovspc",
+ "songName": {
+ "jpText": "ラヴ♡スパイス♡ライクユー!!!",
+ "jpFont": 0,
+ "enText": "Love♡Spice♡Like You!!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "DJ Genki feat.ななひら,yukacco,藍月なくる",
+ "jpFont": 0,
+ "enText": "DJ Genki feat. Nanahira, yukacco, Nakuru Aitsuki",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ラヴ♡スパイス♡ライクユー!!!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lovtom",
+ "songName": {
+ "jpText": "ラブソングはとまらないよ",
+ "jpFont": 0,
+ "enText": "Love Song wa Tomaranai Yo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「カルピスウォーター」CMソング",
+ "jpFont": 0,
+ "enText": "\" Calpis Water \" CM Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ラブソングはとまらないよ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lovwhi",
+ "songName": {
+ "jpText": "愛×愛ホイッスル(カレーメシ公式曲)",
+ "jpFont": 0,
+ "enText": "Love×Love Whistle (Karemeshi Official Song)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "PolyphonicBranch feat.初音ミク・鏡音リン",
+ "jpFont": 0,
+ "enText": "PolyphonicBranch feat.Hatsune Miku・Kagamine Rin",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "愛×愛ホイッスル(カレーメシ公式曲)",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lsbspd",
+ "songName": {
+ "jpText": "きたさいたま200",
+ "jpFont": 0,
+ "enText": "Kita Saitama 200",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "きたさいたま200",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lukfev",
+ "songName": {
+ "jpText": "ルカルカ★ナイトフィーバー",
+ "jpFont": 0,
+ "enText": "Luka Luka★Night Fever",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "samfree feat.巡音ルカ",
+ "jpFont": 0,
+ "enText": "samfree feat.Megurine Luka",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ルカルカ★ナイトフィーバー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lupatr",
+ "songName": {
+ "jpText": "ルパンレンジャーVSパトレンジャー",
+ "jpFont": 0,
+ "enText": "Lupinranger VS Patranger",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ルパンレンジャーVSパトレンジャー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ma2rid",
+ "songName": {
+ "jpText": "MATSURI D/A",
+ "jpFont": 0,
+ "enText": "MATSURI D/A",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "machig",
+ "songName": {
+ "jpText": "まちがいさがし",
+ "jpFont": 0,
+ "enText": "Machigai Sagashi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "菅田将暉",
+ "jpFont": 0,
+ "enText": "Masaki Suda",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "まちがいさがし",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "magdrm",
+ "songName": {
+ "jpText": "The Magician’s Dream",
+ "jpFont": 0,
+ "enText": "The Magician’s Dream",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mahojn",
+ "songName": {
+ "jpText": "魔方陣 -サモン・デルタ-",
+ "jpFont": 0,
+ "enText": "Mahoujin -Summon Delta-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "魔方陣 -サモン・デルタ-",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "manpu2",
+ "songName": {
+ "jpText": "あなたとトゥラッタッタ♪",
+ "jpFont": 0,
+ "enText": "Anata to Tu-lat-tat-ta♪",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "DREAMS COME TRUE / 「まんぷく」より",
+ "jpFont": 0,
+ "enText": "DREAMS COME TRUE / From \" Manpuku \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "あなたとトゥラッタッタ♪",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mapp8b",
+ "songName": {
+ "jpText": "ピコピコ マッピー",
+ "jpFont": 0,
+ "enText": "Picopico Mappy",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "マッピーメドレー × サカモト教授",
+ "jpFont": 0,
+ "enText": "Mappy Medley × Professor Sakamoto",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ピコピコ マッピー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "march",
+ "songName": {
+ "jpText": "太鼓のマーチ",
+ "jpFont": 0,
+ "enText": "The Taiko March",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "リッジレーサー",
+ "jpFont": 0,
+ "enText": "Ridge Racer",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "太鼓のマーチ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mario2",
+ "songName": {
+ "jpText": "スーパーマリオブラザーズ",
+ "jpFont": 0,
+ "enText": "Super Mario Bros.",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "スーパーマリオブラザーズ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mario4",
+ "songName": {
+ "jpText": "Jump Up, Super Star! Short Version",
+ "jpFont": 0,
+ "enText": "Jump Up, Super Star! Short Version",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「スーパーマリオ オデッセイ」より",
+ "jpFont": 0,
+ "enText": "From \" Super Mario Odyssey \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "maru9t",
+ "songName": {
+ "jpText": "まるくてはやくてすさまじいリズム",
+ "jpFont": 0,
+ "enText": "Marukute Hayakute Susamajii Rhythm",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "立秋 feat.ちょこ",
+ "jpFont": 0,
+ "enText": "Rish feat. Choko",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "まるくてはやくてすさまじいリズム",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "masakr",
+ "songName": {
+ "jpText": "マサカリブレイド",
+ "jpFont": 0,
+ "enText": "Masakari Blade",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "REDALiCE 「SOUND VOLTEX」より",
+ "jpFont": 0,
+ "enText": "REDALiCE From \" Sound Voltex \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "マサカリブレイド",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mblood",
+ "songName": {
+ "jpText": "恋はみずいろ",
+ "jpFont": 0,
+ "enText": "Koi wa Mizuiro",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「みずいろブラッド」より",
+ "jpFont": 0,
+ "enText": "From \" Mizuiro Blood \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "恋はみずいろ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mclinn",
+ "songName": {
+ "jpText": "黄ダルマ2000",
+ "jpFont": 0,
+ "enText": "Kidaruma 2000",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "黄ダルマ2000",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mdeth",
+ "songName": {
+ "jpText": "メカデス。",
+ "jpFont": 0,
+ "enText": "Mekadesu.",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "メカデス。",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "medjed",
+ "songName": {
+ "jpText": "秘ナルメジェドノ悲ナル憂鬱",
+ "jpFont": 0,
+ "enText": "Hinaru Medjed no Hinaru Yuu'utsu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "コバヤシユウヤ(IOSYS) feat.山本椛 (monotone)",
+ "jpFont": 0,
+ "enText": "Yuuya Kobayashi (IOSYS) feat. Momiji Yamamoto (monotone)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "秘ナルメジェドノ悲ナル憂鬱",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "medl22",
+ "songName": {
+ "jpText": "続・〆ドレー2000",
+ "jpFont": 0,
+ "enText": "Zoku Shimedore 2000",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": " ",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": " 続・〆ドレー2000",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "medl2k",
+ "songName": {
+ "jpText": "〆ドレー2000",
+ "jpFont": 0,
+ "enText": "Shimedore 2000",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "〆ドレー2000",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mega10",
+ "songName": {
+ "jpText": "ドドンガド~ン",
+ "jpFont": 0,
+ "enText": "Dodon ga Do~n",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドドンガド~ン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "memesi",
+ "songName": {
+ "jpText": "女々しくて",
+ "jpFont": 0,
+ "enText": "Memeshikute",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ゴールデンボンバー",
+ "jpFont": 0,
+ "enText": "Goldenbomber",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "女々しくて",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "metalh",
+ "songName": {
+ "jpText": "メタルホーク BGM1",
+ "jpFont": 0,
+ "enText": "Metal Hawk BGM1",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "メタルホーク BGM1",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "metro",
+ "songName": {
+ "jpText": "めたるぽりす",
+ "jpFont": 0,
+ "enText": "Metal Police",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "めたるぽりす",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mficta",
+ "songName": {
+ "jpText": "memoria ficta",
+ "jpFont": 0,
+ "enText": "memoria ficta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Versus",
+ "jpFont": 0,
+ "enText": "Versus",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mgaaot",
+ "songName": {
+ "jpText": "青と夏",
+ "jpFont": 0,
+ "enText": "Ao to Natsu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "青と夏",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mggext",
+ "songName": {
+ "jpText": "Extreme MGG★★★",
+ "jpFont": 0,
+ "enText": "Extreme MGG★★★",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ミュージックガンガン!2」より",
+ "jpFont": 0,
+ "enText": "From \" Music GunGun! 2 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mggrev",
+ "songName": {
+ "jpText": "ミュージック・リボルバー",
+ "jpFont": 0,
+ "enText": "Music Revolver",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ミュージックガンガン!2」より",
+ "jpFont": 0,
+ "enText": "From \" Music GunGun! 2 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ミュージック・リボルバー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mgpafe",
+ "songName": {
+ "jpText": "マジカル・パフェ",
+ "jpFont": 0,
+ "enText": "Magical Parfait",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "マジカル・パフェ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mgwrt",
+ "songName": {
+ "jpText": "季曲",
+ "jpFont": 0,
+ "enText": "Kikyoku",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "~Seasons of Asia~",
+ "jpFont": 0,
+ "enText": "~Seasons of Asia~",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "季曲",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mgwrt2",
+ "songName": {
+ "jpText": "蓄勢",
+ "jpFont": 0,
+ "enText": "Chikuzei",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "~GEAR UP~",
+ "jpFont": 0,
+ "enText": "~GEAR UP~",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "蓄勢",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mgwrt3",
+ "songName": {
+ "jpText": "蛻変",
+ "jpFont": 0,
+ "enText": "Zeihen",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "~transformation~",
+ "jpFont": 0,
+ "enText": "~transformation~",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "蛻変",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mgwrt4",
+ "songName": {
+ "jpText": "春遊",
+ "jpFont": 0,
+ "enText": "Shunyuu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "~happy excursion~",
+ "jpFont": 0,
+ "enText": "~happy excursion~",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "春遊",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mgwrt5",
+ "songName": {
+ "jpText": "綻放",
+ "jpFont": 0,
+ "enText": "Tanhou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "~Blooming~",
+ "jpFont": 0,
+ "enText": "~Blooming~",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "綻放",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mgwrt6",
+ "songName": {
+ "jpText": "曙光",
+ "jpFont": 0,
+ "enText": "Shokou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "~Dawn~",
+ "jpFont": 0,
+ "enText": "~Dawn~",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "曙光",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mgwrt7",
+ "songName": {
+ "jpText": "花漾",
+ "jpFont": 0,
+ "enText": "Kayou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "~Flourishing Blossoms~",
+ "jpFont": 0,
+ "enText": "~Flourishing Blossoms~",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "花漾",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mgwrt8",
+ "songName": {
+ "jpText": "蝶戀",
+ "jpFont": 0,
+ "enText": "Chouren",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "~Obsession~",
+ "jpFont": 0,
+ "enText": "~Obsession~",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "蝶戀",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mhcafe",
+ "songName": {
+ "jpText": "魔法の喫茶店",
+ "jpFont": 0,
+ "enText": "Mahou no Kissaten",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "魔法の喫茶店",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mheart",
+ "songName": {
+ "jpText": "マーブルハート",
+ "jpFont": 0,
+ "enText": "Marble Heart",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "マーブルハート",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikanm",
+ "songName": {
+ "jpText": "アニマル",
+ "jpFont": 0,
+ "enText": "Animal",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "DECO*27 feat. 初音ミク",
+ "jpFont": 0,
+ "enText": "DECO*27 feat. Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アニマル",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikcin",
+ "songName": {
+ "jpText": "シンデレラ",
+ "jpFont": 0,
+ "enText": "Cinderella",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "DECO*27 feat. 初音ミク",
+ "jpFont": 0,
+ "enText": "DECO*27 feat. Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "シンデレラ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "miki",
+ "songName": {
+ "jpText": "GO MY WAY!!",
+ "jpFont": 0,
+ "enText": "GO MY WAY!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター」より",
+ "jpFont": 0,
+ "enText": "From \" THE iDOLM@STER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikteo",
+ "songName": {
+ "jpText": "テオ",
+ "jpFont": 0,
+ "enText": "Teo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Omoi feat.初音ミク",
+ "jpFont": 0,
+ "enText": "Omoi feat. Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "テオ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikuaa",
+ "songName": {
+ "jpText": "エイリアンエイリアン",
+ "jpFont": 0,
+ "enText": "Alien Alien",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ナユタン星人 feat.初音ミク",
+ "jpFont": 0,
+ "enText": "Nayutan Seijin feat.Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "エイリアンエイリアン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikuar",
+ "songName": {
+ "jpText": "アルカリレットウセイ",
+ "jpFont": 0,
+ "enText": "Alkali Rettousei",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "かいりきベア feat.初音ミク 「戦闘摂理解析システム#コンパス」より",
+ "jpFont": 0,
+ "enText": "Kairiki bear feat.Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アルカリレットウセイ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikucp",
+ "songName": {
+ "jpText": "カンタービレ×パッシオーネ",
+ "jpFont": 0,
+ "enText": "Cantabile×Passione",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "OSTER project feat.初音ミク 「戦闘摂理解析システム#コンパス」より",
+ "jpFont": 0,
+ "enText": "OSTER project feat.Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "カンタービレ×パッシオーネ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikugr",
+ "songName": {
+ "jpText": "ゴーストルール",
+ "jpFont": 0,
+ "enText": "Ghost Rule",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "DECO*27 feat.初音ミク",
+ "jpFont": 0,
+ "enText": "DECO*27 feat.Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ゴーストルール",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikugv",
+ "songName": {
+ "jpText": "グラーヴェ",
+ "jpFont": 0,
+ "enText": "Grave",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "niki feat.初音ミク 「戦闘摂理解析システム#コンパス」より",
+ "jpFont": 0,
+ "enText": "niki feat.Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "グラーヴェ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikuh8",
+ "songName": {
+ "jpText": "ヒバナ",
+ "jpFont": 0,
+ "enText": "Hibana",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "DECO*27 feat.初音ミク",
+ "jpFont": 0,
+ "enText": "DECO*27 feat.Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ヒバナ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikuhn",
+ "songName": {
+ "jpText": "ハイスペックニート",
+ "jpFont": 0,
+ "enText": "High Spec Neet",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "40mP feat.初音ミク 「戦闘摂理解析システム#コンパス」より",
+ "jpFont": 0,
+ "enText": "40mP feat.Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ハイスペックニート",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikukg",
+ "songName": {
+ "jpText": "カゲロウデイズ",
+ "jpFont": 0,
+ "enText": "Kagerou Daze",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "じん",
+ "jpFont": 0,
+ "enText": "Jin",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "カゲロウデイズ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikukr",
+ "songName": {
+ "jpText": "キレキャリオン",
+ "jpFont": 0,
+ "enText": "Kire Carry On",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ポリスピカデリー feat.初音ミク 「戦闘摂理解析システム#コンパス」より",
+ "jpFont": 0,
+ "enText": "Police Piccadilly feat. Hatsune Miku/#C.O.M.P.A.S.S.",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "キレキャリオン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikuot",
+ "songName": {
+ "jpText": "乙女解剖",
+ "jpFont": 0,
+ "enText": "Otome Dissection",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "DECO*27 feat.初音ミク",
+ "jpFont": 0,
+ "enText": "DECO*27 feat.Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "乙女解剖",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikuse",
+ "songName": {
+ "jpText": "千本桜",
+ "jpFont": 0,
+ "enText": "Senbonzakura",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "黒うさP feat.初音ミク",
+ "jpFont": 0,
+ "enText": "Kurousa P feat.Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "千本桜",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikutd",
+ "songName": {
+ "jpText": "太陽系デスコ",
+ "jpFont": 0,
+ "enText": "Taiyoukei Disco",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ナユタン星人 feat.初音ミク",
+ "jpFont": 0,
+ "enText": "Nayutan Seijin feat.Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "太陽系デスコ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikuvt",
+ "songName": {
+ "jpText": "バイオレンストリガー",
+ "jpFont": 0,
+ "enText": "Violence Trigger",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "八王子P feat.初音ミク 「戦闘摂理解析システム#コンパス」より",
+ "jpFont": 0,
+ "enText": "Hachioji P feat.Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "バイオレンストリガー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikuzs",
+ "songName": {
+ "jpText": "撥条少女時計",
+ "jpFont": 0,
+ "enText": "Zenmai Shoujo Tokei",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Drop&葉月ゆら feat.初音ミク 「戦闘摂理解析システム#コンパス」より",
+ "jpFont": 0,
+ "enText": "Drop & Yura Hatsuki feat.Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "撥条少女時計",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "minau",
+ "songName": {
+ "jpText": "みんながみんな英雄",
+ "jpFont": 0,
+ "enText": "Minna Ga Minna Eiyuu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "au「三太郎シリーズ」CMソング",
+ "jpFont": 0,
+ "enText": "au \" Santaro Series \" CM Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "みんながみんな英雄",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mintjm",
+ "songName": {
+ "jpText": "Growing Up",
+ "jpFont": 0,
+ "enText": "Growing Up",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "日替り無料",
+ "jpFont": 0,
+ "enText": "Nichi Kawari Muryo",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mintte",
+ "songName": {
+ "jpText": "mint tears",
+ "jpFont": 0,
+ "enText": "mint tears",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mkirdr",
+ "songName": {
+ "jpText": "Irodoru♡Future",
+ "jpFont": 0,
+ "enText": "Irodoru♡Future",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "小林伸嘉(BNSI) feat. ミライ小町",
+ "jpFont": 0,
+ "enText": "Nobuyoshi Kobayashi(BNSI) feat. Mirai Komachi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mmkami",
+ "songName": {
+ "jpText": "もしもし神様",
+ "jpFont": 0,
+ "enText": "Moshi-moshi Kamisama",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "テヅカ feat.鏡音リン・鏡音レン",
+ "jpFont": 0,
+ "enText": "Tezuka feat. Kagamine Rin・Kagamine Len",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "もしもし神様",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mnkesk",
+ "songName": {
+ "jpText": "見たこともない景色",
+ "jpFont": 0,
+ "enText": "Mita Koto mo Nai Keshiki",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "au 三太郎サッカー応援 CMソング",
+ "jpFont": 0,
+ "enText": "au \" Three Tarous Soccer Support \" CM Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "見たこともない景色",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mnpure",
+ "songName": {
+ "jpText": "マリオネットピュア",
+ "jpFont": 0,
+ "enText": "Marionette Pure",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "マリオネットピュア",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "moana",
+ "songName": {
+ "jpText": "どこまでも~How Far I’ll Go~",
+ "jpFont": 0,
+ "enText": "How Far I'll Go",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「モアナと伝説の海」より",
+ "jpFont": 0,
+ "enText": "From \" Moana \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "どこまでも~How Far I’ll Go~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "modshs",
+ "songName": {
+ "jpText": "シャイニングスター",
+ "jpFont": 0,
+ "enText": "Shining Star",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "魔王魂",
+ "jpFont": 0,
+ "enText": "Maou Damashii",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "シャイニングスター",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "momoi",
+ "songName": {
+ "jpText": "ワンダーモモーイ",
+ "jpFont": 0,
+ "enText": "Wonder Momoi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ワンダーモモーイ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "monhn4",
+ "songName": {
+ "jpText": "モンスターハンター4 メドレー",
+ "jpFont": 0,
+ "enText": "Monster Hunter 4 Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "モンスターハンター4 メドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mope",
+ "songName": {
+ "jpText": "もぺもぺ",
+ "jpFont": 0,
+ "enText": "Mopemope",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "LeaF",
+ "jpFont": 0,
+ "enText": "LeaF",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "もぺもぺ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mr5sug",
+ "songName": {
+ "jpText": "Sugar",
+ "jpFont": 0,
+ "enText": "Sugar",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mrgold",
+ "songName": {
+ "jpText": "マリーゴールド",
+ "jpFont": 0,
+ "enText": "Marigold",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "マリーゴールド",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mrprof",
+ "songName": {
+ "jpText": "ヘイ,ミスタープロフェッサー",
+ "jpFont": 0,
+ "enText": "Hey, Mister Professor",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ヘイ,ミスタープロフェッサー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mscl1",
+ "songName": {
+ "jpText": "PaPaPa Love",
+ "jpFont": 0,
+ "enText": "PaPaPa Love",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「マッスル行進曲」より",
+ "jpFont": 0,
+ "enText": "From \" Muscle March \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mscl3",
+ "songName": {
+ "jpText": "負け犬返上 feat.蟹プリンス",
+ "jpFont": 0,
+ "enText": "Underdog Returns! feat.Crab Prince",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「マッスル行進曲」より",
+ "jpFont": 0,
+ "enText": "From \" Muscle March \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "負け犬返上 feat.蟹プリンス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mscl5",
+ "songName": {
+ "jpText": "筋肉のような僕ら ~マッスル愛のテーマ~",
+ "jpFont": 0,
+ "enText": "Kinniku no Youna Bokura ~Muscle Ai no Theme~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「マッスル行進曲」より",
+ "jpFont": 0,
+ "enText": "From \" Muscle March \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "筋肉のような僕ら ~マッスル愛のテーマ~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "msclht",
+ "songName": {
+ "jpText": "My Muscle Heart",
+ "jpFont": 0,
+ "enText": "My Muscle Heart",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "~テレビ高天原系アニメ「筋肉魔法少女タケミナカタ」主題歌~ コバヤシユウヤ(IOSYS) feat.山本椛 (monotone)",
+ "jpFont": 0,
+ "enText": "~Takamagahara's TV Anime \"Kinnikumahoushojo Takeminakata\" theme song~\nYuya Kobayashi(IOSYS) feat. Momiji Yamamoto (monotone)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "msmino",
+ "songName": {
+ "jpText": "命短し恋せよ乙女",
+ "jpFont": 0,
+ "enText": "Inochi Mijikashi Koise Yo Otome",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "MOSHIMO",
+ "jpFont": 0,
+ "enText": "MOSHIMO",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "命短し恋せよ乙女",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "msspln",
+ "songName": {
+ "jpText": "M.S.S.Planet",
+ "jpFont": 0,
+ "enText": "M.S.S.Planet",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "M.S.S Project feat.初音ミク・GUMI",
+ "jpFont": 0,
+ "enText": "M.S.S Project feat.Hatsune Miku・GUMI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mugens",
+ "songName": {
+ "jpText": "夢幻の蒼空",
+ "jpFont": 0,
+ "enText": "Mugen no Sora",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Silver Forest feat.SAYA",
+ "jpFont": 0,
+ "enText": "Silver Forest feat.SAYA",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "夢幻の蒼空",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mujihi",
+ "songName": {
+ "jpText": "無慈悲な王",
+ "jpFont": 0,
+ "enText": "Mujihi na Ou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「GOD EATER BURST」より",
+ "jpFont": 0,
+ "enText": "From \" God Eater Burst \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "無慈悲な王",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mulber",
+ "songName": {
+ "jpText": "Mulberry",
+ "jpFont": 0,
+ "enText": "Mulberry",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mymine",
+ "songName": {
+ "jpText": "My Mine",
+ "jpFont": 0,
+ "enText": "My Mine",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mznemo",
+ "songName": {
+ "jpText": "キューティー☆デモニック☆魔人エモ!!",
+ "jpFont": 0,
+ "enText": "Cutie☆Demonic☆Majin Emo!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "溝口ゆうま feat.大瀬良あい",
+ "jpFont": 0,
+ "enText": "Yuuma Mizonokuchi feat. Ai Oosera",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "キューティー☆デモニック☆魔人エモ!!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "naniyt",
+ "songName": {
+ "jpText": "なにやってもうまくいかない",
+ "jpFont": 0,
+ "enText": "Nothing's Working Out",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "meiyo",
+ "jpFont": 0,
+ "enText": "meiyo",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "なにやってもうまくいかない",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nao",
+ "songName": {
+ "jpText": "風雲!バチお先生",
+ "jpFont": 0,
+ "enText": "Hu-un! Bachio Sensei",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "風雲!バチお先生",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "naraku",
+ "songName": {
+ "jpText": "Abyss of hell",
+ "jpFont": 0,
+ "enText": "Abyss of hell",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「鉄拳 レボリューション」より",
+ "jpFont": 0,
+ "enText": "From \" Tekken Revolution \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "natsu",
+ "songName": {
+ "jpText": "夏祭り",
+ "jpFont": 0,
+ "enText": "Natsumatsuri",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "夏祭り",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nbox",
+ "songName": {
+ "jpText": "ヒミツキチューバー",
+ "jpFont": 0,
+ "enText": "HimitsuKiTuber",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ニンジャボックス」より",
+ "jpFont": 0,
+ "enText": "From \" NinjaBox \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ヒミツキチューバー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "necolo",
+ "songName": {
+ "jpText": "NECOLOGY",
+ "jpFont": 0,
+ "enText": "NECOLOGY",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nee",
+ "songName": {
+ "jpText": "ねぇ教えて",
+ "jpFont": 0,
+ "enText": "Ne~e Oshiete",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ねぇ教えて",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ngzsnc",
+ "songName": {
+ "jpText": "シンクロニシティ",
+ "jpFont": 0,
+ "enText": "Synchronicity",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "シンクロニシティ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "niku2",
+ "songName": {
+ "jpText": "ザストゥールの魔導書",
+ "jpFont": 0,
+ "enText": "Xastur no Madousho",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ザストゥールの魔導書",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ninjbb",
+ "songName": {
+ "jpText": "にんじゃりばんばん",
+ "jpFont": 0,
+ "enText": "Ninja Re Bang Bang",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "きゃりーぱみゅぱみゅ",
+ "jpFont": 0,
+ "enText": "Kyary Pamyu Pamyu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "にんじゃりばんばん",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nobu7g",
+ "songName": {
+ "jpText": "第六天魔王",
+ "jpFont": 0,
+ "enText": "Dairokuten Maou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "黒沢ダイスケ × Masahiro \"Godspeed\" Aoki",
+ "jpFont": 0,
+ "enText": "Daisuke Kurosawa x Masahiro \" Godspeed \" Aoki",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "第六天魔王",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nograv",
+ "songName": {
+ "jpText": "No Gravity",
+ "jpFont": 0,
+ "enText": "No Gravity",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nrdn2k",
+ "songName": {
+ "jpText": "ノるどん2000",
+ "jpFont": 0,
+ "enText": "Norudon 2000",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ノるどん2000",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ntmntm",
+ "songName": {
+ "jpText": "ネテモネテモ",
+ "jpFont": 0,
+ "enText": "Netemo Netemo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "☆しょーじ☆ feat.ほのか♡えりか",
+ "jpFont": 0,
+ "enText": "☆Shoji☆ feat. Honoka♡Erika",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ネテモネテモ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "numu10",
+ "songName": {
+ "jpText": "ヌムジカac.10",
+ "jpFont": 0,
+ "enText": "Numujika ac.10",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ヌムジカac.10",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "numu14",
+ "songName": {
+ "jpText": "アルムジカac14.0V",
+ "jpFont": 0,
+ "enText": "Arumujika ac14.0V",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アルムジカac14.0V",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nya3",
+ "songName": {
+ "jpText": "にゃーにゃーにゃー",
+ "jpFont": 0,
+ "enText": "Nyanyanya",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "立秋 feat.ちょこ",
+ "jpFont": 0,
+ "enText": "Rish feat. Choko",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "にゃーにゃーにゃー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nycyok",
+ "songName": {
+ "jpText": "よく遊びよく学べ",
+ "jpFont": 0,
+ "enText": "Yoku Asobi Yoku Manabe",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "よく遊びよく学べ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "obakes",
+ "songName": {
+ "jpText": "おばけのお仕事",
+ "jpFont": 0,
+ "enText": "Obake no Oshigoto",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "おばけのお仕事",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "odoru",
+ "songName": {
+ "jpText": "おどるポンポコリン",
+ "jpFont": 0,
+ "enText": "Odoru Ponpokorin",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ちびまる子ちゃん」より",
+ "jpFont": 0,
+ "enText": "From \" Chibi Maruko-chan \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "おどるポンポコリン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ogm10t",
+ "songName": {
+ "jpText": "3Q-4U-AC00",
+ "jpFont": 0,
+ "enText": "3Q-4U-AC00",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ohdmix",
+ "songName": {
+ "jpText": "ミックスナッツ",
+ "jpFont": 0,
+ "enText": "Mixed Nuts",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Official髭男dism アニメ「SPY×FAMILY」オープニング主題歌",
+ "jpFont": 0,
+ "enText": "Official Hige Dandism Anime \" Spy x Family \" Opening Theme",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ミックスナッツ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ohdpre",
+ "songName": {
+ "jpText": "Pretender",
+ "jpFont": 0,
+ "enText": "Pretender",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Official髭男dism",
+ "jpFont": 0,
+ "enText": "Official HIGE DANdism",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ohdshk",
+ "songName": {
+ "jpText": "宿命",
+ "jpFont": 0,
+ "enText": "Shukumei",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Official髭男dism",
+ "jpFont": 0,
+ "enText": "Official Hige Dandism",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "宿命",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "oka47",
+ "songName": {
+ "jpText": "クルクルクロックル",
+ "jpFont": 0,
+ "enText": "Kuru Kuru Kurokkuru",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "クルクルクロックル",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "onigir",
+ "songName": {
+ "jpText": "おにぎりはどこかしら♪",
+ "jpFont": 0,
+ "enText": "Onigiri wa Dokokashira♪",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "よみぃ feat.初音ミク",
+ "jpFont": 0,
+ "enText": "Yomii feat.Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "おにぎりはどこかしら♪",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ordyne",
+ "songName": {
+ "jpText": "大打音",
+ "jpFont": 0,
+ "enText": "Oodain",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「オーダイン」より",
+ "jpFont": 0,
+ "enText": "From \" Ordyne \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "大打音",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "orion",
+ "songName": {
+ "jpText": "オリオンをなぞる",
+ "jpFont": 0,
+ "enText": "Orion o Nazoru",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「TIGER & BUNNY」より",
+ "jpFont": 0,
+ "enText": "From \" Tiger & Bunny \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "オリオンをなぞる",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "osirit",
+ "songName": {
+ "jpText": "ププッとフムッとかいけつダンス",
+ "jpFont": 0,
+ "enText": "Puputto Fumutto Kaiketsu Dance",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「おしりたんてい」より",
+ "jpFont": 0,
+ "enText": "From \" Butt Detective \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ププッとフムッとかいけつダンス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "otoppe",
+ "songName": {
+ "jpText": "ウキウキオトッペ",
+ "jpFont": 0,
+ "enText": "Uki-uki Otoppe",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ウキウキオトッペ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ourobo",
+ "songName": {
+ "jpText": "ouroboros -twin stroke of the end-",
+ "jpFont": 0,
+ "enText": "ouroboros -twin stroke of the end-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Cranky VS MASAKI 「グルーヴコースター」より",
+ "jpFont": 0,
+ "enText": "Cranky VS MASAKI From \" Groove Coaster \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ov969",
+ "songName": {
+ "jpText": "Over Clock~開放~",
+ "jpFont": 0,
+ "enText": "Over Clock ~Kaihou~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "NAOKI feat.un∞limited 「クロスビーツレヴ」より",
+ "jpFont": 0,
+ "enText": "NAOKI feat.un∞limited From \" crossbeats REV. \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Over Clock~開放~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "oyasik",
+ "songName": {
+ "jpText": "ミーナのおやしき",
+ "jpFont": 0,
+ "enText": "Meena no Oyashiki",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ミーナのおやしき",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pacm40",
+ "songName": {
+ "jpText": "JOIN THE PAC -太鼓の達人 Ver.-",
+ "jpFont": 0,
+ "enText": "JOIN THE PAC -Taiko No Tatsujin Ver.-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "パックマン40周年公式テーマ楽曲",
+ "jpFont": 0,
+ "enText": "Official Theme Song for PAC-MAN 40th Anniversary",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "JOIN THE PAC -太鼓の達人 Ver.-",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "parous",
+ "songName": {
+ "jpText": "Parousia",
+ "jpFont": 0,
+ "enText": "Parousia",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "xi",
+ "jpFont": 0,
+ "enText": "xi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pettsn",
+ "songName": {
+ "jpText": "ペットショップ大戦",
+ "jpFont": 0,
+ "enText": "Pet Shop Taisen",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "chacol feat. Focco",
+ "jpFont": 0,
+ "enText": "chacol feat. Focco",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ペットショップ大戦",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "phride",
+ "songName": {
+ "jpText": "Phantom Rider",
+ "jpFont": 0,
+ "enText": "Phantom Rider",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "濱本理央(BNSI)",
+ "jpFont": 0,
+ "enText": "Rio Hamamoto(BNSI)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "phuman",
+ "songName": {
+ "jpText": "PERFECT HUMAN",
+ "jpFont": 0,
+ "enText": "PERFECT HUMAN",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pixelg",
+ "songName": {
+ "jpText": "Pixel Galaxy",
+ "jpFont": 0,
+ "enText": "Pixel Galaxy",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Snail’s House",
+ "jpFont": 0,
+ "enText": "Snail’s House",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pk3rai",
+ "songName": {
+ "jpText": "未来コネクション",
+ "jpFont": 0,
+ "enText": "Mirai Connection",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "テレビアニメ「ポケットモンスター サン&ムーン」より",
+ "jpFont": 0,
+ "enText": "From \" Pokémon Sun & Moon \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "未来コネクション",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pkalol",
+ "songName": {
+ "jpText": "アローラ!!",
+ "jpFont": 0,
+ "enText": "Alola!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ポケットモンスター サン&ムーン」より",
+ "jpFont": 0,
+ "enText": "From \" Pokémon Sun & Moon \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アローラ!!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pklets",
+ "songName": {
+ "jpText": "ポケットモンスター Let’s Go! ピカチュウ・Let’s Go! イーブイ",
+ "jpFont": 0,
+ "enText": "Pokémon:Let's Go, Pikachu! and Pokémon:Let's Go, Eevee!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ポケットモンスター Let’s Go! ピカチュウ・Let’s Go! イーブイ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pkmmzs",
+ "songName": {
+ "jpText": "めざせポケモンマスター -20th Anniversary-",
+ "jpFont": 0,
+ "enText": "Mezase Pokémon Master -20th Anniversary-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「劇場版ポケットモンスター キミにきめた!」より",
+ "jpFont": 0,
+ "enText": "From \" Pokémon the Movie:I Choose You! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "めざせポケモンマスター -20th Anniversary-",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pkmnsm",
+ "songName": {
+ "jpText": "「ポケットモンスター サン・ムーン」メドレー",
+ "jpFont": 0,
+ "enText": "Pokémon Sun/Moon Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "「ポケットモンスター サン・ムーン」メドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pkxyz",
+ "songName": {
+ "jpText": "XY&Z",
+ "jpFont": 0,
+ "enText": "XY&Z",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ポケットモンスター XY & Z」より",
+ "jpFont": 0,
+ "enText": "From \" Pokémon XY&Z \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "playhi",
+ "songName": {
+ "jpText": "Player's High",
+ "jpFont": 0,
+ "enText": "Player's High",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "K.key",
+ "jpFont": 0,
+ "enText": "K.key",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ponpon",
+ "songName": {
+ "jpText": "PON PON PON",
+ "jpFont": 0,
+ "enText": "PON PON PON",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "きゃりーぱみゅぱみゅ",
+ "jpFont": 0,
+ "enText": "Kyary Pamyu Pamyu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ponyo",
+ "songName": {
+ "jpText": "崖の上のポニョ",
+ "jpFont": 0,
+ "enText": "Ponyo on the Cliff by the Sea",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "崖の上のポニョ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "poptep",
+ "songName": {
+ "jpText": "POP TEAM EPIC",
+ "jpFont": 0,
+ "enText": "POP TEAM EPIC",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "TVアニメ「ポプテピピック」OPテーマ",
+ "jpFont": 0,
+ "enText": "From \" Pop Team Epic \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ppap",
+ "songName": {
+ "jpText": "ペンパイナッポーアッポーペン(PPAP)",
+ "jpFont": 0,
+ "enText": "Pen-Pinapple-Apple-Pen (PPAP)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ピコ太郎",
+ "jpFont": 0,
+ "enText": "Piko Taro",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ペンパイナッポーアッポーペン(PPAP)",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pprose",
+ "songName": {
+ "jpText": "Purple Rose Fusion",
+ "jpFont": 0,
+ "enText": "Purple Rose Fusion",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pr9all",
+ "songName": {
+ "jpText": "DANZEN!ふたりはプリキュア~唯一無二の光たち~",
+ "jpFont": 0,
+ "enText": "DANZEN! Futari wa PreCure ~Yuiitsumuni no Hikari-tachi~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「映画HUGっと!プリキュア♡ふたりはプリキュア オールスターズメモリーズ」より",
+ "jpFont": 0,
+ "enText": "From \" HUGtto! PreCure♡Futari wa PreCure:All Stars Memories \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "DANZEN!ふたりはプリキュア~唯一無二の光たち~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pr9hlg",
+ "songName": {
+ "jpText": "ヒーリングっど♥プリキュア Touch!!",
+ "jpFont": 0,
+ "enText": "Healin' Good ♥ PreCure Touch!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ヒーリングっど♥プリキュア Touch!!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pr9str",
+ "songName": {
+ "jpText": "キラリ☆彡スター☆トゥインクルプリキュア",
+ "jpFont": 0,
+ "enText": "Kirari☆Star☆Twinkle PreCure",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "キラリ☆彡スター☆トゥインクルプリキュア",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pridon",
+ "songName": {
+ "jpText": "Princess of Donder",
+ "jpFont": 0,
+ "enText": "Princess of Donder",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "MOES feat.海保えりか",
+ "jpFont": 0,
+ "enText": "MOES feat.Erika Kaiho",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pripar",
+ "songName": {
+ "jpText": "ドリームパレード",
+ "jpFont": 0,
+ "enText": "Dream Parade",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「プリパラ」より",
+ "jpFont": 0,
+ "enText": "From \" PriPara \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドリームパレード",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "prprs",
+ "songName": {
+ "jpText": "ぷるぷるしんぷる",
+ "jpFont": 0,
+ "enText": "Purupuru Simple",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Her Ghost Friend",
+ "jpFont": 0,
+ "enText": "Her Ghost Friend",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ぷるぷるしんぷる",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "psf1op",
+ "songName": {
+ "jpText": "つながれ!ひろがれ!打ち上がれ!",
+ "jpFont": 0,
+ "enText": "Tsunagare! Hinogare! Uchiagare!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「太鼓の達人 セッションでドドンがドン!」テーマソング",
+ "jpFont": 0,
+ "enText": "\" Taiko no Tatsujin:Drum Session! \" Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "つながれ!ひろがれ!打ち上がれ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "psplsb",
+ "songName": {
+ "jpText": "きたさいたま2000",
+ "jpFont": 0,
+ "enText": "Kita Saitama 2000",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "きたさいたま2000",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "punkbs",
+ "songName": {
+ "jpText": "punk bastards",
+ "jpFont": 0,
+ "enText": "punk bastards",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Sobrem",
+ "jpFont": 0,
+ "enText": "Sobrem",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "puzdr4",
+ "songName": {
+ "jpText": "決戦!!",
+ "jpFont": 0,
+ "enText": "Decisive Battle!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「パズドラZ」より",
+ "jpFont": 0,
+ "enText": "From \" Puzzle & Dragons Z \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "決戦!!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "puzdr6",
+ "songName": {
+ "jpText": "Holding Hands",
+ "jpFont": 0,
+ "enText": "Holding Hands",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「パズル&ドラゴンズ」より",
+ "jpFont": 0,
+ "enText": "From \" Puzzle & Dragons \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "puzdr7",
+ "songName": {
+ "jpText": "Unite The Force",
+ "jpFont": 0,
+ "enText": "Unite The Force",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「パズル&ドラゴンズ」より",
+ "jpFont": 0,
+ "enText": "From \" Puzzle & Dragons \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "puzdra",
+ "songName": {
+ "jpText": "Walking Through The Towers",
+ "jpFont": 0,
+ "enText": "Walking Through The Towers",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「パズル&ドラゴンズ」より",
+ "jpFont": 0,
+ "enText": "From \" Puzzle & Dragons \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "puzdx1",
+ "songName": {
+ "jpText": "バトル-電光石火-",
+ "jpFont": 0,
+ "enText": "Battle -Denkousekka-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「パズドラクロス」より",
+ "jpFont": 0,
+ "enText": "From \" Puzzle & Dragons X \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "バトル-電光石火-",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "quant",
+ "songName": {
+ "jpText": "想いを手に願いを込めて",
+ "jpFont": 0,
+ "enText": "Omoi o Te ni Negai o Komete",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "想いを手に願いを込めて",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rainmk",
+ "songName": {
+ "jpText": "RAINMAKER",
+ "jpFont": 0,
+ "enText": "RAINMAKER",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "新日本プロレス オカダ・カズチカ入場テーマ",
+ "jpFont": 0,
+ "enText": "New Japan Pro Wrestling Kazuchika Okada Entrance Theme",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ralive",
+ "songName": {
+ "jpText": "ALiVE",
+ "jpFont": 0,
+ "enText": "ALiVE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "REDALiCE",
+ "jpFont": 0,
+ "enText": "REDALiCE",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ramen",
+ "songName": {
+ "jpText": "ラーメン de Yo-Men!!",
+ "jpFont": 0,
+ "enText": "Ramen de Yo-Men!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ラーメン de Yo-Men!!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rasens",
+ "songName": {
+ "jpText": "螺旋周回軌道",
+ "jpFont": 0,
+ "enText": "Rasen Shukai Kidou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "BlackY feat. Risa Yuzuki",
+ "jpFont": 0,
+ "enText": "BlackY feat.Risa Yuzuki",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "螺旋周回軌道",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rdrose",
+ "songName": {
+ "jpText": "Red Rose Evangel",
+ "jpFont": 0,
+ "enText": "Red Rose Evangel",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "retoko",
+ "songName": {
+ "jpText": "冷凍庫CJ ~嗚呼面太鼓ブラザーズ~",
+ "jpFont": 0,
+ "enText": "Reitoko CJ ~Amen Taiko Brothers~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "DJKurara",
+ "jpFont": 0,
+ "enText": "DJKurara",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "冷凍庫CJ ~嗚呼面太鼓ブラザーズ~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "revive",
+ "songName": {
+ "jpText": "リバイバー",
+ "jpFont": 0,
+ "enText": "Reviver",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "リバイバー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rgod",
+ "songName": {
+ "jpText": "らいとにんぐ ぱっしょん",
+ "jpFont": 0,
+ "enText": "Lightning Passion",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "らいとにんぐ ぱっしょん",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ri",
+ "songName": {
+ "jpText": "R.I.",
+ "jpFont": 0,
+ "enText": "R.I.",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "大和 × 黒沢ダイスケ",
+ "jpFont": 0,
+ "enText": "Yamato x Daisuke Kurosawa",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rinhis",
+ "songName": {
+ "jpText": "凛",
+ "jpFont": 0,
+ "enText": "Rin",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "a_hisa",
+ "jpFont": 0,
+ "enText": "a_hisa",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "凛",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rinren",
+ "songName": {
+ "jpText": "わんにゃーワールド",
+ "jpFont": 0,
+ "enText": "Woof Meow World",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat.鏡音リン・鏡音レン starring 下田麻美",
+ "jpFont": 0,
+ "enText": "feat.Kagamine Rin・Kagamine Len starring Asami Shimoda",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "わんにゃーワールド",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rlnedy",
+ "songName": {
+ "jpText": "EDY -エレクトリカルダンシングヨガ-",
+ "jpFont": 0,
+ "enText": "EDY -Electrical Dancing Yoga-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat.鏡音リン・鏡音レン",
+ "jpFont": 0,
+ "enText": "feat.Kagamine Rin・Kagamine Len",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "EDY -エレクトリカルダンシングヨガ-",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rlngig",
+ "songName": {
+ "jpText": "ギガンティックO.T.N",
+ "jpFont": 0,
+ "enText": "Gigantic O.T.N",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ギガれをる feat.鏡音レン",
+ "jpFont": 0,
+ "enText": "GigaReol feat.Kagamine Len",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ギガンティックO.T.N",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rlnpls",
+ "songName": {
+ "jpText": "+♂(プラス男子)",
+ "jpFont": 0,
+ "enText": "+♂(Plus Danshi)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ギガれをる feat.鏡音レン",
+ "jpFont": 0,
+ "enText": "GigaReol feat.Kagamine Len",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "+♂(プラス男子)",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rlnrtr",
+ "songName": {
+ "jpText": "レトロマニア狂想曲",
+ "jpFont": 0,
+ "enText": "Retromania Rhapsody",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "PolyphonicBranch feat.鏡音リン・鏡音レン 「戦闘摂理解析システム#コンパス」より",
+ "jpFont": 0,
+ "enText": "PolyphonicBranch feat. Kagamine Rin/Kagamine Len/#C.O.M.P.A.S.S.",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "レトロマニア狂想曲",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rlnted",
+ "songName": {
+ "jpText": "東京テディベア",
+ "jpFont": 0,
+ "enText": "Tokyo Teddy Bear",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Neru feat.鏡音リン",
+ "jpFont": 0,
+ "enText": "Neru feat.Kagamine Rin",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "東京テディベア",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "roadmv",
+ "songName": {
+ "jpText": "ロードムービー",
+ "jpFont": 0,
+ "enText": "Road Movie",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「映画クレヨンしんちゃん 襲来!! 宇宙人シリリ」主題歌",
+ "jpFont": 0,
+ "enText": "From \" Crayon Shin-chan:Invasion!! \" Alien Shiriri",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ロードムービー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "robots",
+ "songName": {
+ "jpText": "ロボットロケンロー☆",
+ "jpFont": 0,
+ "enText": "Robot Rock 'n' Roll☆",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ロボットロケンロー☆",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rock",
+ "songName": {
+ "jpText": "WE WILL ROCK YOU",
+ "jpFont": 0,
+ "enText": "WE WILL ROCK YOU",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Written by Brian May © Queen Music Ltd",
+ "jpFont": 0,
+ "enText": "Written by Brian May © Queen Music Ltd",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rockmw",
+ "songName": {
+ "jpText": "Dr.WILY STAGE 1",
+ "jpFont": 0,
+ "enText": "Dr.WILY STAGE 1",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ロックマン2 Dr.ワイリーの謎」より",
+ "jpFont": 0,
+ "enText": "From \" Mega Man 2 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rocknh",
+ "songName": {
+ "jpText": "ロックン・ハート!",
+ "jpFont": 0,
+ "enText": "Rocking Heart!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「たまごっち!ゆめキラドリーム」より",
+ "jpFont": 0,
+ "enText": "From \" Tamagotchi:Yume Kira Dream \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ロックン・ハート!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "roki",
+ "songName": {
+ "jpText": "ロキ",
+ "jpFont": 0,
+ "enText": "Roki",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "みきとP feat.鏡音リン",
+ "jpFont": 0,
+ "enText": "Mikito P feat. Kagamine Rin",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ロキ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rot3",
+ "songName": {
+ "jpText": "またさいたま2000",
+ "jpFont": 0,
+ "enText": "Mata Saitama 2000",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "またさいたま2000",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rot4",
+ "songName": {
+ "jpText": "まださいたま2000",
+ "jpFont": 0,
+ "enText": "Mada Saitama 2000",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "まださいたま2000",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rotspd",
+ "songName": {
+ "jpText": "はやさいたま2000",
+ "jpFont": 0,
+ "enText": "Haya Saitama 2000",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "はやさいたま2000",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rr1",
+ "songName": {
+ "jpText": "Ridge Racer",
+ "jpFont": 0,
+ "enText": "Ridge Racer",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rr1fz",
+ "songName": {
+ "jpText": "オパ!オパ!RACER - GMT mashup -",
+ "jpFont": 0,
+ "enText": "Opa! Opa! RACER - GMT mashup -",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "COSIO(ZUNTATA/TAITO)「ファンタジーゾーン」「RIDGE RACER」",
+ "jpFont": 0,
+ "enText": "COSIO(ZUNTATA/TAITO)/Fantasy Zone/Ridge Racer",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "オパ!オパ!RACER - GMT mashup -",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rr1wlz",
+ "songName": {
+ "jpText": "RIDGE RACER STEPS - GMT remix -",
+ "jpFont": 0,
+ "enText": "RIDGE RACER STEPS - GMT remix -",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Yuji Masubuchi(BNSI)「RIDGE RACER」",
+ "jpFont": 0,
+ "enText": "Yuji Masubuchi(BNSI) \" RIDGE RACER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rr3dan",
+ "songName": {
+ "jpText": "Angel Halo",
+ "jpFont": 0,
+ "enText": "Angel Halo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「リッジレーサー3D」より",
+ "jpFont": 0,
+ "enText": "From \" Ridge Racer 3D \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rr3dve",
+ "songName": {
+ "jpText": "Venomous",
+ "jpFont": 0,
+ "enText": "Venomous",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「リッジレーサー3D」より",
+ "jpFont": 0,
+ "enText": "From \" Ridge Racer 3D \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rr42",
+ "songName": {
+ "jpText": "BLUE TOPAZ",
+ "jpFont": 0,
+ "enText": "BLUE TOPAZ",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「レイブレーサー」より",
+ "jpFont": 0,
+ "enText": "From \" Rave Racer \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rrs2kk",
+ "songName": {
+ "jpText": "Kamikaze Remix",
+ "jpFont": 0,
+ "enText": "Kamikaze Remix",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「RIDGE RACERS 2」より",
+ "jpFont": 0,
+ "enText": "From \" Ridge Racer 2 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rrself",
+ "songName": {
+ "jpText": "RAGE v.self",
+ "jpFont": 0,
+ "enText": "RAGE v.self",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rt2wit",
+ "songName": {
+ "jpText": "Where is the Target?",
+ "jpFont": 0,
+ "enText": "Where is the Target?",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ローリングサンダー2」より",
+ "jpFont": 0,
+ "enText": "From \" Rolling Thunder 2 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ryogen",
+ "songName": {
+ "jpText": "燎原ノ舞",
+ "jpFont": 0,
+ "enText": "Ryougen no Mai",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "燎原ノ舞",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ryowh",
+ "songName": {
+ "jpText": "きみのあかり",
+ "jpFont": 0,
+ "enText": "Kimino Akari",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "きみのあかり",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ryuhim",
+ "songName": {
+ "jpText": "竜と黒炎の姫君",
+ "jpFont": 0,
+ "enText": "Ryuu to Kokuen no Himegimi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "竜と黒炎の姫君",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ryukis",
+ "songName": {
+ "jpText": "風の国の龍と騎士",
+ "jpFont": 0,
+ "enText": "Kaze no Kuni no Ryuu to Kishi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "風の国の龍と騎士",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ryusei",
+ "songName": {
+ "jpText": "R.Y.U.S.E.I.",
+ "jpFont": 0,
+ "enText": "R.Y.U.S.E.I.",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ryusoj",
+ "songName": {
+ "jpText": "騎士竜戦隊リュウソウジャー",
+ "jpFont": 0,
+ "enText": "Kishiryu Sentai Ryuusouja",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "騎士竜戦隊リュウソウジャー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "saibou",
+ "songName": {
+ "jpText": "ミッション! 健・康・第・イチ",
+ "jpFont": 0,
+ "enText": "Mission! Ken.Kou.Dai.Ichi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「はたらく細胞」より",
+ "jpFont": 0,
+ "enText": "From \" Cells at Work! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ミッション! 健・康・第・イチ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sanpo",
+ "songName": {
+ "jpText": "さんぽ",
+ "jpFont": 0,
+ "enText": "Sanpo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「となりのトトロ」より",
+ "jpFont": 0,
+ "enText": "From \" My Neighbor Totoro \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "さんぽ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "santa",
+ "songName": {
+ "jpText": "ジングルベル第765番",
+ "jpFont": 0,
+ "enText": "Jingle Bells No.765",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ジングルベル第765番",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "saoali",
+ "songName": {
+ "jpText": "ADAMAS",
+ "jpFont": 0,
+ "enText": "ADAMAS",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ソードアート・オンライン アリシゼーション」より",
+ "jpFont": 0,
+ "enText": "From \" Sword Art Online Alicization \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "saoggo",
+ "songName": {
+ "jpText": "流星",
+ "jpFont": 0,
+ "enText": "Ryuusei",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ソードアート・オンライン オルタナティブ ガンゲイル・オンライン」より",
+ "jpFont": 0,
+ "enText": "From \" Sword Art Online Alternative \"Gun Gale Online\" \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "流星",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "savagl",
+ "songName": {
+ "jpText": "Savage Love",
+ "jpFont": 0,
+ "enText": "Savage Love",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sei10r",
+ "songName": {
+ "jpText": "青天の黎明",
+ "jpFont": 0,
+ "enText": "Seiten no Reimei",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "steμ feat.siroa",
+ "jpFont": 0,
+ "enText": "steμ feat.siroa",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "青天の黎明",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "senpac",
+ "songName": {
+ "jpText": "旋風ノ舞【天】",
+ "jpFont": 0,
+ "enText": "Senpuu no Mai [Heaven]",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "旋風ノ舞【天】",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "senpcs",
+ "songName": {
+ "jpText": "旋風ノ舞【地】",
+ "jpFont": 0,
+ "enText": "Senpuu no Mai [Earth]",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "旋風ノ舞【地】",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "shabra",
+ "songName": {
+ "jpText": "シャイニング☆アブラカタブラ",
+ "jpFont": 0,
+ "enText": "Shining☆Abracadabra",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "~阿羅仁&マジカルランプ姫~",
+ "jpFont": 0,
+ "enText": "~Alajin & Magical Lamp Princess~",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "シャイニング☆アブラカタブラ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "shgclr",
+ "songName": {
+ "jpText": "カラフル",
+ "jpFont": 0,
+ "enText": "Colorful",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "しょご/野村渉悟",
+ "jpFont": 0,
+ "enText": "Shogo/Shougo Nomura",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "カラフル",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "shikou",
+ "songName": {
+ "jpText": "紫煌ノ乱",
+ "jpFont": 0,
+ "enText": "Shikou no Ran",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "世阿弥",
+ "jpFont": 0,
+ "enText": "Xeami",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "紫煌ノ乱",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "shing3",
+ "songName": {
+ "jpText": "僕の戦争",
+ "jpFont": 0,
+ "enText": "My War (Boku no Sensou)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「進撃の巨人 FinalSeason」より",
+ "jpFont": 0,
+ "enText": "From \" Attack on Titan The Final Season \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "僕の戦争",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "shingk",
+ "songName": {
+ "jpText": "紅蓮の弓矢",
+ "jpFont": 0,
+ "enText": "Guren no Yumiya",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「進撃の巨人」より",
+ "jpFont": 0,
+ "enText": "From \" Attack on Titan \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "紅蓮の弓矢",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "shinyk",
+ "songName": {
+ "jpText": "Shiny Kung-fu Revival",
+ "jpFont": 0,
+ "enText": "Shiny Kung-fu Revival",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "t+pazolite",
+ "jpFont": 0,
+ "enText": "t+pazolite",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "shohos",
+ "songName": {
+ "jpText": "恋の処方箋",
+ "jpFont": 0,
+ "enText": "Koi no Shohousen",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "恋の処方箋",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "shoto9",
+ "songName": {
+ "jpText": "聖徳たいこの「日いずるまで飛鳥」",
+ "jpFont": 0,
+ "enText": "Shoutoku Taiko no 「Hi Izuru Made Asuka」",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "コバヤシユウヤ(IOSYS) feat.miko",
+ "jpFont": 0,
+ "enText": "Yuuya Kobayashi (IOSYS) feat. miko",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "聖徳たいこの「日いずるまで飛鳥」",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "shugkt",
+ "songName": {
+ "jpText": "シューガク トラベラーズ",
+ "jpFont": 0,
+ "enText": "Shugaku Travelers",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "うちやえゆか",
+ "jpFont": 0,
+ "enText": "Yuka Uchiyae",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "シューガク トラベラーズ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "shushu",
+ "songName": {
+ "jpText": "ポニーテールとシュシュ",
+ "jpFont": 0,
+ "enText": "Ponytail to Shushu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ポニーテールとシュシュ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sidrai",
+ "songName": {
+ "jpText": "レイン",
+ "jpFont": 0,
+ "enText": "Rain",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「鋼の錬金術師 FULLMETAL ALCHEMIST」OP曲",
+ "jpFont": 0,
+ "enText": "\" Fullmetal Alchemist: Brotherhood \" Opening Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "レイン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "siduso",
+ "songName": {
+ "jpText": "嘘",
+ "jpFont": 0,
+ "enText": "Uso",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「鋼の錬金術師FULLMETAL ALCHEMIST」より",
+ "jpFont": 0,
+ "enText": "From \" Fullmetal Alchemist: Brotherhood \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "嘘",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sinrab",
+ "songName": {
+ "jpText": "森羅万象",
+ "jpFont": 0,
+ "enText": "Shinra Banshou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "削除",
+ "jpFont": 0,
+ "enText": "Sakuzyo",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "森羅万象",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sinryu",
+ "songName": {
+ "jpText": "神竜 ~Shinryu~",
+ "jpFont": 0,
+ "enText": "Shinryu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "あず♪ & Masahiro \"Godspeed\" Aoki",
+ "jpFont": 0,
+ "enText": "Azu & Masahiro \"Godspeed\" Aoki",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "神竜 ~Shinryu~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "siuryu",
+ "songName": {
+ "jpText": "秋竜 ~Shiuryu~",
+ "jpFont": 0,
+ "enText": "Shiuryu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "秋竜 ~Shiuryu~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sk7kun",
+ "songName": {
+ "jpText": "おさかな毎日!さかなクン",
+ "jpFont": 0,
+ "enText": "Osakana Mainichi! Sakana-kun",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "さかなクン",
+ "jpFont": 0,
+ "enText": "Sakana-kun",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "おさかな毎日!さかなクン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ska",
+ "songName": {
+ "jpText": "ゴーゴー・キッチン",
+ "jpFont": 0,
+ "enText": "Go Go - Kitchen",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "太鼓の達人オリジナル曲",
+ "jpFont": 0,
+ "enText": "Taiko no Tatsujin Original Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ゴーゴー・キッチン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "skodrg",
+ "songName": {
+ "jpText": "Dragon Night",
+ "jpFont": 0,
+ "enText": "Dragon Night",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "SEKAI NO OWARI",
+ "jpFont": 0,
+ "enText": "SEKAI NO OWARI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "skorpg",
+ "songName": {
+ "jpText": "RPG",
+ "jpFont": 0,
+ "enText": "RPG",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「映画クレヨンしんちゃん バカうまっ!B級グルメサバイバル」より",
+ "jpFont": 0,
+ "enText": "From \" Crayon Shin-chan:Very Tasty! B-class Gourmet Survival!! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "skrexh",
+ "songName": {
+ "jpText": "SAKURA EXHAUST",
+ "jpFont": 0,
+ "enText": "SAKURA EXHAUST",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "skrnb",
+ "songName": {
+ "jpText": "さくらんぼ",
+ "jpFont": 0,
+ "enText": "Sakuranbo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "さくらんぼ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "slance",
+ "songName": {
+ "jpText": "Scarlet Lance",
+ "jpFont": 0,
+ "enText": "Scarlet Lance",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "MASAKI(ZUNTATA)「グルーヴコースター」より",
+ "jpFont": 0,
+ "enText": "MASAKI(ZUNTATA)From \" Groove Coaster \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "slash",
+ "songName": {
+ "jpText": "恋文2000",
+ "jpFont": 0,
+ "enText": "Koibumi 2000",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "恋文2000",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "smncon",
+ "songName": {
+ "jpText": "Connected World",
+ "jpFont": 0,
+ "enText": "Connected World",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "somunia",
+ "jpFont": 0,
+ "enText": "somunia",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "smntwi",
+ "songName": {
+ "jpText": "twinkle night (feat. somunia)",
+ "jpFont": 0,
+ "enText": "twinkle night (feat. somunia)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "nyankobrq & yaca",
+ "jpFont": 0,
+ "enText": "nyankobrq & yaca",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "smokyt",
+ "songName": {
+ "jpText": "SMOKY THRILL",
+ "jpFont": 0,
+ "enText": "SMOKY THRILL",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "snyq",
+ "songName": {
+ "jpText": "承認欲Q",
+ "jpFont": 0,
+ "enText": "Shounin YokkQ",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "かねこちはる feat.はぁち",
+ "jpFont": 0,
+ "enText": "Chiharu Kaneko feat. haxchi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "承認欲Q",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "so2om2",
+ "songName": {
+ "jpText": "そつおめしき2ばん",
+ "jpFont": 0,
+ "enText": "Sotsu Omeshiki 2-ban",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat. unmo",
+ "jpFont": 0,
+ "enText": "feat.unmo",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "そつおめしき2ばん",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "so2ome",
+ "songName": {
+ "jpText": "そつおめしき",
+ "jpFont": 0,
+ "enText": "Sotsu Omeshiki",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat. unmo",
+ "jpFont": 0,
+ "enText": "feat.unmo",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "そつおめしき",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sora1x",
+ "songName": {
+ "jpText": "SORA-Ⅰ アースライズ",
+ "jpFont": 0,
+ "enText": "SORA-I Earthrise",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "SORA-Ⅰ アースライズ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sora2x",
+ "songName": {
+ "jpText": "SORA-Ⅱ グリーゼ581",
+ "jpFont": 0,
+ "enText": "SORA-II Gliese 581",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "SORA-Ⅱ グリーゼ581",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sora6x",
+ "songName": {
+ "jpText": "SORA-Ⅵ 火ノ鳥",
+ "jpFont": 0,
+ "enText": "SORA-VI Hinotori",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "SORA-Ⅵ 火ノ鳥",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sora7x",
+ "songName": {
+ "jpText": "SORA-Ⅶ シグナスウォール",
+ "jpFont": 0,
+ "enText": "SORA-VII Cygnus Wall",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "SORA-Ⅶ シグナスウォール",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "soroba",
+ "songName": {
+ "jpText": "十露盤2000",
+ "jpFont": 0,
+ "enText": "Soroban 2000",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "十露盤2000",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "souryu",
+ "songName": {
+ "jpText": "双竜ノ乱",
+ "jpFont": 0,
+ "enText": "Souryu no Ran",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "世阿弥",
+ "jpFont": 0,
+ "enText": "Xeami",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "双竜ノ乱",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "spdoto",
+ "songName": {
+ "jpText": "疾風怒濤",
+ "jpFont": 0,
+ "enText": "Shippuudotou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "xi",
+ "jpFont": 0,
+ "enText": "xi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "疾風怒濤",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "spl2md",
+ "songName": {
+ "jpText": "スプラトゥーン2 メドレー",
+ "jpFont": 0,
+ "enText": "Splatoon 2 Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "スプラトゥーン2 メドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "splsio",
+ "songName": {
+ "jpText": "シオカラ節",
+ "jpFont": 0,
+ "enText": "Calamari Inkantation",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「スプラトゥーン」より",
+ "jpFont": 0,
+ "enText": "From \" Splatoon \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "シオカラ節",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "spride",
+ "songName": {
+ "jpText": "Spectral Rider",
+ "jpFont": 0,
+ "enText": "Spectral Rider",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "濱本理央(BNSI)",
+ "jpFont": 0,
+ "enText": "Rio Hamamoto(BNSI)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sqr",
+ "songName": {
+ "jpText": "スポーツダイジェスドン",
+ "jpFont": 0,
+ "enText": "Sports Digestdon",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "~Fill in The Sky~",
+ "jpFont": 0,
+ "enText": "~Fill in The Sky~",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "スポーツダイジェスドン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sqr2",
+ "songName": {
+ "jpText": "junction",
+ "jpFont": 0,
+ "enText": "junction",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sqr3",
+ "songName": {
+ "jpText": "Amber Light",
+ "jpFont": 0,
+ "enText": "Amber Light",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "BNSI(中鶴潤一)",
+ "jpFont": 0,
+ "enText": "BNSI(Junichi Nakatsuru)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sss",
+ "songName": {
+ "jpText": "super star shooter",
+ "jpFont": 0,
+ "enText": "super star shooter",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "blue marble",
+ "jpFont": 0,
+ "enText": "blue marble",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sstnue",
+ "songName": {
+ "jpText": "晨星ト鵺",
+ "jpFont": 0,
+ "enText": "The Nue and Morning Stars",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Silentroom",
+ "jpFont": 0,
+ "enText": "Silentroom",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "晨星ト鵺",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "stabof",
+ "songName": {
+ "jpText": "合唱スタボーフェ!",
+ "jpFont": 0,
+ "enText": "Gasshou Stabofe!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "with たま☆たい feat.団地ノ宮",
+ "jpFont": 0,
+ "enText": "with Tama☆Tai feat. Danchinomiya",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "合唱スタボーフェ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "starrr",
+ "songName": {
+ "jpText": "SstTAarR*",
+ "jpFont": 0,
+ "enText": "SstTAarR*",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "M-O-T-U feat.初音ミク",
+ "jpFont": 0,
+ "enText": "M-O-T-U feat.Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "staytn",
+ "songName": {
+ "jpText": "STAY TUNE",
+ "jpFont": 0,
+ "enText": "STAY TUNE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Suchmos",
+ "jpFont": 0,
+ "enText": "Suchmos",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "stmic8",
+ "songName": {
+ "jpText": "カナデア",
+ "jpFont": 0,
+ "enText": "Canadea",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "カナデア",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "stpsss",
+ "songName": {
+ "jpText": "スキスキ星人",
+ "jpFont": 0,
+ "enText": "Love Love Alien",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "すとぷり / ナユタン星人",
+ "jpFont": 0,
+ "enText": "Strawberry Prince / NayutalieN",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "スキスキ星人",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "stpstp",
+ "songName": {
+ "jpText": "ストロベリー☆プラネット!",
+ "jpFont": 0,
+ "enText": "Strawberry☆Planet!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "すとぷり / ナユタン星人",
+ "jpFont": 0,
+ "enText": "Strawberry Prince / NayutalieN",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ストロベリー☆プラネット!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "stpstr",
+ "songName": {
+ "jpText": "Streamer",
+ "jpFont": 0,
+ "enText": "Streamer",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "すとぷり / ツイキャス「ふるふるふるーつキャンペーン」キャンペーンソング",
+ "jpFont": 0,
+ "enText": "Strawberry Prince / TwitCasting “Furu Furu Fruit Campaign“ Campaign Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "stru8b",
+ "songName": {
+ "jpText": "ピコピコ ルイン",
+ "jpFont": 0,
+ "enText": "Picopico Ruin",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "セイクリッド ルイン × サカモト教授",
+ "jpFont": 0,
+ "enText": "Sacred Ruin × Professor Sakamoto",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ピコピコ ルイン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "struin",
+ "songName": {
+ "jpText": "セイクリッド ルイン",
+ "jpFont": 0,
+ "enText": "Sacred Ruin",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "セイクリッド ルイン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "stshow",
+ "songName": {
+ "jpText": "Stick Trick ShowTime!!",
+ "jpFont": 0,
+ "enText": "Stick Trick ShowTime!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "みそみぃる",
+ "jpFont": 0,
+ "enText": "MisomyL",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "suha2k",
+ "songName": {
+ "jpText": "スーハー2000",
+ "jpFont": 0,
+ "enText": "Suuhaa 2000",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "スーハー2000",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "suirnk",
+ "songName": {
+ "jpText": "睡蓮花",
+ "jpFont": 0,
+ "enText": "Suirenka",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "睡蓮花",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sukatb",
+ "songName": {
+ "jpText": "スカッとばあちゃんの歌",
+ "jpFont": 0,
+ "enText": "Sukatto Bachan no Uta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「痛快TVスカッとジャパン」より",
+ "jpFont": 0,
+ "enText": "From \" Tsukai TV Sukatto Japan \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "スカッとばあちゃんの歌",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "susano",
+ "songName": {
+ "jpText": "須佐之男",
+ "jpFont": 0,
+ "enText": "Susanoo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Tatsh a.k.a 世阿弥",
+ "jpFont": 0,
+ "enText": "Tatsh a.k.a Xeami",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "須佐之男",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sw1op",
+ "songName": {
+ "jpText": "フリフリ♪ノリノリ♪",
+ "jpFont": 0,
+ "enText": "Furifuri♪Norinori♪",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「太鼓の達人 Nintendo Switchば~じょん!」テーマソング",
+ "jpFont": 0,
+ "enText": "\" Taiko no Tatsujin:Drum 'n' Fun \" Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "フリフリ♪ノリノリ♪",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "syairl",
+ "songName": {
+ "jpText": "シンクロニカ・エアライン",
+ "jpFont": 0,
+ "enText": "Synchronica Airlines",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Taku Inoue 「シンクロニカ」より",
+ "jpFont": 0,
+ "enText": "Taku Inoue From \" Synchronica \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "シンクロニカ・エアライン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sycano",
+ "songName": {
+ "jpText": "カノン (シンクロニカ Remix)",
+ "jpFont": 0,
+ "enText": "Canon (Synchronica Remix)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「シンクロニカ」より",
+ "jpFont": 0,
+ "enText": "From \" Synchronica \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "カノン (シンクロニカ Remix)",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "syclsn",
+ "songName": {
+ "jpText": "New World",
+ "jpFont": 0,
+ "enText": "New World",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「シンクロニカ」より",
+ "jpFont": 0,
+ "enText": "From \" Synchronica \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sykake",
+ "songName": {
+ "jpText": "駆け抜けてゆく",
+ "jpFont": 0,
+ "enText": "Kakenuketeyuku",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "すえP 「シンクロニカ」より",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "駆け抜けてゆく",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sylray",
+ "songName": {
+ "jpText": "Libera Ray",
+ "jpFont": 0,
+ "enText": "Libera Ray",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "steμ feat. siroa 「シンクロニカ」より",
+ "jpFont": 0,
+ "enText": "steμ feat. siroa From \" Synchronica \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "syseka",
+ "songName": {
+ "jpText": "せかいのおと - sekai note -",
+ "jpFont": 0,
+ "enText": "Sekai no Oto -sekai note-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "FILTER SYSTEM 「シンクロニカ」より",
+ "jpFont": 0,
+ "enText": "FILTER SYSTEM/Synchronica",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "せかいのおと - sekai note -",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sysurf",
+ "songName": {
+ "jpText": "Surf Zapping",
+ "jpFont": 0,
+ "enText": "Surf Zapping",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "t+pazolite 「シンクロニカ」より",
+ "jpFont": 0,
+ "enText": "t+pazolite From \" Synchronica \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sysync",
+ "songName": {
+ "jpText": "Synchronicity",
+ "jpFont": 0,
+ "enText": "Synchronicity",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「シンクロニカ」より",
+ "jpFont": 0,
+ "enText": "From \" Synchronica \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "syyoak",
+ "songName": {
+ "jpText": "夜明けまであと3秒",
+ "jpFont": 0,
+ "enText": "Yoake Made Ato 3-byou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「シンクロニカ」より",
+ "jpFont": 0,
+ "enText": "From \" Synchronica \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "夜明けまであと3秒",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "syyura",
+ "songName": {
+ "jpText": "ゆらめ",
+ "jpFont": 0,
+ "enText": "Yurame",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ミフメイ 「シンクロニカ」より",
+ "jpFont": 0,
+ "enText": "mifumei From \" Synchronica \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ゆらめ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ta5ta5",
+ "songName": {
+ "jpText": "Turquoise Tachometer",
+ "jpFont": 0,
+ "enText": "Turquoise Tachometer",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "AJURIKA",
+ "jpFont": 0,
+ "enText": "AJURIKA",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "taberu",
+ "songName": {
+ "jpText": "タベルナ2000",
+ "jpFont": 0,
+ "enText": "Taberuna 2000",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "タベルナ2000",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tabetm",
+ "songName": {
+ "jpText": "タベテモタベテモ",
+ "jpFont": 0,
+ "enText": "Tabetemo Tabetemo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "☆しょーじ☆ feat.ほのか♡えりか",
+ "jpFont": 0,
+ "enText": "☆syoji☆ feat. Honoka♡Erika",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "タベテモタベテモ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tadkim",
+ "songName": {
+ "jpText": "ただ君に晴れ",
+ "jpFont": 0,
+ "enText": "Cloudless",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ヨルシカ",
+ "jpFont": 0,
+ "enText": "Yorushika",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ただ君に晴れ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "takamg",
+ "songName": {
+ "jpText": "私立高天原学園高校・校歌",
+ "jpFont": 0,
+ "enText": "Shiritsu Takama-ga-hara Gakuen Koukou Kouka",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "D.watt(IOSYS) feat. Np 犬田彦 & 山本椛",
+ "jpFont": 0,
+ "enText": "D.watt(IOSYS) feat. Np Inutahiko & Yamamoto Momiji",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "私立高天原学園高校・校歌",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tamlb1",
+ "songName": {
+ "jpText": "スーパーD&D ~完全にリードしてアイマイミー~",
+ "jpFont": 0,
+ "enText": "Super D&D ~Kanzen ni Lead Shite I-my-me~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "むらたたむ&レディビアード",
+ "jpFont": 0,
+ "enText": "Muratatam & Ladybeard",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "スーパーD&D ~完全にリードしてアイマイミー~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tamlb2",
+ "songName": {
+ "jpText": "D絶対!SAMURAIインザレイン",
+ "jpFont": 0,
+ "enText": "D-Zettai! SAMURAI in the Rain",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "むらたたむ&レディビアード",
+ "jpFont": 0,
+ "enText": "Muratatam & Ladybeard",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "D絶対!SAMURAIインザレイン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tank",
+ "songName": {
+ "jpText": "やわらか戦車",
+ "jpFont": 0,
+ "enText": "Yawaraka Sensha",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "やわらか戦車",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tbnito",
+ "songName": {
+ "jpText": "束ね糸",
+ "jpFont": 0,
+ "enText": "Tabaneito",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "はるなば feat.石黒千尋",
+ "jpFont": 0,
+ "enText": "Harunaba feat. Chihiro Ishiguro",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "束ね糸",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tdcafe",
+ "songName": {
+ "jpText": "ツンデレCafeへようこそ☆",
+ "jpFont": 0,
+ "enText": "Tsundere Cafe e Youkoso☆",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ねこじゃが*",
+ "jpFont": 0,
+ "enText": "Nekojaga*",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ツンデレCafeへようこそ☆",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tdm",
+ "songName": {
+ "jpText": "Taiko Drum Monster",
+ "jpFont": 0,
+ "enText": "Taiko Drum Monster",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "steμ feat.siroa",
+ "jpFont": 0,
+ "enText": "steμ feat.siroa",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tecdrv",
+ "songName": {
+ "jpText": "TD - 28619029byte remix -",
+ "jpFont": 0,
+ "enText": "TD - 28619029byte remix -",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「テクノドライブ」より",
+ "jpFont": 0,
+ "enText": "From \" Techno Drive \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tek3ds",
+ "songName": {
+ "jpText": "Wasabi Body Blow",
+ "jpFont": 0,
+ "enText": "Wasabi Body Blow",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「鉄拳 3D プライム エディション」より",
+ "jpFont": 0,
+ "enText": "From \" Tekken 3D: Prime Edition \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tekwiu",
+ "songName": {
+ "jpText": "Highschool love!",
+ "jpFont": 0,
+ "enText": "Highschool love!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「鉄拳タッグトーナメント2 Wii U EDITION」より",
+ "jpFont": 0,
+ "enText": "From “ Tekken Tag Tournament 2 Wii U Edition ”",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "telesc",
+ "songName": {
+ "jpText": "仮想現実のテレスコープ",
+ "jpFont": 0,
+ "enText": "the telescope in virtual reality",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "deli.",
+ "jpFont": 0,
+ "enText": "deli.",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "仮想現実のテレスコープ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ten9nr",
+ "songName": {
+ "jpText": "天泣の律",
+ "jpFont": 0,
+ "enText": "Tenkyuu no Ritsu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Capchii",
+ "jpFont": 0,
+ "enText": "Capchii",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "天泣の律",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tenyou",
+ "songName": {
+ "jpText": "天妖ノ舞",
+ "jpFont": 0,
+ "enText": "Tenyou no Mai",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "天妖ノ舞",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tetra",
+ "songName": {
+ "jpText": "テトラリュトモスフォビア",
+ "jpFont": 0,
+ "enText": "Tetrarhythmosphobia",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat.ルシュカ",
+ "jpFont": 0,
+ "enText": "feat.Luschka",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "テトラリュトモスフォビア",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "th1682",
+ "songName": {
+ "jpText": "色は匂へど散りぬるを",
+ "jpFont": 0,
+ "enText": "Iro wa Niho e do Chiri nuru o",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ 幽閉サテライト",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange / Yu-Hei Satellite",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "色は匂へど散りぬるを",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "th2ksh",
+ "songName": {
+ "jpText": "二人の結晶-INNOCENCE-",
+ "jpFont": 0,
+ "enText": "Futari no Kessho -INNOCENCE-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ 暁Records",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange / Akatsuki Records",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "二人の結晶-INNOCENCE-",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "th7171",
+ "songName": {
+ "jpText": "ナイト・オブ・ナイツ",
+ "jpFont": 0,
+ "enText": "Night of Knights / Knight of Nights",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ ビートまりお ",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange / beatMARIO",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ナイト・オブ・ナイツ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thchi2",
+ "songName": {
+ "jpText": "チルノのパーフェクトさんすう教室 9周年バージョン",
+ "jpFont": 0,
+ "enText": "Cirno's Perfect Math Class 9th Anniversary Version",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ IOSYSと愉快な9周年フレンズ",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange / IOSYS and Happy 9th Anniversary Friends",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "チルノのパーフェクトさんすう教室 9周年バージョン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thchi3",
+ "songName": {
+ "jpText": "元祖!天才チルノちゃん☆",
+ "jpFont": 0,
+ "enText": "Ganso! Genius Cirno-chan☆",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ コバヤシユウヤ(IOSYS) feat.miko(Alternative ending)",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange / Yuuya Kobayashi(IOSYS) feat.miko(Alternative ending)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "元祖!天才チルノちゃん☆",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thclmt",
+ "songName": {
+ "jpText": "Calamity Fortune",
+ "jpFont": 0,
+ "enText": "Calamity Fortune",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ LeaF",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange / LeaF",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "theme2",
+ "songName": {
+ "jpText": "太鼓ラブ!",
+ "jpFont": 0,
+ "enText": "Taiko Love!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "太鼓ラブ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thflnd",
+ "songName": {
+ "jpText": "最終鬼畜妹フランドール・S",
+ "jpFont": 0,
+ "enText": "Saisyuu Kichiku Imouto Frandre・S",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ ビートまりお ",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange / beatMARIO",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "最終鬼畜妹フランドール・S",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thgs87",
+ "songName": {
+ "jpText": "幻想に咲いた花",
+ "jpFont": 0,
+ "enText": "A flower blooming on phantasm",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "岸田教団&THE明星ロケッツ×草野華余子 「東方ダンマクカグラ」より",
+ "jpFont": 0,
+ "enText": "Kisida Kyoudan & The Akeboshi Rockets x Kayoko Kusano from \" Touhou Danmaku Kagura \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "幻想に咲いた花",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thgsat",
+ "songName": {
+ "jpText": "幻想のサテライト",
+ "jpFont": 0,
+ "enText": "Genso no Satellite",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ 豚乙女",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange / Butaotome",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "幻想のサテライト",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thkanb",
+ "songName": {
+ "jpText": "患部で止まってすぐ溶ける ~ 狂気の優曇華院",
+ "jpFont": 0,
+ "enText": "Stop at the affected part and melt quickly ~ Madness Udongein",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ ARM (IOSYS) feat.miko",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange / Arm(IOSYS) feat. miko",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "患部で止まってすぐ溶ける ~ 狂気の優曇華院",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thkero",
+ "songName": {
+ "jpText": "ケロ9destiny",
+ "jpFont": 0,
+ "enText": "Kero9destiny",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ Silver Forest",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange / Silver Forest",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ケロ9destiny",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thm241",
+ "songName": {
+ "jpText": "マツヨイナイトバグ",
+ "jpFont": 0,
+ "enText": "Matsuyoi Nightbug",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "COOL&CREATE feat.ビートまりおとまろん 「東方ダンマクカグラ」より",
+ "jpFont": 0,
+ "enText": "COOL&CREATE feat.beatMARIO and MARON from \" Touhou Danmaku Kagura \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "マツヨイナイトバグ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thmhrb",
+ "songName": {
+ "jpText": "泡沫、哀のまほろば",
+ "jpFont": 0,
+ "enText": "Ephemeral, Great and Splendid Land of Grief",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ 幽閉サテライト",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange / Yuuhei Satellite",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "泡沫、哀のまほろば",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thmura",
+ "songName": {
+ "jpText": "月に叢雲華に風",
+ "jpFont": 0,
+ "enText": "Tsuki Ni Murakumo Hana Ni Kaze",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ 幽閉サテライト",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange / Yu-Hei Satellite",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "月に叢雲華に風",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thnegp",
+ "songName": {
+ "jpText": "NeGa/PoSi*ラブ/コール",
+ "jpFont": 0,
+ "enText": "NeGa/PoSi*Love/Call",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ 凋叶棕",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange / Diao Ye Zong",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "NeGa/PoSi*ラブ/コール",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thnkyo",
+ "songName": {
+ "jpText": "深緋の心臓 -SCARLET HEART-",
+ "jpFont": 0,
+ "enText": "Kokihi no Shinzou - Scarlet Heart -",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Project×NAMCO SOUNDS kyo feat.あさな(IOSYS)",
+ "jpFont": 0,
+ "enText": "Touhou Project×NAMCO SOUNDS / kyo feat. asana(IOSYS)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "深緋の心臓 -SCARLET HEART-",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thnlnd",
+ "songName": {
+ "jpText": "郢曲/暁闇",
+ "jpFont": 0,
+ "enText": "Eikyoku/Gyouan",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Project×NAMCO SOUNDS LindaAI-CUE",
+ "jpFont": 0,
+ "enText": "Touhou Project×NAMCO SOUNDS / LindaAI-CUE",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "郢曲/暁闇",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thnnak",
+ "songName": {
+ "jpText": "Ladystar Wandering",
+ "jpFont": 0,
+ "enText": "Ladystar Wandering",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Project×NAMCO SOUNDS 中鶴潤一",
+ "jpFont": 0,
+ "enText": "Touhou Project×NAMCO SOUNDS / Junichi Nakatsuru",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thnryo",
+ "songName": {
+ "jpText": "ライコタイコディスコ",
+ "jpFont": 0,
+ "enText": "Raiko-Taiko-Disco",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Project×NAMCO SOUNDS 渡辺量",
+ "jpFont": 0,
+ "enText": "Touhou Project×NAMCO SOUNDS / Ryo Watanabe",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ライコタイコディスコ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thntak",
+ "songName": {
+ "jpText": "サクラ・シークレット",
+ "jpFont": 0,
+ "enText": "Sakura Secret",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Project×NAMCO SOUNDS Taku Inoue 「シンクロニカ」より",
+ "jpFont": 0,
+ "enText": "Touhou Project×NAMCO SOUNDS / Taku Inoue From \" Synchronica \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "サクラ・シークレット",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thscre",
+ "songName": {
+ "jpText": "Scream out! -達人Edit.-",
+ "jpFont": 0,
+ "enText": "Scream out! -Tatsujin Edit.-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ A-One",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange / A-One",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Scream out! -達人Edit.-",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thseek",
+ "songName": {
+ "jpText": "Endless Seeker",
+ "jpFont": 0,
+ "enText": "Endless Seeker",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ A-One",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange / A-One",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thzesh",
+ "songName": {
+ "jpText": "仙酌絶唱のファンタジア",
+ "jpFont": 0,
+ "enText": "Senshaku Zesshou no Fantasia",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ 博麗神社例大祭コラボユニット",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange / Hakurei Shrine Reitaisai Collab Unit",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "仙酌絶唱のファンタジア",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "timtrv",
+ "songName": {
+ "jpText": "タイムトラベラー",
+ "jpFont": 0,
+ "enText": "Time Traveler",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "伊東歌詞太郎",
+ "jpFont": 0,
+ "enText": "Ito Kashitaro",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "タイムトラベラー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tkroll",
+ "songName": {
+ "jpText": "タイコロール",
+ "jpFont": 0,
+ "enText": "Taiko Roll",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "steμ feat.siroa",
+ "jpFont": 0,
+ "enText": "steμ feat.siroa",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "タイコロール",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tksoda",
+ "songName": {
+ "jpText": "東京ソーダ 8Bit Edit",
+ "jpFont": 0,
+ "enText": "Tokyo Soda 8Bit Edit",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ヒゲドライVAN",
+ "jpFont": 0,
+ "enText": "Hige DriVAN",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "東京ソーダ 8Bit Edit",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tktime",
+ "songName": {
+ "jpText": "タイコタイム",
+ "jpFont": 0,
+ "enText": "Taiko Time",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "タイコタイム",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tnkai2",
+ "songName": {
+ "jpText": "愛にできることはまだあるかい",
+ "jpFont": 0,
+ "enText": "Is There Still Anything That Love Can Do?",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「天気の子」より",
+ "jpFont": 0,
+ "enText": "From \" Weathering With You \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "愛にできることはまだあるかい",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "toabs",
+ "songName": {
+ "jpText": "テイルズ オブ ジ アビス",
+ "jpFont": 0,
+ "enText": "Tales of the Abyss",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "The arrow was shot",
+ "jpFont": 0,
+ "enText": "From \" Tales of the Abyss \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "テイルズ オブ ジ アビス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tokkyo",
+ "songName": {
+ "jpText": "東京特許キョ許可局局長!!",
+ "jpFont": 0,
+ "enText": "Tokyo Tokkyo-kyo Kyokakyoku Kyokuchou!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "東京特許キョ許可局局長",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "toori4",
+ "songName": {
+ "jpText": "トオリヨ",
+ "jpFont": 0,
+ "enText": "Tooriyo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "テヅカ feat.鏡音リン・鏡音レン",
+ "jpFont": 0,
+ "enText": "Tezuka feat.Kagamine Rin・Kagamine Len",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "トオリヨ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tor",
+ "songName": {
+ "jpText": "Nesin Amatias",
+ "jpFont": 0,
+ "enText": "Nesin Amatias",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "toreve",
+ "songName": {
+ "jpText": "光る闇",
+ "jpFont": 0,
+ "enText": "Hikaru Yami",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "テイルズ オブ ザ ワールド レーヴ ユナイティア",
+ "jpFont": 0,
+ "enText": "Tales of the World:Reve Unitia",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "光る闇",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "toukem",
+ "songName": {
+ "jpText": "刀剣乱舞",
+ "jpFont": 0,
+ "enText": "Touken Ranbu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "刀剣男士 team三条 with加州清光",
+ "jpFont": 0,
+ "enText": "Touken Danshi:Team Sanjou with Kashuu Kiyomitsu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "刀剣乱舞",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "toymat",
+ "songName": {
+ "jpText": "トイマチック☆パレード!!",
+ "jpFont": 0,
+ "enText": "Toymatic☆Parade!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "DJ Genki",
+ "jpFont": 0,
+ "enText": "DJ Genki",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "トイマチック☆パレード!!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "troika",
+ "songName": {
+ "jpText": "ロシア民謡メドレー",
+ "jpFont": 0,
+ "enText": "Russian Folk Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ロシア民謡メドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "trustg",
+ "songName": {
+ "jpText": "トラストゲーム",
+ "jpFont": 0,
+ "enText": "Trust Game",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat.SaChi(harineko)",
+ "jpFont": 0,
+ "enText": "feat.SaChi(harineko)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "トラストゲーム",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tttank",
+ "songName": {
+ "jpText": "戦え! T3防衛隊 ~GDI mix~",
+ "jpFont": 0,
+ "enText": "Tatakae! T3 Boueitai ~GDI mix~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「TANK! TANK! TANK!」より",
+ "jpFont": 0,
+ "enText": "From \" Tank! Tank! Tank! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "戦え! T3防衛隊 ~GDI mix~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tttt",
+ "songName": {
+ "jpText": "Toon Town’s Toys’ Tune",
+ "jpFont": 0,
+ "enText": "Toon Town’s Toys’ Tune",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Retropolitaliens",
+ "jpFont": 0,
+ "enText": "Retropolitaliens",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tuku43",
+ "songName": {
+ "jpText": "月読命",
+ "jpFont": 0,
+ "enText": "Tsukuyomi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Tatsh a.k.a 世阿弥",
+ "jpFont": 0,
+ "enText": "Tatsh a.k.a Xeami",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "月読命",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "turing",
+ "songName": {
+ "jpText": "チューリングラブ feat.Sou / ナナヲアカリ",
+ "jpFont": 0,
+ "enText": "Turing Love feat.Sou / Nanawo Akari",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ナユタン星人 / 「理系が恋に落ちたので証明してみた。」より",
+ "jpFont": 0,
+ "enText": "NayutalieN / From \" Rikei ga Koi ni Ochita no de Shoumei Shite Mita. \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "チューリングラブ feat.Sou / ナナヲアカリ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tuykrb",
+ "songName": {
+ "jpText": "くらべられっ子",
+ "jpFont": 0,
+ "enText": "Compared Child",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ツユ",
+ "jpFont": 0,
+ "enText": "Tuyu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "くらべられっ子",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "twccp",
+ "songName": {
+ "jpText": "Candy Pop",
+ "jpFont": 0,
+ "enText": "Candy Pop",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "TWICE",
+ "jpFont": 0,
+ "enText": "TWICE",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "twctt",
+ "songName": {
+ "jpText": "TT -Japanese ver.-",
+ "jpFont": 0,
+ "enText": "TT -Japanese ver.-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "TWICE",
+ "jpFont": 0,
+ "enText": "TWICE",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "u3gino",
+ "songName": {
+ "jpText": "うさぎのしっぽ",
+ "jpFont": 0,
+ "enText": "Usagi no Shippo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "うさぎのしっぽ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "uchubk",
+ "songName": {
+ "jpText": "うちゅうひこうし冒険譚",
+ "jpFont": 0,
+ "enText": "Uchuu-hikoushi Boukentan",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "しょご/野村渉悟",
+ "jpFont": 0,
+ "enText": "Shogo/Shougo Nomura",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "うちゅうひこうし冒険譚",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ufoswn",
+ "songName": {
+ "jpText": "UFO Swingin’",
+ "jpFont": 0,
+ "enText": "UFO Swingin’",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "シバガキ feat. A.Dokuga",
+ "jpFont": 0,
+ "enText": "Shibagaki feat.A.Dokuga",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "uheart",
+ "songName": {
+ "jpText": "UNDEAD HEART(怒りのWarriors)",
+ "jpFont": 0,
+ "enText": "UNDEAD HEART(Ikari no Warriors)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "坂本英三×高濱祐輔",
+ "jpFont": 0,
+ "enText": "Eizo Sakamoto × Yusuke Takahama",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "UNDEAD HEART(怒りのWarriors)",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ujopop",
+ "songName": {
+ "jpText": "友情ぽっぷ",
+ "jpFont": 0,
+ "enText": "Yuujou Pop",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "友情ぽっぷ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ultged",
+ "songName": {
+ "jpText": "GEEDの証",
+ "jpFont": 0,
+ "enText": "GEED no Akashi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "『ウルトラマンジード』より",
+ "jpFont": 0,
+ "enText": "From \" Ultraman Geed \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "GEEDの証",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ultgng",
+ "songName": {
+ "jpText": "ウルトラマンギンガの歌",
+ "jpFont": 0,
+ "enText": "Ultraman Ginga no Uta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ウルトラマンギンガの歌",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ultorb",
+ "songName": {
+ "jpText": "オーブの祈り",
+ "jpFont": 0,
+ "enText": "Orb no Inori",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ウルトラマンオーブ」より",
+ "jpFont": 0,
+ "enText": "From \" Ultraman Orb \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "オーブの祈り",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ultx",
+ "songName": {
+ "jpText": "ウルトラマンX",
+ "jpFont": 0,
+ "enText": "Ultraman X",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ウルトラマンX",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "um8ga2",
+ "songName": {
+ "jpText": "8月の坂",
+ "jpFont": 0,
+ "enText": "Hachigatsu no Saka",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "んだほ&ぺけたん From Fischer’s",
+ "jpFont": 0,
+ "enText": "Ndaho & Peketan From Fischer's",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "8月の坂",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "umaba3",
+ "songName": {
+ "jpText": "アバみ",
+ "jpFont": 0,
+ "enText": "AV-A-MI",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "アバンティーズ",
+ "jpFont": 0,
+ "enText": "Avntis",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アバみ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "umclfp",
+ "songName": {
+ "jpText": "カラフル・パーティ",
+ "jpFont": 0,
+ "enText": "Colorful Party",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "HIMAWARIちゃんねる",
+ "jpFont": 0,
+ "enText": "Himawari Channel",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "カラフル・パーティ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "umgou",
+ "songName": {
+ "jpText": "轟!!!",
+ "jpFont": 0,
+ "enText": "GO!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "水溜りボンド",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "轟!!!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "umhmwr",
+ "songName": {
+ "jpText": "HIMAWARI HAPPY",
+ "jpFont": 0,
+ "enText": "HIMAWARI HAPPY",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "HIMAWARIちゃんねる",
+ "jpFont": 0,
+ "enText": "HIMAWARI Channel",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "umhnmr",
+ "songName": {
+ "jpText": "はねまり体操",
+ "jpFont": 0,
+ "enText": "HaneMari Exercise",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "はねまりチャンネル",
+ "jpFont": 0,
+ "enText": "Hanemari Channel",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "はねまり体操",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "umiiko",
+ "songName": {
+ "jpText": "イイコ進化論(feat. O-LuHA)",
+ "jpFont": 0,
+ "enText": "Iiko Shinkaron (feat. O-LuHA",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "えっちゃん",
+ "jpFont": 0,
+ "enText": "Ecchan",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "イイコ進化論(feat. O-LuHA)",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "umima",
+ "songName": {
+ "jpText": "今",
+ "jpFont": 0,
+ "enText": "Ima",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "HIKAKIN & SEIKIN",
+ "jpFont": 0,
+ "enText": "HIKAKIN & SEIKIN",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "今",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "umjoin",
+ "songName": {
+ "jpText": "JOIN US",
+ "jpFont": 0,
+ "enText": "JOIN US",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "UUUMコラボユニット",
+ "jpFont": 0,
+ "enText": "UUUM Collab Unit",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "umkami",
+ "songName": {
+ "jpText": "神様の言うとおりに",
+ "jpFont": 0,
+ "enText": "Kamisama no Iutoori ni",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ラトゥラトゥ(タケヤキ翔×マイキ)",
+ "jpFont": 0,
+ "enText": "LATU LATU (Takeyaki-sho x Maiki)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "神様の言うとおりに",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ummute",
+ "songName": {
+ "jpText": "ミュートすればいいじゃん。",
+ "jpFont": 0,
+ "enText": "Mute Sureba Iijan.",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ぁぃぁぃ",
+ "jpFont": 0,
+ "enText": "aiai",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ミュートすればいいじゃん。",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "umneko",
+ "songName": {
+ "jpText": "猫サンキュー",
+ "jpFont": 0,
+ "enText": "Neko Thank You",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "夕闇に誘いし漆黒の天使達",
+ "jpFont": 0,
+ "enText": "Yuuyami ni Izanaishi Shikkoku no Angel",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "猫サンキュー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "umniji",
+ "songName": {
+ "jpText": "虹",
+ "jpFont": 0,
+ "enText": "Niji",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Fischer’s-フィッシャーズ-",
+ "jpFont": 0,
+ "enText": "Fischer’s",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "虹",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "umrest",
+ "songName": {
+ "jpText": "RESTART",
+ "jpFont": 0,
+ "enText": "RESTART",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "TOSHIMITSU",
+ "jpFont": 0,
+ "enText": "TOSHIMITSU",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "umtube",
+ "songName": {
+ "jpText": "YouTubeテーマソング",
+ "jpFont": 0,
+ "enText": "YouTube Theme Song",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "HIKAKIN & SEIKIN",
+ "jpFont": 0,
+ "enText": "HIKAKIN & SEIKIN",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "YouTubeテーマソング",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "umzaso",
+ "songName": {
+ "jpText": "雑草",
+ "jpFont": 0,
+ "enText": "Zassou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "HIKAKIN & SEIKIN",
+ "jpFont": 0,
+ "enText": "HIKAKIN & SEIKIN",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "雑草",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "unlmtg",
+ "songName": {
+ "jpText": "アンリミテッドゲームズ",
+ "jpFont": 0,
+ "enText": "Unlimited Games",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Ponchi♪ feat. はぁち",
+ "jpFont": 0,
+ "enText": "Ponchi feat. haxchi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アンリミテッドゲームズ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "usa",
+ "songName": {
+ "jpText": "U.S.A.",
+ "jpFont": 0,
+ "enText": "U.S.A.",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "usouso",
+ "songName": {
+ "jpText": "うそうそ時",
+ "jpFont": 0,
+ "enText": "Usousodoki",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "うそうそ時",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "vertex",
+ "songName": {
+ "jpText": "VERTeX",
+ "jpFont": 0,
+ "enText": "VERTeX",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Hiro「maimai」より",
+ "jpFont": 0,
+ "enText": "Hiro From \" maimai \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "vfpetr",
+ "songName": {
+ "jpText": "雨とペトラ",
+ "jpFont": 0,
+ "enText": "Ameto Petora",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "バルーン feat.flower",
+ "jpFont": 0,
+ "enText": "balloon feat.flower",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "雨とペトラ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "vfshrr",
+ "songName": {
+ "jpText": "シャルル",
+ "jpFont": 0,
+ "enText": "Charles",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "バルーン feat.flower",
+ "jpFont": 0,
+ "enText": "balloon feat.flower",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "シャルル",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "vixtor",
+ "songName": {
+ "jpText": "Vixtory",
+ "jpFont": 0,
+ "enText": "Vixtory",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "CHUBAY",
+ "jpFont": 0,
+ "enText": "CHUBAY",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "vrock",
+ "songName": {
+ "jpText": "ユウガオノキミ",
+ "jpFont": 0,
+ "enText": "Yuugao no Kimi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ユウガオノキミ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "vt1b1x",
+ "songName": {
+ "jpText": "絶望へのトッカータ",
+ "jpFont": 0,
+ "enText": "Zetsubo e no Toccata",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "絶望へのトッカータ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "vt1b2x",
+ "songName": {
+ "jpText": "≠MM",
+ "jpFont": 0,
+ "enText": "≠MM",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "vt1op",
+ "songName": {
+ "jpText": "希望へのメロディー",
+ "jpFont": 0,
+ "enText": "Kibou Eno Melody",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「太鼓の達人 Vバージョン」テーマソング",
+ "jpFont": 0,
+ "enText": "\" Taiko no Tatsujin:V Version \" Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "希望へのメロディー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "w2bs2x",
+ "songName": {
+ "jpText": "ヒカリノカナタヘ",
+ "jpFont": 0,
+ "enText": "Hikari no Kanatae",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ヒカリノカナタヘ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "w2mtom",
+ "songName": {
+ "jpText": "ともに",
+ "jpFont": 0,
+ "enText": "Tomoni",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "WANIMA",
+ "jpFont": 0,
+ "enText": "WANIMA",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ともに",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "w2myat",
+ "songName": {
+ "jpText": "やってみよう",
+ "jpFont": 0,
+ "enText": "Yatte-miyou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "au「三太郎シリーズ」CMソング",
+ "jpFont": 0,
+ "enText": " au \" Three Tarous Series \" CM Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "やってみよう",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "w3at1x",
+ "songName": {
+ "jpText": "テルミン狂想曲",
+ "jpFont": 0,
+ "enText": "Theremin Rhapsody",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "第42楽章「悲愴」",
+ "jpFont": 0,
+ "enText": "42nd Movement \" Pathetique \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "テルミン狂想曲",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "w3at22",
+ "songName": {
+ "jpText": "オレサマパイレーツ",
+ "jpFont": 0,
+ "enText": "Oresama Pirates",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "オレサマパイレーツ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "wait4u",
+ "songName": {
+ "jpText": "waitin' for u",
+ "jpFont": 0,
+ "enText": "waitin' for u",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Jun Kuroda",
+ "jpFont": 0,
+ "enText": "Jun Kuroda",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "wangan",
+ "songName": {
+ "jpText": "Lightning Dance",
+ "jpFont": 0,
+ "enText": "Lightning Dance",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「湾岸ミッドナイト マキシマムチューン」より",
+ "jpFont": 0,
+ "enText": "From \" Wangan Midnight Maximum Tune \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "wara2k",
+ "songName": {
+ "jpText": "わら得る2000",
+ "jpFont": 0,
+ "enText": "Waraeru 2000",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "わら得る2000",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "warya",
+ "songName": {
+ "jpText": "さよならワーリャ",
+ "jpFont": 0,
+ "enText": "Sayonara Varya",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "未来古代楽団 feat.霜月はるか",
+ "jpFont": 0,
+ "enText": "Mirai Kodai Gakudan feat. Haruka Shimotsuki",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "さよならワーリャ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "wedh",
+ "songName": {
+ "jpText": "ワールズエンド・ダンスホール",
+ "jpFont": 0,
+ "enText": "World's End Dance Hall",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "wowaka feat.初音ミク、巡音ルカ",
+ "jpFont": 0,
+ "enText": "wowaka feat.Hatsune Miku・Megurine Luka",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ワールズエンド・ダンスホール",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "wgbhfm",
+ "songName": {
+ "jpText": "華振舞",
+ "jpFont": 0,
+ "enText": "Hana Furumai",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "和楽器バンド",
+ "jpFont": 0,
+ "enText": "Wagakki Band",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "華振舞",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "whibox",
+ "songName": {
+ "jpText": "What's in the box?",
+ "jpFont": 0,
+ "enText": "What's in the box?",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Ujico*",
+ "jpFont": 0,
+ "enText": "Ujico*",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "whrose",
+ "songName": {
+ "jpText": "White Rose Insanity",
+ "jpFont": 0,
+ "enText": "White Rose Insanity",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "worldn",
+ "songName": {
+ "jpText": "Hello, Worldooon!!",
+ "jpFont": 0,
+ "enText": "Hello, Worldooon!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Capchii feat. Kuroa*",
+ "jpFont": 0,
+ "enText": "Capchii feat. Kuroa*",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "xan",
+ "songName": {
+ "jpText": "Xa",
+ "jpFont": 0,
+ "enText": "Xa",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Tatsh",
+ "jpFont": 0,
+ "enText": "Tatsh",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "xday2k",
+ "songName": {
+ "jpText": "X-DAY2000",
+ "jpFont": 0,
+ "enText": "X-DAY2000",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "xevel",
+ "songName": {
+ "jpText": "Xevel",
+ "jpFont": 0,
+ "enText": "Xevel",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Tatsh 「CHUNITHM」より",
+ "jpFont": 0,
+ "enText": "Tatsh From \" CHUNITHM \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "xjapa2",
+ "songName": {
+ "jpText": "Silent Jealousy",
+ "jpFont": 0,
+ "enText": "Silent Jealousy",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "xjapan",
+ "songName": {
+ "jpText": "紅",
+ "jpFont": 0,
+ "enText": "Kurenai",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "X JAPAN",
+ "jpFont": 0,
+ "enText": "X JAPAN",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "紅",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "yamata",
+ "songName": {
+ "jpText": "ヤマタイ★ナイトパーティー",
+ "jpFont": 0,
+ "enText": "Yamatai★Night Party",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "コバヤシユウヤ(IOSYS) feat.ちよこ",
+ "jpFont": 0,
+ "enText": "Yuuya Kobayashi (IOSYS) feat. Chiyoko",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ヤマタイ★ナイトパーティー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "yayoi",
+ "songName": {
+ "jpText": "豊穣弥生",
+ "jpFont": 0,
+ "enText": "Houjo Yayoi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "豊穣弥生",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ybtwed",
+ "songName": {
+ "jpText": "ハッピーウェディング前ソング",
+ "jpFont": 0,
+ "enText": "Happy Wedding-mae Song",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ヤバイTシャツ屋さん",
+ "jpFont": 0,
+ "enText": "Yabai T-Shirts Yasan",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ハッピーウェディング前ソング",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ycoast",
+ "songName": {
+ "jpText": "ユースフルコースター",
+ "jpFont": 0,
+ "enText": "Youthful Coaster",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "U-ske feat. かずらなつ",
+ "jpFont": 0,
+ "enText": "U-ske feat. Natsu Kazura",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ユースフルコースター",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "yeswea",
+ "songName": {
+ "jpText": "Yes we are",
+ "jpFont": 0,
+ "enText": "Yes we are",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ygnarr",
+ "songName": {
+ "jpText": "Infinite Rebellion",
+ "jpFont": 0,
+ "enText": "Infinite Rebellion",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "黒沢ダイスケ 原曲「幽玄ノ乱/世阿弥(Tatsh)」",
+ "jpFont": 0,
+ "enText": "Daisuke Kurosawa From \" Yugen no Ran /Xeami (Tatsh) \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ymck2",
+ "songName": {
+ "jpText": "ダンバ・ダンバ・ディン・ダン",
+ "jpFont": 0,
+ "enText": "Danba Danba Din Dan",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "by YMCK",
+ "jpFont": 0,
+ "enText": "by YMCK",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ダンバ・ダンバ・ディン・ダン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ymtgen",
+ "songName": {
+ "jpText": "夢と現実の境界線",
+ "jpFont": 0,
+ "enText": "Yume to Genjitsu no Kyoukaisen",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "夢と現実の境界線",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ymyrp2",
+ "songName": {
+ "jpText": "リスドンヴァルナの黄昏",
+ "jpFont": 0,
+ "enText": "Lisdoonvarna no Tasogare",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "リスドンヴァルナの黄昏",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ymyrp3",
+ "songName": {
+ "jpText": "カッティアワールの宝剣",
+ "jpFont": 0,
+ "enText": "Kathiawar no Cutlass",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "カッティアワールの宝剣",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ymyrp4",
+ "songName": {
+ "jpText": "忘却のティルナノグ",
+ "jpFont": 0,
+ "enText": "Boukyaku no Tir na nOg",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "忘却のティルナノグ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ymyrpg",
+ "songName": {
+ "jpText": "ドン・エンガスの笛吹き",
+ "jpFont": 0,
+ "enText": "Dun Aonghasa no Fuefuki",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドン・エンガスの笛吹き",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ynlose",
+ "songName": {
+ "jpText": "LOSER",
+ "jpFont": 0,
+ "enText": "LOSER",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "米津玄師",
+ "jpFont": 0,
+ "enText": "Kenshi Yonezu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ynzlmn",
+ "songName": {
+ "jpText": "Lemon",
+ "jpFont": 0,
+ "enText": "Lemon",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "米津玄師",
+ "jpFont": 0,
+ "enText": "Kenshi Yonezu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ynzpcs",
+ "songName": {
+ "jpText": "ピースサイン",
+ "jpFont": 0,
+ "enText": "Peace Sign",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "米津玄師",
+ "jpFont": 0,
+ "enText": "Kenshi Yonezu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ピースサイン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ynzums",
+ "songName": {
+ "jpText": "馬と鹿",
+ "jpFont": 0,
+ "enText": "Uma to Shika",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "米津玄師 / TBS系 日曜劇場「ノーサイド・ゲーム」主題歌",
+ "jpFont": 0,
+ "enText": "Kenshi Yonezu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "馬と鹿",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "yoidon",
+ "songName": {
+ "jpText": "よーいドン!",
+ "jpFont": 0,
+ "enText": "Yo~i-don!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat. Kiddish",
+ "jpFont": 0,
+ "enText": "feat. Kiddish",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "よーいドン!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "yokait",
+ "songName": {
+ "jpText": "ようかい体操第一",
+ "jpFont": 0,
+ "enText": "Yo-kai Exercise No. 1",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「妖怪ウォッチ」より",
+ "jpFont": 0,
+ "enText": "From \" Yo-kai Watch \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ようかい体操第一",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "yokud",
+ "songName": {
+ "jpText": "よくでる2000",
+ "jpFont": 0,
+ "enText": "Yokuderu 2000",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "よくでる2000",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "yokud2",
+ "songName": {
+ "jpText": "よくでる15300",
+ "jpFont": 0,
+ "enText": "Yokuderu 15300",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "よくでる15300",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "yrsdak",
+ "songName": {
+ "jpText": "だから僕は音楽を辞めた",
+ "jpFont": 0,
+ "enText": "Moonlight",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ヨルシカ",
+ "jpFont": 0,
+ "enText": "YORUSHIKA",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "だから僕は音楽を辞めた",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ys2op",
+ "songName": {
+ "jpText": "TO MAKE THE END OF BATTLE",
+ "jpFont": 0,
+ "enText": "TO MAKE THE END OF BATTLE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「イースⅠ&Ⅱクロニクルズ」より",
+ "jpFont": 0,
+ "enText": "From \" Ys I & II Chronicles \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "yugao2",
+ "songName": {
+ "jpText": "散りゆく蘭の綴る詩",
+ "jpFont": 0,
+ "enText": "Chiriyuku Ran no Tsuzuru Uta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "散りゆく蘭の綴る詩",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "yugen",
+ "songName": {
+ "jpText": "幽玄ノ乱",
+ "jpFont": 0,
+ "enText": "Yugen no Ran",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "世阿弥",
+ "jpFont": 0,
+ "enText": "Xeami",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "幽玄ノ乱",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "yumikk",
+ "songName": {
+ "jpText": "彁",
+ "jpFont": 0,
+ "enText": "Ka",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "LeaF",
+ "jpFont": 0,
+ "enText": "LeaF",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "yw2mdl",
+ "songName": {
+ "jpText": "妖怪ウォッチ2 元祖/本家/真打",
+ "jpFont": 0,
+ "enText": "Yo-kai Watch 2 Ganso/Honke/Shin'uchi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "BGMメドレー",
+ "jpFont": 0,
+ "enText": "BGM Medley",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "妖怪ウォッチ2 元祖/本家/真打",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ywdddz",
+ "songName": {
+ "jpText": "ダン・ダン ドゥビ・ズバー!",
+ "jpFont": 0,
+ "enText": "Dun Dun Doobie Zubah!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「妖怪ウォッチ」より",
+ "jpFont": 0,
+ "enText": "From \" Yo-kai Watch \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ダン・ダン ドゥビ・ズバー!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ywging",
+ "songName": {
+ "jpText": "ギンギラ銀河",
+ "jpFont": 0,
+ "enText": "Gingira Ginga",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「妖怪学園Y ~Nとの遭遇~」より",
+ "jpFont": 0,
+ "enText": "From \" Yokai Gakuen Y ~N to no Sogu~ \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ギンギラ銀河",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ywhggp",
+ "songName": {
+ "jpText": "初恋峠でゲラゲラポー",
+ "jpFont": 0,
+ "enText": "Hatsukoitouge de Geragerapo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「妖怪ウォッチ」より",
+ "jpFont": 0,
+ "enText": "From \" Yo-kai Watch \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "初恋峠でゲラゲラポー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ywjdrm",
+ "songName": {
+ "jpText": "人生ドラマチック",
+ "jpFont": 0,
+ "enText": "Jinsei Dramatic",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「妖怪ウォッチ」より",
+ "jpFont": 0,
+ "enText": "From \" Yo-kai Watch \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "人生ドラマチック",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ywkkh",
+ "songName": {
+ "jpText": "ケラケラホーのうた",
+ "jpFont": 0,
+ "enText": "Kerakeraho no Uta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「妖怪ウォッチ!」より ",
+ "jpFont": 0,
+ "enText": "From \" Yo-kai Watch! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ケラケラホーのうた",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ywmggp",
+ "songName": {
+ "jpText": "祭り囃子でゲラゲラポー",
+ "jpFont": 0,
+ "enText": "Matsuribayashi de Geragerapo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「妖怪ウォッチ」より",
+ "jpFont": 0,
+ "enText": "From \" Yo-kai Watch \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "祭り囃子でゲラゲラポー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ywtoki",
+ "songName": {
+ "jpText": "時を待とう",
+ "jpFont": 0,
+ "enText": "Toki o Matou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「妖怪ウォッチ シャドウサイド」より",
+ "jpFont": 0,
+ "enText": "From \" Yo-kai Watch Shadowside \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "時を待とう",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ywyugr",
+ "songName": {
+ "jpText": "ゆーがらお友達",
+ "jpFont": 0,
+ "enText": "You Got A O-tomodachi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「妖怪ウォッチ」より",
+ "jpFont": 0,
+ "enText": "From \" Yo-kai Watch \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ゆーがらお友達",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "yykibo",
+ "songName": {
+ "jpText": "幾望の月",
+ "jpFont": 0,
+ "enText": "Kibou no Tsuki",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "なきゃむりゃ feat. 結月ゆかり",
+ "jpFont": 0,
+ "enText": "Nakyamurya feat. Yukari Yuzuki",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "幾望の月",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "yzmsct",
+ "songName": {
+ "jpText": "マスカット",
+ "jpFont": 0,
+ "enText": "Muscat",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「クレヨンしんちゃん」より",
+ "jpFont": 0,
+ "enText": "From \" Crayon Shin-chan \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "マスカット",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "zaba",
+ "songName": {
+ "jpText": "未来への鍵",
+ "jpFont": 0,
+ "enText": "Mirai e no Kagi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "未来への鍵",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "zeldsw",
+ "songName": {
+ "jpText": "ゼルダの伝説 ブレス オブ ザ ワイルド メドレー",
+ "jpFont": 0,
+ "enText": "The Legend of Zelda:Breath of the Wild Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ゼルダの伝説 ブレス オブ ザ ワイルド メドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "zense",
+ "songName": {
+ "jpText": "前前前世",
+ "jpFont": 0,
+ "enText": "Zenzenzense",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "映画「君の名は。」より",
+ "jpFont": 0,
+ "enText": "From \" Your name. \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "前前前世",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "zerono",
+ "songName": {
+ "jpText": "零の夜想曲",
+ "jpFont": 0,
+ "enText": "Zero no Nocturne",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "零の夜想曲",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "zerora",
+ "songName": {
+ "jpText": "零の狂詩曲",
+ "jpFont": 0,
+ "enText": "Zero no Rhapsody",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "零の狂詩曲",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "zerosy",
+ "songName": {
+ "jpText": "零の交響曲",
+ "jpFont": 0,
+ "enText": "Zero no Symphony",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat.サリヤ人",
+ "jpFont": 0,
+ "enText": "feat. Sariya-jin",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "零の交響曲",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "zolbdl",
+ "songName": {
+ "jpText": "BORDERLESS",
+ "jpFont": 0,
+ "enText": "BORDERLESS",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ZOLA PROJECT",
+ "jpFont": 0,
+ "enText": "ZOLA PROJECT",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "20tanm",
+ "songName": {
+ "jpText": "大冒険タツドン",
+ "jpFont": 0,
+ "enText": "Daibouken Tatsudon",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "太鼓 de タイムトラベル60's / 田島勝朗 feat.シックスティーズ・クワイヤーズ",
+ "jpFont": 0,
+ "enText": "Taiko de Time Travel 60's / Katsuro Tajima feat. Sixties Choirs",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "大冒険タツドン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "20tbtu",
+ "songName": {
+ "jpText": "一世風靡",
+ "jpFont": 0,
+ "enText": "Isseifubi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "太鼓 de タイムトラベル江戸 / 西込加久見",
+ "jpFont": 0,
+ "enText": "Taiko de Time Travel Edo / Kakumi Nishigomi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "一世風靡",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "20tcty",
+ "songName": {
+ "jpText": "Donder Time",
+ "jpFont": 0,
+ "enText": "Donder Time",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "太鼓 de タイムトラベル80's / おおがみまさこ feat.団地ノ宮琴子",
+ "jpFont": 0,
+ "enText": "Taiko de Time Travel 80's / Masako Ogami feat.Kotoko From Danchinomiya",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "20tdnc",
+ "songName": {
+ "jpText": "Hold me tight",
+ "jpFont": 0,
+ "enText": "Hold me tight",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "太鼓 de タイムトラベル90's / Tatsh&musica with パークマンサー",
+ "jpFont": 0,
+ "enText": "Taiko de Time Travel 90's / Tatsh&musica with Parc Manther",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "20tfes",
+ "songName": {
+ "jpText": "轟け!太鼓の達人",
+ "jpFont": 0,
+ "enText": "Resound! Taiko no Tatsujin!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "太鼓deタイムトラベル20's/steμ×マスブチ×ササオカ feat.谷本貴義&たかはし智秋",
+ "jpFont": 0,
+ "enText": "Taiko de TimeTravel 20's/steμ×Masubuchi×Sasaoka feat.TakayoshiTanimoto&ChiakiTakahashi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "轟け!太鼓の達人",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "20thei",
+ "songName": {
+ "jpText": "平等院鳳凰ドン vs 鳥獣戯カッ",
+ "jpFont": 0,
+ "enText": "Byoudouin Hou-ou-Don vs Choju-gi-Katsu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "太鼓 de タイムトラベル平安 / コバヤシユウヤ(IOSYS) feat. miko",
+ "jpFont": 0,
+ "enText": "Taiko de Time Travel Heian / Yuya Kobayashi(IOSYS) feat. miko",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "平等院鳳凰ドン vs 鳥獣戯カッ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "20tidl",
+ "songName": {
+ "jpText": "恋はドント・ダウト",
+ "jpFont": 0,
+ "enText": "Don't Doubt This Love",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "太鼓 de タイムトラベル70's / Kawagen Kollagen with yuzuki",
+ "jpFont": 0,
+ "enText": "Taiko de Time Travel 70's / Kawagen Kollagen with yuzuki",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "恋はドント・ダウト",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "20tvcl",
+ "songName": {
+ "jpText": "4+1のそれぞれの未来",
+ "jpFont": 0,
+ "enText": "4+1 Myriad Futures",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "太鼓 de タイムトラベル00's / cosMo@暴走P feat.初音ミク",
+ "jpFont": 0,
+ "enText": "Taiko de Time Travel 00's / cosMo@Bousou-P feat.Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "4+1のそれぞれの未来",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "366day",
+ "songName": {
+ "jpText": "366日",
+ "jpFont": 0,
+ "enText": "366 Nichi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "366日",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "3d3b1x",
+ "songName": {
+ "jpText": "クレイジービューティー",
+ "jpFont": 0,
+ "enText": "Crazy Beauty",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "クレイジービューティー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "4nkari",
+ "songName": {
+ "jpText": "進化理論",
+ "jpFont": 0,
+ "enText": "Shinkariron",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "テレビアニメ「新幹線変形ロボ シンカリオン」より",
+ "jpFont": 0,
+ "enText": " ",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "進化理論",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "adodo",
+ "songName": {
+ "jpText": "踊",
+ "jpFont": 0,
+ "enText": "Odo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Ado",
+ "jpFont": 0,
+ "enText": "Ado",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "踊",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "adusse",
+ "songName": {
+ "jpText": "うっせぇわ",
+ "jpFont": 0,
+ "enText": "Usseewa",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Ado",
+ "jpFont": 0,
+ "enText": "Ado",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "うっせぇわ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "anadrm",
+ "songName": {
+ "jpText": "雪だるまつくろう",
+ "jpFont": 0,
+ "enText": "Do You Want to Build a Snowman?",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アナと雪の女王」より",
+ "jpFont": 0,
+ "enText": "From \" Frozen \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "雪だるまつくろう",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "anaint",
+ "songName": {
+ "jpText": "Into the Unknown",
+ "jpFont": 0,
+ "enText": "Into the Unknown",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アナと雪の女王2」より",
+ "jpFont": 0,
+ "enText": "From \" Frozen II \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "beasta",
+ "songName": {
+ "jpText": "怪物",
+ "jpFont": 0,
+ "enText": "Monster",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "YOASOBI「怪物 / 優しい彗星」より",
+ "jpFont": 0,
+ "enText": "From YOASOBI \"Monster / Comet\"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "怪物",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bko4",
+ "songName": {
+ "jpText": "BE THE ACE",
+ "jpFont": 0,
+ "enText": "BE THE ACE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bluesa",
+ "songName": {
+ "jpText": "BLUE SAPPHIRE",
+ "jpFont": 0,
+ "enText": "BLUE SAPPHIRE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「名探偵コナン 紺青の拳」より",
+ "jpFont": 0,
+ "enText": " ",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bokmit",
+ "songName": {
+ "jpText": "ボクらのまえに道はある",
+ "jpFont": 0,
+ "enText": "Bokura no Mae ni Michi wa Aru",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "HONOKA",
+ "jpFont": 0,
+ "enText": "HONOKA",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ボクらのまえに道はある",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "buru",
+ "songName": {
+ "jpText": "ブルちゃんのおやつ",
+ "jpFont": 0,
+ "enText": "Buru-chan no Oyatsu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ブルちゃんのおやつ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "butamn",
+ "songName": {
+ "jpText": "おまえブタメン!",
+ "jpFont": 0,
+ "enText": "Omae Butamen!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "おやつカンパニー & ザ・ぷー",
+ "jpFont": 0,
+ "enText": "Oyatsu CompanYy & The Puh",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "おまえブタメン!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "chrace",
+ "songName": {
+ "jpText": "チキンレース",
+ "jpFont": 0,
+ "enText": "Chicken Game",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ナカマオト",
+ "jpFont": 0,
+ "enText": "Maoto Naka",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "チキンレース",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "cls25",
+ "songName": {
+ "jpText": "交響曲第25番ト短調第一楽章",
+ "jpFont": 0,
+ "enText": "Symphony No.25 in G Minor - First Movement",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "モーツァルト",
+ "jpFont": 0,
+ "enText": "Wolfgang Amadeus Mozart",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "交響曲第25番ト短調第一楽章",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clscam",
+ "songName": {
+ "jpText": "ラ・カンパネラ",
+ "jpFont": 0,
+ "enText": "La Campanella",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "リスト",
+ "jpFont": 0,
+ "enText": "Franz Liszt",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ラ・カンパネラ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsmao",
+ "songName": {
+ "jpText": "まおぅ",
+ "jpFont": 0,
+ "enText": "Mao-u",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat.結羽(プラムソニック)",
+ "jpFont": 0,
+ "enText": "feat.Yuu.(pLumsonic!)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "まおぅ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsoft",
+ "songName": {
+ "jpText": "モンタギュー家とキャピュレット家",
+ "jpFont": 0,
+ "enText": "Montagues and Capulets",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "プロコフィエフ",
+ "jpFont": 0,
+ "enText": "Sergei Prokofiev",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "モンタギュー家とキャピュレット家",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clstoy",
+ "songName": {
+ "jpText": "おもちゃのシンフォニー",
+ "jpFont": 0,
+ "enText": "Toy Symphony",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "L.モーツァルト",
+ "jpFont": 0,
+ "enText": "Leopold Mozart",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "おもちゃのシンフォニー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clstrk",
+ "songName": {
+ "jpText": "トルコ行進曲",
+ "jpFont": 0,
+ "enText": "Turkish March",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ベートーヴェン",
+ "jpFont": 0,
+ "enText": "Ludwig van Beethoven",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "トルコ行進曲",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "cosmb",
+ "songName": {
+ "jpText": "SORA‐Ⅴ コズミックバード",
+ "jpFont": 0,
+ "enText": "SORA-Ⅴ Cosmic Bird",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "SORA‐Ⅴ コズミックバード",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "crtrcs",
+ "songName": {
+ "jpText": "Racing the Storm",
+ "jpFont": 0,
+ "enText": "Racing the Storm",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「クリティカルベロシティ」より",
+ "jpFont": 0,
+ "enText": "From \" Critical Velocity \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dbcdyn",
+ "songName": {
+ "jpText": "超絶☆ダイナミック!",
+ "jpFont": 0,
+ "enText": "Chouzetsu☆Dynamic!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ドラゴンボール超」より",
+ "jpFont": 0,
+ "enText": "From \" Dragon Ball Super \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "超絶☆ダイナミック!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "diet",
+ "songName": {
+ "jpText": "ダイエット・パダライス",
+ "jpFont": 0,
+ "enText": "Diet Padaraisu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ダイエット・パダライス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dobbbl",
+ "songName": {
+ "jpText": "いただきバベル (Prod. ケンモチヒデフミ)",
+ "jpFont": 0,
+ "enText": "Itadaki Babel (Prod. Kenmochi Hidefumi)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "黒鉄たま (CV:秋奈) 「電音部」より",
+ "jpFont": 0,
+ "enText": "Tama Kurogane (CV:Akina) From \" DEN-ON-BU \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "いただきバベル (Prod. ケンモチヒデフミ)",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dobhbs",
+ "songName": {
+ "jpText": "Hyper Bass (feat. Yunomi)",
+ "jpFont": 0,
+ "enText": "Hyper Bass (feat. Yunomi)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "神宮前参道學園電音部 「電音部」より",
+ "jpFont": 0,
+ "enText": "Jingumae Sando High School DEN-ON-BU From \" DEN-ON-BU \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dobhov",
+ "songName": {
+ "jpText": "Hand Over (Prod. TEMPLIME)",
+ "jpFont": 0,
+ "enText": "Hand Over (Prod. TEMPLIME)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "外神田文芸高校電音部 「電音部」より",
+ "jpFont": 0,
+ "enText": "Sotokanda Bungei High School DEN-ON-BU From \" DEN-ON-BU \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dobslt",
+ "songName": {
+ "jpText": "Shining Lights (feat. PSYQUI)",
+ "jpFont": 0,
+ "enText": "Shining Lights (feat. PSYQUI)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "鳳凰火凛 (CV:健屋花那) 「電音部」より",
+ "jpFont": 0,
+ "enText": "Karin Houou (CV:Kana Sukoya) From \" DEN-ON-BU \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "doyo",
+ "songName": {
+ "jpText": "ABCの歌",
+ "jpFont": 0,
+ "enText": "The Alphabet Song",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ABCの歌",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "draond",
+ "songName": {
+ "jpText": "踊れ・どれ・ドラ ドラえもん音頭",
+ "jpFont": 0,
+ "enText": "Odore Dore Dora Doraemon Ondo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "踊れ・どれ・ドラ ドラえもん音頭",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "drwdrm",
+ "songName": {
+ "jpText": "ドローイン☆ドリーム!",
+ "jpFont": 0,
+ "enText": "Drawing☆Dream!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Versus feat.白黒黒白(NoWorld)",
+ "jpFont": 0,
+ "enText": "Versus feat. Shirakura Ayame (NoWorld)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドローイン☆ドリーム!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dryflw",
+ "songName": {
+ "jpText": "ドライフラワー",
+ "jpFont": 0,
+ "enText": "Dried Flower",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドライフラワー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ds2op",
+ "songName": {
+ "jpText": "七色ハーモニー",
+ "jpFont": 0,
+ "enText": "Nanairo Harmony",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「めっちゃ!太鼓の達人DS 7つの島の大冒険」テーマソング",
+ "jpFont": 0,
+ "enText": " ",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "七色ハーモニー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "eigas",
+ "songName": {
+ "jpText": "エクラン ルブラン",
+ "jpFont": 0,
+ "enText": "Écran Le Blanc",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "辻林美穂",
+ "jpFont": 0,
+ "enText": "Miho Tsujibayashi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "エクラン ルブラン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "evekai",
+ "songName": {
+ "jpText": "廻廻奇譚",
+ "jpFont": 0,
+ "enText": "Kaikai Kitan",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "TVアニメ『呪術廻戦』第1クールオープニングテーマ",
+ "jpFont": 0,
+ "enText": "\"Jujutsu Kaisen\" Cour 1 Opening Theme",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "廻廻奇譚",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ezdo",
+ "songName": {
+ "jpText": "EZ DO DANCE",
+ "jpFont": 0,
+ "enText": "EZ DO DANCE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gldarm",
+ "songName": {
+ "jpText": "Gold Armor",
+ "jpFont": 0,
+ "enText": "Gold Armor",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ドンカツファイト」テーマソング",
+ "jpFont": 0,
+ "enText": " ",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gumi10",
+ "songName": {
+ "jpText": "十面相 colorful ver.",
+ "jpFont": 0,
+ "enText": "Jumenso - Colorful Version",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "YM",
+ "jpFont": 0,
+ "enText": "YM",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "十面相 colorful ver.",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gunjou",
+ "songName": {
+ "jpText": "群青",
+ "jpFont": 0,
+ "enText": "Gunjou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "YOASOBI",
+ "jpFont": 0,
+ "enText": "YOASOBI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "群青",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hadaka",
+ "songName": {
+ "jpText": "裸の心",
+ "jpFont": 0,
+ "enText": "Hadaka no Kokoro",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "TBS系 火曜ドラマ「私の家政夫ナギサさん」主題歌",
+ "jpFont": 0,
+ "enText": " ",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "裸の心",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "haiky3",
+ "songName": {
+ "jpText": "PHOENIX",
+ "jpFont": 0,
+ "enText": "PHOENIX",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ハイキュー!! TO THE TOP」より",
+ "jpFont": 0,
+ "enText": "From \" Haikyu!! TO THE TOP \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "haruji",
+ "songName": {
+ "jpText": "ハルジオン",
+ "jpFont": 0,
+ "enText": "Harujion",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "YOASOBI",
+ "jpFont": 0,
+ "enText": "YOASOBI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ハルジオン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "haya",
+ "songName": {
+ "jpText": "ドドドドドンだフル!",
+ "jpFont": 0,
+ "enText": "Do-Do-Do-Do-Donderful!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドドドドドンだフル!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hkyell",
+ "songName": {
+ "jpText": "星影のエール",
+ "jpFont": 0,
+ "enText": "Hoshikage no Yell",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「エール」より",
+ "jpFont": 0,
+ "enText": " ",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "星影のエール",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "howlin",
+ "songName": {
+ "jpText": "Howling",
+ "jpFont": 0,
+ "enText": "Howling",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「七つの大罪 戒めの復活」より",
+ "jpFont": 0,
+ "enText": " ",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ika",
+ "songName": {
+ "jpText": "あたしイカサマ恋はイカサマ",
+ "jpFont": 0,
+ "enText": "Atashi Ikasama Koi wa Ikasama",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "あたしイカサマ恋はイカサマ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "immbon",
+ "songName": {
+ "jpText": "BORN ON DREAM! ~HANABI☆NIGHT~",
+ "jpFont": 0,
+ "enText": "BORN ON DREAM! ~HANABI☆NIGHT~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター ミリオンライブ! シアターデイズ」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER MILLION LIVE! THEATER DAYS \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "indyjo",
+ "songName": {
+ "jpText": "インディ・ジョーンズのテーマ",
+ "jpFont": 0,
+ "enText": "Theme From Indiana Jones",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "インディ・ジョーンズのテーマ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "integr",
+ "songName": {
+ "jpText": "∫-integral-",
+ "jpFont": 0,
+ "enText": "∫-integral-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Jack C feat. Saoring",
+ "jpFont": 0,
+ "enText": "Jack C feat. Saoring",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "inunon",
+ "songName": {
+ "jpText": "イヌノノリモノ",
+ "jpFont": 0,
+ "enText": "Inunonorimono",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat.カタイカオル",
+ "jpFont": 0,
+ "enText": "feat.Kaoru Katai",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "イヌノノリモノ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "jojo",
+ "songName": {
+ "jpText": "気分上々↑↑",
+ "jpFont": 0,
+ "enText": "Kibun Joujou↑↑",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "気分上々↑↑",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kim100",
+ "songName": {
+ "jpText": "キミに100パーセント",
+ "jpFont": 0,
+ "enText": "Kimi ni 100 Percent",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「クレヨンしんちゃん」より",
+ "jpFont": 0,
+ "enText": "Kyary Pamyu Pamyu From \" Crayon Shin-chan \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "キミに100パーセント",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kirari",
+ "songName": {
+ "jpText": "きらり",
+ "jpFont": 0,
+ "enText": "Kirari",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "藤井 風",
+ "jpFont": 0,
+ "enText": "Fujii Kaze",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "きらり",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kishi2",
+ "songName": {
+ "jpText": "One Night Carnival",
+ "jpFont": 0,
+ "enText": "One Night Carnival",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kousui",
+ "songName": {
+ "jpText": "香水",
+ "jpFont": 0,
+ "enText": "Kousui",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "香水",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "latino",
+ "songName": {
+ "jpText": "オブセッション・ラティーノ",
+ "jpFont": 0,
+ "enText": "Obsession Latino",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "オブセッション・ラティーノ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "m96slm",
+ "songName": {
+ "jpText": "月色Chainon",
+ "jpFont": 0,
+ "enText": "Tsukiiro Chainon",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ももいろクローバーZ 劇場版「美少女戦士セーラームーンEternal」より",
+ "jpFont": 0,
+ "enText": "Momoiro Clover Z From \" Pretty Guardian Sailor Moon Eternal The Movie \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "月色Chainon",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "m96sr2",
+ "songName": {
+ "jpText": "サラバ、愛しき悲しみたちよ -ZZ ver.-",
+ "jpFont": 0,
+ "enText": "Saraba, Itoshiki Kanashimi Tachi Yo -ZZ ver.-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ももいろクローバーZ",
+ "jpFont": 0,
+ "enText": "Momoiro Clover Z",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "サラバ、愛しき悲しみたちよ -ZZ ver.-",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "magrec",
+ "songName": {
+ "jpText": "ごまかし",
+ "jpFont": 0,
+ "enText": "Gomakashi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「マギアレコード 魔法少女まどか☆マギカ外伝」より",
+ "jpFont": 0,
+ "enText": "From \" Magia Record:Puella Magi Madoka Magica Side Story \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ごまかし",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mahosk",
+ "songName": {
+ "jpText": "魔法式逃走奇譚☆ミ",
+ "jpFont": 0,
+ "enText": "Mahoushiki Tousoukitan☆",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "MOES feat.海保えりか",
+ "jpFont": 0,
+ "enText": "MOES feat.Kaiho Erika",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "魔法式逃走奇譚☆ミ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "maidra",
+ "songName": {
+ "jpText": "青空のラプソディ",
+ "jpFont": 0,
+ "enText": "Aozora No RHAPSODY",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "TVアニメ「小林さんちのメイドラゴン」OP主題歌",
+ "jpFont": 0,
+ "enText": "From \" Miss Kobayashi's Dragon Maid \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "青空のラプソディ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mi5ufo",
+ "songName": {
+ "jpText": "迷子のUFO",
+ "jpFont": 0,
+ "enText": "Maigo no U.F.O.",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "迷子のUFO",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikatu",
+ "songName": {
+ "jpText": "三日月",
+ "jpFont": 0,
+ "enText": "Mikazuki",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "三日月",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikush",
+ "songName": {
+ "jpText": "ストリーミングハート",
+ "jpFont": 0,
+ "enText": "Streaming Heart",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "DECO*27 feat.初音ミク",
+ "jpFont": 0,
+ "enText": "DECO*27 feat.Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ストリーミングハート",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikvam",
+ "songName": {
+ "jpText": "ヴァンパイア",
+ "jpFont": 0,
+ "enText": "The Vampire",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "DECO*27 feat.初音ミク",
+ "jpFont": 0,
+ "enText": "DECO*27 feat.Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ヴァンパイア",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "milsam",
+ "songName": {
+ "jpText": "いとしのミルさま",
+ "jpFont": 0,
+ "enText": "Itoshino Mirusama",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "いとしのミルさま",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mjtk83",
+ "songName": {
+ "jpText": "やさしさに包まれたなら",
+ "jpFont": 0,
+ "enText": "Yasashisani Tsutsumaretanara",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「魔女の宅急便」より",
+ "jpFont": 0,
+ "enText": "From \" Kiki's Delivery Service \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "やさしさに包まれたなら",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mk3rai",
+ "songName": {
+ "jpText": "ミライ",
+ "jpFont": 0,
+ "enText": "Mirai",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat.ミライ小町",
+ "jpFont": 0,
+ "enText": "feat.Mirai Komachi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ミライ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mkftbt",
+ "songName": {
+ "jpText": "future beat",
+ "jpFont": 0,
+ "enText": "future beat",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat.ミライ小町",
+ "jpFont": 0,
+ "enText": "feat.Mirai Komachi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mkftmd",
+ "songName": {
+ "jpText": "Future Melody - 心から未来へ -",
+ "jpFont": 0,
+ "enText": "Future Melody - From the Heart to the Future -",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat.ミライ小町",
+ "jpFont": 0,
+ "enText": "feat.Mirai Komachi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Future Melody - 心から未来へ -",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "morobt",
+ "songName": {
+ "jpText": "もろびとこぞりて",
+ "jpFont": 0,
+ "enText": "Joy to the World",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "もろびとこぞりて",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mrrun",
+ "songName": {
+ "jpText": "Mr.ランナー",
+ "jpFont": 0,
+ "enText": "Mr. runner",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "MOES feat. singman",
+ "jpFont": 0,
+ "enText": "MOES feat. singman",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Mr.ランナー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mscl2",
+ "songName": {
+ "jpText": "Hole in the wall",
+ "jpFont": 0,
+ "enText": "Hole in the wall",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「マッスル行進曲」より",
+ "jpFont": 0,
+ "enText": "From \" Muscle March \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "namco2",
+ "songName": {
+ "jpText": "たのしい太鼓道場",
+ "jpFont": 0,
+ "enText": "Fun-Filled Drum-Filled Taiko Dojo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "たのしい太鼓道場",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nbwalk",
+ "songName": {
+ "jpText": "Walking with you",
+ "jpFont": 0,
+ "enText": "Walking with you",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nekods",
+ "songName": {
+ "jpText": "猫",
+ "jpFont": 0,
+ "enText": "Neko",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「魔法使いと黒猫のウィズ」&「白猫プロジェクト」より",
+ "jpFont": 0,
+ "enText": "From \" The World of Mystic Wiz \" & \" White Cat Project \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "猫",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nekot2",
+ "songName": {
+ "jpText": "にひきはネコトモ!",
+ "jpFont": 0,
+ "enText": "Furry Purry Friends Neko-Tomo!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ネコ・トモ」エンディング曲",
+ "jpFont": 0,
+ "enText": "From \" Neko Tomo \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "にひきはネコトモ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nekotm",
+ "songName": {
+ "jpText": "ほんわか家族~ネコトモのうた~",
+ "jpFont": 0,
+ "enText": "Happy Family - Neko Tomo Theme Song",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ネコ・トモ」テーマ曲",
+ "jpFont": 0,
+ "enText": "From \" Neko Tomo \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ほんわか家族~ネコトモのうた~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ohdcry",
+ "songName": {
+ "jpText": "Cry Baby",
+ "jpFont": 0,
+ "enText": "Cry Baby",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Official髭男dism 「東京リベンジャーズ」より",
+ "jpFont": 0,
+ "enText": "Official HIGE DANdism From \" Tokyo Revengers \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "onsayg",
+ "songName": {
+ "jpText": "ON SAY GO SAY",
+ "jpFont": 0,
+ "enText": "ON SAY GO SAY",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ショウ君",
+ "jpFont": 0,
+ "enText": "SHOW",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "orgmis",
+ "songName": {
+ "jpText": "軽いざわめき",
+ "jpFont": 0,
+ "enText": "Karuizawameki",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "軽いざわめき",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pirate",
+ "songName": {
+ "jpText": "He's a Pirate",
+ "jpFont": 0,
+ "enText": "He's a Pirate",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「パイレーツ・オブ・カリビアン」より",
+ "jpFont": 0,
+ "enText": "From \" Pirates of the Caribbean \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pkm123",
+ "songName": {
+ "jpText": "1・2・3",
+ "jpFont": 0,
+ "enText": "1・2・3",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "After the Rain(そらる×まふまふ) 「ポケットモンスター」より",
+ "jpFont": 0,
+ "enText": "After the Rain(soraru×mafumafu) From \" Pokémon \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pspopn",
+ "songName": {
+ "jpText": "くもまでとどけ!",
+ "jpFont": 0,
+ "enText": "Kumo Made Todoke!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「太鼓の達人 ぽ~たぶる2」テーマソング",
+ "jpFont": 0,
+ "enText": " ",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "くもまでとどけ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rezer2",
+ "songName": {
+ "jpText": "Realize",
+ "jpFont": 0,
+ "enText": "Realize",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「Re:ゼロから始める異世界生活」より",
+ "jpFont": 0,
+ "enText": "From \" Re:ZERO -Starting Life in Another World- \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rhope",
+ "songName": {
+ "jpText": "Rising Hope",
+ "jpFont": 0,
+ "enText": "Rising Hope",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「魔法科高校の劣等生」より",
+ "jpFont": 0,
+ "enText": "From \" The Irregular at Magic High School \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rocket",
+ "songName": {
+ "jpText": "ROCKET DIVE",
+ "jpFont": 0,
+ "enText": "ROCKET DIVE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rouge",
+ "songName": {
+ "jpText": "ルージュの伝言",
+ "jpFont": 0,
+ "enText": "Rougeno Dengon",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「魔女の宅急便」より",
+ "jpFont": 0,
+ "enText": "From \" Kiki's Delivery Service \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ルージュの伝言",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sbnelc",
+ "songName": {
+ "jpText": "バブリィ☆クイーン",
+ "jpFont": 0,
+ "enText": "Bubbly☆Queen",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "バブリィ☆クイーン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ssn3rd",
+ "songName": {
+ "jpText": "大好きな太鼓の音",
+ "jpFont": 0,
+ "enText": "Favorite Sounds of Taiko",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "太鼓の達人20周年記念ソング / 粗品 feat. どんちゃん",
+ "jpFont": 0,
+ "enText": "Taiko No Tatsujin 20th Anniversary Song / Soshina feat. Don-Chan",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "大好きな太鼓の音",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ssnkjs",
+ "songName": {
+ "jpText": "怪獣少女は火を吹かない",
+ "jpFont": 0,
+ "enText": "No Fire for Monster Girl",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "粗品 feat. 初音ミク",
+ "jpFont": 0,
+ "enText": "Soshina feat.Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "怪獣少女は火を吹かない",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ssnrns",
+ "songName": {
+ "jpText": "乱数調整のリバースシンデレラ",
+ "jpFont": 0,
+ "enText": "RNG Cinderella",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "粗品 feat. 彩宮すう(CV:竹達彩奈)",
+ "jpFont": 0,
+ "enText": "Soshina feat. Su Ayamiya (CV:Ayana Taketatsu)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "乱数調整のリバースシンデレラ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "starws",
+ "songName": {
+ "jpText": "Star Wars:Main Title",
+ "jpFont": 0,
+ "enText": "Star Wars:Main Title",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「スター・ウォーズ」より",
+ "jpFont": 0,
+ "enText": "From \" Star Wars \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "stmic6",
+ "songName": {
+ "jpText": "わすれなぐさ",
+ "jpFont": 0,
+ "enText": "Myosotis",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "わすれなぐさ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "stmic7",
+ "songName": {
+ "jpText": "メンクイミラクル",
+ "jpFont": 0,
+ "enText": "Menkui Miracle",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "メンクイミラクル",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tairik",
+ "songName": {
+ "jpText": "情熱大陸",
+ "jpFont": 0,
+ "enText": "Jonetsu - Tairiku",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "情熱大陸",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "takara",
+ "songName": {
+ "jpText": "宝の丘",
+ "jpFont": 0,
+ "enText": "Takara no Oka",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "宝の丘",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tkstad",
+ "songName": {
+ "jpText": "Welcome to the Taiko Stadium!",
+ "jpFont": 0,
+ "enText": "Welcome to the Taiko Stadium!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "相良心 × 大原大輝",
+ "jpFont": 0,
+ "enText": "Kokoro sagara x Daiki Ohara",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tnkkaz",
+ "songName": {
+ "jpText": "風たちの声",
+ "jpFont": 0,
+ "enText": "Voice Of Wind",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「天気の子」より",
+ "jpFont": 0,
+ "enText": "From \" Weathering With You \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "風たちの声",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tondem",
+ "songName": {
+ "jpText": "トンデ・ミテ",
+ "jpFont": 0,
+ "enText": "Tonde Mite",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "横川理彦 feat.団地ノ宮弥子",
+ "jpFont": 0,
+ "enText": "Tadahiko Yokogawa feat.Yako From Danchinomiya",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "トンデ・ミテ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "train",
+ "songName": {
+ "jpText": "TRAIN-TRAIN",
+ "jpFont": 0,
+ "enText": "TRAIN-TRAIN",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ttrkaz",
+ "songName": {
+ "jpText": "風のとおり道",
+ "jpFont": 0,
+ "enText": "The Path of the Wind",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「となりのトトロ」より",
+ "jpFont": 0,
+ "enText": "From \" My Neighbor Totoro \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "風のとおり道",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "twcyes",
+ "songName": {
+ "jpText": "YES or YES",
+ "jpFont": 0,
+ "enText": "YES or YES",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "TWICE",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "umdeja",
+ "songName": {
+ "jpText": "Dejavina (Japanese ver.)",
+ "jpFont": 0,
+ "enText": "Dejavina (Japanese ver.)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "リサイタルズ",
+ "jpFont": 0,
+ "enText": "Recitals",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "vfveno",
+ "songName": {
+ "jpText": "ベノム(feat.flower)",
+ "jpFont": 0,
+ "enText": "Venom (feat.flower)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "かいりきベア",
+ "jpFont": 0,
+ "enText": "Kairiki bear",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ベノム(feat.flower)",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "voidse",
+ "songName": {
+ "jpText": "void setup",
+ "jpFont": 0,
+ "enText": "void setup",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "wavybb",
+ "songName": {
+ "jpText": "Wavy Baby",
+ "jpFont": 0,
+ "enText": "Wavy Baby",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "陽当モナカ",
+ "jpFont": 0,
+ "enText": "Monaka Hinata",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "wecan",
+ "songName": {
+ "jpText": "ウィーキャン!",
+ "jpFont": 0,
+ "enText": "We Can!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ワンピース」より",
+ "jpFont": 0,
+ "enText": "From \" One Piece \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ウィーキャン!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "wegos",
+ "songName": {
+ "jpText": "ウィーゴー!(Short Version)",
+ "jpFont": 0,
+ "enText": "We Go! (Short Version)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ワンピース」より",
+ "jpFont": 0,
+ "enText": "From \" One Piece \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ウィーゴー!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "wii2op",
+ "songName": {
+ "jpText": "ららら☆ハッピネス",
+ "jpFont": 0,
+ "enText": "La La La ☆ Happiness",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「太鼓の達人Wii ドドーンと2代目!」テーマソング",
+ "jpFont": 0,
+ "enText": " \" Taiko no Tatsujin Wii: Dodon~! to Nidaime! \" Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ららら☆ハッピネス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "wiu2op",
+ "songName": {
+ "jpText": "もりもり☆特盛リズム♪",
+ "jpFont": 0,
+ "enText": "Morimori ☆ Tokumo Rhythm♪",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「太鼓の達人 特盛り!」テーマソング",
+ "jpFont": 0,
+ "enText": "\" Taiko no Tatsujin Tokumori! \" Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "もりもり☆特盛リズム♪",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ymharu",
+ "songName": {
+ "jpText": "春を告げる",
+ "jpFont": 0,
+ "enText": "Haru wo Tsugeru",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "yama",
+ "jpFont": 0,
+ "enText": "yama",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "春を告げる",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ynzkdn",
+ "songName": {
+ "jpText": "感電",
+ "jpFont": 0,
+ "enText": "Kanden",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "米津玄師 / TBS系金曜ドラマ「MIU404」主題歌",
+ "jpFont": 0,
+ "enText": "Kenshi Yonezu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "感電",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ypp",
+ "songName": {
+ "jpText": "太陽もヤッパッパー",
+ "jpFont": 0,
+ "enText": "Taiyo mo Yapapa",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "太陽もヤッパッパー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "1pssj2",
+ "songName": {
+ "jpText": "新時代",
+ "jpFont": 0,
+ "enText": "New Genesis",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ONE PIECE FILM RED」より",
+ "jpFont": 0,
+ "enText": "From \" One Piece Film: Red \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "新時代",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "1rin",
+ "songName": {
+ "jpText": "一輪の花",
+ "jpFont": 0,
+ "enText": "Ichi Rin no Hana",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "一輪の花",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "2night",
+ "songName": {
+ "jpText": "TONIGHT,TONIGHT,TONIGHT",
+ "jpFont": 0,
+ "enText": "TONIGHT,TONIGHT,TONIGHT",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "adkrkr",
+ "songName": {
+ "jpText": "クラクラ",
+ "jpFont": 0,
+ "enText": "Kura Kura",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "TVアニメ『SPY×FAMILY』Season 2 オープニング主題歌",
+ "jpFont": 0,
+ "enText": "TV Anime \" SPY×FAMILY \" Season 2 Opening Theme",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "クラクラ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "adsho2",
+ "songName": {
+ "jpText": "唱",
+ "jpFont": 0,
+ "enText": "Show",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ユニバーサル・スタジオ・ジャパン「ゾンビ・デ・ダンス」新テーマソング",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "唱",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "alones",
+ "songName": {
+ "jpText": "ALONES",
+ "jpFont": 0,
+ "enText": "ALONES",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "amatjk",
+ "songName": {
+ "jpText": "あまてらすJK",
+ "jpFont": 0,
+ "enText": "Amaterasu JK",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Takahiro Akuta feat. さちこ",
+ "jpFont": 0,
+ "enText": "Takahiro Akuta feat. Sachiko",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "あまてらすJK",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "anochu",
+ "songName": {
+ "jpText": "ちゅ、多様性。",
+ "jpFont": 0,
+ "enText": "Chu, Tayousei.",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "TVアニメ「チェンソーマン」エンディング・テーマ",
+ "jpFont": 0,
+ "enText": "TV Anime \" Chainsaw Man \" Ending Theme",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ちゅ、多様性。",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "asmajo",
+ "songName": {
+ "jpText": "赤と白薔薇の魔女",
+ "jpFont": 0,
+ "enText": "Aka to Shiro Bara no Majo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Dokuwaki",
+ "jpFont": 0,
+ "enText": "Dokuwaki",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "赤と白薔薇の魔女",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "badguy",
+ "songName": {
+ "jpText": "bad guy",
+ "jpFont": 0,
+ "enText": "bad guy",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Billie Eilish",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "batimt",
+ "songName": {
+ "jpText": "†バチ!ムチ!?マッスルキングダム†",
+ "jpFont": 0,
+ "enText": "†Bachi! Muchi!? Muscle Kingdom†",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "溝口ゆうま feat. 大瀬良あい♡まるもこ",
+ "jpFont": 0,
+ "enText": "Yuma.Mizo feat. Ai Ohsera ♡ Marumoko",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "†バチ!ムチ!?マッスルキングダム†",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bleach",
+ "songName": {
+ "jpText": "D-tecnoLife",
+ "jpFont": 0,
+ "enText": "D-tecnoLife",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「BLEACH」より",
+ "jpFont": 0,
+ "enText": "From \" Bleach \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bouabr",
+ "songName": {
+ "jpText": "吉宗評判記 暴れん坊将軍 BGM",
+ "jpFont": 0,
+ "enText": "Yoshimune Hyoubanki Abarenbou Shogun BGM",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "吉宗評判記 暴れん坊将軍 BGM",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bshark",
+ "songName": {
+ "jpText": "Baby Shark(ベイビー・シャーク)",
+ "jpFont": 0,
+ "enText": "Baby Shark",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "btrssc",
+ "songName": {
+ "jpText": "青春コンプレックス",
+ "jpFont": 0,
+ "enText": "seisyun complex",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ぼっち・ざ・ろっく!」より",
+ "jpFont": 0,
+ "enText": "From \" BOCCHI THE ROCK! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "青春コンプレックス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "citrus",
+ "songName": {
+ "jpText": "CITRUS",
+ "jpFont": 0,
+ "enText": "CITRUS",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ドラマ「極主夫道」より",
+ "jpFont": 0,
+ "enText": "From \" The Way of the Househusband \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsmil",
+ "songName": {
+ "jpText": "軍隊行進曲",
+ "jpFont": 0,
+ "enText": "Three Marches Militaires",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "シューベルト",
+ "jpFont": 0,
+ "enText": "Franz Schubert",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "軍隊行進曲",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clspgn",
+ "songName": {
+ "jpText": "鬼走曲第24番",
+ "jpFont": 0,
+ "enText": "KISOUKYOKU No. 24",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "鬼走曲第24番",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "cpyoak",
+ "songName": {
+ "jpText": "YOAKE",
+ "jpFont": 0,
+ "enText": "YOAKE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Capchii feat. Uzumaki",
+ "jpFont": 0,
+ "enText": "Capchii feat. Uzumaki",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "crtcrs",
+ "songName": {
+ "jpText": "Crush 'em All",
+ "jpFont": 0,
+ "enText": "Crush 'em All",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「クリティカルベロシティ」より",
+ "jpFont": 0,
+ "enText": "From \" CRITICAL VELOCITY \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "crtesc",
+ "songName": {
+ "jpText": "ESCAPE FROM CRISIS",
+ "jpFont": 0,
+ "enText": "ESCAPE FROM CRISIS",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「クリティカルベロシティ」より",
+ "jpFont": 0,
+ "enText": "From \" Critical Velocity \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "crtfix",
+ "songName": {
+ "jpText": "THE FIXER",
+ "jpFont": 0,
+ "enText": "THE FIXER",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「クリティカルベロシティ」より",
+ "jpFont": 0,
+ "enText": "From \" Critical Velocity \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "cs7op",
+ "songName": {
+ "jpText": "冒険日和 ",
+ "jpFont": 0,
+ "enText": "Bouken Biyori",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「太鼓の達人 ドカッ!と大盛り七代目」テーマソング",
+ "jpFont": 0,
+ "enText": "From \" Taiko no Tatsujin: Doka! to Oomori Nanadaime \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "冒険日和",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dai0kn",
+ "songName": {
+ "jpText": "第ゼロ感",
+ "jpFont": 0,
+ "enText": "Dai Zero Kan",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Taiko Team cover ver. / 「THE FIRST SLAM DUNK」より",
+ "jpFont": 0,
+ "enText": "Taiko Team cover ver. / From \" The First Slam Dunk \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "第ゼロ感",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ddkfit",
+ "songName": {
+ "jpText": "超新星少女",
+ "jpFont": 0,
+ "enText": "Supernova Girl",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Shogo Nomura(BNSI) feat. 巫てんり 「ドンドコフィット」テーマソング",
+ "jpFont": 0,
+ "enText": "Shogo Nomura(BNSI) feat. Tenri Kannagi \" DON DON Fitness \" Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "超新星少女",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ddudu",
+ "songName": {
+ "jpText": "DDU-DU DDU-DU",
+ "jpFont": 0,
+ "enText": "DDU-DU DDU-DU",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "BLACKPINK",
+ "jpFont": 0,
+ "enText": "BLACKPINK",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "deo",
+ "songName": {
+ "jpText": "ユルユルでDE-O!",
+ "jpFont": 0,
+ "enText": "Yuruyuru de DE-O",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ユルユルでDE-O!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "disjmb",
+ "songName": {
+ "jpText": "ジャンボリミッキー!",
+ "jpFont": 0,
+ "enText": "Jamboree Mickey!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ジャンボリミッキー!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "divdrv",
+ "songName": {
+ "jpText": "Diving Drive",
+ "jpFont": 0,
+ "enText": "Diving Drive",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Tanchiky feat. MuMenkyo.",
+ "jpFont": 0,
+ "enText": "Tanchiky feat. MuMenkyo.",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dobakb",
+ "songName": {
+ "jpText": "アキバ20XX",
+ "jpFont": 0,
+ "enText": "AKIBA 20XX",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "外神田文芸高校電音部 「電音部」より",
+ "jpFont": 0,
+ "enText": "Sotokanda Bungei High School DEN-ON-BU From \" DEN-ON-BU \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アキバ20XX",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dobbkr",
+ "songName": {
+ "jpText": "爆裂タウマゼイン (Prod. チバニャン)",
+ "jpFont": 0,
+ "enText": "Bakuretsu Thaumazein (Prod. ChibaNyan)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "帝音国際学院電音部 「電音部」より",
+ "jpFont": 0,
+ "enText": "Teion International High School From \" DEN-ON-BU \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "爆裂タウマゼイン (Prod. チバニャン)",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dobcrs",
+ "songName": {
+ "jpText": "Crush (Prod. SHOW)",
+ "jpFont": 0,
+ "enText": "Crush (Prod. SHOW)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "真新宿GR学園電音部 「電音部」より",
+ "jpFont": 0,
+ "enText": "Shin-Shinjuku GR School DEN-ON-BU From \" DEN-ON-BU \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dobgnb",
+ "songName": {
+ "jpText": "good night baby (feat. Moe Shop)",
+ "jpFont": 0,
+ "enText": "good night baby (feat. Moe Shop)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "犬吠埼紫杏(CV:長谷川玲奈) 「電音部」より",
+ "jpFont": 0,
+ "enText": "Shian Inubousaki (CV: Rena Hasegawa) From \" DEN-ON-BU \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dobiam",
+ "songName": {
+ "jpText": "IAM (feat. Shogo, Tsubasa)",
+ "jpFont": 0,
+ "enText": "IAM (feat. Shogo, Tsubasa)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "港白金女学院電音部 「電音部」より",
+ "jpFont": 0,
+ "enText": "Minato Shirokane Girls High School DEN-ON-BU From \" DEN-ON-BU \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dogma2",
+ "songName": {
+ "jpText": "Central Dogma Pt.2",
+ "jpFont": 0,
+ "enText": "Central Dogma Pt.2",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "黒沢ダイスケ",
+ "jpFont": 0,
+ "enText": "Daisuke Kurosawa",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dondo",
+ "songName": {
+ "jpText": "どんちゃん音頭",
+ "jpFont": 0,
+ "enText": "DON-chan ONDO",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "どんちゃん音頭",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dppkm",
+ "songName": {
+ "jpText": "Together",
+ "jpFont": 0,
+ "enText": "Together",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ポケットモンスター ダイヤモンド&パール」より ",
+ "jpFont": 0,
+ "enText": "From \" Pokémon Diamond & Pearl \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "extrap",
+ "songName": {
+ "jpText": "ex寅 Trap!!",
+ "jpFont": 0,
+ "enText": "exTORA Trap!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "かねこちはる",
+ "jpFont": 0,
+ "enText": "Chiharu Kaneko",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ex寅 Trap!!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fads",
+ "songName": {
+ "jpText": "DESERT STORM",
+ "jpFont": 0,
+ "enText": "DESERT STORM",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「F/A」より",
+ "jpFont": 0,
+ "enText": "From \" F/A \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fmod",
+ "songName": {
+ "jpText": "風魔モジュール6768",
+ "jpFont": 0,
+ "enText": "FUMA Module 6768",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "翡翠",
+ "jpFont": 0,
+ "enText": "Hisui",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "風魔モジュール6768",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fmura2",
+ "songName": {
+ "jpText": "村祭り",
+ "jpFont": 0,
+ "enText": "Mura Matsuri",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "村祭り",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "friere",
+ "songName": {
+ "jpText": "勇者",
+ "jpFont": 0,
+ "enText": "The Brave",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「葬送のフリーレン」より",
+ "jpFont": 0,
+ "enText": "From \" FRIEREN: Beyond Journey's End \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "勇者",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gdm3",
+ "songName": {
+ "jpText": "哀戦士",
+ "jpFont": 0,
+ "enText": "Ai Senshi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "劇場版「機動戦士ガンダムII 哀 戦士篇」より",
+ "jpFont": 0,
+ "enText": "From \" Mobile Suit Gundam II: Soldiers of Sorrow \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "哀戦士 ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gdmsen",
+ "songName": {
+ "jpText": "閃光",
+ "jpFont": 0,
+ "enText": "Senkou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "『機動戦士ガンダム 閃光のハサウェイ』より",
+ "jpFont": 0,
+ "enText": "From \" Mobile Suit Gundam Hathaway \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "閃光",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gdmsui",
+ "songName": {
+ "jpText": "祝福",
+ "jpFont": 0,
+ "enText": "The Blessing",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「機動戦士ガンダム 水星の魔女」より",
+ "jpFont": 0,
+ "enText": "From \" Mobile Suit Gundam: The Witch from Mercury \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "祝福",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "giniro",
+ "songName": {
+ "jpText": "銀色の空",
+ "jpFont": 0,
+ "enText": "Giniro no Sora",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "銀色の空",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "giosto",
+ "songName": {
+ "jpText": "STONE OCEAN",
+ "jpFont": 0,
+ "enText": "STONE OCEAN",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ジョジョの奇妙な冒険 ストーンオーシャン」より",
+ "jpFont": 0,
+ "enText": "From \" JoJo's Bizarre Adventure Stone Ocean \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "goonya",
+ "songName": {
+ "jpText": "GO ON YA WAY (feat. 超学生)",
+ "jpFont": 0,
+ "enText": "GO ON YA WAY (feat. Chogakusei)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「グーニャモンスター」より",
+ "jpFont": 0,
+ "enText": "From \" Goonya Monster \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "GO ON YA WAY (feat. 超学生)",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gum41d",
+ "songName": {
+ "jpText": "酔いどれ知らず",
+ "jpFont": 0,
+ "enText": "Yoidore Shirazu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Kanaria",
+ "jpFont": 0,
+ "enText": "Kanaria",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "酔いどれ知らず",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "heroac",
+ "songName": {
+ "jpText": "THE DAY",
+ "jpFont": 0,
+ "enText": "THE DAY",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「僕のヒーローアカデミア」より",
+ "jpFont": 0,
+ "enText": "From \" My Hero Academia \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "heros",
+ "songName": {
+ "jpText": "Hero's Come Back!!",
+ "jpFont": 0,
+ "enText": "Hero's Come Back!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hi4kok",
+ "songName": {
+ "jpText": "ひよこ鑑定士さん",
+ "jpFont": 0,
+ "enText": "Great Chick Appraiser",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "立秋 feat.ちょこ",
+ "jpFont": 0,
+ "enText": "Rish feat. Choko",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ひよこ鑑定士さん",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hol168",
+ "songName": {
+ "jpText": "いろはすてっぷ!",
+ "jpFont": 0,
+ "enText": "IrohaStep!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "風真いろは",
+ "jpFont": 0,
+ "enText": "Kazama Iroha",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "いろはすてっぷ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hol6po",
+ "songName": {
+ "jpText": "六本の薔薇と采の歌",
+ "jpFont": 0,
+ "enText": "Roppon no Bara to Sai no Uta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "薔薇☆Dice(鷹嶺ルイ・不知火フレア・白銀ノエル・宝鐘マリン・桃鈴ねね・風真いろは)",
+ "jpFont": 0,
+ "enText": "Bara☆Dice(TakaneLui,ShiranuiFlare,ShiroganeNoel,HoushouMarine,MomosuzuNene,KazamaIroha)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "六本の薔薇と采の歌",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "holahy",
+ "songName": {
+ "jpText": "Ahoy!! 我ら宝鐘海賊団☆",
+ "jpFont": 0,
+ "enText": "Ahoy!! We are Houshou Pirates",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "宝鐘マリン",
+ "jpFont": 0,
+ "enText": "Houshou Marine",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Ahoy!! 我ら宝鐘海賊団☆",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hold",
+ "songName": {
+ "jpText": "今夜はホーミー",
+ "jpFont": 0,
+ "enText": "KONYA WA Hold Me",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "今夜はホーミー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "holhom",
+ "songName": {
+ "jpText": "ほめのび",
+ "jpFont": 0,
+ "enText": "Homenobi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "白銀ノエル",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ほめのび",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "holnnn",
+ "songName": {
+ "jpText": "ねねねねねねねね!大爆走",
+ "jpFont": 0,
+ "enText": "NENENENENENENENE!DAIBAKUSOU",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "桃鈴ねね",
+ "jpFont": 0,
+ "enText": "Momosuzu Nene",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ねねねねねねねね!大爆走",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "holovd",
+ "songName": {
+ "jpText": "オーバード",
+ "jpFont": 0,
+ "enText": "Overd",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "鷹嶺ルイ",
+ "jpFont": 0,
+ "enText": "Takane Lui",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "オーバード",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "holsmg",
+ "songName": {
+ "jpText": "Smile & Go!!",
+ "jpFont": 0,
+ "enText": "Smile & Go!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "不知火フレア",
+ "jpFont": 0,
+ "enText": "Shiranui Flare",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hotaru",
+ "songName": {
+ "jpText": "ホタルノヒカリ",
+ "jpFont": 0,
+ "enText": "Hotaru no Hikari",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「NARUTO-ナルト-疾風伝」より",
+ "jpFont": 0,
+ "enText": "From \" Naruto: Shippuden \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ホタルノヒカリ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsto2",
+ "songName": {
+ "jpText": "エージェント夜を往く",
+ "jpFont": 0,
+ "enText": "Agent Yoru Wo Yuku",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター」より",
+ "jpFont": 0,
+ "enText": "From \" THE iDOLM@STER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "エージェント夜を往く",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "japan",
+ "songName": {
+ "jpText": "ホウキ雲",
+ "jpFont": 0,
+ "enText": "Houki Gumo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「焼きたて!!ジャぱん」より",
+ "jpFont": 0,
+ "enText": "From \" Yakitate!! Japan \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ホウキ雲",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "jdgekk",
+ "songName": {
+ "jpText": "月光花",
+ "jpFont": 0,
+ "enText": "Gekkouka",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "TVアニメ「ブラック・ジャック」より",
+ "jpFont": 0,
+ "enText": "From TV Anime \" Black Jack \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "月光花",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ji9ch3",
+ "songName": {
+ "jpText": "時空町3丁目",
+ "jpFont": 0,
+ "enText": "JIKUCHO 3-CHOME",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "きゅんちゃこ",
+ "jpFont": 0,
+ "enText": "qunchako",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "時空町3丁目",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kabkim",
+ "songName": {
+ "jpText": "傾奇者、罷り通る!",
+ "jpFont": 0,
+ "enText": "Kabukimono, Keep it up!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "かぼちゃ",
+ "jpFont": 0,
+ "enText": "kabotya",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "傾奇者、罷り通る!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kappa",
+ "songName": {
+ "jpText": "河童の皿はこんなにも",
+ "jpFont": 0,
+ "enText": "KAPPA HEAD",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "大澤めい(BNSI) feat. 池澤孝之",
+ "jpFont": 0,
+ "enText": "Mei Osawa(BNSI) feat. Takashi Ikezawa",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "河童の皿はこんなにも",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ketui",
+ "songName": {
+ "jpText": "決意の朝に",
+ "jpFont": 0,
+ "enText": "Ketsui no Asa Ni",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "決意の朝に",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kfphon",
+ "songName": {
+ "jpText": "フォニイ",
+ "jpFont": 0,
+ "enText": "phony",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ツミキ feat. 音楽的同位体 可不(KAFU)",
+ "jpFont": 0,
+ "enText": "tsumiki feat. KAFU",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "フォニイ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kimakb",
+ "songName": {
+ "jpText": "明け星",
+ "jpFont": 0,
+ "enText": "AKEBOSHI",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "明け星",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kimznk",
+ "songName": {
+ "jpText": "残響散歌",
+ "jpFont": 0,
+ "enText": "Zankyosanka",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "残響散歌",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kirby3",
+ "songName": {
+ "jpText": "星のカービィ スターアライズ メドレー",
+ "jpFont": 0,
+ "enText": "Kirby Star Allies Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "星のカービィ スターアライズ メドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kjksi",
+ "songName": {
+ "jpText": "喝采",
+ "jpFont": 0,
+ "enText": "Applause",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "関ジャニ∞",
+ "jpFont": 0,
+ "enText": "KANJANI∞",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "喝采",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kobenm",
+ "songName": {
+ "jpText": "鼓舞曲「閻魔」",
+ "jpFont": 0,
+ "enText": "Dance \"Enma\"",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": " 山本真央樹",
+ "jpFont": 0,
+ "enText": "Maoki Yamamoto",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "鼓舞曲「閻魔」",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "krgeat",
+ "songName": {
+ "jpText": "Trust・Last",
+ "jpFont": 0,
+ "enText": "Trust Last",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「仮面ライダーギーツ」より",
+ "jpFont": 0,
+ "enText": "From \" Kamen Rider Geats \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ksdaha",
+ "songName": {
+ "jpText": "空想打破",
+ "jpFont": 0,
+ "enText": "Down with Fiction",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ノイ feat. 萌 / WADIVE RECORD",
+ "jpFont": 0,
+ "enText": "NOY feat. Moe / WADIVE RECORD",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "空想打破",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kumokn",
+ "songName": {
+ "jpText": "雲の彼方の大地の風",
+ "jpFont": 0,
+ "enText": "The Wind From the Land of Clouds",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "三崎修吏(BNSI) feat. 団地ノ宮弥子",
+ "jpFont": 0,
+ "enText": "Syuri Misaki(BNSI) feat. Yako from Danchinomiya",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "雲の彼方の大地の風",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kw5men",
+ "songName": {
+ "jpText": "可愛くてごめん",
+ "jpFont": 0,
+ "enText": "Kawaikute Gomen",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "可愛くてごめん",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kyallb",
+ "songName": {
+ "jpText": "強風オールバック(feat.歌愛ユキ)",
+ "jpFont": 0,
+ "enText": "Kyoufuu Ooru Bakku (feat. Kaai Yuki)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ゆこぴ",
+ "jpFont": 0,
+ "enText": "Yukopi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "強風オールバック(feat.歌愛ユキ)",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lapaz",
+ "songName": {
+ "jpText": "ラパスの虹",
+ "jpFont": 0,
+ "enText": "Rainbow of La Paz",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "LeNoir",
+ "jpFont": 0,
+ "enText": "LeNoir",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ラパスの虹",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "leciel",
+ "songName": {
+ "jpText": "LECIEL GLISSANDO",
+ "jpFont": 0,
+ "enText": "LECIEL GLISSANDO",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "よみぃ",
+ "jpFont": 0,
+ "enText": "Yomii",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lovem",
+ "songName": {
+ "jpText": "LOVEマシーン",
+ "jpFont": 0,
+ "enText": "LOVE Machine",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "LOVEマシーン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lwitch",
+ "songName": {
+ "jpText": "リトルホワイトウィッチ",
+ "jpFont": 0,
+ "enText": "Little White Witch",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "塚越雄一朗(NanosizeMir) & 祇羽 feat. 愛原圭織",
+ "jpFont": 0,
+ "enText": "Yuichiro Tsukagoshi(NanosizeMir) and GIW feat. Kaori Aihara",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "リトルホワイトウィッチ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "megm3x",
+ "songName": {
+ "jpText": "女神な世界 Ⅲ",
+ "jpFont": 0,
+ "enText": "Megami na Sekai III",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "翡翠&祇羽 feat. 深雪ゆあ×湖山えりか",
+ "jpFont": 0,
+ "enText": "Hisui & GIW feat. Yua Miyuki x Erika Koyama",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "女神な世界 Ⅲ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "metamt",
+ "songName": {
+ "jpText": "めためた☆ゆにば~すっ!",
+ "jpFont": 0,
+ "enText": "METAMETA☆Universe!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "kyo(BNSI) × Mitsu(TRYTONELABO) feat. 本木咲黒",
+ "jpFont": 0,
+ "enText": "kyo(BNSI) × Mitsu(TRYTONELABO) feat. Zakuro Motoki",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "めためた☆ゆにば~すっ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mgadh",
+ "songName": {
+ "jpText": "ダンスホール",
+ "jpFont": 0,
+ "enText": "Dance Hall",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ダンスホール",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikddc",
+ "songName": {
+ "jpText": "ダーリンダンス",
+ "jpFont": 0,
+ "enText": "DARLING DANCE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "かいりきベア feat. 初音ミク",
+ "jpFont": 0,
+ "enText": "Kairiki bear feat. HATSUNE MIKU",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ダーリンダンス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikdp",
+ "songName": {
+ "jpText": "拝啓ドッペルゲンガー",
+ "jpFont": 0,
+ "enText": "Haikei Doppelganger",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "kemu feat. 初音ミク",
+ "jpFont": 0,
+ "enText": "kemu feat. Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "拝啓ドッペルゲンガー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikkmp",
+ "songName": {
+ "jpText": "神っぽいな",
+ "jpFont": 0,
+ "enText": "God-ish",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ピノキオピー feat. 初音ミク",
+ "jpFont": 0,
+ "enText": "PinocchioP feat. Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "神っぽいな",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "min7kg",
+ "songName": {
+ "jpText": "ミンナノカキゴオリ",
+ "jpFont": 0,
+ "enText": "MINNA NO KAKIGOORI",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ボンジュール鈴木 feat. 塚越雄一朗(NanosizeMir) & 祇羽",
+ "jpFont": 0,
+ "enText": "Bonjour Suzuki feat. Yuichiro Tsukagoshi(NanosizeMir) and GIW",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ミンナノカキゴオリ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mksskn",
+ "songName": {
+ "jpText": "スキに理由はいらないじゃん!",
+ "jpFont": 0,
+ "enText": "You don't need a reason to like it!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "オミコシスターズ feat. Ponchi♪ / WADIVE RECORD",
+ "jpFont": 0,
+ "enText": "Omiko Sisters feat. Ponchi♪ / WADIVE RECORD",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "スキに理由はいらないじゃん!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mndoor",
+ "songName": {
+ "jpText": "真夜中のドア~Stay with me",
+ "jpFont": 0,
+ "enText": "MAYONAKANO DOA-STAY WITH ME",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "真夜中のドア~Stay with me",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "moeyos",
+ "songName": {
+ "jpText": "燃えよサファイア",
+ "jpFont": 0,
+ "enText": "Sapphire On Fire",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "庭師",
+ "jpFont": 0,
+ "enText": "Niwashi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "燃えよサファイア",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nekokz",
+ "songName": {
+ "jpText": "風になる",
+ "jpFont": 0,
+ "enText": "Kaze Ni Naru",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「猫の恩返し」より",
+ "jpFont": 0,
+ "enText": "From \" The Cat Returns \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "風になる",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nightd",
+ "songName": {
+ "jpText": "NIGHT DANCER",
+ "jpFont": 0,
+ "enText": "NIGHT DANCER",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nijbtn",
+ "songName": {
+ "jpText": "ニジイロバトン",
+ "jpFont": 0,
+ "enText": "Nijiiro Baton",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Ponchi♪ feat. はぁち × Donders",
+ "jpFont": 0,
+ "enText": "Ponchi♪ feat. haxchi × Donders",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ニジイロバトン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "o2rang",
+ "songName": {
+ "jpText": "O2",
+ "jpFont": 0,
+ "enText": "O2",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "o4noko",
+ "songName": {
+ "jpText": "アイドル",
+ "jpFont": 0,
+ "enText": "Idol",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "TVアニメ『【推しの子】』より",
+ "jpFont": 0,
+ "enText": "From TV Animation \" 【Oshi no Ko】 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アイドル",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ohdlov",
+ "songName": {
+ "jpText": "I LOVE...",
+ "jpFont": 0,
+ "enText": "I LOVE...",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Official髭男dism",
+ "jpFont": 0,
+ "enText": "OFFICIAL HIGE DANDISM",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ohdmi2",
+ "songName": {
+ "jpText": "ミックスナッツ",
+ "jpFont": 0,
+ "enText": "Mixed nuts",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "アニメ「SPY×FAMILY」オープニング主題歌",
+ "jpFont": 0,
+ "enText": "Anime \" SPY×FAMILY \" Opening Theme",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ミックスナッツ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ohdsub",
+ "songName": {
+ "jpText": "Subtitle",
+ "jpFont": 0,
+ "enText": "Subtitle",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "otomuh",
+ "songName": {
+ "jpText": "音虫を響かせろ!",
+ "jpFont": 0,
+ "enText": "OTOMUSHI WO HIBIKASERO!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "KiWi × Sho Okada(BNSI)",
+ "jpFont": 0,
+ "enText": "KiWi × Sho Okada(BNSI)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "音虫を響かせろ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "p5life",
+ "songName": {
+ "jpText": "Life Will Change",
+ "jpFont": 0,
+ "enText": "Life Will Change",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ペルソナ5」より",
+ "jpFont": 0,
+ "enText": "From \" Persona 5 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pacmte",
+ "songName": {
+ "jpText": "We are PAC-MAN!",
+ "jpFont": 0,
+ "enText": "We are PAC-MAN!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "PAC-MAN Official Theme Song",
+ "jpFont": 0,
+ "enText": "PAC-MAN Official Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pkm121",
+ "songName": {
+ "jpText": "1・2・3",
+ "jpFont": 0,
+ "enText": "1・2・3",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "アニメ「ポケットモンスター(2019)」より",
+ "jpFont": 0,
+ "enText": "From \" Pokémon the Series (2019) \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pkmdkm",
+ "songName": {
+ "jpText": "ドキメキダイアリー",
+ "jpFont": 0,
+ "enText": "DOKIMEKI DIARY",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "アニメ「ポケットモンスター(2023)」より",
+ "jpFont": 0,
+ "enText": "From \" Pokémon the Series (2023) \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドキメキダイアリー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pkmhal",
+ "songName": {
+ "jpText": "ハロ",
+ "jpFont": 0,
+ "enText": "halo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "アニメ「ポケットモンスター(2023)」より",
+ "jpFont": 0,
+ "enText": "From \" Pokémon the Series (2023) \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ハロ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ponpok",
+ "songName": {
+ "jpText": "PONPOKO RHYTHM",
+ "jpFont": 0,
+ "enText": "PONPOKO RHYTHM",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Mamyukka",
+ "jpFont": 0,
+ "enText": "Mamyukka",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ptptpk",
+ "songName": {
+ "jpText": "ぺた・PETA!?パンプキン",
+ "jpFont": 0,
+ "enText": "PETA-PETA!?PUMPKIN",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ゆ~くれ",
+ "jpFont": 0,
+ "enText": "Yutopia Qremia",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ぺた・PETA!?パンプキン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ravemc",
+ "songName": {
+ "jpText": "バブル・リップ・レイヴ・マシン",
+ "jpFont": 0,
+ "enText": "BUBBLE LIP RAVE MACHINE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Sho Okada(BNSI) feat. ボンジュール鈴木",
+ "jpFont": 0,
+ "enText": "Sho Okada(BNSI) feat. Bonjour Suzuki",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "バブル・リップ・レイヴ・マシン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rikka",
+ "songName": {
+ "jpText": "六華の舞",
+ "jpFont": 0,
+ "enText": "The Dance of a Snow Crystal",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ぺのれり",
+ "jpFont": 0,
+ "enText": "penoreri",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "六華の舞",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rr6pac",
+ "songName": {
+ "jpText": "RUN PAC-MAN RUN!",
+ "jpFont": 0,
+ "enText": "RUN PAC-MAN RUN!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「リッジレーサー6」より",
+ "jpFont": 0,
+ "enText": "From \" Ridge Racer 6 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "scarbl",
+ "songName": {
+ "jpText": "スカー",
+ "jpFont": 0,
+ "enText": "Scar",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "スカー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "senkoe",
+ "songName": {
+ "jpText": "千の夜をこえて",
+ "jpFont": 0,
+ "enText": "Sen no Yoru o Koete",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "千の夜をこえて",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "skohab",
+ "songName": {
+ "jpText": "Habit",
+ "jpFont": 0,
+ "enText": "Habit",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "映画『ホリック xxxHOLiC』主題歌",
+ "jpFont": 0,
+ "enText": "The Movie \" xxxHOLiC \" Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "smoon2",
+ "songName": {
+ "jpText": "ムーンライト伝説",
+ "jpFont": 0,
+ "enText": "Moonlight Legend",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「美少女戦士セーラームーン」より",
+ "jpFont": 0,
+ "enText": "From \" Pretty Guardian Sailor Moon \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ムーンライト伝説",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "smtcin",
+ "songName": {
+ "jpText": "サマータイムシンデレラ",
+ "jpFont": 0,
+ "enText": "Summer Time Cinderella",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "サマータイムシンデレラ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "snhero",
+ "songName": {
+ "jpText": "罪と罰 祈らざる者よ",
+ "jpFont": 0,
+ "enText": "Crime and Punishment - Those who are unwilling to pray",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "高橋洋子",
+ "jpFont": 0,
+ "enText": "Yoko Takahashi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "罪と罰 祈らざる者よ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "souvnr",
+ "songName": {
+ "jpText": "SOUVENIR",
+ "jpFont": 0,
+ "enText": "SOUVENIR",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "BUMP OF CHICKEN TVアニメ『SPY×FAMILY』第2クールオープニング主題歌",
+ "jpFont": 0,
+ "enText": "BUMP OF CHICKEN TV Anime \" SPY×FAMILY \" Cour 2 Opening Theme",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "stairw",
+ "songName": {
+ "jpText": "Stairway Generation",
+ "jpFont": 0,
+ "enText": "Stairway Generation",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "アニメ「銀魂」",
+ "jpFont": 0,
+ "enText": "From \" Gintama \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "strmin",
+ "songName": {
+ "jpText": "スターマイン",
+ "jpFont": 0,
+ "enText": "Star mine",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "スターマイン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "surges",
+ "songName": {
+ "jpText": "Surges",
+ "jpFont": 0,
+ "enText": "Surges",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sw2op",
+ "songName": {
+ "jpText": "まいにちがドンダフル",
+ "jpFont": 0,
+ "enText": "Donderful Everyday",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "まいにちがドンダフル",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "teknow",
+ "songName": {
+ "jpText": "テクノヴェルクメドレー",
+ "jpFont": 0,
+ "enText": "TEKNO WERK Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "テクノヴェルクメドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thsclp",
+ "songName": {
+ "jpText": "スカーレット警察のゲットーパトロール24時",
+ "jpFont": 0,
+ "enText": "Scarlet Police on Ghetto Patrol 24PM",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ 七条レタスグループ",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange / Shichijo Lettuce Group",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "スカーレット警察のゲットーパトロール24時",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thusat",
+ "songName": {
+ "jpText": "ウサテイ",
+ "jpFont": 0,
+ "enText": "USATEI",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ あまね+ビートまりお (COOL&CREATE)",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange / Amane + beatMARIO (COOL&CREATE)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ウサテイ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "timimo",
+ "songName": {
+ "jpText": "魑魅魍魎",
+ "jpFont": 0,
+ "enText": "Chimi Moryo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Laur",
+ "jpFont": 0,
+ "enText": "Laur",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "魑魅魍魎",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tmbeat",
+ "songName": {
+ "jpText": "テルミービート",
+ "jpFont": 0,
+ "enText": "Tell Me Beat",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "キノシタ feat. 鏡音リン",
+ "jpFont": 0,
+ "enText": "kinoshita feat. Kagamine Rin",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "テルミービート",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tontwi",
+ "songName": {
+ "jpText": "TAIKO-TONGUE-TWISTER",
+ "jpFont": 0,
+ "enText": "TAIKO-TONGUE-TWISTER",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Cory Tarrow(BNSI) feat. M.Polak, Avigail D., L.Munoz and Bryan D.",
+ "jpFont": 0,
+ "enText": "Cory Tarrow(BNSI) feat. M.Polak, Avigail D., L.Munoz and Bryan D.",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "torays",
+ "songName": {
+ "jpText": "Back to Life",
+ "jpFont": 0,
+ "enText": "Back to Life",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "平原綾香 「テイルズ オブ ザ レイズ」より",
+ "jpFont": 0,
+ "enText": "AYAKA HIRAHARA From \" TALES OF THE RAYS \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tosym",
+ "songName": {
+ "jpText": "Starry Heavens ver.2013",
+ "jpFont": 0,
+ "enText": "Starry Heavens ver.2013",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "misono 「テイルズ オブ シンフォニア」より",
+ "jpFont": 0,
+ "enText": "misono From \" Tales of Symphonia \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "twcfsp",
+ "songName": {
+ "jpText": "Feel Special",
+ "jpFont": 0,
+ "enText": "Feel Special",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "TWICE",
+ "jpFont": 0,
+ "enText": "TWICE",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "twcttk",
+ "songName": {
+ "jpText": "TT",
+ "jpFont": 0,
+ "enText": "TT",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "TWICE",
+ "jpFont": 0,
+ "enText": "TWICE",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "udtmglx",
+ "songName": {
+ "jpText": "MEGALOVANIA",
+ "jpFont": 0,
+ "enText": "MEGALOVANIA",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「UNDERTALE」より",
+ "jpFont": 0,
+ "enText": "From \" UNDERTALE \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "utauta",
+ "songName": {
+ "jpText": "詩謳兎揺蕩兎",
+ "jpFont": 0,
+ "enText": "Singing Rabbit Swinging",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "立秋 feat. ちょこ",
+ "jpFont": 0,
+ "enText": "Rish feat. Choko",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "詩謳兎揺蕩兎",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "vfvill",
+ "songName": {
+ "jpText": "ヴィラン",
+ "jpFont": 0,
+ "enText": "villain",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "flower・てにをは",
+ "jpFont": 0,
+ "enText": "flower・teniwoha",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ヴィラン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "vivivi",
+ "songName": {
+ "jpText": "VIVIVIVID",
+ "jpFont": 0,
+ "enText": "VIVIVIVID",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "M-O-T-U",
+ "jpFont": 0,
+ "enText": "M-O-T-U",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "watakw",
+ "songName": {
+ "jpText": "わたしの一番かわいいところ",
+ "jpFont": 0,
+ "enText": "Watashino Ichiban Kawaii Tokoro",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "FRUITS ZIPPER",
+ "jpFont": 0,
+ "enText": "FRUITS ZIPPER",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "わたしの一番かわいいところ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "wego",
+ "songName": {
+ "jpText": "ウィーゴー!",
+ "jpFont": 0,
+ "enText": "We Go!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ワンピース」より",
+ "jpFont": 0,
+ "enText": "From \" One Piece \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ウィーゴー!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "wxyta2",
+ "songName": {
+ "jpText": "W/X/Y",
+ "jpFont": 0,
+ "enText": "W/X/Y",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "xevi",
+ "songName": {
+ "jpText": "ゼビウス体操",
+ "jpFont": 0,
+ "enText": "Xevious Taiso",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ゼビウス体操",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ymyrp5",
+ "songName": {
+ "jpText": "ドンバルディアの踊り子",
+ "jpFont": 0,
+ "enText": "Dancer of DONbardia",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "山本由貴子",
+ "jpFont": 0,
+ "enText": "Yukiko Yamamoto",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドンバルディアの踊り子",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "yokai",
+ "songName": {
+ "jpText": "妖怪道中記音頭",
+ "jpFont": 0,
+ "enText": "Yokai Dochuuki Ondo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "妖怪道中記音頭",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "yumeut",
+ "songName": {
+ "jpText": "夢うつつカタルシス",
+ "jpFont": 0,
+ "enText": "Semi-Conscious Catharsis",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "大木奏弥(BNSI) feat. 愛原圭織",
+ "jpFont": 0,
+ "enText": "Kanaya Oki(BNSI) feat. Kaori Aihara",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "夢うつつカタルシス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "zelda3",
+ "songName": {
+ "jpText": "ゼルダの伝説 メインテーマ",
+ "jpFont": 0,
+ "enText": "The Legend of Zelda Main Theme",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ゼルダの伝説 メインテーマ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "zenkja",
+ "songName": {
+ "jpText": "全力全開!ゼンカイジャー",
+ "jpFont": 0,
+ "enText": "Zenryokuzenkai! Zenkaiger",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「機界戦隊ゼンカイジャー」より",
+ "jpFont": 0,
+ "enText": "From \" Kikai Sentai Zenkaiger \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "全力全開!ゼンカイジャー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "1pswup",
+ "songName": {
+ "jpText": "Wake up!",
+ "jpFont": 0,
+ "enText": "Wake up!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ワンピース」より",
+ "jpFont": 0,
+ "enText": "From \" One Piece \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "3d2b1x",
+ "songName": {
+ "jpText": "Time to dine",
+ "jpFont": 0,
+ "enText": "Time to dine",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "amacha",
+ "songName": {
+ "jpText": "あまちゃん",
+ "jpFont": 0,
+ "enText": "Amachan",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "オープニングテーマ",
+ "jpFont": 0,
+ "enText": "Opening Theme",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "あまちゃん",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsff",
+ "songName": {
+ "jpText": "フニクリ・フニクラ",
+ "jpFont": 0,
+ "enText": "Funiculi Funicula",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "フニクリ・フニクラ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsyod",
+ "songName": {
+ "jpText": "リパブリック産科",
+ "jpFont": 0,
+ "enText": "Republic Praise",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "リパブリック産科",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "curl2",
+ "songName": {
+ "jpText": "カールのうた秋 池のほとり篇",
+ "jpFont": 0,
+ "enText": "Karl no Uta: Autumn Pondside Version",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fu7fu7",
+ "songName": {
+ "jpText": "ふな ふな ふなっしー♪",
+ "jpFont": 0,
+ "enText": "Funa Funa Funassyi!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "〜ふなっしー公式テーマソング〜",
+ "jpFont": 0,
+ "enText": "~Funassyi Official Theme Song~",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ふな ふな ふなっしー♪",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gaimus",
+ "songName": {
+ "jpText": "JUST LIVE MORE",
+ "jpFont": 0,
+ "enText": "JUST LIVE MORE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「仮面ライダー鎧武」より",
+ "jpFont": 0,
+ "enText": "From \" Kamen Rider Gaim \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gumima",
+ "songName": {
+ "jpText": "マトリョシカ",
+ "jpFont": 0,
+ "enText": "Matryoshka",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ハチ",
+ "jpFont": 0,
+ "enText": "Hachi feat.Hatsune Miku・GUMI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "マトリョシカ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gurt",
+ "songName": {
+ "jpText": "買ってロック",
+ "jpFont": 0,
+ "enText": "Katte Rock",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「グルト!」CMソング",
+ "jpFont": 0,
+ "enText": "\" Guruto! \" CM Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "買ってロック",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hcpri9",
+ "songName": {
+ "jpText": "ハピネスチャージプリキュア!WOW!",
+ "jpFont": 0,
+ "enText": "Happiness Charge Precure! WOW!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ハピネスチャージプリキュア!WOW!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "m96srb",
+ "songName": {
+ "jpText": "サラバ、愛しき悲しみたちよ",
+ "jpFont": 0,
+ "enText": "Saraba, Itoshiki Kanashimi Tachi Yo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ももいろクローバーZ",
+ "jpFont": 0,
+ "enText": "Momoiro Clover Z",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "サラバ、愛しき悲しみたちよ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mottai",
+ "songName": {
+ "jpText": "もったいないとらんど",
+ "jpFont": 0,
+ "enText": "Mottai Night Land",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "きゃりーぱみゅぱみゅ",
+ "jpFont": 0,
+ "enText": "Kyary Pamyu Pamyu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "もったいないとらんど",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pacm",
+ "songName": {
+ "jpText": "L・O・V・E",
+ "jpFont": 0,
+ "enText": "L・O・V・E",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pkmnvo",
+ "songName": {
+ "jpText": "V (ボルト)",
+ "jpFont": 0,
+ "enText": "V (Volt)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "From \" Pokémon XY \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "V (ボルト)",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "shline",
+ "songName": {
+ "jpText": "SHINING LINE*",
+ "jpFont": 0,
+ "enText": "SHINING LINE*",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイカツ!」より",
+ "jpFont": 0,
+ "enText": "From \" Aikatsu! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sochi",
+ "songName": {
+ "jpText": "今、咲き誇る花たちよ",
+ "jpFont": 0,
+ "enText": "Ima, Sakihokoru Hanatachi Yo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "NHKソチオリンピック・パラリンピック放送 テーマソング",
+ "jpFont": 0,
+ "enText": "Kobukuro",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "今、咲き誇る花たちよ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tok9ja",
+ "songName": {
+ "jpText": "烈車戦隊トッキュウジャー",
+ "jpFont": 0,
+ "enText": "Ressha Sentai ToQger",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "烈車戦隊トッキュウジャー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "zolext",
+ "songName": {
+ "jpText": "エキセントリックw",
+ "jpFont": 0,
+ "enText": "Eccentric w",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "銀河方面P",
+ "jpFont": 0,
+ "enText": "ZOLA PROJECT",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "エキセントリックw",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "3d3hex",
+ "songName": {
+ "jpText": "魔導幻想曲",
+ "jpFont": 0,
+ "enText": "Madou Gensoukyoku",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "魔導幻想曲",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ansa23",
+ "songName": {
+ "jpText": "QUESTION",
+ "jpFont": 0,
+ "enText": "QUESTION",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「暗殺教室」より",
+ "jpFont": 0,
+ "enText": "From \" Assassination Classroom \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "calib3",
+ "songName": {
+ "jpText": "New Legend",
+ "jpFont": 0,
+ "enText": "New Legend",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "From \" Soul Calibur III \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dietft",
+ "songName": {
+ "jpText": "ダイエットファイター",
+ "jpFont": 0,
+ "enText": "Diet Fighter",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ダイエットファイター",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dora36",
+ "songName": {
+ "jpText": "360°",
+ "jpFont": 0,
+ "enText": "360°",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "miwa",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gyak31",
+ "songName": {
+ "jpText": "逆転裁判123メドレー",
+ "jpFont": 0,
+ "enText": "Phoenix Wright 123 Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "逆転裁判123メドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hkdays",
+ "songName": {
+ "jpText": "Hard Knock Days",
+ "jpFont": 0,
+ "enText": "Hard Knock Days",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "From \" One Piece \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "iachil",
+ "songName": {
+ "jpText": "チルドレンレコード",
+ "jpFont": 0,
+ "enText": "Children Record",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "じん",
+ "jpFont": 0,
+ "enText": "Jin",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "チルドレンレコード",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kimuso",
+ "songName": {
+ "jpText": "光るなら",
+ "jpFont": 0,
+ "enText": "Hikaru Nara",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "光るなら",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kr5st2",
+ "songName": {
+ "jpText": "我ら思う、故に我ら在り",
+ "jpFont": 0,
+ "enText": "Warera Omou, Yue ni Warera Ari",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「仮面ライダーゴースト」より",
+ "jpFont": 0,
+ "enText": "From \" Kamen Rider Ghost \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "我ら思う、故に我ら在り",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "krkrkk",
+ "songName": {
+ "jpText": "ころころここたま!",
+ "jpFont": 0,
+ "enText": "Korokoro Cocotama!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「かみさまみならい ヒミツのここたま」より",
+ "jpFont": 0,
+ "enText": "From \" Kamisama Minarai:Himitsu no Cocotama \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ころころここたま!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "monhnx",
+ "songName": {
+ "jpText": "トラベルナ ~モンスターハンタークロスより~",
+ "jpFont": 0,
+ "enText": "TraBelna ~From Monster Hunter Cross~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Reo Uratani feat. Cat-girl Katy (CV:Reina Ueda)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "トラベルナ ~モンスターハンタークロスより~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mscl4",
+ "songName": {
+ "jpText": "AWAKE~マッスル目覚めのテーマ~",
+ "jpFont": 0,
+ "enText": "AWAKE ~Muscle Mezame no Theme~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "From \" Muscle March \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "AWAKE ~マッスル目覚めのテーマ~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nameko",
+ "songName": {
+ "jpText": "なめこのうた",
+ "jpFont": 0,
+ "enText": "Nameko no Uta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "なめこのうた",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nedari",
+ "songName": {
+ "jpText": "ないものねだり",
+ "jpFont": 0,
+ "enText": "Nai Mono Nedari",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ないものねだり",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sora3x",
+ "songName": {
+ "jpText": "SORA-III ヘリオポーズ",
+ "jpFont": 0,
+ "enText": "SORA-III Heliopause",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "SORA-III ヘリオポーズ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sphang",
+ "songName": {
+ "jpText": "Outride a Crisis",
+ "jpFont": 0,
+ "enText": "Outride a Crisis",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「SUPER HANG-ON」より",
+ "jpFont": 0,
+ "enText": "From \" Super Hang-On \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "untaka",
+ "songName": {
+ "jpText": "ウンタカダンス",
+ "jpFont": 0,
+ "enText": "Untaka Dance",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「映画ドラえもん 新・のび太の日本誕生」スペシャル応援ソング",
+ "jpFont": 0,
+ "enText": "From \" Doraemon:Nobita and the Birth of Japan 2016 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ウンタカダンス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "valk",
+ "songName": {
+ "jpText": "ワルキューレの騎行",
+ "jpFont": 0,
+ "enText": "Ride of the Valkyrie",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ワーグナー",
+ "jpFont": 0,
+ "enText": "Richard Wagner",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ワルキューレの騎行",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "3d3b2x",
+ "songName": {
+ "jpText": "龍脈の王",
+ "jpFont": 0,
+ "enText": "Ryuumyaku no Ou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "龍脈の王",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "aino",
+ "songName": {
+ "jpText": "太鼓の達人・愛のテーマ",
+ "jpFont": 0,
+ "enText": "Taiko no Tatsujin Love Theme",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "太鼓の達人・愛のテーマ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "apollo",
+ "songName": {
+ "jpText": "アポロ",
+ "jpFont": 0,
+ "enText": "Apollo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "アポロ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "argmem",
+ "songName": {
+ "jpText": "Argent Memories",
+ "jpFont": 0,
+ "enText": "Argent Memories",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "babel",
+ "songName": {
+ "jpText": "バベルの塔",
+ "jpFont": 0,
+ "enText": "The Tower of Babel",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "バベルの塔",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bko1",
+ "songName": {
+ "jpText": "どんちゃん 世界旅行",
+ "jpFont": 0,
+ "enText": "Don-Chan Sekai Ryokou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "どんちゃん 世界旅行",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsn",
+ "songName": {
+ "jpText": "新世界より",
+ "jpFont": 0,
+ "enText": "From The New World",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ドヴォルザーク",
+ "jpFont": 0,
+ "enText": "Antonin Dvorak",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "新世界より",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsrad",
+ "songName": {
+ "jpText": "ラデツキー行進曲",
+ "jpFont": 0,
+ "enText": "Radetzky March",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "J.シュトラウス(1世)",
+ "jpFont": 0,
+ "enText": "Johann Strauss I",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "ラデツキー行進曲",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "coro4",
+ "songName": {
+ "jpText": "コロコロコミック40周年のうた",
+ "jpFont": 0,
+ "enText": "CoroCoro Comics 40th Anniversary Song",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "岡崎体育",
+ "jpFont": 0,
+ "enText": "Taiiku Okazaki",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "コロコロコミック40周年のうた",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "crturb",
+ "songName": {
+ "jpText": "Urban Striker",
+ "jpFont": 0,
+ "enText": "Urban Striker",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「クリティカルベロシティ」より",
+ "jpFont": 0,
+ "enText": "From \" Critical Velocity \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "cs4op",
+ "songName": {
+ "jpText": "おはよう!太鼓サマー",
+ "jpFont": 0,
+ "enText": "Ohayo! Taiko Summer",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「太鼓の達人 あつまれ!祭りだ!!四代目」テーマソング",
+ "jpFont": 0,
+ "enText": " \" Taiko no Tatsujin: Atsumare! Matsuri da!!Yondaime \" Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "おはよう!太鼓サマー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "csabop",
+ "songName": {
+ "jpText": "響け!太鼓の達人",
+ "jpFont": 0,
+ "enText": "Hibike! Taiko No Tatsujin",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "水木一郎・堀江美都子・影山ヒロノブ",
+ "jpFont": 0,
+ "enText": "Ichiro Mizuki・Mitsuko Horie・Hironobu Kageyama",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "響け!太鼓の達人",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dariu2",
+ "songName": {
+ "jpText": "OLGA BREEZE [太陽シーン]",
+ "jpFont": 0,
+ "enText": "OLGA BREEZE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ダライアスII」より",
+ "jpFont": 0,
+ "enText": "From \" Darius II \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "OLGA BREEZE [太陽シーン]",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "digmon",
+ "songName": {
+ "jpText": "Butter-Fly",
+ "jpFont": 0,
+ "enText": "Butter-Fly",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「デジモンアドベンチャー」より",
+ "jpFont": 0,
+ "enText": "From \" Digimon Adventure \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dlearn",
+ "songName": {
+ "jpText": "241ディープラーニング",
+ "jpFont": 0,
+ "enText": "241 Deep Learning",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "241ディープラーニング",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "drsb",
+ "songName": {
+ "jpText": "ドラゴンセイバー 水没都市",
+ "jpFont": 0,
+ "enText": "Dragon Saber Submerged City",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "ドラゴンセイバー 水没都市",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ds3bs2",
+ "songName": {
+ "jpText": "大多羅捌伍伍壱",
+ "jpFont": 0,
+ "enText": "Daidara 8551",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "大多羅捌伍伍壱",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "excsab",
+ "songName": {
+ "jpText": "響け!太鼓の達人 -Long Ver.-",
+ "jpFont": 0,
+ "enText": "Hibike! Taiko No Tatsujin -Long Ver.-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "水木一郎・堀江美都子・影山ヒロノブ",
+ "jpFont": 0,
+ "enText": "Ichiro Mizuki・Mitsuko Horie・Hironobu Kageyama",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "響け!太鼓の達人 -Long Ver.-",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "exnao",
+ "songName": {
+ "jpText": "風雲!バチお先生 -Long Ver.-",
+ "jpFont": 0,
+ "enText": "Hu-un! Bachio Sensei -Long Ver.-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "風雲!バチお先生 -Long Ver.-",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "exw2b2",
+ "songName": {
+ "jpText": "ヒカリノカナタヘ -Long Ver.-",
+ "jpFont": 0,
+ "enText": "Hikari no Kanatae -Long Ver.-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "ヒカリノカナタヘ -Long Ver.-",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "flksak",
+ "songName": {
+ "jpText": "さくら(春)",
+ "jpFont": 0,
+ "enText": "Sakura (Spring)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "さくら(春)",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gimcho",
+ "songName": {
+ "jpText": "ギミチョコ!!",
+ "jpFont": 0,
+ "enText": "Gimme Chocolate!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "BABYMETAL",
+ "jpFont": 0,
+ "enText": "BABYMETAL",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "ギミチョコ!!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gldnkm",
+ "songName": {
+ "jpText": "Winding Road",
+ "jpFont": 0,
+ "enText": "Winding Road",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ゴールデンカムイ」より",
+ "jpFont": 0,
+ "enText": "From \" Golden Kamuy \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "go9ra9",
+ "songName": {
+ "jpText": "極楽浄土",
+ "jpFont": 0,
+ "enText": "Gokurakujoudo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "GARNiDELiA",
+ "jpFont": 0,
+ "enText": "GARNiDELiA",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "極楽浄土",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gumis2",
+ "songName": {
+ "jpText": "セツナトリップ",
+ "jpFont": 0,
+ "enText": "Setsuna Trip",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Last NOTE.",
+ "jpFont": 0,
+ "enText": "Last NOTE.",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "セツナトリップ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hkitty",
+ "songName": {
+ "jpText": "ハローキティ",
+ "jpFont": 0,
+ "enText": "Hello Kitty",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "ハローキティ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hsgirl",
+ "songName": {
+ "jpText": "New Stranger",
+ "jpFont": 0,
+ "enText": "New Stranger",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ハイスコアガール」より",
+ "jpFont": 0,
+ "enText": "From \" Hi Score Girl \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hypmic",
+ "songName": {
+ "jpText": "ヒプノシスマイク -Division Battle Anthem-",
+ "jpFont": 0,
+ "enText": "Hypnosismic -Division Battle Anthem-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Division All Stars",
+ "jpFont": 0,
+ "enText": "Division All Stars",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "ヒプノシスマイク -Division Battle Anthem-",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsnex",
+ "songName": {
+ "jpText": "Next Life",
+ "jpFont": 0,
+ "enText": "Next Life",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "insidm",
+ "songName": {
+ "jpText": "1/2 ~inside me",
+ "jpFont": 0,
+ "enText": "1/2 ~inside me",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "篠原瑞希 feat. 愛原圭織",
+ "jpFont": 0,
+ "enText": "Mizuki Shinohara feat. Kaori Aihara",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "iswaze",
+ "songName": {
+ "jpText": "意識のワーゼ",
+ "jpFont": 0,
+ "enText": "Ishiki no Waze",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "意識のワーゼ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "jazz2",
+ "songName": {
+ "jpText": "Taiko Session",
+ "jpFont": 0,
+ "enText": "Taiko Session",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "~Live Version~",
+ "jpFont": 0,
+ "enText": "~Live Version~",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kahim",
+ "songName": {
+ "jpText": "ラ・モレーナ・クモナイ",
+ "jpFont": 0,
+ "enText": "La Morena Kumonai",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "ラ・モレーナ・クモナイ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "keion",
+ "songName": {
+ "jpText": "Don’t say ”lazy”",
+ "jpFont": 0,
+ "enText": "Don't say \"lazy\"",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「けいおん!」より",
+ "jpFont": 0,
+ "enText": "From \" K-On! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kmbaby",
+ "songName": {
+ "jpText": "キルミーのベイベー!",
+ "jpFont": 0,
+ "enText": "Baby, please kill me!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「キルミーベイベー」より",
+ "jpFont": 0,
+ "enText": "From \" Baby, please kill me. \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "キルミーのベイベー!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ksrain",
+ "songName": {
+ "jpText": "喫茶レイン",
+ "jpFont": 0,
+ "enText": "Kissa Rain",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "喫茶レイン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mappy2",
+ "songName": {
+ "jpText": "マッピーメドレー",
+ "jpFont": 0,
+ "enText": "Mappy Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "マッピーメドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikugk",
+ "songName": {
+ "jpText": "初音ミクの激唱",
+ "jpFont": 0,
+ "enText": "Hatsune Miku no Gekishou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "cosMo@暴走P 「初音ミク -Project DIVA- 2nd」より",
+ "jpFont": 0,
+ "enText": "cosMo@bousouP From \" Hatsune Miku:Project DIVA 2nd \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "初音ミクの激唱",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "moji",
+ "songName": {
+ "jpText": "もじぴったんメドレー",
+ "jpFont": 0,
+ "enText": "Mojipittan Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "太鼓の達人オリジナル曲",
+ "jpFont": 0,
+ "enText": "Taiko no Tatsujin Original Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "もじぴったんメドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "neverl",
+ "songName": {
+ "jpText": "Touch off",
+ "jpFont": 0,
+ "enText": "Touch off",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「約束のネバーランド」より",
+ "jpFont": 0,
+ "enText": "From \" The Promised Neverland \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "omirai",
+ "songName": {
+ "jpText": "オリジナルミライ",
+ "jpFont": 0,
+ "enText": "Original Mirai",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat.マモル(nhhmbase)",
+ "jpFont": 0,
+ "enText": "feat. Mamoru(nhhmbase)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "オリジナルミライ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "r4nak",
+ "songName": {
+ "jpText": "Naked Glow",
+ "jpFont": 0,
+ "enText": "Naked Glow",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「R4 ‐RIDGE RACER TYPE4‐」より",
+ "jpFont": 0,
+ "enText": "From \" R4: Ridge Racer Type 4 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "saoop",
+ "songName": {
+ "jpText": "crossing field",
+ "jpFont": 0,
+ "enText": "crossing field",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ソードアート・オンライン」より",
+ "jpFont": 0,
+ "enText": "From \" Sword Art Online \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "senval",
+ "songName": {
+ "jpText": "閃光ヴァルキュリア",
+ "jpFont": 0,
+ "enText": "Senkou Valkyria",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "清風明月(Drop×葉月ゆら)",
+ "jpFont": 0,
+ "enText": "Seifuumeigetsu (Drop x Yura Hatsuki)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "閃光ヴァルキュリア",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "so2omf",
+ "songName": {
+ "jpText": "そつおめしき・ふる",
+ "jpFont": 0,
+ "enText": "Sotsu Omeshiki Full",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat.unmo",
+ "jpFont": 0,
+ "enText": "feat. unmo",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "そつおめしき・ふる",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "solstr",
+ "songName": {
+ "jpText": "Solitude Star",
+ "jpFont": 0,
+ "enText": "Solitude Star",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "春先 x beet",
+ "jpFont": 0,
+ "enText": "Harusaki x beet",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tkwata",
+ "songName": {
+ "jpText": "142トキノワタリドリ",
+ "jpFont": 0,
+ "enText": "142 Toki no Watari-dori",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "142トキノワタリドリ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tkym2",
+ "songName": {
+ "jpText": "崩冠の紅月",
+ "jpFont": 0,
+ "enText": "Houkan no Kugetsu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "破章「嘆きの姫」",
+ "jpFont": 0,
+ "enText": "Hashou \" Nageki no Hime \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "崩冠の紅月",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tnkgrd",
+ "songName": {
+ "jpText": "グランドエスケープ",
+ "jpFont": 0,
+ "enText": "Grand Escape",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「天気の子」より",
+ "jpFont": 0,
+ "enText": "From \" Weathering with You \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "グランドエスケープ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tongat",
+ "songName": {
+ "jpText": "トンガチン",
+ "jpFont": 0,
+ "enText": "Tongachin",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Kimitaka Matsumae",
+ "jpFont": 0,
+ "enText": "Kimitaka Matsumae",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "トンガチン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "udtkkr",
+ "songName": {
+ "jpText": "心の痛み",
+ "jpFont": 0,
+ "enText": "Heartache",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「UNDERTALE」より",
+ "jpFont": 0,
+ "enText": "From \" UNDERTALE \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "心の痛み",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "uminok",
+ "songName": {
+ "jpText": "海の声",
+ "jpFont": 0,
+ "enText": "Umi no Koe",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "au「三太郎シリーズ」CMソング",
+ "jpFont": 0,
+ "enText": "au \" Three Tarous Series \" CM Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "海の声",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "wblade",
+ "songName": {
+ "jpText": "Rising",
+ "jpFont": 0,
+ "enText": "Rising",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ウォリアーブレード」より",
+ "jpFont": 0,
+ "enText": "From \" Warrior Blade:Rastan Saga Episode III \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "wii5op",
+ "songName": {
+ "jpText": "どきどき☆どんちゃん騒ぎ",
+ "jpFont": 0,
+ "enText": "Dokidoki☆Don-Chan Sawagi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "\" Taiko no Tatsujin Wii: Chogouka-Ban \" Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "どきどき☆どんちゃん騒ぎ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "zootop",
+ "songName": {
+ "jpText": "トライ・エヴリシング",
+ "jpFont": 0,
+ "enText": "Try Everything",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ズートピア」より",
+ "jpFont": 0,
+ "enText": "From \" Zootopia \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "トライ・エヴリシング",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "55yu0",
+ "songName": {
+ "jpText": "ゴーゴー幽霊船",
+ "jpFont": 0,
+ "enText": "Go Go Yuureisen",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ハチ / 米津玄師",
+ "jpFont": 0,
+ "enText": "Hachi / Kenshi Yonezu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ゴーゴー幽霊船",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clskkh",
+ "songName": {
+ "jpText": "「軽騎兵」序曲から",
+ "jpFont": 0,
+ "enText": "Excerpt from Light Cavalry Overture",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "スッペ",
+ "jpFont": 0,
+ "enText": "Franz von Suppé",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "「軽騎兵」序曲から",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsvio",
+ "songName": {
+ "jpText": "ヴァイオリン協奏曲ホ短調",
+ "jpFont": 0,
+ "enText": "Violin Concerto in E Minor",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ヴァイオリン協奏曲ホ短調",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "decad2",
+ "songName": {
+ "jpText": "W-B-X ~W-Boiled Extreme~",
+ "jpFont": 0,
+ "enText": "W-B-X ~W-Boiled Extreme~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hpp",
+ "songName": {
+ "jpText": "Happy & Peace",
+ "jpFont": 0,
+ "enText": "Happy & Peace",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "maglit",
+ "songName": {
+ "jpText": "マジカル・リトル・スペースシップ",
+ "jpFont": 0,
+ "enText": "Magical Little Spaceship",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "マジカル・リトル・スペースシップ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mgkiss",
+ "songName": {
+ "jpText": "MachineGun Kiss",
+ "jpFont": 0,
+ "enText": "MachineGun Kiss",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "龍が如く OF THE END」より",
+ "jpFont": 0,
+ "enText": "From \" Yakuza: Dead Souls \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nobuts",
+ "songName": {
+ "jpText": "No buts!",
+ "jpFont": 0,
+ "enText": "No buts!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「とある魔術の禁書目録II」より",
+ "jpFont": 0,
+ "enText": "From \" A Certain Magical Index II \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "oshiri",
+ "songName": {
+ "jpText": "おしりかじり虫",
+ "jpFont": 0,
+ "enText": "Oshiri Kajiri Mushi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「NHKみんなのうた」より",
+ "jpFont": 0,
+ "enText": "From \" NHK Minna no Uta \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "おしりかじり虫",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "psp3op",
+ "songName": {
+ "jpText": "ドコDON★まつリズム",
+ "jpFont": 0,
+ "enText": "DokoDON MatsuRhythm",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドコDON★まつリズム",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "skaska",
+ "songName": {
+ "jpText": "リンダは今日も絶好調",
+ "jpFont": 0,
+ "enText": "Rinda wa Kyou mo Zekkouchou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "リンダは今日も絶好調",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sousa",
+ "songName": {
+ "jpText": "RHYTHM AND POLICE",
+ "jpFont": 0,
+ "enText": "RHYTHM AND POLICE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tomare",
+ "songName": {
+ "jpText": "止マレ!",
+ "jpFont": 0,
+ "enText": "Tomare!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「涼宮ハルヒの憂鬱」より",
+ "jpFont": 0,
+ "enText": "From \" The Melancholy of Haruhi Suzumiya \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "止マレ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "20tftr",
+ "songName": {
+ "jpText": "GO ON ~未来へ~",
+ "jpFont": 0,
+ "enText": "GO ON ~Into the Future~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "太鼓 de タイムトラベル2022 / steμ respecting タイムトラベラーズ",
+ "jpFont": 0,
+ "enText": "Taiko de Time Travel 2022 / steμ respecting Time Travelers",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "GO ON ~未来へ~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "anayu2",
+ "songName": {
+ "jpText": "Let It Go -English Version-",
+ "jpFont": 0,
+ "enText": "Let It Go",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「Frozen」より",
+ "jpFont": 0,
+ "enText": "From \" Frozen \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bshar2",
+ "songName": {
+ "jpText": "Baby Shark",
+ "jpFont": 0,
+ "enText": "Baby Shark",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "太鼓の達人 Pop Tap Beat feat. ののちゃん",
+ "jpFont": 0,
+ "enText": "Taiko no Tatsujin Pop Tap Beat feat. Nonoka",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "cap283",
+ "songName": {
+ "jpText": "燃えてヒーロー",
+ "jpFont": 0,
+ "enText": "Moete Hero",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「キャプテン翼」より",
+ "jpFont": 0,
+ "enText": "From \" Captain Tsubasa \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "燃えてヒーロー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dojoae",
+ "songName": {
+ "jpText": "音符のうた -English Version-",
+ "jpFont": 0,
+ "enText": "Notes Song",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "音符のうた -English Version-",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dojoaj",
+ "songName": {
+ "jpText": "音符のうた",
+ "jpFont": 0,
+ "enText": "Notes Song -Japanese Version-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "音符のうた",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gdmchr",
+ "songName": {
+ "jpText": "シャアが来る",
+ "jpFont": 0,
+ "enText": "HERE COMES CHAR",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「機動戦士ガンダム」より",
+ "jpFont": 0,
+ "enText": "From \" Mobile Suit Gundam \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "シャアが来る",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "genpe3",
+ "songName": {
+ "jpText": "World of GENPEI TOMADEN",
+ "jpFont": 0,
+ "enText": "World of GENPEI TOMADEN",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ginga",
+ "songName": {
+ "jpText": "銀河鉄道999",
+ "jpFont": 0,
+ "enText": "THE GALAXY EXPRESS 999",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "銀河鉄道999",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gojira",
+ "songName": {
+ "jpText": "ゴジラ ・ メインタイトル",
+ "jpFont": 0,
+ "enText": "Godzilla - Main Title",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ゴジラ ・ メインタイトル",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kaneda",
+ "songName": {
+ "jpText": "KANEDA",
+ "jpFont": 0,
+ "enText": "KANEDA",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「Symphonic Suite AKIRA」より",
+ "jpFont": 0,
+ "enText": "From \" Symphonic Suite AKIRA \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lupin",
+ "songName": {
+ "jpText": "ルパン三世のテーマ'78",
+ "jpFont": 0,
+ "enText": "THEME From LUPIN III '78",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ルパン三世のテーマ'78",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mlpony",
+ "songName": {
+ "jpText": "My Little Pony Theme Song",
+ "jpFont": 0,
+ "enText": "My Little Pony Theme Song",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「My Little Pony Friendship is Magic」より",
+ "jpFont": 0,
+ "enText": "From \" My Little Pony Friendship is Magic \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "moana2",
+ "songName": {
+ "jpText": "SHINY",
+ "jpFont": 0,
+ "enText": "SHINY",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「モアナと伝説の海」より",
+ "jpFont": 0,
+ "enText": "From \" Moana \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "moeyod",
+ "songName": {
+ "jpText": "燃えよドラゴンのテーマ",
+ "jpFont": 0,
+ "enText": "Enter The Dragon (Theme)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "燃えよドラゴンのテーマ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nainai",
+ "songName": {
+ "jpText": "NAINAINAI",
+ "jpFont": 0,
+ "enText": "NAINAINAI",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "plstlv",
+ "songName": {
+ "jpText": "プラスティック・ラブ",
+ "jpFont": 0,
+ "enText": "PLASTIC LOVE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "竹内 まりや",
+ "jpFont": 0,
+ "enText": "Mariya Takeuchi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "プラスティック・ラブ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "powlov",
+ "songName": {
+ "jpText": "The Power Of Love",
+ "jpFont": 0,
+ "enText": "The Power Of Love",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「バック・トゥ・ザ・フューチャー」より",
+ "jpFont": 0,
+ "enText": "From \" Back to the Future \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rydeen",
+ "songName": {
+ "jpText": "RYDEEN",
+ "jpFont": 0,
+ "enText": "RYDEEN",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sesami",
+ "songName": {
+ "jpText": "セサミストリートのテーマ",
+ "jpFont": 0,
+ "enText": "Sesame Street Theme",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "セサミストリートのテーマ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sonic1",
+ "songName": {
+ "jpText": "ソニック・ザ・ヘッジホッグ メドレー",
+ "jpFont": 0,
+ "enText": "SONIC THE HEDGEHOG Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "SONIC THE HEDGEHOG",
+ "jpFont": 0,
+ "enText": "Sonic the Hedgehog",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ソニック・ザ・ヘッジホッグ メドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "timing",
+ "songName": {
+ "jpText": "Timing ~タイミング~",
+ "jpFont": 0,
+ "enText": "Timing",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Timing ~タイミング~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "toystr",
+ "songName": {
+ "jpText": "You've Got a Friend in Me",
+ "jpFont": 0,
+ "enText": "You've Got a Friend in Me",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「トイ・ストーリー」より",
+ "jpFont": 0,
+ "enText": "From \" Toy Story \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "trigun",
+ "songName": {
+ "jpText": "H.T",
+ "jpFont": 0,
+ "enText": "H.T",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「トライガン」より",
+ "jpFont": 0,
+ "enText": "From \" Trigun \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tugaru",
+ "songName": {
+ "jpText": "津軽海峡・冬景色",
+ "jpFont": 0,
+ "enText": "Tsugaru Kaikyou Fuyugeshiki",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "津軽海峡・冬景色",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "alcdp",
+ "songName": {
+ "jpText": "Doppelgangers",
+ "jpFont": 0,
+ "enText": "Doppelgangers",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "アリスシャッハと魔法の楽団",
+ "jpFont": 0,
+ "enText": "Alice Schach and the Magic Orchestra",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "challe",
+ "songName": {
+ "jpText": "Challengers",
+ "jpFont": 0,
+ "enText": "Challengers",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Marulon",
+ "jpFont": 0,
+ "enText": "Marulon",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsfig",
+ "songName": {
+ "jpText": "序曲「フィガロの結婚」",
+ "jpFont": 0,
+ "enText": "The Marriage of Figaro Overture",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "序曲「フィガロの結婚」",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "cna2b",
+ "songName": {
+ "jpText": "MEKADON ~宇宙に消えたメカ太鼓~",
+ "jpFont": 0,
+ "enText": "MEKADON ~The Mecha Drum That Disappeared into Space~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "MEKADON ~宇宙に消えたメカ太鼓~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "cna3",
+ "songName": {
+ "jpText": "拝啓、学校にて・・・",
+ "jpFont": 0,
+ "enText": "Haikei, Gakkou ni te...",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "拝啓、学校にて・・・",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "cs5op",
+ "songName": {
+ "jpText": "今日のご飯は太鼓盛り!",
+ "jpFont": 0,
+ "enText": "Kyou no Gohan wa Taiko-Zakari!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "今日のご飯は太鼓盛り!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "cs6op",
+ "songName": {
+ "jpText": "のし巻いて、太鼓っパラ!",
+ "jpFont": 0,
+ "enText": "Noshi Maite, Taiko Para!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "のし巻いて、太鼓っパラ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "csabed",
+ "songName": {
+ "jpText": "きっと もっと ずっと",
+ "jpFont": 0,
+ "enText": "Kitto Motto Zutto",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "きっと もっと ずっと",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dddsst",
+ "songName": {
+ "jpText": "そして勇者は眠りにつく",
+ "jpFont": 0,
+ "enText": "R.I.P. Hero",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "打打だいず",
+ "jpFont": 0,
+ "enText": "D-D-Dice",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "そして勇者は眠りにつく",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ds3op",
+ "songName": {
+ "jpText": "どろろんガール",
+ "jpFont": 0,
+ "enText": "Dororon Girl",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "どろろんガール",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ha9jit",
+ "songName": {
+ "jpText": "白日夢、霧雨に溶けて",
+ "jpFont": 0,
+ "enText": "Hakujitsumu, Kirisame ni Tokete",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Goto feat. zeryo-one",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "白日夢、霧雨に溶けて",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "heira",
+ "songName": {
+ "jpText": "ヘイラ",
+ "jpFont": 0,
+ "enText": "Hater",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "necchi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ヘイラ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "holond",
+ "songName": {
+ "jpText": "ホロメン音頭",
+ "jpFont": 0,
+ "enText": "hololive ondo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "hololive IDOL PROJECT",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ホロメン音頭",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "jazamp",
+ "songName": {
+ "jpText": "アメリカンパトロール",
+ "jpFont": 0,
+ "enText": "American Patrol",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アメリカンパトロール",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kimit",
+ "songName": {
+ "jpText": "キミにタッチ!",
+ "jpFont": 0,
+ "enText": "Kimi ni Touch!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "キミにタッチ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ks531",
+ "songName": {
+ "jpText": "共奏鼓祭",
+ "jpFont": 0,
+ "enText": "Kyoso Kosai",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Rigel_Wired",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "共奏鼓祭",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "laches",
+ "songName": {
+ "jpText": "LΔchesis",
+ "jpFont": 0,
+ "enText": "LΔchesis",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "7mai",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mknyel",
+ "songName": {
+ "jpText": "エール・エクス・マキナ!",
+ "jpFont": 0,
+ "enText": "Yell Ex Makina!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "MAKINA prod. Rihito Tsuboi(BNSI)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "エール・エクス・マキナ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "odloop",
+ "songName": {
+ "jpText": "オドループ",
+ "jpFont": 0,
+ "enText": "oddloop",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "FREDERIC",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "オドループ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "oki448",
+ "songName": {
+ "jpText": "シシハゲマイ",
+ "jpFont": 0,
+ "enText": "Shishi Hage Mai",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "シシハゲマイ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "shouyu",
+ "songName": {
+ "jpText": "しょうゆ de Show you!",
+ "jpFont": 0,
+ "enText": "SHOUYU de Show you!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "BNSI(矢野義人)feat.steμ&フナディ",
+ "jpFont": 0,
+ "enText": "BNSI(Yoshihito Yano) feat.steμ&Funa-D",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "しょうゆ de Show you!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "surikn",
+ "songName": {
+ "jpText": "スリケンランナー",
+ "jpFont": 0,
+ "enText": "Suriken Runner",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Ninja Niver DieS!",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "スリケンランナー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tkrcop",
+ "songName": {
+ "jpText": "RHYTHM CONNECT",
+ "jpFont": 0,
+ "enText": "RHYTHM CONNECT",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "TRIANGLE",
+ "jpFont": 0,
+ "enText": "TRIANGLE",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tmktsr",
+ "songName": {
+ "jpText": "トウキョウ・シャンディ・ランデヴ",
+ "jpFont": 0,
+ "enText": "Tokyo Shandy Rendezvous",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "From \" Urusei Yatsura \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "トウキョウ・シャンディ・ランデヴ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "trigon",
+ "songName": {
+ "jpText": "スタートリゴンのテーマ",
+ "jpFont": 0,
+ "enText": "Star Trigon Theme",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "スタートリゴンのテーマ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ucgirl",
+ "songName": {
+ "jpText": "アンチェイン・ガール!",
+ "jpFont": 0,
+ "enText": "Unchained girl!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Mini",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アンチェイン・ガール!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "usnova",
+ "songName": {
+ "jpText": "SUPERNOVA",
+ "jpFont": 0,
+ "enText": "SUPERNOVA",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "USAO",
+ "jpFont": 0,
+ "enText": "USAO",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "zouoto",
+ "songName": {
+ "jpText": "憎悪と醜悪の花束",
+ "jpFont": 0,
+ "enText": "Bouquet with Hatred & Ugliness",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "t+pazolite",
+ "jpFont": 0,
+ "enText": "t+pazolite",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "憎悪と醜悪の花束",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imeacc",
+ "songName": {
+ "jpText": "アクセルレーション",
+ "jpFont": 0,
+ "enText": "Accelerator",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アクセルレーション",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imeali",
+ "songName": {
+ "jpText": "Alice or Guilty",
+ "jpFont": 0,
+ "enText": "Alice or Guilty",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imehel",
+ "songName": {
+ "jpText": "“HELLO!!”",
+ "jpFont": 0,
+ "enText": "“HELLO!!”",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ims2ji",
+ "songName": {
+ "jpText": "虹色ミラクル ",
+ "jpFont": 0,
+ "enText": "Nijiiro Miracle",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "虹色ミラクル ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ims2t",
+ "songName": {
+ "jpText": "The world is all one!!",
+ "jpFont": 0,
+ "enText": "The world is all one!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ims5hn",
+ "songName": {
+ "jpText": "おはよう!!朝ご飯",
+ "jpFont": 0,
+ "enText": "Ohayou!! Asagohan",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "おはよう!!朝ご飯",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ims73d",
+ "songName": {
+ "jpText": "tear",
+ "jpFont": 0,
+ "enText": "tear",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ims7ir",
+ "songName": {
+ "jpText": "七彩ボタン",
+ "jpFont": 0,
+ "enText": "Nanairo Button",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "七彩ボタン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ims7nd",
+ "songName": {
+ "jpText": "何度も言えるよ",
+ "jpFont": 0,
+ "enText": "Nando mo Ieru yo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "何度も言えるよ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ims89s",
+ "songName": {
+ "jpText": "約束",
+ "jpFont": 0,
+ "enText": "Promise",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "約束",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsalr",
+ "songName": {
+ "jpText": "ALRIGHT*",
+ "jpFont": 0,
+ "enText": "ALRIGHT*",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsarc",
+ "songName": {
+ "jpText": "arcadia",
+ "jpFont": 0,
+ "enText": "arcadia",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsbdl",
+ "songName": {
+ "jpText": "Vault That Borderline!",
+ "jpFont": 0,
+ "enText": "Vault That Borderline!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imschg",
+ "songName": {
+ "jpText": "CHANGE!!!!",
+ "jpFont": 0,
+ "enText": "CHANGE!!!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imscol",
+ "songName": {
+ "jpText": "Colorful Days (12 Colors)",
+ "jpFont": 0,
+ "enText": "Colorful Days (12 Colors)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsday",
+ "songName": {
+ "jpText": "Day of the future",
+ "jpFont": 0,
+ "enText": "Day of the future",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsdia",
+ "songName": {
+ "jpText": "DIAMOND",
+ "jpFont": 0,
+ "enText": "DIAMOND",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsdod",
+ "songName": {
+ "jpText": "Do-Dai",
+ "jpFont": 0,
+ "enText": "Do-Dai",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「イドルマスター ライブフォーユー」より",
+ "jpFont": 0,
+ "enText": "\" THE IDOLM@STER LIVE FOR YOU! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsedn",
+ "songName": {
+ "jpText": "edeN",
+ "jpFont": 0,
+ "enText": "edeN",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsflw",
+ "songName": {
+ "jpText": "フラワーガール",
+ "jpFont": 0,
+ "enText": "Flower Girl",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "フラワーガール",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsfrf",
+ "songName": {
+ "jpText": "ふるふるフューチャー☆",
+ "jpFont": 0,
+ "enText": "Furufuru Future☆",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ふるふるフューチャー☆",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsftr",
+ "songName": {
+ "jpText": "フタリの記憶",
+ "jpFont": 0,
+ "enText": "Futari no Kioku",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "フタリの記憶",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsgem",
+ "songName": {
+ "jpText": "ジェミー",
+ "jpFont": 0,
+ "enText": "Gemmy",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ジェミー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsgmw",
+ "songName": {
+ "jpText": "GO MY WAY!!",
+ "jpFont": 0,
+ "enText": "GO MY WAY!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsgtp",
+ "songName": {
+ "jpText": "ゲンキトリッパー",
+ "jpFont": 0,
+ "enText": "Genki Tripper",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ゲンキトリッパー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsidl",
+ "songName": {
+ "jpText": "私はアイドル♡",
+ "jpFont": 0,
+ "enText": "Watashi wa Idol♥",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "私はアイドル♡",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsim2",
+ "songName": {
+ "jpText": "THE IDOLM@STER 2nd-mix",
+ "jpFont": 0,
+ "enText": "THE IDOLM@STER 2nd-mix",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsiml",
+ "songName": {
+ "jpText": "THE IDOLM@STER",
+ "jpFont": 0,
+ "enText": "THE IDOLM@STER",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsipi",
+ "songName": {
+ "jpText": "いっぱいいっぱい",
+ "jpFont": 0,
+ "enText": "Ippai Ippai",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "いっぱいいっぱい",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsiwt",
+ "songName": {
+ "jpText": "I Want",
+ "jpFont": 0,
+ "enText": "I Want",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsjit",
+ "songName": {
+ "jpText": "自転車",
+ "jpFont": 0,
+ "enText": "Jitensha",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "自転車",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsk87",
+ "songName": {
+ "jpText": "風花",
+ "jpFont": 0,
+ "enText": "Kazahana",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "風花",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imskam",
+ "songName": {
+ "jpText": "神さまのBirthday",
+ "jpFont": 0,
+ "enText": "Kamisama no Birthday",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "神さまのBirthday",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imskos",
+ "songName": {
+ "jpText": "Kosmos, Cosmos",
+ "jpFont": 0,
+ "enText": "Kosmos, Cosmos",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imskrm",
+ "songName": {
+ "jpText": "キラメキラリ",
+ "jpFont": 0,
+ "enText": "Kirame Kirari",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター2」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER 2 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "キラメキラリ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imskyu",
+ "songName": {
+ "jpText": "きゅんっ!ヴァンパイアガール",
+ "jpFont": 0,
+ "enText": "Kyun! Vampire Girl",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター2」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER 2 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "きゅんっ!ヴァンパイアガール",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsliv",
+ "songName": {
+ "jpText": "livE",
+ "jpFont": 0,
+ "enText": "livE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imslob",
+ "songName": {
+ "jpText": "L・O・B・M",
+ "jpFont": 0,
+ "enText": "L・O・B・M",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imslvl",
+ "songName": {
+ "jpText": "ラ♥ブ♥リ♥",
+ "jpFont": 0,
+ "enText": "LO♥VE♥LY♥",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ラ♥ブ♥リ♥",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsmat",
+ "songName": {
+ "jpText": "Little Match Girl",
+ "jpFont": 0,
+ "enText": "Little Match Girl",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsmeg",
+ "songName": {
+ "jpText": "目が逢う瞬間",
+ "jpFont": 0,
+ "enText": "Me ga Au Toki",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "目が逢う瞬間",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsmgr",
+ "songName": {
+ "jpText": "MEGARE!",
+ "jpFont": 0,
+ "enText": "MEGARE!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsmsm",
+ "songName": {
+ "jpText": "迷走Mind",
+ "jpFont": 0,
+ "enText": "Meisou Mind",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "迷走Mind",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsmus",
+ "songName": {
+ "jpText": "MUSIC♪",
+ "jpFont": 0,
+ "enText": "MUSIC♪",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsmys",
+ "songName": {
+ "jpText": "my song",
+ "jpFont": 0,
+ "enText": "my song",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsmyt",
+ "songName": {
+ "jpText": "Mythmaker",
+ "jpFont": 0,
+ "enText": "Mythmaker",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsnmr",
+ "songName": {
+ "jpText": "眠り姫",
+ "jpFont": 0,
+ "enText": "Nemurihime",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "眠り姫",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsodm",
+ "songName": {
+ "jpText": "LOVEオーダーメイド",
+ "jpFont": 0,
+ "enText": "LOVE Order Maid",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "LOVEオーダーメイド",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsotm",
+ "songName": {
+ "jpText": "乙女よ大志を抱け!!",
+ "jpFont": 0,
+ "enText": "Otome yo Taishi o Idake!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "乙女よ大志を抱け!!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsovm",
+ "songName": {
+ "jpText": "オーバーマスター",
+ "jpFont": 0,
+ "enText": "Overmaster",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "オーバーマスター",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imspos",
+ "songName": {
+ "jpText": "ポジティブ!",
+ "jpFont": 0,
+ "enText": "Positive!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ポジティブ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsrbw",
+ "songName": {
+ "jpText": "IDOL POWER RAINBOW",
+ "jpFont": 0,
+ "enText": "IDOL POWER RAINBOW",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsrdy",
+ "songName": {
+ "jpText": "READY!!",
+ "jpFont": 0,
+ "enText": "READY!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsrei",
+ "songName": {
+ "jpText": "黎明スターライン",
+ "jpFont": 0,
+ "enText": "Reimei Starline",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "黎明スターライン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsrel",
+ "songName": {
+ "jpText": "relations",
+ "jpFont": 0,
+ "enText": "relations",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsriz",
+ "songName": {
+ "jpText": "リゾラ",
+ "jpFont": 0,
+ "enText": "L'isola",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "リゾラ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsshk",
+ "songName": {
+ "jpText": "ショッキングな彼",
+ "jpFont": 0,
+ "enText": "Shocking na Kare",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ショッキングな彼",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imssky",
+ "songName": {
+ "jpText": "空",
+ "jpFont": 0,
+ "enText": "Sora",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "feat. 沙知(ハリネコ)",
+ "jpFont": 0,
+ "enText": "feat.Sachi (Harineko)",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "空",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imssmo",
+ "songName": {
+ "jpText": "SMOKY THRILL",
+ "jpFont": 0,
+ "enText": "SMOKY THRILL",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイドルマスター2」より",
+ "jpFont": 0,
+ "enText": "From \" THE IDOLM@STER 2 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imssmt",
+ "songName": {
+ "jpText": "スマイル体操",
+ "jpFont": 0,
+ "enText": "Smile Taisou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "スマイル体操",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imssts",
+ "songName": {
+ "jpText": "スタ→トスタ→",
+ "jpFont": 0,
+ "enText": "Start→Star→",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "スタ→トスタ→",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsstt",
+ "songName": {
+ "jpText": "START!!",
+ "jpFont": 0,
+ "enText": "START!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsthn",
+ "songName": {
+ "jpText": "Thinking ~Must Mix~",
+ "jpFont": 0,
+ "enText": "Thinking ~Must Mix~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imstnr",
+ "songName": {
+ "jpText": "隣に...",
+ "jpFont": 0,
+ "enText": "Tonari ni...",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "隣に...",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imstok",
+ "songName": {
+ "jpText": "エージェント夜を往く",
+ "jpFont": 0,
+ "enText": "Agent Yoru o Yuku",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "エージェント夜を往く",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imstri",
+ "songName": {
+ "jpText": "TRIAL DANCE",
+ "jpFont": 0,
+ "enText": "TRIAL DANCE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsttt",
+ "songName": {
+ "jpText": "Town ~Must Mix~",
+ "jpFont": 0,
+ "enText": "Town ~Must Mix~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsuom",
+ "songName": {
+ "jpText": "YOU往MY進!",
+ "jpFont": 0,
+ "enText": "YOUou MYshin!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "YOU往MY進!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsvis",
+ "songName": {
+ "jpText": "ビジョナリー",
+ "jpFont": 0,
+ "enText": "Visionary",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ビジョナリー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imsweh",
+ "songName": {
+ "jpText": "We Have A Dream",
+ "jpFont": 0,
+ "enText": "We Have A Dream",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "3sh3yo",
+ "songName": {
+ "jpText": "クローバー♣かくめーしょん",
+ "jpFont": 0,
+ "enText": "Clover♣Kakumation",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "クローバー♣かくめーしょん",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "3tisbz",
+ "songName": {
+ "jpText": "千本桜 ver.小林幸子",
+ "jpFont": 0,
+ "enText": "Senbonzakura ver. Sachiko Kobayashi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "千本桜 ver.小林幸子",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "5tiusa",
+ "songName": {
+ "jpText": "Daydream café",
+ "jpFont": 0,
+ "enText": "Daydream café",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ansa22",
+ "songName": {
+ "jpText": "自力本願レボリューション",
+ "jpFont": 0,
+ "enText": "Jiriki Hongan Revolution",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「暗殺教室」より",
+ "jpFont": 0,
+ "enText": "From \" Assassination Classroom \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "自力本願レボリューション",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ansa2k",
+ "songName": {
+ "jpText": "青春サツバツ論",
+ "jpFont": 0,
+ "enText": "Seishun Satsubatsu-ron",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「暗殺教室」より",
+ "jpFont": 0,
+ "enText": "From \" Assassination Classroom \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "青春サツバツ論",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "arigat",
+ "songName": {
+ "jpText": "ありがとう",
+ "jpFont": 0,
+ "enText": "Arigatou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ありがとう",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "audasu",
+ "songName": {
+ "jpText": "明日への鼓動",
+ "jpFont": 0,
+ "enText": "Ashita e no Kodou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「英雄伝説 閃の軌跡」より",
+ "jpFont": 0,
+ "enText": "From \" The Legend of Heroes: Trails of Cold Steel \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "明日への鼓動",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "audg14",
+ "songName": {
+ "jpText": "銀の意志 Super Arrange Ver.",
+ "jpFont": 0,
+ "enText": "Gin no Ishi Super Arrange Ver.",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「英雄伝説 空の軌跡SC」より",
+ "jpFont": 0,
+ "enText": "From \" The Legend of Heroes: Trails in the Sky \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "銀の意志 Super Arrange Ver.",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "audsen",
+ "songName": {
+ "jpText": "閃光の行方",
+ "jpFont": 0,
+ "enText": "Senko no Yukue",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「英雄伝説 閃の軌跡II」より",
+ "jpFont": 0,
+ "enText": "From \" The Legend of Heroes: Trails of Cold Steel II \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "閃光の行方",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "avtapl",
+ "songName": {
+ "jpText": "小蘋果",
+ "jpFont": 0,
+ "enText": "Little Apple",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "小蘋果",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "avtdou",
+ "songName": {
+ "jpText": "東區東區",
+ "jpFont": 0,
+ "enText": "Eastern District",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "東區東區",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "avtdts",
+ "songName": {
+ "jpText": "傷心的人別聽慢歌(貫徹快樂)",
+ "jpFont": 0,
+ "enText": "Don'ts Don'ts",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "傷心的人別聽慢歌(貫徹快樂)",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "avtwho",
+ "songName": {
+ "jpText": "我是誰我是誰我是誰",
+ "jpFont": 0,
+ "enText": "Who Am I",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "我是誰我是誰我是誰",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "basara",
+ "songName": {
+ "jpText": "戦国BASARA BGMメドレー",
+ "jpFont": 0,
+ "enText": "Sengoku BASARA BGM Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "戦国BASARA BGMメドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "charlo",
+ "songName": {
+ "jpText": "Bravely You",
+ "jpFont": 0,
+ "enText": "Bravely You",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「Charlotte(シャーロット)」より",
+ "jpFont": 0,
+ "enText": "From \" Charlotte \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dagasi",
+ "songName": {
+ "jpText": "Checkmate!?",
+ "jpFont": 0,
+ "enText": "Checkmate!?",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "digmog",
+ "songName": {
+ "jpText": "デジタルモグラ",
+ "jpFont": 0,
+ "enText": "Digital Mole",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "デジタルモグラ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "donuts",
+ "songName": {
+ "jpText": "ドーナツホール",
+ "jpFont": 0,
+ "enText": "Donut Hole",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "米津玄師",
+ "jpFont": 0,
+ "enText": "Kenshi Yonezu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドーナツホール",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dual2",
+ "songName": {
+ "jpText": "Dual Moon",
+ "jpFont": 0,
+ "enText": "Dual Moon",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "タイトー「METAL BLACK」より",
+ "jpFont": 0,
+ "enText": "Taito From \" METAL BLACK \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "f2naru",
+ "songName": {
+ "jpText": "talking",
+ "jpFont": 0,
+ "enText": "talking",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「すべてがFになる THE PERFECT INSIDER」より",
+ "jpFont": 0,
+ "enText": "From \" Subete ga F ni Naru: THE PERFECT INSIDER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fateop",
+ "songName": {
+ "jpText": "ideal white",
+ "jpFont": 0,
+ "enText": "ideal white",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「Fate/stay night [Unlimited Blade Works]」より",
+ "jpFont": 0,
+ "enText": "From \" Fate/stay night [Unlimited Blade Works] \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "flkama",
+ "songName": {
+ "jpText": "アメイジンググレイス",
+ "jpFont": 0,
+ "enText": "Amazing Grace",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アメイジンググレイス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "follom",
+ "songName": {
+ "jpText": "Follow Me",
+ "jpFont": 0,
+ "enText": "Follow Me",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "E-girls",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "freedw",
+ "songName": {
+ "jpText": "Let's 貢献!~恋の懲役は1,000,000年~",
+ "jpFont": 0,
+ "enText": "Let’s Kouken! ~Koi no Choueki ha 1,000,000-Nen~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Let's 貢献!~恋の懲役は1,000,000年~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ga9sen",
+ "songName": {
+ "jpText": "Brand-new World",
+ "jpFont": 0,
+ "enText": "Brand-new World",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「学戦都市アスタリスク」より",
+ "jpFont": 0,
+ "enText": "From \" The Asterisk War \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gdmbld",
+ "songName": {
+ "jpText": "セルリアン",
+ "jpFont": 0,
+ "enText": "Cerulean",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ガンダムビルドファイターズトライ」より",
+ "jpFont": 0,
+ "enText": "From \" Gundam Build Fighters Try \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "セルリアン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gdmorp",
+ "songName": {
+ "jpText": "Raise your flag",
+ "jpFont": 0,
+ "enText": "Raise your flag",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「機動戦士ガンダム 鉄血のオルフェンズ」より",
+ "jpFont": 0,
+ "enText": "From \" Mobile Suit Gundam: Iron-Blooded Orphans \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gdmrec",
+ "songName": {
+ "jpText": "BLAZING",
+ "jpFont": 0,
+ "enText": "BLAZING",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ガンダム Gのレコンギスタ」より",
+ "jpFont": 0,
+ "enText": "From \" Gundam Reconguista in G \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "godea3",
+ "songName": {
+ "jpText": "Blood Rage",
+ "jpFont": 0,
+ "enText": "Blood Rage",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ゴッドイーター2 レイジバースト」より",
+ "jpFont": 0,
+ "enText": "From \" God Eater 2 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "godea4",
+ "songName": {
+ "jpText": "Feed A",
+ "jpFont": 0,
+ "enText": "Feed A",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「GOD EATER」より",
+ "jpFont": 0,
+ "enText": "From \" God Eater \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "grumin",
+ "songName": {
+ "jpText": "悲しき蒼穹を翔ける",
+ "jpFont": 0,
+ "enText": "Kanashiki Soukyuu o Kakeru",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ぐるみん」より",
+ "jpFont": 0,
+ "enText": "From \" Gurumin: A Monstrous Adventure \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "悲しき蒼穹を翔ける",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gumivv",
+ "songName": {
+ "jpText": "有頂天ビバーチェ",
+ "jpFont": 0,
+ "enText": "Uchouten Vivace",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Last Note. feat.GUMI",
+ "jpFont": 0,
+ "enText": "Last Note. feat.GUMI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "有頂天ビバーチェ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "haikyu",
+ "songName": {
+ "jpText": "イマジネーション",
+ "jpFont": 0,
+ "enText": "Imagination",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ハイキュー!!」より",
+ "jpFont": 0,
+ "enText": "From \" Haikyuu!! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "イマジネーション",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "heromt",
+ "songName": {
+ "jpText": "「HERO」",
+ "jpFont": 0,
+ "enText": "「HERO」",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "-Main Title-",
+ "jpFont": 0,
+ "enText": "-Main Title-",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hormon",
+ "songName": {
+ "jpText": "maximum the hormone",
+ "jpFont": 0,
+ "enText": "maximum the hormone",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "マキシマム ザ ホルモン",
+ "jpFont": 0,
+ "enText": " ",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "iaybns",
+ "songName": {
+ "jpText": "夜咄ディセイブ",
+ "jpFont": 0,
+ "enText": "Yobanashi Deceive",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "じん",
+ "jpFont": 0,
+ "enText": "Jin feat.IA",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "夜咄ディセイブ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kimsak",
+ "songName": {
+ "jpText": "君に桜ヒラリと舞う",
+ "jpFont": 0,
+ "enText": "Kimi ni Sakura-hirari To Mau",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "君に桜ヒラリと舞う",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "loghor",
+ "songName": {
+ "jpText": "database",
+ "jpFont": 0,
+ "enText": "database",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "From \" Log Horizon \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "medl2t",
+ "songName": {
+ "jpText": "〆ドレー2000+",
+ "jpFont": 0,
+ "enText": "Shimedore 2000+",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "〆ドレー2000+",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "megm1x",
+ "songName": {
+ "jpText": "女神な世界I",
+ "jpFont": 0,
+ "enText": "Megami na Sekai I",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "女神な世界I",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "megm2x",
+ "songName": {
+ "jpText": "女神な世界II",
+ "jpFont": 0,
+ "enText": "Megami na Sekai II",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "女神な世界II",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikurs",
+ "songName": {
+ "jpText": "恋愛裁判",
+ "jpFont": 0,
+ "enText": "Renai Saiban",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "40mP feat.初音ミク",
+ "jpFont": 0,
+ "enText": "40mP feat.Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "恋愛裁判",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikuuy",
+ "songName": {
+ "jpText": "ウミユリ海底譚",
+ "jpFont": 0,
+ "enText": "Umiyuri Kaitei Tan",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "n-buna feat.初音ミク",
+ "jpFont": 0,
+ "enText": "n-buna feat.Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ウミユリ海底譚",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mlov1k",
+ "songName": {
+ "jpText": "マジLOVE1000%",
+ "jpFont": 0,
+ "enText": "Maji LOVE 1000%",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "マジLOVE1000%",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "neko",
+ "songName": {
+ "jpText": "ねこくじら",
+ "jpFont": 0,
+ "enText": "Neko Kujira",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "太鼓の達人オリジナル曲",
+ "jpFont": 0,
+ "enText": "Taiko no Tatsujin Original Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ねこくじら",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rlnses",
+ "songName": {
+ "jpText": "聖槍爆裂ボーイ",
+ "jpFont": 0,
+ "enText": "Seisou Bakuretsu Boy",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "れるりり/もじゃ feat.鏡音レン",
+ "jpFont": 0,
+ "enText": "rerulili feat.Kagamine Len",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "聖槍爆裂ボーイ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rrvdig",
+ "songName": {
+ "jpText": "DIGITAL HORIZON",
+ "jpFont": 0,
+ "enText": "DIGITAL HORIZON",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「リッジレーサー」より",
+ "jpFont": 0,
+ "enText": "From \" Ridge Racer \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rrvusa",
+ "songName": {
+ "jpText": "Ridge racer (RIDGE RACER USA MIX)",
+ "jpFont": 0,
+ "enText": "Ridge racer (RIDGE RACER USA MIX)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tozest",
+ "songName": {
+ "jpText": "テイルズ オブ ゼスティリア メドレー",
+ "jpFont": 0,
+ "enText": "Tales of Zestiria Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "テイルズ オブ ゼスティリア メドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tutti",
+ "songName": {
+ "jpText": "トゥッティ!",
+ "jpFont": 0,
+ "enText": "Tutti!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「響け!ユーフォニアム」より",
+ "jpFont": 0,
+ "enText": "From \" Sound! Euphonium \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "トゥッティ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "umaru",
+ "songName": {
+ "jpText": "かくしん的☆めたまるふぉ~ぜっ!",
+ "jpFont": 0,
+ "enText": "Kakushinteki☆Metamarupho~se!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "かくしん的☆めたまるふぉ~ぜっ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "xanadu",
+ "songName": {
+ "jpText": "Seize the day",
+ "jpFont": 0,
+ "enText": "Seize the day",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「東亰ザナドゥ」より",
+ "jpFont": 0,
+ "enText": "From \" Tokyo Xanadu \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "yugio2",
+ "songName": {
+ "jpText": "快晴・上昇・ハレルーヤ",
+ "jpFont": 0,
+ "enText": "Kaisei Joushou Hallelujah",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「遊☆戯☆王デュエルモンスターズGX」より",
+ "jpFont": 0,
+ "enText": "From \" Yu-Gi-Oh! GX \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "快晴・上昇・ハレルーヤ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bresca",
+ "songName": {
+ "jpText": "Escatumbararibe",
+ "jpFont": 0,
+ "enText": "Escatumbararibe",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "brhoje",
+ "songName": {
+ "jpText": "Hoje e Domingo",
+ "jpFont": 0,
+ "enText": "Hoje e Domingo",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsegl",
+ "songName": {
+ "jpText": "双頭の鷲の下に",
+ "jpFont": 0,
+ "enText": "Underneath the Double-Headed Eagle",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "J.F.ワグナー",
+ "jpFont": 0,
+ "enText": "Josef Wagner",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "双頭の鷲の下に",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsifu",
+ "songName": {
+ "jpText": "威風堂々",
+ "jpFont": 0,
+ "enText": "Pomp and Circumstance",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "エルガー",
+ "jpFont": 0,
+ "enText": "Edward Elgar",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "威風堂々",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsstr",
+ "songName": {
+ "jpText": "星条旗よ永遠なれ",
+ "jpFont": 0,
+ "enText": "Stars and Stripes Forever",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "スーザ",
+ "jpFont": 0,
+ "enText": "John Philip Sousa",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "星条旗よ永遠なれ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "enka2",
+ "songName": {
+ "jpText": "平成太鼓街道~バチの女~",
+ "jpFont": 0,
+ "enText": "Heisei Taiko Kaidou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "平成太鼓街道~バチの女~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kotori",
+ "songName": {
+ "jpText": "風のなかに巣をくふ小鳥",
+ "jpFont": 0,
+ "enText": "Kaze no Naka ni Su o Kufu Kotori",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "風のなかに巣をくふ小鳥",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "monhn2",
+ "songName": {
+ "jpText": "モンスターハンターメドレー",
+ "jpFont": 0,
+ "enText": "Monster Hunter Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "モンスターハンターメドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "okla",
+ "songName": {
+ "jpText": "オクラホマミキサー",
+ "jpFont": 0,
+ "enText": "Oklahoma Mixer",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "オクラホマミキサー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "oresam",
+ "songName": {
+ "jpText": "モノローグ",
+ "jpFont": 0,
+ "enText": "Monologue",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「オレ様キングダム」より",
+ "jpFont": 0,
+ "enText": "From \" Kings of My Love \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "モノローグ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pkmn11",
+ "songName": {
+ "jpText": "ポケモン言えるかな?BW",
+ "jpFont": 0,
+ "enText": "Pokémon Ieru Kana? BW",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ポケットモンスター ベストウイッシュ」",
+ "jpFont": 0,
+ "enText": "From \" Pokémon the Series: Black and White \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ポケモン言えるかな?BW",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ttk3s",
+ "songName": {
+ "jpText": "ハム太郎とっとこうた",
+ "jpFont": 0,
+ "enText": "Hamtaro Tottokou Uta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "とっとこハム太郎はむはむぱらだいちゅ!",
+ "jpFont": 0,
+ "enText": "Hamtaro Hamtaro wa Muhamuparadaichu!",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ハム太郎とっとこうた",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "usavi",
+ "songName": {
+ "jpText": "ウサビッチ・メドレー ~太鼓の時間~",
+ "jpFont": 0,
+ "enText": "Usavich Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ウサビッチ・メドレー ~太鼓の時間~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "wii4op",
+ "songName": {
+ "jpText": "ももいろ♪太鼓パラダイス",
+ "jpFont": 0,
+ "enText": "Momoiro Taiko Paradise",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "\" Taiko no Tatsujin Wii: Kettei-Ban \" Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ももいろ♪太鼓パラダイス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "blackm",
+ "songName": {
+ "jpText": "常闇の森 序章「邪神復活の夜」",
+ "jpFont": 0,
+ "enText": "Tokoyami no Mori",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "常闇の森 序章「邪神復活の夜」",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gekits",
+ "songName": {
+ "jpText": "大改造!!劇的ビフォーアフターメドレー",
+ "jpFont": 0,
+ "enText": "Dai Kaizou!! Gekiteki Before/After Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "大改造!!劇的ビフォーアフターメドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "imyme",
+ "songName": {
+ "jpText": "I★my★me★mine",
+ "jpFont": 0,
+ "enText": "I★my★me★mine",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「たまごっち!」より",
+ "jpFont": 0,
+ "enText": "From \" Tamagotchi! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "inajou",
+ "songName": {
+ "jpText": "情熱で胸アツ!",
+ "jpFont": 0,
+ "enText": "Jounetsu de Mune Atsu!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「イナズマイレブンGO クロノ・ストーン」より",
+ "jpFont": 0,
+ "enText": "From \" Inazuma Eleven GO 2: Chrono Stone \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "情熱で胸アツ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "jazsaj",
+ "songName": {
+ "jpText": "聖者の行進",
+ "jpFont": 0,
+ "enText": "When the Saints Go Marching In",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "聖者の行進",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mario3",
+ "songName": {
+ "jpText": "New スーパーマリオブラザーズ Wii",
+ "jpFont": 0,
+ "enText": "New Super Mario Bros. Wii",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "New スーパーマリオブラザーズ Wii",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "neko2",
+ "songName": {
+ "jpText": "クレーンシティ",
+ "jpFont": 0,
+ "enText": "Crane City",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "クレーンシティ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "shugei",
+ "songName": {
+ "jpText": "ニッティング・ハイ",
+ "jpFont": 0,
+ "enText": "Knitting High",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ニッティング・ハイ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sora4x",
+ "songName": {
+ "jpText": "SORA-IV ブンパソング",
+ "jpFont": 0,
+ "enText": "SORA-IV Bunpasong",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "SORA-IV ブンパソング",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "toxil",
+ "songName": {
+ "jpText": "テイルズ オブ エクシリア メドレー",
+ "jpFont": 0,
+ "enText": "Tales of Xillia Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "テイルズ オブ エクシリア メドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tukema",
+ "songName": {
+ "jpText": "つけまつける",
+ "jpFont": 0,
+ "enText": "Tsukema Tsukeru",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "きゃりーぱみゅぱみゅ",
+ "jpFont": 0,
+ "enText": "Kyary Pamyu Pamyu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "つけまつける",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "waru90",
+ "songName": {
+ "jpText": "シンフォニック ワルキューレ",
+ "jpFont": 0,
+ "enText": "Symphonic Valkyrie",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "シンフォニック ワルキューレ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "123koi",
+ "songName": {
+ "jpText": "1 2 3~恋がはじまる~",
+ "jpFont": 0,
+ "enText": "123 ~Koi ga Hajimaru~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Ikimono Gakari",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "1 2 3~恋がはじまる~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "aikatu",
+ "songName": {
+ "jpText": "ダイヤモンドハッピー",
+ "jpFont": 0,
+ "enText": "Diamond Happy",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイカツ!」より",
+ "jpFont": 0,
+ "enText": "From \" Aikatsu! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ダイヤモンドハッピー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "akb347",
+ "songName": {
+ "jpText": "さよならクロール",
+ "jpFont": 0,
+ "enText": "Sayonara Crawl",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「パピコ」CMソング",
+ "jpFont": 0,
+ "enText": "AKB48",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "さよならクロール",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "akbait",
+ "songName": {
+ "jpText": "会いたかった",
+ "jpFont": 0,
+ "enText": "Aitakatta",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "AKB48",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "会いたかった",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "anp2",
+ "songName": {
+ "jpText": "勇気りんりん",
+ "jpFont": 0,
+ "enText": "Yuuki Rinrin",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "From \" Soreike! Ampanman \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "勇気りんりん",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "chocod",
+ "songName": {
+ "jpText": "チョコレイト・ディスコ",
+ "jpFont": 0,
+ "enText": "Chocolate Disco",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Perfume",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "チョコレイト・ディスコ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsken",
+ "songName": {
+ "jpText": "剣士の入場",
+ "jpFont": 0,
+ "enText": "Entry of the Gladiators",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "フチーク",
+ "jpFont": 0,
+ "enText": "Julius Fucik",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "剣士の入場",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dis1",
+ "songName": {
+ "jpText": "ミッキーマウス・マーチ",
+ "jpFont": 0,
+ "enText": "Mickey Mouse March",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ミッキーマウス・マーチ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dkpri9",
+ "songName": {
+ "jpText": "Happy Go Lucky!ドキドキ!プリキュア",
+ "jpFont": 0,
+ "enText": "Happy Go Lucky! Dokidoki Precure",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "From \" Dokidoki! Precure \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Happy Go Lucky!ドキドキ!プリキュア",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dq10b",
+ "songName": {
+ "jpText": "序曲Ⅹ ドラゴンクエストⅩより",
+ "jpFont": 0,
+ "enText": "Overture X From Dragon Quest X",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "序曲Ⅹ ドラゴンクエストⅩより",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fcrbal",
+ "songName": {
+ "jpText": "バルーンファイト(バルーントリップ)",
+ "jpFont": 0,
+ "enText": "Balloon Fight",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Balloon Trip",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "バルーンファイト(バルーントリップ)",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fcrdrm",
+ "songName": {
+ "jpText": "ドクターマリオ(Fever)",
+ "jpFont": 0,
+ "enText": "Dr. Mario (Fever)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ドクターマリオ(Fever)",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fcrmix",
+ "songName": {
+ "jpText": "ファミコンリミックス",
+ "jpFont": 0,
+ "enText": "Famicom Remix",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ファミコンリミックス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fcrzel",
+ "songName": {
+ "jpText": "ゼルダの伝説",
+ "jpFont": 0,
+ "enText": "The Legend of Zelda",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ゼルダの伝説",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "flwsng",
+ "songName": {
+ "jpText": "Flower Song",
+ "jpFont": 0,
+ "enText": "Flower Song",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Exile",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gumire",
+ "songName": {
+ "jpText": "人生リセットボタン",
+ "jpFont": 0,
+ "enText": "Life Reset Button",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "kemu",
+ "jpFont": 0,
+ "enText": "kemu feat.GUMI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "人生リセットボタン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "handsu",
+ "songName": {
+ "jpText": "HANDS UP!",
+ "jpFont": 0,
+ "enText": "HANDS UP!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "From \" ONE PIECE \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "inagac",
+ "songName": {
+ "jpText": "ガチで勝とうゼッ!",
+ "jpFont": 0,
+ "enText": "Gachi de Katsouze!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「イナズマイレブンGO ギャラクシー」より",
+ "jpFont": 0,
+ "enText": "From \" Inazuma Eleven GO Galaxy \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ガチで勝とうゼッ!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kyorja",
+ "songName": {
+ "jpText": "VAMOLA! キョウリュウジャー",
+ "jpFont": 0,
+ "enText": "VAMOLA! Kyoryuger",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "From \" Zyuden Sentai Kyoryuger \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "VAMOLA! キョウリュウジャー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "m96tk",
+ "songName": {
+ "jpText": "ももいろ太鼓どどんが節",
+ "jpFont": 0,
+ "enText": "Momoiro Taiko Dodon-ga Bushi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ももいろクローバーZ",
+ "jpFont": 0,
+ "enText": "Momoiro Clover Z",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ももいろ太鼓どどんが節",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "monsun",
+ "songName": {
+ "jpText": "月と太陽",
+ "jpFont": 0,
+ "enText": "Tsuki to Taiyou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Ketsumeishi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "月と太陽",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "odorik",
+ "songName": {
+ "jpText": "夜の踊り子",
+ "jpFont": 0,
+ "enText": "Yoru no Odoriko",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Sakanaction",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "夜の踊り子",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pkxyac",
+ "songName": {
+ "jpText": "ボケットモンスター X・Y",
+ "jpFont": 0,
+ "enText": "Trainer Battle Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "From \" Pokémon XY \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ボケットモンスター X・Y",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pkxycs",
+ "songName": {
+ "jpText": "ポケットモンスターX・Y",
+ "jpFont": 0,
+ "enText": "Wild Pokémon Battle Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "From \" Pokémon XY \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ポケットモンスターX・Y",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "postm",
+ "songName": {
+ "jpText": "エレクトリック・ポストマン",
+ "jpFont": 0,
+ "enText": "Electric Postman",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "エレクトリック・ポストマン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "psp3bs",
+ "songName": {
+ "jpText": "サイクル・オブ・リバース",
+ "jpFont": 0,
+ "enText": "Cycle of Rebirth",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "サイクル・オブ・リバース",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "puzdrz",
+ "songName": {
+ "jpText": "さかさま世界",
+ "jpFont": 0,
+ "enText": "Sakasama Sekai",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「パズドラZ」より",
+ "jpFont": 0,
+ "enText": "From \" Puzzle & Dragons 2 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "さかさま世界",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "torik2",
+ "songName": {
+ "jpText": "豪食マイウェイ!!",
+ "jpFont": 0,
+ "enText": "Goushoku My Way!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "From \" Toriko \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "豪食マイウェイ!!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "wiu1op",
+ "songName": {
+ "jpText": "あつまれ☆太鼓まつり!",
+ "jpFont": 0,
+ "enText": "Atsumare☆Taiko Matsuri!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "\" Taiko no Tatsujin Wii U Version! \" Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "あつまれ☆太鼓まつり!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "2n2nja",
+ "songName": {
+ "jpText": "さぁ行け!ニンニンジャー!",
+ "jpFont": 0,
+ "enText": "Saa Ike! Ninninger!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「手裏剣戦隊ニンニンジャー」より",
+ "jpFont": 0,
+ "enText": "From \" Shuriken Sentai Ninninger \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "さぁ行け!ニンニンジャー!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "akblbr",
+ "songName": {
+ "jpText": "ラブラドール・レトリバー",
+ "jpFont": 0,
+ "enText": "Labrador Retriever",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "AKB48",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ラブラドール・レトリバー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "bambi",
+ "songName": {
+ "jpText": "バンビーニ",
+ "jpFont": 0,
+ "enText": "Bambini",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「もじぴったん大辞典」より",
+ "jpFont": 0,
+ "enText": "From \" Kotoba no Puzzle: Mojipittan \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "バンビーニ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "butfly",
+ "songName": {
+ "jpText": "Butterfly",
+ "jpFont": 0,
+ "enText": "Butterfly",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "2009年「ゼクシィ」CMソング",
+ "jpFont": 0,
+ "enText": "Kimura Kaela",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clshol",
+ "songName": {
+ "jpText": "ホルディリディア",
+ "jpFont": 0,
+ "enText": "Holdiridia",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ホルディリディア",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clstal",
+ "songName": {
+ "jpText": "ポルカ「雷鳴と稲妻」",
+ "jpFont": 0,
+ "enText": "Thunder and Lightning Polka",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "シュトラウス2世",
+ "jpFont": 0,
+ "enText": "Johann Strauss II",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ポルカ「雷鳴と稲妻」",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ds3bs3",
+ "songName": {
+ "jpText": "地獄の大王",
+ "jpFont": 0,
+ "enText": "Jigoku no Daiou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "地獄の大王",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "duduwa",
+ "songName": {
+ "jpText": "Du-Du-Wa DO IT!!",
+ "jpFont": 0,
+ "enText": "Du-Du-Wa DO IT!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Aikatsu!",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fparty",
+ "songName": {
+ "jpText": "ファミリーパーティー",
+ "jpFont": 0,
+ "enText": "Family Party",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「映画クレヨンしんちゃん ガチンコ!逆襲のロボとーちゃん」より",
+ "jpFont": 0,
+ "enText": "Kyary Pamyu Pamyu From \" Crayon Shin-chan: Intense Battle! Robo Dad Strikes Back \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ファミリーパーティー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "fu7bug",
+ "songName": {
+ "jpText": "ぶぎ ぶぎ ふなっしー♪",
+ "jpFont": 0,
+ "enText": "Boogie Boogie Funassyi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "〜ふなっしー公式テーマソング第二弾〜",
+ "jpFont": 0,
+ "enText": "Funassyi Official Theme Song Vol.2",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ぶぎ ぶぎ ふなっしー♪",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "giogio",
+ "songName": {
+ "jpText": "ジョジョ ~その血の運命~",
+ "jpFont": 0,
+ "enText": "JoJo ~Sono Chi no Sadame~",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "From \" JoJo's Bizarre Adventure \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ジョジョ ~その血の運命~",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gotama",
+ "songName": {
+ "jpText": "GO‐GO たまごっち!",
+ "jpFont": 0,
+ "enText": "GO-GO Tamagotchi!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "GO‐GO たまごっち!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kenkaj",
+ "songName": {
+ "jpText": "喧嘩上等",
+ "jpFont": 0,
+ "enText": "Kenka Joutou",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Kishidan",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "喧嘩上等",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kerajk",
+ "songName": {
+ "jpText": "ケラケラじゃんけん",
+ "jpFont": 0,
+ "enText": "Kerakera Jyanken",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ケラケラじゃんけん",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "krdriv",
+ "songName": {
+ "jpText": "SURPRISE-DRIVE",
+ "jpFont": 0,
+ "enText": "SURPRISE-DRIVE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "From \" Kamen Rider Drive \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lets5o",
+ "songName": {
+ "jpText": "LETS GO OUT",
+ "jpFont": 0,
+ "enText": "LETS GO OUT",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "From \" Gintama \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "monh4g",
+ "songName": {
+ "jpText": "モンスターハンター4G メドレー",
+ "jpFont": 0,
+ "enText": "Monster Hunter 4G Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "モンスターハンター4G メドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "niku",
+ "songName": {
+ "jpText": "デザートde焼肉(サハラ編)",
+ "jpFont": 0,
+ "enText": "Desert de Yakiniku (Sahara-hen)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "デザートde焼肉(サハラ編)",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pkoras",
+ "songName": {
+ "jpText": "「ポケットモンスター オメガルビー・アルファサファイア」",
+ "jpFont": 0,
+ "enText": "Pokémon Omega Ruby/Alpha Sapphire Champion Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "チャンピオンメドレー",
+ "jpFont": 0,
+ "enText": "Champion Medley",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "「ポケットモンスター オメガルビー・アルファサファイア」",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "skohmc",
+ "songName": {
+ "jpText": "炎と森のカーニバル",
+ "jpFont": 0,
+ "enText": "Honoo to Mori no Carnival",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "SEKAI NO OWARI",
+ "jpFont": 0,
+ "enText": "SEKAI NO OWARI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "炎と森のカーニバル",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "soiya",
+ "songName": {
+ "jpText": "前略、道の上より",
+ "jpFont": 0,
+ "enText": "Zenryaku, Michi no Ue Yori",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Isseifuubi Sepia",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "前略、道の上より",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "turk",
+ "songName": {
+ "jpText": "トルコ行進曲",
+ "jpFont": 0,
+ "enText": "Turkish March",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Mozart",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "トルコ行進曲",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "aiwoko",
+ "songName": {
+ "jpText": "愛をこめて花束を",
+ "jpFont": 0,
+ "enText": "Ai o Komete Hanataba o",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Superfly",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "愛をこめて花束を",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "anakoi",
+ "songName": {
+ "jpText": "あなたに恋をしてみました",
+ "jpFont": 0,
+ "enText": "Anata ni Koi wo Shite Mimashita",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "chay",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "あなたに恋をしてみました",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "babstp",
+ "songName": {
+ "jpText": "Believe in yourself",
+ "jpFont": 0,
+ "enText": "Believe in yourself",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ベイビーステップ」より",
+ "jpFont": 0,
+ "enText": "From \" baby steps \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "butumo",
+ "songName": {
+ "jpText": "とびだせ どうぶつの森 メドレー",
+ "jpFont": 0,
+ "enText": "Animal Crossing New Leaf Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "とびだせ どうぶつの森 メドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsarl",
+ "songName": {
+ "jpText": "アルルの女",
+ "jpFont": 0,
+ "enText": "L'Arlésienne",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ビゼー",
+ "jpFont": 0,
+ "enText": "Georges Bizet",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アルルの女",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsblr",
+ "songName": {
+ "jpText": "ボレロ",
+ "jpFont": 0,
+ "enText": "Bolero",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ラヴェル",
+ "jpFont": 0,
+ "enText": "Maurice Ravel",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ボレロ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsmas",
+ "songName": {
+ "jpText": "ます",
+ "jpFont": 0,
+ "enText": "Die Forelle",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "シューベルト",
+ "jpFont": 0,
+ "enText": "Franz Schubert",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ます",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsplk",
+ "songName": {
+ "jpText": "トリッチトラッチポルカ",
+ "jpFont": 0,
+ "enText": "Tritsch Tratsch Polka",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "J.シュトラウス2世",
+ "jpFont": 0,
+ "enText": "Johann Strauss II",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "トリッチトラッチポルカ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clstaj",
+ "songName": {
+ "jpText": "シンフォニックメドレー第1番",
+ "jpFont": 0,
+ "enText": "Symphonic Medley No.1",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "シンフォニックメドレー第1番",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "cs3op",
+ "songName": {
+ "jpText": "きょうはたいこ曜日",
+ "jpFont": 0,
+ "enText": "Kyou wa Taiko-youbi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "太鼓の達人オリジナル曲",
+ "jpFont": 0,
+ "enText": "\" Taiko no Tatsujin Appare! Sandaime \" Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "きょうはたいこ曜日",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dayday",
+ "songName": {
+ "jpText": "DAY×DAY",
+ "jpFont": 0,
+ "enText": "DAY×DAY",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「銀魂°」より",
+ "jpFont": 0,
+ "enText": "From \" Gintama \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ds2bs3",
+ "songName": {
+ "jpText": "闇の魂",
+ "jpFont": 0,
+ "enText": "Yami no Tamashii",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "闇の魂",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "gumihk",
+ "songName": {
+ "jpText": "放課後ストライド",
+ "jpFont": 0,
+ "enText": "Houkago Stride",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Last Note.",
+ "jpFont": 0,
+ "enText": "Last Note.",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "放課後ストライド",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kekkai",
+ "songName": {
+ "jpText": "Hello, world!",
+ "jpFont": 0,
+ "enText": "Hello, world!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "BUMP OF CHICKEN",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kim9re",
+ "songName": {
+ "jpText": "君がくれた夏",
+ "jpFont": 0,
+ "enText": "Kimi ga Kureta Natsu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Leo Ieiri",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "君がくれた夏",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "kjoker",
+ "songName": {
+ "jpText": "怪盗ミラクル少年ボーイ",
+ "jpFont": 0,
+ "enText": "Kaitou Miracle Shounen Boy",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「怪盗ジョーカー」より",
+ "jpFont": 0,
+ "enText": "Mysterious Joker",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "怪盗ミラクル少年ボーイ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lapis",
+ "songName": {
+ "jpText": "ラピスラズリ",
+ "jpFont": 0,
+ "enText": "Lapis Lazuli",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アルスラーン戦記」より",
+ "jpFont": 0,
+ "enText": "From \" The Heroic Legend of Arslan \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ラピスラズリ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "listen",
+ "songName": {
+ "jpText": "LISTEN TO THE STEREO!!",
+ "jpFont": 0,
+ "enText": "LISTEN TO THE STEREO!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "GOING UNDER GROUND",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "lvx",
+ "songName": {
+ "jpText": "ラブリーX",
+ "jpFont": 0,
+ "enText": "Lovely-X",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ラブリーX",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mgirlf",
+ "songName": {
+ "jpText": "無敵のガールフレンド",
+ "jpFont": 0,
+ "enText": "Muteki no Girfriend",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Sakurako Ohara",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "無敵のガールフレンド",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikukp",
+ "songName": {
+ "jpText": "からくりピエロ",
+ "jpFont": 0,
+ "enText": "Karakuri Pierrot",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "40mP",
+ "jpFont": 0,
+ "enText": "40mP feat. Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "からくりピエロ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nirgil",
+ "songName": {
+ "jpText": "sakura",
+ "jpFont": 0,
+ "enText": "sakura",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「交響詩篇エウレカセブン」より",
+ "jpFont": 0,
+ "enText": "From \" Eureka Seven \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nrtkaz",
+ "songName": {
+ "jpText": "風",
+ "jpFont": 0,
+ "enText": "Kaze",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ 幽閉サテライト",
+ "jpFont": 0,
+ "enText": "From \" Naruto Shippuden \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "風",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "ola",
+ "songName": {
+ "jpText": "OLA!!!",
+ "jpFont": 0,
+ "enText": "OLA!!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Yuzu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "orival",
+ "songName": {
+ "jpText": "オー!リバル",
+ "jpFont": 0,
+ "enText": "Oh! Rival",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "映画「名探偵コナン 業火の向日葵」より",
+ "jpFont": 0,
+ "enText": "Porno Graffiti",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "オー!リバル",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "pkgtbb",
+ "songName": {
+ "jpText": "ゲッタバンバン",
+ "jpFont": 0,
+ "enText": "Getta Banban",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ポケットモンスター XY」より",
+ "jpFont": 0,
+ "enText": "From \" Pokémon XY \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ゲッタバンバン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "prpri9",
+ "songName": {
+ "jpText": "Miracle Go!プリンセスプリキュア",
+ "jpFont": 0,
+ "enText": "Miracle Go! Princess PreCure",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Miracle Go!プリンセスプリキュア",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sdashs",
+ "songName": {
+ "jpText": "START DASH SENSATION",
+ "jpFont": 0,
+ "enText": "START DASH SENSATION",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「アイカツ!」より",
+ "jpFont": 0,
+ "enText": "From \" Aikatsu! \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "skoant",
+ "songName": {
+ "jpText": "ANTI-HERO",
+ "jpFont": 0,
+ "enText": "ANTI-HERO",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "SEKAI NO OWARI",
+ "jpFont": 0,
+ "enText": "SEKAI NO OWARI",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "spectr",
+ "songName": {
+ "jpText": "熱情のスペクトラム",
+ "jpFont": 0,
+ "enText": "Netsujou no Spectrum",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Ikimono Gakari",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "熱情のスペクトラム",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "spitz",
+ "songName": {
+ "jpText": "ロビンソン",
+ "jpFont": 0,
+ "enText": "Robinson",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Spitz",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ロビンソン",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "wiu3op",
+ "songName": {
+ "jpText": "いっしょにあそぼ♪",
+ "jpFont": 0,
+ "enText": "Issho ni Asobo♪",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "\" Taiko no Tatsujin Atsumete★Tomodachi Daisakusen! \" Theme Song",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "いっしょにあそぼ♪",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "worldt",
+ "songName": {
+ "jpText": "アシタノヒカリ",
+ "jpFont": 0,
+ "enText": "Ashita no Hikari",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ワールドトリガー」より",
+ "jpFont": 0,
+ "enText": "From \" World Trigger \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アシタノヒカリ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "20tftb",
+ "songName": {
+ "jpText": "パラレルロリポップ",
+ "jpFont": 0,
+ "enText": "Parallel Lollipop",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "太鼓 de タイムトラベル10's / Sho Okada",
+ "jpFont": 0,
+ "enText": "Taiko de TimeTravel 10's / Sho Okada",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "パラレルロリポップ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "acex2",
+ "songName": {
+ "jpText": "IN THE ZONE",
+ "jpFont": 0,
+ "enText": "IN THE ZONE",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ACE COMBAT X2 JOINT ASSAULT」より",
+ "jpFont": 0,
+ "enText": "From \" ACE COMBAT X2 JOINT ASSAULT \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "afterd",
+ "songName": {
+ "jpText": "アフターダーク",
+ "jpFont": 0,
+ "enText": "After Dark",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アフターダーク",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "brs",
+ "songName": {
+ "jpText": "ブラック★ロックシューター",
+ "jpFont": 0,
+ "enText": "Black★Rock Shooter",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "原曲:supercell feat.初音ミク",
+ "jpFont": 0,
+ "enText": "From \"supercell feat. Hatsune Miku\"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ブラック★ロックシューター",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "butou6",
+ "songName": {
+ "jpText": "戦国三弦",
+ "jpFont": 0,
+ "enText": "Sengoku Sangen",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "戦国三弦",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "calib",
+ "songName": {
+ "jpText": "ソウルキャリバーII",
+ "jpFont": 0,
+ "enText": "Soul Calibur II",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "Brave Sword, Braver Soul",
+ "jpFont": 0,
+ "enText": "Brave Sword, Braver Soul",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ソウルキャリバーII",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "calib5",
+ "songName": {
+ "jpText": "ソウルキャリバーV",
+ "jpFont": 0,
+ "enText": "Soul Calibur V",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "The Invincible Blade",
+ "jpFont": 0,
+ "enText": "The Invincible Blade",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ソウルキャリバーV",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsc2",
+ "songName": {
+ "jpText": "「カルメン」より闘牛士の歌",
+ "jpFont": 0,
+ "enText": "Toreador Song from Carmen",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "Georges Bizet",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsdnu",
+ "songName": {
+ "jpText": "美しく忙しきドナウ",
+ "jpFont": 0,
+ "enText": "The Lovely, Lively Danube",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "美しく忙しきドナウ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsh",
+ "songName": {
+ "jpText": "ハンガリー舞曲第5番",
+ "jpFont": 0,
+ "enText": "Hungarian Dance No.5",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ブラームス",
+ "jpFont": 0,
+ "enText": "Johannes Brahms",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ハンガリー舞曲第5番",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsika",
+ "songName": {
+ "jpText": "レクイエム 怒りの日より",
+ "jpFont": 0,
+ "enText": "Requiem - Day of Wrath",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ヴェルディ",
+ "jpFont": 0,
+ "enText": "Giuseppe Verdi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "レクイエム 怒りの日より",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsine",
+ "songName": {
+ "jpText": "アイネクライネナハトムジーク",
+ "jpFont": 0,
+ "enText": "A Little Serenade",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "モーツァルト",
+ "jpFont": 0,
+ "enText": "Wolfgang Amadeus Mozart",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "アイネクライネナハトムジーク",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clskum",
+ "songName": {
+ "jpText": "熊蜂の飛行",
+ "jpFont": 0,
+ "enText": "Flight of the Bumblebee",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "リムスキー=コルサコフ",
+ "jpFont": 0,
+ "enText": "Nikolai Rimsky-Korsakov",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "熊蜂の飛行",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clslps",
+ "songName": {
+ "jpText": "ラプソディ・イン・ブルー",
+ "jpFont": 0,
+ "enText": "Rhapsody in Blue",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ガーシュウィン",
+ "jpFont": 0,
+ "enText": "George Gershwin",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "ラプソディ・イン・ブルー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clslu7",
+ "songName": {
+ "jpText": "其方、激昂",
+ "jpFont": 0,
+ "enText": "Sonata, Gekko",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "其方、激昂",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsmar",
+ "songName": {
+ "jpText": "クラシックメドレー(ウェディング編)",
+ "jpFont": 0,
+ "enText": "Classical Medley (Wedding Celebration)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "クラシックメドレー(ウェディング編)",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsnut",
+ "songName": {
+ "jpText": "行進曲「くるみ割り人形」から",
+ "jpFont": 0,
+ "enText": "March From The Nutcracker",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "チャイコフスキー",
+ "jpFont": 0,
+ "enText": "Pyotr Ilyich Tchaikovsky",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "行進曲「くるみ割り人形」から",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clssum",
+ "songName": {
+ "jpText": "弩蚊怒夏",
+ "jpFont": 0,
+ "enText": "Dokadoka",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "弩蚊怒夏",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "clsw",
+ "songName": {
+ "jpText": "ウィリアム・テル序曲",
+ "jpFont": 0,
+ "enText": "William Tell Overture",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ロッシーニ",
+ "jpFont": 0,
+ "enText": "Gioachino Rossini",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ウィリアム・テル序曲",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "comona",
+ "songName": {
+ "jpText": "Comona",
+ "jpFont": 0,
+ "enText": "Comona",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ACE COMBAT 04」より",
+ "jpFont": 0,
+ "enText": "From \" ACE COMBAT 04 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "csmdgn",
+ "songName": {
+ "jpText": "ダンガンノーツ",
+ "jpFont": 0,
+ "enText": "Dangan Notes",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "cosMo@暴走P",
+ "jpFont": 0,
+ "enText": "cosMo@bousouP",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ダンガンノーツ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "daiku",
+ "songName": {
+ "jpText": "第九交響曲",
+ "jpFont": 0,
+ "enText": "Ninth Symphony",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ベートーヴェン",
+ "jpFont": 0,
+ "enText": "Ludwig van Beethoven",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "第九交響曲",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dball2",
+ "songName": {
+ "jpText": "魔訶不思議アドベンチャー!",
+ "jpFont": 0,
+ "enText": "Makahushigi Adventure",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ドラゴンボール」 より",
+ "jpFont": 0,
+ "enText": "From \" Dragon Ball \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "魔訶不思議アドベンチャー!",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dbcgen",
+ "songName": {
+ "jpText": "限界突破×サバイバー",
+ "jpFont": 0,
+ "enText": "Genkai Toppa×Survivor",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ドラゴンボール超」より",
+ "jpFont": 0,
+ "enText": "From \" Dragon Ball Super \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "限界突破×サバイバー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "debstp",
+ "songName": {
+ "jpText": "DEBSTEP!",
+ "jpFont": 0,
+ "enText": "DEBSTEP!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "やじゅ",
+ "jpFont": 0,
+ "enText": "Yajuu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "drill",
+ "songName": {
+ "jpText": "僕の→地球 僕らの地球",
+ "jpFont": 0,
+ "enText": "Boku no→Chikyu, Bokura no Chikyu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ミスタードリラー ドリルランド」より",
+ "jpFont": 0,
+ "enText": "From \" Mr. DRILLER Drill Land \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "僕の→地球 僕らの地球",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "dsoul",
+ "songName": {
+ "jpText": "Dragon Soul",
+ "jpFont": 0,
+ "enText": "Dragon Soul",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ドラゴンボール改」 より",
+ "jpFont": 0,
+ "enText": "From \" Dragon Ball Kai \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "eatem",
+ "songName": {
+ "jpText": "EAT’EM UP!",
+ "jpFont": 0,
+ "enText": "EAT’EM UP!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「R4 -RIDGE RACER TYPE4-」より",
+ "jpFont": 0,
+ "enText": "From \" R4 -RIDGE RACER TYPE4- \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "flkmio",
+ "songName": {
+ "jpText": "オー・ソレ・ミオ",
+ "jpFont": 0,
+ "enText": "O sole mio",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "オー・ソレ・ミオ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "godea2",
+ "songName": {
+ "jpText": "Wings of Tomorrow(Tatsujin Mix)",
+ "jpFont": 0,
+ "enText": "Wings of Tomorrow(Tatsujin Mix)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「GOD EATER 2」より",
+ "jpFont": 0,
+ "enText": "From \" GOD EATER 2 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "godeat",
+ "songName": {
+ "jpText": "No Way Back",
+ "jpFont": 0,
+ "enText": "No Way Back",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「GOD EATER」より",
+ "jpFont": 0,
+ "enText": "From \" GOD EATER \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "hapsyn",
+ "songName": {
+ "jpText": "ハッピーシンセサイザ",
+ "jpFont": 0,
+ "enText": "Happy Synthesizer",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "EasyPop ",
+ "jpFont": 0,
+ "enText": "EasyPop ",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ハッピーシンセサイザ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "howlmg",
+ "songName": {
+ "jpText": "人生のメリーゴーランド",
+ "jpFont": 0,
+ "enText": "Merry-Go-Round of Life",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「ハウルの動く城」より",
+ "jpFont": 0,
+ "enText": "From \" Howl's Moving Castle \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "人生のメリーゴーランド",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "karamr",
+ "songName": {
+ "jpText": "カラ鞠の花",
+ "jpFont": 0,
+ "enText": "Karamari no Hana",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "はるなば feat.結月ゆかり",
+ "jpFont": 0,
+ "enText": "Harunaba feat.Yuzuki Yukari",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "カラ鞠の花",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "majotk",
+ "songName": {
+ "jpText": "海の見える街",
+ "jpFont": 0,
+ "enText": "A Town with an Ocean View",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「魔女の宅急便」より",
+ "jpFont": 0,
+ "enText": "From \" Kiki's Delivery Service \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "海の見える街",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "manpu9",
+ "songName": {
+ "jpText": "あなたとトゥラッタッタ♪",
+ "jpFont": 0,
+ "enText": "Anata to Tu-lat-tat-ta♪",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "DREAMS COME TRUE / 「まんぷく」より",
+ "jpFont": 0,
+ "enText": "DREAMS COME TRUE / From \" Manpuku \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "あなたとトゥラッタッタ♪",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "melt",
+ "songName": {
+ "jpText": "メルト",
+ "jpFont": 0,
+ "enText": "melt",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "原曲:supercell feat.初音ミク",
+ "jpFont": 0,
+ "enText": "From \"supercell feat. Hatsune Miku\"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "メルト",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikubd",
+ "songName": {
+ "jpText": "ブリキノダンス",
+ "jpFont": 0,
+ "enText": "Buriki no Dance",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "日向電工 feat.初音ミク",
+ "jpFont": 0,
+ "enText": "Hinata EW feat. Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ブリキノダンス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikudd",
+ "songName": {
+ "jpText": "ダンスロボットダンス",
+ "jpFont": 0,
+ "enText": "Dance Robot Dance",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "ナユタン星人 feat.初音ミク 「戦闘摂理解析システム#コンパス」より",
+ "jpFont": 0,
+ "enText": "Nayutan Seijin feat.Hatsune Miku",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ダンスロボットダンス",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "mikuer",
+ "songName": {
+ "jpText": "初音ミクの消失-劇場版-",
+ "jpFont": 0,
+ "enText": "Hatsune Miku no Shoushitsu -Gekijouban-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "cosMo@暴走P",
+ "jpFont": 0,
+ "enText": "cosMo@bousouP",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "初音ミクの消失-劇場版-",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "nanori",
+ "songName": {
+ "jpText": "名乗り(天上)",
+ "jpFont": 0,
+ "enText": "Nanori (Tenjou)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「未来忍者」より",
+ "jpFont": 0,
+ "enText": "From \" Mirai Ninja \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "無慈悲な王",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "orochi",
+ "songName": {
+ "jpText": "8OROCHI",
+ "jpFont": 0,
+ "enText": "8OROCHI",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "REDALiCE",
+ "jpFont": 0,
+ "enText": "REDALiCE",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "oubu",
+ "songName": {
+ "jpText": "ナックルヘッズ",
+ "jpFont": 0,
+ "enText": "Knuckle Heads",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "鷹舞狼吼",
+ "jpFont": 0,
+ "enText": "Ouburoukou",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ナックルヘッズ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "poxeid",
+ "songName": {
+ "jpText": "poxei♦DOON",
+ "jpFont": 0,
+ "enText": "poxei♦DOON",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "かねこちはる",
+ "jpFont": 0,
+ "enText": "Kaneko Chiharu",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "qp3min",
+ "songName": {
+ "jpText": "おもちゃの兵隊の行進",
+ "jpFont": 0,
+ "enText": "March of the Toy Soldiers",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "レオン・イェッセル",
+ "jpFont": 0,
+ "enText": "Leon Yessel",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "おもちゃの兵隊の行進",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "reiwad",
+ "songName": {
+ "jpText": "令・和太鼓",
+ "jpFont": 0,
+ "enText": "Rei Wadaiko",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "翡翠",
+ "jpFont": 0,
+ "enText": "Hisui",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "令・和太鼓",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "rrsam",
+ "songName": {
+ "jpText": "SAMURAI ROCKET",
+ "jpFont": 0,
+ "enText": "SAMURAI ROCKET",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「RIDGE RACER V」より",
+ "jpFont": 0,
+ "enText": "From \" RIDGE RACER V \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "shoujo",
+ "songName": {
+ "jpText": "少女S",
+ "jpFont": 0,
+ "enText": "Shojo S",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「BLEACH」より",
+ "jpFont": 0,
+ "enText": "From \" BLEACH \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "少女S",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sign",
+ "songName": {
+ "jpText": "Sign",
+ "jpFont": 0,
+ "enText": "Sign",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "sweep2",
+ "songName": {
+ "jpText": "らんぶる乱舞",
+ "jpFont": 0,
+ "enText": "Rumble Ranbu",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "らんぶる乱舞",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tek7he",
+ "songName": {
+ "jpText": "Heat Haze Shadow 2",
+ "jpFont": 0,
+ "enText": "Heat Haze Shadow 2",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「鉄拳7」より",
+ "jpFont": 0,
+ "enText": "From \" Tekken 7 \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "teken6",
+ "songName": {
+ "jpText": "KARMA(Tatsujin Mix)",
+ "jpFont": 0,
+ "enText": "KARMA(Tatsujin Mix)",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「鉄拳6 BLOODLINE REBELLION」より",
+ "jpFont": 0,
+ "enText": "From \" Tekken 6 Bloodline Rebellion \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tengu",
+ "songName": {
+ "jpText": "天狗囃子",
+ "jpFont": 0,
+ "enText": "Tengu-bayashi",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "天狗囃子",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thakeb",
+ "songName": {
+ "jpText": "明星ロケット",
+ "jpFont": 0,
+ "enText": "Akeboshi Rocket",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ 岸田教団&THE明星ロケッツ",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange / Kishida Kyoudan & the Akeboshi Rockets",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "明星ロケット",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "therin",
+ "songName": {
+ "jpText": "Help me, ERINNNNNN!!",
+ "jpFont": 0,
+ "enText": "Help me, ERINNNNNN!!",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ ビートまりお ",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange / beatMARIO",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thgrip",
+ "songName": {
+ "jpText": "Grip & Break down !! -達人Edit.-",
+ "jpFont": 0,
+ "enText": "Grip & Break down !! -Tatsujin Edit.-",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ SOUND HOLIC feat.Nana Takahashi",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange / SOUND HOLIC feat. Nana Takahashi",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thmrs",
+ "songName": {
+ "jpText": "魔理沙は大変なものを盗んでいきました",
+ "jpFont": 0,
+ "enText": "Marisa Wa Taihen Na Mono Wo Nusunde Ikimashita",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ ARM+夕野ヨシミ(IOSYS) feat.藤咲かりん",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange / ARM+Youno Yoshimi(IOSYS) feat. Fujisaki Karin",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "魔理沙は大変なものを盗んでいきました",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thncrd",
+ "songName": {
+ "jpText": "ネクロファンタジア ~ Arr.Demetori",
+ "jpFont": 0,
+ "enText": "Necro Fantasia ~ Arr.Demetori",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ Demetori",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange / Demetori",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "ネクロファンタジア ~ Arr.Demetori",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "thwarn",
+ "songName": {
+ "jpText": "WARNING×WARNING×WARNING",
+ "jpFont": 0,
+ "enText": "WARNING×WARNING×WARNING",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "東方Projectアレンジ 暁Records",
+ "jpFont": 0,
+ "enText": "Touhou Project Arrange / Akatsuki Records",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "tobers",
+ "songName": {
+ "jpText": "テイルズ オブ ベルセリア メドレー",
+ "jpFont": 0,
+ "enText": "Tales of Berseria Medley",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": " ",
+ "jpFont": 0,
+ "enText": "テイルズ オブ ベルセリア メドレー",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "totoro",
+ "songName": {
+ "jpText": "となりのトトロ",
+ "jpFont": 0,
+ "enText": "My Neighbor Totoro - Ending Theme Song",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "となりのトトロ",
+ "enFont": 0
+ }
+ },
+ {
+ "id": "toumei",
+ "songName": {
+ "jpText": "透明だった世界",
+ "jpFont": 0,
+ "enText": "Tomeidatta Sekai",
+ "enFont": 1
+ },
+ "songSubtitle": {
+ "jpText": "「NARUTO−ナルト− 疾風伝」より",
+ "jpFont": 0,
+ "enText": "From \" Naruto: Shippuden \"",
+ "enFont": 1
+ },
+ "songDetail": {
+ "jpText": "",
+ "jpFont": 0,
+ "enText": "透明だった世界",
+ "enFont": 0
+ }
+ }
+]
\ No newline at end of file
diff --git a/TaikoSongConversionTool/script/acb/acb.py b/TaikoSongConversionTool/script/acb/acb.py
new file mode 100644
index 0000000..6dd5d5a
--- /dev/null
+++ b/TaikoSongConversionTool/script/acb/acb.py
@@ -0,0 +1,73 @@
+import os
+import argparse
+import subprocess
+import shutil
+import tempfile
+from pydub import AudioSegment
+from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes
+from cryptography.hazmat.backends import default_backend
+
+def parse_arguments():
+ parser = argparse.ArgumentParser(description='CLI tool to create .acb files and encrypt them')
+ parser.add_argument('input_audio', type=str, help='Path to the input audio file')
+ parser.add_argument('song_id', type=str, help='Song ID')
+ return parser.parse_args()
+
+def encrypt_file(input_file, output_file, key, iv):
+ with open(input_file, 'rb') as f_in:
+ data = f_in.read()
+
+ backend = default_backend()
+ cipher = Cipher(algorithms.AES(key), modes.CBC(iv), backend=backend)
+ encryptor = cipher.encryptor()
+ padded_data = data + b'\0' * (16 - len(data) % 16) # Pad the data to make it a multiple of block size
+ encrypted_data = encryptor.update(padded_data) + encryptor.finalize()
+
+ # Write IV followed by encrypted data to output file
+ with open(output_file, 'wb') as f_out:
+ f_out.write(iv)
+ f_out.write(encrypted_data)
+
+def main():
+ args = parse_arguments()
+
+ # Generate a unique random temporary folder name
+ with tempfile.TemporaryDirectory(prefix='song_') as temp_folder:
+ try:
+ # Convert input audio to 44100Hz WAV
+ input_audio = args.input_audio
+ temp_wav_file = os.path.join(temp_folder, f'input_{args.song_id}.wav')
+
+ audio = AudioSegment.from_file(input_audio)
+ audio = audio.set_frame_rate(44100)
+ audio.export(temp_wav_file, format='wav')
+
+ # Generate .hca file using VGAudioCli.exe
+ hca_folder = os.path.join(temp_folder, f'song_{args.song_id}')
+ os.makedirs(hca_folder, exist_ok=True)
+ hca_file = os.path.join(hca_folder, '00000.hca')
+ subprocess.run(['bin/VGAudioCli.exe', temp_wav_file, hca_file], check=True)
+
+ # Copy sample .acb template to temporary location
+ acb_template = 'templates/song_sample.acb'
+ temp_acb_file = os.path.join(temp_folder, f'song_{args.song_id}.acb')
+ shutil.copy(acb_template, temp_acb_file)
+
+ # Edit .acb using ACBEditor
+ subprocess.run(['bin/ACBEditor.exe', hca_folder], check=True)
+
+ # Encrypt .acb file to .bin with IV prepended
+ key = bytes.fromhex('54704643596B474170554B6D487A597A')
+ iv = bytes([0xFF] * 16)
+ encrypted_bin_file = os.path.join(temp_folder, f'song_{args.song_id}.bin')
+ encrypt_file(temp_acb_file, encrypted_bin_file, key, iv)
+
+ # Move encrypted .bin file to the root folder
+ final_bin_file = f'song_{args.song_id}.bin'
+ shutil.move(encrypted_bin_file, final_bin_file)
+
+ except Exception as e:
+ print(f"Error: {e}")
+
+if __name__ == '__main__':
+ main()
diff --git a/TaikoSongConversionTool/script/acb/acb_dec.py b/TaikoSongConversionTool/script/acb/acb_dec.py
new file mode 100644
index 0000000..c0db173
--- /dev/null
+++ b/TaikoSongConversionTool/script/acb/acb_dec.py
@@ -0,0 +1,50 @@
+import os
+import argparse
+import subprocess
+import shutil
+import tempfile
+from pydub import AudioSegment
+
+def parse_arguments():
+ parser = argparse.ArgumentParser(description='CLI tool to create .acb files')
+ parser.add_argument('input_audio', type=str, help='Path to the input audio file')
+ parser.add_argument('song_id', type=str, help='Song ID')
+ return parser.parse_args()
+
+def main():
+ args = parse_arguments()
+
+ # Generate a unique random temporary folder name
+ with tempfile.TemporaryDirectory(prefix='song_') as temp_folder:
+ try:
+ # Convert input audio to 44100Hz WAV
+ input_audio = args.input_audio
+ temp_wav_file = os.path.join(temp_folder, f'input_{args.song_id}.wav')
+
+ audio = AudioSegment.from_file(input_audio)
+ audio = audio.set_frame_rate(44100)
+ audio.export(temp_wav_file, format='wav')
+
+ # Generate .hca file using VGAudioCli.exe
+ hca_folder = os.path.join(temp_folder, f'song_{args.song_id}')
+ os.makedirs(hca_folder, exist_ok=True)
+ hca_file = os.path.join(hca_folder, '00000.hca')
+ subprocess.run(['bin/VGAudioCli.exe', temp_wav_file, hca_file], check=True)
+
+ # Copy sample .acb template to temporary location
+ acb_template = 'templates/song_sample.acb'
+ temp_acb_file = os.path.join(temp_folder, f'song_{args.song_id}.acb')
+ shutil.copy(acb_template, temp_acb_file)
+
+ # Edit .acb using ACBEditor
+ subprocess.run(['bin/ACBEditor.exe', hca_folder], check=True)
+
+ # Move .acb file to the current directory
+ final_acb_file = f'song_{args.song_id}.acb'
+ os.replace(temp_acb_file, final_acb_file)
+
+ except Exception as e:
+ print(f"Error: {e}")
+
+if __name__ == '__main__':
+ main()
diff --git a/TaikoSongConversionTool/script/at9/at9.py b/TaikoSongConversionTool/script/at9/at9.py
new file mode 100644
index 0000000..672bf02
--- /dev/null
+++ b/TaikoSongConversionTool/script/at9/at9.py
@@ -0,0 +1,49 @@
+import subprocess
+import os
+import sys
+import shutil
+import tempfile
+from pydub import AudioSegment
+
+def convert_audio_to_at9(input_file, output_file):
+ # Create a temporary folder to store intermediate files
+ temp_folder = tempfile.mkdtemp()
+ os.makedirs(temp_folder, exist_ok=True)
+
+def convert_audio_to_at9(input_file, output_file):
+ # Create a unique temporary folder to store intermediate files
+ temp_folder = tempfile.mkdtemp()
+
+ try:
+ # Check if the input file is already in WAV format
+ if not input_file.lower().endswith('.wav'):
+ # Load the input audio file using pydub and convert to WAV
+ temp_wav_file = os.path.join(temp_folder, "temp.wav")
+ audio = AudioSegment.from_file(input_file)
+ audio.export(temp_wav_file, format="wav")
+ input_file = temp_wav_file
+
+ # Path to AT9Tool executable
+ at9tool_cli_path = os.path.join("bin", "at9tool.exe")
+
+ # Run VGAudioCli to convert WAV to AT9
+ subprocess.run([at9tool_cli_path, "-e", "-br", "192", input_file, output_file], check=True)
+
+ finally:
+ # Clean up temporary folder
+ shutil.rmtree(temp_folder, ignore_errors=True)
+
+if __name__ == "__main__":
+ # Check command-line arguments
+ if len(sys.argv) != 3:
+ print("Usage: python at9.py ")
+ sys.exit(1)
+
+ input_audio_file = sys.argv[1]
+ output_audio_file = sys.argv[2]
+
+ try:
+ convert_audio_to_at9(input_audio_file, output_audio_file)
+ print(f"Conversion successful. Output file: {output_audio_file}")
+ except Exception as e:
+ print(f"Error during conversion: {e}")
diff --git a/TaikoSongConversionTool/script/bnsf/bnsf.py b/TaikoSongConversionTool/script/bnsf/bnsf.py
new file mode 100644
index 0000000..d38dc14
--- /dev/null
+++ b/TaikoSongConversionTool/script/bnsf/bnsf.py
@@ -0,0 +1,93 @@
+import subprocess
+import os
+import sys
+import shutil
+from pydub import AudioSegment
+from pydub.exceptions import CouldntDecodeError
+
+def convert_to_mono_48k(input_file, output_file):
+ """Convert input audio file to 16-bit mono WAV with 48000 Hz sample rate."""
+ try:
+ audio = AudioSegment.from_file(input_file)
+ audio = audio.set_channels(1) # Convert to mono
+ audio = audio.set_frame_rate(48000) # Set frame rate to 48000 Hz
+ audio = audio.set_sample_width(2) # Set sample width to 16-bit (2 bytes)
+ audio.export(output_file, format='wav')
+ except CouldntDecodeError:
+ print(f"Error: Unable to decode {input_file}. Please provide a valid audio file.")
+ sys.exit(1)
+
+
+def run_encode_tool(input_wav, output_bs):
+ """Run external encode tool with specified arguments."""
+ subprocess.run(['bin/encode.exe', '0', input_wav, output_bs, '48000', '14000'])
+
+
+def modify_bnsf_template(output_bs, output_bnsf, header_size, total_samples):
+ """Modify the BNSF template file with calculated values and combine with output.bs."""
+ # Calculate the file size of output.bs
+ bs_file_size = os.path.getsize(output_bs)
+
+ # Create modified BNSF data
+ new_file_size = bs_file_size + header_size - 0x8
+ total_samples_bytes = total_samples.to_bytes(4, 'big')
+ bs_file_size_bytes = bs_file_size.to_bytes(4, 'big')
+
+ # Read BNSF template data
+ with open('templates/header.bnsf', 'rb') as template_file:
+ bnsf_template_data = bytearray(template_file.read())
+
+ # Modify BNSF template with calculated values
+ bnsf_template_data[0x4:0x8] = new_file_size.to_bytes(4, 'big') # File size
+ bnsf_template_data[0x1C:0x20] = total_samples_bytes # Total sample count
+ bnsf_template_data[0x2C:0x30] = bs_file_size_bytes # Size of output.bs
+
+ # Append output.bs data to modified BNSF template
+ with open(output_bs, 'rb') as bs_file:
+ bs_data = bs_file.read()
+ final_bnsf_data = bnsf_template_data + bs_data
+
+ # Write final BNSF file
+ with open(output_bnsf, 'wb') as output_file:
+ output_file.write(final_bnsf_data)
+
+
+if __name__ == "__main__":
+ if len(sys.argv) < 2:
+ print("Usage: bnsf.py []")
+ sys.exit(1)
+
+ input_audio = sys.argv[1]
+ output_bnsf = sys.argv[2] if len(sys.argv) > 2 else 'output.bnsf'
+
+ # Create temp folder if it doesn't exist
+ temp_folder = 'temp'
+ os.makedirs(temp_folder, exist_ok=True)
+
+ # Temporary file paths
+ output_wav = os.path.join(temp_folder, 'output_mono.wav')
+ output_bs = os.path.join(temp_folder, 'output.bs')
+
+ # Header size (assuming fixed size)
+ header_size = 0x30
+
+ try:
+ # Step 1: Convert input audio to required format (WAV)
+ convert_to_mono_48k(input_audio, output_wav)
+
+ # Step 2: Run external encoding tool
+ run_encode_tool(output_wav, output_bs)
+
+ # Step 3: Get sample count from the converted mono WAV
+ mono_wav = AudioSegment.from_wav(output_wav)
+ total_samples = len(mono_wav.get_array_of_samples())
+
+ # Step 4: Modify BNSF template with calculated values and combine with output.bs
+ modify_bnsf_template(output_bs, output_bnsf, header_size, total_samples)
+
+ print("BNSF file created:", output_bnsf)
+
+ finally:
+ # Cleanup: Delete temporary files and temp folder
+ if os.path.exists(temp_folder):
+ shutil.rmtree(temp_folder)
diff --git a/TaikoSongConversionTool/script/idsp/idsp.py b/TaikoSongConversionTool/script/idsp/idsp.py
new file mode 100644
index 0000000..8c32e4c
--- /dev/null
+++ b/TaikoSongConversionTool/script/idsp/idsp.py
@@ -0,0 +1,44 @@
+import subprocess
+import os
+import sys
+import shutil
+import tempfile
+from pydub import AudioSegment
+
+def convert_audio_to_idsp(input_file, output_file):
+ # Create a unique temporary folder to store intermediate files
+ temp_folder = tempfile.mkdtemp()
+
+ try:
+ # Check if the input file is already in WAV format
+ if not input_file.lower().endswith('.wav'):
+ # Load the input audio file using pydub and convert to WAV
+ temp_wav_file = os.path.join(temp_folder, "temp.wav")
+ audio = AudioSegment.from_file(input_file)
+ audio.export(temp_wav_file, format="wav")
+ input_file = temp_wav_file
+
+ # Path to VGAudioCli executable
+ vgaudio_cli_path = os.path.join("bin", "VGAudioCli.exe")
+
+ # Run VGAudioCli to convert WAV to IDSP
+ subprocess.run([vgaudio_cli_path, "-i", input_file, "-o", output_file], check=True)
+
+ finally:
+ # Clean up temporary folder
+ shutil.rmtree(temp_folder, ignore_errors=True)
+
+if __name__ == "__main__":
+ # Check command-line arguments
+ if len(sys.argv) != 3:
+ print("Usage: python idsp.py ")
+ sys.exit(1)
+
+ input_audio_file = sys.argv[1]
+ output_audio_file = sys.argv[2]
+
+ try:
+ convert_audio_to_idsp(input_audio_file, output_audio_file)
+ print(f"Conversion successful. Output file: {output_audio_file}")
+ except Exception as e:
+ print(f"Error during conversion: {e}")
diff --git a/TaikoSongConversionTool/script/lopus/lopus.py b/TaikoSongConversionTool/script/lopus/lopus.py
new file mode 100644
index 0000000..db0def8
--- /dev/null
+++ b/TaikoSongConversionTool/script/lopus/lopus.py
@@ -0,0 +1,46 @@
+import subprocess
+import os
+import sys
+import shutil
+import tempfile
+from pydub import AudioSegment
+
+def convert_audio_to_opus(input_file, output_file):
+ # Create a unique temporary folder to store intermediate files
+ temp_folder = tempfile.mkdtemp()
+
+ try:
+ # Check if the input file is already in WAV format
+ if not input_file.lower().endswith('.wav'):
+ # Load the input audio file using pydub and convert to WAV
+ temp_wav_file = os.path.join(temp_folder, "temp.wav")
+ audio = AudioSegment.from_file(input_file)
+ audio = audio.set_frame_rate(48000) # Set frame rate to 48000 Hz
+ audio.export(temp_wav_file, format="wav")
+ input_file = temp_wav_file
+
+ # Path to VGAudioCli executable
+ vgaudio_cli_path = os.path.join("bin", "VGAudioCli.exe")
+
+ # Run VGAudioCli to convert WAV to Switch OPUS
+ subprocess.run([vgaudio_cli_path, "-i", input_file, "-o", output_file, "--opusheader", "namco"], check=True)
+
+ finally:
+ # Clean up temporary folder
+ shutil.rmtree(temp_folder, ignore_errors=True)
+
+
+if __name__ == "__main__":
+ # Check command-line arguments
+ if len(sys.argv) != 3:
+ print("Usage: python opus.py ")
+ sys.exit(1)
+
+ input_audio_file = sys.argv[1]
+ output_audio_file = sys.argv[2]
+
+ try:
+ convert_audio_to_opus(input_audio_file, output_audio_file)
+ print(f"Conversion successful. Output file: {output_audio_file}")
+ except Exception as e:
+ print(f"Error during conversion: {e}")
diff --git a/TaikoSongConversionTool/script/ns1_wordlist.py b/TaikoSongConversionTool/script/ns1_wordlist.py
new file mode 100644
index 0000000..5ae8f89
--- /dev/null
+++ b/TaikoSongConversionTool/script/ns1_wordlist.py
@@ -0,0 +1,62 @@
+import json
+
+def merge_wordlists(file1_path, file2_path, output_path):
+ # Load the contents of the first wordlist file
+ with open(file1_path, 'r', encoding='utf-8') as file1:
+ data1 = json.load(file1)
+
+ # Load the contents of the second wordlist file
+ with open(file2_path, 'r', encoding='utf-8') as file2:
+ data2 = json.load(file2)
+
+ # Define keys to remove from data1
+ keys_to_remove_data1 = ["japaneseText", "chineseTText","chineseTFontType","koreanText","koreanFontType"]
+
+ # Filter out entries from file 1 where key starts with "song_" and remove specific keys
+ filtered_items_data1 = []
+ for item in data1['items']:
+ if not item['key'].startswith('song_'):
+ # Remove specific keys from item
+ filtered_item = {k: v for k, v in item.items() if k not in keys_to_remove_data1}
+ filtered_items_data1.append(filtered_item)
+
+# Define keys to remove from data2
+ keys_to_remove_data2 = ["japaneseText", "japaneseFontType", "chineseTText","chineseTFontType","koreanText","koreanFontType"]
+
+ for item2 in data2['items']:
+ # Set englishUsFontType to 3
+ item2['englishUsFontType'] = 0
+
+ # Add missing translation fields using englishUsText from file 2
+ languages = ['french', 'italian', 'german', 'spanish']
+ for lang in languages:
+ if lang + 'Text' not in item2:
+ item2[lang + 'Text'] = item2['englishUsText']
+ item2[lang + 'FontType'] = 3
+
+ for item3 in data2['items']:
+ if not item3['key'].startswith('song_detail_'):
+ item3['englishUsFontType'] = 3
+
+ # Filter out specific keys from entries in file 2
+ filtered_items_data2 = []
+ for item in data2['items']:
+ # Remove specific keys from item
+ filtered_item = {k: v for k, v in item.items() if k not in keys_to_remove_data2}
+ filtered_items_data2.append(filtered_item)
+
+ # Extend filtered data1 with filtered data2
+ filtered_items_data1.extend(filtered_items_data2)
+
+ # Update data1 with the merged and filtered items
+ data1['items'] = filtered_items_data1
+
+ # Save the updated JSON back to file
+ with open(output_path, 'w', encoding='utf-8') as output_file:
+ json.dump(data1, output_file, indent=4, ensure_ascii=False)
+
+ print(f"Merged wordlists saved to '{output_path}'.")
+
+# Example usage:
+merge_wordlists('data\\_console\\NX\\datatable\\wordlist.json', 'out\\Data\\NX\\datatable\\wordlist.json', 'out\\Data\\NX\\datatable\\wordlist.json')
+
diff --git a/TaikoSongConversionTool/script/ns1_wordlist_jp.py b/TaikoSongConversionTool/script/ns1_wordlist_jp.py
new file mode 100644
index 0000000..fbf710f
--- /dev/null
+++ b/TaikoSongConversionTool/script/ns1_wordlist_jp.py
@@ -0,0 +1,55 @@
+import json
+
+def merge_wordlists(file1_path, file2_path, output_path):
+ # Load the contents of the first wordlist file
+ with open(file1_path, 'r', encoding='utf-8') as file1:
+ data1 = json.load(file1)
+
+ # Load the contents of the second wordlist file
+ with open(file2_path, 'r', encoding='utf-8') as file2:
+ data2 = json.load(file2)
+
+ # Define keys to remove from data1
+ keys_to_remove_data1 = ["frenchText", "frenchFontType", "italianText", "italianFontType", "germanText", "germanFontType", "spanishText", "spanishFontType"]
+
+ # Filter out entries from file 1 where key starts with "song_" and remove specific keys
+ filtered_items_data1 = []
+ for item in data1['items']:
+ if not item['key'].startswith('song_'):
+ # Remove specific keys from item
+ filtered_item = {k: v for k, v in item.items() if k not in keys_to_remove_data1}
+ filtered_items_data1.append(filtered_item)
+
+ # Define keys to remove from data2
+ keys_to_remove_data2 = ["japaneseFontType"]
+
+ for item2 in data2['items']:
+ # Set englishUsFontType to 3
+ item2['englishUsFontType'] = 0
+
+ for item3 in data2['items']:
+ if not item3['key'].startswith('song_detail_'):
+ item3['englishUsFontType'] = 3
+
+ # Filter out specific keys from entries in file 2
+ filtered_items_data2 = []
+ for item in data2['items']:
+ # Remove specific keys from item
+ filtered_item = {k: v for k, v in item.items() if k not in keys_to_remove_data2}
+ filtered_items_data2.append(filtered_item)
+
+ # Extend filtered data1 with filtered data2
+ filtered_items_data1.extend(filtered_items_data2)
+
+ # Update data1 with the merged and filtered items
+ data1['items'] = filtered_items_data1
+
+ # Save the updated JSON back to file
+ with open(output_path, 'w', encoding='utf-8') as output_file:
+ json.dump(data1, output_file, indent=4, ensure_ascii=False)
+
+ print(f"Merged wordlists saved to '{output_path}'.")
+
+# Example usage:
+merge_wordlists('data\\_console\\NX\\datatable\\wordlist.json', 'out\\Data\\NX\\datatable\\wordlist.json', 'out\\Data\\NX\\datatable\\wordlist.json')
+
diff --git a/TaikoSongConversionTool/script/nus3/nus3.py b/TaikoSongConversionTool/script/nus3/nus3.py
new file mode 100644
index 0000000..301e292
--- /dev/null
+++ b/TaikoSongConversionTool/script/nus3/nus3.py
@@ -0,0 +1,272 @@
+import sys
+import os
+import struct
+import random
+
+def generate_random_uint16_hex():
+ return format(random.randint(0, 65535), '04X')
+
+def load_template_config():
+ # Load template configurations from config.toml (if needed in the future)
+ # This function can be expanded to load more template configurations if necessary
+ # For now, we don't need to use this function directly for selecting templates
+ return {}
+
+def select_template_name(game, output_file):
+ # Determine the appropriate template name based on the game and the length of the output file name
+ base_filename = os.path.splitext(output_file)[0]
+ length = len(base_filename)
+
+ if game == "nijiiro":
+ if length == 8:
+ return "song_ABC"
+ elif length == 9:
+ return "song_ABCD"
+ elif length == 10:
+ return "song_ABCDE"
+ elif length == 11:
+ return "song_ABCDEF"
+ elif length == 12:
+ return "song_ABCDEFG"
+ elif length == 13:
+ return "song_ABCDEFGH"
+ elif game == "ps4":
+ if length == 8:
+ return "song_ABC"
+ elif length == 9:
+ return "song_ABCD"
+ elif length == 10:
+ return "song_ABCDE"
+ elif length == 11:
+ return "song_ABCDEF"
+ elif game == "ns1":
+ if length == 8:
+ return "song_ABC"
+ elif length == 9:
+ return "song_ABCD"
+ elif length == 10:
+ return "song_ABCDE"
+ elif length == 11:
+ return "song_ABCDEF"
+ pass
+ elif game == "wiiu3":
+ if length == 8:
+ return "song_ABC"
+ elif length == 9:
+ return "song_ABCD"
+ elif length == 10:
+ return "song_ABCDE"
+ elif length == 11:
+ return "song_ABCDEF"
+ pass
+
+ raise ValueError("Unsupported game or output file name length.")
+
+def modify_nus3bank_template(game, template_name, audio_file, preview_point, output_file):
+ # Define game-specific template configurations
+ game_templates = {
+ "nijiiro": {
+ "template_folder": "nijiiro",
+ "templates": {
+ "song_ABC": {
+ "unique_id_offset": 176,
+ "audio_size_offsets": [76, 1568, 1852],
+ "preview_point_offset": 1724,
+ "song_placeholder": "song_ABC",
+ "template_file": "song_ABC.nus3bank"
+ },
+ "song_ABCD": {
+ "unique_id_offset": 176,
+ "audio_size_offsets": [76, 1568, 1852],
+ "preview_point_offset": 1724,
+ "song_placeholder": "song_ABCD",
+ "template_file": "song_ABCD.nus3bank"
+ },
+ "song_ABCDE": {
+ "unique_id_offset": 176,
+ "audio_size_offsets": [76, 1568, 1852],
+ "preview_point_offset": 1724,
+ "song_placeholder": "song_ABCDE",
+ "template_file": "song_ABCDE.nus3bank"
+ },
+ "song_ABCDEF": {
+ "unique_id_offset": 180,
+ "audio_size_offsets": [76, 1576, 1868],
+ "preview_point_offset": 1732,
+ "song_placeholder": "song_ABCDEF",
+ "template_file": "song_ABCDEF.nus3bank"
+ },
+ "song_ABCDEFG": {
+ "unique_id_offset": 180,
+ "audio_size_offsets": [76, 1672, 1964],
+ "preview_point_offset": 1824,
+ "song_placeholder": "song_ABCDEFG",
+ "template_file": "song_ABCDEFG.nus3bank"
+ },
+ "song_ABCDEFGH": {
+ "unique_id_offset": 180,
+ "audio_size_offsets": [76, 1576, 1868],
+ "preview_point_offset": 1732,
+ "song_placeholder": "song_ABCDEFGH",
+ "template_file": "song_ABCDEFGH.nus3bank"
+ },
+ }
+ },
+ "ns1": {
+ "template_folder": "ns1",
+ "templates": {
+ "song_ABC": {
+ "audio_size_offsets": [76, 5200, 5420],
+ "preview_point_offset": 5324,
+ "song_placeholder": "SONG_ABC",
+ "template_file": "SONG_ABC.nus3bank"
+ },
+ "song_ABCD": {
+ "audio_size_offsets": [76, 5200, 5420],
+ "preview_point_offset": 5324,
+ "song_placeholder": "SONG_ABCD",
+ "template_file": "SONG_ABCD.nus3bank"
+ },
+ "song_ABCDE": {
+ "audio_size_offsets": [76, 5200, 5404],
+ "preview_point_offset": 5320,
+ "song_placeholder": "SONG_ABCDE",
+ "template_file": "SONG_ABCDE.nus3bank"
+ },
+ "song_ABCDEF": {
+ "audio_size_offsets": [76, 5208, 5420],
+ "preview_point_offset": 5324,
+ "song_placeholder": "SONG_ABCDEF",
+ "template_file": "SONG_ABCDEF.nus3bank"
+ }
+ }
+ },
+ "ps4": {
+ "template_folder": "ps4",
+ "templates": {
+ "song_ABC": {
+ "audio_size_offsets": [76, 3220, 3436],
+ "preview_point_offset": 3344,
+ "song_placeholder": "SONG_ABC",
+ "template_file": "SONG_ABC.nus3bank"
+ },
+ "song_ABCD": {
+ "audio_size_offsets": [76, 3220, 3436],
+ "preview_point_offset": 3344,
+ "song_placeholder": "SONG_ABCD",
+ "template_file": "SONG_ABCD.nus3bank"
+ },
+ "song_ABCDE": {
+ "audio_size_offsets": [76, 3220, 3436],
+ "preview_point_offset": 3344,
+ "song_placeholder": "SONG_ABCDE",
+ "template_file": "SONG_ABCDE.nus3bank"
+ },
+ "song_ABCDEF": {
+ "audio_size_offsets": [76, 3228, 3452],
+ "preview_point_offset": 3352,
+ "song_placeholder": "SONG_ABCDEF",
+ "template_file": "SONG_ABCDEF.nus3bank"
+ }
+ }
+ },
+ "wiiu3": {
+ "template_folder": "wiiu3",
+ "templates": {
+ "song_ABC": {
+ "audio_size_offsets": [76, 3420, 3612],
+ "preview_point_offset": 3540,
+ "song_placeholder": "SONG_ABC",
+ "template_file": "SONG_ABC.nus3bank"
+ },
+ "song_ABCD": {
+ "audio_size_offsets": [76, 3420, 3612],
+ "preview_point_offset": 3540,
+ "song_placeholder": "SONG_ABCD",
+ "template_file": "SONG_ABCD.nus3bank"
+ },
+ "song_ABCDE": {
+ "audio_size_offsets": [76, 3420, 3612],
+ "preview_point_offset": 3540,
+ "song_placeholder": "SONG_ABCDE",
+ "template_file": "SONG_ABCDE.nus3bank"
+ },
+ "song_ABCDEF": {
+ "audio_size_offsets": [76, 3428, 3612],
+ "preview_point_offset": 3548,
+ "song_placeholder": "SONG_ABCDEF",
+ "template_file": "SONG_ABCDEF.nus3bank"
+ }
+ }
+ },
+ }
+
+ if game not in game_templates:
+ raise ValueError("Unsupported game.")
+
+ templates_config = game_templates[game]
+
+ if template_name not in templates_config["templates"]:
+ raise ValueError(f"Unsupported template for {game}.")
+
+ template_config = templates_config["templates"][template_name]
+ template_folder = templates_config["template_folder"]
+
+ # Read template nus3bank file from the specified game's template folder
+ template_file = os.path.join("templates", template_folder, template_config['template_file'])
+ with open(template_file, 'rb') as f:
+ template_data = bytearray(f.read())
+
+ # Set unique ID if it exists in the template configuration
+ if 'unique_id_offset' in template_config:
+ # Generate random UInt16 hex for unique ID
+ unique_id_hex = generate_random_uint16_hex()
+ # Set unique ID in the template data at the specified offset
+ template_data[template_config['unique_id_offset']:template_config['unique_id_offset']+2] = bytes.fromhex(unique_id_hex)
+
+ # Get size of the audio file in bytes
+ audio_size = os.path.getsize(audio_file)
+
+ # Convert audio size to UInt32 bytes in little-endian format
+ size_bytes = audio_size.to_bytes(4, 'little')
+
+ # Set audio size in the template data at the specified offsets
+ for offset in template_config['audio_size_offsets']:
+ template_data[offset:offset+4] = size_bytes
+
+ # Convert preview point (milliseconds) to UInt32 bytes in little-endian format
+ preview_point_ms = int(preview_point)
+ preview_point_bytes = preview_point_ms.to_bytes(4, 'little')
+
+ # Set preview point in the template data at the specified offset
+ template_data[template_config['preview_point_offset']:template_config['preview_point_offset']+4] = preview_point_bytes
+
+ # Replace song name placeholder with the output file name in bytes
+ output_file_bytes = output_file.encode('utf-8')
+ template_data = template_data.replace(template_config['song_placeholder'].encode('utf-8'), output_file_bytes.replace(b'.nus3bank', b''))
+
+ # Append the audio file contents to the modified template data
+ with open(audio_file, 'rb') as audio:
+ template_data += audio.read()
+
+ # Write the modified data to the output file
+ with open(output_file, 'wb') as out:
+ out.write(template_data)
+
+if __name__ == "__main__":
+ if len(sys.argv) != 5:
+ print("Usage: nus3.py ")
+ sys.exit(1)
+
+ game = sys.argv[1]
+ audio_file = sys.argv[2]
+ preview_point = sys.argv[3]
+ output_file = sys.argv[4]
+
+ try:
+ template_name = select_template_name(game, output_file)
+ modify_nus3bank_template(game, template_name, audio_file, preview_point, output_file)
+ print(f"Created {output_file} successfully.")
+ except ValueError as e:
+ print(f"Error: {e}")
+ sys.exit(1)
\ No newline at end of file
diff --git a/TaikoSongConversionTool/script/ps4_wordlist.py b/TaikoSongConversionTool/script/ps4_wordlist.py
new file mode 100644
index 0000000..839d45e
--- /dev/null
+++ b/TaikoSongConversionTool/script/ps4_wordlist.py
@@ -0,0 +1,48 @@
+import json
+
+def merge_wordlists(file1_path, file2_path, output_path):
+ # Load the contents of the first wordlist file
+ with open(file1_path, 'r', encoding='utf-8') as file1:
+ data1 = json.load(file1)
+
+ # Load the contents of the second wordlist file
+ with open(file2_path, 'r', encoding='utf-8') as file2:
+ data2 = json.load(file2)
+
+ # Define keys to remove from data1, for space saving reasons. (sorry south americans)
+ keys_to_remove_data1 = ["neutralSpanishText","neutralSpanishFontType","brazilPortugueseText","brazilPortugueseFontType"]
+
+ # Filter out entries from file 1 where key starts with "song_" and remove specific keys
+ filtered_items_data1 = []
+ for item in data1['items']:
+ if not item['key'].startswith('song_'):
+ # Remove specific keys from item
+ filtered_item = {k: v for k, v in item.items() if k not in keys_to_remove_data1}
+ #filtered_items = [item for item in data1['items'] if not item['key'].startswith('song_')]
+ filtered_items_data1.append(filtered_item)
+
+ # Define keys to remove from data2
+ keys_to_remove_data2 = ["japaneseText", "japaneseFontType", "chineseTText","chineseTFontType","koreanText","koreanFontType"]
+
+ # Filter out specific keys from entries in file 2
+ filtered_items_data2 = []
+ for item in data2['items']:
+ # Remove specific keys from item
+ filtered_item = {k: v for k, v in item.items() if k not in keys_to_remove_data2}
+ filtered_items_data2.append(filtered_item)
+
+ # Extend filtered data1 with filtered data2
+ filtered_items_data1.extend(filtered_items_data2)
+
+ # Update data1 with the merged and filtered items
+ data1['items'] = filtered_items_data1
+
+ # Save the updated JSON back to file
+ with open(output_path, 'w', encoding='utf-8') as output_file:
+ json.dump(data1, output_file, indent=4, ensure_ascii=False)
+
+ print(f"Merged wordlists saved to '{output_path}'.")
+
+# Example usage:
+merge_wordlists('data\\_console\\ORBIS\\datatableint\\wordlist.json', 'out\\Data\\ORBIS\\datatable\\wordlist.json', 'out\\Data\\ORBIS\\datatable\\wordlist.json')
+
diff --git a/TaikoSongConversionTool/script/ps4_wordlist_jp.py b/TaikoSongConversionTool/script/ps4_wordlist_jp.py
new file mode 100644
index 0000000..3884525
--- /dev/null
+++ b/TaikoSongConversionTool/script/ps4_wordlist_jp.py
@@ -0,0 +1,47 @@
+import json
+
+def merge_wordlists(file1_path, file2_path, output_path):
+ # Load the contents of the first wordlist file
+ with open(file1_path, 'r', encoding='utf-8') as file1:
+ data1 = json.load(file1)
+
+ # Load the contents of the second wordlist file
+ with open(file2_path, 'r', encoding='utf-8') as file2:
+ data2 = json.load(file2)
+
+ # Define keys to remove from data1
+ keys_to_remove_data1 = ["frenchText", "frenchFontType", "italianText", "italianFontType", "germanText", "germanFontType", "spanishText", "spanishFontType","neutralSpanishText","neutralSpanishFontType","brazilPortugueseText","brazilPortugueseFontType"]
+
+ # Filter out entries from file 1 where key starts with "song_" and remove specific keys
+ filtered_items_data1 = []
+ for item in data1['items']:
+ if not item['key'].startswith('song_'):
+ # Remove specific keys from item
+ filtered_item = {k: v for k, v in item.items() if k not in keys_to_remove_data1}
+ filtered_items_data1.append(filtered_item)
+
+ # Define keys to remove from data2
+ keys_to_remove_data2 = [""]
+
+ # Filter out specific keys from entries in file 2
+ filtered_items_data2 = []
+ for item in data2['items']:
+ # Remove specific keys from item
+ filtered_item = {k: v for k, v in item.items() if k not in keys_to_remove_data2}
+ filtered_items_data2.append(filtered_item)
+
+ # Extend filtered data1 with filtered data2
+ filtered_items_data1.extend(filtered_items_data2)
+
+ # Update data1 with the merged and filtered items
+ data1['items'] = filtered_items_data1
+
+ # Save the updated JSON back to file
+ with open(output_path, 'w', encoding='utf-8') as output_file:
+ json.dump(data1, output_file, indent=4, ensure_ascii=False)
+
+ print(f"Merged wordlists saved to '{output_path}'.")
+
+# Example usage:
+merge_wordlists('data\\_console\\ORBIS\\datatablejp\\wordlist.json', 'out\\Data\\ORBIS\\datatable\\wordlist.json', 'out\\Data\\ORBIS\\datatable\\wordlist.json')
+
diff --git a/TaikoSongConversionTool/script/ptb_wordlist.py b/TaikoSongConversionTool/script/ptb_wordlist.py
new file mode 100644
index 0000000..767cd05
--- /dev/null
+++ b/TaikoSongConversionTool/script/ptb_wordlist.py
@@ -0,0 +1,41 @@
+import json
+
+def merge_wordlists(file1_path, file2_path, output_path):
+ # Load the contents of the first wordlist file
+ with open(file1_path, 'r', encoding='utf-8') as file1:
+ data1 = json.load(file1)
+
+ # Load the contents of the second wordlist file
+ with open(file2_path, 'r', encoding='utf-8') as file2:
+ data2 = json.load(file2)
+
+ # Filter out entries from file 1 where key starts with "song_"
+ filtered_items = [item for item in data1['items'] if not item['key'].startswith('song_')]
+
+ # Update entries from file 2 and add them to the filtered list
+ for item2 in data2['items']:
+ # Set englishUsFontType to 3
+ item2['englishUsFontType'] = 3
+
+ # Add missing translation fields using englishUsText from file 2
+ languages = ['french', 'italian', 'german', 'spanish', 'chineseT', 'korean',
+ 'portuguese', 'russian', 'turkish', 'arabic', 'dutch', 'chineseS']
+ for lang in languages:
+ if lang + 'Text' not in item2:
+ item2[lang + 'Text'] = item2['englishUsText']
+ item2[lang + 'FontType'] = 3
+
+ # Add updated item from file 2 to the filtered list
+ filtered_items.append(item2)
+
+ # Update data1 with the merged and filtered items
+ data1['items'] = filtered_items
+
+ # Save the updated JSON back to file
+ with open(output_path, 'w', encoding='utf-8') as output_file:
+ json.dump(data1, output_file, indent=4, ensure_ascii=False)
+
+ print(f"Merged wordlists saved to '{output_path}'.")
+
+merge_wordlists('data\\_console\\Raw\\ReadAssets\\wordlist.json', 'out\\Data\\Raw\\ReadAssets\\wordlist.json', 'out\\Data\\Raw\\ReadAssets\\wordlist.json')
+
diff --git a/TaikoSongConversionTool/script/run.py b/TaikoSongConversionTool/script/run.py
new file mode 100644
index 0000000..de470cb
--- /dev/null
+++ b/TaikoSongConversionTool/script/run.py
@@ -0,0 +1,22 @@
+import os
+import sys
+import subprocess
+
+def run_script(script_name, script_args):
+ script_path = os.path.join('script', script_name, f'{script_name}.py')
+ if os.path.exists(script_path):
+ command = ['python', script_path] + script_args
+ subprocess.run(command)
+ else:
+ print(f"Script '{script_name}' not found.")
+ sys.exit(1)
+
+if __name__ == "__main__":
+ if len(sys.argv) < 2:
+ print("Usage: python launcher.py []")
+ sys.exit(1)
+
+ script_name = sys.argv[1]
+ script_args = sys.argv[2:] # Capture all arguments after script_name
+
+ run_script(script_name, script_args)
diff --git a/TaikoSongConversionTool/script/wav/wav.py b/TaikoSongConversionTool/script/wav/wav.py
new file mode 100644
index 0000000..20d9b86
--- /dev/null
+++ b/TaikoSongConversionTool/script/wav/wav.py
@@ -0,0 +1,33 @@
+import os
+import sys
+from pydub import AudioSegment
+
+def convert_audio_to_wav(input_file, output_file):
+ try:
+ # Load the input audio file using pydub
+ audio = AudioSegment.from_file(input_file)
+
+ # Ensure the output file has a .wav extension
+ if not output_file.lower().endswith('.wav'):
+ output_file += '.wav'
+
+ # Export the audio to WAV format
+ audio.export(output_file, format="wav")
+
+ except Exception as e:
+ raise RuntimeError(f"Error during WAV conversion: {e}")
+
+if __name__ == "__main__":
+ # Check command-line arguments
+ if len(sys.argv) != 3:
+ print("Usage: python audio_converter.py ")
+ sys.exit(1)
+
+ input_audio_file = sys.argv[1]
+ output_audio_file = sys.argv[2]
+
+ try:
+ convert_audio_to_wav(input_audio_file, output_audio_file)
+ print(f"Conversion successful. Output file: {output_audio_file}")
+ except Exception as e:
+ print(f"Error during conversion: {e}")
diff --git a/TaikoSongConversionTool/templates/header.bnsf b/TaikoSongConversionTool/templates/header.bnsf
new file mode 100644
index 0000000..725c81e
Binary files /dev/null and b/TaikoSongConversionTool/templates/header.bnsf differ
diff --git a/TaikoSongConversionTool/templates/nijiiro/song_ABC.nus3bank b/TaikoSongConversionTool/templates/nijiiro/song_ABC.nus3bank
new file mode 100644
index 0000000..ad16be5
Binary files /dev/null and b/TaikoSongConversionTool/templates/nijiiro/song_ABC.nus3bank differ
diff --git a/TaikoSongConversionTool/templates/nijiiro/song_ABCD.nus3bank b/TaikoSongConversionTool/templates/nijiiro/song_ABCD.nus3bank
new file mode 100644
index 0000000..01130ba
Binary files /dev/null and b/TaikoSongConversionTool/templates/nijiiro/song_ABCD.nus3bank differ
diff --git a/TaikoSongConversionTool/templates/nijiiro/song_ABCDE.nus3bank b/TaikoSongConversionTool/templates/nijiiro/song_ABCDE.nus3bank
new file mode 100644
index 0000000..1fa40df
Binary files /dev/null and b/TaikoSongConversionTool/templates/nijiiro/song_ABCDE.nus3bank differ
diff --git a/TaikoSongConversionTool/templates/nijiiro/song_ABCDEF.nus3bank b/TaikoSongConversionTool/templates/nijiiro/song_ABCDEF.nus3bank
new file mode 100644
index 0000000..15f64ae
Binary files /dev/null and b/TaikoSongConversionTool/templates/nijiiro/song_ABCDEF.nus3bank differ
diff --git a/TaikoSongConversionTool/templates/nijiiro/song_ABCDEFG.nus3bank b/TaikoSongConversionTool/templates/nijiiro/song_ABCDEFG.nus3bank
new file mode 100644
index 0000000..68bc006
Binary files /dev/null and b/TaikoSongConversionTool/templates/nijiiro/song_ABCDEFG.nus3bank differ
diff --git a/TaikoSongConversionTool/templates/nijiiro/song_ABCDEFGH.nus3bank b/TaikoSongConversionTool/templates/nijiiro/song_ABCDEFGH.nus3bank
new file mode 100644
index 0000000..6ddb75c
Binary files /dev/null and b/TaikoSongConversionTool/templates/nijiiro/song_ABCDEFGH.nus3bank differ
diff --git a/TaikoSongConversionTool/templates/ns1/SONG_ABC.nus3bank b/TaikoSongConversionTool/templates/ns1/SONG_ABC.nus3bank
new file mode 100644
index 0000000..1117bc6
Binary files /dev/null and b/TaikoSongConversionTool/templates/ns1/SONG_ABC.nus3bank differ
diff --git a/TaikoSongConversionTool/templates/ns1/SONG_ABCD.nus3bank b/TaikoSongConversionTool/templates/ns1/SONG_ABCD.nus3bank
new file mode 100644
index 0000000..87385fe
Binary files /dev/null and b/TaikoSongConversionTool/templates/ns1/SONG_ABCD.nus3bank differ
diff --git a/TaikoSongConversionTool/templates/ns1/SONG_ABCDE.nus3bank b/TaikoSongConversionTool/templates/ns1/SONG_ABCDE.nus3bank
new file mode 100644
index 0000000..8043a3b
Binary files /dev/null and b/TaikoSongConversionTool/templates/ns1/SONG_ABCDE.nus3bank differ
diff --git a/TaikoSongConversionTool/templates/ns1/SONG_ABCDEF.nus3bank b/TaikoSongConversionTool/templates/ns1/SONG_ABCDEF.nus3bank
new file mode 100644
index 0000000..dee9098
Binary files /dev/null and b/TaikoSongConversionTool/templates/ns1/SONG_ABCDEF.nus3bank differ
diff --git a/TaikoSongConversionTool/templates/ps4/SONG_ABC.nus3bank b/TaikoSongConversionTool/templates/ps4/SONG_ABC.nus3bank
new file mode 100644
index 0000000..c611d37
Binary files /dev/null and b/TaikoSongConversionTool/templates/ps4/SONG_ABC.nus3bank differ
diff --git a/TaikoSongConversionTool/templates/ps4/SONG_ABCD.nus3bank b/TaikoSongConversionTool/templates/ps4/SONG_ABCD.nus3bank
new file mode 100644
index 0000000..3f4b81d
Binary files /dev/null and b/TaikoSongConversionTool/templates/ps4/SONG_ABCD.nus3bank differ
diff --git a/TaikoSongConversionTool/templates/ps4/SONG_ABCDE.nus3bank b/TaikoSongConversionTool/templates/ps4/SONG_ABCDE.nus3bank
new file mode 100644
index 0000000..f32af63
Binary files /dev/null and b/TaikoSongConversionTool/templates/ps4/SONG_ABCDE.nus3bank differ
diff --git a/TaikoSongConversionTool/templates/ps4/SONG_ABCDEF.nus3bank b/TaikoSongConversionTool/templates/ps4/SONG_ABCDEF.nus3bank
new file mode 100644
index 0000000..08f3f3f
Binary files /dev/null and b/TaikoSongConversionTool/templates/ps4/SONG_ABCDEF.nus3bank differ
diff --git a/TaikoSongConversionTool/templates/song_sample.acb b/TaikoSongConversionTool/templates/song_sample.acb
new file mode 100644
index 0000000..5337dfe
Binary files /dev/null and b/TaikoSongConversionTool/templates/song_sample.acb differ
diff --git a/TaikoSongConversionTool/templates/wiiu3/SONG_ABC.nus3bank b/TaikoSongConversionTool/templates/wiiu3/SONG_ABC.nus3bank
new file mode 100644
index 0000000..3847cd9
Binary files /dev/null and b/TaikoSongConversionTool/templates/wiiu3/SONG_ABC.nus3bank differ
diff --git a/TaikoSongConversionTool/templates/wiiu3/SONG_ABCD.nus3bank b/TaikoSongConversionTool/templates/wiiu3/SONG_ABCD.nus3bank
new file mode 100644
index 0000000..31e75ad
Binary files /dev/null and b/TaikoSongConversionTool/templates/wiiu3/SONG_ABCD.nus3bank differ
diff --git a/TaikoSongConversionTool/templates/wiiu3/SONG_ABCDE.nus3bank b/TaikoSongConversionTool/templates/wiiu3/SONG_ABCDE.nus3bank
new file mode 100644
index 0000000..cb1ca82
Binary files /dev/null and b/TaikoSongConversionTool/templates/wiiu3/SONG_ABCDE.nus3bank differ
diff --git a/TaikoSongConversionTool/templates/wiiu3/SONG_ABCDEF.nus3bank b/TaikoSongConversionTool/templates/wiiu3/SONG_ABCDEF.nus3bank
new file mode 100644
index 0000000..2dfdda0
Binary files /dev/null and b/TaikoSongConversionTool/templates/wiiu3/SONG_ABCDEF.nus3bank differ